[arch-commits] Commit in rcs/repos/extra-x86_64 (5 files)

2020-05-20 Thread Allan McRae via arch-commits
Date: Thursday, May 21, 2020 @ 05:28:12
  Author: allan
Revision: 387353

archrelease: copy trunk to extra-x86_64

Added:
  rcs/repos/extra-x86_64/PKGBUILD
(from rev 387352, rcs/trunk/PKGBUILD)
  rcs/repos/extra-x86_64/rcs-c++11.patch
(from rev 387352, rcs/trunk/rcs-c++11.patch)
  rcs/repos/extra-x86_64/t810.diff
(from rev 387352, rcs/trunk/t810.diff)
Deleted:
  rcs/repos/extra-x86_64/PKGBUILD
  rcs/repos/extra-x86_64/rcs-c++11.patch

-+
 PKGBUILD|   79 +++---
 rcs-c++11.patch |  186 +++---
 t810.diff   |   14 
 3 files changed, 148 insertions(+), 131 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-21 05:27:50 UTC (rev 387352)
+++ PKGBUILD2020-05-21 05:28:12 UTC (rev 387353)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson 
-# Contributor: dorphell 
-
-pkgname=rcs
-pkgver=5.9.4
-pkgrel=2
-pkgdesc='Revision Control System: manages multiple revisions of files'
-url='http://www.gnu.org/software/rcs/'
-license=('GPL3')
-arch=('x86_64')
-depends=('ed')
-validpgpkeys=('748EA0E81CB8A7489BFA6CE4670322244C807502')
-source=("ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz"{,.sig} 
rcs-c++11.patch)
-sha256sums=('063d5a0d7da1821754b80c639cdae2c82b535c8ff4131f75dc7bbf0cd63a5dff'
-'SKIP'
-'569a8d5c851d2619393474a681e05c2eb83912e71adcf1124b895478c91e1fbb')
-
-prepare() {
-  cd $pkgname-$pkgver
-  patch -p1 -i ../rcs-c++11.patch # Fix build with C++11
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-check() {
-  cd ${pkgname}-${pkgver}
-  make check
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make prefix="${pkgdir}/usr" install
-}

Copied: rcs/repos/extra-x86_64/PKGBUILD (from rev 387352, rcs/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-21 05:28:12 UTC (rev 387353)
@@ -0,0 +1,41 @@
+# Maintainer: Gaetan Bisson 
+# Contributor: dorphell 
+
+pkgname=rcs
+pkgver=5.9.4
+pkgrel=3
+pkgdesc='Revision Control System: manages multiple revisions of files'
+url='https://www.gnu.org/software/rcs/'
+license=('GPL3')
+arch=('x86_64')
+depends=('ed')
+validpgpkeys=('748EA0E81CB8A7489BFA6CE4670322244C807502')
+source=("https://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz"{,.sig}
+rcs-c++11.patch
+t810.diff)
+sha256sums=('063d5a0d7da1821754b80c639cdae2c82b535c8ff4131f75dc7bbf0cd63a5dff'
+'SKIP'
+'569a8d5c851d2619393474a681e05c2eb83912e71adcf1124b895478c91e1fbb'
+'f7d8f458c6c7a0d435183378eb44e07d9d66c8013b2fea4efca9a3e66a6d')
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -p1 -i ../rcs-c++11.patch # Fix build with C++11
+  patch -p1 -i $srcdir/t810.diff # fix test suite failure - git 
f2330a6268d244e97f47a97f4767736fc3b31455
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make prefix="${pkgdir}/usr" install
+}

Deleted: rcs-c++11.patch
===
--- rcs-c++11.patch 2020-05-21 05:27:50 UTC (rev 387352)
+++ rcs-c++11.patch 2020-05-21 05:28:12 UTC (rev 387353)
@@ -1,93 +0,0 @@
-From 260704a9164dd34cf7128d6b1e88075ffa3be054 Mon Sep 17 00:00:00 2001
-From: Thien-Thi Nguyen 
-Date: Thu, 18 Jun 2015 21:25:53 +0200
-Subject: [PATCH] =?UTF-8?q?[C=20slog]=20Move=20=E2=80=98exiting=E2=80=99?=
- =?UTF-8?q?=20to=20beginning=20of=20func=20decl.?=
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-Apparently, ‘gcc --std=c11’ does not abide the ‘exiting’
-attribute appearing at the end of the func decl.
-Reported by Romain Francoise.
-See also .
-
-* src/b-complain.h (generic_fatal, fatal_syntax, fatal_sys)
-* src/b-fb.h (Ierror, Oerror)
-* src/base.h (unexpected_EOF, thank_you_and_goodnight):
-Move ‘exiting’ attribute to beginning of func decl.

- src/b-complain.h | 10 ++
- src/b-fb.h   |  6 --
- src/base.h   |  8 
-
-diff --git a/src/b-complain.h b/src/b-complain.h
-index 0ffd157..ea0ffc5 100644
 a/src/b-complain.h
-+++ b/src/b-complain.h
-@@ -32,12 +32,14 @@ extern void generic_warn (char const *who, char const 
*fmt, ...)
-   printf_string (2, 3);
- extern void generic_error (char const *who, char const *fmt, ...)
-   printf_string (2, 3);
-+exiting
- extern void generic_fatal (char const *who, char const *fmt, ...)
--  printf_string (2, 3) exiting;
-+  printf_string (2, 3);
-+exiting
- extern void fatal_syntax (size_t lno, char const *fmt, ...)
--  printf_string (2, 3) exiting;
--extern void fatal_sys (char const *who)
--  exiting;
-+  printf_string (2, 3);
-+exiting
-+extern void fatal_sys (char 

[arch-commits] Commit in rcs/trunk (PKGBUILD t810.diff)

2020-05-20 Thread Allan McRae via arch-commits
Date: Thursday, May 21, 2020 @ 05:27:50
  Author: allan
Revision: 387352

upgpkg: rcs 5.9.4-3: fix FTBFS

Added:
  rcs/trunk/t810.diff
Modified:
  rcs/trunk/PKGBUILD

---+
 PKGBUILD  |   10 +++---
 t810.diff |   14 ++
 2 files changed, 21 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-21 05:16:35 UTC (rev 387351)
+++ PKGBUILD2020-05-21 05:27:50 UTC (rev 387352)
@@ -3,7 +3,7 @@
 
 pkgname=rcs
 pkgver=5.9.4
-pkgrel=2
+pkgrel=3
 pkgdesc='Revision Control System: manages multiple revisions of files'
 url='https://www.gnu.org/software/rcs/'
 license=('GPL3')
@@ -10,14 +10,18 @@
 arch=('x86_64')
 depends=('ed')
 validpgpkeys=('748EA0E81CB8A7489BFA6CE4670322244C807502')
-source=("https://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz"{,.sig}
 rcs-c++11.patch)
+source=("https://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz"{,.sig}
+rcs-c++11.patch
+t810.diff)
 sha256sums=('063d5a0d7da1821754b80c639cdae2c82b535c8ff4131f75dc7bbf0cd63a5dff'
 'SKIP'
-'569a8d5c851d2619393474a681e05c2eb83912e71adcf1124b895478c91e1fbb')
+'569a8d5c851d2619393474a681e05c2eb83912e71adcf1124b895478c91e1fbb'
+'f7d8f458c6c7a0d435183378eb44e07d9d66c8013b2fea4efca9a3e66a6d')
 
 prepare() {
   cd $pkgname-$pkgver
   patch -p1 -i ../rcs-c++11.patch # Fix build with C++11
+  patch -p1 -i $srcdir/t810.diff # fix test suite failure - git 
f2330a6268d244e97f47a97f4767736fc3b31455
 }
 
 build() {

Added: t810.diff
===
--- t810.diff   (rev 0)
+++ t810.diff   2020-05-21 05:27:50 UTC (rev 387352)
@@ -0,0 +1,14 @@
+diff --git a/tests/t810 b/tests/t810
+index ad3c00d..2e1c653 100644
+--- a/tests/t810
 b/tests/t810
+@@ -27,7 +27,8 @@ split_std_out_err no
+ 
+ must 'echo new line >> $w'
+ must 'ci -mm -l -d -T $w'
+-test $w -nt $v && problem "$w newer than $v"
++test 1 = `./btdt mtimecmp $w $v` \
++&& problem "$w newer than $v"
+ 
+ exit 0
+ 
\ No newline at end of file


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

2020-05-20 Thread Allan McRae via arch-commits
Date: Thursday, May 21, 2020 @ 05:16:35
  Author: allan
Revision: 387351

archrelease: copy trunk to extra-x86_64

Added:
  sound-juicer/repos/extra-x86_64/PKGBUILD
(from rev 387350, sound-juicer/trunk/PKGBUILD)
Deleted:
  sound-juicer/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-21 05:16:18 UTC (rev 387350)
+++ PKGBUILD2020-05-21 05:16:35 UTC (rev 387351)
@@ -1,38 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-# Contributor: Ben 
-
-pkgname=sound-juicer
-pkgver=3.24.0+2+gb8380d2d
-pkgrel=2
-pkgdesc="A lean and friendly audio CD extractor for GNOME"
-url="https://wiki.gnome.org/Apps/SoundJuicer;
-arch=(x86_64)
-license=(GPL)
-depends=(libmusicbrainz5 libdiscid gtk3 gst-plugins-base gst-plugins-good 
brasero iso-codes)
-makedepends=(intltool itstool gnome-common appstream-glib git)
-_commit=b8380d2da3b799560d5703ae8159a492877cd411  # master
-source=("git+https://git.gnome.org/browse/sound-juicer#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---enable-compile-warnings=minimum
-  make
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="${pkgdir}" install
-}

Copied: sound-juicer/repos/extra-x86_64/PKGBUILD (from rev 387350, 
sound-juicer/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-21 05:16:35 UTC (rev 387351)
@@ -0,0 +1,39 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+# Contributor: Ben 
+
+pkgname=sound-juicer
+pkgver=3.24.0+2+gb8380d2d
+pkgrel=3
+pkgdesc="A lean and friendly audio CD extractor for GNOME"
+url="https://wiki.gnome.org/Apps/SoundJuicer;
+arch=(x86_64)
+license=(GPL)
+depends=(libmusicbrainz5 libdiscid gtk3 gst-plugins-base gst-plugins-good 
brasero iso-codes)
+makedepends=(intltool itstool gnome-common appstream-glib git)
+_commit=b8380d2da3b799560d5703ae8159a492877cd411  # master
+source=("git+https://git.gnome.org/browse/sound-juicer#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  sed -i "/^AM_GNU_GETTEXT_VERSION.*/a 
AM_GNU_GETTEXT_REQUIRE_VERSION([0.19.6])" configure.ac  
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--enable-compile-warnings=minimum
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="${pkgdir}" install
+}


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

2020-05-20 Thread Allan McRae via arch-commits
Date: Thursday, May 21, 2020 @ 05:16:18
  Author: allan
Revision: 387350

upgpkg: sound-juicer 3.24.0+2+gb8380d2d-3: fix FTBFS

Modified:
  sound-juicer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-21 00:22:11 UTC (rev 387349)
+++ PKGBUILD2020-05-21 05:16:18 UTC (rev 387350)
@@ -4,7 +4,7 @@
 
 pkgname=sound-juicer
 pkgver=3.24.0+2+gb8380d2d
-pkgrel=2
+pkgrel=3
 pkgdesc="A lean and friendly audio CD extractor for GNOME"
 url="https://wiki.gnome.org/Apps/SoundJuicer;
 arch=(x86_64)
@@ -22,6 +22,7 @@
 
 prepare() {
   cd $pkgname
+  sed -i "/^AM_GNU_GETTEXT_VERSION.*/a 
AM_GNU_GETTEXT_REQUIRE_VERSION([0.19.6])" configure.ac  
   NOCONFIGURE=1 ./autogen.sh
 }
 


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

2020-05-20 Thread Andrew Crerar via arch-commits
Date: Thursday, May 21, 2020 @ 02:45:10
  Author: andrewsc
Revision: 631037

archrelease: copy trunk to community-any

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

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

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

[arch-commits] Commit in firefox-developer-edition-i18n/trunk (PKGBUILD)

2020-05-20 Thread Andrew Crerar via arch-commits
Date: Thursday, May 21, 2020 @ 02:44:45
  Author: andrewsc
Revision: 631036

upgpkg: firefox-developer-edition-i18n 77.0b8-1

Modified:
  firefox-developer-edition-i18n/trunk/PKGBUILD

--+
 PKGBUILD |  194 ++---
 1 file changed, 97 insertions(+), 97 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-21 02:23:40 UTC (rev 631035)
+++ PKGBUILD2020-05-21 02:44:45 UTC (rev 631036)
@@ -1,7 +1,7 @@
 # Maintainer: Andrew Crerar 
 
 pkgbase=firefox-developer-edition-i18n
-pkgver=77.0b7
+pkgver=77.0b8
 pkgrel=1
 pkgdesc="Language pack for Firefox Developer Edition"
 arch=('any')
@@ -132,99 +132,99 @@
 
"$pkgdir/usr/lib/firefox-developer-edition/browser/extensions/langpack-$1...@devedition.mozilla.org.xpi"
 }
 
-sha512sums=('8e967d35aea6d7dbc84ab2566305631bbb6dbaaa4edf2a56b6662611b7102d1d46af81c07cf4243b7b5545857a7eebf7c0b495a5bb830433fcb63d2ce3124e3c'
-
'f0aea46e431b2278e12e55aed161fdc1abfafbc241732c01281f61f429af71c49565bd03e3d9d5a0742d35489fa9c84f816129feb99b6bbde4cc050d7bf89cd7'
-
'aa1444f0e35b2a90a0252de4d79525a8fde73b20fee2082724a94f2fa8d2f37a83e99a2e87e1698df1590076551b374b7350747eed8f381b2d5d4da269bb4bec'
-
'f3a0c8f7795a5596f3d630407dda9a21ef42fdc2d5f5fffcec8cf1684d11240fc08df7e43aa1b4446e4a7d6dd0623713f6d60f2e533aed2c553dcfe98a366140'
-
'142e71712961653954aaab91ea35af28390d365cfba2606cdfe6686d494f487303f887b8f5af650fbbfc8050f7f183b25c4b23dd84d70d9968948ea1f40e376c'
-
'd6cb59a528ce35954fd8947fb548af451acbf2d13fb4fcf5c9aa3ef9849e712101f7290ce3d71d07d9ece677b41715f0a40ea39b956d6da198a52dfa983ac4ab'
-
'c4f7732f78f8bd6a3ff7eafc077b77fbe268a083c985d373dec4db6b93101fb197e7613cc86b674e08ba8ea8eb8c06f614f837a0a1e61a7aa79ed26b71423101'
-
'0f4770a6d317b8f0c0da0eaa6eca7fd6f7d14c972ada4ad29171fb4946f0c4c158f7c0b877230616ee8d2fc0a4028d146b116814e757763a3f71fcfa9f5d'
-
'e6460d84338272bab23a1d59d8feda65266878b555dc5bd87308ef805ff0e8d3d9d377f3e4de7179aa65b57a4fb3aed26ad3be304641eea4d96d704d5a59b6a4'
-
'63117cca40407a59c303015f76a46acaa1def900489b3e112571547397092c7ad2c3d0508045054595bbadbbda2f83011c6493cd11f2a86858e6720c4cc02554'
-
'5cf6d93a81ed56f407b39b45b3473f604089b2d36eda5cb5e82c1db438ff8ed76cd249f7f188108b5738ee528ee832b18f77b77af8bb1860164924d97829a858'
-
'dc6d7ae2009a2adf298779b76ce9259cfea2ab7722cd22668c0f48d784218397f7be3ce6ff80be2a2160ae1790019102a11ef4362ad089a947a92dbf7676da34'
-
'b315596437b5f33045ec5d3b9749589be3375013edfa9b224efe13d3c8e59e64b18be2dc3e5afb91a658a5477d2fb64350ff29dcaf0032fc04034f1f7b3eda94'
-
'03053750c50ad0dbe75065227d9234156d3e57d1f070c3594ddc14b0c84c6bc878a9797281872b04343c161281d5b3e62c821bca86f523fa5b8096bdaf7e844a'
-
'f5ea97ee1d71486b4d0d5fb40374df03ff1596be3a2a4f34c640455c864abe64d82f5668a38d7c5c1f57f47e5dc0da0be468cb42290282492ddd8cabdc1d5fbb'
-
'472d305cc84fcecf10b22bb86a50763ee51feb676b2b861dfb2f2cd02574c86221502995c29fdb8ebbc14314c26634aa5a950c2fdd53e08f6a1d716b062f51db'
-
'd49077182670b08bc6a0aba749b5d68fbff05573a72d03f5569cc24dd0c64c5f81754e66bbe24a88e63bf0438af3f4cef70fc5b0a8f538676eb282507e849b64'
-
'e049757ee44a7cbd859dbeee84268157e9de09e6a1f5f051b0d5ae950f5d7ced1cf680e0dea588c2ff029ba5aa1445023f5bc69cac72292385546751b5ae'
-
'74e20ba6287f5f4943d2be353f56333888c37139e05fccd8c16dd00f87cb8d776f2e86555c37d7e33b03cc3bba4cdbed12e061177056b54cb4ad8e6dcde55504'
-
'ca7ef67fc2aeba58f322e95c4f6a23e0a14e5deda380581fbbcc305a27138ae4d1db2f84e3f80dc4857a70e1c79240956df3e48f6f2829ff3f3aa98a3325981c'
-
'd67f3f52e0fa0f2ddec29f2dc15c79376a639c4ad51c62a8b0789bc7e121f6b7a861bbc2752d7a6cecc6551f5daf3d76b1efecdecd4898e4ee3381863ff30ac2'
-
'f36bfd7d67948f78fd6f47a65027cd53c0b50b18d4801c42d60b757fe8748014b3fd004fbdb928b98b63a0dd8c7f320c5201913d6a9ccb259cf7e8c41d478319'
-
'6e148f457b1ed362885d09ac90dbad2e888ab27d92114fe6d41415bdb3f9b2f8bab3e3472b2d05dc8d29c16431a1930335681f097572a4458f38a5437fb34bf2'
-
'67dc88bc8f938d946a3092480448e80cb082546f336e1f1c4f95e9b93eea9dc3f2773a9b21eb2b6ce31fd708301dd1fb3646b044e8ffa345b54b73ab5299d1c6'
-
'9cbaf1aaa8d997ee25728e5398e781f0942186de74d98dfac5111c0e7f97d5de18e0570225310cadc86da3d9b63e3e69ab8d6bd2c7649a305412b312aa999401'
-
'a237c3ddd432748075091f3cb0726e1ad0c1655d1e560a23541d689a01e86747bbbddcb9f14279759c7df7f2d97232dfc2deeefa0bb3de6d5a164ae099ed504a'
-
'e5f0b1adb4f752dcbd430661612ae79c4fca6b5c8c0492ed95c0de04c5cc56dc38c1d10536d7a4be4464895c9b8131a29f338fc1b57ef6f555a13e7c66d0'
-
'2c9bbabcd1652d03ff8c5214841ddf1d4c735f2a05cfe69b874534f34a351d6e3ca2de980d2c3a291845ef2f8805fac1e3d166e9a90884b2a444d6219e979ec6'
-

[arch-commits] Commit in firefox-developer-edition/repos/community-x86_64 (8 files)

2020-05-20 Thread Andrew Crerar via arch-commits
Date: Thursday, May 21, 2020 @ 02:23:40
  Author: andrewsc
Revision: 631035

archrelease: copy trunk to community-x86_64

Added:
  
firefox-developer-edition/repos/community-x86_64/0001_Use_remoting_name_for_GDK_application_names.patch
(from rev 631034, 
firefox-developer-edition/trunk/0001_Use_remoting_name_for_GDK_application_names.patch)
  firefox-developer-edition/repos/community-x86_64/PKGBUILD
(from rev 631034, firefox-developer-edition/trunk/PKGBUILD)
  
firefox-developer-edition/repos/community-x86_64/firefox-developer-edition.desktop
(from rev 631034, 
firefox-developer-edition/trunk/firefox-developer-edition.desktop)
  firefox-developer-edition/repos/community-x86_64/firefox-install-dir.patch
(from rev 631034, firefox-developer-edition/trunk/firefox-install-dir.patch)
Deleted:
  
firefox-developer-edition/repos/community-x86_64/0001_Use_remoting_name_for_GDK_application_names.patch
  firefox-developer-edition/repos/community-x86_64/PKGBUILD
  
firefox-developer-edition/repos/community-x86_64/firefox-developer-edition.desktop
  firefox-developer-edition/repos/community-x86_64/firefox-install-dir.patch

+
 0001_Use_remoting_name_for_GDK_application_names.patch |   96 +-
 PKGBUILD   |  450 -
 firefox-developer-edition.desktop  |  680 +++
 firefox-install-dir.patch  |   86 -
 4 files changed, 656 insertions(+), 656 deletions(-)

Deleted: 0001_Use_remoting_name_for_GDK_application_names.patch
===
--- 0001_Use_remoting_name_for_GDK_application_names.patch  2020-05-21 
02:23:13 UTC (rev 631034)
+++ 0001_Use_remoting_name_for_GDK_application_names.patch  2020-05-21 
02:23:40 UTC (rev 631035)
@@ -1,48 +0,0 @@
-# HG changeset patch
-# User Andrew Crerar 
-# Date 153129 14400
-#  Thu May 07 16:25:29 2020 -0400
-# Node ID 9970281ae22ce7cad35870ef91d27149ec7e9879
-# Parent  c9a2a8be0647d05e5f354794c3e7b7298cdbe26f
-Use remoting name for GDK application names
-
-diff --git a/toolkit/xre/nsAppRunner.cpp b/toolkit/xre/nsAppRunner.cpp
 a/toolkit/xre/nsAppRunner.cpp
-+++ b/toolkit/xre/nsAppRunner.cpp
-@@ -3703,11 +3703,7 @@
-   // consistently.
- 
-   // Set program name to the one defined in application.ini.
--  {
--nsAutoCString program(gAppData->name);
--ToLowerCase(program);
--g_set_prgname(program.get());
--  }
-+  g_set_prgname(gAppData->remotingName);
- 
-   // Initialize GTK here for splash.
- 
-diff --git a/widget/gtk/nsAppShell.cpp b/widget/gtk/nsAppShell.cpp
 a/widget/gtk/nsAppShell.cpp
-+++ b/widget/gtk/nsAppShell.cpp
-@@ -24,6 +24,7 @@
- #  include "WakeLockListener.h"
- #endif
- #include "gfxPlatform.h"
-+#include "nsAppRunner.h"
- #include "ScreenHelperGTK.h"
- #include "HeadlessScreenHelper.h"
- #include "mozilla/widget/ScreenManager.h"
-@@ -178,10 +179,8 @@
-   // creating top-level windows. (At this point, a child process hasn't
-   // received the list of registered chrome packages, so the
-   // GetBrandShortName call would fail anyway.)
--  nsAutoString brandName;
--  mozilla::widget::WidgetUtils::GetBrandShortName(brandName);
--  if (!brandName.IsEmpty()) {
--gdk_set_program_class(NS_ConvertUTF16toUTF8(brandName).get());
-+  if (gAppData) {
-+gdk_set_program_class(gAppData->remotingName);
-   }
- }
-   }

Copied: 
firefox-developer-edition/repos/community-x86_64/0001_Use_remoting_name_for_GDK_application_names.patch
 (from rev 631034, 
firefox-developer-edition/trunk/0001_Use_remoting_name_for_GDK_application_names.patch)
===
--- 0001_Use_remoting_name_for_GDK_application_names.patch  
(rev 0)
+++ 0001_Use_remoting_name_for_GDK_application_names.patch  2020-05-21 
02:23:40 UTC (rev 631035)
@@ -0,0 +1,48 @@
+# HG changeset patch
+# User Andrew Crerar 
+# Date 153129 14400
+#  Thu May 07 16:25:29 2020 -0400
+# Node ID 9970281ae22ce7cad35870ef91d27149ec7e9879
+# Parent  c9a2a8be0647d05e5f354794c3e7b7298cdbe26f
+Use remoting name for GDK application names
+
+diff --git a/toolkit/xre/nsAppRunner.cpp b/toolkit/xre/nsAppRunner.cpp
+--- a/toolkit/xre/nsAppRunner.cpp
 b/toolkit/xre/nsAppRunner.cpp
+@@ -3703,11 +3703,7 @@
+   // consistently.
+ 
+   // Set program name to the one defined in application.ini.
+-  {
+-nsAutoCString program(gAppData->name);
+-ToLowerCase(program);
+-g_set_prgname(program.get());
+-  }
++  g_set_prgname(gAppData->remotingName);
+ 
+   // Initialize GTK here for splash.
+ 
+diff --git a/widget/gtk/nsAppShell.cpp b/widget/gtk/nsAppShell.cpp
+--- a/widget/gtk/nsAppShell.cpp
 b/widget/gtk/nsAppShell.cpp
+@@ -24,6 +24,7 @@
+ #  include "WakeLockListener.h"
+ #endif
+ #include "gfxPlatform.h"
++#include "nsAppRunner.h"
+ 

[arch-commits] Commit in firefox-developer-edition/trunk (PKGBUILD)

2020-05-20 Thread Andrew Crerar via arch-commits
Date: Thursday, May 21, 2020 @ 02:23:13
  Author: andrewsc
Revision: 631034

upgpkg: firefox-developer-edition 77.0b8-1

Modified:
  firefox-developer-edition/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-21 02:06:43 UTC (rev 631033)
+++ PKGBUILD2020-05-21 02:23:13 UTC (rev 631034)
@@ -2,7 +2,7 @@
 # Contributor: Jan Alexander Steffens (heftig) 
 
 pkgname=firefox-developer-edition
-pkgver=77.0b7
+pkgver=77.0b8
 pkgrel=1
 pkgdesc="Developer Edition of the popular Firefox web browser"
 arch=('x86_64')
@@ -23,7 +23,7 @@
 firefox-install-dir.patch
 0001_Use_remoting_name_for_GDK_application_names.patch
 "$pkgname".desktop)
-sha512sums=('276d856a5d930cf7d07d07fac4ce0337a047cf2bb4883dde3619334df2125ce08707d217e484efa81d1d50ba242e7317ab2fc26f736056461b7f194422f9238e'
+sha512sums=('3c8350e18b33cab581f07e29bfaa29c56041b0011ff6dc4fe2fe15e93539fcf01909dc6ba692898f77dea8e1d693f0a551539eaa335a8893bc7ed284f0c8839d'
 'SKIP'
 
'b66dbe7f262d036e5a5b895ab5b0dbb03313bca18b0823c001ef2dbaeb1a33169b57db0cf4dfd268499f28913845119902b5d62e8a6a9cc4820eb0ee2f322a1e'
 
'812f0f34d16472a305ad78b5b22f4d0ef0ac63e47e10700954f4e3374cfe25d596a9ef137ea48a421128d504affb653cf310bd3c33bc313d505924f8f392ad8f'


[arch-commits] Commit in (4 files)

2020-05-20 Thread Kpcyrd via arch-commits
Date: Thursday, May 21, 2020 @ 02:06:20
  Author: kpcyrd
Revision: 631032

upgpkg: reprepro 5.3.0-2

Added:
  reprepro/
  reprepro/repos/
  reprepro/trunk/
  reprepro/trunk/PKGBUILD

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

Added: reprepro/trunk/PKGBUILD
===
--- reprepro/trunk/PKGBUILD (rev 0)
+++ reprepro/trunk/PKGBUILD 2020-05-21 02:06:20 UTC (rev 631032)
@@ -0,0 +1,29 @@
+# Maintainer: kpcyrd 
+# Contributor: Andre Klitzing 
+# Contributor: max-k 
+
+pkgname=reprepro
+pkgver=5.3.0
+pkgrel=2
+pkgdesc='Debian package repository producer'
+url="https://salsa.debian.org/brlink/reprepro;
+arch=('x86_64')
+license=('GPL2')
+depends=('db' 'gpgme' 'zlib' 'bzip2' 'xz' 'libarchive' 'libgpg-error')
+source=("http://ftp.debian.org/debian/pool/main/r/${pkgname}/${pkgname}_${pkgver}.orig.tar.gz;)
+sha512sums=('2d4c7d6389bbec629b2c75355d120efbb9fcc1a603c8086093fa7cf466c6ea390f2e688a38800094031746b0d05a9906d32019aa2ed591cecbfe9c875ce76916')
+b2sums=('e58722c5c72055271288def4d2639357a146fbb032e7f3be12c70ac54692fe7a2c4cd57c1850332ef7852f060d5d7d0f86665193be5123f4cdc3fb3da2fe28aa')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:


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

2020-05-20 Thread Kpcyrd via arch-commits
Date: Thursday, May 21, 2020 @ 02:06:43
  Author: kpcyrd
Revision: 631033

archrelease: copy trunk to community-x86_64

Added:
  reprepro/repos/community-x86_64/
  reprepro/repos/community-x86_64/PKGBUILD
(from rev 631032, reprepro/trunk/PKGBUILD)

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

Copied: reprepro/repos/community-x86_64/PKGBUILD (from rev 631032, 
reprepro/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2020-05-21 02:06:43 UTC (rev 631033)
@@ -0,0 +1,29 @@
+# Maintainer: kpcyrd 
+# Contributor: Andre Klitzing 
+# Contributor: max-k 
+
+pkgname=reprepro
+pkgver=5.3.0
+pkgrel=2
+pkgdesc='Debian package repository producer'
+url="https://salsa.debian.org/brlink/reprepro;
+arch=('x86_64')
+license=('GPL2')
+depends=('db' 'gpgme' 'zlib' 'bzip2' 'xz' 'libarchive' 'libgpg-error')
+source=("http://ftp.debian.org/debian/pool/main/r/${pkgname}/${pkgname}_${pkgver}.orig.tar.gz;)
+sha512sums=('2d4c7d6389bbec629b2c75355d120efbb9fcc1a603c8086093fa7cf466c6ea390f2e688a38800094031746b0d05a9906d32019aa2ed591cecbfe9c875ce76916')
+b2sums=('e58722c5c72055271288def4d2639357a146fbb032e7f3be12c70ac54692fe7a2c4cd57c1850332ef7852f060d5d7d0f86665193be5123f4cdc3fb3da2fe28aa')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:


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

2020-05-20 Thread Jan Steffens via arch-commits
Date: Wednesday, May 20, 2020 @ 23:01:26
  Author: heftig
Revision: 387049

archrelease: copy trunk to testing-x86_64

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

-+
 PKGBUILD|  196 
 config  |10762 ++
 sphinx-workaround.patch |   13 
 3 files changed, 10971 insertions(+)

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


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

2020-05-20 Thread Jan Steffens via arch-commits
Date: Wednesday, May 20, 2020 @ 23:01:27
  Author: heftig
Revision: 387051

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 387048, 
linux-lts/trunk/0001-ZEN-Add-sysctl-and-CONFIG-to-disallow-unprivileged-C.patch)
  linux-lts/repos/testing-x86_64/0002-gcc-common.h-Update-for-GCC-10.patch
(from rev 387048, linux-lts/trunk/0002-gcc-common.h-Update-for-GCC-10.patch)
  linux-lts/repos/testing-x86_64/PKGBUILD
(from rev 387048, linux-lts/trunk/PKGBUILD)
  linux-lts/repos/testing-x86_64/config
(from rev 387048, linux-lts/trunk/config)
  linux-lts/repos/testing-x86_64/sphinx-workaround.patch
(from rev 387048, linux-lts/trunk/sphinx-workaround.patch)

-+
 0001-ZEN-Add-sysctl-and-CONFIG-to-disallow-unprivileged-C.patch |  132 
 0002-gcc-common.h-Update-for-GCC-10.patch   |   92 
 PKGBUILD|  197 
 config  |10597 
++
 sphinx-workaround.patch |   15 
 5 files changed, 11033 insertions(+)

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


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

2020-05-20 Thread Jan Steffens via arch-commits
Date: Wednesday, May 20, 2020 @ 23:01:15
  Author: heftig
Revision: 631022

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

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

Copied: broadcom-wl/repos/community-testing-x86_64/PKGBUILD (from rev 631019, 
broadcom-wl/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-05-20 23:01:15 UTC (rev 631022)
@@ -0,0 +1,41 @@
+# Maintainer: Eli Schwartz 
+
+_module=broadcom-wl
+_kernelname=  # Build against stock -ARCH kernel
+#_kernelname=-custom  # Build against kernel with a different name
+pkgname=${_module}${_kernelname}
+pkgver=6.30.223.271
+pkgrel=202
+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 tp_smapi/repos (2 files)

2020-05-20 Thread Jan Steffens via arch-commits
Date: Wednesday, May 20, 2020 @ 23:01:14
  Author: heftig
Revision: 631021

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

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

Copied: tp_smapi/repos/community-testing-x86_64/PKGBUILD (from rev 631019, 
tp_smapi/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-05-20 23:01:14 UTC (rev 631021)
@@ -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
+pkgver=0.43
+pkgrel=209
+pkgdesc="Modules for ThinkPad's SMAPI functionality"
+arch=('x86_64')
+url='https://github.com/evgeni/tp_smapi'
+license=('GPL')
+makedepends=('linux-headers' 'git')
+_commit=a63729ab30d85430048f65c37f29188ab484cd52  # tags/tp-smapi/0.43
+source=("git+https://github.com/evgeni/tp_smapi#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^tp-smapi\///;s/-/+/g'
+}
+
+build() {
+  cd $pkgname
+
+  # https://bugs.archlinux.org/task/54975 (kernel has no 
_GLOBAL_OFFSET_TABLE_):
+  # Clear EXTRA_CFLAGS since it defaults to injecting CFLAGS and -fno-plt 
breaks the modules
+
+  make HDAPS=1 KVER="$(

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

2020-05-20 Thread Jan Steffens via arch-commits
Date: Wednesday, May 20, 2020 @ 23:01:14
  Author: heftig
Revision: 631020

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

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

Copied: virtualbox-host-modules-arch/repos/community-testing-x86_64/PKGBUILD 
(from rev 631019, virtualbox-host-modules-arch/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-05-20 23:01:14 UTC (rev 631020)
@@ -0,0 +1,38 @@
+# Maintainer: Sébastien Luttringer
+# Contributor: Ionut Biru 
+
+pkgname='virtualbox-host-modules-arch'
+pkgver=6.1.8
+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 wireguard-lts/repos (testing-x86_64 testing-x86_64/PKGBUILD)

2020-05-20 Thread Jan Steffens via arch-commits
Date: Wednesday, May 20, 2020 @ 23:01:20
  Author: heftig
Revision: 387046

archrelease: copy trunk to testing-x86_64

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

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

Copied: wireguard-lts/repos/testing-x86_64/PKGBUILD (from rev 387045, 
wireguard-lts/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-05-20 23:01:20 UTC (rev 387046)
@@ -0,0 +1,32 @@
+# Maintainer: Christian Hesse 
+
+pkgname=wireguard-lts
+pkgver=1.0.20200506
+pkgrel=7
+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 r8168/repos (3 files)

2020-05-20 Thread Jan Steffens via arch-commits
Date: Wednesday, May 20, 2020 @ 23:01:15
  Author: heftig
Revision: 631023

archrelease: copy trunk to community-testing-x86_64

Added:
  r8168/repos/community-testing-x86_64/
  r8168/repos/community-testing-x86_64/0001-linux-5.6.patch
(from rev 631019, r8168/trunk/0001-linux-5.6.patch)
  r8168/repos/community-testing-x86_64/PKGBUILD
(from rev 631019, r8168/trunk/PKGBUILD)

--+
 0001-linux-5.6.patch |   71 +
 PKGBUILD |   44 ++
 2 files changed, 115 insertions(+)

Copied: r8168/repos/community-testing-x86_64/0001-linux-5.6.patch (from rev 
631019, r8168/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-05-20 23:01:15 UTC 
(rev 631023)
@@ -0,0 +1,71 @@
+diff --git a/src/r8168_n.c b/src/r8168_n.c
+index 0df6041..557823e 100755
+--- a/src/r8168_n.c
 b/src/r8168_n.c
+@@ -456,7 +456,11 @@ static void rtl8168_hw_config(struct net_device *dev);
+ static void rtl8168_hw_start(struct net_device *dev);
+ static int rtl8168_close(struct net_device *dev);
+ static void rtl8168_set_rx_mode(struct net_device *dev);
++#if LINUX_VERSION_CODE >= KERNEL_VERSION(5,6,0) 
++static void rtl8168_tx_timeout(struct net_device *dev, unsigned int new_mtu);
++#else
+ static void rtl8168_tx_timeout(struct net_device *dev);
++#endif
+ static struct net_device_stats *rtl8168_get_stats(struct net_device *dev);
+ static int rtl8168_rx_interrupt(struct net_device *, struct rtl8168_private 
*, napi_budget);
+ static int rtl8168_change_mtu(struct net_device *dev, int new_mtu);
+@@ -1615,7 +1619,14 @@ static int rtl8168_proc_open(struct inode *inode, 
struct file *file)
+ 
+ return single_open(file, show, dev);
+ }
+-
++#if LINUX_VERSION_CODE >= KERNEL_VERSION(5,6,0)
++static const struct proc_ops rtl8168_proc_ops = {
++.proc_open   = rtl8168_proc_open,
++.proc_read   = seq_read,
++.proc_lseek  = seq_lseek,
++.proc_release= single_release,
++};
++#else
+ static const struct file_operations rtl8168_proc_fops = {
+ .open   = rtl8168_proc_open,
+ .read   = seq_read,
+@@ -1623,6 +1634,7 @@ static const struct file_operations rtl8168_proc_fops = {
+ .release= single_release,
+ };
+ #endif
++#endif
+ 
+ /*
+  * Table of proc files we need to create.
+@@ -1665,9 +1677,15 @@ static void rtl8168_proc_init(struct net_device *dev)
+ tp->proc_dir = dir;
+ proc_init_num++;
+ 
+-for (f = rtl8168_proc_files; f->name[0]; f++) {
+-if (!proc_create_data(f->name, S_IFREG | S_IRUGO, dir,
+-  _proc_fops, f->show)) {
++ for (f = rtl8168_proc_files; f->name[0]; f++) {
++#if LINUX_VERSION_CODE >= KERNEL_VERSION(5,6,0)
++ if (!proc_create_data(f->name, S_IFREG | S_IRUGO, dir,
++  _proc_ops, f->show)) 
++#else
++ if (!proc_create_data(f->name, S_IFREG | S_IRUGO, dir,
++  _proc_fops, f->show))
++#endif
++ {
+ printk("Unable to initialize "
+"/proc/net/%s/%s/%s\n",
+MODULENAME, dev->name, f->name);
+@@ -27844,7 +27861,11 @@ static void rtl8168_reset_task(struct work_struct 
*work)
+ }
+ 
+ static void
++#if LINUX_VERSION_CODE >= KERNEL_VERSION(5,6,0)
++rtl8168_tx_timeout(struct net_device *dev, unsigned int txqueue)
++#else
+ rtl8168_tx_timeout(struct net_device *dev)
++#endif
+ {
+ struct rtl8168_private *tp = netdev_priv(dev);
+ unsigned long flags;

Copied: r8168/repos/community-testing-x86_64/PKGBUILD (from rev 631019, 
r8168/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-05-20 23:01:15 UTC (rev 631023)
@@ -0,0 +1,44 @@
+# Maintainer: Massimiliano Torromeo 
+# Contributor: Bob Fanger < bfanger(at)gmail >
+# Contributor: Filip , Det < nimetonmaili(at)gmail >
+
+pkgname=r8168
+pkgver=8.048.02
+pkgrel=16
+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
+0001-linux-5.6.patch)
+sha256sums=('0f209762fa37b90c6ba347a815fd083c9d342e38dbec14273059a419e671df70'
+'7d0c468036a6acd83d056d6c243b3ace8be34bf3d633aa24bf54b9c3595f8a0d')
+
+prepare() {
+   cd "$pkgname-$pkgver"
+   patch -Np1 < ../0001-linux-5.6.patch
+}
+

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

2020-05-20 Thread Jan Steffens via arch-commits
Date: Wednesday, May 20, 2020 @ 23:01:20
  Author: heftig
Revision: 631031

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 631028, bbswitch/trunk/0001-proc_ops-struct.patch)
  bbswitch/repos/community-testing-x86_64/PKGBUILD
(from rev 631029, bbswitch/trunk/PKGBUILD)

+
 0001-proc_ops-struct.patch |   36 ++
 PKGBUILD   |   45 +++
 2 files changed, 81 insertions(+)

Copied: bbswitch/repos/community-testing-x86_64/0001-proc_ops-struct.patch 
(from rev 631028, 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-05-20 23:01:20 UTC 
(rev 631031)
@@ -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/PKGBUILD (from rev 631029, 
bbswitch/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-05-20 23:01:20 UTC (rev 631031)
@@ -0,0 +1,45 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: M0Rf30
+# Contributor: Samsagax 
+
+pkgbase=bbswitch
+pkgname=(bbswitch bbswitch-dkms)
+pkgver=0.8
+pkgrel=322
+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")
+sha512sums=('11ab163931feb6c0e202d04c4552b848e999fedea9990390c26b28abdb4a69081ccfb5a22d1e390cc274f1c0cfc9adedc719c5fece14738b17aaa93e28865b7c'
+
'993a2895c37ea213c105be668f794af54838d8015d6f561ee6bc7ce65583425515931c83c2487ab97c14454105f233f089e8bdc90ea5ed9576be767335f57ad1')
+
+prepare() {
+cd ${pkgbase}-${pkgver}
+patch -Np1 < $srcdir/0001-proc_ops-struct.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 linux-zen/repos (4 files)

2020-05-20 Thread Jan Steffens via arch-commits
Date: Wednesday, May 20, 2020 @ 23:01:26
  Author: heftig
Revision: 387050

archrelease: copy trunk to testing-x86_64

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

-+
 PKGBUILD|  195 
 config  |10793 ++
 sphinx-workaround.patch |   13 
 3 files changed, 11001 insertions(+)

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


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

2020-05-20 Thread Jan Steffens via arch-commits
Date: Wednesday, May 20, 2020 @ 23:01:18
  Author: heftig
Revision: 631028

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

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

Copied: 
deepin-anything-arch/repos/community-testing-x86_64/0001-linux-5.6.patch (from 
rev 631025, 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-05-20 23:01:18 UTC 
(rev 631028)
@@ -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 
631027, deepin-anything-arch/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-05-20 23:01:18 UTC (rev 631028)
@@ -0,0 +1,35 @@
+# Maintainer: Felix Yan 
+
+pkgname=deepin-anything-arch
+pkgver=5.0.1
+pkgrel=82
+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 deepin-anything-arch/trunk (PKGBUILD)

2020-05-20 Thread Jan Steffens via arch-commits
Date: Wednesday, May 20, 2020 @ 23:00:22
  Author: heftig
Revision: 631018

5.0.1-82: linux 5.6.14.arch1-1

Modified:
  deepin-anything-arch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 23:00:20 UTC (rev 631017)
+++ PKGBUILD2020-05-20 23:00:22 UTC (rev 631018)
@@ -2,7 +2,7 @@
 
 pkgname=deepin-anything-arch
 pkgver=5.0.1
-pkgrel=81
+pkgrel=82
 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 r8168-lts/repos (2 files)

2020-05-20 Thread Jan Steffens via arch-commits
Date: Wednesday, May 20, 2020 @ 23:01:18
  Author: heftig
Revision: 631029

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 631027, r8168-lts/trunk/PKGBUILD)

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

Copied: r8168-lts/repos/community-testing-x86_64/PKGBUILD (from rev 631027, 
r8168-lts/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-05-20 23:01:18 UTC (rev 631029)
@@ -0,0 +1,35 @@
+# Maintainer: Massimiliano Torromeo 
+
+pkgname=r8168-lts
+pkgver=8.048.02
+pkgrel=17
+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=('0f209762fa37b90c6ba347a815fd083c9d342e38dbec14273059a419e671df70')
+
+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" \
+   modules
+}
+
+package() {
+   depends=('glibc' 'linux-lts')
+
+   local 
extradir=/usr/lib/modules/$(

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

2020-05-20 Thread Jan Steffens via arch-commits
Date: Wednesday, May 20, 2020 @ 23:01:20
  Author: heftig
Revision: 387047

archrelease: copy trunk to testing-x86_64

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

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

Copied: nvidia-lts/repos/testing-x86_64/PKGBUILD (from rev 387045, 
nvidia-lts/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-05-20 23:01:20 UTC (rev 387047)
@@ -0,0 +1,38 @@
+# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Eric Bélanger 
+
+pkgname=nvidia-lts
+pkgver=440.82
+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 nvidia/repos (testing-x86_64 testing-x86_64/PKGBUILD)

2020-05-20 Thread Jan Steffens via arch-commits
Date: Wednesday, May 20, 2020 @ 23:01:21
  Author: heftig
Revision: 387048

archrelease: copy trunk to testing-x86_64

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

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

Copied: nvidia/repos/testing-x86_64/PKGBUILD (from rev 387045, 
nvidia/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-05-20 23:01:21 UTC (rev 387048)
@@ -0,0 +1,40 @@
+# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Felix Yan 
+# Contributor: Thomas Baechler 
+
+pkgname=nvidia
+pkgver=440.82
+pkgrel=17
+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 ndiswrapper-arch/repos (6 files)

2020-05-20 Thread Jan Steffens via arch-commits
Date: Wednesday, May 20, 2020 @ 23:01:16
  Author: heftig
Revision: 631027

archrelease: copy trunk to community-testing-x86_64

Added:
  ndiswrapper-arch/repos/community-testing-x86_64/
  ndiswrapper-arch/repos/community-testing-x86_64/PKGBUILD
(from rev 631019, ndiswrapper-arch/trunk/PKGBUILD)
  ndiswrapper-arch/repos/community-testing-x86_64/kernel-5.3.patch
(from rev 631019, ndiswrapper-arch/trunk/kernel-5.3.patch)
  ndiswrapper-arch/repos/community-testing-x86_64/kernel-5.4.patch
(from rev 631019, ndiswrapper-arch/trunk/kernel-5.4.patch)
  ndiswrapper-arch/repos/community-testing-x86_64/kernel-5.5.patch
(from rev 631020, ndiswrapper-arch/trunk/kernel-5.5.patch)
  ndiswrapper-arch/repos/community-testing-x86_64/kernel-5.6.patch
(from rev 631020, ndiswrapper-arch/trunk/kernel-5.6.patch)

--+
 PKGBUILD |   44 +++
 kernel-5.3.patch |   69 +++
 kernel-5.4.patch |   22 +
 kernel-5.5.patch |   72 
 kernel-5.6.patch |   85 +
 5 files changed, 292 insertions(+)

Copied: ndiswrapper-arch/repos/community-testing-x86_64/PKGBUILD (from rev 
631019, ndiswrapper-arch/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-05-20 23:01:16 UTC (rev 631027)
@@ -0,0 +1,44 @@
+# Maintainer: Felix Yan 
+# Contributor: maz-1 
+
+pkgname=ndiswrapper-arch
+pkgver=1.62
+pkgrel=61
+pkgdesc="Module for NDIS (Windows Network Drivers) drivers supplied by 
vendors, kernel module for Arch kernel"
+arch=('x86_64')
+url="https://sourceforge.net/projects/ndiswrapper/;
+license=('GPL')
+makedepends=('linux-headers')
+provides=('NDISWRAPPER-MODULE')
+replaces=('ndiswrapper-module')
+source=("https://sourceforge.net/projects/ndiswrapper/files/stable/ndiswrapper-$pkgver.tar.gz;
+'kernel-5.3.patch' 'kernel-5.4.patch' 'kernel-5.5.patch' 
'kernel-5.6.patch')
+sha512sums=('a6e111bc699572642e44d6d31cc2f06374648a01b8dd7dd4e74d6ad5e187e39f99faee38f792c83a94d4618ae4d8866914fb3f60b1d80e838a753285ea7cf783'
+
'c404f35280534b172235c5c578657d7a30ac2253c7c2abedd65a183d09390e95e7c3030cb409accb4d198ff0411482f8029f8664418c99d5672f92e9c733801d'
+
'36450042db79ed4545030276bff9db1bc9895259f38c1c0bf4dc238ad76ec61c2e08d437997dafd327f2a8fd1694d61e418941555e92144e3ec86c8066561429'
+
'ed543cbfb236de0a20e1f164c22c83cd19aec416b5f50a58cee731857231c667d166c36814047174bddda36261af71e92ecdb2944e5b818a603085af279fbd89'
+
'f37efd16a32c4a36607d43ccda0979a914521157e2095db4c331315638f24d440d8628ea7e98c96f92155e1df133478f0ce9eb76152e963eca4a3fecafbca155')
+
+prepare() {
+  cd ndiswrapper-$pkgver
+  patch --no-backup-if-mismatch -p2 -i "$srcdir"/kernel-5.3.patch
+  patch --no-backup-if-mismatch -p1 -i "$srcdir"/kernel-5.4.patch
+  patch --no-backup-if-mismatch -p1 -i "$srcdir"/kernel-5.5.patch
+  patch --no-backup-if-mismatch -p1 -i "$srcdir"/kernel-5.6.patch
+}
+
+build() {
+  _kernver="$(task = NULL;
+   info->count = 0;
+ #ifdef CONFIG_SMP
++#if LINUX_VERSION_CODE < KERNEL_VERSION(5,3,0)
+   cpumask_setall(>cpus_allowed);
++#else
++  cpumask_setall(>cpus_mask);
++#endif
+ #endif
+   }
+   } while (0);
+diff --git a/ndiswrapper/driver/ntoskernel.h b/ndiswrapper/driver/ntoskernel.h
+index 3c4c6ff..8a71ae3 100644
+--- a/ndiswrapper/driver/ntoskernel.h
 b/ndiswrapper/driver/ntoskernel.h
+@@ -107,7 +107,11 @@ static cpumask_t cpumasks[NR_CPUS];
+ #endif /* CONFIG_SMP */
+ 
+ #ifndef tsk_cpus_allowed
++#if LINUX_VERSION_CODE < KERNEL_VERSION(5,3,0)
+ #define tsk_cpus_allowed(tsk) (&(tsk)->cpus_allowed)
++#else
++#define tsk_cpus_allowed(tsk) (&(tsk)->cpus_mask)
++#endif
+ #endif
+ 
+ #ifndef __packed
+@@ -631,7 +635,12 @@ struct irql_info {
+   int count;
+   struct mutex lock;
+ #ifdef CONFIG_SMP
++#if LINUX_VERSION_CODE < KERNEL_VERSION(5,3,0)
+   cpumask_t cpus_allowed;
++#else
++  const cpumask_t *cpus_ptr;
++  cpumask_t   cpus_mask;
++#endif
+ #endif
+   struct task_struct *task;
+ };
+@@ -658,7 +667,11 @@ static inline KIRQL raise_irql(KIRQL newirql)
+   /* TODO: is this enough to pin down to current cpu? */
+ #ifdef CONFIG_SMP
+   assert(task_cpu(current) == smp_processor_id());
++#if LINUX_VERSION_CODE < KERNEL_VERSION(5,3,0)
+   cpumask_copy(>cpus_allowed, tsk_cpus_allowed(current));
++#else
++  cpumask_copy(>cpus_mask, tsk_cpus_allowed(current));
++#endif
+   set_cpus_allowed_ptr(current, cpumask_of(smp_processor_id()));
+ #endif
+   put_cpu_var(irql_info);
+@@ -682,7 +695,11 @@ static inline void lower_irql(KIRQL oldirql)
+   if (--info->count == 0) {
+   info->task = NULL;
+ #ifdef CONFIG_SMP
++#if 

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

2020-05-20 Thread Jan Steffens via arch-commits
Date: Wednesday, May 20, 2020 @ 23:01:19
  Author: heftig
Revision: 631030

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

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

Copied: tp_smapi-lts/repos/community-testing-x86_64/PKGBUILD (from rev 631028, 
tp_smapi-lts/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-05-20 23:01:19 UTC (rev 631030)
@@ -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=68
+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 netfilter-fullconenat/repos (4 files)

2020-05-20 Thread Jan Steffens via arch-commits
Date: Wednesday, May 20, 2020 @ 23:01:12
  Author: heftig
Revision: 631019

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 631018, netfilter-fullconenat/trunk/Kbuild)
  netfilter-fullconenat/repos/community-testing-x86_64/PKGBUILD
(from rev 631018, netfilter-fullconenat/trunk/PKGBUILD)
  
netfilter-fullconenat/repos/community-testing-x86_64/netfilter-fullconenat.conf
(from rev 631018, netfilter-fullconenat/trunk/netfilter-fullconenat.conf)

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

Copied: netfilter-fullconenat/repos/community-testing-x86_64/Kbuild (from rev 
631018, netfilter-fullconenat/trunk/Kbuild)
===
--- community-testing-x86_64/Kbuild (rev 0)
+++ community-testing-x86_64/Kbuild 2020-05-20 23:01:12 UTC (rev 631019)
@@ -0,0 +1 @@
+obj-m = xt_FULLCONENAT.o

Copied: netfilter-fullconenat/repos/community-testing-x86_64/PKGBUILD (from rev 
631018, netfilter-fullconenat/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-05-20 23:01:12 UTC (rev 631019)
@@ -0,0 +1,40 @@
+# Maintainer: Felix Yan 
+# Contributor: Edward Pacman 
+
+pkgname=netfilter-fullconenat
+pkgver=r73.0cf3b48
+pkgrel=21
+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-05-20 Thread Jan Steffens via arch-commits
Date: Wednesday, May 20, 2020 @ 23:01:16
  Author: heftig
Revision: 631025

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

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

Copied: acpi_call/repos/community-testing-x86_64/PKGBUILD (from rev 631019, 
acpi_call/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-05-20 23:01:16 UTC (rev 631025)
@@ -0,0 +1,33 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: mortzu 
+# Contributor: fnord0 
+
+pkgname=acpi_call
+pkgver=1.1.0
+pkgrel=321
+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 vhba-module/repos (4 files)

2020-05-20 Thread Jan Steffens via arch-commits
Date: Wednesday, May 20, 2020 @ 23:01:15
  Author: heftig
Revision: 631024

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

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

Copied: vhba-module/repos/community-testing-x86_64/60-vhba.rules (from rev 
631019, vhba-module/trunk/60-vhba.rules)
===
--- community-testing-x86_64/60-vhba.rules  (rev 0)
+++ community-testing-x86_64/60-vhba.rules  2020-05-20 23:01:15 UTC (rev 
631024)
@@ -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 631019, 
vhba-module/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-05-20 23:01:15 UTC (rev 631024)
@@ -0,0 +1,53 @@
+# Maintainer: Ray Rashif 
+# Contributor: Mateusz Herych 
+# Contributor: Charles Lindsay 
+
+pkgbase=vhba-module
+pkgname=(vhba-module vhba-module-dkms)
+pkgver=20200106
+pkgrel=45
+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 acpi_call-lts/repos (2 files)

2020-05-20 Thread Jan Steffens via arch-commits
Date: Wednesday, May 20, 2020 @ 23:01:16
  Author: heftig
Revision: 631026

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

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

Copied: acpi_call-lts/repos/community-testing-x86_64/PKGBUILD (from rev 631021, 
acpi_call-lts/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-05-20 23:01:16 UTC (rev 631026)
@@ -0,0 +1,46 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: mortzu 
+# Contributor: fnord0 
+
+pkgname=acpi_call-lts
+pkgver=1.1.0
+pkgrel=149
+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')
+provides=('acpi_call')
+source=("acpi_call-${pkgver}.tar.gz::https://github.com/mkottman/acpi_call/archive/v${pkgver}.tar.gz;)
+sha256sums=('d0d14b42944282724fca76f57d598eed794ef97448f387d1c489d85ad813f2f0')
+
+prepare() {
+  cd acpi_call-$pkgver
+
+  # Fix build with Linux >= 3.17
+  sed -i 's|acpi/acpi.h|linux/acpi.h|' acpi_call.c
+
+  # Fix build with Linux >= 4.12
+  sed -i 's|asm/uaccess.h|linux/uaccess.h|' acpi_call.c
+}
+
+build() {
+  cd acpi_call-$pkgver
+  make KVERSION="$(

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

2020-05-20 Thread Jan Steffens via arch-commits
Date: Wednesday, May 20, 2020 @ 23:00:20
  Author: heftig
Revision: 631017

1.62-61: linux 5.6.14.arch1-1

Modified:
  ndiswrapper-arch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 23:00:17 UTC (rev 631016)
+++ PKGBUILD2020-05-20 23:00:20 UTC (rev 631017)
@@ -3,7 +3,7 @@
 
 pkgname=ndiswrapper-arch
 pkgver=1.62
-pkgrel=60
+pkgrel=61
 pkgdesc="Module for NDIS (Windows Network Drivers) drivers supplied by 
vendors, kernel module for Arch kernel"
 arch=('x86_64')
 url="https://sourceforge.net/projects/ndiswrapper/;


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

2020-05-20 Thread Jan Steffens via arch-commits
Date: Wednesday, May 20, 2020 @ 23:00:06
  Author: heftig
Revision: 631008

0.43-209: linux 5.6.14.arch1-1

Modified:
  tp_smapi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 23:00:04 UTC (rev 631007)
+++ PKGBUILD2020-05-20 23:00:06 UTC (rev 631008)
@@ -9,7 +9,7 @@
 
 pkgname=tp_smapi
 pkgver=0.43
-pkgrel=208
+pkgrel=209
 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-05-20 Thread Jan Steffens via arch-commits
Date: Wednesday, May 20, 2020 @ 23:00:15
  Author: heftig
Revision: 631014

20200106-45: linux 5.6.14.arch1-1

Modified:
  vhba-module/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 23:00:14 UTC (rev 631013)
+++ PKGBUILD2020-05-20 23:00:15 UTC (rev 631014)
@@ -5,7 +5,7 @@
 pkgbase=vhba-module
 pkgname=(vhba-module vhba-module-dkms)
 pkgver=20200106
-pkgrel=44
+pkgrel=45
 pkgdesc="Kernel module that emulates SCSI devices"
 url="https://cdemu.sourceforge.io/;
 arch=(x86_64)


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

2020-05-20 Thread Jan Steffens via arch-commits
Date: Wednesday, May 20, 2020 @ 23:00:14
  Author: heftig
Revision: 631013

1.1.0-149: linux-lts 5.4.42-1

Modified:
  acpi_call-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 23:00:13 UTC (rev 631012)
+++ PKGBUILD2020-05-20 23:00:14 UTC (rev 631013)
@@ -4,7 +4,7 @@
 
 pkgname=acpi_call-lts
 pkgver=1.1.0
-pkgrel=148
+pkgrel=149
 pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
 url='https://github.com/mkottman/acpi_call'
 arch=('x86_64')


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

2020-05-20 Thread Jan Steffens via arch-commits
Date: Wednesday, May 20, 2020 @ 23:00:17
  Author: heftig
Revision: 631015

8.048.02-17: linux-lts 5.4.42-1

Modified:
  r8168-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 23:00:15 UTC (rev 631014)
+++ PKGBUILD2020-05-20 23:00:17 UTC (rev 631015)
@@ -2,7 +2,7 @@
 
 pkgname=r8168-lts
 pkgver=8.048.02
-pkgrel=16
+pkgrel=17
 pkgdesc="A kernel module for Realtek 8168 network cards for linux-lts"
 url="http://www.realtek.com.tw;
 license=("GPL")


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

2020-05-20 Thread Jan Steffens via arch-commits
Date: Wednesday, May 20, 2020 @ 23:00:19
  Author: heftig
Revision: 387045

440.82-17: linux 5.6.14.arch1-1

Modified:
  nvidia/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 23:00:18 UTC (rev 387044)
+++ PKGBUILD2020-05-20 23:00:19 UTC (rev 387045)
@@ -4,7 +4,7 @@
 
 pkgname=nvidia
 pkgver=440.82
-pkgrel=16
+pkgrel=17
 pkgdesc="NVIDIA drivers for linux"
 arch=('x86_64')
 url="https://www.nvidia.com/;


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

2020-05-20 Thread Jan Steffens via arch-commits
Date: Wednesday, May 20, 2020 @ 23:00:09
  Author: heftig
Revision: 631010

0.8-322: linux 5.6.14.arch1-1

Modified:
  bbswitch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 23:00:07 UTC (rev 631009)
+++ PKGBUILD2020-05-20 23:00:09 UTC (rev 631010)
@@ -5,7 +5,7 @@
 pkgbase=bbswitch
 pkgname=(bbswitch bbswitch-dkms)
 pkgver=0.8
-pkgrel=321
+pkgrel=322
 pkgdesc="Kernel module allowing to switch dedicated graphics card on Optimus 
laptops"
 arch=('x86_64')
 url="http://github.com/Bumblebee-Project/bbswitch;


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

2020-05-20 Thread Jan Steffens via arch-commits
Date: Wednesday, May 20, 2020 @ 23:00:07
  Author: heftig
Revision: 631009

6.30.223.271-202: linux 5.6.14.arch1-1

Modified:
  broadcom-wl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 23:00:06 UTC (rev 631008)
+++ PKGBUILD2020-05-20 23:00:07 UTC (rev 631009)
@@ -5,7 +5,7 @@
 #_kernelname=-custom  # Build against kernel with a different name
 pkgname=${_module}${_kernelname}
 pkgver=6.30.223.271
-pkgrel=201
+pkgrel=202
 pkgdesc='Broadcom 802.11 Linux STA wireless driver'
 arch=('x86_64')
 
url='https://www.broadcom.com/support/download-search/?pf=Wireless+LAN+Infrastructure'


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

2020-05-20 Thread Jan Steffens via arch-commits
Date: Wednesday, May 20, 2020 @ 23:00:04
  Author: heftig
Revision: 631007

6.1.8-2: linux 5.6.14.arch1-1

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

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 23:00:03 UTC (rev 631006)
+++ PKGBUILD2020-05-20 23:00:04 UTC (rev 631007)
@@ -3,7 +3,7 @@
 
 pkgname='virtualbox-host-modules-arch'
 pkgver=6.1.8
-pkgrel=1
+pkgrel=2
 pkgdesc='Virtualbox host kernel modules for Arch Kernel'
 arch=('x86_64')
 url='https://virtualbox.org/'


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

2020-05-20 Thread Jan Steffens via arch-commits
Date: Wednesday, May 20, 2020 @ 23:00:11
  Author: heftig
Revision: 631011

0.43-68: linux-lts 5.4.42-1

Modified:
  tp_smapi-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 23:00:09 UTC (rev 631010)
+++ PKGBUILD2020-05-20 23:00:11 UTC (rev 631011)
@@ -9,7 +9,7 @@
 
 pkgname=tp_smapi-lts
 pkgver=0.43
-pkgrel=67
+pkgrel=68
 pkgdesc="Modules for ThinkPad's SMAPI functionality"
 arch=('x86_64')
 url='https://github.com/evgeni/tp_smapi'


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

2020-05-20 Thread Jan Steffens via arch-commits
Date: Wednesday, May 20, 2020 @ 23:00:18
  Author: heftig
Revision: 387044

1.0.20200506-7: linux-lts 5.4.42-1

Modified:
  wireguard-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 23:00:08 UTC (rev 387043)
+++ PKGBUILD2020-05-20 23:00:18 UTC (rev 387044)
@@ -2,7 +2,7 @@
 
 pkgname=wireguard-lts
 pkgver=1.0.20200506
-pkgrel=6
+pkgrel=7
 pkgdesc='Wireguard module for LTS Kernel'
 url='https://www.wireguard.com/'
 arch=('x86_64')


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

2020-05-20 Thread Jan Steffens via arch-commits
Date: Wednesday, May 20, 2020 @ 23:00:13
  Author: heftig
Revision: 631012

8.048.02-16: linux 5.6.14.arch1-1

Modified:
  r8168/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 23:00:11 UTC (rev 631011)
+++ PKGBUILD2020-05-20 23:00:13 UTC (rev 631012)
@@ -4,7 +4,7 @@
 
 pkgname=r8168
 pkgver=8.048.02
-pkgrel=15
+pkgrel=16
 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-05-20 Thread Jan Steffens via arch-commits
Date: Wednesday, May 20, 2020 @ 23:00:17
  Author: heftig
Revision: 631016

1.1.0-321: linux 5.6.14.arch1-1

Modified:
  acpi_call/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 23:00:17 UTC (rev 631015)
+++ PKGBUILD2020-05-20 23:00:17 UTC (rev 631016)
@@ -4,7 +4,7 @@
 
 pkgname=acpi_call
 pkgver=1.1.0
-pkgrel=320
+pkgrel=321
 pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
 url='https://github.com/mkottman/acpi_call'
 arch=('x86_64')


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

2020-05-20 Thread Jan Steffens via arch-commits
Date: Wednesday, May 20, 2020 @ 23:00:08
  Author: heftig
Revision: 387043

440.82-17: linux-lts 5.4.42-1

Modified:
  nvidia-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 22:56:30 UTC (rev 387042)
+++ PKGBUILD2020-05-20 23:00:08 UTC (rev 387043)
@@ -3,7 +3,7 @@
 
 pkgname=nvidia-lts
 pkgver=440.82
-pkgrel=16
+pkgrel=17
 epoch=1
 pkgdesc="NVIDIA drivers for linux-lts"
 arch=('x86_64')


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

2020-05-20 Thread Jan Steffens via arch-commits
Date: Wednesday, May 20, 2020 @ 23:00:03
  Author: heftig
Revision: 631006

r73.0cf3b48-21: linux 5.6.14.arch1-1

Modified:
  netfilter-fullconenat/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 21:48:19 UTC (rev 631005)
+++ PKGBUILD2020-05-20 23:00:03 UTC (rev 631006)
@@ -3,7 +3,7 @@
 
 pkgname=netfilter-fullconenat
 pkgver=r73.0cf3b48
-pkgrel=20
+pkgrel=21
 pkgdesc="A kernel module that turns MASQUERADE into full cone SNAT"
 arch=('x86_64')
 url="https://github.com/Chion82/netfilter-full-cone-nat;


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

2020-05-20 Thread Jan Steffens via arch-commits
Date: Wednesday, May 20, 2020 @ 22:56:30
  Author: heftig
Revision: 387042

5.4.42-1

Added:
  
linux-lts/trunk/0001-ZEN-Add-sysctl-and-CONFIG-to-disallow-unprivileged-C.patch
(from rev 383366, 
linux-lts/trunk/0001-add-sysctl-and-CONFIG-for-unprivileged_userns_clone.patch)
  linux-lts/trunk/0002-gcc-common.h-Update-for-GCC-10.patch
(from rev 383366, linux-lts/trunk/0001-gcc-common.h-Update-for-GCC-10.patch)
Modified:
  linux-lts/trunk/PKGBUILD
Deleted:
  linux-lts/trunk/0001-add-sysctl-and-CONFIG-for-unprivileged_userns_clone.patch
  linux-lts/trunk/0001-gcc-common.h-Update-for-GCC-10.patch
  linux-lts/trunk/0002-Makefile-disallow-data-races-on-gcc-10-as-well.patch
  linux-lts/trunk/0003-x86-Fix-early-boot-crash-on-gcc-10-next-try.patch

-+
 0001-ZEN-Add-sysctl-and-CONFIG-to-disallow-unprivileged-C.patch |  132 
++
 0001-add-sysctl-and-CONFIG-for-unprivileged_userns_clone.patch  |  132 
--
 0001-gcc-common.h-Update-for-GCC-10.patch   |   92 --
 0002-Makefile-disallow-data-races-on-gcc-10-as-well.patch   |   32 --
 0002-gcc-common.h-Update-for-GCC-10.patch   |   92 ++
 0003-x86-Fix-early-boot-crash-on-gcc-10-next-try.patch  |  131 
-
 PKGBUILD|   16 -
 7 files changed, 230 insertions(+), 397 deletions(-)

Copied: 
linux-lts/trunk/0001-ZEN-Add-sysctl-and-CONFIG-to-disallow-unprivileged-C.patch 
(from rev 383366, 
linux-lts/trunk/0001-add-sysctl-and-CONFIG-for-unprivileged_userns_clone.patch)
===
--- 0001-ZEN-Add-sysctl-and-CONFIG-to-disallow-unprivileged-C.patch 
(rev 0)
+++ 0001-ZEN-Add-sysctl-and-CONFIG-to-disallow-unprivileged-C.patch 
2020-05-20 22:56:30 UTC (rev 387042)
@@ -0,0 +1,132 @@
+From f4b254de5d2b75143dd7c225e58afb3f5ee3bae6 Mon Sep 17 00:00:00 2001
+From: "Jan Alexander Steffens (heftig)" 
+Date: Mon, 16 Sep 2019 04:53:20 +0200
+Subject: [PATCH] ZEN: Add sysctl and CONFIG to disallow unprivileged
+ CLONE_NEWUSER
+
+Our default behavior continues to match the vanilla kernel.
+---
+ init/Kconfig| 16 
+ kernel/fork.c   | 15 +++
+ kernel/sysctl.c | 12 
+ kernel/user_namespace.c |  7 +++
+ 4 files changed, 50 insertions(+)
+
+diff --git a/init/Kconfig b/init/Kconfig
+index 6db3e310a5e4..2dd7dd1b6b0d 100644
+--- a/init/Kconfig
 b/init/Kconfig
+@@ -1083,6 +1083,22 @@ config USER_NS
+ 
+ If unsure, say N.
+ 
++config USER_NS_UNPRIVILEGED
++  bool "Allow unprivileged users to create namespaces"
++  default y
++  depends on USER_NS
++  help
++When disabled, unprivileged users will not be able to create
++new namespaces. Allowing users to create their own namespaces
++has been part of several recent local privilege escalation
++exploits, so if you need user namespaces but are
++paranoid^Wsecurity-conscious you want to disable this.
++
++This setting can be overridden at runtime via the
++kernel.unprivileged_userns_clone sysctl.
++
++If unsure, say Y.
++
+ config PID_NS
+   bool "PID Namespaces"
+   default y
+diff --git a/kernel/fork.c b/kernel/fork.c
+index 9180f4416dba..a02f83b1d9b4 100644
+--- a/kernel/fork.c
 b/kernel/fork.c
+@@ -106,6 +106,11 @@
+ 
+ #define CREATE_TRACE_POINTS
+ #include 
++#ifdef CONFIG_USER_NS
++extern int unprivileged_userns_clone;
++#else
++#define unprivileged_userns_clone 0
++#endif
+ 
+ /*
+  * Minimum number of threads to boot the kernel
+@@ -1779,6 +1784,10 @@ static __latent_entropy struct task_struct 
*copy_process(
+   if ((clone_flags & (CLONE_NEWUSER|CLONE_FS)) == 
(CLONE_NEWUSER|CLONE_FS))
+   return ERR_PTR(-EINVAL);
+ 
++  if ((clone_flags & CLONE_NEWUSER) && !unprivileged_userns_clone)
++  if (!capable(CAP_SYS_ADMIN))
++  return ERR_PTR(-EPERM);
++
+   /*
+* Thread groups must share signals as well, and detached threads
+* can only be started up within the thread group.
+@@ -2837,6 +2846,12 @@ int ksys_unshare(unsigned long unshare_flags)
+   if (unshare_flags & CLONE_NEWNS)
+   unshare_flags |= CLONE_FS;
+ 
++  if ((unshare_flags & CLONE_NEWUSER) && !unprivileged_userns_clone) {
++  err = -EPERM;
++  if (!capable(CAP_SYS_ADMIN))
++  goto bad_unshare_out;
++  }
++
+   err = check_unshare_flags(unshare_flags);
+   if (err)
+   goto bad_unshare_out;
+diff --git a/kernel/sysctl.c b/kernel/sysctl.c
+index 70665934d53e..9797869ed829 100644
+--- a/kernel/sysctl.c
 b/kernel/sysctl.c
+@@ -110,6 +110,9 @@ extern int core_uses_pid;
+ extern char core_pattern[];
+ extern unsigned int core_pipe_limit;
+ #endif
++#ifdef CONFIG_USER_NS

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

2020-05-20 Thread Jan Steffens via arch-commits
Date: Wednesday, May 20, 2020 @ 22:56:10
  Author: heftig
Revision: 387041

5.6.14.zen1-1

Modified:
  linux-zen/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 22:55:57 UTC (rev 387040)
+++ PKGBUILD2020-05-20 22:56:10 UTC (rev 387041)
@@ -1,7 +1,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgbase=linux-zen
-pkgver=5.6.13.zen1
+pkgver=5.6.14.zen1
 pkgrel=1
 pkgdesc='Linux ZEN'
 _srctag=v${pkgver%.*}-${pkgver##*.}
@@ -23,7 +23,7 @@
 validpgpkeys=(
   'ABAF11C65A2970B130ABE3C479BE3E4300411886'  # Linus Torvalds
   '647F28654894E3BD457199BE38DBBDC86092693E'  # Greg Kroah-Hartman
-  '8218F88849AAC522E94CF470A5E9288C4FA415FA'  # Jan Alexander Steffens (heftig)
+  'A2FF3A36AAA56654109064AB19802F8B0D70FC30'  # Jan Alexander Steffens (heftig)
 )
 sha256sums=('SKIP'
 '01db2a42315527698b76edee1a836af56b805e18c363086aa7cc57db377ad553'


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

2020-05-20 Thread Jan Steffens via arch-commits
Date: Wednesday, May 20, 2020 @ 22:55:57
  Author: heftig
Revision: 387040

5.6.14.arch1-1

Modified:
  linux/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 19:30:53 UTC (rev 387039)
+++ PKGBUILD2020-05-20 22:55:57 UTC (rev 387040)
@@ -1,7 +1,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgbase=linux
-pkgver=5.6.13.arch1
+pkgver=5.6.14.arch1
 pkgrel=1
 pkgdesc='Linux'
 _srctag=v${pkgver%.*}-${pkgver##*.}
@@ -23,7 +23,7 @@
 validpgpkeys=(
   'ABAF11C65A2970B130ABE3C479BE3E4300411886'  # Linus Torvalds
   '647F28654894E3BD457199BE38DBBDC86092693E'  # Greg Kroah-Hartman
-  '8218F88849AAC522E94CF470A5E9288C4FA415FA'  # Jan Alexander Steffens (heftig)
+  'A2FF3A36AAA56654109064AB19802F8B0D70FC30'  # Jan Alexander Steffens (heftig)
 )
 sha256sums=('SKIP'
 'f392c9ecbb5177ea2573aaf22935322940ea2be0366f3fb9c9f861431f4aed21'


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

2020-05-20 Thread David Runge via arch-commits
Date: Wednesday, May 20, 2020 @ 21:48:19
  Author: dvzrv
Revision: 631005

archrelease: copy trunk to community-staging-x86_64

Added:
  umurmur/repos/community-staging-x86_64/
  umurmur/repos/community-staging-x86_64/PKGBUILD
(from rev 631004, umurmur/trunk/PKGBUILD)
  umurmur/repos/community-staging-x86_64/umurmur.service
(from rev 631004, umurmur/trunk/umurmur.service)
  umurmur/repos/community-staging-x86_64/umurmur.sysusers
(from rev 631004, umurmur/trunk/umurmur.sysusers)
  umurmur/repos/community-staging-x86_64/umurmur.tmpfiles
(from rev 631004, umurmur/trunk/umurmur.tmpfiles)

--+
 PKGBUILD |   56 +
 umurmur.service  |   26 
 umurmur.sysusers |1 
 umurmur.tmpfiles |1 
 4 files changed, 84 insertions(+)

Copied: umurmur/repos/community-staging-x86_64/PKGBUILD (from rev 631004, 
umurmur/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-05-20 21:48:19 UTC (rev 631005)
@@ -0,0 +1,56 @@
+# Maintainer: Levente Polyak 
+# Contributor: David Runge 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Robert Knauer 
+# Contributor: xav 
+
+pkgname=umurmur
+pkgver=0.2.17
+pkgrel=18
+pkgdesc='Minimalistic Mumble server'
+url="https://github.com/umurmur/umurmur;
+arch=('x86_64')
+license=('BSD')
+depends=('glibc')
+makedepends=('cmake' 'libconfig' 'protobuf-c' 'mbedtls')
+backup=('etc/umurmur/umurmur.conf')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/umurmur/umurmur/archive/${pkgver}.tar.gz
+umurmur.sysusers
+umurmur.service
+umurmur.tmpfiles)
+sha256sums=('e77b7b6616768f4a1c07442afe49a772692f667b00c23cc85909d4dd0ce206d2'
+'0fc68df464ee51a431d934d068aed0be5f8c5e64d0bd29848f97532d39f8c310'
+'b8b22b6299777fbd1d12e3105280c8585ceca9b6caf7b8d3ab0642c5a56b031f'
+'287068f47fc035a70e2ae0c8434e8013f176d185bf7688216c36976982fe4491')
+sha512sums=('a496a51fd7815ad117f5aee17bb78cbd319c584ad60ab8aebbfd8ddf7b1760f443f2337bc74be1e0d5af17d3c3df2ae6c9060eca576cf1e6ed4c6cb0825e9c15'
+
'd84950a32ab8a2e84f5fe333cd2894e52aba624531644d106c982aa4ff04271d318543398fa7f48c719f26338679fa971bb5332472e9040ac9aa8a9b4a1f2832'
+
'746a3e2d9e8c5154bdfb2cef6cbe39cccf0356bc1dde0434b92ec1a6b224a5bfa51fd15483c3ac5a75292eae7a6d4b0431ecb2a586bdd9fcc3fe9b2a7bff64a1'
+
'825b50448231b5d791e87d7c4c471fdfe2e9a1560dad6fc90c2f4f8d0c5ed682291bf20b147a6a8c7ae361aeb8b1a11c24c6d41ffc17f06fb0f5ccd8208a899a')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  export CFLAGS+=" ${CPPFLAGS}"
+  export CXXFLAGS+=" ${CPPFLAGS}"
+  cmake -DCMAKE_INSTALL_PREFIX='/usr' \
+-DCMAKE_BUILD_TYPE='None' \
+-DSSL=mbedtls \
+-Wno-dev \
+-B build \
+-S .
+  make -C build
+}
+
+package() {
+  depends+=('libconfig.so' 'libmbedcrypto.so' 'libmbedtls.so' 'libmbedx509.so' 
'libprotobuf-c.so')
+  cd ${pkgname}-${pkgver}
+  make -C build DESTDIR="${pkgdir}" install
+  install -vDm 640 "${pkgdir}/usr/etc/umurmur.conf" -t "${pkgdir}/etc/umurmur"
+  rm -r "${pkgdir}/usr/etc"
+  install -vDm 644 "${srcdir}/umurmur.service" -t 
"${pkgdir}/usr/lib/systemd/system"
+  install -vDm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+
+  install -vDm 644 "${srcdir}/umurmur.sysusers" 
"${pkgdir}/usr/lib/sysusers.d/umurmur.conf"
+  install -vDm 644 "${srcdir}/umurmur.tmpfiles" 
"${pkgdir}/usr/lib/tmpfiles.d/umurmur.conf"
+}
+
+# vim: ts=2 sw=2 et:

Copied: umurmur/repos/community-staging-x86_64/umurmur.service (from rev 
631004, umurmur/trunk/umurmur.service)
===
--- community-staging-x86_64/umurmur.service(rev 0)
+++ community-staging-x86_64/umurmur.service2020-05-20 21:48:19 UTC (rev 
631005)
@@ -0,0 +1,26 @@
+[Unit]
+Description=Minimalistic Mumble server
+After=network.target
+
+[Service]
+Type=simple
+User=umurmur
+Group=umurmur
+PIDFile=/run/umurmurd.pid
+ExecStartPre=/usr/bin/umurmurd -t -c /etc/umurmur/umurmur.conf
+ExecStart=/usr/bin/umurmurd -d -r -c /etc/umurmur/umurmur.conf
+ExecReload=/bin/kill -HUP $MAINPID
+PrivateDevices=yes
+PrivateTmp=yes
+ProtectSystem=strict
+ReadWriteDirectories=/etc/umurmur
+ProtectHome=yes
+ProtectControlGroups=yes
+ProtectKernelModules=yes
+ProtectKernelTunables=yes
+LockPersonality=yes
+NoNewPrivileges=yes
+LimitRTPRIO=1
+
+[Install]
+WantedBy=multi-user.target

Copied: umurmur/repos/community-staging-x86_64/umurmur.sysusers (from rev 
631004, umurmur/trunk/umurmur.sysusers)
===
--- community-staging-x86_64/umurmur.sysusers   (rev 0)
+++ community-staging-x86_64/umurmur.sysusers   2020-05-20 21:48:19 UTC (rev 
631005)
@@ -0,0 +1 @@
+u umurmur - - -


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

2020-05-20 Thread David Runge via arch-commits
Date: Wednesday, May 20, 2020 @ 21:48:12
  Author: dvzrv
Revision: 631004

upgpkg: umurmur 0.2.17-18: Rebuilding against protobuf 3.12.

Adding all available sodeps in package() and adding the respective packages to 
makedepends.
Applying latest cmake packaging guidelines.

Modified:
  umurmur/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 21:36:55 UTC (rev 631003)
+++ PKGBUILD2020-05-20 21:48:12 UTC (rev 631004)
@@ -6,13 +6,13 @@
 
 pkgname=umurmur
 pkgver=0.2.17
-pkgrel=17
+pkgrel=18
 pkgdesc='Minimalistic Mumble server'
 url="https://github.com/umurmur/umurmur;
 arch=('x86_64')
 license=('BSD')
-depends=('glibc' 'libconfig.so' 'libprotobuf-c.so' 'mbedtls')
-makedepends=('cmake')
+depends=('glibc')
+makedepends=('cmake' 'libconfig' 'protobuf-c' 'mbedtls')
 backup=('etc/umurmur/umurmur.conf')
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/umurmur/umurmur/archive/${pkgver}.tar.gz
 umurmur.sysusers
@@ -27,20 +27,21 @@
 
'746a3e2d9e8c5154bdfb2cef6cbe39cccf0356bc1dde0434b92ec1a6b224a5bfa51fd15483c3ac5a75292eae7a6d4b0431ecb2a586bdd9fcc3fe9b2a7bff64a1'
 
'825b50448231b5d791e87d7c4c471fdfe2e9a1560dad6fc90c2f4f8d0c5ed682291bf20b147a6a8c7ae361aeb8b1a11c24c6d41ffc17f06fb0f5ccd8208a899a')
 
-prepare() {
+build() {
   cd ${pkgname}-${pkgver}
-  mkdir build
+  export CFLAGS+=" ${CPPFLAGS}"
+  export CXXFLAGS+=" ${CPPFLAGS}"
+  cmake -DCMAKE_INSTALL_PREFIX='/usr' \
+-DCMAKE_BUILD_TYPE='None' \
+-DSSL=mbedtls \
+-Wno-dev \
+-B build \
+-S .
+  make -C build
 }
 
-build() {
-  cd ${pkgname}-${pkgver}/build
-  cmake .. \
--DCMAKE_INSTALL_PREFIX=/usr \
--DSSL=mbedtls
-  make
-}
-
 package() {
+  depends+=('libconfig.so' 'libmbedcrypto.so' 'libmbedtls.so' 'libmbedx509.so' 
'libprotobuf-c.so')
   cd ${pkgname}-${pkgver}
   make -C build DESTDIR="${pkgdir}" install
   install -vDm 640 "${pkgdir}/usr/etc/umurmur.conf" -t "${pkgdir}/etc/umurmur"


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

2020-05-20 Thread David Runge via arch-commits
Date: Wednesday, May 20, 2020 @ 21:36:44
  Author: dvzrv
Revision: 631002

upgpkg: murmur 1.3.0-8: Rebuilding against protobuf 3.12.

Adding all available sodeps in package() and adding the respective packages to 
makedepends.

Modified:
  murmur/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 21:32:36 UTC (rev 631001)
+++ PKGBUILD2020-05-20 21:36:44 UTC (rev 631002)
@@ -6,14 +6,14 @@
 _name=mumble
 pkgname=murmur
 pkgver=1.3.0
-pkgrel=7
+pkgrel=8
 pkgdesc="The voice chat application server for Mumble"
 arch=('x86_64')
 url="https://wiki.mumble.info/wiki/Main_Page;
 license=('BSD')
-depends=('avahi' 'gcc-libs' 'glibc' 'grpc' 'libcap' 'libprotobuf.so'
-'lsb-release' 'openssl' 'qt5-base' 'zeroc-ice')
-makedepends=('boost' 'python' 'qt5-tools')
+depends=('gcc-libs' 'glibc' 'grpc' 'lsb-release' 'openssl' 'qt5-base'
+'zeroc-ice')
+makedepends=('avahi' 'boost' 'libcap' 'protobuf' 'python' 'qt5-tools')
 backup=("etc/murmur.ini")
 install="murmur.install"
 
source=("https://github.com/mumble-voip/${_name}/releases/download/${pkgver}/${_name}-${pkgver}.tar.gz"{,.sig}
@@ -53,6 +53,7 @@
 }
 
 package() {
+  depends+=('libcap.so' 'libdns_sd.so' 'libprotobuf.so')
   cd "${pkgname}-${pkgver}"
   # murmur has no install target: 
https://github.com/mumble-voip/mumble/issues/1029
   install -vDm 755 release/murmurd -t "${pkgdir}"/usr/bin


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

2020-05-20 Thread David Runge via arch-commits
Date: Wednesday, May 20, 2020 @ 21:36:55
  Author: dvzrv
Revision: 631003

archrelease: copy trunk to community-staging-x86_64

Added:
  murmur/repos/community-staging-x86_64/
  murmur/repos/community-staging-x86_64/PKGBUILD
(from rev 631002, murmur/trunk/PKGBUILD)
  
murmur/repos/community-staging-x86_64/a48aea18b6c7ee534cd21f7febfe253e31b33eda.patch
(from rev 631002, 
murmur/trunk/a48aea18b6c7ee534cd21f7febfe253e31b33eda.patch)
  murmur/repos/community-staging-x86_64/murmur.dbus.conf
(from rev 631002, murmur/trunk/murmur.dbus.conf)
  murmur/repos/community-staging-x86_64/murmur.install
(from rev 631002, murmur/trunk/murmur.install)
  murmur/repos/community-staging-x86_64/murmur.service
(from rev 631002, murmur/trunk/murmur.service)
  murmur/repos/community-staging-x86_64/murmur.sysusers
(from rev 631002, murmur/trunk/murmur.sysusers)
  murmur/repos/community-staging-x86_64/murmur.tmpfiles
(from rev 631002, murmur/trunk/murmur.tmpfiles)

+
 PKGBUILD   |   70 +++
 a48aea18b6c7ee534cd21f7febfe253e31b33eda.patch |   42 +
 murmur.dbus.conf   |   22 +++
 murmur.install |6 +
 murmur.service |   15 
 murmur.sysusers|1 
 murmur.tmpfiles|2 
 7 files changed, 158 insertions(+)

Copied: murmur/repos/community-staging-x86_64/PKGBUILD (from rev 631002, 
murmur/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-05-20 21:36:55 UTC (rev 631003)
@@ -0,0 +1,70 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: David Runge 
+# Contributor: Otto Allmendinger 
+# Contributor: Malte Rabenseifner 
+
+_name=mumble
+pkgname=murmur
+pkgver=1.3.0
+pkgrel=8
+pkgdesc="The voice chat application server for Mumble"
+arch=('x86_64')
+url="https://wiki.mumble.info/wiki/Main_Page;
+license=('BSD')
+depends=('gcc-libs' 'glibc' 'grpc' 'lsb-release' 'openssl' 'qt5-base'
+'zeroc-ice')
+makedepends=('avahi' 'boost' 'libcap' 'protobuf' 'python' 'qt5-tools')
+backup=("etc/murmur.ini")
+install="murmur.install"
+source=("https://github.com/mumble-voip/${_name}/releases/download/${pkgver}/${_name}-${pkgver}.tar.gz"{,.sig}
+a48aea18b6c7ee534cd21f7febfe253e31b33eda.patch
+"murmur.dbus.conf"
+"murmur.service"
+"murmur.sysusers"
+"murmur.tmpfiles")
+sha512sums=('2a629fc97f3c7c587c9a3b40fc96cf15d668acada37282ec1c4a5b169ad37717d60af94d12c7bce45f2816c265f76a99ebad40a006adcf8ca38a117e7c0a4122'
+'SKIP'
+
'2f379e355227e37f2d23d984d3a59779e3b7a2206865db8c9e4c9cb4eba563ca468744d862e29892919d8d2798576d2e011c658b48ca0acdde63e8a5cc577119'
+
'97c7effdddec324e40195c36ef4927950a5de26d2ee2d268d89df6fb547207bbbe30292773316cae6f57ec9923244f205fb0edc377b798771ba7385e3c11d86a'
+
'2059eeac32cc078168a2ea56fe3034df69814516303adeffb8062c7b90a88177a536e6a6742196ee90370084d4e536f825b1744f8bed2bb704159a8a8bccb606'
+
'5af28d0c2b2b072cfbd500b5f63549e88a86cf3fc15e4d2df89e787c4d2bafdecbe078a518e0d1b25d82f9873cb06838ec1c9ebed625ffb7e8c80fcd942ebf74'
+
'411784e8e0dcf6c163780ae895ae1a6bdad0bb2dd2b128911c484ac3eff073d95c5791b625493a2b8296d24bd7e6ac72d3c42180817e48b29f0c6a8fd841807c')
+validpgpkeys=('56D0B23AE00B1EE9A8BAAC0F5B8CF87BB893449B') # Mumble Automatic 
Build Infrastructure 2019 
+
+prepare() {
+  mv -v "${_name}-${pkgver}" "${pkgname}-${pkgver}"
+  cd "${pkgname}-${pkgver}"
+  # setting default configuration
+  sed -e "1i; vi:ft=cfg" \
+  -e "s|database=|database=/var/db/murmur/murmur.sqlite|" \
+  -e "s|;logfile=murmur.log|logfile=|" \
+  -e "s|;uname=|uname=murmur|" \
+  -i scripts/murmur.ini
+
+  # See https://github.com/mumble-voip/mumble/pull/4032
+  patch -Np1 -i "$srcdir"/a48aea18b6c7ee534cd21f7febfe253e31b33eda.patch
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+
+  qmake-qt5 main.pro CONFIG+="no-client grpc"
+  make release
+}
+
+package() {
+  depends+=('libcap.so' 'libdns_sd.so' 'libprotobuf.so')
+  cd "${pkgname}-${pkgver}"
+  # murmur has no install target: 
https://github.com/mumble-voip/mumble/issues/1029
+  install -vDm 755 release/murmurd -t "${pkgdir}"/usr/bin
+  install -vDm 640 scripts/murmur.ini -t "${pkgdir}"/etc
+  install -vDm 644 "${srcdir}"/murmur.dbus.conf 
"${pkgdir}"/usr/share/dbus-1/system.d/murmur.conf
+  install -vDm 644 README -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -vDm 644 man/murmur*.1 -t "${pkgdir}/usr/share/man/man1/"
+  install -vDm 644 "${srcdir}"/murmur.service -t 
"${pkgdir}/usr/lib/systemd/system/"
+  install -vDm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -vDm 644 "${srcdir}"/murmur.sysusers 

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

2020-05-20 Thread David Runge via arch-commits
Date: Wednesday, May 20, 2020 @ 21:32:36
  Author: dvzrv
Revision: 631001

archrelease: copy trunk to community-staging-x86_64

Added:
  mumble/repos/community-staging-x86_64/
  mumble/repos/community-staging-x86_64/PKGBUILD
(from rev 631000, mumble/trunk/PKGBUILD)

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

Copied: mumble/repos/community-staging-x86_64/PKGBUILD (from rev 631000, 
mumble/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-05-20 21:32:36 UTC (rev 631001)
@@ -0,0 +1,74 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: David Runge 
+# Contributor: Lauri Niskanen 
+# Contributor: sebastian.sal...@gmx.de
+# Contributor: Doc Angelo
+
+pkgname=mumble
+pkgver=1.3.0
+pkgrel=9
+arch=('x86_64')
+pkgdesc="A voice chat application similar to TeamSpeak"
+license=('BSD')
+depends=('gcc-libs' 'glibc' 'hicolor-icon-theme' 'libspeechd' 'libx11' 'libxi'
+'lsb-release' 'openssl' 'opus' 'qt5-base' 'qt5-svg' 'speex' 'xdg-utils')
+makedepends=('alsa-lib' 'avahi' 'boost' 'jack' 'libpulse' 'libsndfile' 'mesa'
+'protobuf' 'python' 'qt5-tools')
+optdepends=('speech-dispatcher: Text-to-speech support'
+'espeak-ng: Text-to-speech support')
+url="https://www.mumble.info/;
+source=("https://github.com/mumble-voip/mumble/releases/download/${pkgver}/mumble-${pkgver}.tar.gz"{,.sig}
+
"${pkgname}-1.3.0-jack.patch::https://github.com/mumble-voip/mumble/pull/3990.patch;)
+sha512sums=('2a629fc97f3c7c587c9a3b40fc96cf15d668acada37282ec1c4a5b169ad37717d60af94d12c7bce45f2816c265f76a99ebad40a006adcf8ca38a117e7c0a4122'
+'SKIP'
+
'11e4e1b65b8d1fb0aa07b0eff131026a6f8d6063ed57b67d9ea23152ff55e9fdb5f65691089fa8b0498d7609f6bad7e1367eb5c8b9adfd1db1d48c908618d217')
+validpgpkeys=('56D0B23AE00B1EE9A8BAAC0F5B8CF87BB893449B') # Mumble Automatic 
Build Infrastructure 2019 
+
+prepare() {
+  cd "$pkgname-$pkgver"
+  # changing the default to *not* unconditionally and automatically start a
+  # JACK server, when mumble is started
+  # https://bugs.archlinux.org/task/62755
+  # https://github.com/mumble-voip/mumble/issues/3989
+  patch -Np1 -i "../${pkgname}-1.3.0-jack.patch"
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  qmake-qt5 main.pro \
+CONFIG+="no-bundled-opus no-bundled-speex no-g15 no-xevie no-server \
+no-embed-qt-translations no-update packaged" \
+DEFINES+="PLUGIN_PATH=/usr/lib/mumble" \
+INCLUDEPATH+="/usr/include/speech-dispatcher"
+  make release
+}
+
+package() {
+  depends+=('libasound.so' 'libdns_sd.so' 'libjack.so' 'libprotobuf.so'
+  'libpulse.so' 'libsndfile.so')
+  cd "$pkgname-$pkgver"
+  # mumble has no install target: 
https://github.com/mumble-voip/mumble/issues/1029
+  # binaries and scripts
+  install -vDm 755 release/mumble -t "$pkgdir/usr/bin"
+  install -vDm 755 scripts/mumble-overlay -t "$pkgdir/usr/bin/"
+  # (vendored) libs
+  install -vdm 755 "$pkgdir/usr/lib/mumble/"
+  local _lib
+  for _lib in release/*.so*; do
+if [ -L "$_lib" ]; then
+  cp -vP "$_lib" "$pkgdir/usr/lib/mumble/"
+else
+  install -vDm 755 "$_lib" -t "$pkgdir/usr/lib/mumble/"
+fi
+  done
+  install -vDm 755 release/plugins/*.so -t "$pkgdir/usr/lib/mumble/"
+  # XDG desktop integration
+  install -vDm 644 scripts/mumble.desktop -t "$pkgdir/usr/share/applications"
+  # man page
+  install -vDm 644 "man/${pkgname}"*.1 -t "$pkgdir/usr/share/man/man1/"
+  # XDG desktop icons
+  install -vDm 644 icons/mumble.svg -t 
"$pkgdir/usr/share/icons/hicolor/scalable/apps/"
+  # license
+  install -vDm 644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
+}
+# vim: sw=2:ts=2 et:


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

2020-05-20 Thread David Runge via arch-commits
Date: Wednesday, May 20, 2020 @ 21:31:56
  Author: dvzrv
Revision: 631000

upgpkg: mumble 1.3.0-9: Rebuilding against protobuf 3.12.

Modified:
  mumble/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 21:19:22 UTC (rev 630999)
+++ PKGBUILD2020-05-20 21:31:56 UTC (rev 631000)
@@ -6,7 +6,7 @@
 
 pkgname=mumble
 pkgver=1.3.0
-pkgrel=8
+pkgrel=9
 arch=('x86_64')
 pkgdesc="A voice chat application similar to TeamSpeak"
 license=('BSD')


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

2020-05-20 Thread Gaëtan Bisson via arch-commits
Date: Wednesday, May 20, 2020 @ 21:19:22
  Author: bisson
Revision: 630999

archrelease: copy trunk to community-staging-x86_64

Added:
  unbound/repos/community-staging-x86_64/PKGBUILD
(from rev 630998, unbound/trunk/PKGBUILD)
  unbound/repos/community-staging-x86_64/hook
(from rev 630998, unbound/trunk/hook)
  unbound/repos/community-staging-x86_64/sysusers.d
(from rev 630998, unbound/trunk/sysusers.d)
  unbound/repos/community-staging-x86_64/tmpfiles.d
(from rev 630998, unbound/trunk/tmpfiles.d)
Deleted:
  unbound/repos/community-staging-x86_64/PKGBUILD
  unbound/repos/community-staging-x86_64/hook
  unbound/repos/community-staging-x86_64/sysusers.d
  unbound/repos/community-staging-x86_64/tmpfiles.d

+
 PKGBUILD   |  138 +--
 hook   |   20 
 sysusers.d |2 
 tmpfiles.d |2 
 4 files changed, 81 insertions(+), 81 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-20 21:18:55 UTC (rev 630998)
+++ PKGBUILD2020-05-20 21:19:22 UTC (rev 630999)
@@ -1,69 +0,0 @@
-# Maintainer: Gaetan Bisson 
-# Contributor: Hisato Tatekura 
-# Contributor: Massimiliano Torromeo 
-
-pkgname=unbound
-pkgver=1.10.1
-pkgrel=1
-pkgdesc='Validating, recursive, and caching DNS resolver'
-url='https://unbound.net/'
-license=('custom:BSD')
-arch=('x86_64')
-makedepends=('expat')
-optdepends=('expat: unbound-anchor')
-depends=('fstrm' 'openssl' 'libsodium' 'protobuf-c' 'libevent' 'hiredis' 
'ldns' 'dnssec-anchors')
-backup=('etc/unbound/unbound.conf')
-validpgpkeys=('EDFAA3F2CA4E6EB05681AF8E9F6F1C2D7E045F8D'
-  '21615A7F2478EA8C27DD26B830918D8275724222')
-source=("https://unbound.net/downloads/${pkgname}-${pkgver}.tar.gz"{,.asc}
-'sysusers.d'
-'tmpfiles.d'
-'hook')
-sha256sums=('b73677c21a71cf92f15cc8cfe76a3d875e40f65b6150081c39620b286582d536'
-'SKIP'
-'85b8f00881fb93bcce83bdfe3246463a396eb5b352c0d7f5fca32fcb839d22fa'
-'31a573f43287dd7e3678be1680388bfc7d8dee8280eb2443f521a4b349aaa6b6'
-'afb7a0a5e2da327c27c8f666b1ffaf34689121684c301928624221ac1d0c066a')
-
-prepare() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   sed '/# trust-anchor-file:/c\\ttrust-anchor-file: 
/etc/unbound/trusted-key.key' -i doc/example.conf.in
-}
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   ./configure \
-   --prefix=/usr \
-   --sysconfdir=/etc \
-   --localstatedir=/var \
-   --sbindir=/usr/bin \
-   --disable-rpath \
-   --enable-dnscrypt \
-   --enable-dnstap \
-   --enable-pie \
-   --enable-relro-now \
-   --enable-subnet \
-   --enable-systemd \
-   --enable-tfo-client \
-   --enable-tfo-server \
-   --enable-cachedb \
-   --with-libhiredis \
-   --with-conf-file=/etc/unbound/unbound.conf \
-   --with-pidfile=/run/unbound.pid \
-   --with-rootkey-file=/etc/trusted-key.key \
-   --with-libevent \
-
-   make
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}" install
-   install -Dm644 contrib/unbound.service 
"${pkgdir}/usr/lib/systemd/system/unbound.service"
-   install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-   install -Dm644 ../sysusers.d "${pkgdir}/usr/lib/sysusers.d/unbound.conf"
-
-   # Trust anchor file available from within unbound's chroot.
-   install -Dm644 ../tmpfiles.d "${pkgdir}/usr/lib/tmpfiles.d/unbound.conf"
-   install -Dm644 ../hook 
"${pkgdir}/usr/share/libalpm/hooks/unbound-key.hook"
-}

Copied: unbound/repos/community-staging-x86_64/PKGBUILD (from rev 630998, 
unbound/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-20 21:19:22 UTC (rev 630999)
@@ -0,0 +1,69 @@
+# Maintainer: Gaetan Bisson 
+# Contributor: Hisato Tatekura 
+# Contributor: Massimiliano Torromeo 
+
+pkgname=unbound
+pkgver=1.10.1
+pkgrel=2
+pkgdesc='Validating, recursive, and caching DNS resolver'
+url='https://unbound.net/'
+license=('custom:BSD')
+arch=('x86_64')
+makedepends=('expat')
+optdepends=('expat: unbound-anchor')
+depends=('fstrm' 'openssl' 'libsodium' 'protobuf-c' 'libevent' 'hiredis' 
'ldns' 'dnssec-anchors')
+backup=('etc/unbound/unbound.conf')
+validpgpkeys=('EDFAA3F2CA4E6EB05681AF8E9F6F1C2D7E045F8D'
+  '21615A7F2478EA8C27DD26B830918D8275724222')
+source=("https://unbound.net/downloads/${pkgname}-${pkgver}.tar.gz"{,.asc}
+'sysusers.d'
+'tmpfiles.d'
+'hook')
+sha256sums=('b73677c21a71cf92f15cc8cfe76a3d875e40f65b6150081c39620b286582d536'
+'SKIP'
+

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

2020-05-20 Thread Gaëtan Bisson via arch-commits
Date: Wednesday, May 20, 2020 @ 21:18:55
  Author: bisson
Revision: 630998

rebuild for protobuf-3.12

Modified:
  unbound/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 21:15:09 UTC (rev 630997)
+++ PKGBUILD2020-05-20 21:18:55 UTC (rev 630998)
@@ -4,7 +4,7 @@
 
 pkgname=unbound
 pkgver=1.10.1
-pkgrel=1
+pkgrel=2
 pkgdesc='Validating, recursive, and caching DNS resolver'
 url='https://unbound.net/'
 license=('custom:BSD')


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

2020-05-20 Thread Gaëtan Bisson via arch-commits
Date: Wednesday, May 20, 2020 @ 21:15:09
  Author: bisson
Revision: 630997

archrelease: copy trunk to community-staging-x86_64

Added:
  unbound/repos/community-staging-x86_64/PKGBUILD
(from rev 630996, unbound/trunk/PKGBUILD)
  unbound/repos/community-staging-x86_64/hook
(from rev 630996, unbound/trunk/hook)
  unbound/repos/community-staging-x86_64/sysusers.d
(from rev 630996, unbound/trunk/sysusers.d)
  unbound/repos/community-staging-x86_64/tmpfiles.d
(from rev 630996, unbound/trunk/tmpfiles.d)
Deleted:
  unbound/repos/community-staging-x86_64/PKGBUILD
  unbound/repos/community-staging-x86_64/hook
  unbound/repos/community-staging-x86_64/sysusers.d
  unbound/repos/community-staging-x86_64/tmpfiles.d

+
 PKGBUILD   |  138 +--
 hook   |   20 
 sysusers.d |2 
 tmpfiles.d |2 
 4 files changed, 81 insertions(+), 81 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-20 21:09:11 UTC (rev 630996)
+++ PKGBUILD2020-05-20 21:15:09 UTC (rev 630997)
@@ -1,69 +0,0 @@
-# Maintainer: Gaetan Bisson 
-# Contributor: Hisato Tatekura 
-# Contributor: Massimiliano Torromeo 
-
-pkgname=unbound
-pkgver=1.10.0
-pkgrel=3
-pkgdesc='Validating, recursive, and caching DNS resolver'
-url='https://unbound.net/'
-license=('custom:BSD')
-arch=('x86_64')
-makedepends=('expat')
-optdepends=('expat: unbound-anchor')
-depends=('fstrm' 'openssl' 'libsodium' 'protobuf-c' 'libevent' 'hiredis' 
'ldns' 'dnssec-anchors')
-backup=('etc/unbound/unbound.conf')
-validpgpkeys=('EDFAA3F2CA4E6EB05681AF8E9F6F1C2D7E045F8D'
-  '21615A7F2478EA8C27DD26B830918D8275724222')
-source=("https://unbound.net/downloads/${pkgname}-${pkgver}.tar.gz"{,.asc}
-'sysusers.d'
-'tmpfiles.d'
-'hook')
-sha256sums=('152f486578242fe5c36e89995d0440b78d64c05123990aae16246b7f776ce955'
-'SKIP'
-'85b8f00881fb93bcce83bdfe3246463a396eb5b352c0d7f5fca32fcb839d22fa'
-'31a573f43287dd7e3678be1680388bfc7d8dee8280eb2443f521a4b349aaa6b6'
-'afb7a0a5e2da327c27c8f666b1ffaf34689121684c301928624221ac1d0c066a')
-
-prepare() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   sed '/# trust-anchor-file:/c\\ttrust-anchor-file: 
/etc/unbound/trusted-key.key' -i doc/example.conf.in
-}
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   ./configure \
-   --prefix=/usr \
-   --sysconfdir=/etc \
-   --localstatedir=/var \
-   --sbindir=/usr/bin \
-   --disable-rpath \
-   --enable-dnscrypt \
-   --enable-dnstap \
-   --enable-pie \
-   --enable-relro-now \
-   --enable-subnet \
-   --enable-systemd \
-   --enable-tfo-client \
-   --enable-tfo-server \
-   --enable-cachedb \
-   --with-libhiredis \
-   --with-conf-file=/etc/unbound/unbound.conf \
-   --with-pidfile=/run/unbound.pid \
-   --with-rootkey-file=/etc/trusted-key.key \
-   --with-libevent \
-
-   make
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}" install
-   install -Dm644 contrib/unbound.service 
"${pkgdir}/usr/lib/systemd/system/unbound.service"
-   install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-   install -Dm644 ../sysusers.d "${pkgdir}/usr/lib/sysusers.d/unbound.conf"
-
-   # Trust anchor file available from within unbound's chroot.
-   install -Dm644 ../tmpfiles.d "${pkgdir}/usr/lib/tmpfiles.d/unbound.conf"
-   install -Dm644 ../hook 
"${pkgdir}/usr/share/libalpm/hooks/unbound-key.hook"
-}

Copied: unbound/repos/community-staging-x86_64/PKGBUILD (from rev 630996, 
unbound/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-20 21:15:09 UTC (rev 630997)
@@ -0,0 +1,69 @@
+# Maintainer: Gaetan Bisson 
+# Contributor: Hisato Tatekura 
+# Contributor: Massimiliano Torromeo 
+
+pkgname=unbound
+pkgver=1.10.1
+pkgrel=1
+pkgdesc='Validating, recursive, and caching DNS resolver'
+url='https://unbound.net/'
+license=('custom:BSD')
+arch=('x86_64')
+makedepends=('expat')
+optdepends=('expat: unbound-anchor')
+depends=('fstrm' 'openssl' 'libsodium' 'protobuf-c' 'libevent' 'hiredis' 
'ldns' 'dnssec-anchors')
+backup=('etc/unbound/unbound.conf')
+validpgpkeys=('EDFAA3F2CA4E6EB05681AF8E9F6F1C2D7E045F8D'
+  '21615A7F2478EA8C27DD26B830918D8275724222')
+source=("https://unbound.net/downloads/${pkgname}-${pkgver}.tar.gz"{,.asc}
+'sysusers.d'
+'tmpfiles.d'
+'hook')
+sha256sums=('b73677c21a71cf92f15cc8cfe76a3d875e40f65b6150081c39620b286582d536'
+'SKIP'
+

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

2020-05-20 Thread Gaëtan Bisson via arch-commits
Date: Wednesday, May 20, 2020 @ 21:09:11
  Author: bisson
Revision: 630996

archrelease: copy trunk to community-x86_64

Added:
  unbound/repos/community-x86_64/PKGBUILD
(from rev 630995, unbound/trunk/PKGBUILD)
  unbound/repos/community-x86_64/hook
(from rev 630995, unbound/trunk/hook)
  unbound/repos/community-x86_64/sysusers.d
(from rev 630995, unbound/trunk/sysusers.d)
  unbound/repos/community-x86_64/tmpfiles.d
(from rev 630995, unbound/trunk/tmpfiles.d)
Deleted:
  unbound/repos/community-x86_64/PKGBUILD
  unbound/repos/community-x86_64/hook
  unbound/repos/community-x86_64/sysusers.d
  unbound/repos/community-x86_64/tmpfiles.d

+
 PKGBUILD   |  138 +--
 hook   |   20 
 sysusers.d |2 
 tmpfiles.d |2 
 4 files changed, 81 insertions(+), 81 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-20 21:08:43 UTC (rev 630995)
+++ PKGBUILD2020-05-20 21:09:11 UTC (rev 630996)
@@ -1,69 +0,0 @@
-# Maintainer: Gaetan Bisson 
-# Contributor: Hisato Tatekura 
-# Contributor: Massimiliano Torromeo 
-
-pkgname=unbound
-pkgver=1.10.0
-pkgrel=2
-pkgdesc='Validating, recursive, and caching DNS resolver'
-url='https://unbound.net/'
-license=('custom:BSD')
-arch=('x86_64')
-makedepends=('expat')
-optdepends=('expat: unbound-anchor')
-depends=('fstrm' 'openssl' 'libsodium' 'protobuf-c' 'libevent' 'hiredis' 
'ldns' 'dnssec-anchors')
-backup=('etc/unbound/unbound.conf')
-validpgpkeys=('EDFAA3F2CA4E6EB05681AF8E9F6F1C2D7E045F8D'
-  '21615A7F2478EA8C27DD26B830918D8275724222')
-source=("https://unbound.net/downloads/${pkgname}-${pkgver}.tar.gz"{,.asc}
-'sysusers.d'
-'tmpfiles.d'
-'hook')
-sha256sums=('152f486578242fe5c36e89995d0440b78d64c05123990aae16246b7f776ce955'
-'SKIP'
-'85b8f00881fb93bcce83bdfe3246463a396eb5b352c0d7f5fca32fcb839d22fa'
-'31a573f43287dd7e3678be1680388bfc7d8dee8280eb2443f521a4b349aaa6b6'
-'afb7a0a5e2da327c27c8f666b1ffaf34689121684c301928624221ac1d0c066a')
-
-prepare() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   sed '/# trust-anchor-file:/c\\ttrust-anchor-file: 
/etc/unbound/trusted-key.key' -i doc/example.conf.in
-}
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   ./configure \
-   --prefix=/usr \
-   --sysconfdir=/etc \
-   --localstatedir=/var \
-   --sbindir=/usr/bin \
-   --disable-rpath \
-   --enable-dnscrypt \
-   --enable-dnstap \
-   --enable-pie \
-   --enable-relro-now \
-   --enable-subnet \
-   --enable-systemd \
-   --enable-tfo-client \
-   --enable-tfo-server \
-   --enable-cachedb \
-   --with-libhiredis \
-   --with-conf-file=/etc/unbound/unbound.conf \
-   --with-pidfile=/run/unbound.pid \
-   --with-rootkey-file=/etc/trusted-key.key \
-   --with-libevent \
-
-   make
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}" install
-   install -Dm644 contrib/unbound.service 
"${pkgdir}/usr/lib/systemd/system/unbound.service"
-   install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-   install -Dm644 ../sysusers.d "${pkgdir}/usr/lib/sysusers.d/unbound.conf"
-
-   # Trust anchor file available from within unbound's chroot.
-   install -Dm644 ../tmpfiles.d "${pkgdir}/usr/lib/tmpfiles.d/unbound.conf"
-   install -Dm644 ../hook 
"${pkgdir}/usr/share/libalpm/hooks/unbound-key.hook"
-}

Copied: unbound/repos/community-x86_64/PKGBUILD (from rev 630995, 
unbound/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-20 21:09:11 UTC (rev 630996)
@@ -0,0 +1,69 @@
+# Maintainer: Gaetan Bisson 
+# Contributor: Hisato Tatekura 
+# Contributor: Massimiliano Torromeo 
+
+pkgname=unbound
+pkgver=1.10.1
+pkgrel=1
+pkgdesc='Validating, recursive, and caching DNS resolver'
+url='https://unbound.net/'
+license=('custom:BSD')
+arch=('x86_64')
+makedepends=('expat')
+optdepends=('expat: unbound-anchor')
+depends=('fstrm' 'openssl' 'libsodium' 'protobuf-c' 'libevent' 'hiredis' 
'ldns' 'dnssec-anchors')
+backup=('etc/unbound/unbound.conf')
+validpgpkeys=('EDFAA3F2CA4E6EB05681AF8E9F6F1C2D7E045F8D'
+  '21615A7F2478EA8C27DD26B830918D8275724222')
+source=("https://unbound.net/downloads/${pkgname}-${pkgver}.tar.gz"{,.asc}
+'sysusers.d'
+'tmpfiles.d'
+'hook')
+sha256sums=('b73677c21a71cf92f15cc8cfe76a3d875e40f65b6150081c39620b286582d536'
+'SKIP'
+'85b8f00881fb93bcce83bdfe3246463a396eb5b352c0d7f5fca32fcb839d22fa'
+

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

2020-05-20 Thread Gaëtan Bisson via arch-commits
Date: Wednesday, May 20, 2020 @ 21:08:43
  Author: bisson
Revision: 630995

upstream update

Modified:
  unbound/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 21:03:40 UTC (rev 630994)
+++ PKGBUILD2020-05-20 21:08:43 UTC (rev 630995)
@@ -3,8 +3,8 @@
 # Contributor: Massimiliano Torromeo 
 
 pkgname=unbound
-pkgver=1.10.0
-pkgrel=3
+pkgver=1.10.1
+pkgrel=1
 pkgdesc='Validating, recursive, and caching DNS resolver'
 url='https://unbound.net/'
 license=('custom:BSD')
@@ -19,7 +19,7 @@
 'sysusers.d'
 'tmpfiles.d'
 'hook')
-sha256sums=('152f486578242fe5c36e89995d0440b78d64c05123990aae16246b7f776ce955'
+sha256sums=('b73677c21a71cf92f15cc8cfe76a3d875e40f65b6150081c39620b286582d536'
 'SKIP'
 '85b8f00881fb93bcce83bdfe3246463a396eb5b352c0d7f5fca32fcb839d22fa'
 '31a573f43287dd7e3678be1680388bfc7d8dee8280eb2443f521a4b349aaa6b6'


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

2020-05-20 Thread Gaëtan Bisson via arch-commits
Date: Wednesday, May 20, 2020 @ 21:03:01
  Author: bisson
Revision: 630993

rebuild for protobuf-3.12

Modified:
  collectd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 20:44:58 UTC (rev 630992)
+++ PKGBUILD2020-05-20 21:03:01 UTC (rev 630993)
@@ -3,7 +3,7 @@
 
 pkgname=collectd
 pkgver=5.11.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Daemon which collects system performance statistics periodically'
 url='https://collectd.org/'
 arch=('x86_64')


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

2020-05-20 Thread Gaëtan Bisson via arch-commits
Date: Wednesday, May 20, 2020 @ 21:03:40
  Author: bisson
Revision: 630994

archrelease: copy trunk to community-staging-x86_64

Added:
  collectd/repos/community-staging-x86_64/PKGBUILD
(from rev 630993, collectd/trunk/PKGBUILD)
  collectd/repos/community-staging-x86_64/service
(from rev 630993, collectd/trunk/service)
Deleted:
  collectd/repos/community-staging-x86_64/PKGBUILD
  collectd/repos/community-staging-x86_64/service

--+
 PKGBUILD |  147 +
 service  |   26 +-
 2 files changed, 83 insertions(+), 90 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-20 21:03:01 UTC (rev 630993)
+++ PKGBUILD2020-05-20 21:03:40 UTC (rev 630994)
@@ -1,77 +0,0 @@
-# Maintainer: Gaetan Bisson 
-# Contributor: Gerhard Brauer 
-
-pkgname=collectd
-pkgver=5.10.0
-pkgrel=3
-pkgdesc='Daemon which collects system performance statistics periodically'
-url='https://collectd.org/'
-arch=('x86_64')
-license=('GPL')
-
-optdepends=('curl: apache, ascent, curl, nginx, and write_http plugins'
-'libdbi: dbi plugin'
-'libesmtp: notify_email plugin'
-'libgcrypt: encryption and authentication for network plugin'
-'libmemcached: memcachec plugin'
-'mariadb-libs: mysql plugin'
-'systemd-libs: UdevNameAttr option'
-'iproute2: netlink plugin'
-'net-snmp: snmp plugin'
-'libnotify: notify_desktop plugin'
-'openipmi: ipmi plugin'
-'liboping: ping plugin'
-'libpcap: dns plugin'
-'perl: perl plugin'
-'postgresql-libs: postgresql plugin'
-'python: python plugin'
-'rrdtool: rrdtool and rrdcached plugins'
-'lm_sensors: lm_sensors and sensors plugins'
-'libvirt: libvirt plugin'
-'libxml2: ascent and libvirt plugins'
-'yajl: curl_json plugin'
-'libatasmart: smart plugin'
-'lvm2: lvm plugin'
-'protobuf-c: write_riemann plugin'
-'mosquitto: MQTT plugin'
-'libmicrohttpd: prometheus plugin'
-'librabbitmq-c: amqp plugin')
-
-makedepends=(${optdepends[@]%:*})
-depends=('libltdl' 'iptables' 'libnsl')
-
-source=("https://github.com/${pkgname}/${pkgname}/archive/${pkgver}.tar.gz;
-
'https://github.com/collectd/collectd/pull/3344/commits/071af20ddcde3b58ddceacfd6eb95b6756af4323.patch'
-'service')
-sha256sums=('869a6ae404f4b9aa0e830b8639629ddc29ad071b2717ff21bbb6e86d09cb6f58'
-'c859da73801553d2f2d36d53ad4f8f5314dd9be7980c0563eb7ac021a87cd6ae'
-'e45e261146563b0bf6967c669dff7ac2400f066f0eb4c022ac3fdb0ccadca2f9')
-
-backup=('etc/collectd.conf')
-
-prepare() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   patch -p1 -i ../071af20ddcde3b58ddceacfd6eb95b6756af4323.patch
-   ./build.sh
-   sed 's/ -Werror//g' -i configure
-}
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   ./configure \
-   --prefix=/usr \
-   --sysconfdir=/etc \
-   --localstatedir=/var \
-   --sbindir=/usr/bin \
-   --with-python=/usr/bin/python \
-   --with-perl-bindings='INSTALLDIRS=vendor'
-   make all
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}" install
-   rmdir "${pkgdir}/var/run" # FS#30201
-   install -Dm644 ../service 
"${pkgdir}"/usr/lib/systemd/system/collectd.service
-   install -Dm644 contrib/collectd2html.pl 
"${pkgdir}"/usr/share/collectd/collectd2html.pl
-}

Copied: collectd/repos/community-staging-x86_64/PKGBUILD (from rev 630993, 
collectd/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-20 21:03:40 UTC (rev 630994)
@@ -0,0 +1,70 @@
+# Maintainer: Gaetan Bisson 
+# Contributor: Gerhard Brauer 
+
+pkgname=collectd
+pkgver=5.11.0
+pkgrel=2
+pkgdesc='Daemon which collects system performance statistics periodically'
+url='https://collectd.org/'
+arch=('x86_64')
+license=('GPL')
+
+optdepends=('curl: apache, ascent, curl, nginx, and write_http plugins'
+'libdbi: dbi plugin'
+'libesmtp: notify_email plugin'
+'libgcrypt: encryption and authentication for network plugin'
+'libmemcached: memcachec plugin'
+'mariadb-libs: mysql plugin'
+'systemd-libs: UdevNameAttr option'
+'iproute2: netlink plugin'
+'net-snmp: snmp plugin'
+'libnotify: notify_desktop plugin'
+'openipmi: ipmi plugin'
+'liboping: ping plugin'
+'libpcap: dns plugin'
+'perl: perl plugin'
+'postgresql-libs: postgresql plugin'
+'python: python plugin'
+'rrdtool: 

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

2020-05-20 Thread David Runge via arch-commits
Date: Wednesday, May 20, 2020 @ 20:44:58
  Author: dvzrv
Revision: 630992

archrelease: copy trunk to community-any

Added:
  tuna/repos/community-any/PKGBUILD
(from rev 630991, tuna/trunk/PKGBUILD)
Deleted:
  tuna/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-20 20:44:52 UTC (rev 630991)
+++ PKGBUILD2020-05-20 20:44:58 UTC (rev 630992)
@@ -1,64 +0,0 @@
-# Maintainer: David Runge 
-# Contributor: Joakim Hernberg 
-# Contributor: Ninez 
-
-pkgname=tuna
-pkgver=0.14
-pkgrel=3
-epoch=1
-pkgdesc="Thread and IRQ affinity setting GUI and cmd line tool"
-url="https://rt.wiki.kernel.org/index.php/Tuna;
-arch=('any')
-license=('GPL2')
-groups=('realtime')
-depends=('python-ethtool' 'python-linux-procfs' 'python-numpy'
-'python-schedutils')
-optdepends=('python-inet_diag: Show network sockets in use by threads')
-source=("https://git.kernel.org/pub/scm/utils/${pkgname}/${pkgname}.git/snapshot/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('816d45e704fa1badc4734284b4c1a3892e829ef17b24752b19294d07e407cb8d3ece952e3b8ed2c195d854b1f80eb8d172479f4e3adfbc0aba81d90cce91b83a')
-
-prepare() {
-  cd "${pkgname}-${pkgver}"
-}
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  python setup.py build
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  python setup.py install --skip-build \
-  --optimize=1 \
-  --prefix=/usr \
-  --root="${pkgdir}"
-
-  # tuna was ported to python3, but pygtk (for the GUI) was not ported to
-  # pygobject yet: https://bugs.archlinux.org/task/58188
-#  install -vDm 755 oscilloscope-cmd.py "${pkgdir}/usr/bin/oscilloscope"
-#  install -vDm 644 "${pkgname}/${pkgname}_gui.glade" \
-#-t "${pkgdir}/usr/share/${pkgname}/"
-#  install -vDm 644 "${pkgname}.desktop" \
-#-t "${pkgdir}/usr/share/applications/"
-  install -vDm 755 "${pkgname}-cmd.py" "${pkgdir}/usr/bin/${pkgname}"
-  install -vDm 644 "etc/${pkgname}/example.conf" \
--t "${pkgdir}/etc/${pkgname}/"
-  install -vDm 644 "etc/${pkgname}.conf" -t "${pkgdir}/etc/"
-  install -vDm 644 "docs/oscilloscope+${pkgname}.pdf" \
--t "${pkgdir}/usr/share/doc/${pkgname}/"
-  install -vDm 644 help/kthreads/* \
--t "${pkgdir}/usr/share/${pkgname}/help/kthreads"
-  install -vDm 644 "org.${pkgname}.policy" \
--t "${pkgdir}/usr/share/polkit-1/actions/"
-  install -vDm 644 "docs/${pkgname}.8" \
--t "${pkgdir}/usr/share/man/man8/"
-  # translations
-  for language in `cat po/LINGUAS`; do
-translation="po/${language}.po"
-install -dm 755 "${pkgdir}/usr/share/locale/${language}/LC_MESSAGES"
-msgfmt $translation \
-  -o "${pkgdir}/usr/share//locale/${language}/LC_MESSAGES/${pkgname}.mo"
-  done
-}
-# vim:set ts=2 sw=2 et:
-

Copied: tuna/repos/community-any/PKGBUILD (from rev 630991, tuna/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-20 20:44:58 UTC (rev 630992)
@@ -0,0 +1,65 @@
+# Maintainer: David Runge 
+# Contributor: Joakim Hernberg 
+# Contributor: Ninez 
+
+pkgname=tuna
+pkgver=0.14.1
+pkgrel=1
+epoch=1
+pkgdesc="Thread and IRQ affinity setting GUI and cmd line tool"
+url="https://rt.wiki.kernel.org/index.php/Tuna;
+arch=('any')
+license=('GPL2')
+groups=('realtime')
+depends=('python-ethtool' 'python-linux-procfs' 'python-numpy'
+'python-schedutils')
+optdepends=('python-inet_diag: Show network sockets in use by threads')
+backup=("etc/${pkgname}.conf")
+source=("https://git.kernel.org/pub/scm/utils/${pkgname}/${pkgname}.git/snapshot/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('5a4dddcaac4d73506f9c50515108e35f9bc808e857a8d8c344b3a6fe082543a41ed3aeb38ccffecde063af1f41f5b792f6bed354f22962dcd698edf7d8423273')
+
+prepare() {
+  cd "${pkgname}-${pkgver}"
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  python setup.py build
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  python setup.py install --skip-build \
+  --optimize=1 \
+  --prefix=/usr \
+  --root="${pkgdir}"
+
+  # tuna was ported to python3, but pygtk (for the GUI) was not ported to
+  # pygobject yet: https://bugs.archlinux.org/task/58188
+#  install -vDm 755 oscilloscope-cmd.py "${pkgdir}/usr/bin/oscilloscope"
+#  install -vDm 644 "${pkgname}/${pkgname}_gui.glade" \
+#-t "${pkgdir}/usr/share/${pkgname}/"
+#  install -vDm 644 "${pkgname}.desktop" \
+#-t "${pkgdir}/usr/share/applications/"
+  install -vDm 755 "${pkgname}-cmd.py" "${pkgdir}/usr/bin/${pkgname}"
+  install -vDm 644 "etc/${pkgname}/example.conf" \
+-t "${pkgdir}/etc/${pkgname}/"
+  install -vDm 644 "etc/${pkgname}.conf" -t "${pkgdir}/etc/"
+  install -vDm 644 "docs/oscilloscope+${pkgname}.pdf" \
+-t 

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

2020-05-20 Thread David Runge via arch-commits
Date: Wednesday, May 20, 2020 @ 20:44:52
  Author: dvzrv
Revision: 630991

upgpkg: tuna 1:0.14.1-1: Upgrading to 0.14.1.

Updating maintainer info.

Modified:
  tuna/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 20:43:17 UTC (rev 630990)
+++ PKGBUILD2020-05-20 20:44:52 UTC (rev 630991)
@@ -1,10 +1,10 @@
-# Maintainer: David Runge 
+# Maintainer: David Runge 
 # Contributor: Joakim Hernberg 
 # Contributor: Ninez 
 
 pkgname=tuna
-pkgver=0.14
-pkgrel=3
+pkgver=0.14.1
+pkgrel=1
 epoch=1
 pkgdesc="Thread and IRQ affinity setting GUI and cmd line tool"
 url="https://rt.wiki.kernel.org/index.php/Tuna;
@@ -14,8 +14,9 @@
 depends=('python-ethtool' 'python-linux-procfs' 'python-numpy'
 'python-schedutils')
 optdepends=('python-inet_diag: Show network sockets in use by threads')
+backup=("etc/${pkgname}.conf")
 
source=("https://git.kernel.org/pub/scm/utils/${pkgname}/${pkgname}.git/snapshot/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('816d45e704fa1badc4734284b4c1a3892e829ef17b24752b19294d07e407cb8d3ece952e3b8ed2c195d854b1f80eb8d172479f4e3adfbc0aba81d90cce91b83a')
+sha512sums=('5a4dddcaac4d73506f9c50515108e35f9bc808e857a8d8c344b3a6fe082543a41ed3aeb38ccffecde063af1f41f5b792f6bed354f22962dcd698edf7d8423273')
 
 prepare() {
   cd "${pkgname}-${pkgver}"


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

2020-05-20 Thread David Runge via arch-commits
Date: Wednesday, May 20, 2020 @ 20:43:17
  Author: dvzrv
Revision: 630990

archrelease: copy trunk to community-x86_64

Added:
  freerdp/repos/community-x86_64/PKGBUILD
(from rev 630989, freerdp/trunk/PKGBUILD)
  freerdp/repos/community-x86_64/freerdp-2.0.0-manpage_formatting.patch
(from rev 630989, freerdp/trunk/freerdp-2.0.0-manpage_formatting.patch)
Deleted:
  freerdp/repos/community-x86_64/PKGBUILD
  freerdp/repos/community-x86_64/freerdp-2.0.0-manpage_formatting.patch

+
 PKGBUILD   |  138 +++
 freerdp-2.0.0-manpage_formatting.patch |   24 ++---
 2 files changed, 81 insertions(+), 81 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-20 20:43:11 UTC (rev 630989)
+++ PKGBUILD2020-05-20 20:43:17 UTC (rev 630990)
@@ -1,69 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Contributor: David Runge 
-# Contributor: Stijn Segers 
-
-_name=FreeRDP
-pkgname=freerdp
-epoch=1
-pkgver=2.1.1
-pkgrel=1
-pkgdesc="Free implementation of the Remote Desktop Protocol (RDP)"
-arch=('x86_64')
-url="https://www.freerdp.com/;
-license=('Apache')
-depends=('dbus-glib' 'glibc' 'gstreamer' 'gst-plugins-base-libs' 'libcups'
-'libjpeg-turbo' 'libgssglue' 'libx11' 'libxcursor' 'libxext' 'libxdamage'
-'libxfixes' 'libxkbcommon' 'libxi' 'libxinerama' 'libxkbfile' 'libxrandr'
-'libxrender' 'libxtst' 'openssl' 'pam' 'pcsclite' 'wayland')
-makedepends=('alsa-lib' 'cmake' 'docbook-xsl' 'ffmpeg' 'krb5' 'libpulse'
-'libusb' 'systemd-libs' 'xmlto' 'xorgproto')
-provides=('libfreerdp2.so' 'libfreerdp-client2.so' 'libfreerdp-server2'
-'libfreerdp-shadow2.so' 'libfreerdp-shadow-subsystem2.so' 'libwinpr2.so'
-'libwinpr-tools2.so' 'libuwac0.so')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/${pkgname}/${pkgname}/archive/${pkgver}.tar.gz;
-"$pkgname-2.0.0-manpage_formatting.patch")
-sha512sums=('e3e667f9a1f954ce914e7dcd24ba4d171fd147e812883ebcb67363dde4054e2d3cbe5fe4e7104fe52f84453c67e32281b5ee62889ba68850ba762196549855ba'
-
'd960e042d1527b5d5721136b6b20fc36f65beafd010581ea5b908668537fe9fe622de6689a29c0274b0d6f1e513615f0d02e56c1d1d1e613d093e145d39af8d7')
-
-prepare() {
-  mv -v "${_name}-${pkgver}" "${pkgname}-${pkgver}"
-  cd "${pkgname}-${pkgver}"
-  # fix man page formatting:
-  # https://bugs.archlinux.org/task/64814
-  patch -Np1 -i "../${pkgname}-2.0.0-manpage_formatting.patch"
-}
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  export CFLAGS+=" ${CPPFLAGS}"
-  export CXXFLAGS+=" ${CPPFLAGS}"
-  cmake -DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DWITH_DSP_FFMPEG=ON \
--DWITH_FFMPEG=ON \
--DWITH_PULSE=ON \
--DWITH_CUPS=ON \
--DWITH_PCSC=ON \
--DWITH_JPEG=ON \
--DWITH_SERVER=ON \
--DWITH_SWSCALE=ON \
--DWITH_CHANNELS=ON \
--DWITH_CLIENT_CHANNELS=ON \
--DWITH_SERVER_CHANNELS=ON \
--DCHANNEL_URBDRC_CLIENT=ON \
--DPROXY_PLUGINDIR=/usr/lib/freerdp2/server/proxy/plugins \
--DCMAKE_BUILD_TYPE='None' \
--Wno-dev \
--B build \
--S .
-  make VERBOSE=1 -C build
-}
-
-package() {
-  depends+=('libasound.so' 'libavcodec.so' 'libavutil.so' 'libpulse.so'
-  'libswscale.so' 'libswresample.so' 'libsystemd.so' 'libusb-1.0.so')
-  cd "${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install -C build
-  install -vDm 644 {ChangeLog,README.md} \
--t "${pkgdir}/usr/share/doc/${pkgname}"
-}

Copied: freerdp/repos/community-x86_64/PKGBUILD (from rev 630989, 
freerdp/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-20 20:43:17 UTC (rev 630990)
@@ -0,0 +1,69 @@
+# Maintainer: Sergej Pupykin 
+# Contributor: David Runge 
+# Contributor: Stijn Segers 
+
+_name=FreeRDP
+pkgname=freerdp
+epoch=2
+pkgver=2.1.1
+pkgrel=1
+pkgdesc="Free implementation of the Remote Desktop Protocol (RDP)"
+arch=('x86_64')
+url="https://www.freerdp.com/;
+license=('Apache')
+depends=('dbus-glib' 'glibc' 'gstreamer' 'gst-plugins-base-libs' 'libcups'
+'libjpeg-turbo' 'libgssglue' 'libx11' 'libxcursor' 'libxext' 'libxdamage'
+'libxfixes' 'libxkbcommon' 'libxi' 'libxinerama' 'libxkbfile' 'libxrandr'
+'libxrender' 'libxtst' 'openssl' 'pam' 'pcsclite' 'wayland')
+makedepends=('alsa-lib' 'cmake' 'docbook-xsl' 'ffmpeg' 'krb5' 'libpulse'
+'libusb' 'systemd-libs' 'xmlto' 'xorgproto')
+provides=('libfreerdp2.so' 'libfreerdp-client2.so' 'libfreerdp-server2'
+'libfreerdp-shadow2.so' 'libfreerdp-shadow-subsystem2.so' 'libwinpr2.so'
+'libwinpr-tools2.so' 'libuwac0.so')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/${pkgname}/${pkgname}/archive/${pkgver}.tar.gz;
+"$pkgname-2.0.0-manpage_formatting.patch")

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

2020-05-20 Thread David Runge via arch-commits
Date: Wednesday, May 20, 2020 @ 20:43:11
  Author: dvzrv
Revision: 630989

upgpkg: freerdp 2:2.1.1-1: Undoing accidental epoch decrement.

Modified:
  freerdp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 20:41:48 UTC (rev 630988)
+++ PKGBUILD2020-05-20 20:43:11 UTC (rev 630989)
@@ -4,7 +4,7 @@
 
 _name=FreeRDP
 pkgname=freerdp
-epoch=1
+epoch=2
 pkgver=2.1.1
 pkgrel=1
 pkgdesc="Free implementation of the Remote Desktop Protocol (RDP)"


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

2020-05-20 Thread Gaëtan Bisson via arch-commits
Date: Wednesday, May 20, 2020 @ 20:41:48
  Author: bisson
Revision: 630988

archrelease: copy trunk to community-x86_64

Added:
  collectd/repos/community-x86_64/PKGBUILD
(from rev 630987, collectd/trunk/PKGBUILD)
  collectd/repos/community-x86_64/service
(from rev 630987, collectd/trunk/service)
Deleted:
  collectd/repos/community-x86_64/PKGBUILD
  collectd/repos/community-x86_64/service

--+
 PKGBUILD |  147 +
 service  |   26 +-
 2 files changed, 83 insertions(+), 90 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-20 20:41:24 UTC (rev 630987)
+++ PKGBUILD2020-05-20 20:41:48 UTC (rev 630988)
@@ -1,77 +0,0 @@
-# Maintainer: Gaetan Bisson 
-# Contributor: Gerhard Brauer 
-
-pkgname=collectd
-pkgver=5.10.0
-pkgrel=2
-pkgdesc='Daemon which collects system performance statistics periodically'
-url='https://collectd.org/'
-arch=('x86_64')
-license=('GPL')
-
-optdepends=('curl: apache, ascent, curl, nginx, and write_http plugins'
-'libdbi: dbi plugin'
-'libesmtp: notify_email plugin'
-'libgcrypt: encryption and authentication for network plugin'
-'libmemcached: memcachec plugin'
-'mariadb-libs: mysql plugin'
-'systemd-libs: UdevNameAttr option'
-'iproute2: netlink plugin'
-'net-snmp: snmp plugin'
-'libnotify: notify_desktop plugin'
-'openipmi: ipmi plugin'
-'liboping: ping plugin'
-'libpcap: dns plugin'
-'perl: perl plugin'
-'postgresql-libs: postgresql plugin'
-'python: python plugin'
-'rrdtool: rrdtool and rrdcached plugins'
-'lm_sensors: lm_sensors and sensors plugins'
-'libvirt: libvirt plugin'
-'libxml2: ascent and libvirt plugins'
-'yajl: curl_json plugin'
-'libatasmart: smart plugin'
-'lvm2: lvm plugin'
-'protobuf-c: write_riemann plugin'
-'mosquitto: MQTT plugin'
-'libmicrohttpd: prometheus plugin'
-'librabbitmq-c: amqp plugin')
-
-makedepends=(${optdepends[@]%:*})
-depends=('libltdl' 'iptables' 'libnsl')
-
-source=("https://github.com/${pkgname}/${pkgname}/archive/${pkgver}.tar.gz;
-
'https://github.com/collectd/collectd/pull/3344/commits/071af20ddcde3b58ddceacfd6eb95b6756af4323.patch'
-'service')
-sha256sums=('869a6ae404f4b9aa0e830b8639629ddc29ad071b2717ff21bbb6e86d09cb6f58'
-'c859da73801553d2f2d36d53ad4f8f5314dd9be7980c0563eb7ac021a87cd6ae'
-'e45e261146563b0bf6967c669dff7ac2400f066f0eb4c022ac3fdb0ccadca2f9')
-
-backup=('etc/collectd.conf')
-
-prepare() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   patch -p1 -i ../071af20ddcde3b58ddceacfd6eb95b6756af4323.patch
-   ./build.sh
-   sed 's/ -Werror//g' -i configure
-}
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   ./configure \
-   --prefix=/usr \
-   --sysconfdir=/etc \
-   --localstatedir=/var \
-   --sbindir=/usr/bin \
-   --with-python=/usr/bin/python \
-   --with-perl-bindings='INSTALLDIRS=vendor'
-   make all
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}" install
-   rmdir "${pkgdir}/var/run" # FS#30201
-   install -Dm644 ../service 
"${pkgdir}"/usr/lib/systemd/system/collectd.service
-   install -Dm644 contrib/collectd2html.pl 
"${pkgdir}"/usr/share/collectd/collectd2html.pl
-}

Copied: collectd/repos/community-x86_64/PKGBUILD (from rev 630987, 
collectd/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-20 20:41:48 UTC (rev 630988)
@@ -0,0 +1,70 @@
+# Maintainer: Gaetan Bisson 
+# Contributor: Gerhard Brauer 
+
+pkgname=collectd
+pkgver=5.11.0
+pkgrel=1
+pkgdesc='Daemon which collects system performance statistics periodically'
+url='https://collectd.org/'
+arch=('x86_64')
+license=('GPL')
+
+optdepends=('curl: apache, ascent, curl, nginx, and write_http plugins'
+'libdbi: dbi plugin'
+'libesmtp: notify_email plugin'
+'libgcrypt: encryption and authentication for network plugin'
+'libmemcached: memcachec plugin'
+'mariadb-libs: mysql plugin'
+'systemd-libs: UdevNameAttr option'
+'iproute2: netlink plugin'
+'net-snmp: snmp plugin'
+'libnotify: notify_desktop plugin'
+'openipmi: ipmi plugin'
+'liboping: ping plugin'
+'libpcap: dns plugin'
+'perl: perl plugin'
+'postgresql-libs: postgresql plugin'
+'python: python plugin'
+'rrdtool: rrdtool and rrdcached plugins'
+

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

2020-05-20 Thread Gaëtan Bisson via arch-commits
Date: Wednesday, May 20, 2020 @ 20:41:24
  Author: bisson
Revision: 630987

upstream update

Modified:
  collectd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 20:35:15 UTC (rev 630986)
+++ PKGBUILD2020-05-20 20:41:24 UTC (rev 630987)
@@ -2,8 +2,8 @@
 # Contributor: Gerhard Brauer 
 
 pkgname=collectd
-pkgver=5.10.0
-pkgrel=3
+pkgver=5.11.0
+pkgrel=1
 pkgdesc='Daemon which collects system performance statistics periodically'
 url='https://collectd.org/'
 arch=('x86_64')
@@ -40,22 +40,13 @@
 makedepends=(${optdepends[@]%:*})
 depends=('libltdl' 'iptables' 'libnsl')
 
-source=("https://github.com/${pkgname}/${pkgname}/archive/${pkgver}.tar.gz;
-
'https://github.com/collectd/collectd/pull/3344/commits/071af20ddcde3b58ddceacfd6eb95b6756af4323.patch'
+source=("https://storage.googleapis.com/collectd-tarballs/${pkgname}-${pkgver}.tar.bz2;
 'service')
-sha256sums=('869a6ae404f4b9aa0e830b8639629ddc29ad071b2717ff21bbb6e86d09cb6f58'
-'c859da73801553d2f2d36d53ad4f8f5314dd9be7980c0563eb7ac021a87cd6ae'
+sha256sums=('37b10a806e34aa8570c1cafa6006c604796fae13cc2e1b3e630d33dcba9e5db2'
 'e45e261146563b0bf6967c669dff7ac2400f066f0eb4c022ac3fdb0ccadca2f9')
 
 backup=('etc/collectd.conf')
 
-prepare() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   patch -p1 -i ../071af20ddcde3b58ddceacfd6eb95b6756af4323.patch
-   ./build.sh
-   sed 's/ -Werror//g' -i configure
-}
-
 build() {
cd "${srcdir}/${pkgname}-${pkgver}"
./configure \
@@ -63,8 +54,10 @@
--sysconfdir=/etc \
--localstatedir=/var \
--sbindir=/usr/bin \
+   --disable-werror \
--with-python=/usr/bin/python \
-   --with-perl-bindings='INSTALLDIRS=vendor'
+   --with-perl-bindings='INSTALLDIRS=vendor' \
+
make all
 }
 


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

2020-05-20 Thread David Runge via arch-commits
Date: Wednesday, May 20, 2020 @ 20:35:09
  Author: dvzrv
Revision: 630985

upgpkg: freerdp 1:2.1.1-1: Upgrading to 2.1.1.

Applying latest cmake packaging guidelines.

Modified:
  freerdp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 20:31:50 UTC (rev 630984)
+++ PKGBUILD2020-05-20 20:35:09 UTC (rev 630985)
@@ -4,8 +4,8 @@
 
 _name=FreeRDP
 pkgname=freerdp
-epoch=2
-pkgver=2.1.0
+epoch=1
+pkgver=2.1.1
 pkgrel=1
 pkgdesc="Free implementation of the Remote Desktop Protocol (RDP)"
 arch=('x86_64')
@@ -22,7 +22,7 @@
 'libwinpr-tools2.so' 'libuwac0.so')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/${pkgname}/${pkgname}/archive/${pkgver}.tar.gz;
 "$pkgname-2.0.0-manpage_formatting.patch")
-sha512sums=('afed8893128067b688bf5ba87e7d28296ece3b4848d84653ab0ad0c3723b6a8bc36733aca9649fb29a0d4a53b39fdd49d56d17e9b4eac8bf7b06fa4b27e66b14'
+sha512sums=('e3e667f9a1f954ce914e7dcd24ba4d171fd147e812883ebcb67363dde4054e2d3cbe5fe4e7104fe52f84453c67e32281b5ee62889ba68850ba762196549855ba'
 
'd960e042d1527b5d5721136b6b20fc36f65beafd010581ea5b908668537fe9fe622de6689a29c0274b0d6f1e513615f0d02e56c1d1d1e613d093e145d39af8d7')
 
 prepare() {
@@ -35,6 +35,8 @@
 
 build() {
   cd "${pkgname}-${pkgver}"
+  export CFLAGS+=" ${CPPFLAGS}"
+  export CXXFLAGS+=" ${CPPFLAGS}"
   cmake -DCMAKE_INSTALL_PREFIX=/usr \
 -DCMAKE_INSTALL_LIBDIR=lib \
 -DWITH_DSP_FFMPEG=ON \
@@ -50,6 +52,8 @@
 -DWITH_SERVER_CHANNELS=ON \
 -DCHANNEL_URBDRC_CLIENT=ON \
 -DPROXY_PLUGINDIR=/usr/lib/freerdp2/server/proxy/plugins \
+-DCMAKE_BUILD_TYPE='None' \
+-Wno-dev \
 -B build \
 -S .
   make VERBOSE=1 -C build


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

2020-05-20 Thread David Runge via arch-commits
Date: Wednesday, May 20, 2020 @ 20:35:15
  Author: dvzrv
Revision: 630986

archrelease: copy trunk to community-x86_64

Added:
  freerdp/repos/community-x86_64/PKGBUILD
(from rev 630985, freerdp/trunk/PKGBUILD)
  freerdp/repos/community-x86_64/freerdp-2.0.0-manpage_formatting.patch
(from rev 630985, freerdp/trunk/freerdp-2.0.0-manpage_formatting.patch)
Deleted:
  freerdp/repos/community-x86_64/PKGBUILD
  freerdp/repos/community-x86_64/freerdp-2.0.0-manpage_formatting.patch

+
 PKGBUILD   |  134 +++
 freerdp-2.0.0-manpage_formatting.patch |   24 ++---
 2 files changed, 81 insertions(+), 77 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-20 20:35:09 UTC (rev 630985)
+++ PKGBUILD2020-05-20 20:35:15 UTC (rev 630986)
@@ -1,65 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Contributor: David Runge 
-# Contributor: Stijn Segers 
-
-_name=FreeRDP
-pkgname=freerdp
-epoch=2
-pkgver=2.1.0
-pkgrel=1
-pkgdesc="Free implementation of the Remote Desktop Protocol (RDP)"
-arch=('x86_64')
-url="https://www.freerdp.com/;
-license=('Apache')
-depends=('dbus-glib' 'glibc' 'gstreamer' 'gst-plugins-base-libs' 'libcups'
-'libjpeg-turbo' 'libgssglue' 'libx11' 'libxcursor' 'libxext' 'libxdamage'
-'libxfixes' 'libxkbcommon' 'libxi' 'libxinerama' 'libxkbfile' 'libxrandr'
-'libxrender' 'libxtst' 'openssl' 'pam' 'pcsclite' 'wayland')
-makedepends=('alsa-lib' 'cmake' 'docbook-xsl' 'ffmpeg' 'krb5' 'libpulse'
-'libusb' 'systemd-libs' 'xmlto' 'xorgproto')
-provides=('libfreerdp2.so' 'libfreerdp-client2.so' 'libfreerdp-server2'
-'libfreerdp-shadow2.so' 'libfreerdp-shadow-subsystem2.so' 'libwinpr2.so'
-'libwinpr-tools2.so' 'libuwac0.so')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/${pkgname}/${pkgname}/archive/${pkgver}.tar.gz;
-"$pkgname-2.0.0-manpage_formatting.patch")
-sha512sums=('afed8893128067b688bf5ba87e7d28296ece3b4848d84653ab0ad0c3723b6a8bc36733aca9649fb29a0d4a53b39fdd49d56d17e9b4eac8bf7b06fa4b27e66b14'
-
'd960e042d1527b5d5721136b6b20fc36f65beafd010581ea5b908668537fe9fe622de6689a29c0274b0d6f1e513615f0d02e56c1d1d1e613d093e145d39af8d7')
-
-prepare() {
-  mv -v "${_name}-${pkgver}" "${pkgname}-${pkgver}"
-  cd "${pkgname}-${pkgver}"
-  # fix man page formatting:
-  # https://bugs.archlinux.org/task/64814
-  patch -Np1 -i "../${pkgname}-2.0.0-manpage_formatting.patch"
-}
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  cmake -DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DWITH_DSP_FFMPEG=ON \
--DWITH_FFMPEG=ON \
--DWITH_PULSE=ON \
--DWITH_CUPS=ON \
--DWITH_PCSC=ON \
--DWITH_JPEG=ON \
--DWITH_SERVER=ON \
--DWITH_SWSCALE=ON \
--DWITH_CHANNELS=ON \
--DWITH_CLIENT_CHANNELS=ON \
--DWITH_SERVER_CHANNELS=ON \
--DCHANNEL_URBDRC_CLIENT=ON \
--DPROXY_PLUGINDIR=/usr/lib/freerdp2/server/proxy/plugins \
--B build \
--S .
-  make VERBOSE=1 -C build
-}
-
-package() {
-  depends+=('libasound.so' 'libavcodec.so' 'libavutil.so' 'libpulse.so'
-  'libswscale.so' 'libswresample.so' 'libsystemd.so' 'libusb-1.0.so')
-  cd "${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install -C build
-  install -vDm 644 {ChangeLog,README.md} \
--t "${pkgdir}/usr/share/doc/${pkgname}"
-}

Copied: freerdp/repos/community-x86_64/PKGBUILD (from rev 630985, 
freerdp/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-20 20:35:15 UTC (rev 630986)
@@ -0,0 +1,69 @@
+# Maintainer: Sergej Pupykin 
+# Contributor: David Runge 
+# Contributor: Stijn Segers 
+
+_name=FreeRDP
+pkgname=freerdp
+epoch=1
+pkgver=2.1.1
+pkgrel=1
+pkgdesc="Free implementation of the Remote Desktop Protocol (RDP)"
+arch=('x86_64')
+url="https://www.freerdp.com/;
+license=('Apache')
+depends=('dbus-glib' 'glibc' 'gstreamer' 'gst-plugins-base-libs' 'libcups'
+'libjpeg-turbo' 'libgssglue' 'libx11' 'libxcursor' 'libxext' 'libxdamage'
+'libxfixes' 'libxkbcommon' 'libxi' 'libxinerama' 'libxkbfile' 'libxrandr'
+'libxrender' 'libxtst' 'openssl' 'pam' 'pcsclite' 'wayland')
+makedepends=('alsa-lib' 'cmake' 'docbook-xsl' 'ffmpeg' 'krb5' 'libpulse'
+'libusb' 'systemd-libs' 'xmlto' 'xorgproto')
+provides=('libfreerdp2.so' 'libfreerdp-client2.so' 'libfreerdp-server2'
+'libfreerdp-shadow2.so' 'libfreerdp-shadow-subsystem2.so' 'libwinpr2.so'
+'libwinpr-tools2.so' 'libuwac0.so')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/${pkgname}/${pkgname}/archive/${pkgver}.tar.gz;
+"$pkgname-2.0.0-manpage_formatting.patch")
+sha512sums=('e3e667f9a1f954ce914e7dcd24ba4d171fd147e812883ebcb67363dde4054e2d3cbe5fe4e7104fe52f84453c67e32281b5ee62889ba68850ba762196549855ba'
+

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

2020-05-20 Thread David Runge via arch-commits
Date: Wednesday, May 20, 2020 @ 20:31:50
  Author: dvzrv
Revision: 630984

archrelease: copy trunk to community-x86_64

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

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

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

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


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

2020-05-20 Thread David Runge via arch-commits
Date: Wednesday, May 20, 2020 @ 20:30:52
  Author: dvzrv
Revision: 630983

upgpkg: python-orjson 3.0.1-1: Upgrading to 3.0.1.

Modified:
  python-orjson/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 19:50:19 UTC (rev 630982)
+++ PKGBUILD2020-05-20 20:30:52 UTC (rev 630983)
@@ -2,7 +2,7 @@
 
 _name=orjson
 pkgname=python-orjson
-pkgver=3.0.0
+pkgver=3.0.1
 pkgrel=1
 pkgdesc="Fast, correct Python JSON library supporting dataclasses and 
datetimes"
 arch=('x86_64')
@@ -12,7 +12,7 @@
 makedepends=('maturin' 'python-pip' 'rustup')
 checkdepends=('python-arrow' 'python-pendulum' 'python-psutil' 'python-pytest' 
'python-pytz')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/ijl/${_name}/archive/${pkgver}.tar.gz;)
-sha512sums=('2a447a042ebd75777f729e2968e9361dcfd9ed8c5e9cfbd9cf633d85c76e5a6da53ea7c2c2d5183c56c406ea03536231281c21ebf3e1f1f0ae8d61b09ecc283b')
+sha512sums=('a8cc1724be1a62a7f24ebdfbe7d41f28d337b5a07c4fed636aeeca8e2054e3d751c92c9e45cf7256f151880885c09c1b4ea619bd08362668f41984c1eededff6')
 
 prepare() {
   mv -v "${_name}-${pkgver}" "$pkgname-$pkgver"


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

2020-05-20 Thread Antonio Rojas via arch-commits
Date: Wednesday, May 20, 2020 @ 19:50:19
  Author: arojas
Revision: 630982

archrelease: copy trunk to community-x86_64

Added:
  cython/repos/community-x86_64/PKGBUILD
(from rev 630981, cython/trunk/PKGBUILD)
Deleted:
  cython/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-20 19:49:53 UTC (rev 630981)
+++ PKGBUILD2020-05-20 19:50:19 UTC (rev 630982)
@@ -1,56 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: Sergej Pupykin 
-# Contributor: Igor Scabini 
-
-pkgname=(cython cython2)
-pkgbase=cython
-pkgver=0.29.18
-pkgrel=1
-pkgdesc="C-Extensions for Python"
-arch=(x86_64)
-url="https://cython.org;
-license=(APACHE)
-makedepends=(python-setuptools python2-setuptools)
-source=($pkgbase-$pkgver.tar.gz::"https://github.com/cython/cython/archive/$pkgver.tar.gz;
-
cython-hash-int-conversion.patch::"https://github.com/cython/cython/commit/28251032.patch;)
-sha256sums=('60a9afcdb82d7f9306dce5e3875111d9f34f165246605d01f7a360978c7e89a6'
-'28b2b065a9853e86d0bc09287e8a21f50ebc1f3cfee3b2ab03b6b917cb9e81d8')
-
-prepare() {
-  cp -r cython-$pkgver cython2-$pkgver
-  find cython2-$pkgver -name '*.py' | xargs sed -e 's|/usr/bin/env 
python|/usr/bin/env python2|' -e 's|/usr/bin/python|/usr/bin/python2|' -i
-
-  cd cython-$pkgver
-  patch -p1 -i ../cython-hash-int-conversion.patch # Allow non-int conversion 
to Py_hash_t, needed by sagemath
-}
-
-build() {
-  cd cython-$pkgver
-  python setup.py build
-
-  cd ../cython2-$pkgver
-  python2 setup.py build
-}
-
-package_cython() {
-  depends=(python-setuptools)
-
-  cd cython-$pkgver
-  python setup.py install --root="$pkgdir" --skip-build
-
-  for f in cygdb cython cythonize; do
-mv "$pkgdir"/usr/bin/$f "$pkgdir"/usr/bin/${f}3
-ln -s ${f}3 "$pkgdir"/usr/bin/$f
-  done
-}
-
-package_cython2() {
-  depends=(python2-setuptools)
-
-  cd cython2-$pkgver
-  python2 setup.py install --root="$pkgdir" --skip-build
-
-  for f in cygdb cython cythonize; do
-mv "$pkgdir"/usr/bin/$f "$pkgdir"/usr/bin/${f}2
-  done
-}

Copied: cython/repos/community-x86_64/PKGBUILD (from rev 630981, 
cython/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-20 19:50:19 UTC (rev 630982)
@@ -0,0 +1,56 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Sergej Pupykin 
+# Contributor: Igor Scabini 
+
+pkgname=(cython cython2)
+pkgbase=cython
+pkgver=0.29.19
+pkgrel=1
+pkgdesc="C-Extensions for Python"
+arch=(x86_64)
+url="https://cython.org;
+license=(APACHE)
+makedepends=(python-setuptools python2-setuptools)
+source=($pkgbase-$pkgver.tar.gz::"https://github.com/cython/cython/archive/$pkgver.tar.gz;
+
cython-hash-int-conversion.patch::"https://github.com/cython/cython/commit/28251032.patch;)
+sha256sums=('9d27b6261ce8bffdf811a713df7f0be5a168b46b229db334592f8ecf8976f07b'
+'28b2b065a9853e86d0bc09287e8a21f50ebc1f3cfee3b2ab03b6b917cb9e81d8')
+
+prepare() {
+  cp -r cython-$pkgver cython2-$pkgver
+  find cython2-$pkgver -name '*.py' | xargs sed -e 's|/usr/bin/env 
python|/usr/bin/env python2|' -e 's|/usr/bin/python|/usr/bin/python2|' -i
+
+  cd cython-$pkgver
+  patch -p1 -i ../cython-hash-int-conversion.patch # Allow non-int conversion 
to Py_hash_t, needed by sagemath
+}
+
+build() {
+  cd cython-$pkgver
+  python setup.py build
+
+  cd ../cython2-$pkgver
+  python2 setup.py build
+}
+
+package_cython() {
+  depends=(python-setuptools)
+
+  cd cython-$pkgver
+  python setup.py install --root="$pkgdir" --skip-build
+
+  for f in cygdb cython cythonize; do
+mv "$pkgdir"/usr/bin/$f "$pkgdir"/usr/bin/${f}3
+ln -s ${f}3 "$pkgdir"/usr/bin/$f
+  done
+}
+
+package_cython2() {
+  depends=(python2-setuptools)
+
+  cd cython2-$pkgver
+  python2 setup.py install --root="$pkgdir" --skip-build
+
+  for f in cygdb cython cythonize; do
+mv "$pkgdir"/usr/bin/$f "$pkgdir"/usr/bin/${f}2
+  done
+}


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

2020-05-20 Thread Antonio Rojas via arch-commits
Date: Wednesday, May 20, 2020 @ 19:49:53
  Author: arojas
Revision: 630981

Update to 0.29.19

Modified:
  cython/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 19:26:44 UTC (rev 630980)
+++ PKGBUILD2020-05-20 19:49:53 UTC (rev 630981)
@@ -4,7 +4,7 @@
 
 pkgname=(cython cython2)
 pkgbase=cython
-pkgver=0.29.18
+pkgver=0.29.19
 pkgrel=1
 pkgdesc="C-Extensions for Python"
 arch=(x86_64)
@@ -13,7 +13,7 @@
 makedepends=(python-setuptools python2-setuptools)
 
source=($pkgbase-$pkgver.tar.gz::"https://github.com/cython/cython/archive/$pkgver.tar.gz;
 
cython-hash-int-conversion.patch::"https://github.com/cython/cython/commit/28251032.patch;)
-sha256sums=('60a9afcdb82d7f9306dce5e3875111d9f34f165246605d01f7a360978c7e89a6'
+sha256sums=('9d27b6261ce8bffdf811a713df7f0be5a168b46b229db334592f8ecf8976f07b'
 '28b2b065a9853e86d0bc09287e8a21f50ebc1f3cfee3b2ab03b6b917cb9e81d8')
 
 prepare() {


[arch-commits] Commit in util-linux/trunk (0001-stable.patch PKGBUILD)

2020-05-20 Thread Christian Hesse via arch-commits
Date: Wednesday, May 20, 2020 @ 19:30:36
  Author: eworm
Revision: 387037

upgpkg: util-linux 2.35.2-1

new upstream release

Modified:
  util-linux/trunk/PKGBUILD
Deleted:
  util-linux/trunk/0001-stable.patch

---+
 0001-stable.patch |  164 
 PKGBUILD  |   14 
 2 files changed, 3 insertions(+), 175 deletions(-)

Deleted: 0001-stable.patch
===
--- 0001-stable.patch   2020-05-20 19:29:50 UTC (rev 387036)
+++ 0001-stable.patch   2020-05-20 19:30:36 UTC (rev 387037)
@@ -1,164 +0,0 @@
-From 00e53f17c8462cb34ece08cc10db60a7da29a305 Mon Sep 17 00:00:00 2001
-From: Karel Zak 
-Date: Tue, 4 Feb 2020 15:11:19 +0100
-Subject: [PATCH 1/2] libfdisk: (script) accept sector-size, ignore unknown
- headers
-
-- add sector-size between supported headers (already in --dump output)
-
-- report unknown headers by -ENOTSUP
-
-- ignore ENOTSUP in sfdisk (but print warning) and in fdisk_script_read_file()
-
-Addresses: https://github.com/karelzak/util-linux/issues/949
-Signed-off-by: Karel Zak 

- disk-utils/sfdisk.c   |  6 +-
- libfdisk/src/script.c | 49 +++
- 2 files changed, 31 insertions(+), 24 deletions(-)
-
-diff --git a/disk-utils/sfdisk.c b/disk-utils/sfdisk.c
-index bb6e1c6df..c0bea7046 100644
 a/disk-utils/sfdisk.c
-+++ b/disk-utils/sfdisk.c
-@@ -1782,7 +1782,11 @@ static int command_fdisk(struct sfdisk *sf, int argc, 
char **argv)
-   }
- 
-   rc = fdisk_script_read_line(dp, stdin, buf, sizeof(buf));
--  if (rc < 0) {
-+  if (rc == -ENOTSUP) {
-+  buf[sizeof(buf) - 1] = '\0';
-+  fdisk_warnx(sf->cxt, _("Unknown script header '%s' -- 
ignore."), buf);
-+  continue;
-+  } else if (rc < 0) {
-   DBG(PARSE, ul_debug("script parsing failed, trying 
sfdisk specific commands"));
-   buf[sizeof(buf) - 1] = '\0';
-   rc = loop_control_commands(sf, dp, buf);
-diff --git a/libfdisk/src/script.c b/libfdisk/src/script.c
-index a21771b6a..d3e67fa9c 100644
 a/libfdisk/src/script.c
-+++ b/libfdisk/src/script.c
-@@ -805,8 +805,12 @@ static inline int is_header_line(const char *s)
- /* parses ": value", note modifies @s*/
- static int parse_line_header(struct fdisk_script *dp, char *s)
- {
--  int rc = -EINVAL;
-+  size_t i;
-   char *name, *value;
-+  static const char *supported[] = {
-+  "label", "unit", "label-id", "device", "grain",
-+  "first-lba", "last-lba", "table-length", "sector-size"
-+  };
- 
-   DBG(SCRIPT, ul_debugobj(dp, "   parse header '%s'", s));
- 
-@@ -816,7 +820,7 @@ static int parse_line_header(struct fdisk_script *dp, char 
*s)
-   name = s;
-   value = strchr(s, ':');
-   if (!value)
--  goto done;
-+  return -EINVAL;
-   *value = '\0';
-   value++;
- 
-@@ -825,32 +829,30 @@ static int parse_line_header(struct fdisk_script *dp, 
char *s)
-   ltrim_whitespace((unsigned char *) value);
-   rtrim_whitespace((unsigned char *) value);
- 
-+  if (!*name || !*value)
-+  return -EINVAL;
-+
-+  /* check header name */
-+  for (i = 0; i < ARRAY_SIZE(supported); i++) {
-+  if (strcmp(name, supported[i]) == 0)
-+  break;
-+  }
-+  if (i == ARRAY_SIZE(supported))
-+  return -ENOTSUP;
-+
-+  /* header specific actions */
-   if (strcmp(name, "label") == 0) {
-   if (dp->cxt && !fdisk_get_label(dp->cxt, value))
--  goto done;  /* unknown label name */
-+  return -EINVAL; /* unknown label name */
-   dp->force_label = 1;
-+
-   } else if (strcmp(name, "unit") == 0) {
-   if (strcmp(value, "sectors") != 0)
--  goto done;  /* only "sectors" 
supported */
--  } else if (strcmp(name, "label-id") == 0
-- || strcmp(name, "device") == 0
-- || strcmp(name, "grain") == 0
-- || strcmp(name, "first-lba") == 0
-- || strcmp(name, "last-lba") == 0
-- || strcmp(name, "table-length") == 0) {
--  ;   /* whatever is possible 
*/
--  } else
--  goto done;  /* unknown header */
-+  return -EINVAL; /* only "sectors" 
supported */
- 
--  if (*name && *value)
--  rc = fdisk_script_set_header(dp, name, value);
--done:
--  if (rc)
--  DBG(SCRIPT, ul_debugobj(dp, "header parse error: "
--  "[rc=%d, name='%s', value='%s']",
--  rc, name, value));

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

2020-05-20 Thread Christian Hesse via arch-commits
Date: Wednesday, May 20, 2020 @ 19:30:52
  Author: eworm
Revision: 387038

archrelease: copy trunk to testing-x86_64

Added:
  util-linux/repos/testing-x86_64/
  util-linux/repos/testing-x86_64/60-rfkill.rules
(from rev 387037, util-linux/trunk/60-rfkill.rules)
  util-linux/repos/testing-x86_64/PKGBUILD
(from rev 387037, util-linux/trunk/PKGBUILD)
  util-linux/repos/testing-x86_64/pam-common
(from rev 387037, util-linux/trunk/pam-common)
  util-linux/repos/testing-x86_64/pam-login
(from rev 387037, util-linux/trunk/pam-login)
  util-linux/repos/testing-x86_64/pam-runuser
(from rev 387037, util-linux/trunk/pam-runuser)
  util-linux/repos/testing-x86_64/pam-su
(from rev 387037, util-linux/trunk/pam-su)
  util-linux/repos/testing-x86_64/rfkill-block_.service
(from rev 387037, util-linux/trunk/rfkill-block_.service)
  util-linux/repos/testing-x86_64/rfkill-unblock_.service
(from rev 387037, util-linux/trunk/rfkill-unblock_.service)
  util-linux/repos/testing-x86_64/util-linux.sysusers
(from rev 387037, util-linux/trunk/util-linux.sysusers)

-+
 60-rfkill.rules |1 
 PKGBUILD|  124 ++
 pam-common  |6 ++
 pam-login   |7 ++
 pam-runuser |4 +
 pam-su  |9 +++
 rfkill-block_.service   |   10 +++
 rfkill-unblock_.service |   10 +++
 util-linux.sysusers |2 
 9 files changed, 173 insertions(+)

Copied: util-linux/repos/testing-x86_64/60-rfkill.rules (from rev 387037, 
util-linux/trunk/60-rfkill.rules)
===
--- testing-x86_64/60-rfkill.rules  (rev 0)
+++ testing-x86_64/60-rfkill.rules  2020-05-20 19:30:52 UTC (rev 387038)
@@ -0,0 +1 @@
+KERNEL=="rfkill", GROUP="rfkill", MODE="0664"

Copied: util-linux/repos/testing-x86_64/PKGBUILD (from rev 387037, 
util-linux/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-05-20 19:30:52 UTC (rev 387038)
@@ -0,0 +1,124 @@
+# Maintainer: Tom Gundersen 
+# Maintainer: Dave Reisner 
+# Contributor: judd 
+
+pkgbase=util-linux
+pkgname=(util-linux libutil-linux)
+_pkgmajor=2.35
+pkgver=${_pkgmajor}.2
+pkgrel=1
+pkgdesc="Miscellaneous system utilities for Linux"
+url='https://github.com/karelzak/util-linux'
+arch=('x86_64')
+makedepends=('systemd' 'python' 'libcap-ng')
+license=('GPL2')
+options=('strip')
+validpgpkeys=('B0C64D14301CC6EFAEDF60E4E4B71D5EEC39C284')  # Karel Zak
+source=("https://www.kernel.org/pub/linux/utils/util-linux/v$_pkgmajor/$pkgbase-$pkgver.tar."{xz,sign}
+pam-{login,common,runuser,su}
+'util-linux.sysusers'
+'60-rfkill.rules'
+'rfkill-unblock_.service'
+'rfkill-block_.service')
+sha256sums=('21b7431e82f6bcd9441a01beeec3d57ed33ee948f8a5b41da577073c372eb58a'
+'SKIP'
+'993a3096c2b113e6800f2abbd5d4233ebf1a97eef423990d3187d665d3490b92'
+'fc6807842f92e9d3f792d6b64a0d5aad87995a279153ab228b1b2a64d9f32f20'
+'95b7cdc4cba17494d7b87f37f8d0937ec54c55de0e3ce9d9ab05ad5cc76bf935'
+'51eac9c2a2f51ad3982bba35de9aac5510f1eeff432d2d63c6362e45d620afc0'
+'10b0505351263a099163c0d928132706e501dd0a008dac2835b052167b14abe3'
+'742309fee7f47baa83df9ea6fef525ff9aec395c8cbd9fe848ceb2643f37'
+'8ccec10a22523f6b9d55e0d6cbf91905a39881446710aa083e935e8073323376'
+'a22e0a037e702170c7d88460cc9c9c2ab1d3e5c54a6985cd4a164ea7beff1b36')
+
+build() {
+  cd "$pkgbase-$pkgver"
+
+  # We ship Debian's hardlink in package 'hardlink', Fedora's hardlink was
+  # merged in util-linux. For now we disable the latter, but let's dicuss
+  # the details:
+  # https://bugs.archlinux.org/task/62896
+  # https://github.com/karelzak/util-linux/issues/808
+
+  ./configure \
+--prefix=/usr \
+--libdir=/usr/lib \
+--bindir=/usr/bin \
+--sbindir=/usr/bin \
+--localstatedir=/var \
+--enable-usrdir-path \
+--enable-fs-paths-default=/usr/bin:/usr/local/bin \
+--enable-raw \
+--enable-vipw \
+--enable-newgrp \
+--enable-chfn-chsh \
+--enable-write \
+--enable-mesg \
+--disable-hardlink \
+--with-python=3
+
+  make
+}
+
+package_util-linux() {
+  conflicts=('rfkill')
+  provides=('rfkill')
+  replaces=('rfkill')
+  depends=('pam' 'shadow' 'coreutils' 'systemd-libs' 'libcap-ng' 
'libutil-linux')
+  optdepends=('python: python bindings to libmount'
+  'words: default dictionary for look')
+  backup=(etc/pam.d/chfn
+  etc/pam.d/chsh
+  etc/pam.d/login
+  etc/pam.d/runuser
+  etc/pam.d/runuser-l
+  etc/pam.d/su
+  etc/pam.d/su-l)
+
+  cd "$pkgbase-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+
+  # setuid chfn and chsh
+  chmod 4755 

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

2020-05-20 Thread Jelle van der Waa via arch-commits
Date: Wednesday, May 20, 2020 @ 19:30:53
  Author: jelle
Revision: 387039

remove wrong repo state

Deleted:
  loki/repos/community-x86_64/


[arch-commits] Commit in loki/repos/extra-x86_64 (14 files)

2020-05-20 Thread Jelle van der Waa via arch-commits
Date: Wednesday, May 20, 2020 @ 19:29:50
  Author: jelle
Revision: 387036

archrelease: copy trunk to extra-x86_64

Added:
  loki/repos/extra-x86_64/PKGBUILD
(from rev 387035, loki/trunk/PKGBUILD)
  loki/repos/extra-x86_64/loki.service
(from rev 387035, loki/trunk/loki.service)
  loki/repos/extra-x86_64/loki.sysusers
(from rev 387035, loki/trunk/loki.sysusers)
  loki/repos/extra-x86_64/loki.tmpfiles
(from rev 387035, loki/trunk/loki.tmpfiles)
  loki/repos/extra-x86_64/promtail.service
(from rev 387035, loki/trunk/promtail.service)
  loki/repos/extra-x86_64/promtail.sysusers
(from rev 387035, loki/trunk/promtail.sysusers)
  loki/repos/extra-x86_64/promtail.tmpfiles
(from rev 387035, loki/trunk/promtail.tmpfiles)
Deleted:
  loki/repos/extra-x86_64/PKGBUILD
  loki/repos/extra-x86_64/loki.service
  loki/repos/extra-x86_64/loki.sysusers
  loki/repos/extra-x86_64/loki.tmpfiles
  loki/repos/extra-x86_64/promtail.service
  loki/repos/extra-x86_64/promtail.sysusers
  loki/repos/extra-x86_64/promtail.tmpfiles

---+
 PKGBUILD  |  146 ++--
 loki.service  |   54 +--
 loki.sysusers |2 
 loki.tmpfiles |2 
 promtail.service  |   52 +-
 promtail.sysusers |4 -
 promtail.tmpfiles |2 
 7 files changed, 133 insertions(+), 129 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-20 19:27:46 UTC (rev 387035)
+++ PKGBUILD2020-05-20 19:29:50 UTC (rev 387036)
@@ -1,71 +0,0 @@
-# Maintainer: Jelle van der Waa 
-
-pkgname=loki
-pkgver=1.4.1
-pkgrel=1
-pkgdesc='like Prometheus, but for logs'
-url='https://github.com/grafana/loki'
-arch=('x86_64')
-license=('Apache')
-depends=('glibc')
-makedepends=('go-pie')
-backup=('etc/loki/loki.yaml' 'etc/loki/promtail.yaml')
-source=($pkgname-$pkgver.tar.gz::https://github.com/grafana/loki/archive/v$pkgver.tar.gz
-promtail.sysusers promtail.service promtail.tmpfiles
-loki.sysusers loki.service loki.tmpfiles)
-sha512sums=('adcb95b044b2856d39d6febd0bc2f3945045c6f3097f92d4be107e91e2cd29f01a509553094642de5a05bd905410a4ad0ced184e5f2a2399ce715b06f2e978ed'
-
'2b6c44b18ea3c9f955a7450222180d0b20b5fc551d0b7e5d0d8949e40adc847c4166829146260f87a75732cc5473eab0347dd56fc2125517698bac0652738c74'
-
'a3427ddecada33b90658635962c4ea36ced6b9d0e1686ce898884980c2ce1a82be2ddcfa6b42736392653f48fa561408633d6016b77e2b513029ba0cec977727'
-
'598042c40673a7914c5a1eeccfb78f832379a61f4360212c5d86f667343cf2fc78e98d9025f9717ea64f3e16e0a28f08cd7709706d811656722019f6167dd788'
-
'f00b3cb64b71d3ca5a422a2bdff1f81a3e2707c4f73bcb27e24338eabff039b96125c847aaae43c9b22ccc47f89585118c1d0e0b29c4eb7b6f9260c68f8a8324'
-
'3c40d70366ee0ac3d11c87a818d82dfb4e64143e905187b287f7716ee009640bab6676b8a348e526458a00e4cff35fbd8e9d81bdaa6db38a5d673294f09e6638'
-
'de40d1e6752edbf8c21317ce1ee10f98dfc869e569c07092c613f7144e261e9438683a145a2e0e37e2a9fc758c5c2f02e1d0ac1c60347e98b147e4a550ec6040')
-
-build() {
-  cd loki-$pkgver
-
-  LDFLAGS="-extldflags $LDFLAGS"
-
-  go build \
--mod=vendor \
--trimpath \
--ldflags "$LDFLAGS" \
-./cmd/loki
-
-  go build \
--mod=vendor \
--trimpath \
--ldflags "$LDFLAGS" \
-./cmd/promtail
-
-  go build \
--mod=vendor \
--trimpath \
--ldflags "$LDFLAGS" \
-./cmd/logcli
-}
-
-check() {
-  cd loki-$pkgver
-
-  go test -v $(go list  ./... | grep -v "distributor")
-}
-
-package() {
-  cd loki-$pkgver
-
-  install -Dm755 -t "$pkgdir"/usr/bin loki promtail logcli
-
-  install -Dm644 cmd/promtail/promtail-local-config.yaml 
$pkgdir/etc/loki/promtail.yaml
-  install -Dm644 cmd/loki/loki-local-config.yaml $pkgdir/etc/loki/loki.yaml
-
-  # Promtail
-  install -Dm644 ${srcdir}/promtail.sysusers 
"$pkgdir/usr/lib/sysusers.d/promtail.conf"
-  install -Dm644 ${srcdir}/promtail.tmpfiles 
"$pkgdir/usr/lib/tmpfiles.d/promtail.conf"
-  install -Dm644 ${srcdir}/promtail.service 
"$pkgdir/usr/lib/systemd/system/promtail.service"
-
-  # Loki
-  install -Dm644 ${srcdir}/loki.sysusers "$pkgdir/usr/lib/sysusers.d/loki.conf"
-  install -Dm644 ${srcdir}/loki.tmpfiles "$pkgdir/usr/lib/tmpfiles.d/loki.conf"
-  install -Dm644 ${srcdir}/loki.service 
"$pkgdir/usr/lib/systemd/system/loki.service"
-}

Copied: loki/repos/extra-x86_64/PKGBUILD (from rev 387035, loki/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-20 19:29:50 UTC (rev 387036)
@@ -0,0 +1,75 @@
+# Maintainer: Jelle van der Waa 
+
+pkgname=loki
+pkgver=1.5.0
+pkgrel=1
+pkgdesc='like Prometheus, but for logs'
+url='https://github.com/grafana/loki'
+arch=('x86_64')
+license=('Apache')
+depends=('glibc')
+makedepends=('go' 'systemd')
+backup=('etc/loki/loki.yaml' 'etc/loki/promtail.yaml')

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

2020-05-20 Thread Jelle van der Waa via arch-commits
Date: Wednesday, May 20, 2020 @ 19:27:29
  Author: jelle
Revision: 387034

Upstream update to 1.5.0 and apply golang changes

Modified:
  loki/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 16:43:12 UTC (rev 387033)
+++ PKGBUILD2020-05-20 19:27:29 UTC (rev 387034)
@@ -1,7 +1,7 @@
 # Maintainer: Jelle van der Waa 
 
 pkgname=loki
-pkgver=1.4.1
+pkgver=1.5.0
 pkgrel=1
 pkgdesc='like Prometheus, but for logs'
 url='https://github.com/grafana/loki'
@@ -8,12 +8,12 @@
 arch=('x86_64')
 license=('Apache')
 depends=('glibc')
-makedepends=('go-pie')
+makedepends=('go' 'systemd')
 backup=('etc/loki/loki.yaml' 'etc/loki/promtail.yaml')
 
source=($pkgname-$pkgver.tar.gz::https://github.com/grafana/loki/archive/v$pkgver.tar.gz
 promtail.sysusers promtail.service promtail.tmpfiles
 loki.sysusers loki.service loki.tmpfiles)
-sha512sums=('adcb95b044b2856d39d6febd0bc2f3945045c6f3097f92d4be107e91e2cd29f01a509553094642de5a05bd905410a4ad0ced184e5f2a2399ce715b06f2e978ed'
+sha512sums=('31d61ba9cb47afeb0971fe35347683cf96e3b7a4da44b640b0065e64268109c2a1e9011f94d3fcf7912e98f8b079a001cd892a06e3f8d11796f23c8acfc93fff'
 
'2b6c44b18ea3c9f955a7450222180d0b20b5fc551d0b7e5d0d8949e40adc847c4166829146260f87a75732cc5473eab0347dd56fc2125517698bac0652738c74'
 
'a3427ddecada33b90658635962c4ea36ced6b9d0e1686ce898884980c2ce1a82be2ddcfa6b42736392653f48fa561408633d6016b77e2b513029ba0cec977727'
 
'598042c40673a7914c5a1eeccfb78f832379a61f4360212c5d86f667343cf2fc78e98d9025f9717ea64f3e16e0a28f08cd7709706d811656722019f6167dd788'
@@ -24,24 +24,28 @@
 build() {
   cd loki-$pkgver
 
-  LDFLAGS="-extldflags $LDFLAGS"
-
   go build \
--mod=vendor \
 -trimpath \
--ldflags "$LDFLAGS" \
+-buildmode=pie \
+-mod=readonly \
+-modcacherw \
+-ldflags "-extldflags ${LDFLAGS}" \
 ./cmd/loki
 
   go build \
--mod=vendor \
 -trimpath \
--ldflags "$LDFLAGS" \
+-buildmode=pie \
+-mod=readonly \
+-modcacherw \
+-ldflags "-extldflags ${LDFLAGS}" \
 ./cmd/promtail
 
   go build \
--mod=vendor \
 -trimpath \
--ldflags "$LDFLAGS" \
+-buildmode=pie \
+-mod=readonly \
+-modcacherw \
+-ldflags "-extldflags ${LDFLAGS}" \
 ./cmd/logcli
 }
 


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

2020-05-20 Thread Jelle van der Waa via arch-commits
Date: Wednesday, May 20, 2020 @ 19:27:46
  Author: jelle
Revision: 387035

archrelease: copy trunk to community-x86_64

Added:
  loki/repos/community-x86_64/
  loki/repos/community-x86_64/PKGBUILD
(from rev 387034, loki/trunk/PKGBUILD)
  loki/repos/community-x86_64/loki.service
(from rev 387034, loki/trunk/loki.service)
  loki/repos/community-x86_64/loki.sysusers
(from rev 387034, loki/trunk/loki.sysusers)
  loki/repos/community-x86_64/loki.tmpfiles
(from rev 387034, loki/trunk/loki.tmpfiles)
  loki/repos/community-x86_64/promtail.service
(from rev 387034, loki/trunk/promtail.service)
  loki/repos/community-x86_64/promtail.sysusers
(from rev 387034, loki/trunk/promtail.sysusers)
  loki/repos/community-x86_64/promtail.tmpfiles
(from rev 387034, loki/trunk/promtail.tmpfiles)

---+
 PKGBUILD  |   75 
 loki.service  |   27 ++
 loki.sysusers |1 
 loki.tmpfiles |1 
 promtail.service  |   26 ++
 promtail.sysusers |2 +
 promtail.tmpfiles |1 
 7 files changed, 133 insertions(+)

Copied: loki/repos/community-x86_64/PKGBUILD (from rev 387034, 
loki/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2020-05-20 19:27:46 UTC (rev 387035)
@@ -0,0 +1,75 @@
+# Maintainer: Jelle van der Waa 
+
+pkgname=loki
+pkgver=1.5.0
+pkgrel=1
+pkgdesc='like Prometheus, but for logs'
+url='https://github.com/grafana/loki'
+arch=('x86_64')
+license=('Apache')
+depends=('glibc')
+makedepends=('go' 'systemd')
+backup=('etc/loki/loki.yaml' 'etc/loki/promtail.yaml')
+source=($pkgname-$pkgver.tar.gz::https://github.com/grafana/loki/archive/v$pkgver.tar.gz
+promtail.sysusers promtail.service promtail.tmpfiles
+loki.sysusers loki.service loki.tmpfiles)
+sha512sums=('31d61ba9cb47afeb0971fe35347683cf96e3b7a4da44b640b0065e64268109c2a1e9011f94d3fcf7912e98f8b079a001cd892a06e3f8d11796f23c8acfc93fff'
+
'2b6c44b18ea3c9f955a7450222180d0b20b5fc551d0b7e5d0d8949e40adc847c4166829146260f87a75732cc5473eab0347dd56fc2125517698bac0652738c74'
+
'a3427ddecada33b90658635962c4ea36ced6b9d0e1686ce898884980c2ce1a82be2ddcfa6b42736392653f48fa561408633d6016b77e2b513029ba0cec977727'
+
'598042c40673a7914c5a1eeccfb78f832379a61f4360212c5d86f667343cf2fc78e98d9025f9717ea64f3e16e0a28f08cd7709706d811656722019f6167dd788'
+
'f00b3cb64b71d3ca5a422a2bdff1f81a3e2707c4f73bcb27e24338eabff039b96125c847aaae43c9b22ccc47f89585118c1d0e0b29c4eb7b6f9260c68f8a8324'
+
'3c40d70366ee0ac3d11c87a818d82dfb4e64143e905187b287f7716ee009640bab6676b8a348e526458a00e4cff35fbd8e9d81bdaa6db38a5d673294f09e6638'
+
'de40d1e6752edbf8c21317ce1ee10f98dfc869e569c07092c613f7144e261e9438683a145a2e0e37e2a9fc758c5c2f02e1d0ac1c60347e98b147e4a550ec6040')
+
+build() {
+  cd loki-$pkgver
+
+  go build \
+-trimpath \
+-buildmode=pie \
+-mod=readonly \
+-modcacherw \
+-ldflags "-extldflags ${LDFLAGS}" \
+./cmd/loki
+
+  go build \
+-trimpath \
+-buildmode=pie \
+-mod=readonly \
+-modcacherw \
+-ldflags "-extldflags ${LDFLAGS}" \
+./cmd/promtail
+
+  go build \
+-trimpath \
+-buildmode=pie \
+-mod=readonly \
+-modcacherw \
+-ldflags "-extldflags ${LDFLAGS}" \
+./cmd/logcli
+}
+
+check() {
+  cd loki-$pkgver
+
+  go test -v $(go list  ./... | grep -v "distributor")
+}
+
+package() {
+  cd loki-$pkgver
+
+  install -Dm755 -t "$pkgdir"/usr/bin loki promtail logcli
+
+  install -Dm644 cmd/promtail/promtail-local-config.yaml 
$pkgdir/etc/loki/promtail.yaml
+  install -Dm644 cmd/loki/loki-local-config.yaml $pkgdir/etc/loki/loki.yaml
+
+  # Promtail
+  install -Dm644 ${srcdir}/promtail.sysusers 
"$pkgdir/usr/lib/sysusers.d/promtail.conf"
+  install -Dm644 ${srcdir}/promtail.tmpfiles 
"$pkgdir/usr/lib/tmpfiles.d/promtail.conf"
+  install -Dm644 ${srcdir}/promtail.service 
"$pkgdir/usr/lib/systemd/system/promtail.service"
+
+  # Loki
+  install -Dm644 ${srcdir}/loki.sysusers "$pkgdir/usr/lib/sysusers.d/loki.conf"
+  install -Dm644 ${srcdir}/loki.tmpfiles "$pkgdir/usr/lib/tmpfiles.d/loki.conf"
+  install -Dm644 ${srcdir}/loki.service 
"$pkgdir/usr/lib/systemd/system/loki.service"
+}

Copied: loki/repos/community-x86_64/loki.service (from rev 387034, 
loki/trunk/loki.service)
===
--- community-x86_64/loki.service   (rev 0)
+++ community-x86_64/loki.service   2020-05-20 19:27:46 UTC (rev 387035)
@@ -0,0 +1,27 @@
+[Unit]
+Description=Loki is a horizontally-scalable, highly-available, multi-tenant 
log aggregation system
+After=network.target
+
+[Service]
+Type=simple
+ExecStart=/usr/bin/loki -boltdb.dir /var/lib/loki/index -local.chunk-directory 
/var/lib/loki/chunks -config.file 

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

2020-05-20 Thread Felix Yan via arch-commits
Date: Wednesday, May 20, 2020 @ 19:18:20
  Author: felixonmars
Revision: 630972

upgpkg: shellcheck 0.7.1-19: rebuild with skylighting 0.8.4, skylighting-core 
0.8.4

Modified:
  shellcheck/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 19:15:09 UTC (rev 630971)
+++ PKGBUILD2020-05-20 19:18:20 UTC (rev 630972)
@@ -4,7 +4,7 @@
 _hkgname=ShellCheck
 pkgname=shellcheck
 pkgver=0.7.1
-pkgrel=18
+pkgrel=19
 pkgdesc="Shell script analysis tool"
 url="https://www.shellcheck.net;
 license=("GPL")


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

2020-05-20 Thread Felix Yan via arch-commits
Date: Wednesday, May 20, 2020 @ 19:18:34
  Author: felixonmars
Revision: 630973

archrelease: copy trunk to community-staging-x86_64

Added:
  shellcheck/repos/community-staging-x86_64/
  shellcheck/repos/community-staging-x86_64/PKGBUILD
(from rev 630972, shellcheck/trunk/PKGBUILD)

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

Copied: shellcheck/repos/community-staging-x86_64/PKGBUILD (from rev 630972, 
shellcheck/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-05-20 19:18:34 UTC (rev 630973)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=ShellCheck
+pkgname=shellcheck
+pkgver=0.7.1
+pkgrel=19
+pkgdesc="Shell script analysis tool"
+url="https://www.shellcheck.net;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-diff' 'haskell-quickcheck' 
'haskell-regex-tdfa')
+makedepends=('ghc' 'pandoc')
+source=("$_hkgname-$pkgver.tar.gz::https://github.com/koalaman/shellcheck/archive/v$pkgver.tar.gz;)
+sha512sums=('95ca827f50035e352eabfbee9eb1791278f7c18c10c3a6c2656c5b9e87396b7b6c088f4cefa3d6f954ac6c2765ea50e232985b9f3eeea2dbe77c17473cc4a437')
+
+prepare() {
+cd $pkgname-$pkgver
+echo -e "import Distribution.Simple\nmain = defaultMain" > Setup.hs
+}
+
+build() {
+cd $pkgname-$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 \
+--ghc-option='-pie'
+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
+
+./manpage
+}
+
+check() {
+cd $pkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $pkgname-$pkgver
+
+install -D -m644 ${pkgname}.1   "${pkgdir}/usr/share/man/man1/${pkgname}.1"
+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}"
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-05-20 Thread Felix Yan via arch-commits
Date: Wednesday, May 20, 2020 @ 19:15:09
  Author: felixonmars
Revision: 630971

archrelease: copy trunk to community-any

Added:
  scrapy/repos/community-any/PKGBUILD
(from rev 630970, scrapy/trunk/PKGBUILD)
Deleted:
  scrapy/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-20 19:14:52 UTC (rev 630970)
+++ PKGBUILD2020-05-20 19:15:09 UTC (rev 630971)
@@ -1,40 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: PyroDevil 
-# Contributor: Anibal Pacheco 
-
-pkgname=scrapy
-pkgver=2.0.0
-pkgrel=1
-pkgdesc="A fast high-level scraping and web crawling framework."
-arch=('any')
-license=('BSD')
-url="https://scrapy.org;
-depends=('python-twisted' 'python-cryptography' 'python-cssselect' 
'python-lxml' 'libxml2'
- 'python-parsel' 'python-pydispatcher' 'python-pyopenssl' 
'python-queuelib'
- 'python-service-identity' 'python-setuptools' 'python-w3lib' 
'python-zope-interface'
- 'python-protego')
-checkdepends=('python-pytest-runner' 'python-pytest-twisted' 'python-botocore' 
'bpython'
-  'python-brotlipy' 'python-jmespath' 'ipython' 'mitmproxy' 
'python-pillow'
-  'python-sybil' 'python-testfixtures')
-optdepends=('ipython: for enhanced support of the interactive scraping shell')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/scrapy/scrapy/archive/$pkgver.tar.gz;)
-sha512sums=('bbe23230c7173fd3df58e8307eec70163fa56f9f70f61b8d91443acd09f0ab644a737fd6013916657a81352acfe9c034c115e2e7decdedeef0a9d2a3bca11150')
-
-build() {
-  cd scrapy-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd scrapy-$pkgver
-  python setup.py pytest --addopts tests
-}
-
-package() {
-  cd scrapy-$pkgver
-  python setup.py install -O1 --root="$pkgdir"
-
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-  install -D -m644 README.rst "$pkgdir"/usr/share/doc/$pkgname/README.rst
-  install -D -m644 docs/intro/install.rst 
"$pkgdir"/usr/share/doc/$pkgname/INSTALL.rst
-}

Copied: scrapy/repos/community-any/PKGBUILD (from rev 630970, 
scrapy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-20 19:15:09 UTC (rev 630971)
@@ -0,0 +1,40 @@
+# Maintainer: Felix Yan 
+# Contributor: PyroDevil 
+# Contributor: Anibal Pacheco 
+
+pkgname=scrapy
+pkgver=2.1.0
+pkgrel=1
+pkgdesc="A fast high-level scraping and web crawling framework."
+arch=('any')
+license=('BSD')
+url="https://scrapy.org;
+depends=('python-twisted' 'python-cryptography' 'python-cssselect' 
'python-lxml' 'libxml2'
+ 'python-parsel' 'python-pydispatcher' 'python-pyopenssl' 
'python-queuelib'
+ 'python-service-identity' 'python-setuptools' 'python-w3lib' 
'python-zope-interface'
+ 'python-protego')
+checkdepends=('python-pytest-runner' 'python-pytest-twisted' 'python-botocore' 
'bpython'
+  'python-brotlipy' 'python-jmespath' 'ipython' 'mitmproxy' 
'python-pillow'
+  'python-sybil' 'python-testfixtures')
+optdepends=('ipython: for enhanced support of the interactive scraping shell')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/scrapy/scrapy/archive/$pkgver.tar.gz;)
+sha512sums=('72bf6ebcabd6022236cfb8ab4479d577e38417a8c4bcfec80539bd25711cb39ceb44702f801fa0f029777411840506e07da1982ff19776e458ab697756e3f31c')
+
+build() {
+  cd scrapy-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd scrapy-$pkgver
+  python setup.py pytest --addopts tests
+}
+
+package() {
+  cd scrapy-$pkgver
+  python setup.py install -O1 --root="$pkgdir"
+
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+  install -D -m644 README.rst "$pkgdir"/usr/share/doc/$pkgname/README.rst
+  install -D -m644 docs/intro/install.rst 
"$pkgdir"/usr/share/doc/$pkgname/INSTALL.rst
+}


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

2020-05-20 Thread Felix Yan via arch-commits
Date: Wednesday, May 20, 2020 @ 19:14:52
  Author: felixonmars
Revision: 630970

upgpkg: scrapy 2.1.0-1

Modified:
  scrapy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 19:14:32 UTC (rev 630969)
+++ PKGBUILD2020-05-20 19:14:52 UTC (rev 630970)
@@ -3,7 +3,7 @@
 # Contributor: Anibal Pacheco 
 
 pkgname=scrapy
-pkgver=2.0.0
+pkgver=2.1.0
 pkgrel=1
 pkgdesc="A fast high-level scraping and web crawling framework."
 arch=('any')
@@ -18,7 +18,7 @@
   'python-sybil' 'python-testfixtures')
 optdepends=('ipython: for enhanced support of the interactive scraping shell')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/scrapy/scrapy/archive/$pkgver.tar.gz;)
-sha512sums=('bbe23230c7173fd3df58e8307eec70163fa56f9f70f61b8d91443acd09f0ab644a737fd6013916657a81352acfe9c034c115e2e7decdedeef0a9d2a3bca11150')
+sha512sums=('72bf6ebcabd6022236cfb8ab4479d577e38417a8c4bcfec80539bd25711cb39ceb44702f801fa0f029777411840506e07da1982ff19776e458ab697756e3f31c')
 
 build() {
   cd scrapy-$pkgver


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

2020-05-20 Thread Felix Yan via arch-commits
Date: Wednesday, May 20, 2020 @ 19:14:32
  Author: felixonmars
Revision: 630969

archrelease: copy trunk to community-staging-x86_64

Added:
  pandoc-crossref/repos/community-staging-x86_64/
  pandoc-crossref/repos/community-staging-x86_64/PKGBUILD
(from rev 630968, pandoc-crossref/trunk/PKGBUILD)

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

Copied: pandoc-crossref/repos/community-staging-x86_64/PKGBUILD (from rev 
630968, pandoc-crossref/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-05-20 19:14:32 UTC (rev 630969)
@@ -0,0 +1,46 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc-crossref
+pkgver=0.3.6.2
+pkgrel=96
+pkgdesc="Pandoc filter for cross-references"
+url="https://hackage.haskell.org/package/${pkgname};
+license=("GPL2")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-data-default' 'haskell-data-accessor' 
'haskell-data-accessor-template'
+ 'haskell-data-accessor-transformers' 'haskell-gitrev' 
'haskell-open-browser'
+ 'haskell-optparse-applicative' 'pandoc' 'haskell-pandoc-types' 
'haskell-roman-numerals'
+ 'haskell-syb' 'haskell-utility-ht')
+makedepends=('ghc' 'haskell-hspec')
+conflicts=('haskell-pandoc-crossref')
+replaces=('haskell-pandoc-crossref')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/lierdakil/pandoc-crossref/archive/v$pkgver.tar.gz;)
+sha512sums=('4b0443348ff3fa2e9f2366afee1a58c96466d395be9458e63b4741ffe0dba250d35e55de19b62c5a9231030bf658f2628f934667effcaad52891c94d63dbf168')
+
+build() {
+cd $pkgname-$pkgver
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests 
--datasubdir="$pkgname" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+   -f-enable_flaky_tests
+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 $pkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $pkgname-$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}"
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-05-20 Thread Felix Yan via arch-commits
Date: Wednesday, May 20, 2020 @ 19:14:18
  Author: felixonmars
Revision: 630968

upgpkg: pandoc-crossref 0.3.6.2-96: rebuild with skylighting 0.8.4, 
skylighting-core 0.8.4

Modified:
  pandoc-crossref/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 19:12:19 UTC (rev 630967)
+++ PKGBUILD2020-05-20 19:14:18 UTC (rev 630968)
@@ -3,7 +3,7 @@
 
 pkgname=pandoc-crossref
 pkgver=0.3.6.2
-pkgrel=95
+pkgrel=96
 pkgdesc="Pandoc filter for cross-references"
 url="https://hackage.haskell.org/package/${pkgname};
 license=("GPL2")


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

2020-05-20 Thread Felix Yan via arch-commits
Date: Wednesday, May 20, 2020 @ 19:12:04
  Author: felixonmars
Revision: 630966

upgpkg: haskell-hakyll 4.13.3.0-25: rebuild with skylighting 0.8.4, 
skylighting-core 0.8.4

Modified:
  haskell-hakyll/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 19:10:02 UTC (rev 630965)
+++ PKGBUILD2020-05-20 19:12:04 UTC (rev 630966)
@@ -4,7 +4,7 @@
 _hkgname=hakyll
 pkgname=haskell-hakyll
 pkgver=4.13.3.0
-pkgrel=24
+pkgrel=25
 pkgdesc="A static website compiler library"
 url="https://jaspervdj.be/hakyll;
 license=("BSD")


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

2020-05-20 Thread Felix Yan via arch-commits
Date: Wednesday, May 20, 2020 @ 19:12:19
  Author: felixonmars
Revision: 630967

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-hakyll/repos/community-staging-x86_64/PKGBUILD (from rev 
630966, haskell-hakyll/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-05-20 19:12:19 UTC (rev 630967)
@@ -0,0 +1,56 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hakyll
+pkgname=haskell-hakyll
+pkgver=4.13.3.0
+pkgrel=25
+pkgdesc="A static website compiler library"
+url="https://jaspervdj.be/hakyll;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-blaze-html' 'haskell-blaze-markup' 
'haskell-cryptonite'
+ 'haskell-data-default' 'haskell-file-embed' 'haskell-fsnotify' 
'haskell-http-conduit'
+ 'haskell-http-types' 'haskell-lrucache' 'haskell-memory' 
'haskell-network-uri'
+ 'haskell-optparse-applicative' 'pandoc' 'pandoc-citeproc' 
'haskell-random'
+ 'haskell-regex-tdfa' 'haskell-resourcet' 'haskell-scientific' 
'haskell-tagsoup'
+ 'haskell-time-locale-compat' 'haskell-unordered-containers' 
'haskell-vector'
+ 'haskell-wai' 'haskell-wai-app-static' 'haskell-warp' 'haskell-yaml')
+makedepends=('ghc' 'haskell-quickcheck' 'haskell-tasty' 'haskell-tasty-hunit'
+ 'haskell-tasty-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('104b0ab5092d2f0b7017ff8beae2bbe2fdcbfe37fe9d2cf3165227856e2ab3e13d25f0b4827aab450b5ded447763044580a63a41762e3523f29eb1e647666918')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i 's/< *2.1/<3/;s/< *1.3/<2/;s/< *0.0.12/<1/' $_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 --datasubdir="$pkgname" 
--enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fcheckexternal -fwatchserver -fpreviewserver -fusepandoc
+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
+LC_CTYPE=en_US.UTF-8 runhaskell Setup test || warning 
"https://github.com/jaspervdj/hakyll/issues/682;
+}
+
+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 pandoc-citeproc/repos (2 files)

2020-05-20 Thread Felix Yan via arch-commits
Date: Wednesday, May 20, 2020 @ 19:10:02
  Author: felixonmars
Revision: 630965

archrelease: copy trunk to community-staging-x86_64

Added:
  pandoc-citeproc/repos/community-staging-x86_64/
  pandoc-citeproc/repos/community-staging-x86_64/PKGBUILD
(from rev 630964, pandoc-citeproc/trunk/PKGBUILD)

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

Copied: pandoc-citeproc/repos/community-staging-x86_64/PKGBUILD (from rev 
630964, pandoc-citeproc/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-05-20 19:10:02 UTC (rev 630965)
@@ -0,0 +1,57 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc-citeproc
+pkgver=0.17
+pkgrel=101
+pkgdesc="Supports using pandoc with citeproc"
+url="https://hackage.haskell.org/package/$pkgname;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-aeson-pretty' 'haskell-attoparsec'
+ 'haskell-base-compat' 'haskell-data-default' 'haskell-hs-bibutils' 
'haskell-libyaml'
+ 'haskell-network' 'haskell-old-locale' 'pandoc' 
'haskell-pandoc-types' 'haskell-rfc5051'
+ 'haskell-safe' 'haskell-setenv' 'haskell-split' 'haskell-syb' 
'haskell-tagsoup'
+ 'haskell-temporary' 'haskell-text-icu' 'haskell-unordered-containers' 
'haskell-vector'
+ 'haskell-xml-conduit' 'haskell-yaml' 'haskell-hsyaml' 
'haskell-hsyaml-aeson')
+conflicts=('haskell-pandoc-citeproc')
+replaces=('haskell-pandoc-citeproc')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/$pkgname/${pkgver}/$pkgname-${pkgver}.tar.gz;)
+sha512sums=('65bc510c1208d5c76884c1b5898d033abd06ebce040c36e1ec2f11fd0107fbb6ac838e0be6d97c40c9b2893ba6bdc38d2bf5c12fec7db069bbabd37d6d07b4e7')
+
+prepare() {
+cd "${srcdir}/$pkgname-${pkgver}"
+# TODO: find a better solution
+sed -i 
"s|(\"HOME\",\".\")|(\"HOME\",\".\"),(\"LD_LIBRARY_PATH\",\"$PWD/dist/build\"),(\"pandoc_citeproc_datadir\",\"$PWD\")|"
 tests/test-pandoc-citeproc.hs
+}
+
+build() {
+cd "${srcdir}/$pkgname-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/$pkgname" 
--datasubdir="$pkgname" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-debug -f-test_citeproc -funicode_collation -f-embed_data_files 
-fbibutils -f-static
+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 $pkgname-$pkgver
+# https://github.com/jgm/pandoc-citeproc/issues/342
+runhaskell Setup test || warning "Tests failed"
+}
+
+package() {
+cd "${srcdir}/$pkgname-${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 pandoc-citeproc/trunk (PKGBUILD)

2020-05-20 Thread Felix Yan via arch-commits
Date: Wednesday, May 20, 2020 @ 19:09:47
  Author: felixonmars
Revision: 630964

upgpkg: pandoc-citeproc 0.17-101: rebuild with skylighting 0.8.4, 
skylighting-core 0.8.4

Modified:
  pandoc-citeproc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 19:05:44 UTC (rev 630963)
+++ PKGBUILD2020-05-20 19:09:47 UTC (rev 630964)
@@ -3,7 +3,7 @@
 
 pkgname=pandoc-citeproc
 pkgver=0.17
-pkgrel=100
+pkgrel=101
 pkgdesc="Supports using pandoc with citeproc"
 url="https://hackage.haskell.org/package/$pkgname;
 license=("BSD")


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

2020-05-20 Thread Felix Yan via arch-commits
Date: Wednesday, May 20, 2020 @ 19:05:30
  Author: felixonmars
Revision: 630962

upgpkg: pandoc 2.9.2.1-40: rebuild with skylighting 0.8.4, skylighting-core 
0.8.4

Modified:
  pandoc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 18:50:39 UTC (rev 630961)
+++ PKGBUILD2020-05-20 19:05:30 UTC (rev 630962)
@@ -3,7 +3,7 @@
 
 pkgname=pandoc
 pkgver=2.9.2.1
-pkgrel=39
+pkgrel=40
 pkgdesc='Conversion between markup formats'
 url='https://pandoc.org'
 license=('GPL')
@@ -30,13 +30,16 @@
  'haskell-tasty-quickcheck' 'haskell-tasty-golden' 
'haskell-quickcheck'
  'haskell-executable-path')
 
source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;
-
pandoc-revert-noprelude.patch::https://github.com/jgm/pandoc/commit/a9ef15bbd574bf09827c2c25ef1cd3efaf288f7c.patch)
+
pandoc-revert-noprelude.patch::https://github.com/jgm/pandoc/commit/a9ef15bbd574bf09827c2c25ef1cd3efaf288f7c.patch
+
pandoc-skylighting-0.8.4.patch::https://github.com/jgm/pandoc/commit/46179d5b3e84b5c709e09924cbda524230ebd3fe.patch)
 
sha512sums=('35ac491a7e0a2f6d8fe0f2c2ffe265748b13920904e974f88c92b3f82edb2f1c03e28ebef1bc344ead13d566117a5e50707a68edc49f95159157f974210b23b2'
-
'ca91b56003c02cd10cc9a073f63eac6e3d4371ebec80bb85500ea67e8aa0ac8938fb5487651ad72e6f964b9d5266c1578e649323e3390037fb87b443850eb4e1')
+
'ca91b56003c02cd10cc9a073f63eac6e3d4371ebec80bb85500ea67e8aa0ac8938fb5487651ad72e6f964b9d5266c1578e649323e3390037fb87b443850eb4e1'
+
'3c057b1bb41cf2346e4fb63c50d3edb745eb598ef5d69c63bc0de0dcfa8e55fce0e4d19d5ce4872ca5fede10ee0f3621fb350d7e162fe63a8d0e1dea8b796e5b')
 
 prepare() {
 cd "${srcdir}/$pkgname-${pkgver}"
 patch -p1 -i ../pandoc-revert-noprelude.patch
+patch -p1 -i ../pandoc-skylighting-0.8.4.patch || :
 sed -i 's/< 1.1/< 1.2/;s/< *2.14/<3/;s/< *1.3/<2/' $pkgname.cabal
 
 # TODO: find a better solution


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

2020-05-20 Thread Felix Yan via arch-commits
Date: Wednesday, May 20, 2020 @ 19:05:44
  Author: felixonmars
Revision: 630963

archrelease: copy trunk to community-staging-x86_64

Added:
  pandoc/repos/community-staging-x86_64/
  pandoc/repos/community-staging-x86_64/PKGBUILD
(from rev 630962, pandoc/trunk/PKGBUILD)

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

Copied: pandoc/repos/community-staging-x86_64/PKGBUILD (from rev 630962, 
pandoc/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-05-20 19:05:44 UTC (rev 630963)
@@ -0,0 +1,75 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc
+pkgver=2.9.2.1
+pkgrel=40
+pkgdesc='Conversion between markup formats'
+url='https://pandoc.org'
+license=('GPL')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-http' 'haskell-juicypixels' 'haskell-sha' 
'haskell-aeson'
+ 'haskell-aeson-pretty' 'haskell-attoparsec'
+ 'haskell-base64-bytestring' 'haskell-blaze-html' 
'haskell-blaze-markup'
+ 'haskell-case-insensitive' 'haskell-cmark-gfm' 'haskell-data-default' 
'haskell-doclayout'
+ 'haskell-doctemplates' 'haskell-emojis' 'haskell-glob'
+ 'haskell-haddock-library' 'haskell-ipynb' 'haskell-jira-wiki-markup' 
'haskell-skylighting'
+ 'haskell-skylighting-core' 'haskell-hslua' 
'haskell-hslua-module-system'
+ 'haskell-hslua-module-text' 'haskell-http-client' 'haskell-syb' 
'haskell-hsyaml'
+ 'haskell-http-client-tls' 'haskell-http-types' 'haskell-safe' 
'haskell-split'
+ 'haskell-texmath' 'haskell-network' 'haskell-pandoc-types' 
'haskell-random'
+ 'haskell-scientific' 'haskell-tagsoup' 'haskell-temporary' 
'haskell-text-conversions'
+ 'haskell-network-uri' 'haskell-unicode-transforms' 
'haskell-unordered-containers'
+ 'haskell-zip-archive' 'haskell-vector' 'haskell-xml' 'haskell-zlib')
+optdepends=('pandoc-citeproc: for citation rendering with pandoc-citeproc 
filter'
+'pandoc-crossref: for numbering figures, equations, tables and 
cross-references to them with pandoc-crossref filter'
+'texlive-core: for pdf output')
+conflicts=('haskell-pandoc')
+replaces=('haskell-pandoc')
+makedepends=('ghc' 'haskell-diff' 'haskell-tasty' 'haskell-tasty-hunit' 
'haskell-tasty-lua'
+ 'haskell-tasty-quickcheck' 'haskell-tasty-golden' 
'haskell-quickcheck'
+ 'haskell-executable-path')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;
+
pandoc-revert-noprelude.patch::https://github.com/jgm/pandoc/commit/a9ef15bbd574bf09827c2c25ef1cd3efaf288f7c.patch
+
pandoc-skylighting-0.8.4.patch::https://github.com/jgm/pandoc/commit/46179d5b3e84b5c709e09924cbda524230ebd3fe.patch)
+sha512sums=('35ac491a7e0a2f6d8fe0f2c2ffe265748b13920904e974f88c92b3f82edb2f1c03e28ebef1bc344ead13d566117a5e50707a68edc49f95159157f974210b23b2'
+
'ca91b56003c02cd10cc9a073f63eac6e3d4371ebec80bb85500ea67e8aa0ac8938fb5487651ad72e6f964b9d5266c1578e649323e3390037fb87b443850eb4e1'
+
'3c057b1bb41cf2346e4fb63c50d3edb745eb598ef5d69c63bc0de0dcfa8e55fce0e4d19d5ce4872ca5fede10ee0f3621fb350d7e162fe63a8d0e1dea8b796e5b')
+
+prepare() {
+cd "${srcdir}/$pkgname-${pkgver}"
+patch -p1 -i ../pandoc-revert-noprelude.patch
+patch -p1 -i ../pandoc-skylighting-0.8.4.patch || :
+sed -i 's/< 1.1/< 1.2/;s/< *2.14/<3/;s/< *1.3/<2/' $pkgname.cabal
+
+# TODO: find a better solution
+sed -i "s|let env' = dynlibEnv ++ |let env' = dynlibEnv ++ 
[(\"LD_LIBRARY_PATH\", \"$PWD/dist/build\")] ++ |" test/Tests/Command.hs
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgbase}" 
--datasubdir="$pkgname" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-trypandoc -f-embed_data_files -f-static
+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 "${srcdir}/${pkgname}-${pkgver}"
+LC_CTYPE=en_US.UTF-8 runhaskell Setup test || warning "Tests failed"
+}
+
+package() {
+cd "${srcdir}/${pkgbase}-${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}"
+rm "${pkgdir}/usr/share/doc/${pkgname}/COPYING.md"
+install -Dm644 man/pandoc.1 

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

2020-05-20 Thread Felix Yan via arch-commits
Date: Wednesday, May 20, 2020 @ 18:50:39
  Author: felixonmars
Revision: 630961

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-skylighting/repos/community-staging-x86_64/PKGBUILD (from rev 
630960, haskell-skylighting/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-05-20 18:50:39 UTC (rev 630961)
@@ -0,0 +1,37 @@
+# Maintainer: Felix Yan 
+
+_hkgname=skylighting
+pkgname=haskell-skylighting
+pkgver=0.8.4
+pkgrel=1
+pkgdesc="Syntax highlighting library"
+url="https://github.com/jgm/skylighting;
+license=('GPL2')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-skylighting-core')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('5c0e2605ddc4dd21dba036bc2c010ab2e2be930580921fb13146999b259e5ccd5599c504b7e31adf9d9f9d03af36c05965672de6864a0375ac13a7d372f00498')
+
+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 \
+-f-executable
+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"
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-05-20 Thread Felix Yan via arch-commits
Date: Wednesday, May 20, 2020 @ 18:50:24
  Author: felixonmars
Revision: 630960

upgpkg: haskell-skylighting 0.8.4-1: rebuild with skylighting 0.8.4, 
skylighting-core 0.8.4

Modified:
  haskell-skylighting/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 18:48:49 UTC (rev 630959)
+++ PKGBUILD2020-05-20 18:50:24 UTC (rev 630960)
@@ -2,8 +2,8 @@
 
 _hkgname=skylighting
 pkgname=haskell-skylighting
-pkgver=0.8.3.4
-pkgrel=18
+pkgver=0.8.4
+pkgrel=1
 pkgdesc="Syntax highlighting library"
 url="https://github.com/jgm/skylighting;
 license=('GPL2')
@@ -11,7 +11,7 @@
 depends=('ghc-libs' 'haskell-skylighting-core')
 makedepends=('ghc')
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha512sums=('a463d86b3126200bf305c93c578d6b9485879e117d7cd1572d127109f2bc66ef9c3882d2f5a0b0e132fc24c534f1a788bc82f83e92df25589cf88130c319f5a3')
+sha512sums=('5c0e2605ddc4dd21dba036bc2c010ab2e2be930580921fb13146999b259e5ccd5599c504b7e31adf9d9f9d03af36c05965672de6864a0375ac13a7d372f00498')
 
 build() {
 cd $_hkgname-$pkgver


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

2020-05-20 Thread Felix Yan via arch-commits
Date: Wednesday, May 20, 2020 @ 18:48:49
  Author: felixonmars
Revision: 630959

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-skylighting-core/repos/community-staging-x86_64/
  haskell-skylighting-core/repos/community-staging-x86_64/PKGBUILD
(from rev 630958, haskell-skylighting-core/trunk/PKGBUILD)

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

Copied: haskell-skylighting-core/repos/community-staging-x86_64/PKGBUILD (from 
rev 630958, haskell-skylighting-core/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-05-20 18:48:49 UTC (rev 630959)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+
+_hkgname=skylighting-core
+pkgname=haskell-skylighting-core
+pkgver=0.8.4
+pkgrel=1
+pkgdesc="Syntax highlighting library"
+url="https://github.com/jgm/skylighting;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-ansi-terminal' 
'haskell-attoparsec'
+ 'haskell-base64-bytestring' 'haskell-blaze-html' 
'haskell-case-insensitive'
+ 'haskell-colour' 'haskell-hxt' 'haskell-regex-pcre' 'haskell-safe'
+ 'haskell-utf8-string')
+makedepends=('ghc' 'haskell-diff' 'haskell-hunit' 'haskell-pretty-show' 
'haskell-quickcheck'
+ 'haskell-random' 'haskell-tasty' 'haskell-tasty-golden' 
'haskell-tasty-hunit'
+ 'haskell-tasty-quickcheck')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('7e8e14ee48297ac4d5b1778d5e9aab56526708d2ad8da455dbfe42522d0fc451aff41170f705d7d6f66a898caf7c17fc968d78e81b59925fe2aca770150e5474')
+
+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 \
+-fexecutable -fsystem-pcre
+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-skylighting-core/trunk (PKGBUILD)

2020-05-20 Thread Felix Yan via arch-commits
Date: Wednesday, May 20, 2020 @ 18:48:34
  Author: felixonmars
Revision: 630958

upgpkg: haskell-skylighting-core 0.8.4-1: rebuild with skylighting 0.8.4, 
skylighting-core 0.8.4

Modified:
  haskell-skylighting-core/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 18:41:24 UTC (rev 630957)
+++ PKGBUILD2020-05-20 18:48:34 UTC (rev 630958)
@@ -2,8 +2,8 @@
 
 _hkgname=skylighting-core
 pkgname=haskell-skylighting-core
-pkgver=0.8.3.4
-pkgrel=19
+pkgver=0.8.4
+pkgrel=1
 pkgdesc="Syntax highlighting library"
 url="https://github.com/jgm/skylighting;
 license=('BSD')
@@ -16,7 +16,7 @@
  'haskell-random' 'haskell-tasty' 'haskell-tasty-golden' 
'haskell-tasty-hunit'
  'haskell-tasty-quickcheck')
 
source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
-sha512sums=('6c913a73c9ace3e2987ef1210f4fbc508cfd64e0f0cdae1e2b2edff1107c83f77db75f461d911c105270cf871a0038b2b5a5f4bf354e8c53570c87d664031268')
+sha512sums=('7e8e14ee48297ac4d5b1778d5e9aab56526708d2ad8da455dbfe42522d0fc451aff41170f705d7d6f66a898caf7c17fc968d78e81b59925fe2aca770150e5474')
 
 build() {
 cd $_hkgname-$pkgver


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

2020-05-20 Thread Felix Yan via arch-commits
Date: Wednesday, May 20, 2020 @ 18:39:54
  Author: felixonmars
Revision: 630952

archrelease: copy trunk to community-staging-x86_64

Added:
  stack/repos/community-staging-x86_64/
  stack/repos/community-staging-x86_64/PKGBUILD
(from rev 630951, stack/trunk/PKGBUILD)
  stack/repos/community-staging-x86_64/stack.install
(from rev 630951, stack/trunk/stack.install)

---+
 PKGBUILD  |   80 
 stack.install |4 ++
 2 files changed, 84 insertions(+)

Copied: stack/repos/community-staging-x86_64/PKGBUILD (from rev 630951, 
stack/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-05-20 18:39:54 UTC (rev 630952)
@@ -0,0 +1,80 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=stack
+pkgver=2.3.1
+pkgrel=12
+pkgdesc="The Haskell Tool Stack"
+url="https://github.com/commercialhaskell/stack;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-annotated-wl-pprint' 
'haskell-ansi-terminal'
+ 'haskell-async' 'haskell-attoparsec' 'haskell-base64-bytestring' 
'haskell-casa-client'
+ 'haskell-casa-types' 'haskell-colour' 'haskell-conduit' 
'haskell-conduit-extra'
+ 'haskell-cryptonite' 'haskell-cryptonite-conduit' 'haskell-echo'
+ 'haskell-extra' 'haskell-file-embed' 'haskell-filelock' 
'haskell-fsnotify'
+ 'haskell-generic-deriving' 'haskell-githash' 
'haskell-hackage-security' 'haskell-hashable'
+ 'haskell-hi-file-parser' 'haskell-hpack' 'haskell-http-client' 
'haskell-http-client-tls'
+ 'haskell-http-conduit' 'haskell-http-download' 'haskell-http-types' 
'haskell-memory'
+ 'haskell-microlens' 'haskell-mintty' 'haskell-mono-traversable' 
'haskell-mustache'
+ 'haskell-neat-interpolation' 'haskell-network-uri' 
'haskell-open-browser'
+ 'haskell-optparse-applicative' 'haskell-optparse-generic' 
'haskell-optparse-simple'
+ 'haskell-pantry' 'haskell-path' 'haskell-path-io' 'haskell-persistent'
+ 'haskell-persistent-sqlite' 'haskell-persistent-template' 
'haskell-primitive'
+ 'haskell-project-template' 'haskell-regex-applicative-text' 
'haskell-retry' 'haskell-rio'
+ 'haskell-rio-prettyprint' 'haskell-split' 'haskell-streaming-commons' 
'haskell-tar'
+ 'haskell-temporary' 'haskell-text-metrics' 'haskell-th-reify-many' 
'haskell-tls'
+ 'haskell-typed-process' 'haskell-unicode-transforms' 
'haskell-unix-compat'
+ 'haskell-unliftio' 'haskell-unordered-containers' 'haskell-vector' 
'haskell-yaml'
+ 'haskell-zip-archive' 'haskell-zlib')
+makedepends=('ghc' 'git' 'haskell-quickcheck' 'haskell-hspec' 
'haskell-raw-strings-qq'
+ 'haskell-smallcheck')
+checkdepends=('cabal-install')
+conflicts=('haskell-stack')
+replaces=('haskell-stack')
+install="stack.install"
+source=("git+https://github.com/commercialhaskell/stack.git#tag=v$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  cd $pkgname
+  hpack
+  sed -i -e '/semigroups/d' $pkgname.cabal
+
+  sed -i 's/map show errs/map show (toList errs)/' src/Stack/SDist.hs
+}
+
+build() {
+  cd $pkgname
+
+  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 \
+  -f-disable-git-info -f-integration-tests -f-static 
-f-hide-dependency-versions -f-supported-build \
+  --ghc-option='-pie'
+  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 $pkgname
+  # cabal update
+  LD_LIBRARY_PATH="$PWD"/dist/build PATH="$PWD"/dist/build/stack:"$PATH" 
runhaskell Setup test
+  # Integration tests will result in 4 failures on Arch currently
+}
+
+package() {
+  cd $pkgname
+
+  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
+
+  LD_PRELOAD=$(ls "$pkgdir"/usr/lib/libHSstack-*-ghc*.so) 
"${pkgdir}"/usr/bin/stack --bash-completion-script /usr/bin/stack > 
stack_completion_script
+  install -Dm644 stack_completion_script 
"${pkgdir}/usr/share/bash-completion/completions/stack"
+}

Copied: stack/repos/community-staging-x86_64/stack.install (from rev 630951, 
stack/trunk/stack.install)
===
--- 

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

2020-05-20 Thread Felix Yan via arch-commits
Date: Wednesday, May 20, 2020 @ 18:39:36
  Author: felixonmars
Revision: 630951

upgpkg: stack 2.3.1-12: rebuild with snap-server 1.1.1.2

Modified:
  stack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 18:33:42 UTC (rev 630950)
+++ PKGBUILD2020-05-20 18:39:36 UTC (rev 630951)
@@ -3,7 +3,7 @@
 
 pkgname=stack
 pkgver=2.3.1
-pkgrel=11
+pkgrel=12
 pkgdesc="The Haskell Tool Stack"
 url="https://github.com/commercialhaskell/stack;
 license=("BSD")


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

2020-05-20 Thread Felix Yan via arch-commits
Date: Wednesday, May 20, 2020 @ 18:33:42
  Author: felixonmars
Revision: 630950

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-mustache/repos/community-staging-x86_64/PKGBUILD (from rev 
630949, haskell-mustache/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-05-20 18:33:42 UTC (rev 630950)
@@ -0,0 +1,44 @@
+# Maintainer: Felix Yan 
+
+_hkgname=mustache
+pkgname=haskell-mustache
+pkgver=2.3.1
+pkgrel=97
+pkgdesc="A mustache template parser library."
+url="https://github.com/JustusAdam/mustache;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-either' 
'haskell-unordered-containers' 'haskell-vector'
+ 'haskell-scientific' 'haskell-th-lift' 'haskell-cmdargs' 
'haskell-yaml')
+makedepends=('ghc' 'haskell-hspec' 'haskell-base-unicode-symbols' 
'haskell-wreq' 'haskell-zlib'
+ 'haskell-tar' 'haskell-lens' 'haskell-temporary')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('162360cb635d40086721d4dd350036884207679b240d30420b9fc71eebef847e542bd143275931a22a42c583d513d0c906a6b112d780824dc189ad07e3027aa3')
+
+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-mustache/trunk (PKGBUILD)

2020-05-20 Thread Felix Yan via arch-commits
Date: Wednesday, May 20, 2020 @ 18:33:28
  Author: felixonmars
Revision: 630949

upgpkg: haskell-mustache 2.3.1-97: rebuild with snap-server 1.1.1.2

Modified:
  haskell-mustache/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 18:32:14 UTC (rev 630948)
+++ PKGBUILD2020-05-20 18:33:28 UTC (rev 630949)
@@ -3,7 +3,7 @@
 _hkgname=mustache
 pkgname=haskell-mustache
 pkgver=2.3.1
-pkgrel=96
+pkgrel=97
 pkgdesc="A mustache template parser library."
 url="https://github.com/JustusAdam/mustache;
 license=('BSD')


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

2020-05-20 Thread Felix Yan via arch-commits
Date: Wednesday, May 20, 2020 @ 18:32:14
  Author: felixonmars
Revision: 630948

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-wreq/repos/community-staging-x86_64/PKGBUILD (from rev 630947, 
haskell-wreq/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-05-20 18:32:14 UTC (rev 630948)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+
+_hkgname=wreq
+pkgname=haskell-wreq
+pkgver=0.5.3.2
+pkgrel=196
+pkgdesc="An easy-to-use HTTP client library."
+url="https://github.com/bos/wreq;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-attoparsec' 
'haskell-authenticate-oauth'
+ 'haskell-base16-bytestring' 'haskell-case-insensitive' 
'haskell-cryptonite'
+ 'haskell-hashable' 'haskell-http-client' 'haskell-http-client-tls'
+ 'haskell-http-types' 'haskell-lens' 'haskell-lens-aeson' 
'haskell-memory'
+ 'haskell-mime-types' 'haskell-psqueues' 'haskell-time-locale-compat'
+ 'haskell-unordered-containers' 'haskell-aeson-pretty' 
'haskell-base64-bytestring'
+ 'haskell-snap-core' 'haskell-snap-server' 'haskell-unix-compat' 
'haskell-uuid')
+makedepends=('ghc' 'haskell-cabal-doctest' 'haskell-doctest' 'haskell-hunit' 
'haskell-quickcheck'
+ 'haskell-network-info' 'haskell-temporary' 
'haskell-test-framework'
+ 'haskell-test-framework-hunit' 
'haskell-test-framework-quickcheck2' 'haskell-vector')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('5a2c62b973758cb8ce2bf20504e328090896fa25e7ee1f77b472d7cf5156e08b6d85bf4341ff45e44db1724070fcf3c0f21037fa0a79211a1767024328f7c779')
+
+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 \
+-fdoctest -f-aws -fhttpbin -f-developer
+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.md 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE.md
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE.md
+}


  1   2   3   4   5   >