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

2020-04-13 Thread Jan Steffens via arch-commits
Date: Monday, April 13, 2020 @ 13:21:52
  Author: heftig
Revision: 613664

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 613661, bbswitch/trunk/0001-proc_ops-struct.patch)
  bbswitch/repos/community-testing-x86_64/PKGBUILD
(from rev 613662, 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 613661, 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-04-13 13:21:52 UTC 
(rev 613664)
@@ -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 613662, 
bbswitch/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-04-13 13:21:52 UTC (rev 613664)
@@ -0,0 +1,45 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: M0Rf30
+# Contributor: Samsagax 
+
+pkgbase=bbswitch
+pkgname=(bbswitch bbswitch-dkms)
+pkgver=0.8
+pkgrel=308
+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 nvidia-lts/repos (testing-x86_64 testing-x86_64/PKGBUILD)

2020-04-13 Thread Jan Steffens via arch-commits
Date: Monday, April 13, 2020 @ 13:21:51
  Author: heftig
Revision: 380274

archrelease: copy trunk to testing-x86_64

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

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

Copied: nvidia-lts/repos/testing-x86_64/PKGBUILD (from rev 380272, 
nvidia-lts/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-04-13 13:21:51 UTC (rev 380274)
@@ -0,0 +1,38 @@
+# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Eric BĂ©langer 
+
+pkgname=nvidia-lts
+pkgver=440.82
+pkgrel=3
+epoch=1
+pkgdesc="NVIDIA drivers for linux-lts"
+arch=('x86_64')
+url="https://www.nvidia.com/;
+makedepends=('linux-lts-headers' "nvidia-dkms=$pkgver")
+provides=('NVIDIA-MODULE')
+license=('custom')
+options=('!strip')
+
+build() {
+_kernver=$(

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

2020-04-13 Thread Jan Steffens via arch-commits
Date: Monday, April 13, 2020 @ 13:21:51
  Author: heftig
Revision: 613663

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 613660, vhba-module/trunk/60-vhba.rules)
  vhba-module/repos/community-testing-x86_64/PKGBUILD
(from rev 613660, vhba-module/trunk/PKGBUILD)
  vhba-module/repos/community-testing-x86_64/dkms.conf
(from rev 613660, 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 
613660, vhba-module/trunk/60-vhba.rules)
===
--- community-testing-x86_64/60-vhba.rules  (rev 0)
+++ community-testing-x86_64/60-vhba.rules  2020-04-13 13:21:51 UTC (rev 
613663)
@@ -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 613660, 
vhba-module/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-04-13 13:21:51 UTC (rev 613663)
@@ -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=31
+pkgdesc="Kernel module that emulates SCSI devices"
+url="https://cdemu.sourceforge.io/;
+arch=(x86_64)
+license=(GPL)
+makedepends=('linux-headers')
+source=("https://downloads.sourceforge.net/cdemu/$pkgbase-$pkgver.tar.bz2;
+60-vhba.rules dkms.conf)
+sha256sums=('59a3208a7b8fcf1bb03bd4d352ec89d06a8b6b84db325e31b0863b209dde3483'
+'3052cb1cadbdf4bfb0b588bb8ed80691940d8dd63dc5502943d597eaf9f40c3b'
+'8cab0ebb4fee72069d63616b0983f105b98d1261e72e9bef5509a6e60bc382a7')
+
+prepare() {
+  cd $pkgbase-$pkgver
+  sed -i 's/20190302/20190410/' Makefile  # Fixup VHBA_VERSION
+}
+
+build() {
+  cd $pkgbase-$pkgver
+  make KERNELRELEASE="$(

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

2020-04-13 Thread Jan Steffens via arch-commits
Date: Monday, April 13, 2020 @ 13:22:02
  Author: heftig
Revision: 380277

archrelease: copy trunk to testing-x86_64

Added:
  linux/repos/testing-x86_64/
  linux/repos/testing-x86_64/PKGBUILD
(from rev 380275, linux/trunk/PKGBUILD)
  linux/repos/testing-x86_64/config
(from rev 380275, linux/trunk/config)
  linux/repos/testing-x86_64/sphinx-workaround.patch
(from rev 380275, 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 380276:380277 to see the changes.


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

2020-04-13 Thread Jan Steffens via arch-commits
Date: Monday, April 13, 2020 @ 13:21:45
  Author: heftig
Revision: 613655

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

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

Copied: broadcom-wl/repos/community-testing-x86_64/PKGBUILD (from rev 613653, 
broadcom-wl/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-04-13 13:21:45 UTC (rev 613655)
@@ -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=188
+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 acpi_call-lts/repos (2 files)

2020-04-13 Thread Jan Steffens via arch-commits
Date: Monday, April 13, 2020 @ 13:21:44
  Author: heftig
Revision: 613654

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

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

Copied: acpi_call-lts/repos/community-testing-x86_64/PKGBUILD (from rev 613653, 
acpi_call-lts/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-04-13 13:21:44 UTC (rev 613654)
@@ -0,0 +1,46 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: mortzu 
+# Contributor: fnord0 
+
+pkgname=acpi_call-lts
+pkgver=1.1.0
+pkgrel=135
+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 nvidia/repos (testing-x86_64 testing-x86_64/PKGBUILD)

2020-04-13 Thread Jan Steffens via arch-commits
Date: Monday, April 13, 2020 @ 13:21:51
  Author: heftig
Revision: 380273

archrelease: copy trunk to testing-x86_64

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

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

Copied: nvidia/repos/testing-x86_64/PKGBUILD (from rev 380272, 
nvidia/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-04-13 13:21:51 UTC (rev 380273)
@@ -0,0 +1,40 @@
+# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Felix Yan 
+# Contributor: Thomas Baechler 
+
+pkgname=nvidia
+pkgver=440.82
+pkgrel=3
+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 virtualbox-host-modules-arch/repos (2 files)

2020-04-13 Thread Jan Steffens via arch-commits
Date: Monday, April 13, 2020 @ 13:21:45
  Author: heftig
Revision: 613656

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 613653, 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 613653, virtualbox-host-modules-arch/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-04-13 13:21:45 UTC (rev 613656)
@@ -0,0 +1,38 @@
+# Maintainer: SĂ©bastien Luttringer
+# Contributor: Ionut Biru 
+
+pkgname='virtualbox-host-modules-arch'
+pkgver=6.1.4
+pkgrel=18
+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 ndiswrapper-arch/repos (6 files)

2020-04-13 Thread Jan Steffens via arch-commits
Date: Monday, April 13, 2020 @ 13:21:47
  Author: heftig
Revision: 613659

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 613653, ndiswrapper-arch/trunk/PKGBUILD)
  ndiswrapper-arch/repos/community-testing-x86_64/kernel-5.3.patch
(from rev 613653, ndiswrapper-arch/trunk/kernel-5.3.patch)
  ndiswrapper-arch/repos/community-testing-x86_64/kernel-5.4.patch
(from rev 613653, ndiswrapper-arch/trunk/kernel-5.4.patch)
  ndiswrapper-arch/repos/community-testing-x86_64/kernel-5.5.patch
(from rev 613653, ndiswrapper-arch/trunk/kernel-5.5.patch)
  ndiswrapper-arch/repos/community-testing-x86_64/kernel-5.6.patch
(from rev 613654, 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 
613653, ndiswrapper-arch/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-04-13 13:21:47 UTC (rev 613659)
@@ -0,0 +1,44 @@
+# Maintainer: Felix Yan 
+# Contributor: maz-1 
+
+pkgname=ndiswrapper-arch
+pkgver=1.62
+pkgrel=47
+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-04-13 Thread Jan Steffens via arch-commits
Date: Monday, April 13, 2020 @ 13:21:50
  Author: heftig
Revision: 613662

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

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

Copied: tp_smapi-lts/repos/community-testing-x86_64/PKGBUILD (from rev 613660, 
tp_smapi-lts/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-04-13 13:21:50 UTC (rev 613662)
@@ -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=54
+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 r8168/repos (3 files)

2020-04-13 Thread Jan Steffens via arch-commits
Date: Monday, April 13, 2020 @ 13:21:46
  Author: heftig
Revision: 613657

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 613653, r8168/trunk/0001-linux-5.6.patch)
  r8168/repos/community-testing-x86_64/PKGBUILD
(from rev 613653, 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 
613653, 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-04-13 13:21:46 UTC 
(rev 613657)
@@ -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 613653, 
r8168/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-04-13 13:21:46 UTC (rev 613657)
@@ -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=2
+pkgdesc="A kernel module for Realtek 8168 network cards"
+url="http://www.realtek.com.tw;
+license=("GPL")
+arch=('x86_64')
+makedepends=('linux-headers')
+source=(https://github.com/mtorromeo/r8168/archive/$pkgver/$pkgname-$pkgver.tar.gz
+0001-linux-5.6.patch)
+sha256sums=('0f209762fa37b90c6ba347a815fd083c9d342e38dbec14273059a419e671df70'
+'7d0c468036a6acd83d056d6c243b3ace8be34bf3d633aa24bf54b9c3595f8a0d')
+
+prepare() {
+   cd "$pkgname-$pkgver"
+   patch -Np1 < ../0001-linux-5.6.patch
+}
+

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

2020-04-13 Thread Jan Steffens via arch-commits
Date: Monday, April 13, 2020 @ 13:21:42
  Author: heftig
Revision: 613653

archrelease: copy trunk to community-testing-any

Added:
  netfilter-fullconenat/repos/community-testing-any/
  netfilter-fullconenat/repos/community-testing-any/Kbuild
(from rev 613651, netfilter-fullconenat/trunk/Kbuild)
  netfilter-fullconenat/repos/community-testing-any/PKGBUILD
(from rev 613651, netfilter-fullconenat/trunk/PKGBUILD)
  netfilter-fullconenat/repos/community-testing-any/netfilter-fullconenat.conf
(from rev 613651, 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-any/Kbuild (from rev 
613651, netfilter-fullconenat/trunk/Kbuild)
===
--- community-testing-any/Kbuild(rev 0)
+++ community-testing-any/Kbuild2020-04-13 13:21:42 UTC (rev 613653)
@@ -0,0 +1 @@
+obj-m = xt_FULLCONENAT.o

Copied: netfilter-fullconenat/repos/community-testing-any/PKGBUILD (from rev 
613651, netfilter-fullconenat/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2020-04-13 13:21:42 UTC (rev 613653)
@@ -0,0 +1,40 @@
+# Maintainer: Felix Yan 
+# Contributor: Edward Pacman 
+
+pkgname=netfilter-fullconenat
+pkgver=r73.0cf3b48
+pkgrel=7
+pkgdesc="A kernel module that turns MASQUERADE into full cone SNAT"
+arch=('any')
+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-04-13 Thread Jan Steffens via arch-commits
Date: Monday, April 13, 2020 @ 13:21:50
  Author: heftig
Revision: 613661

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

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

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

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

2020-04-13 Thread Jan Steffens via arch-commits
Date: Monday, April 13, 2020 @ 13:21:48
  Author: heftig
Revision: 613660

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 613657, deepin-anything-arch/trunk/0001-linux-5.6.patch)
  deepin-anything-arch/repos/community-testing-x86_64/PKGBUILD
(from rev 613657, 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 613657, 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-04-13 13:21:48 UTC 
(rev 613660)
@@ -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 
613657, deepin-anything-arch/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-04-13 13:21:48 UTC (rev 613660)
@@ -0,0 +1,35 @@
+# Maintainer: Felix Yan 
+
+pkgname=deepin-anything-arch
+pkgver=5.0.1
+pkgrel=68
+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 linux-lts/repos (5 files)

2020-04-13 Thread Jan Steffens via arch-commits
Date: Monday, April 13, 2020 @ 13:22:03
  Author: heftig
Revision: 380278

archrelease: copy trunk to testing-x86_64

Added:
  linux-lts/repos/testing-x86_64/
  
linux-lts/repos/testing-x86_64/0001-add-sysctl-and-CONFIG-for-unprivileged_userns_clone.patch
(from rev 380275, 
linux-lts/trunk/0001-add-sysctl-and-CONFIG-for-unprivileged_userns_clone.patch)
  linux-lts/repos/testing-x86_64/PKGBUILD
(from rev 380275, linux-lts/trunk/PKGBUILD)
  linux-lts/repos/testing-x86_64/config
(from rev 380275, linux-lts/trunk/config)
  linux-lts/repos/testing-x86_64/sphinx-workaround.patch
(from rev 380275, linux-lts/trunk/sphinx-workaround.patch)

+
 0001-add-sysctl-and-CONFIG-for-unprivileged_userns_clone.patch |  132 
 PKGBUILD   |  204 
 config |10597 
++
 sphinx-workaround.patch|   15 
 4 files changed, 10948 insertions(+)

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


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

2020-04-13 Thread Jan Steffens via arch-commits
Date: Monday, April 13, 2020 @ 13:21:53
  Author: heftig
Revision: 380275

archrelease: copy trunk to testing-x86_64

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

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

Copied: wireguard-lts/repos/testing-x86_64/PKGBUILD (from rev 380274, 
wireguard-lts/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-04-13 13:21:53 UTC (rev 380275)
@@ -0,0 +1,32 @@
+# Maintainer: Christian Hesse 
+
+pkgname=wireguard-lts
+pkgver=1.0.20200401
+pkgrel=4
+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 tp_smapi/repos (2 files)

2020-04-13 Thread Jan Steffens via arch-commits
Date: Monday, April 13, 2020 @ 13:21:47
  Author: heftig
Revision: 613658

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

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

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

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

2020-04-13 Thread Jan Steffens via arch-commits
Date: Monday, April 13, 2020 @ 13:22:00
  Author: heftig
Revision: 380276

archrelease: copy trunk to testing-x86_64

Added:
  linux-zen/repos/testing-x86_64/
  linux-zen/repos/testing-x86_64/PKGBUILD
(from rev 380275, linux-zen/trunk/PKGBUILD)
  linux-zen/repos/testing-x86_64/config
(from rev 380275, linux-zen/trunk/config)
  linux-zen/repos/testing-x86_64/sphinx-workaround.patch
(from rev 380275, 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 380275:380276 to see the changes.


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

2020-04-13 Thread Jan Steffens via arch-commits
Date: Monday, April 13, 2020 @ 13:20:36
  Author: heftig
Revision: 613651

5.0.1-68: linux 5.6.4.arch1-1

Modified:
  deepin-anything-arch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-04-13 13:20:34 UTC (rev 613650)
+++ PKGBUILD2020-04-13 13:20:36 UTC (rev 613651)
@@ -2,7 +2,7 @@
 
 pkgname=deepin-anything-arch
 pkgver=5.0.1
-pkgrel=67
+pkgrel=68
 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 firefox-developer-edition/repos/community-x86_64 (8 files)

2020-04-13 Thread Andrew Crerar via arch-commits
Date: Monday, April 13, 2020 @ 15:17:39
  Author: andrewsc
Revision: 613674

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 613673, 
firefox-developer-edition/trunk/0001-Use-remoting-name-for-GDK-application-names.patch)
  firefox-developer-edition/repos/community-x86_64/PKGBUILD
(from rev 613673, firefox-developer-edition/trunk/PKGBUILD)
  
firefox-developer-edition/repos/community-x86_64/firefox-developer-edition.desktop
(from rev 613673, 
firefox-developer-edition/trunk/firefox-developer-edition.desktop)
  firefox-developer-edition/repos/community-x86_64/firefox-install-dir.patch
(from rev 613673, 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 |  112 +-
 PKGBUILD   |  450 -
 firefox-developer-edition.desktop  |  680 +++
 firefox-install-dir.patch  |   86 -
 4 files changed, 664 insertions(+), 664 deletions(-)

Deleted: 0001-Use-remoting-name-for-GDK-application-names.patch
===
--- 0001-Use-remoting-name-for-GDK-application-names.patch  2020-04-13 
15:17:09 UTC (rev 613673)
+++ 0001-Use-remoting-name-for-GDK-application-names.patch  2020-04-13 
15:17:39 UTC (rev 613674)
@@ -1,56 +0,0 @@
-From 1cab10b39cfda068100cab8c598f1ca0f50e4131 Mon Sep 17 00:00:00 2001
-Message-Id: 
<1cab10b39cfda068100cab8c598f1ca0f50e4131.1553597287.git.jan.steff...@gmail.com>
-From: "Jan Alexander Steffens (heftig)" 
-Date: Mon, 25 Mar 2019 20:30:11 +0100
-Subject: [PATCH] Use remoting name for GDK application names
-

- toolkit/xre/nsAppRunner.cpp | 6 +-
- widget/gtk/nsAppShell.cpp   | 7 +++
- 2 files changed, 4 insertions(+), 9 deletions(-)
-
-diff --git a/toolkit/xre/nsAppRunner.cpp b/toolkit/xre/nsAppRunner.cpp
-index 0b808ef215f06..28911c0ffeaec 100644
 a/toolkit/xre/nsAppRunner.cpp
-+++ b/toolkit/xre/nsAppRunner.cpp
-@@ -3728,11 +3728,7 @@ int XREMain::XRE_mainStartup(bool* aExitFlag) {
-   // 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
-index 0686ff814916b..ae4a4ea55f420 100644
 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"
-@@ -171,10 +172,8 @@ nsresult nsAppShell::Init() {
- // option when program uses gdk_set_program_class().
- //
- // See https://bugzilla.gnome.org/show_bug.cgi?id=747634
--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);
- }
-   }
- 
--- 
-2.21.0
-

Copied: 
firefox-developer-edition/repos/community-x86_64/0001-Use-remoting-name-for-GDK-application-names.patch
 (from rev 613673, 
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-04-13 
15:17:39 UTC (rev 613674)
@@ -0,0 +1,56 @@
+From 1cab10b39cfda068100cab8c598f1ca0f50e4131 Mon Sep 17 00:00:00 2001
+Message-Id: 
<1cab10b39cfda068100cab8c598f1ca0f50e4131.1553597287.git.jan.steff...@gmail.com>
+From: "Jan Alexander Steffens (heftig)" 
+Date: Mon, 25 Mar 2019 20:30:11 +0100
+Subject: [PATCH] Use remoting name for GDK application names
+
+---
+ toolkit/xre/nsAppRunner.cpp | 6 +-
+ widget/gtk/nsAppShell.cpp   | 7 +++
+ 2 files changed, 4 insertions(+), 9 deletions(-)
+
+diff --git a/toolkit/xre/nsAppRunner.cpp b/toolkit/xre/nsAppRunner.cpp
+index 0b808ef215f06..28911c0ffeaec 100644
+--- a/toolkit/xre/nsAppRunner.cpp
 b/toolkit/xre/nsAppRunner.cpp
+@@ -3728,11 +3728,7 @@ int 

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

2020-04-13 Thread Andrew Crerar via arch-commits
Date: Monday, April 13, 2020 @ 15:17:09
  Author: andrewsc
Revision: 613673

upgpkg: firefox-developer-edition 76.0b4-1

Modified:
  firefox-developer-edition/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-04-13 15:06:22 UTC (rev 613672)
+++ PKGBUILD2020-04-13 15:17:09 UTC (rev 613673)
@@ -2,7 +2,7 @@
 # Contributor: Jan Alexander Steffens (heftig) 
 
 pkgname=firefox-developer-edition
-pkgver=75.0b11
+pkgver=76.0b4
 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=('6bb1c75a6c9c9733ba562ab9e03423af568402e91045bce35e4a64b2e045b2fc72994631baa394fb797880edb910ec2513844d5a0572b6c76e910c6dc827f739'
+sha512sums=('474551370a51e0def7d131b4fc74a10886aa8009681187621edeca27afa2b394d250cd7543da760cf6b22155cd9bd727b4a7aaf3b23f58bab0fea35634da15bd'
 'SKIP'
 
'b66dbe7f262d036e5a5b895ab5b0dbb03313bca18b0823c001ef2dbaeb1a33169b57db0cf4dfd268499f28913845119902b5d62e8a6a9cc4820eb0ee2f322a1e'
 
'40c931b8abbe5880122dbcc93d457e04e9b4f2bc3e0275e9e3e35dd347fe0658f9446c89e99553203be8a8c9ab6f4ca872a7aedc514920c107b9235c04df91dc'


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

2020-04-13 Thread Jan Steffens via arch-commits
Date: Monday, April 13, 2020 @ 13:20:24
  Author: heftig
Revision: 613645

6.30.223.271-188: linux 5.6.4.arch1-1

Modified:
  broadcom-wl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-04-13 13:20:23 UTC (rev 613644)
+++ PKGBUILD2020-04-13 13:20:24 UTC (rev 613645)
@@ -5,7 +5,7 @@
 #_kernelname=-custom  # Build against kernel with a different name
 pkgname=${_module}${_kernelname}
 pkgver=6.30.223.271
-pkgrel=187
+pkgrel=188
 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 ndiswrapper-arch/trunk (PKGBUILD)

2020-04-13 Thread Jan Steffens via arch-commits
Date: Monday, April 13, 2020 @ 13:20:34
  Author: heftig
Revision: 613650

1.62-47: linux 5.6.4.arch1-1

Modified:
  ndiswrapper-arch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-04-13 13:20:30 UTC (rev 613649)
+++ PKGBUILD2020-04-13 13:20:34 UTC (rev 613650)
@@ -3,7 +3,7 @@
 
 pkgname=ndiswrapper-arch
 pkgver=1.62
-pkgrel=46
+pkgrel=47
 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 bbswitch/trunk (PKGBUILD)

2020-04-13 Thread Jan Steffens via arch-commits
Date: Monday, April 13, 2020 @ 13:20:25
  Author: heftig
Revision: 613646

0.8-308: linux 5.6.4.arch1-1

Modified:
  bbswitch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-04-13 13:20:24 UTC (rev 613645)
+++ PKGBUILD2020-04-13 13:20:25 UTC (rev 613646)
@@ -5,7 +5,7 @@
 pkgbase=bbswitch
 pkgname=(bbswitch bbswitch-dkms)
 pkgver=0.8
-pkgrel=307
+pkgrel=308
 pkgdesc="Kernel module allowing to switch dedicated graphics card on Optimus 
laptops"
 arch=('x86_64')
 url="http://github.com/Bumblebee-Project/bbswitch;


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

2020-04-13 Thread Jan Steffens via arch-commits
Date: Monday, April 13, 2020 @ 13:20:27
  Author: heftig
Revision: 613647

8.048.02-2: linux 5.6.4.arch1-1

Modified:
  r8168/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-04-13 13:20:25 UTC (rev 613646)
+++ PKGBUILD2020-04-13 13:20:27 UTC (rev 613647)
@@ -4,7 +4,7 @@
 
 pkgname=r8168
 pkgver=8.048.02
-pkgrel=1
+pkgrel=2
 pkgdesc="A kernel module for Realtek 8168 network cards"
 url="http://www.realtek.com.tw;
 license=("GPL")


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

2020-04-13 Thread Jan Steffens via arch-commits
Date: Monday, April 13, 2020 @ 13:20:30
  Author: heftig
Revision: 613649

1.1.0-307: linux 5.6.4.arch1-1

Modified:
  acpi_call/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-04-13 13:20:28 UTC (rev 613648)
+++ PKGBUILD2020-04-13 13:20:30 UTC (rev 613649)
@@ -4,7 +4,7 @@
 
 pkgname=acpi_call
 pkgver=1.1.0
-pkgrel=306
+pkgrel=307
 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 virtualbox-host-modules-arch/trunk (PKGBUILD)

2020-04-13 Thread Jan Steffens via arch-commits
Date: Monday, April 13, 2020 @ 13:20:22
  Author: heftig
Revision: 613643

6.1.4-18: linux 5.6.4.arch1-1

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

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

Modified: PKGBUILD
===
--- PKGBUILD2020-04-13 13:20:20 UTC (rev 613642)
+++ PKGBUILD2020-04-13 13:20:22 UTC (rev 613643)
@@ -3,7 +3,7 @@
 
 pkgname='virtualbox-host-modules-arch'
 pkgver=6.1.4
-pkgrel=17
+pkgrel=18
 pkgdesc='Virtualbox host kernel modules for Arch Kernel'
 arch=('x86_64')
 url='https://virtualbox.org/'


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

2020-04-13 Thread Jan Steffens via arch-commits
Date: Monday, April 13, 2020 @ 13:20:32
  Author: heftig
Revision: 380272

440.82-3: linux 5.6.4.arch1-1

Modified:
  nvidia/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-04-13 13:19:35 UTC (rev 380271)
+++ PKGBUILD2020-04-13 13:20:32 UTC (rev 380272)
@@ -4,7 +4,7 @@
 
 pkgname=nvidia
 pkgver=440.82
-pkgrel=2
+pkgrel=3
 pkgdesc="NVIDIA drivers for linux"
 arch=('x86_64')
 url="https://www.nvidia.com/;


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

2020-04-13 Thread Jan Steffens via arch-commits
Date: Monday, April 13, 2020 @ 13:21:42
  Author: heftig
Revision: 613652

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

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

Copied: r8168-lts/repos/community-testing-x86_64/PKGBUILD (from rev 613651, 
r8168-lts/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-04-13 13:21:42 UTC (rev 613652)
@@ -0,0 +1,35 @@
+# Maintainer: Massimiliano Torromeo 
+
+pkgname=r8168-lts
+pkgver=8.048.02
+pkgrel=3
+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 bazel/repos (3 files)

2020-04-13 Thread Konstantin Gizdov via arch-commits
Date: Monday, April 13, 2020 @ 13:56:41
  Author: kgizdov
Revision: 613666

archrelease: copy trunk to community-testing-x86_64

Added:
  bazel/repos/community-testing-x86_64/
  bazel/repos/community-testing-x86_64/PKGBUILD
(from rev 613665, bazel/trunk/PKGBUILD)
  bazel/repos/community-testing-x86_64/grpc_rename_gettid.patch
(from rev 613665, bazel/trunk/grpc_rename_gettid.patch)

--+
 PKGBUILD |   39 ++
 grpc_rename_gettid.patch |   78 +
 2 files changed, 117 insertions(+)

Copied: bazel/repos/community-testing-x86_64/PKGBUILD (from rev 613665, 
bazel/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-04-13 13:56:41 UTC (rev 613666)
@@ -0,0 +1,39 @@
+# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Konstantin Gizdov 
+# Contributor: Frederik Schwan 
+# Contributor: Simon Legner 
+
+pkgname=bazel
+pkgver=3.0.0
+pkgrel=1
+pkgdesc='Correct, reproducible, and fast builds for everyone'
+arch=('x86_64')
+license=('Apache')
+url='https://bazel.io/'
+depends=('java-environment=11' 'libarchive' 'zip' 'unzip')
+makedepends=('git' 'protobuf' 'python')
+options=('!distcc' '!strip')
+source=("https://github.com/bazelbuild/bazel/releases/download/${pkgver}/bazel-${pkgver}-dist.zip;
+
"https://github.com/bazelbuild/bazel/releases/download/${pkgver}/bazel-${pkgver}-dist.zip.sig;)
+sha512sums=('9947011db2719fc7d6abc48ad82abc06db9145ae36b2077d003cfb001a6d940e583c91e680a4c687f96cbdd1ec141bb24f598a85df361be0190b7b4d7a15ee3f'
+'SKIP')
+validpgpkeys=('71A1D0EFCFEB6281FD0437C93D5919B448457EE0')
+
+build() {
+  env EXTRA_BAZEL_ARGS="--host_javabase=@local_jdk//:jdk" ./compile.sh
+  ./output/bazel build scripts:bazel-complete.bash
+  cd output
+  ./bazel shutdown
+}
+
+package() {
+  install -Dm755 "${srcdir}/scripts/packages/bazel.sh" 
"${pkgdir}/usr/bin/bazel"
+  install -Dm755 "${srcdir}/output/bazel" "${pkgdir}/usr/bin/bazel-real"
+  install -Dm644 "${srcdir}/bazel-bin/scripts/bazel-complete.bash" 
"${pkgdir}/usr/share/bash-completion/completions/bazel"
+  install -Dm644 "${srcdir}/scripts/zsh_completion/_bazel" 
"${pkgdir}/usr/share/zsh/site-functions/_bazel"
+  mkdir -p "${pkgdir}/opt/bazel"
+  for d in examples third_party tools; do
+cp -r "${srcdir}/${d}" "${pkgdir}/opt/bazel/"
+  done
+}
+# vim:set ts=2 sw=2 et:

Copied: bazel/repos/community-testing-x86_64/grpc_rename_gettid.patch (from rev 
613665, bazel/trunk/grpc_rename_gettid.patch)
===
--- community-testing-x86_64/grpc_rename_gettid.patch   
(rev 0)
+++ community-testing-x86_64/grpc_rename_gettid.patch   2020-04-13 13:56:41 UTC 
(rev 613666)
@@ -0,0 +1,78 @@
+From d1d017390b799c59d6fdf7b8afa6136d218bdd61 Mon Sep 17 00:00:00 2001
+From: Benjamin Peterson 
+Date: Fri, 3 May 2019 08:11:00 -0700
+Subject: [PATCH] Rename gettid() functions.
+
+glibc 2.30 will declare its own gettid; see 
https://sourceware.org/git/?p=glibc.git;a=commit;h=1d0fc213824eaa2a8f8c4385daaa698ee8fb7c92.
 Rename the grpc versions to avoid naming conflicts.
+---
+ src/core/lib/gpr/log_linux.cc  | 4 ++--
+ src/core/lib/gpr/log_posix.cc  | 4 ++--
+ src/core/lib/iomgr/ev_epollex_linux.cc | 4 ++--
+ 3 files changed, 6 insertions(+), 6 deletions(-)
+
+diff --git src/core/lib/gpr/log_linux.cc.orig src/core/lib/gpr/log_linux.cc
+index 561276f0c20..8b597b4cf2f 100644
+--- src/core/lib/gpr/log_linux.cc.orig 2019-06-21 10:42:13.235611417 -0400
 src/core/lib/gpr/log_linux.cc  2019-06-21 10:42:16.686608855 -0400
+@@ -40,7 +40,7 @@
+ #include 
+ #include 
+ 
+-static long gettid(void) { return syscall(__NR_gettid); }
++static long sys_gettid(void) { return syscall(__NR_gettid); }
+ 
+ void gpr_log(const char* file, int line, gpr_log_severity severity,
+  const char* format, ...) {
+@@ -70,7 +70,7 @@ void gpr_default_log(gpr_log_func_args*
+   gpr_timespec now = gpr_now(GPR_CLOCK_REALTIME);
+   struct tm tm;
+   static __thread long tid = 0;
+-  if (tid == 0) tid = gettid();
++  if (tid == 0) tid = sys_gettid();
+ 
+   timer = static_cast(now.tv_sec);
+   final_slash = strrchr(args->file, '/');
+diff --git src/core/lib/gpr/log_posix.cc.orig src/core/lib/gpr/log_posix.cc
+index b6edc14ab6b..2f7c6ce3760 100644
+--- src/core/lib/gpr/log_posix.cc.orig 2019-06-21 10:42:13.242611412 -0400
 src/core/lib/gpr/log_posix.cc  2019-06-21 10:42:22.794604319 -0400
+@@ -30,7 +30,7 @@
+ #include 
+ #include 
+ 
+-static intptr_t gettid(void) { return (intptr_t)pthread_self(); }
++static intptr_t sys_gettid(void) { return (intptr_t)pthread_self(); }
+ 
+ void gpr_log(const char* file, int line, gpr_log_severity severity,
+  const char* format, ...) {
+@@ -85,7 +85,7 @@ void 

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

2020-04-13 Thread Antonio Rojas via arch-commits
Date: Monday, April 13, 2020 @ 15:43:17
  Author: arojas
Revision: 380287

archrelease: copy trunk to extra-x86_64

Added:
  qalculate-gtk/repos/extra-x86_64/PKGBUILD
(from rev 380286, qalculate-gtk/trunk/PKGBUILD)
Deleted:
  qalculate-gtk/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-04-13 15:42:58 UTC (rev 380286)
+++ PKGBUILD2020-04-13 15:43:17 UTC (rev 380287)
@@ -1,25 +0,0 @@
-# Maintainer:
-# Contributor: Eric BĂ©langer 
-
-pkgname=qalculate-gtk
-pkgver=3.8.0
-pkgrel=2
-pkgdesc="GTK frontend for libqalculate"
-arch=(x86_64)
-url="https://qalculate.github.io/;
-license=(GPL)
-depends=(libqalculate gtk3)
-makedepends=(intltool)
-source=(https://github.com/Qalculate/qalculate-gtk/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz)
-sha256sums=('9a2abf5f5c06f6a3a58d41844de7a666d0304c0c261bc2acd1f64ed105a0cd5c')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: qalculate-gtk/repos/extra-x86_64/PKGBUILD (from rev 380286, 
qalculate-gtk/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-04-13 15:43:17 UTC (rev 380287)
@@ -0,0 +1,25 @@
+# Maintainer:
+# Contributor: Eric BĂ©langer 
+
+pkgname=qalculate-gtk
+pkgver=3.9.0
+pkgrel=1
+pkgdesc="GTK frontend for libqalculate"
+arch=(x86_64)
+url="https://qalculate.github.io/;
+license=(GPL)
+depends=(libqalculate gtk3)
+makedepends=(intltool)
+source=(https://github.com/Qalculate/qalculate-gtk/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz)
+sha256sums=('b5431d3f61ba7f37dae91b2071ee4dcc7616b1c93583b6efd5591394cd911833')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}


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

2020-04-13 Thread Antonio Rojas via arch-commits
Date: Monday, April 13, 2020 @ 15:42:58
  Author: arojas
Revision: 380286

Update to 3.9.0

Modified:
  qalculate-gtk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-04-13 15:39:18 UTC (rev 380285)
+++ PKGBUILD2020-04-13 15:42:58 UTC (rev 380286)
@@ -2,8 +2,8 @@
 # Contributor: Eric BĂ©langer 
 
 pkgname=qalculate-gtk
-pkgver=3.8.0
-pkgrel=2
+pkgver=3.9.0
+pkgrel=1
 pkgdesc="GTK frontend for libqalculate"
 arch=(x86_64)
 url="https://qalculate.github.io/;
@@ -11,7 +11,7 @@
 depends=(libqalculate gtk3)
 makedepends=(intltool)
 
source=(https://github.com/Qalculate/qalculate-gtk/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz)
-sha256sums=('9a2abf5f5c06f6a3a58d41844de7a666d0304c0c261bc2acd1f64ed105a0cd5c')
+sha256sums=('b5431d3f61ba7f37dae91b2071ee4dcc7616b1c93583b6efd5591394cd911833')
 
 build() {
   cd $pkgname-$pkgver


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

2020-04-13 Thread Antonio Rojas via arch-commits
Date: Monday, April 13, 2020 @ 15:55:00
  Author: arojas
Revision: 613683

Install shared libraries correctly (FS#66238)

Modified:
  zn_poly/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-04-13 15:53:35 UTC (rev 613682)
+++ PKGBUILD2020-04-13 15:55:00 UTC (rev 613683)
@@ -3,7 +3,7 @@
 
 pkgname=zn_poly
 pkgver=0.9.2
-pkgrel=1
+pkgrel=2
 pkgdesc="Polynomial arithmetic over Z/nZ"
 arch=(x86_64)
 url="https://gitlab.com/sagemath/zn_poly/;
@@ -25,5 +25,5 @@
   python makemakefile.py --prefix="$pkgdir"/usr > makefile
   make install
 # Install shared library
-  cp libzn_poly.so "$pkgdir"/usr/lib
+  cp -P libzn_poly*.so* "$pkgdir"/usr/lib
 }


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

2020-04-13 Thread Antonio Rojas via arch-commits
Date: Monday, April 13, 2020 @ 15:55:26
  Author: arojas
Revision: 613684

archrelease: copy trunk to community-x86_64

Added:
  zn_poly/repos/community-x86_64/PKGBUILD
(from rev 613683, zn_poly/trunk/PKGBUILD)
Deleted:
  zn_poly/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-04-13 15:55:00 UTC (rev 613683)
+++ PKGBUILD2020-04-13 15:55:26 UTC (rev 613684)
@@ -1,29 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: RĂ©my Oudompheng 
-
-pkgname=zn_poly
-pkgver=0.9.2
-pkgrel=1
-pkgdesc="Polynomial arithmetic over Z/nZ"
-arch=(x86_64)
-url="https://gitlab.com/sagemath/zn_poly/;
-license=(GPL)
-depends=(gmp)
-makedepends=(python)
-source=("https://gitlab.com/sagemath/zn_poly/-/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
-sha256sums=('6b4bb9f931d7ccc4cd5727faad87fbc3eed2e6a91cbd7f7c32138f6cfde39c6b')
-
-build() {
-  cd $pkgname-$pkgver
-  python makemakefile.py --prefix=/usr --cflags="$CFLAGS -fPIC" 
--cxxflags="$CXXFLAGS" --ldflags="$LDFLAGS" > makefile
-  make
-  make libzn_poly.so
-}
-
-package() {
-  cd $pkgname-$pkgver
-  python makemakefile.py --prefix="$pkgdir"/usr > makefile
-  make install
-# Install shared library
-  cp libzn_poly.so "$pkgdir"/usr/lib
-}

Copied: zn_poly/repos/community-x86_64/PKGBUILD (from rev 613683, 
zn_poly/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-04-13 15:55:26 UTC (rev 613684)
@@ -0,0 +1,29 @@
+# Maintainer: Antonio Rojas 
+# Contributor: RĂ©my Oudompheng 
+
+pkgname=zn_poly
+pkgver=0.9.2
+pkgrel=2
+pkgdesc="Polynomial arithmetic over Z/nZ"
+arch=(x86_64)
+url="https://gitlab.com/sagemath/zn_poly/;
+license=(GPL)
+depends=(gmp)
+makedepends=(python)
+source=("https://gitlab.com/sagemath/zn_poly/-/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
+sha256sums=('6b4bb9f931d7ccc4cd5727faad87fbc3eed2e6a91cbd7f7c32138f6cfde39c6b')
+
+build() {
+  cd $pkgname-$pkgver
+  python makemakefile.py --prefix=/usr --cflags="$CFLAGS -fPIC" 
--cxxflags="$CXXFLAGS" --ldflags="$LDFLAGS" > makefile
+  make
+  make libzn_poly.so
+}
+
+package() {
+  cd $pkgname-$pkgver
+  python makemakefile.py --prefix="$pkgdir"/usr > makefile
+  make install
+# Install shared library
+  cp -P libzn_poly*.so* "$pkgdir"/usr/lib
+}


[arch-commits] Commit in konqueror/kde-unstable (PKGBUILD)

2020-04-13 Thread Antonio Rojas via arch-commits
Date: Monday, April 13, 2020 @ 16:25:09
  Author: arojas
Revision: 380292

Fix crash with kbookmarks 5.69

Modified:
  konqueror/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-04-13 16:13:18 UTC (rev 380291)
+++ PKGBUILD2020-04-13 16:25:09 UTC (rev 380292)
@@ -3,7 +3,7 @@
 
 pkgname=konqueror
 pkgver=20.03.90
-pkgrel=1
+pkgrel=2
 pkgdesc="KDE File Manager & Web Browser"
 arch=(x86_64)
 url="https://konqueror.org/;
@@ -12,14 +12,19 @@
 makedepends=(extra-cmake-modules kdoctools kdesignerplugin kdesu)
 optdepends=('kdesu: shell command plugin')
 groups=(kde-applications kdebase)
-source=("https://download.kde.org/unstable/release-service/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+source=("https://download.kde.org/unstable/release-service/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig}
+ 
konqueror-kbookmarks-5.69.patch::"https://cgit.kde.org/konqueror.git/patch/?id=078f357b;)
 sha256sums=('5bfd0a9bedc64c6bab20d62a50a13c9dfb6071843e7480db957ace9d90edf56b'
-'SKIP')
+'SKIP'
+'ee1a034b10ce6f95530c667f5c9e3976ebbeffed86919bf8a86f10d6d80a0e76')
 validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

   F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

 
 prepare() {
   mkdir -p build
+
+  cd $pkgname-$pkgver
+  patch -p1 -i ../konqueror-kbookmarks-5.69.patch # Fix crash with kbookmarks 
5.69
 }
 
 build() {


[arch-commits] Commit in konqueror/repos/kde-unstable-x86_64 (PKGBUILD PKGBUILD)

2020-04-13 Thread Antonio Rojas via arch-commits
Date: Monday, April 13, 2020 @ 16:25:29
  Author: arojas
Revision: 380293

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  konqueror/repos/kde-unstable-x86_64/PKGBUILD
(from rev 380292, konqueror/kde-unstable/PKGBUILD)
Deleted:
  konqueror/repos/kde-unstable-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-04-13 16:25:09 UTC (rev 380292)
+++ PKGBUILD2020-04-13 16:25:29 UTC (rev 380293)
@@ -1,35 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Maintainer: Felix Yan 
-
-pkgname=konqueror
-pkgver=20.03.90
-pkgrel=1
-pkgdesc="KDE File Manager & Web Browser"
-arch=(x86_64)
-url="https://konqueror.org/;
-license=(LGPL)
-depends=(dolphin keditbookmarks qt5-webengine qt5-script kdelibs4support)
-makedepends=(extra-cmake-modules kdoctools kdesignerplugin kdesu)
-optdepends=('kdesu: shell command plugin')
-groups=(kde-applications kdebase)
-source=("https://download.kde.org/unstable/release-service/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('5bfd0a9bedc64c6bab20d62a50a13c9dfb6071843e7480db957ace9d90edf56b'
-'SKIP')
-validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

-  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: konqueror/repos/kde-unstable-x86_64/PKGBUILD (from rev 380292, 
konqueror/kde-unstable/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-04-13 16:25:29 UTC (rev 380293)
@@ -0,0 +1,40 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+
+pkgname=konqueror
+pkgver=20.03.90
+pkgrel=2
+pkgdesc="KDE File Manager & Web Browser"
+arch=(x86_64)
+url="https://konqueror.org/;
+license=(LGPL)
+depends=(dolphin keditbookmarks qt5-webengine qt5-script kdelibs4support)
+makedepends=(extra-cmake-modules kdoctools kdesignerplugin kdesu)
+optdepends=('kdesu: shell command plugin')
+groups=(kde-applications kdebase)
+source=("https://download.kde.org/unstable/release-service/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig}
+ 
konqueror-kbookmarks-5.69.patch::"https://cgit.kde.org/konqueror.git/patch/?id=078f357b;)
+sha256sums=('5bfd0a9bedc64c6bab20d62a50a13c9dfb6071843e7480db957ace9d90edf56b'
+'SKIP'
+'ee1a034b10ce6f95530c667f5c9e3976ebbeffed86919bf8a86f10d6d80a0e76')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

+
+prepare() {
+  mkdir -p build
+
+  cd $pkgname-$pkgver
+  patch -p1 -i ../konqueror-kbookmarks-5.69.patch # Fix crash with kbookmarks 
5.69
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


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

2020-04-13 Thread Jan Steffens via arch-commits
Date: Monday, April 13, 2020 @ 12:20:27
  Author: heftig
Revision: 380266

1.42.0-2: llvm 10

Added:
  rust/trunk/0001-bootstrap-fix-clippy-warnings.patch
Modified:
  rust/trunk/PKGBUILD

--+
 0001-bootstrap-fix-clippy-warnings.patch |  452 +
 PKGBUILD |   15 
 2 files changed, 462 insertions(+), 5 deletions(-)

Added: 0001-bootstrap-fix-clippy-warnings.patch
===
--- 0001-bootstrap-fix-clippy-warnings.patch(rev 0)
+++ 0001-bootstrap-fix-clippy-warnings.patch2020-04-13 12:20:27 UTC (rev 
380266)
@@ -0,0 +1,452 @@
+From 5f979e9afab42dd7536ca93994de66169880361e Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Matthias=20Kr=C3=BCger?= 
+Date: Mon, 3 Feb 2020 20:13:30 +0100
+Subject: [PATCH] bootstrap: fix clippy warnings
+
+---
+ src/bootstrap/bin/rustc.rs |  6 +++---
+ src/bootstrap/bin/rustdoc.rs   |  2 +-
+ src/bootstrap/builder.rs   | 24 
+ src/bootstrap/builder/tests.rs |  1 -
+ src/bootstrap/compile.rs   | 20 ++--
+ src/bootstrap/config.rs|  7 +++
+ src/bootstrap/dist.rs  |  4 ++--
+ src/bootstrap/doc.rs   |  2 +-
+ src/bootstrap/flags.rs |  2 +-
+ src/bootstrap/install.rs   |  5 ++---
+ src/bootstrap/lib.rs   |  6 +++---
+ src/bootstrap/metadata.rs  |  1 -
+ src/bootstrap/native.rs|  4 +---
+ src/bootstrap/test.rs  |  9 +++--
+ src/bootstrap/tool.rs  |  2 +-
+ src/bootstrap/toolstate.rs |  2 +-
+ src/bootstrap/util.rs  |  2 +-
+ 17 files changed, 41 insertions(+), 58 deletions(-)
+
+diff --git a/src/bootstrap/bin/rustc.rs b/src/bootstrap/bin/rustc.rs
+index a34ec44566b..a8c00c8c3ca 100644
+--- a/src/bootstrap/bin/rustc.rs
 b/src/bootstrap/bin/rustc.rs
+@@ -47,24 +47,24 @@ fn main() {
+ };
+ let stage = env::var("RUSTC_STAGE").expect("RUSTC_STAGE was not set");
+ let sysroot = env::var_os("RUSTC_SYSROOT").expect("RUSTC_SYSROOT was not 
set");
+-let on_fail = env::var_os("RUSTC_ON_FAIL").map(|of| Command::new(of));
++let on_fail = env::var_os("RUSTC_ON_FAIL").map(Command::new);
+ 
+ let rustc = env::var_os(rustc).unwrap_or_else(|| panic!("{:?} was not 
set", rustc));
+ let libdir = env::var_os(libdir).unwrap_or_else(|| panic!("{:?} was not 
set", libdir));
+ let mut dylib_path = bootstrap::util::dylib_path();
+ dylib_path.insert(0, PathBuf::from());
+ 
+ let mut cmd = Command::new(rustc);
+ cmd.args().env(bootstrap::util::dylib_path_var(), 
env::join_paths(_path).unwrap());
+ 
+ // Get the name of the crate we're compiling, if any.
+ let crate_name =
+ args.windows(2).find(|args| args[0] == 
"--crate-name").and_then(|args| args[1].to_str());
+ 
+ if let Some(crate_name) = crate_name {
+ if let Some(target) = env::var_os("RUSTC_TIME") {
+ if target == "all"
+-|| target.into_string().unwrap().split(",").any(|c| c.trim() 
== crate_name)
++|| target.into_string().unwrap().split(',').any(|c| c.trim() 
== crate_name)
+ {
+ cmd.arg("-Ztime");
+ }
+@@ -189,7 +189,7 @@ fn main() {
+ crate_name,
+ is_test,
+ dur.as_secs(),
+-dur.subsec_nanos() / 1_000_000
++dur.subsec_millis()
+ );
+ 
+ match status.code() {
+diff --git a/src/bootstrap/bin/rustdoc.rs b/src/bootstrap/bin/rustdoc.rs
+index 8c8b33a4e4e..04345867bf5 100644
+--- a/src/bootstrap/bin/rustdoc.rs
 b/src/bootstrap/bin/rustdoc.rs
+@@ -61,7 +61,7 @@ fn main() {
+ }
+ 
+ // Needed to be able to run all rustdoc tests.
+-if let Some(_) = env::var_os("RUSTDOC_GENERATE_REDIRECT_PAGES") {
++if env::var_os("RUSTDOC_GENERATE_REDIRECT_PAGES").is_some() {
+ // This "unstable-options" can be removed when 
`--generate-redirect-pages` is stabilized
+ if !has_unstable {
+ cmd.arg("-Z").arg("unstable-options");
+diff --git a/src/bootstrap/builder.rs b/src/bootstrap/builder.rs
+index d9c894aa9c6..18f6fda7608 100644
+--- a/src/bootstrap/builder.rs
 b/src/bootstrap/builder.rs
+@@ -510,17 +510,15 @@ impl<'a> Builder<'a> {
+ Subcommand::Format { .. } | Subcommand::Clean { .. } => panic!(),
+ };
+ 
+-let builder = Builder {
++Builder {
+ build,
+ top_stage: build.config.stage.unwrap_or(2),
+ kind,
+ cache: Cache::new(),
+ stack: RefCell::new(Vec::new()),
+ time_spent_on_dependencies: Cell::new(Duration::new(0, 0)),
+ paths: paths.to_owned(),
+-};
+-
+-builder
++}
+ }
+ 
+ pub fn execute_cli() {
+@@ -753,13 +751,12 @@ impl<'a> Builder<'a> {
+ cargo.env("RUST_CHECK", "1");
+   

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

2020-04-13 Thread Antonio Rojas via arch-commits
Date: Monday, April 13, 2020 @ 15:39:18
  Author: arojas
Revision: 380285

archrelease: copy trunk to extra-x86_64

Added:
  libqalculate/repos/extra-x86_64/PKGBUILD
(from rev 380284, libqalculate/trunk/PKGBUILD)
Deleted:
  libqalculate/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-04-13 15:38:56 UTC (rev 380284)
+++ PKGBUILD2020-04-13 15:39:18 UTC (rev 380285)
@@ -1,26 +0,0 @@
-# Maintainer: Eric BĂ©langer 
-# Maintainer: Antonio Rojas 
-
-pkgname=libqalculate
-pkgver=3.8.0
-pkgrel=1
-pkgdesc="Multi-purpose desktop calculator"
-arch=(x86_64)
-url="https://qalculate.github.io/;
-license=(GPL)
-depends=(libxml2 curl mpfr)
-makedepends=(intltool doxygen)
-optdepends=('gnuplot: for plotting support')
-source=(https://github.com/Qalculate/libqalculate/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz)
-sha256sums=('d8fcf445677ced76c13db5bd31af96f069f83041a264ac4df0d065af47b2e1ae')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: libqalculate/repos/extra-x86_64/PKGBUILD (from rev 380284, 
libqalculate/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-04-13 15:39:18 UTC (rev 380285)
@@ -0,0 +1,26 @@
+# Maintainer: Eric BĂ©langer 
+# Maintainer: Antonio Rojas 
+
+pkgname=libqalculate
+pkgver=3.9.0
+pkgrel=1
+pkgdesc="Multi-purpose desktop calculator"
+arch=(x86_64)
+url="https://qalculate.github.io/;
+license=(GPL)
+depends=(libxml2 curl mpfr)
+makedepends=(intltool doxygen)
+optdepends=('gnuplot: for plotting support')
+source=(https://github.com/Qalculate/libqalculate/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz)
+sha256sums=('d9d219e74314f863811763be0518f05362dc0b084222728786d8639fadce37dd')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}


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

2020-04-13 Thread Antonio Rojas via arch-commits
Date: Monday, April 13, 2020 @ 15:38:56
  Author: arojas
Revision: 380284

Update to 3.9.0

Modified:
  libqalculate/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-04-13 14:58:30 UTC (rev 380283)
+++ PKGBUILD2020-04-13 15:38:56 UTC (rev 380284)
@@ -2,7 +2,7 @@
 # Maintainer: Antonio Rojas 
 
 pkgname=libqalculate
-pkgver=3.8.0
+pkgver=3.9.0
 pkgrel=1
 pkgdesc="Multi-purpose desktop calculator"
 arch=(x86_64)
@@ -12,7 +12,7 @@
 makedepends=(intltool doxygen)
 optdepends=('gnuplot: for plotting support')
 
source=(https://github.com/Qalculate/libqalculate/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz)
-sha256sums=('d8fcf445677ced76c13db5bd31af96f069f83041a264ac4df0d065af47b2e1ae')
+sha256sums=('d9d219e74314f863811763be0518f05362dc0b084222728786d8639fadce37dd')
 
 build() {
   cd $pkgname-$pkgver


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

2020-04-13 Thread Evangelos Foutras via arch-commits
Date: Monday, April 13, 2020 @ 15:52:05
  Author: foutrelis
Revision: 380288

upgpkg: xfwm4 4.14.1-1: new upstream release

Modified:
  xfwm4/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-04-13 15:43:17 UTC (rev 380287)
+++ PKGBUILD2020-04-13 15:52:05 UTC (rev 380288)
@@ -2,7 +2,7 @@
 # Contributor: tobias 
 
 pkgname=xfwm4
-pkgver=4.14.0
+pkgver=4.14.1
 pkgrel=1
 pkgdesc="Xfce's window manager"
 arch=('x86_64')
@@ -13,7 +13,7 @@
  'hicolor-icon-theme')
 makedepends=('intltool')
 
source=(https://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
-sha256sums=('b4182bf8dc63d092f120a51fcae0eb54b9bd4aa4f8486f47e5a65a108322b615')
+sha256sums=('100781a18070762e8f34c1d450e767586576753d567f76a8c32818284f511428')
 
 build() {
   cd "$srcdir/$pkgname-$pkgver"


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

2020-04-13 Thread David Runge via arch-commits
Date: Monday, April 13, 2020 @ 16:18:35
  Author: dvzrv
Revision: 613691

upgpkg: lv2lint 0.6.0-1: Upgrading to 0.6.0.

Moving all sodeps to package() and adding their respective packages to 
makedepends.

Modified:
  lv2lint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-04-13 16:13:23 UTC (rev 613690)
+++ PKGBUILD2020-04-13 16:18:35 UTC (rev 613691)
@@ -1,16 +1,16 @@
 # Maintainer: David Runge 
 
 pkgname=lv2lint
-pkgver=0.4.0
+pkgver=0.6.0
 pkgrel=1
 pkgdesc="Check whether a given LV2 plugin is up to the specification"
 arch=('x86_64')
 url="https://open-music-kontrollers.ch/lv2/lv2lint/;
 license=('Artistic2.0')
-depends=('glibc' 'libcurl.so' 'libelf' 'liblilv-0.so')
-makedepends=('lv2' 'meson')
+depends=('glibc' 'libelf')
+makedepends=('curl' 'lilv' 'lv2' 'meson')
 
source=("https://git.open-music-kontrollers.ch/lv2/${pkgname}/snapshot/${pkgname}-${pkgver}.tar.xz;)
-sha512sums=('a3df72ae7bca0471ae3fd08b721f96e482bd6b9fc55688ffe332889e9c4205a404aa91b1898181ed4fd56116588eef93a0b2196d6b56c8fbf30b092716e2a7f9')
+sha512sums=('df8e53b55ff88f088ad8290be765fc33fded72359541e9f5342e7282445d3f310c0f94694450d3d42ad26afd34ae39004b5db33c85bd6bfc50248329082a639e')
 
 build() {
   cd "$pkgname-$pkgver"
@@ -27,6 +27,7 @@
 }
 
 package() {
+  depends+=('libcurl.so' 'liblilv-0.so')
   cd "$pkgname-$pkgver"
   DESTDIR="$pkgdir/" ninja -C build install
   install -vDm 644 {ChangeLog,README.md,TODO} \


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

2020-04-13 Thread Levente Polyak via arch-commits
Date: Monday, April 13, 2020 @ 12:50:44
  Author: anthraxx
Revision: 613636

archrelease: copy trunk to community-x86_64

Added:
  alicloud-vault/repos/community-x86_64/PKGBUILD
(from rev 613635, alicloud-vault/trunk/PKGBUILD)
Deleted:
  alicloud-vault/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-04-13 12:50:39 UTC (rev 613635)
+++ PKGBUILD2020-04-13 12:50:44 UTC (rev 613636)
@@ -1,38 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Andreas 'Segaja' Schleifer 
-
-pkgname=alicloud-vault
-pkgver=1.2.0
-pkgrel=1
-pkgdesc='Vault for securely storing and accessing Alibaba Cloud credentials in 
development environments'
-url='https://github.com/arafato/alicloud-vault'
-arch=('x86_64')
-license=('MIT')
-depends=('glibc')
-makedepends=('go-pie')
-source=(${url}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('865e7cb1e61d97bef8b0239e4528f4faceed005904805fa015c1a8952764dd4f43798a700f9cda3972a3a3b7fc4334527ddb80089f20a0312ac040ae1c08f440')
-b2sums=('09e0c7febd26ddc8c453c489a017ebb77541f380dfd7f3742718e03710b08ea5ca9f0c6be710ea8023162f9d4ef2473f3308a1de80af9a36feaf0be8c0fed776')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  go build \
--trimpath \
--ldflags="-extldflags ${LDFLAGS} -X main.Version=${pkgver} -s -w" \
--o "./${pkgname}" .
-  go clean --modcache
-}
-
-check() {
-  cd ${pkgname}-${pkgver}
-  go test ./...
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  install -Dm 755 ${pkgname} -t "${pkgdir}/usr/bin"
-  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: alicloud-vault/repos/community-x86_64/PKGBUILD (from rev 613635, 
alicloud-vault/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-04-13 12:50:44 UTC (rev 613636)
@@ -0,0 +1,40 @@
+# Maintainer: Levente Polyak 
+# Contributor: Andreas 'Segaja' Schleifer 
+
+pkgname=alicloud-vault
+pkgver=1.2.0
+pkgrel=2
+pkgdesc='Vault for securely storing and accessing Alibaba Cloud credentials in 
development environments'
+url='https://github.com/arafato/alicloud-vault'
+arch=('x86_64')
+license=('MIT')
+depends=('glibc')
+makedepends=('go')
+source=(${url}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('865e7cb1e61d97bef8b0239e4528f4faceed005904805fa015c1a8952764dd4f43798a700f9cda3972a3a3b7fc4334527ddb80089f20a0312ac040ae1c08f440')
+b2sums=('09e0c7febd26ddc8c453c489a017ebb77541f380dfd7f3742718e03710b08ea5ca9f0c6be710ea8023162f9d4ef2473f3308a1de80af9a36feaf0be8c0fed776')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  export GO11MODULE=on
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export GOFLAGS="-buildmode=pie -trimpath"
+  go build -ldflags="-X main.Version=${pkgver}"
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  go test ./...
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  install -Dm 755 ${pkgname} -t "${pkgdir}/usr/bin"
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:


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

2020-04-13 Thread Levente Polyak via arch-commits
Date: Monday, April 13, 2020 @ 12:50:39
  Author: anthraxx
Revision: 613635

upgpkg: alicloud-vault 1.2.0-2: respect distro flags

Modified:
  alicloud-vault/trunk/PKGBUILD

--+
 PKGBUILD |   16 +---
 1 file changed, 9 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-04-13 12:06:59 UTC (rev 613634)
+++ PKGBUILD2020-04-13 12:50:39 UTC (rev 613635)
@@ -3,13 +3,13 @@
 
 pkgname=alicloud-vault
 pkgver=1.2.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Vault for securely storing and accessing Alibaba Cloud credentials in 
development environments'
 url='https://github.com/arafato/alicloud-vault'
 arch=('x86_64')
 license=('MIT')
 depends=('glibc')
-makedepends=('go-pie')
+makedepends=('go')
 source=(${url}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
 
sha512sums=('865e7cb1e61d97bef8b0239e4528f4faceed005904805fa015c1a8952764dd4f43798a700f9cda3972a3a3b7fc4334527ddb80089f20a0312ac040ae1c08f440')
 
b2sums=('09e0c7febd26ddc8c453c489a017ebb77541f380dfd7f3742718e03710b08ea5ca9f0c6be710ea8023162f9d4ef2473f3308a1de80af9a36feaf0be8c0fed776')
@@ -16,11 +16,13 @@
 
 build() {
   cd ${pkgname}-${pkgver}
-  go build \
--trimpath \
--ldflags="-extldflags ${LDFLAGS} -X main.Version=${pkgver} -s -w" \
--o "./${pkgname}" .
-  go clean --modcache
+  export GO11MODULE=on
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export GOFLAGS="-buildmode=pie -trimpath"
+  go build -ldflags="-X main.Version=${pkgver}"
 }
 
 check() {


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

2020-04-13 Thread Jan Steffens via arch-commits
Date: Monday, April 13, 2020 @ 13:13:26
  Author: heftig
Revision: 613641

8.048.02-3: linux-lts 5.4.32-1

Modified:
  r8168-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-04-13 13:13:20 UTC (rev 613640)
+++ PKGBUILD2020-04-13 13:13:26 UTC (rev 613641)
@@ -2,7 +2,7 @@
 
 pkgname=r8168-lts
 pkgver=8.048.02
-pkgrel=2
+pkgrel=3
 pkgdesc="A kernel module for Realtek 8168 network cards for linux-lts"
 url="http://www.realtek.com.tw;
 license=("GPL")


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

2020-04-13 Thread Jan Steffens via arch-commits
Date: Monday, April 13, 2020 @ 13:13:00
  Author: heftig
Revision: 380267

5.4.32-1

Modified:
  linux-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-04-13 12:20:27 UTC (rev 380266)
+++ PKGBUILD2020-04-13 13:13:00 UTC (rev 380267)
@@ -1,7 +1,7 @@
 # Maintainer: Andreas Radke 
 
 pkgbase=linux-lts
-pkgver=5.4.31
+pkgver=5.4.32
 pkgrel=1
 pkgdesc='LTS Linux'
 url="https://www.kernel.org/;
@@ -24,7 +24,7 @@
   '647F28654894E3BD457199BE38DBBDC86092693E'  # Greg Kroah-Hartman
 )
 # https://www.kernel.org/pub/linux/kernel/v5.x/sha256sums.asc
-sha256sums=('a11083f8f809887f6a0f8d4467532385b99418f17998fe6e837807491c276eeb'
+sha256sums=('192d99fab7a47a537493b6d7eddb52892b98f8ada655c0bbb419b360a995f2b3'
 'SKIP'
 '0c318ec33c82b4ea41117b4d0ab464775e13dc6e8b20aea6c655eb4887eafa0e'
 'a13581d3c6dc595206e4fe7fcf6b542e7a1bdbe96101f0f010fc5be49f99baf2'


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

2020-04-13 Thread Jan Steffens via arch-commits
Date: Monday, April 13, 2020 @ 13:13:20
  Author: heftig
Revision: 613640

1.1.0-135: linux-lts 5.4.32-1

Modified:
  acpi_call-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-04-13 13:13:19 UTC (rev 613639)
+++ PKGBUILD2020-04-13 13:13:20 UTC (rev 613640)
@@ -4,7 +4,7 @@
 
 pkgname=acpi_call-lts
 pkgver=1.1.0
-pkgrel=134
+pkgrel=135
 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-04-13 Thread Jan Steffens via arch-commits
Date: Monday, April 13, 2020 @ 13:13:17
  Author: heftig
Revision: 380269

440.82-3: linux-lts 5.4.32-1

Modified:
  nvidia-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-04-13 13:13:06 UTC (rev 380268)
+++ PKGBUILD2020-04-13 13:13:17 UTC (rev 380269)
@@ -3,7 +3,7 @@
 
 pkgname=nvidia-lts
 pkgver=440.82
-pkgrel=2
+pkgrel=3
 epoch=1
 pkgdesc="NVIDIA drivers for linux-lts"
 arch=('x86_64')


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

2020-04-13 Thread Jan Steffens via arch-commits
Date: Monday, April 13, 2020 @ 13:13:27
  Author: heftig
Revision: 380270

1.0.20200401-4: linux-lts 5.4.32-1

Modified:
  wireguard-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-04-13 13:13:17 UTC (rev 380269)
+++ PKGBUILD2020-04-13 13:13:27 UTC (rev 380270)
@@ -2,7 +2,7 @@
 
 pkgname=wireguard-lts
 pkgver=1.0.20200401
-pkgrel=3
+pkgrel=4
 pkgdesc='Wireguard module for LTS Kernel'
 url='https://www.wireguard.com/'
 arch=('x86_64')


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

2020-04-13 Thread Jan Steffens via arch-commits
Date: Monday, April 13, 2020 @ 13:13:06
  Author: heftig
Revision: 380268

5.6.4.zen1-1

Modified:
  linux-zen/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-04-13 13:13:00 UTC (rev 380267)
+++ PKGBUILD2020-04-13 13:13:06 UTC (rev 380268)
@@ -1,7 +1,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgbase=linux-zen
-pkgver=5.6.3.zen1
+pkgver=5.6.4.zen1
 pkgrel=1
 pkgdesc='Linux ZEN'
 _srctag=v${pkgver%.*}-${pkgver##*.}


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

2020-04-13 Thread Jan Steffens via arch-commits
Date: Monday, April 13, 2020 @ 13:13:19
  Author: heftig
Revision: 613639

0.43-54: linux-lts 5.4.32-1

Modified:
  tp_smapi-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-04-13 12:52:42 UTC (rev 613638)
+++ PKGBUILD2020-04-13 13:13:19 UTC (rev 613639)
@@ -9,7 +9,7 @@
 
 pkgname=tp_smapi-lts
 pkgver=0.43
-pkgrel=53
+pkgrel=54
 pkgdesc="Modules for ThinkPad's SMAPI functionality"
 arch=('x86_64')
 url='https://github.com/evgeni/tp_smapi'


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

2020-04-13 Thread Konstantin Gizdov via arch-commits
Date: Monday, April 13, 2020 @ 13:56:34
  Author: kgizdov
Revision: 613665

upgpkg: bazel 3.0.0-1

Modified:
  bazel/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-04-13 13:21:52 UTC (rev 613664)
+++ PKGBUILD2020-04-13 13:56:34 UTC (rev 613665)
@@ -4,8 +4,8 @@
 # Contributor: Simon Legner 
 
 pkgname=bazel
-pkgver=2.2.0
-pkgrel=2
+pkgver=3.0.0
+pkgrel=1
 pkgdesc='Correct, reproducible, and fast builds for everyone'
 arch=('x86_64')
 license=('Apache')
@@ -15,7 +15,7 @@
 options=('!distcc' '!strip')
 
source=("https://github.com/bazelbuild/bazel/releases/download/${pkgver}/bazel-${pkgver}-dist.zip;
 
"https://github.com/bazelbuild/bazel/releases/download/${pkgver}/bazel-${pkgver}-dist.zip.sig;)
-sha512sums=('67011c3a045c0fd74cdcb98eef1c3ead6902a3bd65a629fe49911f9dbb4c39508bd91eb63c1fae68284136ad4994afb42a01c7f10983614e432f8be22a1c566e'
+sha512sums=('9947011db2719fc7d6abc48ad82abc06db9145ae36b2077d003cfb001a6d940e583c91e680a4c687f96cbdd1ec141bb24f598a85df361be0190b7b4d7a15ee3f'
 'SKIP')
 validpgpkeys=('71A1D0EFCFEB6281FD0437C93D5919B448457EE0')
 


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

2020-04-13 Thread Bruno Pagani via arch-commits
Date: Monday, April 13, 2020 @ 14:37:27
  Author: archange
Revision: 613667

netcdf 4.7.4 rebuild

Modified:
  python-netcdf4-openmpi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-04-13 13:56:41 UTC (rev 613666)
+++ PKGBUILD2020-04-13 14:37:27 UTC (rev 613667)
@@ -4,7 +4,7 @@
 _mpi=openmpi
 pkgname=python-${_pkg,,}-${_mpi}
 pkgver=1.5.3
-pkgrel=3
+pkgrel=4
 pkgdesc="Python/NumPy interface to the netCDF C library (${_mpi} version)"
 arch=(x86_64)
 url="https://unidata.github.io/${_pkg,,}-python;
@@ -13,7 +13,7 @@
 makedepends=(cython python-setuptools)
 conflicts=(python-netcdf4)
 provides=(python-netcdf4)
-source=(https://files.pythonhosted.org/packages/source/${_pkg}/${_pkg}/${_pkg}-${pkgver}.tar.gz)
+source=(https://files.pythonhosted.org/packages/source/${_pkg::1}/${_pkg}/${_pkg}-${pkgver}.tar.gz)
 sha256sums=('2a3ca855848f4bbf07fac366da77a681fcead18c0a8813d91d46302f562dc3be')
 
 build() {
@@ -28,7 +28,7 @@
 
 package() {
 cd ${_pkg}-${pkgver}
-USE_NCCONFIG=1 python setup.py install --root="${pkgdir}" --skip-build 
--optimize=2
+USE_NCCONFIG=1 python setup.py install --prefix=/usr --root="${pkgdir}" 
--skip-build --optimize=2
 
 install -Dm644 docs/netCDF4/* -t 
"${pkgdir}"/usr/share/doc/${pkgname}/docs/netCDF4
 install -Dm644 COPYING -t "${pkgdir}"/usr/share/licenses/${pkgname}


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

2020-04-13 Thread Bruno Pagani via arch-commits
Date: Monday, April 13, 2020 @ 14:37:32
  Author: archange
Revision: 613668

archrelease: copy trunk to community-staging-x86_64

Added:
  python-netcdf4-openmpi/repos/community-staging-x86_64/
  python-netcdf4-openmpi/repos/community-staging-x86_64/PKGBUILD
(from rev 613667, python-netcdf4-openmpi/trunk/PKGBUILD)

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

Copied: python-netcdf4-openmpi/repos/community-staging-x86_64/PKGBUILD (from 
rev 613667, python-netcdf4-openmpi/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-04-13 14:37:32 UTC (rev 613668)
@@ -0,0 +1,35 @@
+# Maintainer: Bruno Pagani 
+
+_pkg=netCDF4
+_mpi=openmpi
+pkgname=python-${_pkg,,}-${_mpi}
+pkgver=1.5.3
+pkgrel=4
+pkgdesc="Python/NumPy interface to the netCDF C library (${_mpi} version)"
+arch=(x86_64)
+url="https://unidata.github.io/${_pkg,,}-python;
+license=(MIT)
+depends=(python-numpy python-cftime python-mpi4py "netcdf-${_mpi}")
+makedepends=(cython python-setuptools)
+conflicts=(python-netcdf4)
+provides=(python-netcdf4)
+source=(https://files.pythonhosted.org/packages/source/${_pkg::1}/${_pkg}/${_pkg}-${pkgver}.tar.gz)
+sha256sums=('2a3ca855848f4bbf07fac366da77a681fcead18c0a8813d91d46302f562dc3be')
+
+build() {
+cd ${_pkg}-${pkgver}
+USE_NCCONFIG=1 python setup.py build
+}
+
+check() {
+cd ${_pkg}-${pkgver}/test
+PYTHONPATH="../build/lib.linux-${CARCH}-3.8" python -B ./run_all.py
+}
+
+package() {
+cd ${_pkg}-${pkgver}
+USE_NCCONFIG=1 python setup.py install --prefix=/usr --root="${pkgdir}" 
--skip-build --optimize=2
+
+install -Dm644 docs/netCDF4/* -t 
"${pkgdir}"/usr/share/doc/${pkgname}/docs/netCDF4
+install -Dm644 COPYING -t "${pkgdir}"/usr/share/licenses/${pkgname}
+}


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

2020-04-13 Thread Filipe LaĂ­ns via arch-commits
Date: Monday, April 13, 2020 @ 15:47:40
  Author: ffy00
Revision: 613680

archrelease: copy trunk to community-any

Added:
  lutris/repos/community-any/PKGBUILD
(from rev 613679, lutris/trunk/PKGBUILD)
  lutris/repos/community-any/sort_new_with_model_fix.patch
(from rev 613679, lutris/trunk/sort_new_with_model_fix.patch)
Deleted:
  lutris/repos/community-any/PKGBUILD
  lutris/repos/community-any/sort_new_with_model_fix.patch

---+
 PKGBUILD  |   84 
 sort_new_with_model_fix.patch |   52 
 2 files changed, 69 insertions(+), 67 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-04-13 15:47:34 UTC (rev 613679)
+++ PKGBUILD2020-04-13 15:47:40 UTC (rev 613680)
@@ -1,41 +0,0 @@
-# Maintainer: Filipe LaĂ­ns (FFY00) 
-# Contributor: Frederik “Freso” S. Olesen 
-# Contributor: Maxime Gauduin 
-
-pkgname=lutris
-pkgver=0.5.5
-pkgrel=2
-pkgdesc='Open Gaming Platform'
-arch=('any')
-url='https://lutris.net'
-license=('GPL3')
-depends=('python-gobject' 'python-yaml' 'python-evdev' 'gtk3' 'glib2' 'psmisc' 
'cabextract' 'unzip' 'p7zip' 'curl' 'xorg-xrandr'
- 'python-pillow' 'python-requests' 'gnome-desktop' 'webkit2gtk' 
'mesa-demos' 'python-dbus')
-makedepends=('python-setuptools')
-checkdepends=('xorg-server-xvfb' 'python-nose-cover3' 'wine' 'xterm')
-optdepends=('wine: Windows support'
-'vulkan-icd-loader: Vulkan support'
-'lib32-vulkan-icd-loader: Vulkan support'
-'gvfs: GVFS backend')
-makedepends=('python-setuptools')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/lutris/lutris/archive/v$pkgver.tar.gz;)
-sha512sums=('d63b9c79f55238d01b6a8c8fe62a0c70d7334c023a51e92d1c99a91cfc9336d3d071d13394c49d0a26bc04549ab7b7122aa8f133da00ed5aa8ae3a7bcc63848f')
-
-build() {
-  cd $pkgname-$pkgver
-
-  python setup.py build
-}
-
-check() {
-  cd $pkgname-$pkgver
-
-  xvfb-run nosetests --cover-erase --with-xunit --xunit-file=nosetests.xml 
--with-coverage --cover-package=lutris --cover-xml-file=coverage.xml
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}
-

Copied: lutris/repos/community-any/PKGBUILD (from rev 613679, 
lutris/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-04-13 15:47:40 UTC (rev 613680)
@@ -0,0 +1,43 @@
+# Maintainer: Filipe LaĂ­ns (FFY00) 
+# Contributor: Frederik “Freso” S. Olesen 
+# Contributor: Maxime Gauduin 
+
+pkgname=lutris
+pkgver=0.5.5
+pkgrel=3
+pkgdesc='Open Gaming Platform'
+arch=('any')
+url='https://lutris.net'
+license=('GPL3')
+depends=('python-gobject' 'python-yaml' 'python-evdev' 'gtk3' 'glib2' 'psmisc' 
'cabextract' 'unzip' 'p7zip' 'curl' 'xorg-xrandr'
+ 'python-pillow' 'python-requests' 'gnome-desktop' 'webkit2gtk' 
'mesa-demos' 'python-dbus')
+makedepends=('python-setuptools')
+checkdepends=('xorg-server-xvfb' 'python-nose-cover3' 'wine' 'xterm')
+optdepends=('wine: Windows support'
+'vulkan-icd-loader: Vulkan support'
+'lib32-vulkan-icd-loader: Vulkan support'
+'vkd3d: Vulkan 3D support'
+'lib32-vkd3d: Vulkan 3D support'
+'gvfs: GVFS backend')
+makedepends=('python-setuptools')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/lutris/lutris/archive/v$pkgver.tar.gz;)
+sha512sums=('d63b9c79f55238d01b6a8c8fe62a0c70d7334c023a51e92d1c99a91cfc9336d3d071d13394c49d0a26bc04549ab7b7122aa8f133da00ed5aa8ae3a7bcc63848f')
+
+build() {
+  cd $pkgname-$pkgver
+
+  python setup.py build
+}
+
+check() {
+  cd $pkgname-$pkgver
+
+  xvfb-run nosetests --cover-erase --with-xunit --xunit-file=nosetests.xml 
--with-coverage --cover-package=lutris --cover-xml-file=coverage.xml
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}
+

Deleted: sort_new_with_model_fix.patch
===
--- sort_new_with_model_fix.patch   2020-04-13 15:47:34 UTC (rev 613679)
+++ sort_new_with_model_fix.patch   2020-04-13 15:47:40 UTC (rev 613680)
@@ -1,26 +0,0 @@
-From 12a458db3c590c3f1972594e091a24cb4d65b610 Mon Sep 17 00:00:00 2001
-From: Mathieu Comandon 
-Date: Wed, 1 Jan 2020 12:47:55 -0800
-Subject: [PATCH] Support both sort_new_with_model and new_with_model
-

- lutris/gui/views/store.py | 6 +-
- 1 file changed, 5 insertions(+), 1 deletion(-)
-
-diff --git a/lutris/gui/views/store.py b/lutris/gui/views/store.py
-index 9e843e9e4..8fe5decf5 100644
 a/lutris/gui/views/store.py
-+++ b/lutris/gui/views/store.py
-@@ -140,7 +140,11 @@ def __init__(
- self.prevent_sort_update = False  # prevent recursion with signals
- self.modelfilter = self.store.filter_new()
- 

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

2020-04-13 Thread Antonio Rojas via arch-commits
Date: Monday, April 13, 2020 @ 16:00:50
  Author: arojas
Revision: 613685

archrelease: copy trunk to community-testing-x86_64

Added:
  zn_poly/repos/community-testing-x86_64/
  zn_poly/repos/community-testing-x86_64/PKGBUILD
(from rev 613684, zn_poly/trunk/PKGBUILD)

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

Copied: zn_poly/repos/community-testing-x86_64/PKGBUILD (from rev 613684, 
zn_poly/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-04-13 16:00:50 UTC (rev 613685)
@@ -0,0 +1,29 @@
+# Maintainer: Antonio Rojas 
+# Contributor: RĂ©my Oudompheng 
+
+pkgname=zn_poly
+pkgver=0.9.2
+pkgrel=2
+pkgdesc="Polynomial arithmetic over Z/nZ"
+arch=(x86_64)
+url="https://gitlab.com/sagemath/zn_poly/;
+license=(GPL)
+depends=(gmp)
+makedepends=(python)
+source=("https://gitlab.com/sagemath/zn_poly/-/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
+sha256sums=('6b4bb9f931d7ccc4cd5727faad87fbc3eed2e6a91cbd7f7c32138f6cfde39c6b')
+
+build() {
+  cd $pkgname-$pkgver
+  python makemakefile.py --prefix=/usr --cflags="$CFLAGS -fPIC" 
--cxxflags="$CXXFLAGS" --ldflags="$LDFLAGS" > makefile
+  make
+  make libzn_poly.so
+}
+
+package() {
+  cd $pkgname-$pkgver
+  python makemakefile.py --prefix="$pkgdir"/usr > makefile
+  make install
+# Install shared library
+  cp -P libzn_poly*.so* "$pkgdir"/usr/lib
+}


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

2020-04-13 Thread Filipe LaĂ­ns via arch-commits
Date: Monday, April 13, 2020 @ 16:00:55
  Author: ffy00
Revision: 613686

upgpkg: tribler 7.4.4-4 (add missing vlc dependency)

Modified:
  tribler/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-04-13 16:00:50 UTC (rev 613685)
+++ PKGBUILD2020-04-13 16:00:55 UTC (rev 613686)
@@ -2,7 +2,7 @@
 
 pkgname=tribler
 pkgver=7.4.4
-pkgrel=2
+pkgrel=4
 pkgdesc='Privacy enhanced BitTorrent client with P2P content discovery'
 url='https://www.tribler.org'
 arch=('any')
@@ -11,7 +11,7 @@
  'python-cryptography' 'python-libnacl' 'python-pony' 'python-lz4'
  'python-psutil' 'python-networkx' 'python-pyqtgraph' 'python-chardet'
  'python-cherrypy' 'python-configobj' 'python-netifaces' 
'python-bitcoinlib'
- 'python-twisted' 'python-pyopenssl')
+ 'python-twisted' 'python-pyopenssl' 'python-pyasn1' 'vlc')
 makedepends=('python-setuptools' 'git')
 #checkdepends=('python-pytest-runner')
 
source=("https://github.com/Tribler/tribler/releases/download/v$pkgver/Tribler-v$pkgver.tar.xz;)


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

2020-04-13 Thread Filipe LaĂ­ns via arch-commits
Date: Monday, April 13, 2020 @ 16:01:07
  Author: ffy00
Revision: 613687

archrelease: copy trunk to community-any

Added:
  tribler/repos/community-any/PKGBUILD
(from rev 613686, tribler/trunk/PKGBUILD)
Deleted:
  tribler/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-04-13 16:00:55 UTC (rev 613686)
+++ PKGBUILD2020-04-13 16:01:07 UTC (rev 613687)
@@ -1,76 +0,0 @@
-# Maintainer: Filipe LaĂ­ns (FFY00) 
-
-pkgname=tribler
-pkgver=7.4.4
-pkgrel=2
-pkgdesc='Privacy enhanced BitTorrent client with P2P content discovery'
-url='https://www.tribler.org'
-arch=('any')
-license=('LGPL3')
-depends=('python-pyqt5' 'python-aiohttp' 'python-aiohttp-apispec' 
'libtorrent-rasterbar'
- 'python-cryptography' 'python-libnacl' 'python-pony' 'python-lz4'
- 'python-psutil' 'python-networkx' 'python-pyqtgraph' 'python-chardet'
- 'python-cherrypy' 'python-configobj' 'python-netifaces' 
'python-bitcoinlib'
- 'python-twisted' 'python-pyopenssl')
-makedepends=('python-setuptools' 'git')
-#checkdepends=('python-pytest-runner')
-source=("https://github.com/Tribler/tribler/releases/download/v$pkgver/Tribler-v$pkgver.tar.xz;)
-sha512sums=('931dff82bb7f83de8d5b63ab8a712cf371a7361a75e8bbb7c490d8b56aa55d1586586ae6e14f28c3c8ad5daf938eb2bbc05b67f74bcc9a3a23e38f8fc909d722')
-
-prepare() {
-  cd $pkgname
-
-  # Fix tribler path
-  sed -i 's|/opt/tribler|/usr/share/tribler|g' 
systemd/anontunnel_helper@.service
-  sed -i 's|/opt/tribler|/usr/share/tribler|g' systemd/tribler.service
-
-  # Fix version info
-  sed -e "s|version_id =.*|version_id = \"${pkgver%_*}\"|g" \
-  -e "s|build_date =.*|build_date = \"$SOURCE_DATE_EPOCH\"|g" \
--i Tribler/Core/version.py
-}
-
-build () {
-  cd $pkgname
-
-  python setup.py build
-}
-
-#check() {
-#  cd $pkgname
-#
-#  python setup.py test
-#}
-
-package() {
-  cd $pkgname
-
-  # Install python modules
-  python setup.py install --root="$pkgdir" --optimize=1
-
-  # Install binary files/assets
-  install -dm 755 "$pkgdir"/usr/{bin,share/tribler}
-  cp -dr --no-preserve=ownership Tribler "$pkgdir"/usr/share/tribler
-  cp -dr --no-preserve=ownership TriblerGUI "$pkgdir"/usr/share/tribler
-  ln -s Tribler/Core/CacheDB/schema_sdb_v*.sql 
"$pkgdir"/usr/share/tribler/Tribler
-
-  install -dm 755 "$pkgdir"/usr/share/{applications,pixmaps}
-  install -Dm 644 Tribler/Main/Build/Ubuntu/tribler.desktop 
"$pkgdir"/usr/share/applications
-  install -Dm 644 Tribler/Main/Build/Ubuntu/tribler.xpm 
"$pkgdir"/usr/share/pixmaps
-  install -Dm 644 Tribler/Main/Build/Ubuntu/tribler_big.xpm 
"$pkgdir"/usr/share/pixmaps
-  install -Dm 755 debian/bin/tribler "$pkgdir"/usr/bin
-  install -Dm 644 logger.conf "$pkgdir"/usr/share/tribler/
-  install -Dm 644 run_tribler.py "$pkgdir"/usr/share/tribler/
-  install -Dm 644 check_os.py "$pkgdir"/usr/share/tribler/
-
-  cp -dr --no-preserve=ownership twisted "$pkgdir"/usr/share/tribler
-
-  # Remove test folders
-  rm -rf "$pkgdir"/usr/lib/python*/site-packages/Tribler/Test
-  rm -rf "$pkgdir"/usr/share/tribler/Tribler/Test
-
-  # Install systemd files
-  install -Dm 644 systemd/anontunnel_helper@.service 
"$pkgdir"/usr/lib/systemd/system/anontunnel_helper@.service
-  install -Dm 644 systemd/tribler.service 
"$pkgdir"/usr/lib/systemd/system/tribler.service
-}
-

Copied: tribler/repos/community-any/PKGBUILD (from rev 613686, 
tribler/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-04-13 16:01:07 UTC (rev 613687)
@@ -0,0 +1,76 @@
+# Maintainer: Filipe LaĂ­ns (FFY00) 
+
+pkgname=tribler
+pkgver=7.4.4
+pkgrel=4
+pkgdesc='Privacy enhanced BitTorrent client with P2P content discovery'
+url='https://www.tribler.org'
+arch=('any')
+license=('LGPL3')
+depends=('python-pyqt5' 'python-aiohttp' 'python-aiohttp-apispec' 
'libtorrent-rasterbar'
+ 'python-cryptography' 'python-libnacl' 'python-pony' 'python-lz4'
+ 'python-psutil' 'python-networkx' 'python-pyqtgraph' 'python-chardet'
+ 'python-cherrypy' 'python-configobj' 'python-netifaces' 
'python-bitcoinlib'
+ 'python-twisted' 'python-pyopenssl' 'python-pyasn1' 'vlc')
+makedepends=('python-setuptools' 'git')
+#checkdepends=('python-pytest-runner')
+source=("https://github.com/Tribler/tribler/releases/download/v$pkgver/Tribler-v$pkgver.tar.xz;)
+sha512sums=('931dff82bb7f83de8d5b63ab8a712cf371a7361a75e8bbb7c490d8b56aa55d1586586ae6e14f28c3c8ad5daf938eb2bbc05b67f74bcc9a3a23e38f8fc909d722')
+
+prepare() {
+  cd $pkgname
+
+  # Fix tribler path
+  sed -i 's|/opt/tribler|/usr/share/tribler|g' 
systemd/anontunnel_helper@.service
+  sed -i 's|/opt/tribler|/usr/share/tribler|g' systemd/tribler.service
+
+  # Fix version info
+  sed -e 

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

2020-04-13 Thread Filipe LaĂ­ns via arch-commits
Date: Monday, April 13, 2020 @ 15:47:34
  Author: ffy00
Revision: 613679

upgpkg: lutris 0.5.5-3 (add missing vkd3d optional dependency)

Modified:
  lutris/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-04-13 15:30:43 UTC (rev 613678)
+++ PKGBUILD2020-04-13 15:47:34 UTC (rev 613679)
@@ -4,7 +4,7 @@
 
 pkgname=lutris
 pkgver=0.5.5
-pkgrel=2
+pkgrel=3
 pkgdesc='Open Gaming Platform'
 arch=('any')
 url='https://lutris.net'
@@ -16,6 +16,8 @@
 optdepends=('wine: Windows support'
 'vulkan-icd-loader: Vulkan support'
 'lib32-vulkan-icd-loader: Vulkan support'
+'vkd3d: Vulkan 3D support'
+'lib32-vkd3d: Vulkan 3D support'
 'gvfs: GVFS backend')
 makedepends=('python-setuptools')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/lutris/lutris/archive/v$pkgver.tar.gz;)


[arch-commits] Commit in (3 files)

2020-04-13 Thread Filipe LaĂ­ns via arch-commits
Date: Monday, April 13, 2020 @ 16:13:23
  Author: ffy00
Revision: 613690

add root structure

Added:
  uutils-coreutils/
  uutils-coreutils/repos/
  uutils-coreutils/trunk/


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

2020-04-13 Thread Antonio Rojas via arch-commits
Date: Monday, April 13, 2020 @ 16:13:18
  Author: arojas
Revision: 380291

archrelease: copy trunk to extra-x86_64

Added:
  konsole/repos/extra-x86_64/PKGBUILD
(from rev 380290, konsole/trunk/PKGBUILD)
Deleted:
  konsole/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-04-13 16:12:51 UTC (rev 380290)
+++ PKGBUILD2020-04-13 16:13:18 UTC (rev 380291)
@@ -1,36 +0,0 @@
-# Maintainer: Felix Yan 
-# Maintainer: Antonio Rojas 
-# Contributor: Andrea Scarpino 
-
-pkgname=konsole
-pkgver=19.12.3
-pkgrel=1
-arch=(x86_64)
-url='https://kde.org/applications/system/konsole/'
-pkgdesc="KDE's terminal emulator"
-license=(GPL LGPL FDL)
-groups=(kde-applications kdebase)
-depends=(knotifyconfig kpty kparts kinit knewstuff)
-makedepends=(extra-cmake-modules kdoctools)
-optdepends=('keditbookmarks: to manage bookmarks')
-source=("https://download.kde.org/stable/release-service/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('0bde8eb6365c53e96489d0ceb05baa0bb0385ee865492622033164a4c4bfccdc'
-'SKIP')
-validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

-  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: konsole/repos/extra-x86_64/PKGBUILD (from rev 380290, 
konsole/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-04-13 16:13:18 UTC (rev 380291)
@@ -0,0 +1,41 @@
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=konsole
+pkgver=19.12.3
+pkgrel=2
+arch=(x86_64)
+url='https://kde.org/applications/system/konsole/'
+pkgdesc="KDE's terminal emulator"
+license=(GPL LGPL FDL)
+groups=(kde-applications kdebase)
+depends=(knotifyconfig kpty kparts kinit knewstuff)
+makedepends=(extra-cmake-modules kdoctools)
+optdepends=('keditbookmarks: to manage bookmarks')
+source=("https://download.kde.org/stable/release-service/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig}
+ 
konsole-kbookmarks-5.69.patch::"https://cgit.kde.org/konsole.git/patch/?id=6db7f8d2;)
+sha256sums=('0bde8eb6365c53e96489d0ceb05baa0bb0385ee865492622033164a4c4bfccdc'
+'SKIP'
+'bf9ab39cfec46d6caee389df6f6f55c204563e38a31601f4664b5627ed12a7c3')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

+
+prepare() {
+  mkdir -p build
+
+  cd $pkgname-$pkgver
+  patch -p1 -i ../konsole-kbookmarks-5.69.patch # Adapt to kbookmarks 5.69 
changes
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


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

2020-04-13 Thread Antonio Rojas via arch-commits
Date: Monday, April 13, 2020 @ 16:12:51
  Author: arojas
Revision: 380290

Fix shortcuts with kbookmarks 5.69 (FS#66241)

Modified:
  konsole/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-04-13 15:52:12 UTC (rev 380289)
+++ PKGBUILD2020-04-13 16:12:51 UTC (rev 380290)
@@ -4,7 +4,7 @@
 
 pkgname=konsole
 pkgver=19.12.3
-pkgrel=1
+pkgrel=2
 arch=(x86_64)
 url='https://kde.org/applications/system/konsole/'
 pkgdesc="KDE's terminal emulator"
@@ -13,14 +13,19 @@
 depends=(knotifyconfig kpty kparts kinit knewstuff)
 makedepends=(extra-cmake-modules kdoctools)
 optdepends=('keditbookmarks: to manage bookmarks')
-source=("https://download.kde.org/stable/release-service/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+source=("https://download.kde.org/stable/release-service/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig}
+ 
konsole-kbookmarks-5.69.patch::"https://cgit.kde.org/konsole.git/patch/?id=6db7f8d2;)
 sha256sums=('0bde8eb6365c53e96489d0ceb05baa0bb0385ee865492622033164a4c4bfccdc'
-'SKIP')
+'SKIP'
+'bf9ab39cfec46d6caee389df6f6f55c204563e38a31601f4664b5627ed12a7c3')
 validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

   F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

 
 prepare() {
   mkdir -p build
+
+  cd $pkgname-$pkgver
+  patch -p1 -i ../konsole-kbookmarks-5.69.patch # Adapt to kbookmarks 5.69 
changes
 }
 
 build() {


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

2020-04-13 Thread Felix Yan via arch-commits
Date: Monday, April 13, 2020 @ 16:37:47
  Author: felixonmars
Revision: 613694

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-http-streams/repos/community-staging-x86_64/
  haskell-http-streams/repos/community-staging-x86_64/PKGBUILD
(from rev 613693, haskell-http-streams/trunk/PKGBUILD)

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

Copied: haskell-http-streams/repos/community-staging-x86_64/PKGBUILD (from rev 
613693, haskell-http-streams/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-04-13 16:37:47 UTC (rev 613694)
@@ -0,0 +1,54 @@
+# Maintainer: Felix Yan 
+
+_hkgname=http-streams
+pkgname=haskell-http-streams
+pkgver=0.8.7.1
+pkgrel=79
+pkgdesc="An HTTP client using io-streams"
+url="https://github.com/afcowie/http-streams;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-attoparsec' 'haskell-base64-bytestring' 
'haskell-blaze-builder'
+ 'haskell-case-insensitive' 'haskell-io-streams' 'haskell-hsopenssl'
+ 'haskell-openssl-streams' 'haskell-unordered-containers' 
'haskell-aeson'
+ 'haskell-http-common' 'haskell-network' 'haskell-network-uri')
+makedepends=('ghc')
+checkdepends=('haskell-hunit' 'haskell-aeson-pretty' 'haskell-hspec'
+ 'haskell-hspec-expectations' 'haskell-snap-core' 
'haskell-snap-server'
+ 'haskell-system-fileio' 'haskell-system-filepath')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('6c2613cc6bcc1b54916c484834779fb3388085082df33216beb12685eb8e56c0f45b2bf24d657acc6c0295ea429c0e1947213a1235c4373cfdcf10899c93bee1')
+
+build() {
+cd $_hkgname-$pkgver
+
+if (( CHECKFUNC )); then
+_opts=('--enable-tests')
+else
+_opts=('--disable-tests')
+fi
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname "${_opts[@]}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+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 "LICENCE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENCE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENCE"
+}


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

2020-04-13 Thread Felix Yan via arch-commits
Date: Monday, April 13, 2020 @ 16:37:29
  Author: felixonmars
Revision: 613693

upgpkg: haskell-http-streams 0.8.7.1-79: rebuild pass 1, specified --nocheck

Modified:
  haskell-http-streams/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-04-13 16:18:50 UTC (rev 613692)
+++ PKGBUILD2020-04-13 16:37:29 UTC (rev 613693)
@@ -3,7 +3,7 @@
 _hkgname=http-streams
 pkgname=haskell-http-streams
 pkgver=0.8.7.1
-pkgrel=78
+pkgrel=79
 pkgdesc="An HTTP client using io-streams"
 url="https://github.com/afcowie/http-streams;
 license=('BSD')


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

2020-04-13 Thread Konstantin Gizdov via arch-commits
Date: Monday, April 13, 2020 @ 12:02:59
  Author: kgizdov
Revision: 613627

nccl rebuild

Modified:
  python-pytorch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-04-13 11:10:16 UTC (rev 613626)
+++ PKGBUILD2020-04-13 12:02:59 UTC (rev 613627)
@@ -5,7 +5,7 @@
 pkgname=("python-pytorch" "python-pytorch-opt" "python-pytorch-cuda" 
"python-pytorch-opt-cuda")
 _pkgname="pytorch"
 pkgver=1.4.1
-pkgrel=2
+pkgrel=3
 pkgdesc="Tensors and Dynamic neural networks in Python with strong GPU 
acceleration"
 arch=('x86_64')
 url="https://pytorch.org;


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

2020-04-13 Thread Andrew Crerar via arch-commits
Date: Monday, April 13, 2020 @ 15:24:34
  Author: andrewsc
Revision: 613676

archrelease: copy trunk to community-any

Added:
  firefox-developer-edition-i18n/repos/community-any/PKGBUILD
(from rev 613675, 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-04-13 15:24:07 UTC (rev 613675)
+++ PKGBUILD2020-04-13 15:24:34 UTC (rev 613676)
@@ -1,230 +0,0 @@
-# Maintainer: Andrew Crerar 
-
-pkgbase=firefox-developer-edition-i18n
-pkgver=75.0b11
-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=('a5226cb821035f38bfe5a0393d2d1a92a4d6861bca4bdbdcc0b6f73b9c4e51551f8e043347d2e53e9e2490f49e1eea956d8d52d9ef272f4aa78cbdbd6223fc21'
-
'93a6890c4e2626f2691c18321ea2aa711980fe101ecd4175658e3ffcf13b80bb6bea5b9cc1959bfa8c5eee8b56ce3844485d20d9dbe8ef76800b2d152f1a0ea9'
-
'badd2695b1c06fb0d9d69608025f7078a3c44f285093d94ec8d4df7f9ba15787ca87b52f0dfe08ef0671f451cde7cd5db9078cda829af826105e5ca6a082f2c8'
-

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

2020-04-13 Thread Andrew Crerar via arch-commits
Date: Monday, April 13, 2020 @ 15:24:07
  Author: andrewsc
Revision: 613675

upgpkg: firefox-developer-edition-i18n 76.0b4-1

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

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

Modified: PKGBUILD
===
--- PKGBUILD2020-04-13 15:17:39 UTC (rev 613674)
+++ PKGBUILD2020-04-13 15:24:07 UTC (rev 613675)
@@ -1,7 +1,7 @@
 # Maintainer: Andrew Crerar 
 
 pkgbase=firefox-developer-edition-i18n
-pkgver=75.0b11
+pkgver=76.0b4
 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=('a5226cb821035f38bfe5a0393d2d1a92a4d6861bca4bdbdcc0b6f73b9c4e51551f8e043347d2e53e9e2490f49e1eea956d8d52d9ef272f4aa78cbdbd6223fc21'
-
'93a6890c4e2626f2691c18321ea2aa711980fe101ecd4175658e3ffcf13b80bb6bea5b9cc1959bfa8c5eee8b56ce3844485d20d9dbe8ef76800b2d152f1a0ea9'
-
'badd2695b1c06fb0d9d69608025f7078a3c44f285093d94ec8d4df7f9ba15787ca87b52f0dfe08ef0671f451cde7cd5db9078cda829af826105e5ca6a082f2c8'
-
'c2590a0be1b8d2ce30949757b84e4efaac4c659eebb82b06587f4302ebd32dace8de12a50b706c7977300dbf81f8f4a42e72883e23be78e1cc47b4813eddf13c'
-
'b006dda07e294e131e88122a9f1717face7621e0784faf214064a33a83a71b2f97224f2b1944ce3850236f761df92cc7e62c66e2751dffdfea20cf5e245ea935'
-
'e7a07c697000402e763213e146e6053faa3093851f8b4d96ff49beb37f5a28362fb2d3ab3b806e52e709350d29be680f6ed4610191747b0431a563f33aecb044'
-
'76befe785fbaf04d1bb18b3c7918e0660054b4ada12656be777069bd27725157e1adc925b8330e09ce7c1c27e41709f33653e1b9e20a53ac19d5083bbbe71b3b'
-
'19e402abb737faf3f9753a195d8d3854ecf55bc52da9218a7cbfff9f64dd73b832c8662797cc2fc20cd775cbd2253451da00edb7568bf6b3b22836fed7695643'
-
'84aeffb89c48e5c11133d0d4ad08cb3f863dc8da5fb461306de8acf2c034e7daa9d28b553e67d31879f44ce0bb6ddce8a40756c0166babff4d838bcdf271889c'
-
'6509104a4f726c78867f2d8f6ab1251285ae0c097b181d3817479e22796e1e54c6dc016c9114dc125958b5a98d615cde8b966c051c8c50b0f50b4600178e2c77'
-
'0ca3b2820170b141fc5e1997212659cdf54c7fdd89e63a4a18bb2219d014962b5d87ef3c5ac79f7be1ea75d516fa70068b4fc92ff47ed3595b741d112e9c4562'
-
'fabd4429ea3233125806d3ecd50d9aee748b2fdc3d68f4f5f05ea6bfd38a7db15d34e308224a163c5ec63b7712ad451f82e1ddcfb540225831653635d25bf648'
-
'cec5fd31bd04144b9c1fe7fa2728c5623f3f2017169c9515bdd8a9262a1b3acaa7cc29482a9608be3e00e5046c5bb06e30153ea77ea4fd6c7d54807b42645e90'
-
'fad4251c2be915caa99cd0dfe0e97a1a18239e37f0d3e792b462ded697b4714e92a2f0c0169004cfb127dc230e6ad42e080b235170e1b2ba0483e1dea423ba8b'
-
'9810b0dbc614ff800308b4ae79e35553b0e0a5a126309e132842e8bf6a6a2e92ea1d10bdf05a5fa06f5c43fedf073e8a9d1ab3a0a386debc7041a067c6ed08fc'
-
'47fc1d3f8240abb17591c063861f1f274d2167bab4e8d13a60c332cfb7d7df93f41cb48d8b7feb606783f070624b069bf2e07b79227d29db14f21f7a54ed3c00'
-
'0f21f915e32fe49d9bb8744782e743b5030699c9fe3d82cbef0d4acaeff933c3ae09b1c9857d07ed9c9488792ac9e87ab4732eecfc51227b62991e9a49669a23'
-
'7f26848e3f1cf77af10a4599baf80eb4f950261ad29dba4c155ac0b294f32f89eaa562a31c630098eab2d256677a429ce0981134bf5ac24b5edbec31256b2a52'
-
'641245d309db2f0b3ffaaebfe6ad254428a464bc163318f4f86bf0ce7951b5c4e6199e71644fef4795a662fdd4f8d632fab44c616ccb4b02efa6db6e5935c868'
-
'c6089249d187ec61d5c91135249cefaaac2e6a75f9faf7599d4382944feb6bc10ed3cd1182493a6ad506548a8a402c7c4ad4f1bd8bb59a314b95a0b6576d42ae'
-
'a6bc5bca88b8f0d4d5f4aa6585b85a6f36893c238bc3d3facf6debc8484ddbdbc3377c48f18b8e8a97bf894817e747c7e551c85ac9cc0483ca2167822b281a31'
-
'0cbe9954118519d9d03d6301f842aeb3adac627d5287b9c02bec98a757a96cdee8007af657506fa34c64cbb615b1a8584d66159117cfb585667b4834f710f3e1'
-
'9dd20c5b9ff9def73ac36ae54402e1491961d82b9777dcd6606667b85bc02eb2a32f383d9a690f0352d296fee6ade4420edb10e4e23beb7d5a19df9dff8bfe5c'
-
'4e6a12d92e901b26e0bfb986483a31ac576c11a5517037d7d5ffdf1aa18480abadd3d00bd7b033c712dc7fc3982c760bb942e971736769e9860a02e331bd2795'
-
'f1fa281299dec3214ca523759a3da7118aeb85b1119e03842b4dad0783d58c6985ccb1cfefd1123d889f2a8994058f5a730691320e33994c41b879446215fe32'
-
'90a38028999bc516a8401fe42a10b04d547632b94f7c593b7df419121c1734978a0a432d60512765070515f4781537de8f3484d73a69f8bc3d81f042687cafc2'
-
'2a20227515bd045ba4ebc94ca0177c349bb990a051d81d3afbeaadd064d1d03ab3e91e1803ccd4f88a1dfa015a782d9d209ef0fc277c2331b14e4be56baab332'
-
'2e3a162fb0ba0897860bb9431695a9135e2750417e1a4245103ebeee6c4e66760d431f54db06238dd96a8baa91ee569ed616e8a8e6546fcbeca1c0ce3afdd06f'
-

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

2020-04-13 Thread Filipe LaĂ­ns via arch-commits
Date: Monday, April 13, 2020 @ 15:53:35
  Author: ffy00
Revision: 613682

archrelease: copy trunk to community-x86_64

Added:
  bladerf/repos/community-x86_64/PKGBUILD
(from rev 613681, bladerf/trunk/PKGBUILD)
Deleted:
  bladerf/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-04-13 15:53:29 UTC (rev 613681)
+++ PKGBUILD2020-04-13 15:53:35 UTC (rev 613682)
@@ -1,96 +0,0 @@
-# Maintainer: Kyle Keen 
-# Contributor: Dominik Heidler 
-
-# it looks like the release model has gotten better
-# keeping it more modular for now though
-
-pkgname=bladerf
-_libver=2.2.1
-_CLIver=1.8.0
-_FPGAver=0.11.0
-_firmver=2.3.2
-_noOScommit=0bba46e  # upstream has pinned a submodule to this
-pkgver=$_libver
-pkgrel=3
-pkgdesc="Driver, userspace, fpga & firmware for the bladeRF SDR."
-url="https://github.com/Nuand/bladeRF;
-# https://github.com/Nuand/bladeRF/tags
-arch=('x86_64')
-license=('GPL2')
-depends=('libusb')
-makedepends=('cmake' 'help2man' 'doxygen')
-#backup=("etc/bladerf.cfg")
-
-source=(
-"https://github.com/Nuand/bladeRF/archive/libbladeRF_v$_libver.tar.gz;
-"https://github.com/Nuand/bladeRF/archive/bladeRF-cli_v$_CLIver.tar.gz;
-
"noOS-$_noOScommit.tgz::https://github.com/analogdevicesinc/no-OS/archive/$_noOScommit.tar.gz;
-"https://nuand.com/fpga/v$_FPGAver/hostedx"{40,A4}".rbf;
-"https://nuand.com/fpga/v$_FPGAver/hostedx"{115,A9}".rbf;
-"https://www.nuand.com/fx3/bladeRF_fw_v$_firmver.img;)
-
-md5sums=('b579da8650a8ea549fbffd928e28585d'
- '0a7207f233a09c6322e03eb6ce3af2f6'
- '2c06ff9297d8beb0482a1b0b5e4d3128'
- '7a9b8e7f0f81af6d393132d7eb3e6e18'
- 'b23bf6088aff5cff90bdea9488a35d89'
- 'bee4542c4b020077c71ae630ef0d0fc8'
- 'a17a2859e4f28fdc3952de78aca1dabe'
- 'c823ea5aa2c25c26bbaf4ab395ac559d')
-
-# bladeRF-cli is bundled with libbladeRF
-# bladeRF-cli can use libtecla (aur)?
-
-prepare() {
-  cd "$srcdir/bladeRF-libbladeRF_v$_libver"
-  # FS#47168
-  sed -i 's|MODE.*$|TAG+="uaccess"|' host/misc/udev/*.rules.in
-
-  # todo, report warning
-  sed -i '94i add_definitions(-Wno-error=format-truncation)' 
host/CMakeLists.txt
-
-  # FS#55326
-  sed -i '44s/^else/#&/' host/misc/udev/CMakeLists.txt
-
-  # replace cli
-  rm -rf host/utilities/bladeRF-cli
-  ln -s "$srcdir/bladeRF-bladeRF-cli_v$_CLIver"/host/utilities/bladeRF-cli 
host/utilities/bladeRF-cli
-
-  # manually replace the submodules
-  # because "git submodule init/update" doesn't work with a release tarball
-  rmdir --ignore-fail-on-non-empty thirdparty/analogdevicesinc/no-OS
-  ln -s "$srcdir/no-OS-$_noOSver"* thirdparty/analogdevicesinc/no-OS
-}
-
-build() {
-  cd "$srcdir/bladeRF-libbladeRF_v$_libver"
-  mkdir -p build
-  cd build
-  CFLAGS+=" -Wno-error=stringop-truncation" cmake \
--DCMAKE_BUILD_TYPE=Release \
--DINSTALL_UDEV_RULES=ON \
--DBUILD_DOCUMENTATION=ON \
--DCMAKE_INSTALL_LIBDIR:PATH=lib \
--Dusb_LIBRARY:FILEPATH=/usr/lib/libusb-1.0.so \
--DCMAKE_INSTALL_PREFIX=/usr ../
-  make
-  # ENABLE_FX3_BUILD needs cypress toolchain
-  # really really wants to put files in /usr/lib64
-}
-
-package() {
-  cd "$srcdir/bladeRF-libbladeRF_v$_libver/build"
-  make DESTDIR="${pkgdir}" install
-  cd "$srcdir"
-  install -Dm644 "bladeRF_fw_v$_firmver.img" 
"$pkgdir/usr/share/bladerf/firmware/bladeRF_fw_v$_firmver.img"
-  install -Dm644 hostedx40.rbf "$pkgdir/usr/share/bladerf/fpga/hostedx40.rbf"
-  install -Dm644 hostedx115.rbf "$pkgdir/usr/share/bladerf/fpga/hostedx115.rbf"
-  install -Dm644 hostedxA4.rbf "$pkgdir/usr/share/bladerf/fpga/hostedxA4.rbf"
-  install -Dm644 hostedxA9.rbf "$pkgdir/usr/share/bladerf/fpga/hostedxA9.rbf"
-
-  # FS#54105
-  cd "$pkgdir/etc/udev/rules.d/"
-  mv 88-nuand-bladerf1.rules   70-nuand-bladerf1.rules
-  mv 88-nuand-bladerf2.rules   70-nuand-bladerf2.rules
-  mv 88-nuand-bootloader.rules 70-nuand-bootloader.rules
-}

Copied: bladerf/repos/community-x86_64/PKGBUILD (from rev 613681, 
bladerf/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-04-13 15:53:35 UTC (rev 613682)
@@ -0,0 +1,97 @@
+# Maintainer: Kyle Keen 
+# Contributor: Dominik Heidler 
+
+# it looks like the release model has gotten better
+# keeping it more modular for now though
+
+pkgname=bladerf
+_libver=2.2.1
+_CLIver=1.8.0
+_FPGAver=0.11.0
+_firmver=2.3.2
+_noOScommit=0bba46e  # upstream has pinned a submodule to this
+pkgver=$_libver
+pkgrel=4
+pkgdesc="Driver, userspace, fpga & firmware for the bladeRF SDR."
+url="https://github.com/Nuand/bladeRF;
+# https://github.com/Nuand/bladeRF/tags
+arch=('x86_64')
+license=('GPL2')
+depends=('libusb')
+makedepends=('cmake' 'help2man' 'doxygen')
+#backup=("etc/bladerf.cfg")
+

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

2020-04-13 Thread Filipe LaĂ­ns via arch-commits
Date: Monday, April 13, 2020 @ 15:53:29
  Author: ffy00
Revision: 613681

upgpkg: bladerf 2.2.1-4

Modified:
  bladerf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-04-13 15:47:40 UTC (rev 613680)
+++ PKGBUILD2020-04-13 15:53:29 UTC (rev 613681)
@@ -11,7 +11,7 @@
 _firmver=2.3.2
 _noOScommit=0bba46e  # upstream has pinned a submodule to this
 pkgver=$_libver
-pkgrel=3
+pkgrel=4
 pkgdesc="Driver, userspace, fpga & firmware for the bladeRF SDR."
 url="https://github.com/Nuand/bladeRF;
 # https://github.com/Nuand/bladeRF/tags
@@ -29,12 +29,12 @@
 "https://nuand.com/fpga/v$_FPGAver/hostedx"{115,A9}".rbf;
 "https://www.nuand.com/fx3/bladeRF_fw_v$_firmver.img;)
 
-md5sums=('b579da8650a8ea549fbffd928e28585d'
- '0a7207f233a09c6322e03eb6ce3af2f6'
+md5sums=('8910748f521cd6e99a42bafcd4ee5394'
+ 'c0df99d810d33f2f8f8647c89b04ac74'
  '2c06ff9297d8beb0482a1b0b5e4d3128'
- '7a9b8e7f0f81af6d393132d7eb3e6e18'
+ '4aabf1617901423569f425db93598884'
  'b23bf6088aff5cff90bdea9488a35d89'
- 'bee4542c4b020077c71ae630ef0d0fc8'
+ '33641f8a126bef1c0b7e6ba8bedda93f'
  'a17a2859e4f28fdc3952de78aca1dabe'
  'c823ea5aa2c25c26bbaf4ab395ac559d')
 
@@ -72,7 +72,8 @@
 -DBUILD_DOCUMENTATION=ON \
 -DCMAKE_INSTALL_LIBDIR:PATH=lib \
 -Dusb_LIBRARY:FILEPATH=/usr/lib/libusb-1.0.so \
--DCMAKE_INSTALL_PREFIX=/usr ../
+-DCMAKE_INSTALL_PREFIX=/usr ../ \
+-DUDEV_RULES_PATH=/usr/lib/udev/rules.d
   make
   # ENABLE_FX3_BUILD needs cypress toolchain
   # really really wants to put files in /usr/lib64
@@ -89,7 +90,7 @@
   install -Dm644 hostedxA9.rbf "$pkgdir/usr/share/bladerf/fpga/hostedxA9.rbf"
 
   # FS#54105
-  cd "$pkgdir/etc/udev/rules.d/"
+  cd "$pkgdir/usr/lib/udev/rules.d/"
   mv 88-nuand-bladerf1.rules   70-nuand-bladerf1.rules
   mv 88-nuand-bladerf2.rules   70-nuand-bladerf2.rules
   mv 88-nuand-bootloader.rules 70-nuand-bootloader.rules


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

2020-04-13 Thread Evangelos Foutras via arch-commits
Date: Monday, April 13, 2020 @ 15:52:12
  Author: foutrelis
Revision: 380289

archrelease: copy trunk to extra-x86_64

Added:
  xfwm4/repos/extra-x86_64/PKGBUILD
(from rev 380288, xfwm4/trunk/PKGBUILD)
Deleted:
  xfwm4/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-04-13 15:52:05 UTC (rev 380288)
+++ PKGBUILD2020-04-13 15:52:12 UTC (rev 380289)
@@ -1,40 +0,0 @@
-# Maintainer: Evangelos Foutras 
-# Contributor: tobias 
-
-pkgname=xfwm4
-pkgver=4.14.0
-pkgrel=1
-pkgdesc="Xfce's window manager"
-arch=('x86_64')
-url="https://www.xfce.org/;
-license=('GPL2')
-groups=('xfce4')
-depends=('libxfce4ui' 'xfconf' 'libwnck3' 'libepoxy' 'libxpresent'
- 'hicolor-icon-theme')
-makedepends=('intltool')
-source=(https://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
-sha256sums=('b4182bf8dc63d092f120a51fcae0eb54b9bd4aa4f8486f47e5a65a108322b615')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---libexecdir=/usr/lib \
---localstatedir=/var \
---disable-static \
---enable-startup-notification \
---enable-randr \
---enable-compositor \
---enable-xsync \
---disable-debug
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: xfwm4/repos/extra-x86_64/PKGBUILD (from rev 380288, 
xfwm4/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-04-13 15:52:12 UTC (rev 380289)
@@ -0,0 +1,40 @@
+# Maintainer: Evangelos Foutras 
+# Contributor: tobias 
+
+pkgname=xfwm4
+pkgver=4.14.1
+pkgrel=1
+pkgdesc="Xfce's window manager"
+arch=('x86_64')
+url="https://www.xfce.org/;
+license=('GPL2')
+groups=('xfce4')
+depends=('libxfce4ui' 'xfconf' 'libwnck3' 'libepoxy' 'libxpresent'
+ 'hicolor-icon-theme')
+makedepends=('intltool')
+source=(https://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
+sha256sums=('100781a18070762e8f34c1d450e767586576753d567f76a8c32818284f511428')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib \
+--localstatedir=/var \
+--disable-static \
+--enable-startup-notification \
+--enable-randr \
+--enable-compositor \
+--enable-xsync \
+--disable-debug
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in java-xmlgraphics-commons/trunk (PKGBUILD)

2020-04-13 Thread Filipe LaĂ­ns via arch-commits
Date: Monday, April 13, 2020 @ 16:10:21
  Author: ffy00
Revision: 613688

upgpkg: java-xmlgraphics-commons 2.4-2

Modified:
  java-xmlgraphics-commons/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-04-13 16:01:07 UTC (rev 613687)
+++ PKGBUILD2020-04-13 16:10:21 UTC (rev 613688)
@@ -5,12 +5,12 @@
 
 pkgname=java-xmlgraphics-commons
 pkgver=2.4
-pkgrel=1
+pkgrel=2
 pkgdesc='Common components between FOP and Batik'
 arch=('any')
 url='https://xmlgraphics.apache.org/commons/'
 license=('Apache')
-depends=('java-runtime')
+depends=('java-runtime>=9')
 
source=("https://www.apache.org/dist/xmlgraphics/commons/binaries/xmlgraphics-commons-$pkgver-bin.tar.gz"{,.asc})
 
sha512sums=('e8431f3a859ed26d7dd3e5eb7a0ac141176fc716c0ae28d76d2acc10d6f804eb866f289948e21efd71bf4639bd220c287593a618aa553e1621d4ef8d1b40342a'
 'SKIP')


[arch-commits] Commit in java-xmlgraphics-commons/repos/community-any (2 files)

2020-04-13 Thread Filipe LaĂ­ns via arch-commits
Date: Monday, April 13, 2020 @ 16:10:26
  Author: ffy00
Revision: 613689

archrelease: copy trunk to community-any

Added:
  java-xmlgraphics-commons/repos/community-any/PKGBUILD
(from rev 613688, java-xmlgraphics-commons/trunk/PKGBUILD)
Deleted:
  java-xmlgraphics-commons/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-04-13 16:10:21 UTC (rev 613688)
+++ PKGBUILD2020-04-13 16:10:26 UTC (rev 613689)
@@ -1,21 +0,0 @@
-# Maintainer: Filipe LaĂ­ns (FFY00) 
-# Contributor: Lukas Fleischer 
-# Contributor: Stefan Husmann 
-# Contributor: Simon Lipp 
-
-pkgname=java-xmlgraphics-commons
-pkgver=2.4
-pkgrel=1
-pkgdesc='Common components between FOP and Batik'
-arch=('any')
-url='https://xmlgraphics.apache.org/commons/'
-license=('Apache')
-depends=('java-runtime')
-source=("https://www.apache.org/dist/xmlgraphics/commons/binaries/xmlgraphics-commons-$pkgver-bin.tar.gz"{,.asc})
-sha512sums=('e8431f3a859ed26d7dd3e5eb7a0ac141176fc716c0ae28d76d2acc10d6f804eb866f289948e21efd71bf4639bd220c287593a618aa553e1621d4ef8d1b40342a'
-'SKIP')
-validpgpkeys=('5C9A30FF22B2C02F30261C305B93F1DF7CDB6DEA') # Simon Steiner
-
-package() {
-  install -Dm 644 
"$srcdir"/xmlgraphics-commons-$pkgver/build/xmlgraphics-commons-$pkgver.jar 
"$pkgdir"/usr/share/java/xmlgraphics-commons/xmlgraphics-commons.jar
-}

Copied: java-xmlgraphics-commons/repos/community-any/PKGBUILD (from rev 613688, 
java-xmlgraphics-commons/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-04-13 16:10:26 UTC (rev 613689)
@@ -0,0 +1,21 @@
+# Maintainer: Filipe LaĂ­ns (FFY00) 
+# Contributor: Lukas Fleischer 
+# Contributor: Stefan Husmann 
+# Contributor: Simon Lipp 
+
+pkgname=java-xmlgraphics-commons
+pkgver=2.4
+pkgrel=2
+pkgdesc='Common components between FOP and Batik'
+arch=('any')
+url='https://xmlgraphics.apache.org/commons/'
+license=('Apache')
+depends=('java-runtime>=9')
+source=("https://www.apache.org/dist/xmlgraphics/commons/binaries/xmlgraphics-commons-$pkgver-bin.tar.gz"{,.asc})
+sha512sums=('e8431f3a859ed26d7dd3e5eb7a0ac141176fc716c0ae28d76d2acc10d6f804eb866f289948e21efd71bf4639bd220c287593a618aa553e1621d4ef8d1b40342a'
+'SKIP')
+validpgpkeys=('5C9A30FF22B2C02F30261C305B93F1DF7CDB6DEA') # Simon Steiner
+
+package() {
+  install -Dm 644 
"$srcdir"/xmlgraphics-commons-$pkgver/build/xmlgraphics-commons-$pkgver.jar 
"$pkgdir"/usr/share/java/xmlgraphics-commons/xmlgraphics-commons.jar
+}


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

2020-04-13 Thread Morten Linderud via arch-commits
Date: Monday, April 13, 2020 @ 14:55:50
  Author: foxboron
Revision: 613669

upgpkg: bmusb 0.7.6-1

Modified:
  bmusb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-04-13 14:37:32 UTC (rev 613668)
+++ PKGBUILD2020-04-13 14:55:50 UTC (rev 613669)
@@ -1,8 +1,8 @@
 # Maintainer: Morten Linderud 
 
 pkgname=bmusb
-_commit=40e59ea593e2bcbb0f8f9e6c8e44c823d890b18a
-pkgver=0.7.5
+_commit=327dca2d848e4c4656be1bfb54a2edf2e6587a71
+pkgver=0.7.6
 pkgrel=1
 pkgdesc="a free driver for BlackMagic's Intensity Shuttle andUltraStudio SDI 
USB3 cards"
 arch=('x86_64')
@@ -10,7 +10,7 @@
 license=('GPL2')
 depends=('libusb')
 
source=("${pkgname}-${pkgver}.tar.gz::https://git.sesse.net/?p=bmusb;a=snapshot;h=${_commit};sf=tgz;)
-sha256sums=('5851150fd5c050271680fc28f55e29c7016a6189de66937835537a1606ec81e8')
+sha256sums=('1e8e5d8a5c7db103dba74325e72a18a2c60682418a16bac2b3035c6bc034bbc1')
 
 build() {
   cd "${pkgname}"-"${_commit:0:7}"


[arch-commits] Commit in inkscape/trunk (4 files)

2020-04-13 Thread Jan Steffens via arch-commits
Date: Monday, April 13, 2020 @ 14:57:39
  Author: heftig
Revision: 380280

0.92.5-1

Added:
  inkscape/trunk/PKGBUILD
(from rev 380279, inkscape/trunk/PKGBUILD.cmake)
  inkscape/trunk/python2.diff
Deleted:
  inkscape/trunk/PKGBUILD
  inkscape/trunk/PKGBUILD.cmake

+
 PKGBUILD   |  139 +--
 PKGBUILD.cmake |   61 
 python2.diff   |  123 
 3 files changed, 188 insertions(+), 135 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-04-13 14:31:11 UTC (rev 380279)
+++ PKGBUILD2020-04-13 14:57:39 UTC (rev 380280)
@@ -1,74 +0,0 @@
-# Maintainer: Gaetan Bisson 
-# Contributor: Tobias Kieslich 
-# Contributor: tobias 
-
-pkgname=inkscape
-pkgver=0.92.4
-pkgrel=15
-pkgdesc='Professional vector graphics editor'
-url='https://inkscape.org/'
-license=('GPL' 'LGPL')
-arch=('x86_64')
-depends=('gc' 'gsl' 'gtkmm' 'gtkspell' 'libmagick6' 'libxslt' 'poppler-glib'
- 'popt' 'potrace' 'ttf-dejavu' 'python2' 'libcdr'
- 'desktop-file-utils' 'hicolor-icon-theme')
-# python is needed for glib-genmarshal (at least with GLib 2.54)
-makedepends=('boost' 'intltool' 'python')
-optdepends=('gvfs: import clip art'
-'pstoedit: latex formulas'
-'python2-scour: optimized SVG output'
-'texlive-core: latex formulas'
-'python2-numpy: some extensions'
-'python2-lxml: some extensions'
-'python2-scour: some extensions')
-source=("https://media.inkscape.org/dl/resources/file/${pkgname}-${pkgver}.tar.bz2;)
-sha256sums=('57ec2da8177b36614a513e2822efd73af721e690f7ddc6bd0a5fbb1525b4515e')
-
-# NB: Some CDN nodes appear to be distributing an outdated version of this 
file.
-
-prepare() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   ./autogen.sh
-
-   sed -i 's|/usr/bin/python\>|/usr/bin/python2|g' cxxtest/*.py
-   sed -i 's|/usr/bin/env python\>|/usr/bin/env python2|g' 
share/*/{test/,}*.py
-   sed -i 's|"python" },|"python2" },|g' 
src/extension/implementation/script.cpp
-   sed -i 's|python -c|python2 -c|g' configure share/extensions/uniconv*.py
-   sed -i 's|"python"|"python2"|g' src/main.cpp
-
-   sed -i 's| abs(| std::fabs(|g' src/ui/tools/flood-tool.cpp
-   # Fix build with poppler 0.71
-sed -e 's|gTrue|true|g' -e 's|gFalse|false|g' -e 's|GBool|bool|g' -i 
src/extension/internal/pdfinput/pdf-parser.*
-   # Fix build with poppler 0.72
-sed -e 's|getCString|c_str|g' -i src/extension/internal/pdfinput/*
-   # Fix build with poppler 0.76
-sed -e 's|new Lexer(xref, obj)|obj|g' -i 
src/extension/internal/pdfinput/pdf-parser.cpp
-   # Fix build with poppler 0.82
-sed -e 's|Unicode \*u|Unicode const *u|g' -i 
src/extension/internal/pdfinput/*
-   # Fix build with poppler 0.83
-sed -e 's|(GfxPath|(const GfxPath|g' -e 's|GfxSubpath|const 
GfxSubpath|g' \
-  -e 's|new GlobalParams()|std::unique_ptr(new 
GlobalParams())|g' \
-  -e 's|new 
GlobalParams(poppler_datadir)|std::unique_ptr(new 
GlobalParams(poppler_datadir))|g' \
-  -i src/extension/internal/pdfinput/*.cpp
-}
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   export PKG_CONFIG_PATH='/usr/lib/imagemagick6/pkgconfig'
-   export FREETYPE_CONFIG="/usr/bin/pkg-config freetype2"
-
-   ./configure \
-   --prefix=/usr \
-   --with-python \
-   --with-perl \
-   --enable-lcms \
-   --enable-poppler-cairo \
-   --disable-strict-build \
-   --disable-dependency-tracking
-   make
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}" install
-}

Copied: inkscape/trunk/PKGBUILD (from rev 380279, inkscape/trunk/PKGBUILD.cmake)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-04-13 14:57:39 UTC (rev 380280)
@@ -0,0 +1,65 @@
+# Maintainer: Gaetan Bisson 
+# Contributor: Tobias Kieslich 
+# Contributor: tobias 
+
+pkgname=inkscape
+pkgver=0.92.5
+pkgrel=1
+pkgdesc='Professional vector graphics editor'
+url='https://inkscape.org/'
+license=('GPL' 'LGPL')
+arch=('x86_64')
+depends=(
+   'gc' 'gsl' 'gtkmm' 'gtkspell' 'libmagick6' 'libxslt' 'poppler-glib' 
'popt'
+   'potrace' 'ttf-dejavu' 'python2' 'libcdr' 'desktop-file-utils' 
'hicolor-icon-theme'
+)
+# python is needed for glib-genmarshal
+makedepends=('boost' 'intltool' 'python' 'cmake')
+optdepends=(
+   'gvfs: import clip art'
+   'pstoedit: latex formulas'
+   'python2-scour: optimized SVG output, some extensions'
+   'texlive-core: latex formulas'
+   'python2-numpy: some extensions'
+   'python2-lxml: some extensions'
+)
+source=(
+   

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

2020-04-13 Thread Jan Steffens via arch-commits
Date: Monday, April 13, 2020 @ 14:58:03
  Author: heftig
Revision: 380281

2.28.1-1

Modified:
  webkit2gtk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-04-13 14:57:39 UTC (rev 380280)
+++ PKGBUILD2020-04-13 14:58:03 UTC (rev 380281)
@@ -2,8 +2,8 @@
 # Contributor: Eric BĂ©langer 
 
 pkgname=webkit2gtk
-pkgver=2.28.0
-pkgrel=3
+pkgver=2.28.1
+pkgrel=1
 pkgdesc="GTK+ Web content engine library"
 arch=(x86_64)
 url="https://webkitgtk.org/;
@@ -18,7 +18,7 @@
 'gst-plugins-bad: media decoding'
 'gst-libav: nonfree media decoding')
 source=(https://webkitgtk.org/releases/webkitgtk-${pkgver}.tar.xz{,.asc})
-sha256sums=('361f3d178f62a9c112cbadfedd46106c34455c26d57a12a28fb3b09178d20e8b'
+sha256sums=('acbc26a3ed5c13f39e46875cf447a9c0541b6cfb17f9e7884323431cb327f3d8'
 'SKIP')
 validpgpkeys=('D7FCF61CF9A2DEAB31D81BD3F3D322D0EC4582C3'
   '5AA3BC334FD7E3369E7C77B291C559DBE4C9123B')


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

2020-04-13 Thread Morten Linderud via arch-commits
Date: Monday, April 13, 2020 @ 14:55:58
  Author: foxboron
Revision: 613670

archrelease: copy trunk to community-x86_64

Added:
  bmusb/repos/community-x86_64/PKGBUILD
(from rev 613669, bmusb/trunk/PKGBUILD)
Deleted:
  bmusb/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-04-13 14:55:50 UTC (rev 613669)
+++ PKGBUILD2020-04-13 14:55:58 UTC (rev 613670)
@@ -1,25 +0,0 @@
-# Maintainer: Morten Linderud 
-
-pkgname=bmusb
-_commit=40e59ea593e2bcbb0f8f9e6c8e44c823d890b18a
-pkgver=0.7.5
-pkgrel=1
-pkgdesc="a free driver for BlackMagic's Intensity Shuttle andUltraStudio SDI 
USB3 cards"
-arch=('x86_64')
-url="https://git.sesse.net/?p=bmusb;a=summary;
-license=('GPL2')
-depends=('libusb')
-source=("${pkgname}-${pkgver}.tar.gz::https://git.sesse.net/?p=bmusb;a=snapshot;h=${_commit};sf=tgz;)
-sha256sums=('5851150fd5c050271680fc28f55e29c7016a6189de66937835537a1606ec81e8')
-
-build() {
-  cd "${pkgname}"-"${_commit:0:7}"
-  make
-}
-
-package() {
-  cd "${pkgname}"-"${_commit:0:7}"
-  make DESTDIR="${pkgdir}" PREFIX="/usr" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: bmusb/repos/community-x86_64/PKGBUILD (from rev 613669, 
bmusb/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-04-13 14:55:58 UTC (rev 613670)
@@ -0,0 +1,25 @@
+# Maintainer: Morten Linderud 
+
+pkgname=bmusb
+_commit=327dca2d848e4c4656be1bfb54a2edf2e6587a71
+pkgver=0.7.6
+pkgrel=1
+pkgdesc="a free driver for BlackMagic's Intensity Shuttle andUltraStudio SDI 
USB3 cards"
+arch=('x86_64')
+url="https://git.sesse.net/?p=bmusb;a=summary;
+license=('GPL2')
+depends=('libusb')
+source=("${pkgname}-${pkgver}.tar.gz::https://git.sesse.net/?p=bmusb;a=snapshot;h=${_commit};sf=tgz;)
+sha256sums=('1e8e5d8a5c7db103dba74325e72a18a2c60682418a16bac2b3035c6bc034bbc1')
+
+build() {
+  cd "${pkgname}"-"${_commit:0:7}"
+  make
+}
+
+package() {
+  cd "${pkgname}"-"${_commit:0:7}"
+  make DESTDIR="${pkgdir}" PREFIX="/usr" install
+}
+
+# vim:set ts=2 sw=2 et:


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

2020-04-13 Thread Jan Steffens via arch-commits
Date: Monday, April 13, 2020 @ 14:58:30
  Author: heftig
Revision: 380283

archrelease: copy trunk to extra-x86_64

Added:
  webkit2gtk/repos/extra-x86_64/PKGBUILD
(from rev 380281, webkit2gtk/trunk/PKGBUILD)
Deleted:
  webkit2gtk/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |  126 ++---
 1 file changed, 63 insertions(+), 63 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-04-13 14:58:29 UTC (rev 380282)
+++ PKGBUILD2020-04-13 14:58:30 UTC (rev 380283)
@@ -1,63 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Eric BĂ©langer 
-
-pkgname=webkit2gtk
-pkgver=2.28.0
-pkgrel=3
-pkgdesc="GTK+ Web content engine library"
-arch=(x86_64)
-url="https://webkitgtk.org/;
-license=(custom)
-depends=(libxt libxslt enchant gst-plugins-base-libs libsecret libwebp 
openjpeg2
- harfbuzz-icu gtk3 libnotify hyphen woff2 libwpe wpebackend-fdo
- bubblewrap xdg-dbus-proxy)
-makedepends=(gperf gobject-introspection ruby gtk-doc cmake python geoclue
- gst-plugins-bad)
-optdepends=('geoclue: Geolocation support'
-'gst-plugins-good: media decoding'
-'gst-plugins-bad: media decoding'
-'gst-libav: nonfree media decoding')
-source=(https://webkitgtk.org/releases/webkitgtk-${pkgver}.tar.xz{,.asc})
-sha256sums=('361f3d178f62a9c112cbadfedd46106c34455c26d57a12a28fb3b09178d20e8b'
-'SKIP')
-validpgpkeys=('D7FCF61CF9A2DEAB31D81BD3F3D322D0EC4582C3'
-  '5AA3BC334FD7E3369E7C77B291C559DBE4C9123B')
-
-prepare() {
-  cd webkitgtk-$pkgver
-}
-
-build() {
-  cmake -Hwebkitgtk-$pkgver -Bbuild \
--DPORT=GTK \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_SKIP_RPATH=ON \
--DENABLE_GTKDOC=ON \
--DENABLE_MINIBROWSER=ON \
--DLIBEXEC_INSTALL_DIR=/usr/lib \
--DLIB_INSTALL_DIR=/usr/lib
-  cmake --build build
-}
-
-check() {
-  : cmake --build build --target tests
-}
-
-package() {
-  depends+=(libwpe-1.0.so libWPEBackend-fdo-1.0.so)
-  provides+=(libjavascriptcoregtk-4.0.so libwebkit2gtk-4.0.so)
-
-  DESTDIR="$pkgdir" cmake --build build --target install
-
-  cd webkitgtk-$pkgver
-  find Source -name 'COPYING*' -or -name 'LICENSE*' -print0 | sort -z |
-while IFS= read -d $'\0' -r _f; do
-  echo "### $_f ###"
-  cat "$_f"
-  echo
-done |
-install -Dm644 /dev/stdin "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# vim:set sw=2 et:

Copied: webkit2gtk/repos/extra-x86_64/PKGBUILD (from rev 380281, 
webkit2gtk/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-04-13 14:58:30 UTC (rev 380283)
@@ -0,0 +1,63 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Eric BĂ©langer 
+
+pkgname=webkit2gtk
+pkgver=2.28.1
+pkgrel=1
+pkgdesc="GTK+ Web content engine library"
+arch=(x86_64)
+url="https://webkitgtk.org/;
+license=(custom)
+depends=(libxt libxslt enchant gst-plugins-base-libs libsecret libwebp 
openjpeg2
+ harfbuzz-icu gtk3 libnotify hyphen woff2 libwpe wpebackend-fdo
+ bubblewrap xdg-dbus-proxy)
+makedepends=(gperf gobject-introspection ruby gtk-doc cmake python geoclue
+ gst-plugins-bad)
+optdepends=('geoclue: Geolocation support'
+'gst-plugins-good: media decoding'
+'gst-plugins-bad: media decoding'
+'gst-libav: nonfree media decoding')
+source=(https://webkitgtk.org/releases/webkitgtk-${pkgver}.tar.xz{,.asc})
+sha256sums=('acbc26a3ed5c13f39e46875cf447a9c0541b6cfb17f9e7884323431cb327f3d8'
+'SKIP')
+validpgpkeys=('D7FCF61CF9A2DEAB31D81BD3F3D322D0EC4582C3'
+  '5AA3BC334FD7E3369E7C77B291C559DBE4C9123B')
+
+prepare() {
+  cd webkitgtk-$pkgver
+}
+
+build() {
+  cmake -Hwebkitgtk-$pkgver -Bbuild \
+-DPORT=GTK \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_SKIP_RPATH=ON \
+-DENABLE_GTKDOC=ON \
+-DENABLE_MINIBROWSER=ON \
+-DLIBEXEC_INSTALL_DIR=/usr/lib \
+-DLIB_INSTALL_DIR=/usr/lib
+  cmake --build build
+}
+
+check() {
+  : cmake --build build --target tests
+}
+
+package() {
+  depends+=(libwpe-1.0.so libWPEBackend-fdo-1.0.so)
+  provides+=(libjavascriptcoregtk-4.0.so libwebkit2gtk-4.0.so)
+
+  DESTDIR="$pkgdir" cmake --build build --target install
+
+  cd webkitgtk-$pkgver
+  find Source -name 'COPYING*' -or -name 'LICENSE*' -print0 | sort -z |
+while IFS= read -d $'\0' -r _f; do
+  echo "### $_f ###"
+  cat "$_f"
+  echo
+done |
+install -Dm644 /dev/stdin "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set sw=2 et:


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

2020-04-13 Thread Jan Steffens via arch-commits
Date: Monday, April 13, 2020 @ 14:58:29
  Author: heftig
Revision: 380282

archrelease: copy trunk to testing-x86_64

Added:
  inkscape/repos/testing-x86_64/
  inkscape/repos/testing-x86_64/PKGBUILD
(from rev 380281, inkscape/trunk/PKGBUILD)
  inkscape/repos/testing-x86_64/python2.diff
(from rev 380281, inkscape/trunk/python2.diff)

--+
 PKGBUILD |   65 ++
 python2.diff |  123 +
 2 files changed, 188 insertions(+)

Copied: inkscape/repos/testing-x86_64/PKGBUILD (from rev 380281, 
inkscape/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-04-13 14:58:29 UTC (rev 380282)
@@ -0,0 +1,65 @@
+# Maintainer: Gaetan Bisson 
+# Contributor: Tobias Kieslich 
+# Contributor: tobias 
+
+pkgname=inkscape
+pkgver=0.92.5
+pkgrel=1
+pkgdesc='Professional vector graphics editor'
+url='https://inkscape.org/'
+license=('GPL' 'LGPL')
+arch=('x86_64')
+depends=(
+   'gc' 'gsl' 'gtkmm' 'gtkspell' 'libmagick6' 'libxslt' 'poppler-glib' 
'popt'
+   'potrace' 'ttf-dejavu' 'python2' 'libcdr' 'desktop-file-utils' 
'hicolor-icon-theme'
+)
+# python is needed for glib-genmarshal
+makedepends=('boost' 'intltool' 'python' 'cmake')
+optdepends=(
+   'gvfs: import clip art'
+   'pstoedit: latex formulas'
+   'python2-scour: optimized SVG output, some extensions'
+   'texlive-core: latex formulas'
+   'python2-numpy: some extensions'
+   'python2-lxml: some extensions'
+)
+source=(
+   
"https://media.inkscape.org/dl/resources/file/${pkgname}-${pkgver}.tar.bz2;
+   python2.diff
+)
+sha256sums=('81ee7f69e2bd64a97343d8395a4a7a7905b21b861566ed5e5d9179178d519a0b'
+'3b9697236c17ed36756f344ace23e71c1b73537fb9e394b6448b2c13fcca0cc8')
+
+# NB: Some CDN nodes appear to be distributing an outdated version of this 
file.
+
+prepare() {
+   cd ${pkgname}-${pkgver}
+
+# Fix python2 shebangs
+   sed -e '1s|python$|&2|' \
+   -i cxxtest/*.py share/*/{test/,}*.py
+
+   # Non-shebang python2 changes
+   patch -Np1 -i ../python2.diff
+}
+
+build() {
+   export PKG_CONFIG_PATH='/usr/lib/imagemagick6/pkgconfig'
+
+   cmake -H${pkgbase}-${pkgver} -Bbuild \
+   -DCMAKE_BUILD_TYPE=None \
+   -DCMAKE_INSTALL_PREFIX:PATH=/usr \
+   -DINCLUDE_INSTALL_DIR:PATH=/usr/include \
+   -DLIB_INSTALL_DIR:PATH=/usr/lib \
+   -DSYSCONF_INSTALL_DIR:PATH=/etc \
+   -DSHARE_INSTALL_PREFIX:PATH=/usr/share
+   cmake --build build
+}
+
+package() {
+   DESTDIR="${pkgdir}" cmake --build build --target install
+
+   rm "${pkgdir}"/usr/lib/inkscape/*_LIB.a
+}
+
+# vim:set sw=0 noet:

Copied: inkscape/repos/testing-x86_64/python2.diff (from rev 380281, 
inkscape/trunk/python2.diff)
===
--- testing-x86_64/python2.diff (rev 0)
+++ testing-x86_64/python2.diff 2020-04-13 14:58:29 UTC (rev 380282)
@@ -0,0 +1,123 @@
+diff -u -r inkscape-0.92.5/share/extensions/uniconv-ext.py 
inkscape-0.92.5-python2/share/extensions/uniconv-ext.py
+--- inkscape-0.92.5/share/extensions/uniconv-ext.py2020-04-09 
21:37:16.0 +
 inkscape-0.92.5-python2/share/extensions/uniconv-ext.py2020-04-13 
13:46:07.038597950 +
+@@ -58,7 +58,7 @@
+  
'https://sk1project.net/modules.php?name=Products=uniconvertor=download\n'+\
+  'and install into your Inkscape\'s Python location\n'))
+ sys.exit(1)
+-cmd = 'python -c "import uniconvertor; uniconvertor.uniconv_run()"'
++cmd = 'python2 -c "import uniconvertor; uniconvertor.uniconv_run()"'
+ 
+ run((cmd+' "%s" "%%s"') % sys.argv[1].replace("%","%%"), "UniConvertor")
+ 
+diff -u -r inkscape-0.92.5/share/extensions/uniconv_output.py 
inkscape-0.92.5-python2/share/extensions/uniconv_output.py
+--- inkscape-0.92.5/share/extensions/uniconv_output.py 2020-04-09 
21:37:16.0 +
 inkscape-0.92.5-python2/share/extensions/uniconv_output.py 2020-04-13 
13:46:14.225378534 +
+@@ -126,7 +126,7 @@
+  
'https://sk1project.net/modules.php?name=Products=uniconvertor=download\n'+\
+  'and install into your Inkscape\'s Python 
location\n'))
+ sys.exit(1)
+-cmd = 'python -c "import uniconvertor; uniconvertor.uniconv_run();"'
++cmd = 'python2 -c "import uniconvertor; uniconvertor.uniconv_run();"'
+ 
+ return cmd
+ 
+diff -u -r inkscape-0.92.5/share/filters/CMakeLists.txt 
inkscape-0.92.5-python2/share/filters/CMakeLists.txt
+--- inkscape-0.92.5/share/filters/CMakeLists.txt   2020-04-09 
21:37:16.0 +
 inkscape-0.92.5-python2/share/filters/CMakeLists.txt   2020-04-13 
13:52:42.971451750 +
+@@ -1,6 

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

2020-04-13 Thread Morten Linderud via arch-commits
Date: Monday, April 13, 2020 @ 15:06:22
  Author: foxboron
Revision: 613672

archrelease: copy trunk to community-x86_64

Added:
  bmusb/repos/community-x86_64/PKGBUILD
(from rev 613671, bmusb/trunk/PKGBUILD)
Deleted:
  bmusb/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-04-13 15:06:14 UTC (rev 613671)
+++ PKGBUILD2020-04-13 15:06:22 UTC (rev 613672)
@@ -1,25 +0,0 @@
-# Maintainer: Morten Linderud 
-
-pkgname=bmusb
-_commit=327dca2d848e4c4656be1bfb54a2edf2e6587a71
-pkgver=0.7.6
-pkgrel=1
-pkgdesc="a free driver for BlackMagic's Intensity Shuttle andUltraStudio SDI 
USB3 cards"
-arch=('x86_64')
-url="https://git.sesse.net/?p=bmusb;a=summary;
-license=('GPL2')
-depends=('libusb')
-source=("${pkgname}-${pkgver}.tar.gz::https://git.sesse.net/?p=bmusb;a=snapshot;h=${_commit};sf=tgz;)
-sha256sums=('1e8e5d8a5c7db103dba74325e72a18a2c60682418a16bac2b3035c6bc034bbc1')
-
-build() {
-  cd "${pkgname}"-"${_commit:0:7}"
-  make
-}
-
-package() {
-  cd "${pkgname}"-"${_commit:0:7}"
-  make DESTDIR="${pkgdir}" PREFIX="/usr" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: bmusb/repos/community-x86_64/PKGBUILD (from rev 613671, 
bmusb/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-04-13 15:06:22 UTC (rev 613672)
@@ -0,0 +1,25 @@
+# Maintainer: Morten Linderud 
+
+pkgname=bmusb
+_commit=327dca2d848e4c4656be1bfb54a2edf2e6587a71
+pkgver=0.7.6
+pkgrel=2
+pkgdesc="a free driver for BlackMagic's Intensity Shuttle andUltraStudio SDI 
USB3 cards"
+arch=('x86_64')
+url="https://git.sesse.net/?p=bmusb;a=summary;
+license=('GPL2')
+depends=('libusb')
+source=("${pkgname}-${pkgver}.tar.gz::https://git.sesse.net/?p=bmusb;a=snapshot;h=${_commit};sf=tgz;)
+sha256sums=('1e8e5d8a5c7db103dba74325e72a18a2c60682418a16bac2b3035c6bc034bbc1')
+
+build() {
+  cd "${pkgname}"-"${_commit:0:7}"
+  make
+}
+
+package() {
+  cd "${pkgname}"-"${_commit:0:7}"
+  make UDEVDIR="/usr/lib/udev" DESTDIR="${pkgdir}" PREFIX="/usr" install
+}
+
+# vim:set ts=2 sw=2 et:


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

2020-04-13 Thread Morten Linderud via arch-commits
Date: Monday, April 13, 2020 @ 15:06:14
  Author: foxboron
Revision: 613671

upgpkg: bmusb 0.7.6-2

Modified:
  bmusb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-04-13 14:55:58 UTC (rev 613670)
+++ PKGBUILD2020-04-13 15:06:14 UTC (rev 613671)
@@ -3,7 +3,7 @@
 pkgname=bmusb
 _commit=327dca2d848e4c4656be1bfb54a2edf2e6587a71
 pkgver=0.7.6
-pkgrel=1
+pkgrel=2
 pkgdesc="a free driver for BlackMagic's Intensity Shuttle andUltraStudio SDI 
USB3 cards"
 arch=('x86_64')
 url="https://git.sesse.net/?p=bmusb;a=summary;
@@ -19,7 +19,7 @@
 
 package() {
   cd "${pkgname}"-"${_commit:0:7}"
-  make DESTDIR="${pkgdir}" PREFIX="/usr" install
+  make UDEVDIR="/usr/lib/udev" DESTDIR="${pkgdir}" PREFIX="/usr" install
 }
 
 # vim:set ts=2 sw=2 et:


[arch-commits] Commit in ffnvcodec-headers8.1/repos/community-any (6 files)

2020-04-13 Thread Maxime Gauduin via arch-commits
Date: Monday, April 13, 2020 @ 12:52:42
  Author: alucryd
Revision: 613638

archrelease: copy trunk to community-any

Added:
  ffnvcodec-headers8.1/repos/community-any/.SRCINFO
(from rev 613637, ffnvcodec-headers8.1/trunk/.SRCINFO)
  ffnvcodec-headers8.1/repos/community-any/PKGBUILD
(from rev 613637, ffnvcodec-headers8.1/trunk/PKGBUILD)
  ffnvcodec-headers8.1/repos/community-any/ffnvcodec-install.patch
(from rev 613637, ffnvcodec-headers8.1/trunk/ffnvcodec-install.patch)
Deleted:
  ffnvcodec-headers8.1/repos/community-any/.SRCINFO
  ffnvcodec-headers8.1/repos/community-any/PKGBUILD
  ffnvcodec-headers8.1/repos/community-any/ffnvcodec-install.patch

-+
 .SRCINFO|   26 +++---
 PKGBUILD|   80 +-
 ffnvcodec-install.patch |   64 ++--
 3 files changed, 89 insertions(+), 81 deletions(-)

Deleted: .SRCINFO
===
--- .SRCINFO2020-04-13 12:52:33 UTC (rev 613637)
+++ .SRCINFO2020-04-13 12:52:42 UTC (rev 613638)
@@ -1,13 +0,0 @@
-pkgbase = ffnvcodec-headers
-   pkgdesc = FFmpeg version of headers required to interface with Nvidias 
codec APIs
-   pkgver = 9.0.18.1
-   pkgrel = 1
-   url = https://git.videolan.org/?p=ffmpeg/nv-codec-headers.git
-   arch = any
-   license = MIT
-   makedepends = git
-   source = 
git+https://git.videolan.org/git/ffmpeg/nv-codec-headers.git#tag=n9.0.18.1
-   sha256sums = SKIP
-
-pkgname = ffnvcodec-headers
-

Copied: ffnvcodec-headers8.1/repos/community-any/.SRCINFO (from rev 613637, 
ffnvcodec-headers8.1/trunk/.SRCINFO)
===
--- .SRCINFO(rev 0)
+++ .SRCINFO2020-04-13 12:52:42 UTC (rev 613638)
@@ -0,0 +1,13 @@
+pkgbase = ffnvcodec-headers
+   pkgdesc = FFmpeg version of headers required to interface with Nvidias 
codec APIs
+   pkgver = 9.0.18.1
+   pkgrel = 1
+   url = https://git.videolan.org/?p=ffmpeg/nv-codec-headers.git
+   arch = any
+   license = MIT
+   makedepends = git
+   source = 
git+https://git.videolan.org/git/ffmpeg/nv-codec-headers.git#tag=n9.0.18.1
+   sha256sums = SKIP
+
+pkgname = ffnvcodec-headers
+

Deleted: PKGBUILD
===
--- PKGBUILD2020-04-13 12:52:33 UTC (rev 613637)
+++ PKGBUILD2020-04-13 12:52:42 UTC (rev 613638)
@@ -1,36 +0,0 @@
-# Maintainer: Maxime Gauduin 
-# Contributor: Daniel Bermond 
-
-pkgname=ffnvcodec-headers8.1
-pkgver=8.1.24.9
-pkgrel=1
-pkgdesc='FFmpeg version of headers required to interface with Nvidias codec 
APIs'
-arch=(any)
-url=https://git.videolan.org/?p=ffmpeg/nv-codec-headers.git
-license=(MIT)
-makedepends=(git)
-source=(
-  git+https://git.videolan.org/git/ffmpeg/nv-codec-headers.git#tag=n${pkgver}
-  ffnvcodec-install.patch
-)
-sha256sums=('SKIP'
-'248dc04818d010c470a2dc4436bd4091f6e2ef3e09d1b3fcb4d52ed08cd7809b')
-
-prepare() {
-  cd nv-codec-headers
-
-  patch -Np1 -i ../ffnvcodec-install.patch
-}
-
-build() {
-  make PREFIX='/usr' -C nv-codec-headers
-  sed -n '4,25p' nv-codec-headers/include/ffnvcodec/nvEncodeAPI.h > LICENSE # 
Extract license
-  sed -i '1,22s/^.\{,3\}//' LICENSE # Delete C comments
-}
-
-package() {
-  make PREFIX='/usr' DESTDIR="${pkgdir}" -C nv-codec-headers install
-  install -Dm 644 LICENSE -t 
"${pkgdir}"/usr/share/licenses/ffnvcodec-headers8.1/
-}
-
-# vim: ts=2 sw=2 et:

Copied: ffnvcodec-headers8.1/repos/community-any/PKGBUILD (from rev 613637, 
ffnvcodec-headers8.1/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-04-13 12:52:42 UTC (rev 613638)
@@ -0,0 +1,44 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: Daniel Bermond 
+
+pkgname=ffnvcodec-headers8.1
+pkgver=8.1.24.11
+pkgrel=1
+pkgdesc='FFmpeg version of headers required to interface with Nvidias codec 
APIs'
+arch=(any)
+url=https://git.videolan.org/?p=ffmpeg/nv-codec-headers.git
+license=(MIT)
+makedepends=(git)
+source=(
+  
git+https://git.videolan.org/git/ffmpeg/nv-codec-headers.git#tag=0cd5c2b7c30d580d09348c92d8facd7a39957f01
+  ffnvcodec-install.patch
+)
+sha256sums=(
+  SKIP
+  248dc04818d010c470a2dc4436bd4091f6e2ef3e09d1b3fcb4d52ed08cd7809b
+)
+
+pkgver() {
+  cd nv-codec-headers
+
+  git describe --tags | sed 's/^n//'
+}
+
+prepare() {
+  cd nv-codec-headers
+
+  patch -Np1 -i ../ffnvcodec-install.patch
+}
+
+build() {
+  make PREFIX=/usr -C nv-codec-headers
+  sed -n '4,25p' nv-codec-headers/include/ffnvcodec/nvEncodeAPI.h > LICENSE # 
Extract license
+  sed -i '1,22s/^.\{,3\}//' LICENSE # Delete C comments
+}
+
+package() {
+  make PREFIX=/usr DESTDIR="${pkgdir}" -C nv-codec-headers install
+  install -Dm 644 LICENSE -t 

[arch-commits] Commit in ffnvcodec-headers8.1/trunk (PKGBUILD)

2020-04-13 Thread Maxime Gauduin via arch-commits
Date: Monday, April 13, 2020 @ 12:52:33
  Author: alucryd
Revision: 613637

upgpkg: ffnvcodec-headers8.1 8.1.24.11-1

Modified:
  ffnvcodec-headers8.1/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-04-13 12:50:44 UTC (rev 613636)
+++ PKGBUILD2020-04-13 12:52:33 UTC (rev 613637)
@@ -2,7 +2,7 @@
 # Contributor: Daniel Bermond 
 
 pkgname=ffnvcodec-headers8.1
-pkgver=8.1.24.9
+pkgver=8.1.24.11
 pkgrel=1
 pkgdesc='FFmpeg version of headers required to interface with Nvidias codec 
APIs'
 arch=(any)
@@ -10,12 +10,20 @@
 license=(MIT)
 makedepends=(git)
 source=(
-  git+https://git.videolan.org/git/ffmpeg/nv-codec-headers.git#tag=n${pkgver}
+  
git+https://git.videolan.org/git/ffmpeg/nv-codec-headers.git#tag=0cd5c2b7c30d580d09348c92d8facd7a39957f01
   ffnvcodec-install.patch
 )
-sha256sums=('SKIP'
-'248dc04818d010c470a2dc4436bd4091f6e2ef3e09d1b3fcb4d52ed08cd7809b')
+sha256sums=(
+  SKIP
+  248dc04818d010c470a2dc4436bd4091f6e2ef3e09d1b3fcb4d52ed08cd7809b
+)
 
+pkgver() {
+  cd nv-codec-headers
+
+  git describe --tags | sed 's/^n//'
+}
+
 prepare() {
   cd nv-codec-headers
 
@@ -23,13 +31,13 @@
 }
 
 build() {
-  make PREFIX='/usr' -C nv-codec-headers
+  make PREFIX=/usr -C nv-codec-headers
   sed -n '4,25p' nv-codec-headers/include/ffnvcodec/nvEncodeAPI.h > LICENSE # 
Extract license
   sed -i '1,22s/^.\{,3\}//' LICENSE # Delete C comments
 }
 
 package() {
-  make PREFIX='/usr' DESTDIR="${pkgdir}" -C nv-codec-headers install
+  make PREFIX=/usr DESTDIR="${pkgdir}" -C nv-codec-headers install
   install -Dm 644 LICENSE -t 
"${pkgdir}"/usr/share/licenses/ffnvcodec-headers8.1/
 }
 


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

2020-04-13 Thread Jan Steffens via arch-commits
Date: Monday, April 13, 2020 @ 13:19:35
  Author: heftig
Revision: 380271

5.6.4.arch1-1

Modified:
  linux/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-04-13 13:13:27 UTC (rev 380270)
+++ PKGBUILD2020-04-13 13:19:35 UTC (rev 380271)
@@ -1,7 +1,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgbase=linux
-pkgver=5.6.3.arch1
+pkgver=5.6.4.arch1
 pkgrel=1
 pkgdesc='Linux'
 _srctag=v${pkgver%.*}-${pkgver##*.}


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

2020-04-13 Thread Jan Steffens via arch-commits
Date: Monday, April 13, 2020 @ 13:20:28
  Author: heftig
Revision: 613648

20200106-31: linux 5.6.4.arch1-1

Modified:
  vhba-module/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-04-13 13:20:27 UTC (rev 613647)
+++ PKGBUILD2020-04-13 13:20:28 UTC (rev 613648)
@@ -5,7 +5,7 @@
 pkgbase=vhba-module
 pkgname=(vhba-module vhba-module-dkms)
 pkgver=20200106
-pkgrel=30
+pkgrel=31
 pkgdesc="Kernel module that emulates SCSI devices"
 url="https://cdemu.sourceforge.io/;
 arch=(x86_64)


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

2020-04-13 Thread Jan Steffens via arch-commits
Date: Monday, April 13, 2020 @ 13:20:20
  Author: heftig
Revision: 613642

r73.0cf3b48-7: linux 5.6.4.arch1-1

Modified:
  netfilter-fullconenat/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-04-13 13:13:26 UTC (rev 613641)
+++ PKGBUILD2020-04-13 13:20:20 UTC (rev 613642)
@@ -3,7 +3,7 @@
 
 pkgname=netfilter-fullconenat
 pkgver=r73.0cf3b48
-pkgrel=6
+pkgrel=7
 pkgdesc="A kernel module that turns MASQUERADE into full cone SNAT"
 arch=('any')
 url="https://github.com/Chion82/netfilter-full-cone-nat;


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

2020-04-13 Thread Jan Steffens via arch-commits
Date: Monday, April 13, 2020 @ 13:20:23
  Author: heftig
Revision: 613644

0.43-195: linux 5.6.4.arch1-1

Modified:
  tp_smapi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-04-13 13:20:22 UTC (rev 613643)
+++ PKGBUILD2020-04-13 13:20:23 UTC (rev 613644)
@@ -9,7 +9,7 @@
 
 pkgname=tp_smapi
 pkgver=0.43
-pkgrel=194
+pkgrel=195
 pkgdesc="Modules for ThinkPad's SMAPI functionality"
 arch=('x86_64')
 url='https://github.com/evgeni/tp_smapi'


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

2020-04-13 Thread Jan Steffens via arch-commits
Date: Monday, April 13, 2020 @ 14:31:11
  Author: heftig
Revision: 380279

archrelease: copy trunk to staging-x86_64

Added:
  rust/repos/staging-x86_64/
  rust/repos/staging-x86_64/0001-bootstrap-fix-clippy-warnings.patch
(from rev 380278, rust/trunk/0001-bootstrap-fix-clippy-warnings.patch)
  rust/repos/staging-x86_64/PKGBUILD
(from rev 380278, rust/trunk/PKGBUILD)

--+
 0001-bootstrap-fix-clippy-warnings.patch |  452 +
 PKGBUILD |  141 +
 2 files changed, 593 insertions(+)

Copied: rust/repos/staging-x86_64/0001-bootstrap-fix-clippy-warnings.patch 
(from rev 380278, rust/trunk/0001-bootstrap-fix-clippy-warnings.patch)
===
--- staging-x86_64/0001-bootstrap-fix-clippy-warnings.patch 
(rev 0)
+++ staging-x86_64/0001-bootstrap-fix-clippy-warnings.patch 2020-04-13 
14:31:11 UTC (rev 380279)
@@ -0,0 +1,452 @@
+From 5f979e9afab42dd7536ca93994de66169880361e Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Matthias=20Kr=C3=BCger?= 
+Date: Mon, 3 Feb 2020 20:13:30 +0100
+Subject: [PATCH] bootstrap: fix clippy warnings
+
+---
+ src/bootstrap/bin/rustc.rs |  6 +++---
+ src/bootstrap/bin/rustdoc.rs   |  2 +-
+ src/bootstrap/builder.rs   | 24 
+ src/bootstrap/builder/tests.rs |  1 -
+ src/bootstrap/compile.rs   | 20 ++--
+ src/bootstrap/config.rs|  7 +++
+ src/bootstrap/dist.rs  |  4 ++--
+ src/bootstrap/doc.rs   |  2 +-
+ src/bootstrap/flags.rs |  2 +-
+ src/bootstrap/install.rs   |  5 ++---
+ src/bootstrap/lib.rs   |  6 +++---
+ src/bootstrap/metadata.rs  |  1 -
+ src/bootstrap/native.rs|  4 +---
+ src/bootstrap/test.rs  |  9 +++--
+ src/bootstrap/tool.rs  |  2 +-
+ src/bootstrap/toolstate.rs |  2 +-
+ src/bootstrap/util.rs  |  2 +-
+ 17 files changed, 41 insertions(+), 58 deletions(-)
+
+diff --git a/src/bootstrap/bin/rustc.rs b/src/bootstrap/bin/rustc.rs
+index a34ec44566b..a8c00c8c3ca 100644
+--- a/src/bootstrap/bin/rustc.rs
 b/src/bootstrap/bin/rustc.rs
+@@ -47,24 +47,24 @@ fn main() {
+ };
+ let stage = env::var("RUSTC_STAGE").expect("RUSTC_STAGE was not set");
+ let sysroot = env::var_os("RUSTC_SYSROOT").expect("RUSTC_SYSROOT was not 
set");
+-let on_fail = env::var_os("RUSTC_ON_FAIL").map(|of| Command::new(of));
++let on_fail = env::var_os("RUSTC_ON_FAIL").map(Command::new);
+ 
+ let rustc = env::var_os(rustc).unwrap_or_else(|| panic!("{:?} was not 
set", rustc));
+ let libdir = env::var_os(libdir).unwrap_or_else(|| panic!("{:?} was not 
set", libdir));
+ let mut dylib_path = bootstrap::util::dylib_path();
+ dylib_path.insert(0, PathBuf::from());
+ 
+ let mut cmd = Command::new(rustc);
+ cmd.args().env(bootstrap::util::dylib_path_var(), 
env::join_paths(_path).unwrap());
+ 
+ // Get the name of the crate we're compiling, if any.
+ let crate_name =
+ args.windows(2).find(|args| args[0] == 
"--crate-name").and_then(|args| args[1].to_str());
+ 
+ if let Some(crate_name) = crate_name {
+ if let Some(target) = env::var_os("RUSTC_TIME") {
+ if target == "all"
+-|| target.into_string().unwrap().split(",").any(|c| c.trim() 
== crate_name)
++|| target.into_string().unwrap().split(',').any(|c| c.trim() 
== crate_name)
+ {
+ cmd.arg("-Ztime");
+ }
+@@ -189,7 +189,7 @@ fn main() {
+ crate_name,
+ is_test,
+ dur.as_secs(),
+-dur.subsec_nanos() / 1_000_000
++dur.subsec_millis()
+ );
+ 
+ match status.code() {
+diff --git a/src/bootstrap/bin/rustdoc.rs b/src/bootstrap/bin/rustdoc.rs
+index 8c8b33a4e4e..04345867bf5 100644
+--- a/src/bootstrap/bin/rustdoc.rs
 b/src/bootstrap/bin/rustdoc.rs
+@@ -61,7 +61,7 @@ fn main() {
+ }
+ 
+ // Needed to be able to run all rustdoc tests.
+-if let Some(_) = env::var_os("RUSTDOC_GENERATE_REDIRECT_PAGES") {
++if env::var_os("RUSTDOC_GENERATE_REDIRECT_PAGES").is_some() {
+ // This "unstable-options" can be removed when 
`--generate-redirect-pages` is stabilized
+ if !has_unstable {
+ cmd.arg("-Z").arg("unstable-options");
+diff --git a/src/bootstrap/builder.rs b/src/bootstrap/builder.rs
+index d9c894aa9c6..18f6fda7608 100644
+--- a/src/bootstrap/builder.rs
 b/src/bootstrap/builder.rs
+@@ -510,17 +510,15 @@ impl<'a> Builder<'a> {
+ Subcommand::Format { .. } | Subcommand::Clean { .. } => panic!(),
+ };
+ 
+-let builder = Builder {
++Builder {
+ build,
+ top_stage: build.config.stage.unwrap_or(2),
+ kind,
+ cache: Cache::new(),
+ stack: 

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

2020-04-13 Thread Kpcyrd via arch-commits
Date: Monday, April 13, 2020 @ 15:30:31
  Author: kpcyrd
Revision: 613677

upgpkg: findomain 1.5.0-1

Modified:
  findomain/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-04-13 15:24:34 UTC (rev 613676)
+++ PKGBUILD2020-04-13 15:30:31 UTC (rev 613677)
@@ -2,7 +2,7 @@
 # Contributor: Eduard Tolosa 
 
 pkgname=findomain
-pkgver=1.4.5
+pkgver=1.5.0
 pkgrel=1
 pkgdesc='The fastest and cross-platform subdomain enumerator, do not waste 
your time'
 url='https://github.com/Edu4rdSHL/findomain'
@@ -12,8 +12,8 @@
 makedepends=('cargo')
 optdepends=('postgresql: for subdomain monitoring')
 
source=("https://github.com/Edu4rdSHL/${pkgname}/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('b6378caf4abd8a4cdd5a79a4580a38e5befc97dcf46e2f5043766ed64b485dfae0ac2d46d78593d5a7a4b7b5ab69d5884c4e855a16a120beefc004a18c1b48c1')
-b2sums=('b871eef26eba8ec4072e2b206ad672db3d77d4d3bfd90e84ebb87e811fa1c3b64c2c7ae47c03c86d30064b1a4824bd0a7a56336dae897e8991eff16f2c5d011c')
+sha512sums=('d29e5e71170e6c3edcbc29204f69cee600cc37f22d2f5a667094d31c8009a236fba68cb8c2a4043043c0338b4d8cfb8539034895836a2913a2b593b5')
+b2sums=('b7985939b37ce5876b4423f06274b84ab3e2c1482391ba52ea11cd698d587e05262b53fe6d6c81e68d73ce61397060e31bdd54fce87531bb30d147dd1bf01ba1')
 
 build() {
   cd ${pkgname}-${pkgver}


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

2020-04-13 Thread Kpcyrd via arch-commits
Date: Monday, April 13, 2020 @ 15:30:43
  Author: kpcyrd
Revision: 613678

archrelease: copy trunk to community-x86_64

Added:
  findomain/repos/community-x86_64/PKGBUILD
(from rev 613677, findomain/trunk/PKGBUILD)
Deleted:
  findomain/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-04-13 15:30:31 UTC (rev 613677)
+++ PKGBUILD2020-04-13 15:30:43 UTC (rev 613678)
@@ -1,36 +0,0 @@
-# Maintainer: kpcyrd 
-# Contributor: Eduard Tolosa 
-
-pkgname=findomain
-pkgver=1.4.5
-pkgrel=1
-pkgdesc='The fastest and cross-platform subdomain enumerator, do not waste 
your time'
-url='https://github.com/Edu4rdSHL/findomain'
-arch=('x86_64')
-license=('GPL3')
-depends=('gcc-libs')
-makedepends=('cargo')
-optdepends=('postgresql: for subdomain monitoring')
-source=("https://github.com/Edu4rdSHL/${pkgname}/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('b6378caf4abd8a4cdd5a79a4580a38e5befc97dcf46e2f5043766ed64b485dfae0ac2d46d78593d5a7a4b7b5ab69d5884c4e855a16a120beefc004a18c1b48c1')
-b2sums=('b871eef26eba8ec4072e2b206ad672db3d77d4d3bfd90e84ebb87e811fa1c3b64c2c7ae47c03c86d30064b1a4824bd0a7a56336dae897e8991eff16f2c5d011c')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  cargo build --release --locked
-}
-
-check() {
-  cd ${pkgname}-${pkgver}
-  cargo test --release --locked
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-
-  install -Dm 755 "target/release/${pkgname}" -t "${pkgdir}/usr/bin"
-  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 "${pkgname}.1" -t "${pkgdir}/usr/share/man/man1"
-}
-
-# vim: ts=2 sw=2 et:

Copied: findomain/repos/community-x86_64/PKGBUILD (from rev 613677, 
findomain/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-04-13 15:30:43 UTC (rev 613678)
@@ -0,0 +1,36 @@
+# Maintainer: kpcyrd 
+# Contributor: Eduard Tolosa 
+
+pkgname=findomain
+pkgver=1.5.0
+pkgrel=1
+pkgdesc='The fastest and cross-platform subdomain enumerator, do not waste 
your time'
+url='https://github.com/Edu4rdSHL/findomain'
+arch=('x86_64')
+license=('GPL3')
+depends=('gcc-libs')
+makedepends=('cargo')
+optdepends=('postgresql: for subdomain monitoring')
+source=("https://github.com/Edu4rdSHL/${pkgname}/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('d29e5e71170e6c3edcbc29204f69cee600cc37f22d2f5a667094d31c8009a236fba68cb8c2a4043043c0338b4d8cfb8539034895836a2913a2b593b5')
+b2sums=('b7985939b37ce5876b4423f06274b84ab3e2c1482391ba52ea11cd698d587e05262b53fe6d6c81e68d73ce61397060e31bdd54fce87531bb30d147dd1bf01ba1')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  cargo build --release --locked
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  cargo test --release --locked
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+
+  install -Dm 755 "target/release/${pkgname}" -t "${pkgdir}/usr/bin"
+  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 "${pkgname}.1" -t "${pkgdir}/usr/share/man/man1"
+}
+
+# vim: ts=2 sw=2 et:


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

2020-04-13 Thread David Runge via arch-commits
Date: Monday, April 13, 2020 @ 16:18:50
  Author: dvzrv
Revision: 613692

archrelease: copy trunk to community-x86_64

Added:
  lv2lint/repos/community-x86_64/PKGBUILD
(from rev 613691, lv2lint/trunk/PKGBUILD)
Deleted:
  lv2lint/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-04-13 16:18:35 UTC (rev 613691)
+++ PKGBUILD2020-04-13 16:18:50 UTC (rev 613692)
@@ -1,34 +0,0 @@
-# Maintainer: David Runge 
-
-pkgname=lv2lint
-pkgver=0.4.0
-pkgrel=1
-pkgdesc="Check whether a given LV2 plugin is up to the specification"
-arch=('x86_64')
-url="https://open-music-kontrollers.ch/lv2/lv2lint/;
-license=('Artistic2.0')
-depends=('glibc' 'libcurl.so' 'libelf' 'liblilv-0.so')
-makedepends=('lv2' 'meson')
-source=("https://git.open-music-kontrollers.ch/lv2/${pkgname}/snapshot/${pkgname}-${pkgver}.tar.xz;)
-sha512sums=('a3df72ae7bca0471ae3fd08b721f96e482bd6b9fc55688ffe332889e9c4205a404aa91b1898181ed4fd56116588eef93a0b2196d6b56c8fbf30b092716e2a7f9')
-
-build() {
-  cd "$pkgname-$pkgver"
-  meson --prefix=/usr \
--Donline-tests=true \
--Delf-tests=true \
-build
-  ninja -C build
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-  ninja -C build test
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  DESTDIR="$pkgdir/" ninja -C build install
-  install -vDm 644 {ChangeLog,README.md,TODO} \
--t "${pkgdir}/usr/share/doc/${pkgname}"
-}

Copied: lv2lint/repos/community-x86_64/PKGBUILD (from rev 613691, 
lv2lint/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-04-13 16:18:50 UTC (rev 613692)
@@ -0,0 +1,35 @@
+# Maintainer: David Runge 
+
+pkgname=lv2lint
+pkgver=0.6.0
+pkgrel=1
+pkgdesc="Check whether a given LV2 plugin is up to the specification"
+arch=('x86_64')
+url="https://open-music-kontrollers.ch/lv2/lv2lint/;
+license=('Artistic2.0')
+depends=('glibc' 'libelf')
+makedepends=('curl' 'lilv' 'lv2' 'meson')
+source=("https://git.open-music-kontrollers.ch/lv2/${pkgname}/snapshot/${pkgname}-${pkgver}.tar.xz;)
+sha512sums=('df8e53b55ff88f088ad8290be765fc33fded72359541e9f5342e7282445d3f310c0f94694450d3d42ad26afd34ae39004b5db33c85bd6bfc50248329082a639e')
+
+build() {
+  cd "$pkgname-$pkgver"
+  meson --prefix=/usr \
+-Donline-tests=true \
+-Delf-tests=true \
+build
+  ninja -C build
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  ninja -C build test
+}
+
+package() {
+  depends+=('libcurl.so' 'liblilv-0.so')
+  cd "$pkgname-$pkgver"
+  DESTDIR="$pkgdir/" ninja -C build install
+  install -vDm 644 {ChangeLog,README.md,TODO} \
+-t "${pkgdir}/usr/share/doc/${pkgname}"
+}


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

2020-04-13 Thread Konstantin Gizdov via arch-commits
Date: Monday, April 13, 2020 @ 12:03:16
  Author: kgizdov
Revision: 613628

archrelease: copy trunk to community-testing-x86_64

Added:
  python-pytorch/repos/community-testing-x86_64/
  python-pytorch/repos/community-testing-x86_64/PKGBUILD
(from rev 613627, python-pytorch/trunk/PKGBUILD)
  python-pytorch/repos/community-testing-x86_64/fix_include_system.patch
(from rev 613627, python-pytorch/trunk/fix_include_system.patch)
  python-pytorch/repos/community-testing-x86_64/nccl_version.patch
(from rev 613627, python-pytorch/trunk/nccl_version.patch)
  python-pytorch/repos/community-testing-x86_64/torch_cuda_api.patch
(from rev 613627, python-pytorch/trunk/torch_cuda_api.patch)

--+
 PKGBUILD |  189 +
 fix_include_system.patch |   11 ++
 nccl_version.patch   |   46 ++
 torch_cuda_api.patch |   13 +++
 4 files changed, 259 insertions(+)

Copied: python-pytorch/repos/community-testing-x86_64/PKGBUILD (from rev 
613627, python-pytorch/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-04-13 12:03:16 UTC (rev 613628)
@@ -0,0 +1,189 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Stephen Zhang 
+
+pkgbase=python-pytorch
+pkgname=("python-pytorch" "python-pytorch-opt" "python-pytorch-cuda" 
"python-pytorch-opt-cuda")
+_pkgname="pytorch"
+pkgver=1.4.1
+pkgrel=3
+pkgdesc="Tensors and Dynamic neural networks in Python with strong GPU 
acceleration"
+arch=('x86_64')
+url="https://pytorch.org;
+license=('BSD')
+depends=('google-glog' 'gflags' 'opencv' 'openmp' 'nccl' 'pybind11' 'python' 
'python-yaml'
+ 'python-numpy' 'protobuf' 'ffmpeg' 'python-future' 'qt5-base' 
'intel-dnnl' 'intel-mkl')
+makedepends=('python' 'python-setuptools' 'python-yaml' 'python-numpy' 'cmake' 
'cuda'
+ 'cudnn' 'git' 'magma' 'ninja' 'pkgconfig' 'doxygen')
+source=("${_pkgname}-${pkgver}::git+https://github.com/pytorch/pytorch.git#tag=v$pkgver;
+fix_include_system.patch
+nccl_version.patch
+torch_cuda_api.patch
+
https://patch-diff.githubusercontent.com/raw/pytorch/pytorch/pull/30332.patch
+
https://patch-diff.githubusercontent.com/raw/pytorch/pytorch/pull/30333.patch)
+sha256sums=('SKIP'
+'147bdaeac8ec46ea46382e6146878bd8f8d51e05d5bd6f930dfd8e2b520859b9'
+'1a276bd827a0c76dab908cbc6605fa4c9fc2cc2b9431b6578a41133ae27dba2b'
+'8965f003f5812c5ab1bd27ab66d916560ea4a644364727b9755dc0dea752ad77'
+'3170551116798dc496636a87f00b86c6463895bb6d174df616c5224adfb74ff3'
+'c8c305c892be85c47872ae1f1ecd5b3b8af12876fbfe3641045c8c839e5126da')
+
+get_pyver () {
+  python -c 'import sys; print(str(sys.version_info[0]) + "." + 
str(sys.version_info[1]))'
+}
+
+prepare() {
+  cd "${_pkgname}-${pkgver}"
+
+  # This is the lazy way since pytorch has sooo many submodules and they keep
+  # changing them around but we've run into more problems so far doing it the
+  # manual than the lazy way. This lazy way (not explicitly specifying all
+  # submodules) will make building inefficient but for now I'll take it.
+  # It will result in the same package, don't worry.
+  git submodule update --init --recursive
+
+  # https://github.com/pytorch/pytorch/issues/26555
+  sed -i 's#^  ${CMAKE_CURRENT_SOURCE_DIR}/tensor_iterator_test.cpp##g' 
aten/src/ATen/test/CMakeLists.txt
+
+  # https://bugs.archlinux.org/task/64981
+  patch -N torch/utils/cpp_extension.py "${srcdir}"/fix_include_system.patch
+
+  # FindNCCL patch to export correct nccl version
+  patch -Np1 -i "${srcdir}"/nccl_version.patch
+
+  # correctly export torch cuda api for nccl runtime error
+  patch -Np1 -i "${srcdir}"/torch_cuda_api.patch
+
+  # https://github.com/pytorch/pytorch/issues/32277
+  patch -Np1 -i "$srcdir"/30332.patch
+  patch -Np1 -i "$srcdir"/30333.patch
+
+  # remove local nccl
+  rm -rf third_party/nccl/nccl
+
+  cd ..
+
+  cp -a "${_pkgname}-${pkgver}" "${_pkgname}-${pkgver}-opt"
+  cp -a "${_pkgname}-${pkgver}" "${_pkgname}-${pkgver}-cuda"
+  cp -a "${_pkgname}-${pkgver}" "${_pkgname}-${pkgver}-opt-cuda"
+
+  export VERBOSE=1
+  export PYTORCH_BUILD_VERSION="${pkgver}"
+  export PYTORCH_BUILD_NUMBER=1
+
+  # Check tools/setup_helpers/cmake.py, setup.py and CMakeLists.txt for a list 
of flags that can be set via env vars.
+  export USE_MKLDNN=ON
+  # export BUILD_CUSTOM_PROTOBUF=OFF
+  # export BUILD_SHARED_LIBS=OFF
+  export USE_FFMPEG=ON
+  export USE_GFLAGS=ON
+  export USE_GLOG=ON
+  export BUILD_BINARY=ON
+  export USE_OPENCV=ON
+  export USE_SYSTEM_NCCL=ON
+  export NCCL_VERSION=$(pkg-config nccl --modversion)
+  export NCCL_VER_CODE=$(sed -n 's/^#define NCCL_VERSION_CODE\s*\(.*\).*/\1/p' 
/usr/include/nccl.h)
+  export CUDAHOSTCXX=g++-8
+  export CUDA_HOME=/opt/cuda
+  export CUDNN_LIB_DIR=/usr/lib
+  

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

2020-04-13 Thread Antonio Rojas via arch-commits
Date: Monday, April 13, 2020 @ 18:27:53
  Author: arojas
Revision: 613702

archrelease: copy trunk to community-x86_64

Added:
  gnurl/repos/community-x86_64/PKGBUILD
(from rev 613701, gnurl/trunk/PKGBUILD)
Deleted:
  gnurl/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-04-13 18:27:31 UTC (rev 613701)
+++ PKGBUILD2020-04-13 18:27:53 UTC (rev 613702)
@@ -1,64 +0,0 @@
-# Maintainer: Sergej Pupykin 
-
-pkgname=gnurl
-pkgver=7.67.0
-pkgrel=1
-pkgdesc="fork of libcurl, which is mostly for GNUnet"
-arch=(x86_64)
-url="https://gnunet.org/gnurl;
-license=('MIT')
-depends=('gnutls' 'krb5' 'libnghttp2')
-source=("https://ftp.gnu.org/gnu/gnunet/gnurl-$pkgver.tar.Z"{,.sig})
-validpgpkeys=('A88C8ADD129828D7EAC02E52E22F9BBFEE348588')  # Nils Gillmann
-sha512sums=('a9e0f75fd723a8e19092a53f8793be93b8c4df6e0bc4489e2806b846157987ddf8ae935b8991b9841233dd0d44fea601afff1d0f691a5be14f2a9138ab6e8c64'
-'SKIP')
-
-build() {
-  cd $pkgname-$pkgver
-  ./buildconf
-  ./configure \
---prefix=/usr \
---mandir=/usr/share/man \
---disable-dict \
---disable-file \
---disable-ftp \
---disable-gopher \
---disable-imap \
---disable-ldap \
---disable-ldaps \
---disable-ntlm-wb \
---disable-pop3 \
---disable-rtsp \
---disable-smb \
---disable-smtp \
---disable-telnet \
---disable-tftp \
---enable-ipv6 \
---enable-manual \
---enable-versioned-symbols \
---enable-threaded-resolver \
---without-gssapi \
---with-gnutls \
---without-libidn \
---without-libpsl \
---without-librtmp \
---without-ssl \
---disable-ftp \
---disable-file \
---with-random=/dev/urandom \
---with-ca-bundle=/etc/ssl/certs/ca-certificates.crt
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
-
-#  rm -rf "$pkgdir"/usr/share/man \
-#"$pkgdir"/usr/bin/curl \
-#"$pkgdir"/usr/share/aclocal
-#  mkdir -p "$pkgdir"/usr/include/gnurl
-#  mv "$pkgdir"/usr/include/curl "$pkgdir"/usr/include/gnurl/curl
-#  sed -i 's|includedir=.*|includedir=/usr/include/gnurl|g' 
"$pkgdir"/usr/lib/pkgconfig/libgnurl.pc
-}

Copied: gnurl/repos/community-x86_64/PKGBUILD (from rev 613701, 
gnurl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-04-13 18:27:53 UTC (rev 613702)
@@ -0,0 +1,64 @@
+# Maintainer: Sergej Pupykin 
+
+pkgname=gnurl
+pkgver=7.69.1
+pkgrel=1
+pkgdesc="fork of libcurl, which is mostly for GNUnet"
+arch=(x86_64)
+url="https://gnunet.org/gnurl;
+license=('MIT')
+depends=('gnutls' 'krb5' 'libnghttp2')
+source=("https://ftp.gnu.org/gnu/gnunet/gnurl-$pkgver.tar.Z"{,.sig})
+validpgpkeys=('A88C8ADD129828D7EAC02E52E22F9BBFEE348588')  # Nils Gillmann
+sha512sums=('17e623ecab2b2ce9fb2d6fa6e125ece114b314def05f6eea51aae565a57426113a3623a9b7f0384bcf97516a6f2cc5ef1d35b5c2a2bb4e2e34b843725be73b7b'
+'SKIP')
+
+build() {
+  cd $pkgname-$pkgver
+  ./buildconf
+  ./configure \
+--prefix=/usr \
+--mandir=/usr/share/man \
+--disable-dict \
+--disable-file \
+--disable-ftp \
+--disable-gopher \
+--disable-imap \
+--disable-ldap \
+--disable-ldaps \
+--disable-ntlm-wb \
+--disable-pop3 \
+--disable-rtsp \
+--disable-smb \
+--disable-smtp \
+--disable-telnet \
+--disable-tftp \
+--enable-ipv6 \
+--enable-manual \
+--enable-versioned-symbols \
+--enable-threaded-resolver \
+--without-gssapi \
+--with-gnutls \
+--without-libidn \
+--without-libpsl \
+--without-librtmp \
+--without-ssl \
+--disable-ftp \
+--disable-file \
+--with-random=/dev/urandom \
+--with-ca-bundle=/etc/ssl/certs/ca-certificates.crt
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
+
+#  rm -rf "$pkgdir"/usr/share/man \
+#"$pkgdir"/usr/bin/curl \
+#"$pkgdir"/usr/share/aclocal
+#  mkdir -p "$pkgdir"/usr/include/gnurl
+#  mv "$pkgdir"/usr/include/curl "$pkgdir"/usr/include/gnurl/curl
+#  sed -i 's|includedir=.*|includedir=/usr/include/gnurl|g' 
"$pkgdir"/usr/lib/pkgconfig/libgnurl.pc
+}


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

2020-04-13 Thread Antonio Rojas via arch-commits
Date: Monday, April 13, 2020 @ 18:27:31
  Author: arojas
Revision: 613701

Update to 7.69.1

Modified:
  gnurl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-04-13 18:25:01 UTC (rev 613700)
+++ PKGBUILD2020-04-13 18:27:31 UTC (rev 613701)
@@ -1,7 +1,7 @@
 # Maintainer: Sergej Pupykin 
 
 pkgname=gnurl
-pkgver=7.67.0
+pkgver=7.69.1
 pkgrel=1
 pkgdesc="fork of libcurl, which is mostly for GNUnet"
 arch=(x86_64)
@@ -10,7 +10,7 @@
 depends=('gnutls' 'krb5' 'libnghttp2')
 source=("https://ftp.gnu.org/gnu/gnunet/gnurl-$pkgver.tar.Z"{,.sig})
 validpgpkeys=('A88C8ADD129828D7EAC02E52E22F9BBFEE348588')  # Nils Gillmann
-sha512sums=('a9e0f75fd723a8e19092a53f8793be93b8c4df6e0bc4489e2806b846157987ddf8ae935b8991b9841233dd0d44fea601afff1d0f691a5be14f2a9138ab6e8c64'
+sha512sums=('17e623ecab2b2ce9fb2d6fa6e125ece114b314def05f6eea51aae565a57426113a3623a9b7f0384bcf97516a6f2cc5ef1d35b5c2a2bb4e2e34b843725be73b7b'
 'SKIP')
 
 build() {


[arch-commits] Commit in sherlock.lv2/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-04-13 Thread David Runge via arch-commits
Date: Monday, April 13, 2020 @ 19:55:47
  Author: dvzrv
Revision: 613712

archrelease: copy trunk to community-x86_64

Added:
  sherlock.lv2/repos/community-x86_64/PKGBUILD
(from rev 613711, sherlock.lv2/trunk/PKGBUILD)
Deleted:
  sherlock.lv2/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-04-13 19:55:38 UTC (rev 613711)
+++ PKGBUILD2020-04-13 19:55:47 UTC (rev 613712)
@@ -1,30 +0,0 @@
-# Maintainer: David Runge 
-pkgname=sherlock.lv2
-pkgver=0.20.0
-pkgrel=1
-pkgdesc="An investigative plugin bundle"
-arch=('x86_64')
-url="https://open-music-kontrollers.ch/lv2/sherlock/;
-license=('Artistic2.0')
-groups=('lv2-plugins' 'pro-audio')
-depends=('glibc' 'libglvnd' 'libx11' 'serd' 'sratom')
-makedepends=('flex' 'lv2' 'meson' 'sord')
-source=("https://git.open-music-kontrollers.ch/lv2/$pkgname/snapshot/$pkgname-$pkgver.tar.xz;)
-sha512sums=('9085a8822a6d96945df3bc759d12cca79a5dd4b403e886a54fa809fed5f3f5c8d9c6f803a0501da1035def3dc3f266d50cf82ee693f4225c892933535700ac03')
-
-build() {
-  cd "$pkgname-$pkgver"
-  arch-meson --prefix=/usr \
- --libdir=lib \
- --buildtype=release \
- build
-  ninja -C build
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  DESTDIR="${pkgdir}" meson install -C build
-  # docs
-  install -vDm 644 {ChangeLog,README.md} \
--t "${pkgdir}/usr/share/doc/${pkgname}"
-}

Copied: sherlock.lv2/repos/community-x86_64/PKGBUILD (from rev 613711, 
sherlock.lv2/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-04-13 19:55:47 UTC (rev 613712)
@@ -0,0 +1,41 @@
+# Maintainer: David Runge 
+
+pkgname=sherlock.lv2
+pkgver=0.22.0
+pkgrel=1
+pkgdesc="An investigative plugin bundle"
+arch=('x86_64')
+url="https://open-music-kontrollers.ch/lv2/sherlock/;
+license=('Artistic2.0')
+groups=('lv2-plugins' 'pro-audio')
+depends=('glibc' 'libglvnd' 'libx11')
+makedepends=('flex' 'glu' 'lv2' 'meson' 'serd' 'sord' 'sratom')
+checkdepends=('lv2lint')
+source=("https://git.open-music-kontrollers.ch/lv2/$pkgname/snapshot/$pkgname-$pkgver.tar.xz;)
+sha512sums=('3ed6caa88ac8d89e4f6c4934966c4c0988597152dfd6a963057d7bf585cbe294539398303d76986736dcc0683ea304f77f668ee201d6871f527430476d60f92e')
+
+build() {
+  cd "$pkgname-$pkgver"
+  arch-meson --prefix=/usr \
+ --libdir=lib \
+ --buildtype=release \
+ build
+  ninja -C build
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  _plugin_names=('atom_inspector' 'midi_inspector' 'osc_inspector')
+  for _plugin in ${_plugin_names[@]}; do
+lv2lint -Mpack -I "build/" 
"http://open-music-kontrollers.ch/lv2/sherlock#${_plugin};
+  done
+}
+
+package() {
+  depends+=('libserd-0.so' 'libsratom-0.so')
+  cd "$pkgname-$pkgver"
+  DESTDIR="${pkgdir}" meson install -C build
+  # docs
+  install -vDm 644 {ChangeLog,README.md} \
+-t "${pkgdir}/usr/share/doc/${pkgname}"
+}


[arch-commits] Commit in sherlock.lv2/trunk (PKGBUILD)

2020-04-13 Thread David Runge via arch-commits
Date: Monday, April 13, 2020 @ 19:55:38
  Author: dvzrv
Revision: 613711

upgpkg: sherlock.lv2 0.22.0-1: Upgrading to 0.22.0.

Adding glu to makedepends.
Adding lv2lint to checkdepends and running it on the entire bundle.
Adding all sodeps in package() and adding the respective packages to 
makedepends.
Updating maintainer info.

Modified:
  sherlock.lv2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-04-13 19:23:50 UTC (rev 613710)
+++ PKGBUILD2020-04-13 19:55:38 UTC (rev 613711)
@@ -1,6 +1,7 @@
-# Maintainer: David Runge 
+# Maintainer: David Runge 
+
 pkgname=sherlock.lv2
-pkgver=0.20.0
+pkgver=0.22.0
 pkgrel=1
 pkgdesc="An investigative plugin bundle"
 arch=('x86_64')
@@ -7,10 +8,11 @@
 url="https://open-music-kontrollers.ch/lv2/sherlock/;
 license=('Artistic2.0')
 groups=('lv2-plugins' 'pro-audio')
-depends=('glibc' 'libglvnd' 'libx11' 'serd' 'sratom')
-makedepends=('flex' 'lv2' 'meson' 'sord')
+depends=('glibc' 'libglvnd' 'libx11')
+makedepends=('flex' 'glu' 'lv2' 'meson' 'serd' 'sord' 'sratom')
+checkdepends=('lv2lint')
 
source=("https://git.open-music-kontrollers.ch/lv2/$pkgname/snapshot/$pkgname-$pkgver.tar.xz;)
-sha512sums=('9085a8822a6d96945df3bc759d12cca79a5dd4b403e886a54fa809fed5f3f5c8d9c6f803a0501da1035def3dc3f266d50cf82ee693f4225c892933535700ac03')
+sha512sums=('3ed6caa88ac8d89e4f6c4934966c4c0988597152dfd6a963057d7bf585cbe294539398303d76986736dcc0683ea304f77f668ee201d6871f527430476d60f92e')
 
 build() {
   cd "$pkgname-$pkgver"
@@ -21,7 +23,16 @@
   ninja -C build
 }
 
+check() {
+  cd "$pkgname-$pkgver"
+  _plugin_names=('atom_inspector' 'midi_inspector' 'osc_inspector')
+  for _plugin in ${_plugin_names[@]}; do
+lv2lint -Mpack -I "build/" 
"http://open-music-kontrollers.ch/lv2/sherlock#${_plugin};
+  done
+}
+
 package() {
+  depends+=('libserd-0.so' 'libsratom-0.so')
   cd "$pkgname-$pkgver"
   DESTDIR="${pkgdir}" meson install -C build
   # docs


[arch-commits] Commit in vm.lv2/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-04-13 Thread David Runge via arch-commits
Date: Monday, April 13, 2020 @ 20:02:43
  Author: dvzrv
Revision: 613714

archrelease: copy trunk to community-x86_64

Added:
  vm.lv2/repos/community-x86_64/PKGBUILD
(from rev 613713, vm.lv2/trunk/PKGBUILD)
Deleted:
  vm.lv2/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-04-13 20:02:38 UTC (rev 613713)
+++ PKGBUILD2020-04-13 20:02:43 UTC (rev 613714)
@@ -1,36 +0,0 @@
-# Maintainer: David Runge 
-pkgname=vm.lv2
-pkgver=0.6.0
-pkgrel=1
-pkgdesc="A virtual machine LV2 plugin bundle"
-arch=('x86_64')
-url="https://open-music-kontrollers.ch/lv2/vm/#;
-license=('Artistic2.0')
-groups=('lv2-plugins' 'pro-audio')
-depends=('libgl')
-makedepends=('lv2' 'meson' 'sord')
-source=("https://git.open-music-kontrollers.ch/lv2//$pkgname/snapshot/$pkgname-$pkgver.tar.xz;)
-md5sums=('7313588b1e5b9794fc70c1b7acb31134')
-
-build() {
-  cd "$pkgname-$pkgver"
-  arch-meson --prefix=/usr \
- --libdir=lib \
- --buildtype=release \
- build
-  ninja -C build
-}
-
-# check fails due to currently broken lv2_validate in lv2
-# check() {
-#   cd "$pkgname-$pkgver"
-#   meson test -C build
-# }
-
-package() {
-  cd "$pkgname-$pkgver"
-  DESTDIR="${pkgdir}" meson install -C build
-  # docs
-  install -vDm 644 {ChangeLog,README.md} \
--t "${pkgdir}/usr/share/doc/${pkgname}"
-}

Copied: vm.lv2/repos/community-x86_64/PKGBUILD (from rev 613713, 
vm.lv2/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-04-13 20:02:43 UTC (rev 613714)
@@ -0,0 +1,40 @@
+# Maintainer: David Runge 
+
+pkgname=vm.lv2
+pkgver=0.8.0
+pkgrel=1
+pkgdesc="A virtual machine LV2 plugin bundle"
+arch=('x86_64')
+url="https://open-music-kontrollers.ch/lv2/vm/#;
+license=('Artistic2.0')
+groups=('lv2-plugins' 'pro-audio')
+depends=('glibc' 'libglvnd')
+makedepends=('glu' 'lv2' 'meson')
+checkdepends=('lv2lint')
+source=("https://git.open-music-kontrollers.ch/lv2//$pkgname/snapshot/$pkgname-$pkgver.tar.xz;)
+sha512sums=('343be1c9f48f2a10995bc10cc774eaf89228ef7b5e76f5da75cd8d9fe396cf583db039e432e919fab3d39f37732282e46dd998b448baf06950ea4e36ec69fe74')
+
+build() {
+  cd "$pkgname-$pkgver"
+  arch-meson --prefix=/usr \
+ --libdir=lib \
+ --buildtype=release \
+ build
+  ninja -C build
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  _plugin_names=('atom' 'audio' 'control' 'cv' 'midi')
+  for _plugin in ${_plugin_names[@]}; do
+lv2lint -Mpack -I "build/" 
"http://open-music-kontrollers.ch/lv2/vm#${_plugin};
+  done
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  DESTDIR="${pkgdir}" meson install -C build
+  # docs
+  install -vDm 644 {ChangeLog,README.md} \
+-t "${pkgdir}/usr/share/doc/${pkgname}"
+}


[arch-commits] Commit in vm.lv2/trunk (PKGBUILD)

2020-04-13 Thread David Runge via arch-commits
Date: Monday, April 13, 2020 @ 20:02:38
  Author: dvzrv
Revision: 613713

upgpkg: vm.lv2 0.8.0-1: Upgrading to 0.8.0.

Adding glu to makedepends and lv2lint to checkdepends.
Running lv2lint against the entire lv2 bundle.
Updating maintainer info.

Modified:
  vm.lv2/trunk/PKGBUILD

--+
 PKGBUILD |   24 ++--
 1 file changed, 14 insertions(+), 10 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-04-13 19:55:47 UTC (rev 613712)
+++ PKGBUILD2020-04-13 20:02:38 UTC (rev 613713)
@@ -1,6 +1,7 @@
-# Maintainer: David Runge 
+# Maintainer: David Runge 
+
 pkgname=vm.lv2
-pkgver=0.6.0
+pkgver=0.8.0
 pkgrel=1
 pkgdesc="A virtual machine LV2 plugin bundle"
 arch=('x86_64')
@@ -7,10 +8,11 @@
 url="https://open-music-kontrollers.ch/lv2/vm/#;
 license=('Artistic2.0')
 groups=('lv2-plugins' 'pro-audio')
-depends=('libgl')
-makedepends=('lv2' 'meson' 'sord')
+depends=('glibc' 'libglvnd')
+makedepends=('glu' 'lv2' 'meson')
+checkdepends=('lv2lint')
 
source=("https://git.open-music-kontrollers.ch/lv2//$pkgname/snapshot/$pkgname-$pkgver.tar.xz;)
-md5sums=('7313588b1e5b9794fc70c1b7acb31134')
+sha512sums=('343be1c9f48f2a10995bc10cc774eaf89228ef7b5e76f5da75cd8d9fe396cf583db039e432e919fab3d39f37732282e46dd998b448baf06950ea4e36ec69fe74')
 
 build() {
   cd "$pkgname-$pkgver"
@@ -21,11 +23,13 @@
   ninja -C build
 }
 
-# check fails due to currently broken lv2_validate in lv2
-# check() {
-#   cd "$pkgname-$pkgver"
-#   meson test -C build
-# }
+check() {
+  cd "$pkgname-$pkgver"
+  _plugin_names=('atom' 'audio' 'control' 'cv' 'midi')
+  for _plugin in ${_plugin_names[@]}; do
+lv2lint -Mpack -I "build/" 
"http://open-music-kontrollers.ch/lv2/vm#${_plugin};
+  done
+}
 
 package() {
   cd "$pkgname-$pkgver"


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

2020-04-13 Thread Felix Yan via arch-commits
Date: Monday, April 13, 2020 @ 20:34:38
  Author: felixonmars
Revision: 613717

upgpkg: python-hypothesis 5.8.1-1

Modified:
  python-hypothesis/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-04-13 20:33:17 UTC (rev 613716)
+++ PKGBUILD2020-04-13 20:34:38 UTC (rev 613717)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=python-hypothesis
-pkgver=5.8.0
+pkgver=5.8.1
 pkgrel=1
 pkgdesc="Advanced Quickcheck style testing library for Python"
 arch=('any')
@@ -19,7 +19,7 @@
   'python-flaky' 'python-django' 'python-mock' 'python-pandas' 
'python-dpcontracts'
   'python-pytest-xdist' 'python-lark-parser' 'python-pexpect' 
'python-coverage')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-$pkgver.tar.gz;)
-sha512sums=('60e355e2f3a03264fff852f422fcceec6ca621e28ea63e100f85ab0144a8e291e7fada78e82ad55623c0bfba971008a059bc125eff89c82d5ddfbfca88e4d43c')
+sha512sums=('58f933aa9a167c1fdbfd94ce0bf4c78bc6adf4ba2ee6f7953949185245ad104dfd8e2c849bd065d954b68d42ad1db7d722365f071772e1f1549f4c21d772286f')
 
 prepare() {
   mv hypothesis-hypothesis-python-$pkgver hypothesis-$pkgver


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

2020-04-13 Thread Felix Yan via arch-commits
Date: Monday, April 13, 2020 @ 21:26:43
  Author: felixonmars
Revision: 613771

upgpkg: haskell-authenticate 1.3.5-96: rebuild with retry 0.8.1.1

Modified:
  haskell-authenticate/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-04-13 21:26:05 UTC (rev 613770)
+++ PKGBUILD2020-04-13 21:26:43 UTC (rev 613771)
@@ -4,7 +4,7 @@
 _hkgname=authenticate
 pkgname=haskell-authenticate
 pkgver=1.3.5
-pkgrel=95
+pkgrel=96
 pkgdesc="Authentication methods for Haskell web applications."
 url="https://github.com/yesodweb/authenticate;
 license=("MIT")


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

2020-04-13 Thread Christian Hesse via arch-commits
Date: Monday, April 13, 2020 @ 21:28:44
  Author: eworm
Revision: 380300

upgpkg: util-linux 2.35.1-2

pull in stable changes

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

---+
 0001-stable.patch |  164 
 PKGBUILD  |   10 ++-
 2 files changed, 173 insertions(+), 1 deletion(-)

Added: 0001-stable.patch
===
--- 0001-stable.patch   (rev 0)
+++ 0001-stable.patch   2020-04-13 21:28:44 UTC (rev 380300)
@@ -0,0 +1,164 @@
+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 haskell-http-conduit/repos (2 files)

2020-04-13 Thread Felix Yan via arch-commits
Date: Monday, April 13, 2020 @ 21:26:05
  Author: felixonmars
Revision: 613770

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-http-conduit/repos/community-staging-x86_64/
  haskell-http-conduit/repos/community-staging-x86_64/PKGBUILD
(from rev 613769, haskell-http-conduit/trunk/PKGBUILD)

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

Copied: haskell-http-conduit/repos/community-staging-x86_64/PKGBUILD (from rev 
613769, haskell-http-conduit/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-04-13 21:26:05 UTC (rev 613770)
@@ -0,0 +1,49 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http-conduit
+pkgname=haskell-http-conduit
+pkgver=2.3.7.3
+pkgrel=108
+pkgdesc="HTTP client package with conduit interface and HTTPS support"
+url="https://www.yesodweb.com/book/http-conduit;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-attoparsec' 'haskell-conduit' 
'haskell-conduit-extra'
+ 'haskell-http-client' 'haskell-http-client-tls' 'haskell-http-types' 
'haskell-resourcet'
+ 'haskell-unliftio-core')
+makedepends=('ghc' 'haskell-blaze-builder' 'haskell-case-insensitive' 
'haskell-connection'
+ 'haskell-cookie' 'haskell-data-default-class' 'haskell-hunit' 
'haskell-hspec'
+ 'haskell-lifted-base' 'haskell-network' 
'haskell-streaming-commons' 'haskell-temporary'
+ 'haskell-unliftio' 'haskell-utf8-string' 'haskell-wai' 
'haskell-wai-conduit'
+ 'haskell-warp' 'haskell-warp-tls')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('0b3733ce031299ee3b93ca44d45a913e384dbfcd43efe5c65076efb5ff8266058ecb07e90f699ebb54d2d37f4a299be79717c3988e72cce631d417ba21ed4d08')
+
+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
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test || warning "Tests failed"
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


  1   2   3   4   >