[arch-commits] Commit in gtk3/repos/testing-x86_64 (13 files)

2019-05-31 Thread Jan Steffens via arch-commits
Date: Saturday, June 1, 2019 @ 04:12:04
  Author: heftig
Revision: 354592

archrelease: copy trunk to testing-x86_64

Added:
  
gtk3/repos/testing-x86_64/0001-libgail-util-Fix-symbol-visibility-with-meson.patch
(from rev 354591, 
gtk3/trunk/0001-libgail-util-Fix-symbol-visibility-with-meson.patch)
  gtk3/repos/testing-x86_64/PKGBUILD
(from rev 354591, gtk3/trunk/PKGBUILD)
  gtk3/repos/testing-x86_64/gtk-query-immodules-3.0.hook
(from rev 354591, gtk3/trunk/gtk-query-immodules-3.0.hook)
  gtk3/repos/testing-x86_64/gtk-update-icon-cache.hook
(from rev 354591, gtk3/trunk/gtk-update-icon-cache.hook)
  gtk3/repos/testing-x86_64/gtk-update-icon-cache.script
(from rev 354591, gtk3/trunk/gtk-update-icon-cache.script)
  gtk3/repos/testing-x86_64/gtk3.install
(from rev 354591, gtk3/trunk/gtk3.install)
  gtk3/repos/testing-x86_64/settings.ini
(from rev 354591, gtk3/trunk/settings.ini)
Deleted:
  gtk3/repos/testing-x86_64/PKGBUILD
  gtk3/repos/testing-x86_64/gtk-query-immodules-3.0.hook
  gtk3/repos/testing-x86_64/gtk-update-icon-cache.hook
  gtk3/repos/testing-x86_64/gtk-update-icon-cache.script
  gtk3/repos/testing-x86_64/gtk3.install
  gtk3/repos/testing-x86_64/settings.ini

--+
 0001-libgail-util-Fix-symbol-visibility-with-meson.patch |  106 +
 PKGBUILD |  150 ++---
 gtk-query-immodules-3.0.hook |   22 -
 gtk-update-icon-cache.hook   |   26 +-
 gtk-update-icon-cache.script |   20 -
 gtk3.install |6 
 settings.ini |8 
 7 files changed, 224 insertions(+), 114 deletions(-)

Copied: 
gtk3/repos/testing-x86_64/0001-libgail-util-Fix-symbol-visibility-with-meson.patch
 (from rev 354591, 
gtk3/trunk/0001-libgail-util-Fix-symbol-visibility-with-meson.patch)
===
--- 0001-libgail-util-Fix-symbol-visibility-with-meson.patch
(rev 0)
+++ 0001-libgail-util-Fix-symbol-visibility-with-meson.patch2019-06-01 
04:12:04 UTC (rev 354592)
@@ -0,0 +1,106 @@
+From 8cf270451b9a14fc73a6ca32d81febfeae026c30 Mon Sep 17 00:00:00 2001
+Message-Id: 
<8cf270451b9a14fc73a6ca32d81febfeae026c30.1559359751.git.jan.steff...@gmail.com>
+From: "Jan Alexander Steffens (heftig)" 
+Date: Sat, 1 Jun 2019 05:27:43 +0200
+Subject: [PATCH] libgail-util: Fix symbol visibility with meson
+
+Autotools didn't add -fvisibility=hidden to the build of libgail-util-3.
+Meson does and produced a library that exported no symbols.
+---
+ libgail-util/gailmisc.h | 7 +++
+ libgail-util/gailtextutil.h | 6 ++
+ 2 files changed, 13 insertions(+)
+
+diff --git a/libgail-util/gailmisc.h b/libgail-util/gailmisc.h
+index a0145ab180..b6a160128d 100644
+--- a/libgail-util/gailmisc.h
 b/libgail-util/gailmisc.h
+@@ -24,47 +24,54 @@
+ 
+ G_BEGIN_DECLS
+ 
++GDK_AVAILABLE_IN_ALL
+ AtkAttributeSet* gail_misc_add_attribute  (AtkAttributeSet   
*attrib_set,
+AtkTextAttribute   attr,
+gchar *value);
++GDK_AVAILABLE_IN_ALL
+ AtkAttributeSet* gail_misc_layout_get_run_attributes
+   (AtkAttributeSet   
*attrib_set,
+PangoLayout   *layout,
+const gchar   *text,
+gint  offset,
+gint  
*start_offset,
+gint  
*end_offset);
+ 
++GDK_AVAILABLE_IN_ALL
+ AtkAttributeSet* gail_misc_get_default_attributes (AtkAttributeSet   
*attrib_set,
+PangoLayout   *layout,
+GtkWidget *widget);
+ 
++GDK_AVAILABLE_IN_ALL
+ void gail_misc_get_extents_from_pango_rectangle
+   (GtkWidget *widget,
+PangoRectangle
*char_rect,
+gint  x_layout,
+gint  y_layout,
+gint  *x,
+  gint  *y,
+gint  *width,
+gint  *height,
+AtkCoordType  coords);
+ 

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

2019-05-31 Thread Jan Steffens via arch-commits
Date: Saturday, June 1, 2019 @ 04:11:01
  Author: heftig
Revision: 354591

3.24.8+167+gdd25499f1e-1

Added:
  gtk3/trunk/0001-libgail-util-Fix-symbol-visibility-with-meson.patch
Modified:
  gtk3/trunk/PKGBUILD

--+
 0001-libgail-util-Fix-symbol-visibility-with-meson.patch |  106 +
 PKGBUILD |8 
 2 files changed, 112 insertions(+), 2 deletions(-)

Added: 0001-libgail-util-Fix-symbol-visibility-with-meson.patch
===
--- 0001-libgail-util-Fix-symbol-visibility-with-meson.patch
(rev 0)
+++ 0001-libgail-util-Fix-symbol-visibility-with-meson.patch2019-06-01 
04:11:01 UTC (rev 354591)
@@ -0,0 +1,106 @@
+From 8cf270451b9a14fc73a6ca32d81febfeae026c30 Mon Sep 17 00:00:00 2001
+Message-Id: 
<8cf270451b9a14fc73a6ca32d81febfeae026c30.1559359751.git.jan.steff...@gmail.com>
+From: "Jan Alexander Steffens (heftig)" 
+Date: Sat, 1 Jun 2019 05:27:43 +0200
+Subject: [PATCH] libgail-util: Fix symbol visibility with meson
+
+Autotools didn't add -fvisibility=hidden to the build of libgail-util-3.
+Meson does and produced a library that exported no symbols.
+---
+ libgail-util/gailmisc.h | 7 +++
+ libgail-util/gailtextutil.h | 6 ++
+ 2 files changed, 13 insertions(+)
+
+diff --git a/libgail-util/gailmisc.h b/libgail-util/gailmisc.h
+index a0145ab180..b6a160128d 100644
+--- a/libgail-util/gailmisc.h
 b/libgail-util/gailmisc.h
+@@ -24,47 +24,54 @@
+ 
+ G_BEGIN_DECLS
+ 
++GDK_AVAILABLE_IN_ALL
+ AtkAttributeSet* gail_misc_add_attribute  (AtkAttributeSet   
*attrib_set,
+AtkTextAttribute   attr,
+gchar *value);
++GDK_AVAILABLE_IN_ALL
+ AtkAttributeSet* gail_misc_layout_get_run_attributes
+   (AtkAttributeSet   
*attrib_set,
+PangoLayout   *layout,
+const gchar   *text,
+gint  offset,
+gint  
*start_offset,
+gint  
*end_offset);
+ 
++GDK_AVAILABLE_IN_ALL
+ AtkAttributeSet* gail_misc_get_default_attributes (AtkAttributeSet   
*attrib_set,
+PangoLayout   *layout,
+GtkWidget *widget);
+ 
++GDK_AVAILABLE_IN_ALL
+ void gail_misc_get_extents_from_pango_rectangle
+   (GtkWidget *widget,
+PangoRectangle
*char_rect,
+gint  x_layout,
+gint  y_layout,
+gint  *x,
+  gint  *y,
+gint  *width,
+gint  *height,
+AtkCoordType  coords);
+ 
++GDK_AVAILABLE_IN_ALL
+ gint gail_misc_get_index_at_point_in_layout
+   (GtkWidget *widget,
+PangoLayout   *layout, 
+gint  x_layout,
+gint  y_layout,
+gint  x,
+gint  y,
+AtkCoordType  coords);
+ 
++GDK_AVAILABLE_IN_ALL
+ void   gail_misc_get_origins(GtkWidget *widget,
+gint  
*x_window,
+  gint  *y_window,
+  gint  
*x_toplevel,
+  gint  
*y_toplevel);
+ 
++GDK_AVAILABLE_IN_ALL
+ AtkAttributeSet* gail_misc_buffer_get_run_attributes
+   (GtkTextBuffer *buffer,
+gint  offset,
+diff --git a/libgail-util/gailtextutil.h b/libgail-util/gailtextutil.h
+index 7d8cf9ec20..5cc1a537fb 100644
+--- a/libgail-util/gailtextutil.h
 

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

2019-05-31 Thread Jan Steffens via arch-commits
Date: Saturday, June 1, 2019 @ 03:54:03
  Author: heftig
Revision: 476226

archrelease: copy trunk to community-staging-x86_64

Added:
  tp_smapi/repos/community-staging-x86_64/
  tp_smapi/repos/community-staging-x86_64/PKGBUILD
(from rev 476225, tp_smapi/trunk/PKGBUILD)

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

Copied: tp_smapi/repos/community-staging-x86_64/PKGBUILD (from rev 476225, 
tp_smapi/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-06-01 03:54:03 UTC (rev 476226)
@@ -0,0 +1,49 @@
+# 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=114
+pkgdesc="Modules for ThinkPad's SMAPI functionality"
+arch=('x86_64')
+url='https://github.com/evgeni/tp_smapi'
+license=('GPL')
+depends=('linux')
+makedepends=('linux-headers' 'git')
+_extradir=/usr/lib/modules/extramodules-ARCH
+_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="$(<$_extradir/version)" EXTRA_CFLAGS=
+}
+
+package() {
+  cd $pkgname
+
+  # install kernel modules
+  find . -name "*.ko" -exec install -Dt "$pkgdir$_extradir" {} +
+
+  # compress kernel modules
+  find "$pkgdir" -name "*.ko" -exec xz {} +
+
+  # load module on startup
+  echo tp_smapi | install -Dm644 /dev/stdin 
"$pkgdir/usr/lib/modules-load.d/$pkgname.conf"
+}


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

2019-05-31 Thread Jan Steffens via arch-commits
Date: Saturday, June 1, 2019 @ 03:54:02
  Author: heftig
Revision: 476224

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: vhba-module/repos/community-staging-x86_64/60-vhba.rules (from rev 
476216, vhba-module/trunk/60-vhba.rules)
===
--- community-staging-x86_64/60-vhba.rules  (rev 0)
+++ community-staging-x86_64/60-vhba.rules  2019-06-01 03:54:02 UTC (rev 
476224)
@@ -0,0 +1 @@
+ACTION=="add", KERNEL=="vhba_ctl", NAME="vhba_ctl", MODE="0660", OWNER="root", 
GROUP="cdemu", TAG+="uaccess"

Copied: vhba-module/repos/community-staging-x86_64/PKGBUILD (from rev 476216, 
vhba-module/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-06-01 03:54:02 UTC (rev 476224)
@@ -0,0 +1,52 @@
+# Maintainer: Ray Rashif 
+# Contributor: Mateusz Herych 
+# Contributor: Charles Lindsay 
+
+pkgbase=vhba-module
+pkgname=(vhba-module vhba-module-dkms)
+pkgver=20190410
+pkgrel=17
+pkgdesc="Kernel module that emulates SCSI devices"
+url="http://cdemu.sourceforge.net/;
+arch=(x86_64)
+license=(GPL)
+depends=('linux')
+makedepends=('linux-headers')
+_extramodules=extramodules-ARCH
+source=("https://downloads.sourceforge.net/cdemu/$pkgbase-$pkgver.tar.bz2;
+60-vhba.rules dkms.conf)
+sha256sums=('0c18954a8c2c7e208b20afdf785501b23be9382345e6577eba5d653002862394'
+'3052cb1cadbdf4bfb0b588bb8ed80691940d8dd63dc5502943d597eaf9f40c3b'
+'8cab0ebb4fee72069d63616b0983f105b98d1261e72e9bef5509a6e60bc382a7')
+
+prepare() {
+  cd $pkgbase-$pkgver
+  sed -i 's/20190302/20190410/' Makefile  # Fixup VHBA_VERSION
+}
+
+build() {
+  cd $pkgbase-$pkgver
+  make KERNELRELEASE="$(cat /usr/lib/modules/$_extramodules/version)"
+}
+
+package_vhba-module() {
+  cd $pkgbase-$pkgver
+  install -Dt "$pkgdir/usr/lib/modules/$_extramodules" -m644 *.ko
+  install -Dt "$pkgdir/usr/lib/udev/rules.d" -m644 ../60-vhba.rules
+  echo 'g cdemu - -' | install -Dm644 /dev/stdin 
"$pkgdir/usr/lib/sysusers.d/cdemu.conf"
+
+  find "$pkgdir" -name '*.ko' -exec xz {} +
+}
+
+package_vhba-module-dkms() {
+  depends=(dkms)
+  provides=("vhba-module=$pkgver-$pkgrel")
+  conflicts=(vhba-module)
+
+  cd $pkgbase-$pkgver
+  install -Dt "$pkgdir/usr/src/$pkgbase-$pkgver" -m644 Makefile vhba.c 
../dkms.conf
+  install -Dt "$pkgdir/usr/lib/udev/rules.d" -m644 ../60-vhba.rules
+  echo 'g cdemu - -' | install -Dm644 /dev/stdin 
"$pkgdir/usr/lib/sysusers.d/cdemu.conf"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: vhba-module/repos/community-staging-x86_64/dkms.conf (from rev 476216, 
vhba-module/trunk/dkms.conf)
===
--- community-staging-x86_64/dkms.conf  (rev 0)
+++ community-staging-x86_64/dkms.conf  2019-06-01 03:54:02 UTC (rev 476224)
@@ -0,0 +1,9 @@
+PACKAGE_NAME="vhba-module"
+PACKAGE_VERSION="#MODULE_VERSION#"
+AUTOINSTALL="yes"
+
+MAKE[0]="make KERNELRELEASE=$kernelver"
+CLEAN="make clean"
+
+BUILT_MODULE_NAME[0]="vhba"
+DEST_MODULE_LOCATION[0]="/kernel/drivers/scsi"


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

2019-05-31 Thread Jan Steffens via arch-commits
Date: Saturday, June 1, 2019 @ 03:54:01
  Author: heftig
Revision: 476222

archrelease: copy trunk to community-staging-x86_64

Added:
  virtualbox-modules-arch/repos/community-staging-x86_64/
  virtualbox-modules-arch/repos/community-staging-x86_64/PKGBUILD
(from rev 476216, virtualbox-modules-arch/trunk/PKGBUILD)

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

Copied: virtualbox-modules-arch/repos/community-staging-x86_64/PKGBUILD (from 
rev 476216, virtualbox-modules-arch/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-06-01 03:54:01 UTC (rev 476222)
@@ -0,0 +1,52 @@
+# Maintainer: Sébastien Luttringer
+# Contributor: Ionut Biru 
+
+pkgbase=virtualbox-modules-arch
+pkgname=('virtualbox-host-modules-arch' 'virtualbox-guest-modules-arch')
+pkgver=6.0.8
+pkgrel=8
+arch=('x86_64')
+url='http://virtualbox.org'
+license=('GPL')
+depends=('linux')
+makedepends=('linux-headers'
+ "virtualbox-host-dkms>=$pkgver"
+ "virtualbox-guest-dkms>=$pkgver")
+
+_extramodules=extramodules-ARCH
+
+package_virtualbox-host-modules-arch(){
+  _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
+  pkgdesc='Virtualbox host kernel modules for Arch Kernel'
+  replaces=('virtualbox-modules' 'virtualbox-host-modules')
+  conflicts=('virtualbox-modules' 'virtualbox-host-modules'
+ 'virtualbox-host-dkms')
+  provides=('VIRTUALBOX-HOST-MODULES')
+
+  cd "/var/lib/dkms/vboxhost/${pkgver}_OSE/$_kernver/$CARCH/module"
+  install -Dt "$pkgdir/usr/lib/modules/$_extramodules" -m0644 *
+
+  # compress each module individually
+  find "$pkgdir" -name '*.ko' -exec xz -T1 {} +
+
+  # systemd module loading
+  printf '%s\n' vboxdrv vboxpci vboxnetadp vboxnetflt |
+install -D -m0644 /dev/stdin "$pkgdir/usr/lib/modules-load.d/$pkgname.conf"
+}
+
+package_virtualbox-guest-modules-arch(){
+  _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
+  pkgdesc='Virtualbox guest kernel modules for Arch Kernel'
+  replaces=('virtualbox-archlinux-modules' 'virtualbox-guest-modules')
+  conflicts=('virtualbox-archlinux-modules' 'virtualbox-guest-modules'
+ 'virtualbox-guest-dkms')
+  provides=('VIRTUALBOX-GUEST-MODULES')
+
+  cd "/var/lib/dkms/vboxsf/${pkgver}_OSE/$_kernver/$CARCH/module"
+  install -Dt "$pkgdir/usr/lib/modules/$_extramodules" -m0644 *
+
+  # compress each module individually
+  find "$pkgdir" -name '*.ko' -exec xz -T1 {} +
+}
+
+# vim:set sw=2 et:


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

2019-05-31 Thread Jan Steffens via arch-commits
Date: Saturday, June 1, 2019 @ 03:54:00
  Author: heftig
Revision: 476220

archrelease: copy trunk to community-staging-x86_64

Added:
  ndiswrapper-arch/repos/community-staging-x86_64/
  ndiswrapper-arch/repos/community-staging-x86_64/PKGBUILD
(from rev 476216, ndiswrapper-arch/trunk/PKGBUILD)
  ndiswrapper-arch/repos/community-staging-x86_64/linux-4.11.patch
(from rev 476216, ndiswrapper-arch/trunk/linux-4.11.patch)
  ndiswrapper-arch/repos/community-staging-x86_64/linux-4.13.patch
(from rev 476216, ndiswrapper-arch/trunk/linux-4.13.patch)
  ndiswrapper-arch/repos/community-staging-x86_64/linux-4.15.patch
(from rev 476216, ndiswrapper-arch/trunk/linux-4.15.patch)
  ndiswrapper-arch/repos/community-staging-x86_64/linux-5.0.patch
(from rev 476217, ndiswrapper-arch/trunk/linux-5.0.patch)

--+
 PKGBUILD |   43 +++
 linux-4.11.patch |   55 ++
 linux-4.13.patch |   27 +++
 linux-4.15.patch |  199 +
 linux-5.0.patch  |   25 ++
 5 files changed, 349 insertions(+)

Copied: ndiswrapper-arch/repos/community-staging-x86_64/PKGBUILD (from rev 
476216, ndiswrapper-arch/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-06-01 03:54:00 UTC (rev 476220)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+# Contributor: maz-1 
+
+pkgname=ndiswrapper-arch
+pkgver=1.61
+_extramodules=extramodules-ARCH
+pkgrel=37
+pkgdesc="Module for NDIS (Windows Network Drivers) drivers supplied by 
vendors, kernel module for Arch kernel"
+arch=('x86_64')
+url="http://sourceforge.net/projects/ndiswrapper/;
+license=('GPL')
+depends=('linux')
+makedepends=('linux-headers')
+provides=('NDISWRAPPER-MODULE')
+replaces=('ndiswrapper-module')
+source=("ndiswrapper-$pkgver.tar.gz::https://github.com/pgiri/ndiswrapper/archive/v$pkgver.tar.gz;
+'linux-4.11.patch' 'linux-4.13.patch' 'linux-4.15.patch' 
'linux-5.0.patch')
+sha512sums=('85f550f2952137529e0e9855f4d94b7bbc64cbf8a84a31c1b75a4be09d97478a997e64fa6e1ff4e0d29a97a79fc3d4dab1ebdaa9edb3d627a215f47aa4d52823'
+
'5350308406457658fb31c378d6f3dd2a34c7331aebe5bdc80744bf955f1144e88181441704ccc7532f55d6fbe8d410440fb8838c2955d688dde4b55f74fc6ba5'
+
'de026a271cbfbefee99bc00a13c50be87294e5e2c5407d23cff6ce2d2a0c853542ce4f7e3e150741c7e8e32466fb1ab7cab266957da5bcca8376fb0f38e94482'
+
'52bd3d2025ffb8a3f6a4a1a1fee1b87d3811f30a210a54aaa7b37838eb256cd766bc1aeda24e4b4f4829992584931ecd97a042794c9b854bd1ebbf452dce2abf'
+
'4918dcebd62ae577401469719f1a8866edd3dc97667aa3de287af1530aa68f50dc2508c883ecd2c9d1fe20f226ecd342b04b08f7a2cace0e531e5f49bbc12f2c')
+
+prepare() {
+  cd ndiswrapper-$pkgver
+  patch --no-backup-if-mismatch -p1 -i "$srcdir"/linux-4.11.patch
+  patch --no-backup-if-mismatch -p1 -i "$srcdir"/linux-4.13.patch
+  patch --no-backup-if-mismatch -p1 -i "$srcdir"/linux-4.15.patch -d 
ndiswrapper
+  patch --no-backup-if-mismatch -p1 -i "$srcdir"/linux-5.0.patch
+}
+
+build() {
+  _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
+
+  cd ndiswrapper-$pkgver/ndiswrapper
+  make -C driver KVERS_UNAME="$_kernver"
+}
+
+package() {
+  cd ndiswrapper-$pkgver/ndiswrapper
+  install -Dt "$pkgdir/usr/lib/modules/$_extramodules" -m644 driver/*.ko
+  find "$pkgdir" -name '*.ko' -exec xz {} +
+}

Copied: ndiswrapper-arch/repos/community-staging-x86_64/linux-4.11.patch (from 
rev 476216, ndiswrapper-arch/trunk/linux-4.11.patch)
===
--- community-staging-x86_64/linux-4.11.patch   (rev 0)
+++ community-staging-x86_64/linux-4.11.patch   2019-06-01 03:54:00 UTC (rev 
476220)
@@ -0,0 +1,55 @@
+commit fa2aeeccd5366378ca2eb83c6daee64b511fe792
+Author: Felix Yan 
+Date:   Tue May 16 01:32:56 2017 +0800
+
+Add support for Linux 4.11+
+
+diff --git a/ndiswrapper/driver/ndis.c b/ndiswrapper/driver/ndis.c
+index c1913a05..2ab4dd21 100644
+--- a/ndiswrapper/driver/ndis.c
 b/ndiswrapper/driver/ndis.c
+@@ -2258,7 +2258,9 @@ wstdcall void NdisMIndicateReceivePacket(struct 
ndis_mp_block *nmb,
+   WARNING("empty packet ignored");
+   continue;
+   }
++#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 11, 0)
+   wnd->net_dev->last_rx = jiffies;
++#endif
+   /* get total number of bytes in packet */
+   NdisGetFirstBufferFromPacketSafe(packet, , ,
+, _length,
+@@ -2346,7 +2348,9 @@ wstdcall void EthRxIndicateHandler(struct ndis_mp_block 
*nmb, void *rx_ctx,
+   ERROR("nmb is NULL");
+   EXIT3(return);
+   }
++#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 11, 0)
+   wnd->net_dev->last_rx = jiffies;
++#endif
+ 
+   if (look_ahead_size < packet_size) {
+

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

2019-05-31 Thread Jan Steffens via arch-commits
Date: Saturday, June 1, 2019 @ 03:54:01
  Author: heftig
Revision: 476221

archrelease: copy trunk to community-staging-x86_64

Added:
  acpi_call/repos/community-staging-x86_64/
  acpi_call/repos/community-staging-x86_64/PKGBUILD
(from rev 476216, acpi_call/trunk/PKGBUILD)
  acpi_call/repos/community-staging-x86_64/dkms.conf
(from rev 476216, acpi_call/trunk/dkms.conf)

---+
 PKGBUILD  |   61 
 dkms.conf |9 
 2 files changed, 70 insertions(+)

Copied: acpi_call/repos/community-staging-x86_64/PKGBUILD (from rev 476216, 
acpi_call/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-06-01 03:54:01 UTC (rev 476221)
@@ -0,0 +1,61 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: mortzu 
+# Contributor: fnord0 
+
+pkgbase=acpi_call
+pkgname=(acpi_call acpi_call-dkms)
+pkgver=1.1.0
+pkgrel=220
+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')
+depends=('linux')
+makedepends=('linux-headers')
+_extramodules=extramodules-ARCH
+source=("acpi_call-${pkgver}.tar.gz::https://github.com/mkottman/acpi_call/archive/v${pkgver}.tar.gz;
+dkms.conf)
+sha256sums=('d0d14b42944282724fca76f57d598eed794ef97448f387d1c489d85ad813f2f0'
+'32e6ea6523b13132c6c7838bba7fbf3d040ba2d35a892c2c356245612720df8a')
+
+prepare() {
+  cd $pkgbase-$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 $pkgbase-$pkgver
+  make KVERSION="$(cat /usr/lib/modules/$_extramodules/version)"
+}
+
+package_acpi_call() {
+  cd $pkgbase-$pkgver
+  install -Dt "$pkgdir/usr/lib/modules/$_extramodules" -m644 *.ko
+  find "$pkgdir" -name '*.ko' -exec xz {} +
+
+  echo acpi_call | install -Dm644 /dev/stdin 
"$pkgdir/usr/lib/modules-load.d/acpi_call.conf"
+
+  mkdir -p "$pkgdir/usr/share/acpi_call"
+  cp -t "$pkgdir/usr/share/acpi_call" -dr --no-preserve=ownership examples 
support
+}
+
+package_acpi_call-dkms() {
+  depends=(dkms)
+  provides=("acpi_call=$pkgver-$pkgrel")
+  conflicts=(acpi_call)
+
+  cd $pkgbase-$pkgver
+  install -Dt "$pkgdir/usr/src/$pkgbase-$pkgver" -m644 Makefile acpi_call.c 
../dkms.conf
+
+  echo acpi_call | install -Dm644 /dev/stdin 
"$pkgdir/usr/lib/modules-load.d/acpi_call.conf"
+
+  mkdir -p "$pkgdir/usr/share/acpi_call"
+  cp -t "$pkgdir/usr/share/acpi_call" -dr --no-preserve=ownership examples 
support
+}
+
+# vim:set ts=2 sw=2 et:

Copied: acpi_call/repos/community-staging-x86_64/dkms.conf (from rev 476216, 
acpi_call/trunk/dkms.conf)
===
--- community-staging-x86_64/dkms.conf  (rev 0)
+++ community-staging-x86_64/dkms.conf  2019-06-01 03:54:01 UTC (rev 476221)
@@ -0,0 +1,9 @@
+PACKAGE_NAME="acpi_call"
+PACKAGE_VERSION="#MODULE_VERSION#"
+AUTOINSTALL="yes"
+
+MAKE[0]="make KVERSION=$kernelver"
+CLEAN="make clean"
+
+BUILT_MODULE_NAME[0]="acpi_call"
+DEST_MODULE_LOCATION[0]="/kernel/drivers/acpi"


[arch-commits] Commit in nvidia-390xx/repos (4 files)

2019-05-31 Thread Jan Steffens via arch-commits
Date: Saturday, June 1, 2019 @ 03:54:05
  Author: heftig
Revision: 354584

archrelease: copy trunk to staging-x86_64

Added:
  nvidia-390xx/repos/staging-x86_64/
  nvidia-390xx/repos/staging-x86_64/PKGBUILD
(from rev 354582, nvidia-390xx/trunk/PKGBUILD)
  nvidia-390xx/repos/staging-x86_64/kernel-4.16.patch
(from rev 354582, nvidia-390xx/trunk/kernel-4.16.patch)
  nvidia-390xx/repos/staging-x86_64/kernel-5.1.patch
(from rev 354582, nvidia-390xx/trunk/kernel-5.1.patch)

---+
 PKGBUILD  |   90 
 kernel-4.16.patch |   33 +
 kernel-5.1.patch  |  130 
 3 files changed, 253 insertions(+)

Copied: nvidia-390xx/repos/staging-x86_64/PKGBUILD (from rev 354582, 
nvidia-390xx/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-06-01 03:54:05 UTC (rev 354584)
@@ -0,0 +1,90 @@
+# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Felix Yan 
+# Contributor: Thomas Baechler 
+
+pkgbase=nvidia-390xx
+pkgname=(nvidia-390xx nvidia-390xx-dkms)
+pkgver=390.116
+_extramodules=extramodules-ARCH
+pkgrel=26
+pkgdesc="NVIDIA drivers for linux, 390xx legacy branch"
+arch=('x86_64')
+url="http://www.nvidia.com/;
+makedepends=("nvidia-390xx-utils=${pkgver}" 'libglvnd' 'linux' 'linux-headers')
+conflicts=('nvidia')
+license=('custom')
+options=('!strip')
+_pkg="NVIDIA-Linux-x86_64-${pkgver}-no-compat32"
+source=("http://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/${_pkg}.run;
+'kernel-4.16.patch' 'kernel-5.1.patch')
+sha256sums=('de85a2eea39ca16e25645b345259b01fbe858b833286b7e6785afa273009ef6f'
+'622ac792ec200b2239cb663c0010392118b78c9904973d82cd261165c16d6385'
+'d92899d4f7a40e2c3cad92d067f2f53c3a18c49b34e62e707a93b125aa37640f')
+
+prepare() {
+sh "${_pkg}.run" --extract-only
+cd "${_pkg}"
+
+# Restore phys_to_dma support (still needed for 396.18)
+# https://bugs.archlinux.org/task/58074
+patch -Np1 -i ../kernel-4.16.patch
+
+patch -Np1 -i ../kernel-5.1.patch
+
+cp -a kernel kernel-dkms
+cd kernel-dkms
+sed -i "s/__VERSION_STRING/${pkgver}/" dkms.conf
+sed -i 's/__JOBS/`nproc`/' dkms.conf
+sed -i 's/__DKMS_MODULES//' dkms.conf
+sed -i '$iBUILT_MODULE_NAME[0]="nvidia"\
+DEST_MODULE_LOCATION[0]="/kernel/drivers/video"\
+BUILT_MODULE_NAME[1]="nvidia-uvm"\
+DEST_MODULE_LOCATION[1]="/kernel/drivers/video"\
+BUILT_MODULE_NAME[2]="nvidia-modeset"\
+DEST_MODULE_LOCATION[2]="/kernel/drivers/video"\
+BUILT_MODULE_NAME[3]="nvidia-drm"\
+DEST_MODULE_LOCATION[3]="/kernel/drivers/video"' dkms.conf
+
+# Gift for linux-rt guys
+sed -i 's/NV_EXCLUDE_BUILD_MODULES/IGNORE_PREEMPT_RT_PRESENCE=1 
NV_EXCLUDE_BUILD_MODULES/' dkms.conf
+}
+
+build() {
+_kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+cd "${_pkg}"/kernel
+make SYSSRC=/usr/lib/modules/"${_kernver}/build" module
+}
+
+package_nvidia-390xx() {
+pkgdesc="NVIDIA drivers for linux, 390xx legacy branch"
+depends=('linux' "nvidia-390xx-utils=${pkgver}" 'libglvnd')
+
+install -Dt "${pkgdir}/usr/lib/modules/${_extramodules}" -m644 \
+  "${srcdir}/${_pkg}/kernel"/nvidia{,-modeset,-drm,-uvm}.ko
+
+find "${pkgdir}" -name '*.ko' -exec gzip -n {} +
+
+echo "blacklist nouveau" |
+install -Dm644 /dev/stdin 
"${pkgdir}/usr/lib/modprobe.d/${pkgname}.conf"
+
+install -Dt "${pkgdir}/usr/share/licenses/${pkgname}" -m644 
"${srcdir}/${_pkg}/LICENSE"
+}
+
+package_nvidia-390xx-dkms() {
+pkgdesc="NVIDIA driver sources for linux, 390xx legacy branch"
+depends=('dkms' "nvidia-390xx-utils=$pkgver" 'libglvnd')
+optdepends=('linux-headers: Build the module for Arch kernel'
+'linux-lts-headers: Build the module for LTS Arch kernel')
+provides=("nvidia-390xx=$pkgver")
+conflicts+=('nvidia-390xx')
+
+cd ${_pkg}
+
+install -dm 755 "${pkgdir}"/usr/src
+cp -dr --no-preserve='ownership' kernel-dkms 
"${pkgdir}/usr/src/nvidia-${pkgver}"
+
+echo "blacklist nouveau" |
+install -Dm644 /dev/stdin 
"${pkgdir}/usr/lib/modprobe.d/${pkgname}.conf"
+
+install -Dt "${pkgdir}/usr/share/licenses/${pkgname}" -m644 
"${srcdir}/${_pkg}/LICENSE"
+}

Copied: nvidia-390xx/repos/staging-x86_64/kernel-4.16.patch (from rev 354582, 
nvidia-390xx/trunk/kernel-4.16.patch)
===
--- staging-x86_64/kernel-4.16.patch(rev 0)
+++ staging-x86_64/kernel-4.16.patch2019-06-01 03:54:05 UTC (rev 354584)
@@ -0,0 +1,33 @@
+diff --git a/kernel/common/inc/nv-linux.h b/kernel/common/inc/nv-linux.h
+index 10fc418..22ef968 100644
+--- a/kernel/common/inc/nv-linux.h
 b/kernel/common/inc/nv-linux.h
+@@ -175,7 +175,11 @@ static inline uid_t __kuid_val(kuid_t uid)
+ 
+ #if 

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

2019-05-31 Thread Jan Steffens via arch-commits
Date: Saturday, June 1, 2019 @ 03:53:58
  Author: heftig
Revision: 476218

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: broadcom-wl/repos/community-staging-x86_64/PKGBUILD (from rev 476216, 
broadcom-wl/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-06-01 03:53:58 UTC (rev 476218)
@@ -0,0 +1,38 @@
+# 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=107
+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')
+depends=("linux${_kernelname}")
+makedepends=("linux${_kernelname}-headers" "${_module}-dkms=${pkgver}")
+
+_extramodules="/usr/lib/modules/extramodules${_kernelname:--ARCH}"
+
+build() {
+_kernver="$(<${_extramodules}/version)"
+
+dkms build --dkmstree "${srcdir}" -m ${_module}/${pkgver} -k ${_kernver}
+}
+
+package() {
+_kernver="$(<${_extramodules}/version)"
+
+install -Dm644 -t "${pkgdir}${_extramodules}" \
+${_module}/${pkgver}/${_kernver}/${CARCH}/module/*
+
+_license="/usr/share/licenses/${_module}-dkms"
+if [[ -d ${_license} ]]; then
+install -Dm644 -t "${pkgdir}"/${_license/-dkms/${_kernelname}} 
${_license}/*
+fi
+_modprobe="/usr/lib/modprobe.d/${_module}-dkms.conf"
+if [[ -r ${_modprobe} ]]; then
+install -Dm644 ${_modprobe} 
"${pkgdir}"/${_modprobe/-dkms/${_kernelname}}
+fi
+}


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

2019-05-31 Thread Jan Steffens via arch-commits
Date: Saturday, June 1, 2019 @ 03:54:06
  Author: heftig
Revision: 354585

archrelease: copy trunk to staging-x86_64

Added:
  nvidia/repos/staging-x86_64/
  nvidia/repos/staging-x86_64/PKGBUILD
(from rev 354582, nvidia/trunk/PKGBUILD)
  nvidia/repos/staging-x86_64/fs62142.patch
(from rev 354582, nvidia/trunk/fs62142.patch)

---+
 PKGBUILD  |   85 
 fs62142.patch |   13 
 2 files changed, 98 insertions(+)

Copied: nvidia/repos/staging-x86_64/PKGBUILD (from rev 354582, 
nvidia/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-06-01 03:54:06 UTC (rev 354585)
@@ -0,0 +1,85 @@
+# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Felix Yan 
+# Contributor: Thomas Baechler 
+
+pkgbase=nvidia
+pkgname=(nvidia nvidia-dkms)
+pkgver=430.14
+_extramodules=extramodules-ARCH
+pkgrel=7
+pkgdesc="NVIDIA drivers for linux"
+arch=('x86_64')
+url="http://www.nvidia.com/;
+makedepends=("nvidia-utils=${pkgver}" 'libglvnd' 'linux' 'linux-headers')
+license=('custom')
+options=('!strip')
+_pkg="NVIDIA-Linux-x86_64-${pkgver}"
+source=("http://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/${_pkg}.run;
+fs62142.patch)
+sha512sums=('9d99d4292cf4943378c225eb95ad3a43fa73f2b0d23e35648d77903045d1fc9223a8753cef93022764c18e823f3fc682d23f0d9a64745457d2e2c8ff20e474be'
+
'df949debf9fed92b3c58322c02685fb344bbfff2920557e7d55ed3f70559f48cd6199bc85e2af170b7e56797f3e9881a53eab8c411f21e75f5abec26eaa47752')
+
+prepare() {
+sh "${_pkg}.run" --extract-only
+cd "${_pkg}"
+
+# Fix https://bugs.archlinux.org/task/62142
+patch -Np1 -i ../fs62142.patch
+
+cp -a kernel kernel-dkms
+cd kernel-dkms
+sed -i "s/__VERSION_STRING/${pkgver}/" dkms.conf
+sed -i 's/__JOBS/`nproc`/' dkms.conf
+sed -i 's/__DKMS_MODULES//' dkms.conf
+sed -i '$iBUILT_MODULE_NAME[0]="nvidia"\
+DEST_MODULE_LOCATION[0]="/kernel/drivers/video"\
+BUILT_MODULE_NAME[1]="nvidia-uvm"\
+DEST_MODULE_LOCATION[1]="/kernel/drivers/video"\
+BUILT_MODULE_NAME[2]="nvidia-modeset"\
+DEST_MODULE_LOCATION[2]="/kernel/drivers/video"\
+BUILT_MODULE_NAME[3]="nvidia-drm"\
+DEST_MODULE_LOCATION[3]="/kernel/drivers/video"' dkms.conf
+
+# Gift for linux-rt guys
+sed -i 's/NV_EXCLUDE_BUILD_MODULES/IGNORE_PREEMPT_RT_PRESENCE=1 
NV_EXCLUDE_BUILD_MODULES/' dkms.conf
+}
+
+build() {
+_kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+cd "${_pkg}"/kernel
+make SYSSRC=/usr/lib/modules/"${_kernver}/build" module
+}
+
+package_nvidia() {
+pkgdesc="NVIDIA drivers for linux"
+depends=('linux' "nvidia-utils=${pkgver}" 'libglvnd')
+
+install -Dt "${pkgdir}/usr/lib/modules/${_extramodules}" -m644 \
+  "${srcdir}/${_pkg}/kernel"/nvidia{,-modeset,-drm,-uvm}.ko
+
+find "${pkgdir}" -name '*.ko' -exec gzip -n {} +
+
+echo "blacklist nouveau" |
+install -Dm644 /dev/stdin 
"${pkgdir}/usr/lib/modprobe.d/${pkgname}.conf"
+
+install -Dt "${pkgdir}/usr/share/licenses/${pkgname}" -m644 
"${srcdir}/${_pkg}/LICENSE"
+}
+
+package_nvidia-dkms() {
+pkgdesc="NVIDIA driver sources for linux"
+depends=('dkms' "nvidia-utils=$pkgver" 'libglvnd')
+optdepends=('linux-headers: Build the module for Arch kernel'
+'linux-lts-headers: Build the module for LTS Arch kernel')
+provides=("nvidia=$pkgver")
+conflicts+=('nvidia')
+
+cd ${_pkg}
+
+install -dm 755 "${pkgdir}"/usr/src
+cp -dr --no-preserve='ownership' kernel-dkms 
"${pkgdir}/usr/src/nvidia-${pkgver}"
+
+echo "blacklist nouveau" |
+install -Dm644 /dev/stdin 
"${pkgdir}/usr/lib/modprobe.d/${pkgname}.conf"
+
+install -Dt "${pkgdir}/usr/share/licenses/${pkgname}" -m644 
"${srcdir}/${_pkg}/LICENSE"
+}

Copied: nvidia/repos/staging-x86_64/fs62142.patch (from rev 354582, 
nvidia/trunk/fs62142.patch)
===
--- staging-x86_64/fs62142.patch(rev 0)
+++ staging-x86_64/fs62142.patch2019-06-01 03:54:06 UTC (rev 354585)
@@ -0,0 +1,13 @@
+diff --git a/kernel/nvidia/nv-dma.c b/kernel/nvidia/nv-dma.c
+index 73cdeed..e691014 100644
+--- a/kernel/nvidia/nv-dma.c
 b/kernel/nvidia/nv-dma.c
+@@ -606,7 +606,7 @@ static NvBool nv_dma_is_map_resource_implemented
+ #if defined(NV_DMA_MAP_RESOURCE_PRESENT)
+ const struct dma_map_ops *ops = get_dma_ops(>dev->dev);
+ 
+-return (ops->map_resource != NULL);
++return (ops && ops->map_resource);
+ #else
+ return NV_FALSE;
+ #endif


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

2019-05-31 Thread Jan Steffens via arch-commits
Date: Saturday, June 1, 2019 @ 03:53:59
  Author: heftig
Revision: 476219

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: deepin-anything-arch/repos/community-staging-x86_64/PKGBUILD (from rev 
476216, deepin-anything-arch/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-06-01 03:53:59 UTC (rev 476219)
@@ -0,0 +1,28 @@
+# Maintainer: Felix Yan 
+
+pkgname=deepin-anything-arch
+pkgver=0.1.0
+_extramodules=extramodules-ARCH
+pkgrel=4
+pkgdesc="Deepin Anything file search tool, kernel module for Arch kernel"
+arch=('x86_64')
+url="https://github.com/linuxdeepin/deepin-anything;
+license=('GPL3')
+depends=('linux')
+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;)
+sha512sums=('892828f7c52bb267993507890329e3f3b03550dd5a575a61a70995ce5d9f8cd27f1f1e5b21d4a1ec213ffc430d5236102a9e49b98a0fc0bf2f9042e719d9bfde')
+
+build() {
+  cd deepin-anything-$pkgver
+  _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
+  make -C kernelmod kdir=/usr/lib/modules/$_kernver/build
+}
+
+package() {
+  cd deepin-anything-$pkgver
+  install -Dt "$pkgdir/usr/lib/modules/$_extramodules" -m644 kernelmod/*.ko
+  find "$pkgdir" -name '*.ko' -exec xz {} +
+}


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

2019-05-31 Thread Jan Steffens via arch-commits
Date: Saturday, June 1, 2019 @ 03:54:02
  Author: heftig
Revision: 476225

archrelease: copy trunk to community-staging-x86_64

Added:
  wireguard-arch/repos/community-staging-x86_64/
  wireguard-arch/repos/community-staging-x86_64/PKGBUILD
(from rev 476219, wireguard-arch/trunk/PKGBUILD)

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

Copied: wireguard-arch/repos/community-staging-x86_64/PKGBUILD (from rev 
476219, wireguard-arch/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-06-01 03:54:02 UTC (rev 476225)
@@ -0,0 +1,27 @@
+# Maintainer: Christian Hesse 
+
+pkgname=wireguard-arch
+pkgver=0.0.20190531
+pkgrel=2
+pkgdesc='Wireguard module for Arch Kernel'
+url='https://www.wireguard.com/'
+arch=('x86_64')
+license=('GPL')
+depends=('linux')
+makedepends=('linux-headers' "wireguard-dkms>=$pkgver")
+conflicts=('wireguard-dkms')
+provides=('WIREGUARD-MODULE')
+
+_extramodules='extramodules-ARCH'
+
+package() {
+  _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
+
+  cd "/var/lib/dkms/wireguard/${pkgver}/$_kernver/$CARCH/module"
+  install -Dt "$pkgdir/usr/lib/modules/$_extramodules" -m0644 *
+
+  # compress each module individually
+  find "$pkgdir" -name '*.ko' -exec xz -T1 {} +
+}
+
+# vim:set sw=2 et:


[arch-commits] Commit in nvidia-340xx/repos (5 files)

2019-05-31 Thread Jan Steffens via arch-commits
Date: Saturday, June 1, 2019 @ 03:54:04
  Author: heftig
Revision: 354583

archrelease: copy trunk to staging-x86_64

Added:
  nvidia-340xx/repos/staging-x86_64/
  nvidia-340xx/repos/staging-x86_64/PKGBUILD
(from rev 354582, nvidia-340xx/trunk/PKGBUILD)
  nvidia-340xx/repos/staging-x86_64/kernel-4.11.patch
(from rev 354582, nvidia-340xx/trunk/kernel-4.11.patch)
  nvidia-340xx/repos/staging-x86_64/kernel-5.0.patch
(from rev 354582, nvidia-340xx/trunk/kernel-5.0.patch)
  nvidia-340xx/repos/staging-x86_64/kernel-5.1.patch
(from rev 354582, nvidia-340xx/trunk/kernel-5.1.patch)

---+
 PKGBUILD  |   76 
 kernel-4.11.patch |   38 ++
 kernel-5.0.patch  |   52 +++
 kernel-5.1.patch  |   43 +
 4 files changed, 209 insertions(+)

Copied: nvidia-340xx/repos/staging-x86_64/PKGBUILD (from rev 354582, 
nvidia-340xx/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-06-01 03:54:04 UTC (rev 354583)
@@ -0,0 +1,76 @@
+# Maintainer: Giancarlo Razzolini 
+# Contributor: Felix Yan 
+# Contributor: Thomas Baechler 
+
+pkgbase=nvidia-340xx
+pkgname=(nvidia-340xx nvidia-340xx-dkms)
+pkgver=340.107
+_extramodules=extramodules-ARCH
+pkgrel=89
+pkgdesc="NVIDIA drivers for linux, 340xx legacy branch"
+arch=('x86_64')
+url="http://www.nvidia.com/;
+makedepends=("nvidia-340xx-utils=${pkgver}" 'linux' 'linux-headers')
+conflicts=('nvidia')
+license=('custom')
+options=('!strip')
+source=("http://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run;
+'kernel-4.11.patch' 'kernel-5.0.patch' 'kernel-5.1.patch')
+sha512sums=('0de6f182d67bd322df7ae04e74c0cde6973c55bfea47a8f2503a29f8a899cd1b801ae4b52d066628df4a4f9c84e5e7547465bdc37d1b87df47af43fdab23466f'
+
'c25d90499e1deb26129a67dd7e953be8c1e31c5770e2b8b64d03af54cf1afec1a52636e74900f8ac468692207ab8a3765a12edd581142c4d2cfd2d6e66ac7ac2'
+
'ad60f9d09b6e8d5038375f9ddaab93341958f9400f40f5175857e44c7f7002d481121dc5d677703551c3cdf24069939ac6a1861920a455acf40e637f24234a56'
+
'4bde7d15d68d21a8254e82cb41b07e55b3fd04054251919159dc440bf3253de76d7066e69b21c33d00d5ba61f88589b5444c2b5765c54cd1c0bcd7300971d499')
+
+_pkg="NVIDIA-Linux-x86_64-${pkgver}-no-compat32"
+
+prepare() {
+sh "${_pkg}.run" --extract-only
+cd "${_pkg}"
+# patches here
+
+patch -Np0 < "${srcdir}/kernel-4.11.patch"
+patch -Np0 < "${srcdir}/kernel-5.0.patch"
+patch -Np0 < "${srcdir}/kernel-5.1.patch"
+
+cp -a kernel kernel-dkms
+}
+
+build() {
+_kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+cd "${_pkg}"/kernel
+make SYSSRC=/usr/lib/modules/"${_kernver}/build" module
+
+cd uvm
+make SYSSRC=/usr/lib/modules/"${_kernver}/build" module
+}
+
+package_nvidia-340xx() {
+pkgdesc="NVIDIA drivers for linux, 340xx legacy branch"
+depends=('linux' "nvidia-340xx-utils=${pkgver}" 'libgl')
+
+install -Dt "${pkgdir}/usr/lib/modules/${_extramodules}" -m644 \
+  "${srcdir}/${_pkg}/kernel"/{nvidia,uvm/nvidia-uvm}.ko
+
+find "${pkgdir}" -name '*.ko' -exec gzip -n {} +
+
+echo "blacklist nouveau" |
+install -Dm644 /dev/stdin 
"${pkgdir}/usr/lib/modprobe.d/${pkgname}.conf"
+}
+
+package_nvidia-340xx-dkms() {
+pkgdesc="NVIDIA driver sources for linux, 340xx legacy branch"
+depends=('dkms' "nvidia-340xx-utils=$pkgver" 'libgl')
+optdepends=('linux-headers: Build the module for Arch kernel'
+'linux-lts-headers: Build the module for LTS Arch kernel')
+provides=("nvidia-340xx=$pkgver")
+conflicts+=('nvidia-340xx')
+
+cd ${_pkg}
+
+install -dm 755 "${pkgdir}"/usr/src
+cp -dr --no-preserve='ownership' kernel-dkms 
"${pkgdir}/usr/src/nvidia-${pkgver}"
+cat "${pkgdir}"/usr/src/nvidia-${pkgver}/uvm/dkms.conf.fragment >> 
"${pkgdir}"/usr/src/nvidia-${pkgver}/dkms.conf
+
+echo "blacklist nouveau" |
+install -Dm644 /dev/stdin 
"${pkgdir}/usr/lib/modprobe.d/${pkgname}.conf"
+}

Copied: nvidia-340xx/repos/staging-x86_64/kernel-4.11.patch (from rev 354582, 
nvidia-340xx/trunk/kernel-4.11.patch)
===
--- staging-x86_64/kernel-4.11.patch(rev 0)
+++ staging-x86_64/kernel-4.11.patch2019-06-01 03:54:04 UTC (rev 354583)
@@ -0,0 +1,38 @@
+--- kernel/uvm/nvidia_uvm_lite.c   2017-09-27 13:50:46.334075042 +0200
 kernel/uvm/nvidia_uvm_lite.c   2017-09-27 13:56:06.358041280 +0200
+@@ -818,7 +818,11 @@
+ }
+ 
+ #if defined(NV_VM_OPERATIONS_STRUCT_HAS_FAULT)
++#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 11, 0)
+ int _fault(struct vm_area_struct *vma, struct vm_fault *vmf)
++#else 
++int _fault(struct vm_fault *vmf)  

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

2019-05-31 Thread Jan Steffens via arch-commits
Date: Saturday, June 1, 2019 @ 03:54:01
  Author: heftig
Revision: 476223

archrelease: copy trunk to community-staging-x86_64

Added:
  bbswitch/repos/community-staging-x86_64/
  bbswitch/repos/community-staging-x86_64/PKGBUILD
(from rev 476216, bbswitch/trunk/PKGBUILD)

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

Copied: bbswitch/repos/community-staging-x86_64/PKGBUILD (from rev 476216, 
bbswitch/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-06-01 03:54:01 UTC (rev 476223)
@@ -0,0 +1,38 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: M0Rf30
+# Contributor: Samsagax 
+
+pkgbase=bbswitch
+pkgname=(bbswitch bbswitch-dkms)
+pkgver=0.8
+pkgrel=226
+pkgdesc="Kernel module allowing to switch dedicated graphics card on Optimus 
laptops"
+arch=('x86_64')
+url="http://github.com/Bumblebee-Project/bbswitch;
+license=('GPL')
+depends=('linux')
+makedepends=('linux-headers')
+_extramodules=extramodules-ARCH
+source=("${pkgbase}-${pkgver}.tar.gz::https://github.com/Bumblebee-Project/bbswitch/archive/v${pkgver}.tar.gz;)
+md5sums=('5b116b31ace3604ddf9d1fc1f4bc5807')
+
+build() {
+  cd ${pkgbase}-${pkgver}
+  _kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+  make KDIR=/lib/modules/${_kernver}/build
+}
+
+package_bbswitch() {
+  cd ${pkgbase}-${pkgver}
+  install -Dt "${pkgdir}/usr/lib/modules/${_extramodules}" -m644 *.ko
+  find "${pkgdir}" -name '*.ko' -exec xz {} +
+}
+
+package_bbswitch-dkms() {
+  depends=('dkms')
+  conflicts=('bbswitch')
+  provides=('bbswitch')
+
+  cd ${pkgbase}-${pkgver}
+  install -Dt "${pkgdir}/usr/src/${pkgbase}-${pkgver}" -m644 Makefile 
bbswitch.c dkms/dkms.conf
+}


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

2019-05-31 Thread Jan Steffens via arch-commits
Date: Saturday, June 1, 2019 @ 03:53:57
  Author: heftig
Revision: 476217

archrelease: copy trunk to community-staging-x86_64

Added:
  r8168/repos/community-staging-x86_64/
  r8168/repos/community-staging-x86_64/PKGBUILD
(from rev 476216, r8168/trunk/PKGBUILD)

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

Copied: r8168/repos/community-staging-x86_64/PKGBUILD (from rev 476216, 
r8168/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-06-01 03:53:57 UTC (rev 476217)
@@ -0,0 +1,37 @@
+# Maintainer: Massimiliano Torromeo 
+# Contributor: Bob Fanger < bfanger(at)gmail >
+# Contributor: Filip , Det < nimetonmaili(at)gmail >
+
+pkgname=r8168
+pkgver=8.047.01
+pkgrel=16
+pkgdesc="A kernel module for Realtek 8168 network cards"
+url="http://www.realtek.com.tw;
+license=("GPL")
+arch=('x86_64')
+depends=('glibc' 'linux')
+makedepends=('linux-headers')
+source=(https://github.com/mtorromeo/r8168/archive/$pkgver/$pkgname-$pkgver.tar.gz)
+sha256sums=('d298c4b52bb68b494230c219879eaf57cabe255f3475f7a792f76ad7fd83a0eb')
+
+build() {
+   KERNEL_VERSION=$(

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

2019-05-31 Thread Jan Steffens via arch-commits
Date: Saturday, June 1, 2019 @ 03:51:49
  Author: heftig
Revision: 476214

1.61-37: kernel 5.1.6.arch1-1

Modified:
  ndiswrapper-arch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-01 03:51:44 UTC (rev 476213)
+++ PKGBUILD2019-06-01 03:51:49 UTC (rev 476214)
@@ -4,7 +4,7 @@
 pkgname=ndiswrapper-arch
 pkgver=1.61
 _extramodules=extramodules-ARCH
-pkgrel=36
+pkgrel=37
 pkgdesc="Module for NDIS (Windows Network Drivers) drivers supplied by 
vendors, kernel module for Arch kernel"
 arch=('x86_64')
 url="http://sourceforge.net/projects/ndiswrapper/;


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

2019-05-31 Thread Jan Steffens via arch-commits
Date: Saturday, June 1, 2019 @ 03:51:52
  Author: heftig
Revision: 354582

340.107-89: kernel 5.1.6.arch1-1

Modified:
  nvidia-340xx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-01 03:51:46 UTC (rev 354581)
+++ PKGBUILD2019-06-01 03:51:52 UTC (rev 354582)
@@ -6,7 +6,7 @@
 pkgname=(nvidia-340xx nvidia-340xx-dkms)
 pkgver=340.107
 _extramodules=extramodules-ARCH
-pkgrel=88
+pkgrel=89
 pkgdesc="NVIDIA drivers for linux, 340xx legacy branch"
 arch=('x86_64')
 url="http://www.nvidia.com/;


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

2019-05-31 Thread Jan Steffens via arch-commits
Date: Saturday, June 1, 2019 @ 03:51:38
  Author: heftig
Revision: 476208

6.30.223.271-107: kernel 5.1.6.arch1-1

Modified:
  broadcom-wl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-01 03:51:36 UTC (rev 476207)
+++ PKGBUILD2019-06-01 03:51:38 UTC (rev 476208)
@@ -5,7 +5,7 @@
 #_kernelname=-custom  # Build against kernel with a different name
 pkgname=${_module}${_kernelname}
 pkgver=6.30.223.271
-pkgrel=106
+pkgrel=107
 pkgdesc='Broadcom 802.11 Linux STA wireless driver'
 arch=('x86_64')
 
url='https://www.broadcom.com/support/download-search/?pf=Wireless+LAN+Infrastructure'


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

2019-05-31 Thread Jan Steffens via arch-commits
Date: Saturday, June 1, 2019 @ 03:51:41
  Author: heftig
Revision: 476211

8.047.01-16: kernel 5.1.6.arch1-1

Modified:
  r8168/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-01 03:51:40 UTC (rev 476210)
+++ PKGBUILD2019-06-01 03:51:41 UTC (rev 476211)
@@ -4,7 +4,7 @@
 
 pkgname=r8168
 pkgver=8.047.01
-pkgrel=15
+pkgrel=16
 pkgdesc="A kernel module for Realtek 8168 network cards"
 url="http://www.realtek.com.tw;
 license=("GPL")


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

2019-05-31 Thread Jan Steffens via arch-commits
Date: Saturday, June 1, 2019 @ 03:51:45
  Author: heftig
Revision: 354580

390.116-26: kernel 5.1.6.arch1-1

Modified:
  nvidia-390xx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-01 03:10:01 UTC (rev 354579)
+++ PKGBUILD2019-06-01 03:51:45 UTC (rev 354580)
@@ -6,7 +6,7 @@
 pkgname=(nvidia-390xx nvidia-390xx-dkms)
 pkgver=390.116
 _extramodules=extramodules-ARCH
-pkgrel=25
+pkgrel=26
 pkgdesc="NVIDIA drivers for linux, 390xx legacy branch"
 arch=('x86_64')
 url="http://www.nvidia.com/;


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

2019-05-31 Thread Jan Steffens via arch-commits
Date: Saturday, June 1, 2019 @ 03:51:50
  Author: heftig
Revision: 476215

0.0.20190531-2: kernel 5.1.6.arch1-1

Modified:
  wireguard-arch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-01 03:51:49 UTC (rev 476214)
+++ PKGBUILD2019-06-01 03:51:50 UTC (rev 476215)
@@ -2,7 +2,7 @@
 
 pkgname=wireguard-arch
 pkgver=0.0.20190531
-pkgrel=1
+pkgrel=2
 pkgdesc='Wireguard module for Arch Kernel'
 url='https://www.wireguard.com/'
 arch=('x86_64')


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

2019-05-31 Thread Jan Steffens via arch-commits
Date: Saturday, June 1, 2019 @ 03:51:43
  Author: heftig
Revision: 476212

20190410-17: kernel 5.1.6.arch1-1

Modified:
  vhba-module/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-01 03:51:41 UTC (rev 476211)
+++ PKGBUILD2019-06-01 03:51:43 UTC (rev 476212)
@@ -5,7 +5,7 @@
 pkgbase=vhba-module
 pkgname=(vhba-module vhba-module-dkms)
 pkgver=20190410
-pkgrel=16
+pkgrel=17
 pkgdesc="Kernel module that emulates SCSI devices"
 url="http://cdemu.sourceforge.net/;
 arch=(x86_64)


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

2019-05-31 Thread Jan Steffens via arch-commits
Date: Saturday, June 1, 2019 @ 03:51:36
  Author: heftig
Revision: 476207

0.43-114: kernel 5.1.6.arch1-1

Modified:
  tp_smapi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-01 01:41:36 UTC (rev 476206)
+++ PKGBUILD2019-06-01 03:51:36 UTC (rev 476207)
@@ -9,7 +9,7 @@
 
 pkgname=tp_smapi
 pkgver=0.43
-pkgrel=113
+pkgrel=114
 pkgdesc="Modules for ThinkPad's SMAPI functionality"
 arch=('x86_64')
 url='https://github.com/evgeni/tp_smapi'


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

2019-05-31 Thread Jan Steffens via arch-commits
Date: Saturday, June 1, 2019 @ 03:51:53
  Author: heftig
Revision: 476216

0.1.0-4: kernel 5.1.6.arch1-1

Modified:
  deepin-anything-arch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-01 03:51:50 UTC (rev 476215)
+++ PKGBUILD2019-06-01 03:51:53 UTC (rev 476216)
@@ -3,7 +3,7 @@
 pkgname=deepin-anything-arch
 pkgver=0.1.0
 _extramodules=extramodules-ARCH
-pkgrel=3
+pkgrel=4
 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 acpi_call/trunk (PKGBUILD)

2019-05-31 Thread Jan Steffens via arch-commits
Date: Saturday, June 1, 2019 @ 03:51:44
  Author: heftig
Revision: 476213

1.1.0-220: kernel 5.1.6.arch1-1

Modified:
  acpi_call/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-01 03:51:43 UTC (rev 476212)
+++ PKGBUILD2019-06-01 03:51:44 UTC (rev 476213)
@@ -5,7 +5,7 @@
 pkgbase=acpi_call
 pkgname=(acpi_call acpi_call-dkms)
 pkgver=1.1.0
-pkgrel=219
+pkgrel=220
 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-modules-arch/trunk (PKGBUILD)

2019-05-31 Thread Jan Steffens via arch-commits
Date: Saturday, June 1, 2019 @ 03:51:39
  Author: heftig
Revision: 476209

6.0.8-8: kernel 5.1.6.arch1-1

Modified:
  virtualbox-modules-arch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-01 03:51:38 UTC (rev 476208)
+++ PKGBUILD2019-06-01 03:51:39 UTC (rev 476209)
@@ -4,7 +4,7 @@
 pkgbase=virtualbox-modules-arch
 pkgname=('virtualbox-host-modules-arch' 'virtualbox-guest-modules-arch')
 pkgver=6.0.8
-pkgrel=7
+pkgrel=8
 arch=('x86_64')
 url='http://virtualbox.org'
 license=('GPL')


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

2019-05-31 Thread Jan Steffens via arch-commits
Date: Saturday, June 1, 2019 @ 03:51:46
  Author: heftig
Revision: 354581

430.14-7: kernel 5.1.6.arch1-1

Modified:
  nvidia/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-01 03:51:45 UTC (rev 354580)
+++ PKGBUILD2019-06-01 03:51:46 UTC (rev 354581)
@@ -6,7 +6,7 @@
 pkgname=(nvidia nvidia-dkms)
 pkgver=430.14
 _extramodules=extramodules-ARCH
-pkgrel=6
+pkgrel=7
 pkgdesc="NVIDIA drivers for linux"
 arch=('x86_64')
 url="http://www.nvidia.com/;


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

2019-05-31 Thread Jan Steffens via arch-commits
Date: Saturday, June 1, 2019 @ 03:51:40
  Author: heftig
Revision: 476210

0.8-226: kernel 5.1.6.arch1-1

Modified:
  bbswitch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-01 03:51:39 UTC (rev 476209)
+++ PKGBUILD2019-06-01 03:51:40 UTC (rev 476210)
@@ -5,7 +5,7 @@
 pkgbase=bbswitch
 pkgname=(bbswitch bbswitch-dkms)
 pkgver=0.8
-pkgrel=225
+pkgrel=226
 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 linux/repos (7 files)

2019-05-31 Thread Jan Steffens via arch-commits
Date: Saturday, June 1, 2019 @ 03:10:00
  Author: heftig
Revision: 354578

archrelease: copy trunk to staging-x86_64

Added:
  linux/repos/staging-x86_64/
  linux/repos/staging-x86_64/60-linux.hook
(from rev 354577, linux/trunk/60-linux.hook)
  linux/repos/staging-x86_64/90-linux.hook
(from rev 354577, linux/trunk/90-linux.hook)
  linux/repos/staging-x86_64/PKGBUILD
(from rev 354577, linux/trunk/PKGBUILD)
  linux/repos/staging-x86_64/config
(from rev 354577, linux/trunk/config)
  linux/repos/staging-x86_64/linux.install
(from rev 354577, linux/trunk/linux.install)
  linux/repos/staging-x86_64/linux.preset
(from rev 354577, linux/trunk/linux.preset)

---+
 60-linux.hook |   12 
 90-linux.hook |   11 
 PKGBUILD  |  231 +
 config| 9975 
 linux.install |   12 
 linux.preset  |   14 
 6 files changed, 10255 insertions(+)

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


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

2019-05-31 Thread Jan Steffens via arch-commits
Date: Saturday, June 1, 2019 @ 03:10:01
  Author: heftig
Revision: 354579

archrelease: copy trunk to staging-x86_64

Added:
  linux-zen/repos/staging-x86_64/
  linux-zen/repos/staging-x86_64/60-linux.hook
(from rev 354577, linux-zen/trunk/60-linux.hook)
  linux-zen/repos/staging-x86_64/90-linux.hook
(from rev 354577, linux-zen/trunk/90-linux.hook)
  linux-zen/repos/staging-x86_64/PKGBUILD
(from rev 354577, linux-zen/trunk/PKGBUILD)
  linux-zen/repos/staging-x86_64/config
(from rev 354577, linux-zen/trunk/config)
  linux-zen/repos/staging-x86_64/linux.install
(from rev 354577, linux-zen/trunk/linux.install)
  linux-zen/repos/staging-x86_64/linux.preset
(from rev 354577, linux-zen/trunk/linux.preset)

---+
 60-linux.hook |   12 
 90-linux.hook |   11 
 PKGBUILD  |  231 +
 config|10005 
 linux.install |   12 
 linux.preset  |   14 
 6 files changed, 10285 insertions(+)

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


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

2019-05-31 Thread Jan Steffens via arch-commits
Date: Saturday, June 1, 2019 @ 03:09:21
  Author: heftig
Revision: 354577

5.1.6.zen1-1

Modified:
  linux-zen/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-01 03:09:20 UTC (rev 354576)
+++ PKGBUILD2019-06-01 03:09:21 UTC (rev 354577)
@@ -4,9 +4,9 @@
 
 pkgbase=linux-zen   # Build stock -zen kernel
 #pkgbase=linux-custom   # Build kernel with a different name
-_srcver=5.1.5-zen1
+_srcver=5.1.6-zen1
 pkgver=${_srcver//-/.}
-pkgrel=2
+pkgrel=1
 arch=(x86_64)
 url="https://github.com/zen-kernel/zen-kernel/commits/v$_srcver;
 license=(GPL2)


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

2019-05-31 Thread Jan Steffens via arch-commits
Date: Saturday, June 1, 2019 @ 03:09:20
  Author: heftig
Revision: 354576

5.1.6.arch1-1

Modified:
  linux/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-01 00:44:52 UTC (rev 354575)
+++ PKGBUILD2019-06-01 03:09:20 UTC (rev 354576)
@@ -4,9 +4,9 @@
 
 pkgbase=linux   # Build stock -ARCH kernel
 #pkgbase=linux-custom   # Build kernel with a different name
-_srcver=5.1.5-arch1
+_srcver=5.1.6-arch1
 pkgver=${_srcver//-/.}
-pkgrel=2
+pkgrel=1
 arch=(x86_64)
 url="https://git.archlinux.org/linux.git/log/?h=v$_srcver;
 license=(GPL2)


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

2019-05-31 Thread Brett Cornwall via arch-commits
Date: Saturday, June 1, 2019 @ 01:41:36
  Author: ainola
Revision: 476206

archrelease: copy trunk to community-x86_64

Added:
  waybar/repos/community-x86_64/PKGBUILD
(from rev 476205, waybar/trunk/PKGBUILD)
Deleted:
  waybar/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-01 01:41:26 UTC (rev 476205)
+++ PKGBUILD2019-06-01 01:41:36 UTC (rev 476206)
@@ -1,39 +0,0 @@
-# Maintainer: Ainola 
-
-pkgname=waybar
-pkgver=0.6.6
-pkgrel=1
-pkgdesc='Highly customizable Wayland bar for Sway and Wlroots based 
compositors'
-arch=('x86_64')
-url="https://github.com/Alexays/Waybar/;
-license=('MIT')
-depends=(
-'fmt'
-'gtkmm3'
-'jsoncpp'
-'libappindicator-gtk3'
-'libpulse'
-'libmpdclient'
-)
-# Sway is needed for building support for workspace and window title modules
-makedepends=(
-'meson'
-'sway'
-)
-optdepends=(
-'otf-font-awesome: Icons in the default configuration'
-)
-source=("$pkgname-$pkgver.tar.gz::https://github.com/Alexays/Waybar/archive/$pkgver.tar.gz;)
-sha256sums=('03bc5019bd46175d2d9b2112ca2baa265a71e17bbd0dd2fdc51156f1ed9b021a')
-
-build() {
-cd "Waybar-$pkgver"
-meson --prefix=/usr build
-ninja -C build
-}
-
-package() {
-cd "Waybar-$pkgver"
-DESTDIR="$pkgdir" ninja -C build install
-install -Dm644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname/"
-}

Copied: waybar/repos/community-x86_64/PKGBUILD (from rev 476205, 
waybar/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-01 01:41:36 UTC (rev 476206)
@@ -0,0 +1,39 @@
+# Maintainer: Ainola 
+
+pkgname=waybar
+pkgver=0.6.7
+pkgrel=1
+pkgdesc='Highly customizable Wayland bar for Sway and Wlroots based 
compositors'
+arch=('x86_64')
+url="https://github.com/Alexays/Waybar/;
+license=('MIT')
+depends=(
+'fmt'
+'gtkmm3'
+'jsoncpp'
+'libappindicator-gtk3'
+'libpulse'
+'libmpdclient'
+)
+# Sway is needed for building support for workspace and window title modules
+makedepends=(
+'meson'
+'sway'
+)
+optdepends=(
+'otf-font-awesome: Icons in the default configuration'
+)
+source=("$pkgname-$pkgver.tar.gz::https://github.com/Alexays/Waybar/archive/$pkgver.tar.gz;)
+sha256sums=('45f8d24c628569b7691654a6079bc4fb70fee474e2c996e46af044e3dcffd036')
+
+build() {
+cd "Waybar-$pkgver"
+meson --prefix=/usr build
+ninja -C build
+}
+
+package() {
+cd "Waybar-$pkgver"
+DESTDIR="$pkgdir" ninja -C build install
+install -Dm644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname/"
+}


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

2019-05-31 Thread Brett Cornwall via arch-commits
Date: Saturday, June 1, 2019 @ 01:41:26
  Author: ainola
Revision: 476205

upgpkg: waybar 0.6.7-1

Modified:
  waybar/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-01 00:47:32 UTC (rev 476204)
+++ PKGBUILD2019-06-01 01:41:26 UTC (rev 476205)
@@ -1,7 +1,7 @@
 # Maintainer: Ainola 
 
 pkgname=waybar
-pkgver=0.6.6
+pkgver=0.6.7
 pkgrel=1
 pkgdesc='Highly customizable Wayland bar for Sway and Wlroots based 
compositors'
 arch=('x86_64')
@@ -24,7 +24,7 @@
 'otf-font-awesome: Icons in the default configuration'
 )
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/Alexays/Waybar/archive/$pkgver.tar.gz;)
-sha256sums=('03bc5019bd46175d2d9b2112ca2baa265a71e17bbd0dd2fdc51156f1ed9b021a')
+sha256sums=('45f8d24c628569b7691654a6079bc4fb70fee474e2c996e46af044e3dcffd036')
 
 build() {
 cd "Waybar-$pkgver"


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

2019-05-31 Thread Felix Yan via arch-commits
Date: Saturday, June 1, 2019 @ 00:47:22
  Author: felixonmars
Revision: 476203

upgpkg: perl-super 1.20190531-2

Modified:
  perl-super/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-01 00:45:52 UTC (rev 476202)
+++ PKGBUILD2019-06-01 00:47:22 UTC (rev 476203)
@@ -3,7 +3,7 @@
 
 pkgname=perl-super
 pkgver=1.20190531
-pkgrel=1
+pkgrel=2
 pkgdesc="Control superclass method dispatch"
 arch=('any')
 license=('PerlArtistic' 'GPL')


[arch-commits] Commit in perl-super/repos/community-staging-any (PKGBUILD PKGBUILD)

2019-05-31 Thread Felix Yan via arch-commits
Date: Saturday, June 1, 2019 @ 00:47:32
  Author: felixonmars
Revision: 476204

archrelease: copy trunk to community-staging-any

Added:
  perl-super/repos/community-staging-any/PKGBUILD
(from rev 476203, perl-super/trunk/PKGBUILD)
Deleted:
  perl-super/repos/community-staging-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-01 00:47:22 UTC (rev 476203)
+++ PKGBUILD2019-06-01 00:47:32 UTC (rev 476204)
@@ -1,32 +0,0 @@
-# Maintainer: Felix Yan  
-# Contributor: John D Jones III 
-
-pkgname=perl-super
-pkgver=1.20141117
-pkgrel=5
-pkgdesc="Control superclass method dispatch"
-arch=('any')
-license=('PerlArtistic' 'GPL')
-options=('!emptydirs')
-depends=('perl-sub-identify')
-url='http://search.cpan.org/dist/SUPER'
-source=("http://search.cpan.org/CPAN/authors/id/C/CH/CHROMATIC/SUPER-$pkgver.tar.gz;)
-sha512sums=('c17fe478fcb9ebc2749c27fc75b839bd77e81c9d0170697b2a697dcebb9f4eef4b954d023b76d33a8b4201b110e5e997b1e0993faf7a04ef2e1191a2f7c516a0')
-
-build() {
-  cd "$srcdir/SUPER-$pkgver"
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd "$srcdir/SUPER-$pkgver"
-  make test
-}
-
-package() {
-  cd "$srcdir/SUPER-$pkgver"
-  make DESTDIR="$pkgdir"/ install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: perl-super/repos/community-staging-any/PKGBUILD (from rev 476203, 
perl-super/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-01 00:47:32 UTC (rev 476204)
@@ -0,0 +1,32 @@
+# Maintainer: Felix Yan  
+# Contributor: John D Jones III 
+
+pkgname=perl-super
+pkgver=1.20190531
+pkgrel=2
+pkgdesc="Control superclass method dispatch"
+arch=('any')
+license=('PerlArtistic' 'GPL')
+options=('!emptydirs')
+depends=('perl-sub-identify')
+url='http://search.cpan.org/dist/SUPER'
+source=("http://search.cpan.org/CPAN/authors/id/C/CH/CHROMATIC/SUPER-$pkgver.tar.gz;)
+sha512sums=('fb1072c76aa9d82edb39ec75f0e14c0fa41837b36b7d2ec24482a20338484cba867646f5e3ceb12ff4f8e1a6f333f5243900c2114d772a29d6c0380feabd3565')
+
+build() {
+  cd "$srcdir/SUPER-$pkgver"
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd "$srcdir/SUPER-$pkgver"
+  make test
+}
+
+package() {
+  cd "$srcdir/SUPER-$pkgver"
+  make DESTDIR="$pkgdir"/ install
+}
+
+# vim:set ts=2 sw=2 et:


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

2019-05-31 Thread Felix Yan via arch-commits
Date: Saturday, June 1, 2019 @ 00:45:52
  Author: felixonmars
Revision: 476202

archrelease: copy trunk to community-testing-any

Added:
  perl-super/repos/community-testing-any/
  perl-super/repos/community-testing-any/PKGBUILD
(from rev 476201, perl-super/trunk/PKGBUILD)

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

Copied: perl-super/repos/community-testing-any/PKGBUILD (from rev 476201, 
perl-super/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2019-06-01 00:45:52 UTC (rev 476202)
@@ -0,0 +1,32 @@
+# Maintainer: Felix Yan  
+# Contributor: John D Jones III 
+
+pkgname=perl-super
+pkgver=1.20190531
+pkgrel=1
+pkgdesc="Control superclass method dispatch"
+arch=('any')
+license=('PerlArtistic' 'GPL')
+options=('!emptydirs')
+depends=('perl-sub-identify')
+url='http://search.cpan.org/dist/SUPER'
+source=("http://search.cpan.org/CPAN/authors/id/C/CH/CHROMATIC/SUPER-$pkgver.tar.gz;)
+sha512sums=('fb1072c76aa9d82edb39ec75f0e14c0fa41837b36b7d2ec24482a20338484cba867646f5e3ceb12ff4f8e1a6f333f5243900c2114d772a29d6c0380feabd3565')
+
+build() {
+  cd "$srcdir/SUPER-$pkgver"
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd "$srcdir/SUPER-$pkgver"
+  make test
+}
+
+package() {
+  cd "$srcdir/SUPER-$pkgver"
+  make DESTDIR="$pkgdir"/ install
+}
+
+# vim:set ts=2 sw=2 et:


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

2019-05-31 Thread Felix Yan via arch-commits
Date: Saturday, June 1, 2019 @ 00:45:42
  Author: felixonmars
Revision: 476201

upgpkg: perl-super 1.20190531-1

Modified:
  perl-super/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-01 00:35:35 UTC (rev 476200)
+++ PKGBUILD2019-06-01 00:45:42 UTC (rev 476201)
@@ -2,8 +2,8 @@
 # Contributor: John D Jones III 
 
 pkgname=perl-super
-pkgver=1.20141117
-pkgrel=5
+pkgver=1.20190531
+pkgrel=1
 pkgdesc="Control superclass method dispatch"
 arch=('any')
 license=('PerlArtistic' 'GPL')
@@ -11,7 +11,7 @@
 depends=('perl-sub-identify')
 url='http://search.cpan.org/dist/SUPER'
 
source=("http://search.cpan.org/CPAN/authors/id/C/CH/CHROMATIC/SUPER-$pkgver.tar.gz;)
-sha512sums=('c17fe478fcb9ebc2749c27fc75b839bd77e81c9d0170697b2a697dcebb9f4eef4b954d023b76d33a8b4201b110e5e997b1e0993faf7a04ef2e1191a2f7c516a0')
+sha512sums=('fb1072c76aa9d82edb39ec75f0e14c0fa41837b36b7d2ec24482a20338484cba867646f5e3ceb12ff4f8e1a6f333f5243900c2114d772a29d6c0380feabd3565')
 
 build() {
   cd "$srcdir/SUPER-$pkgver"


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

2019-05-31 Thread Felix Yan via arch-commits
Date: Saturday, June 1, 2019 @ 00:44:41
  Author: felixonmars
Revision: 354574

upgpkg: python-mako 1.0.11-1

Modified:
  python-mako/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-31 17:21:23 UTC (rev 354573)
+++ PKGBUILD2019-06-01 00:44:41 UTC (rev 354574)
@@ -2,7 +2,7 @@
 
 pkgbase=python-mako
 pkgname=('python-mako' 'python2-mako')
-pkgver=1.0.10
+pkgver=1.0.11
 pkgrel=1
 pkgdesc="A super-fast templating language that borrows the best ideas from the 
existing templating languages"
 arch=('any')
@@ -14,7 +14,7 @@
   'python-babel' 'python2-babel' 'python-pygments' 
'python2-pygments'
   'python-dogpile.cache' 'python2-dogpile.cache')
 source=("https://pypi.io/packages/source/M/Mako/Mako-$pkgver.tar.gz"{,.asc})
-sha512sums=('24f4bcac24598cefe0e30c780730579dd608707d1c938d8e4de5c52bcae283f9bef4c5752b3548df879d9cb6a7a9bac5a5090c55cbdc595769b492205d089b51'
+sha512sums=('dfe79254c1adb3b4d57c9848a6b64228762de65b6d395b21dfb207ddd9a8acd4b80b8242a9946f69c54d7d12b83a09188e66828285d64d09fdcd8d6acf1bacf3'
 'SKIP')
 validpgpkeys=('83AF7ACE251C13E6BB7DEFBD330239C1C4DAFEE1')  # Michael Bayer
 


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

2019-05-31 Thread Felix Yan via arch-commits
Date: Saturday, June 1, 2019 @ 00:44:52
  Author: felixonmars
Revision: 354575

archrelease: copy trunk to extra-any

Added:
  python-mako/repos/extra-any/PKGBUILD
(from rev 354574, python-mako/trunk/PKGBUILD)
Deleted:
  python-mako/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-01 00:44:41 UTC (rev 354574)
+++ PKGBUILD2019-06-01 00:44:52 UTC (rev 354575)
@@ -1,57 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgbase=python-mako
-pkgname=('python-mako' 'python2-mako')
-pkgver=1.0.10
-pkgrel=1
-pkgdesc="A super-fast templating language that borrows the best ideas from the 
existing templating languages"
-arch=('any')
-url="http://www.makotemplates.org/;
-license=('MIT')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-markupsafe' 
'python2-markupsafe'
- 'python-beaker' 'python2-beaker')
-checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'python-mock' 
'python2-mock'
-  'python-babel' 'python2-babel' 'python-pygments' 
'python2-pygments'
-  'python-dogpile.cache' 'python2-dogpile.cache')
-source=("https://pypi.io/packages/source/M/Mako/Mako-$pkgver.tar.gz"{,.asc})
-sha512sums=('24f4bcac24598cefe0e30c780730579dd608707d1c938d8e4de5c52bcae283f9bef4c5752b3548df879d9cb6a7a9bac5a5090c55cbdc595769b492205d089b51'
-'SKIP')
-validpgpkeys=('83AF7ACE251C13E6BB7DEFBD330239C1C4DAFEE1')  # Michael Bayer
-
-prepare() {
-  cp -a Mako-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir"/Mako-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/Mako-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/Mako-$pkgver
-  python setup.py ptr
-
-  cd "$srcdir"/Mako-$pkgver-py2
-  python2 setup.py ptr
-}
-
-package_python-mako() {
-  depends=('python-markupsafe' 'python-beaker' 'python-setuptools')
-
-  cd Mako-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-mako() {
-  depends=('python2-markupsafe' 'python2-beaker' 'python2-setuptools')
-
-  cd Mako-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-
-  mv "$pkgdir"/usr/bin/mako-render{,2}
-}

Copied: python-mako/repos/extra-any/PKGBUILD (from rev 354574, 
python-mako/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-01 00:44:52 UTC (rev 354575)
@@ -0,0 +1,57 @@
+# Maintainer: Felix Yan 
+
+pkgbase=python-mako
+pkgname=('python-mako' 'python2-mako')
+pkgver=1.0.11
+pkgrel=1
+pkgdesc="A super-fast templating language that borrows the best ideas from the 
existing templating languages"
+arch=('any')
+url="https://www.makotemplates.org/;
+license=('MIT')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-markupsafe' 
'python2-markupsafe'
+ 'python-beaker' 'python2-beaker')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'python-mock' 
'python2-mock'
+  'python-babel' 'python2-babel' 'python-pygments' 
'python2-pygments'
+  'python-dogpile.cache' 'python2-dogpile.cache')
+source=("https://pypi.io/packages/source/M/Mako/Mako-$pkgver.tar.gz"{,.asc})
+sha512sums=('dfe79254c1adb3b4d57c9848a6b64228762de65b6d395b21dfb207ddd9a8acd4b80b8242a9946f69c54d7d12b83a09188e66828285d64d09fdcd8d6acf1bacf3'
+'SKIP')
+validpgpkeys=('83AF7ACE251C13E6BB7DEFBD330239C1C4DAFEE1')  # Michael Bayer
+
+prepare() {
+  cp -a Mako-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/Mako-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/Mako-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/Mako-$pkgver
+  python setup.py ptr
+
+  cd "$srcdir"/Mako-$pkgver-py2
+  python2 setup.py ptr
+}
+
+package_python-mako() {
+  depends=('python-markupsafe' 'python-beaker' 'python-setuptools')
+
+  cd Mako-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-mako() {
+  depends=('python2-markupsafe' 'python2-beaker' 'python2-setuptools')
+
+  cd Mako-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+
+  mv "$pkgdir"/usr/bin/mako-render{,2}
+}


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

2019-05-31 Thread Bruno Pagani via arch-commits
Date: Friday, May 31, 2019 @ 22:10:06
  Author: archange
Revision: 476130

archrelease: copy trunk to community-x86_64

Added:
  keepassxc/repos/community-x86_64/PKGBUILD
(from rev 476129, keepassxc/trunk/PKGBUILD)
Deleted:
  keepassxc/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-05-31 22:09:56 UTC (rev 476129)
+++ PKGBUILD2019-05-31 22:10:06 UTC (rev 476130)
@@ -1,43 +0,0 @@
-# Maintainer: Balló György 
-# Maintainer: Bruno Pagani 
-
-pkgname=keepassxc
-pkgver=2.4.1
-pkgrel=2
-pkgdesc="Cross-platform community-driven port of Keepass password manager"
-arch=(x86_64)
-url="https://keepassxc.org/;
-license=(GPL)
-depends=(argon2 curl desktop-file-utils hicolor-icon-theme libgcrypt libsodium 
libxtst qrencode
- qt5-svg qt5-x11extras quazip yubikey-personalization)
-makedepends=(git cmake qt5-tools)
-_tag=8e270d61f348ee39df31579c0dca55fb9a975f58 # git rev-parse ${pkgver}
-source=("git+https://github.com/keepassxreboot/keepassxc#tag=${_tag}?signed;)
-sha256sums=('SKIP')
-validpgpkeys=('BF5A669F2272CF4324C1FDA8CFB4C2166397D0D2'  # KeePassXC Release 

-  '3489040C1F0C3EEAB8D556A5440FC65F2E0C6E01') # Jonathan White 

-
-prepare() {
-   mkdir -p build
-}
-
-build() {
-   cd build
-   cmake ../${pkgname} \
-   -DCMAKE_BUILD_TYPE=Release \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DCMAKE_INSTALL_LIBDIR=lib \
-   -DWITH_XC_ALL=ON \
-   -DWITH_XC_KEESHARE_SECURE=ON
-   make
-}
-
-check() {
-   cd build
-   make test
-}
-
-package() {
-   cd build
-   make DESTDIR="${pkgdir}" install
-}

Copied: keepassxc/repos/community-x86_64/PKGBUILD (from rev 476129, 
keepassxc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-05-31 22:10:06 UTC (rev 476130)
@@ -0,0 +1,42 @@
+# Maintainer: Balló György 
+# Maintainer: Bruno Pagani 
+
+pkgname=keepassxc
+pkgver=2.4.2
+pkgrel=1
+pkgdesc="Cross-platform community-driven port of Keepass password manager"
+arch=(x86_64)
+url="https://keepassxc.org/;
+license=(GPL)
+depends=(argon2 curl desktop-file-utils hicolor-icon-theme libgcrypt libsodium 
libxtst qrencode
+ qt5-svg qt5-x11extras quazip yubikey-personalization)
+makedepends=(git cmake qt5-tools)
+_tag=df22f79b946c45ac20689ef5b3cfbe69670bae1d # git rev-parse ${pkgver}
+source=("git+https://github.com/keepassxreboot/keepassxc#tag=${_tag}?signed;)
+sha256sums=(SKIP)
+validpgpkeys=(BF5A669F2272CF4324C1FDA8CFB4C2166397D0D2  # KeePassXC Release 

+  3489040C1F0C3EEAB8D556A5440FC65F2E0C6E01) # Jonathan White 

+
+prepare() {
+   mkdir -p build
+}
+
+build() {
+   cd build
+   cmake ../${pkgname} \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_INSTALL_LIBDIR=lib \
+   -DWITH_XC_ALL=ON
+   make
+}
+
+check() {
+   cd build
+   make test
+}
+
+package() {
+   cd build
+   make DESTDIR="${pkgdir}" install
+}


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

2019-05-31 Thread Bruno Pagani via arch-commits
Date: Friday, May 31, 2019 @ 22:09:56
  Author: archange
Revision: 476129

upgpkg: keepassxc 2.4.2-1

Modified:
  keepassxc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-31 21:40:10 UTC (rev 476128)
+++ PKGBUILD2019-05-31 22:09:56 UTC (rev 476129)
@@ -2,8 +2,8 @@
 # Maintainer: Bruno Pagani 
 
 pkgname=keepassxc
-pkgver=2.4.1
-pkgrel=2
+pkgver=2.4.2
+pkgrel=1
 pkgdesc="Cross-platform community-driven port of Keepass password manager"
 arch=(x86_64)
 url="https://keepassxc.org/;
@@ -11,11 +11,11 @@
 depends=(argon2 curl desktop-file-utils hicolor-icon-theme libgcrypt libsodium 
libxtst qrencode
  qt5-svg qt5-x11extras quazip yubikey-personalization)
 makedepends=(git cmake qt5-tools)
-_tag=8e270d61f348ee39df31579c0dca55fb9a975f58 # git rev-parse ${pkgver}
+_tag=df22f79b946c45ac20689ef5b3cfbe69670bae1d # git rev-parse ${pkgver}
 source=("git+https://github.com/keepassxreboot/keepassxc#tag=${_tag}?signed;)
-sha256sums=('SKIP')
-validpgpkeys=('BF5A669F2272CF4324C1FDA8CFB4C2166397D0D2'  # KeePassXC Release 

-  '3489040C1F0C3EEAB8D556A5440FC65F2E0C6E01') # Jonathan White 

+sha256sums=(SKIP)
+validpgpkeys=(BF5A669F2272CF4324C1FDA8CFB4C2166397D0D2  # KeePassXC Release 

+  3489040C1F0C3EEAB8D556A5440FC65F2E0C6E01) # Jonathan White 

 
 prepare() {
mkdir -p build
@@ -27,8 +27,7 @@
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=lib \
-   -DWITH_XC_ALL=ON \
-   -DWITH_XC_KEESHARE_SECURE=ON
+   -DWITH_XC_ALL=ON
make
 }
 


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

2019-05-31 Thread Felix Yan via arch-commits
Date: Friday, May 31, 2019 @ 21:40:10
  Author: felixonmars
Revision: 476128

archrelease: copy trunk to community-staging-x86_64

Added:
  xmobar/repos/community-staging-x86_64/
  xmobar/repos/community-staging-x86_64/PKGBUILD
(from rev 476127, xmobar/trunk/PKGBUILD)

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

Copied: xmobar/repos/community-staging-x86_64/PKGBUILD (from rev 476127, 
xmobar/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-05-31 21:40:10 UTC (rev 476128)
@@ -0,0 +1,45 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Jelle van der Waa 
+# Contributer: Sergej Pupykin 
+# Contributor: Arch Haskell Team 
+
+pkgname=xmobar
+pkgver=0.29.5
+pkgrel=9
+pkgdesc='Minimalistic Text Based Status Bar'
+url='https://hackage.haskell.org/package/xmobar'
+license=('BSD')
+arch=('x86_64')
+depends=('libxft' 'libxinerama' 'libxrandr' 'libxpm' 'ghc-libs' 'haskell-x11'
+ 'haskell-x11-xft' 'haskell-utf8-string' 'haskell-network-uri'
+ 'haskell-hinotify' 'haskell-stm' 'haskell-parsec' 
'haskell-parsec-numbers'
+ 'haskell-mtl' 'haskell-regex-base' 'haskell-regex-compat'
+ 'haskell-http' 'haskell-dbus' 'haskell-libmpd' 'haskell-iwlib'
+ 'wireless_tools' 'haskell-text' 'haskell-async' 
'haskell-extensible-exceptions')
+makedepends=('ghc')
+source=(https://github.com/jaor/xmobar/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('bd264f740301b6e1b468f9e7c6ecc02971825238415ba5148c36f180cf40310410c8aaa1f018f237a1b600b167e482178c5e8fc4f104b5c8dc465e0fb7a31d52')
+
+prepare() {
+  cd xmobar-$pkgver
+  sed -i -e 's/==.*0.3/== 0.4/' -e 's/< *4.12/<5/' -e 's/< *2.5/<3/' 
xmobar.cabal
+}
+
+build() {
+  cd xmobar-${pkgver}
+  runhaskell setup configure -O \
+--enable-shared \
+--prefix=/usr \
+--enable-executable-dynamic \
+--disable-library-vanilla \
+--flags="with_utf8 with_xft with_iwlib with_xpm with_inotify with_mpd 
with_dbus with_mpris"
+  runhaskell setup build
+}
+
+package() {
+  cd xmobar-${pkgver}
+  runhaskell setup copy --destdir="${pkgdir}"
+  install -Dm 644 license "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+# vim: ts=2 sw=2 et:


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

2019-05-31 Thread Felix Yan via arch-commits
Date: Friday, May 31, 2019 @ 21:39:58
  Author: felixonmars
Revision: 476127

upgpkg: xmobar 0.29.5-9

rebuild with cereal 0.5.8.1

Modified:
  xmobar/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-31 21:39:46 UTC (rev 476126)
+++ PKGBUILD2019-05-31 21:39:58 UTC (rev 476127)
@@ -5,7 +5,7 @@
 
 pkgname=xmobar
 pkgver=0.29.5
-pkgrel=8
+pkgrel=9
 pkgdesc='Minimalistic Text Based Status Bar'
 url='https://hackage.haskell.org/package/xmobar'
 license=('BSD')


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

2019-05-31 Thread Baptiste Jonglez via arch-commits
Date: Friday, May 31, 2019 @ 21:39:38
  Author: zorun
Revision: 476125

upgpkg: catch2 2.8.0-1

Modified:
  catch2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-31 21:38:48 UTC (rev 476124)
+++ PKGBUILD2019-05-31 21:39:38 UTC (rev 476125)
@@ -3,7 +3,7 @@
 # Contributor: Bart Verhagen 
 
 pkgname=catch2
-pkgver=2.7.2
+pkgver=2.8.0
 pkgrel=1
 pkgdesc="Modern, C++-native, header-only, test framework for unit-tests, TDD 
and BDD"
 arch=('any')
@@ -11,7 +11,7 @@
 license=('Boost')
 makedepends=('cmake' 'python') # python seems to be necessary for building 
tests (FS#60273)
 
source=("https://github.com/catchorg/Catch2/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha256sums=('9f4116da13d8402b5145f95ab91ae0173cd27b804152d3bb2d4f9b6e64852af7')
+sha256sums=('b567c37446cd22c8550bfeb7e2fe3f981b8f3ab8b2148499a522e7f61b8a481d')
 
 build() {
   cd Catch2-$pkgver


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

2019-05-31 Thread Baptiste Jonglez via arch-commits
Date: Friday, May 31, 2019 @ 21:39:46
  Author: zorun
Revision: 476126

archrelease: copy trunk to community-any

Added:
  catch2/repos/community-any/PKGBUILD
(from rev 476125, catch2/trunk/PKGBUILD)
Deleted:
  catch2/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-05-31 21:39:38 UTC (rev 476125)
+++ PKGBUILD2019-05-31 21:39:46 UTC (rev 476126)
@@ -1,42 +0,0 @@
-# Maintainer: Baptiste Jonglez 
-# Maintainer: Levente Polyak 
-# Contributor: Bart Verhagen 
-
-pkgname=catch2
-pkgver=2.7.2
-pkgrel=1
-pkgdesc="Modern, C++-native, header-only, test framework for unit-tests, TDD 
and BDD"
-arch=('any')
-url="https://github.com/catchorg/catch2;
-license=('Boost')
-makedepends=('cmake' 'python') # python seems to be necessary for building 
tests (FS#60273)
-source=("https://github.com/catchorg/Catch2/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha256sums=('9f4116da13d8402b5145f95ab91ae0173cd27b804152d3bb2d4f9b6e64852af7')
-
-build() {
-  cd Catch2-$pkgver
-
-  mkdir -p build
-  cd build
-  cmake .. \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DCATCH_USE_VALGRIND=OFF \
--DCATCH_BUILD_EXAMPLES=OFF \
--DCATCH_ENABLE_COVERAGE=OFF \
--DCATCH_ENABLE_WERROR=OFF \
--DBUILD_TESTING=ON
-  make
-}
-
-check() {
-  cd Catch2-$pkgver/build
-  make test
-}
-
-package() {
-  cd Catch2-$pkgver/build
-  make DESTDIR="$pkgdir" install
-}
-
-# vim: ts=2 sw=2 et:

Copied: catch2/repos/community-any/PKGBUILD (from rev 476125, 
catch2/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-05-31 21:39:46 UTC (rev 476126)
@@ -0,0 +1,42 @@
+# Maintainer: Baptiste Jonglez 
+# Maintainer: Levente Polyak 
+# Contributor: Bart Verhagen 
+
+pkgname=catch2
+pkgver=2.8.0
+pkgrel=1
+pkgdesc="Modern, C++-native, header-only, test framework for unit-tests, TDD 
and BDD"
+arch=('any')
+url="https://github.com/catchorg/catch2;
+license=('Boost')
+makedepends=('cmake' 'python') # python seems to be necessary for building 
tests (FS#60273)
+source=("https://github.com/catchorg/Catch2/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('b567c37446cd22c8550bfeb7e2fe3f981b8f3ab8b2148499a522e7f61b8a481d')
+
+build() {
+  cd Catch2-$pkgver
+
+  mkdir -p build
+  cd build
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DCATCH_USE_VALGRIND=OFF \
+-DCATCH_BUILD_EXAMPLES=OFF \
+-DCATCH_ENABLE_COVERAGE=OFF \
+-DCATCH_ENABLE_WERROR=OFF \
+-DBUILD_TESTING=ON
+  make
+}
+
+check() {
+  cd Catch2-$pkgver/build
+  make test
+}
+
+package() {
+  cd Catch2-$pkgver/build
+  make DESTDIR="$pkgdir" install
+}
+
+# vim: ts=2 sw=2 et:


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

2019-05-31 Thread Felix Yan via arch-commits
Date: Friday, May 31, 2019 @ 21:38:38
  Author: felixonmars
Revision: 476123

upgpkg: tamarin-prover 1.4.1-82

rebuild with cereal 0.5.8.1

Modified:
  tamarin-prover/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-31 21:37:09 UTC (rev 476122)
+++ PKGBUILD2019-05-31 21:38:38 UTC (rev 476123)
@@ -3,7 +3,7 @@
 
 pkgname=tamarin-prover
 pkgver=1.4.1
-pkgrel=81
+pkgrel=82
 pkgdesc="The Tamarin prover for security protocol analysis"
 url="http://tamarin-prover.github.io;
 license=("GPL")


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

2019-05-31 Thread Felix Yan via arch-commits
Date: Friday, May 31, 2019 @ 21:38:48
  Author: felixonmars
Revision: 476124

archrelease: copy trunk to community-staging-x86_64

Added:
  tamarin-prover/repos/community-staging-x86_64/
  tamarin-prover/repos/community-staging-x86_64/PKGBUILD
(from rev 476123, tamarin-prover/trunk/PKGBUILD)

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

Copied: tamarin-prover/repos/community-staging-x86_64/PKGBUILD (from rev 
476123, tamarin-prover/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-05-31 21:38:48 UTC (rev 476124)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=tamarin-prover
+pkgver=1.4.1
+pkgrel=82
+pkgdesc="The Tamarin prover for security protocol analysis"
+url="http://tamarin-prover.github.io;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'graphviz' 'maude' 'haskell-hunit' 'haskell-binary-orphans'
+ 'haskell-blaze-builder' 'haskell-blaze-html' 'haskell-cmdargs' 
'haskell-conduit'
+ 'haskell-fclabels' 'haskell-file-embed' 'haskell-gitrev' 
'haskell-http-types'
+ 'haskell-lifted-base' 'haskell-monad-unlift'
+ 'haskell-resourcet' 'haskell-safe' 'haskell-shakespeare' 
'haskell-threads'
+ 'haskell-wai' 'haskell-warp' 'haskell-yesod-core' 
'haskell-yesod-static'
+ 'haskell-tamarin-prover-utils' 'haskell-tamarin-prover-term'
+ 'haskell-tamarin-prover-theory')
+optdepends=('ocaml: for sapic support')
+makedepends=('ghc' 'ocaml')
+source=("tamarin-prover-$pkgver.tar.gz::https://github.com/tamarin-prover/tamarin-prover/archive/$pkgver.tar.gz;)
+sha512sums=('4d3aeae02be5d430bff6c55d78656e3c9a648674d235bfeb36ce227a39abd3054a132b99ff8040abf05d8e26506fe85d21ecfb6fce73062dd45b5ba98d941144')
+
+prepare() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+sed -i '/cp sapic/d' plugins/sapic/Makefile
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-executable-dynamic --prefix=/usr \
+--docdir="/usr/share/doc/${pkgname}" --datasubdir="$pkgname" \
+-fthreaded -ftest-coverage -f-build-tests
+runhaskell Setup build
+
+cd plugins/sapic
+make -j1
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+
+install -Dm644 etc/filetype.vim 
"$pkgdir"/usr/share/vim/vimfiles/ftdetect/tamarin.vim
+install -Dm644 etc/spthy.vim 
"$pkgdir"/usr/share/vim/vimfiles/syntax/spthy.vim
+install -Dm644 etc/sapic.vim 
"$pkgdir"/usr/share/vim/vimfiles/syntax/sapic.vim
+
+cd plugins/sapic
+install -Dm755 sapic "$pkgdir"/usr/bin/sapic
+}


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

2019-05-31 Thread Felix Yan via arch-commits
Date: Friday, May 31, 2019 @ 21:37:09
  Author: felixonmars
Revision: 476122

archrelease: copy trunk to community-staging-x86_64

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

---+
 PKGBUILD  |   75 
 stack.install |4 ++
 2 files changed, 79 insertions(+)

Copied: stack/repos/community-staging-x86_64/PKGBUILD (from rev 476121, 
stack/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-05-31 21:37:09 UTC (rev 476122)
@@ -0,0 +1,75 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=stack
+pkgver=1.9.3.1
+pkgrel=49
+pkgdesc="The Haskell Tool Stack"
+url="https://github.com/commercialhaskell/stack;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-annotated-wl-pprint' 
'haskell-ansi-terminal'
+ 'haskell-async' 'haskell-attoparsec' 'haskell-base64-bytestring' 
'haskell-conduit'
+ 'haskell-conduit-extra' 'haskell-cryptonite' 
'haskell-cryptonite-conduit' 'haskell-echo'
+ 'haskell-exceptions' 'haskell-extra' 'haskell-file-embed' 
'haskell-filelock'
+ 'haskell-fsnotify' 'haskell-generic-deriving' 'haskell-githash' 
'haskell-hackage-security'
+ 'haskell-hashable' 'haskell-hpack' 'haskell-hpc' 'haskell-http-client'
+ 'haskell-http-client-tls' 'haskell-http-conduit' 'haskell-http-types' 
'haskell-memory'
+ 'haskell-microlens' 'haskell-mintty' 'haskell-monad-logger' 
'haskell-mono-traversable'
+ 'haskell-mustache' 'haskell-neat-interpolation' 'haskell-network-uri' 
'haskell-open-browser'
+ 'haskell-optparse-applicative' 'haskell-optparse-simple' 
'haskell-path' 'haskell-path-io'
+ 'haskell-persistent' 'haskell-persistent-sqlite' 
'haskell-persistent-template'
+ 'haskell-primitive' 'haskell-project-template' 
'haskell-regex-applicative-text'
+ 'haskell-resourcet' 'haskell-retry' 'haskell-rio' 'haskell-split' 
'haskell-store'
+ 'haskell-store-core' 'haskell-streaming-commons' 'haskell-tar' 
'haskell-temporary'
+ 'haskell-text-metrics' 'haskell-th-reify-many' 'haskell-tls' 
'haskell-typed-process'
+ 'haskell-unicode-transforms' 'haskell-unix-compat' 'haskell-unliftio'
+ 'haskell-unordered-containers' 'haskell-vector' 'haskell-yaml' 
'haskell-zip-archive'
+ 'haskell-zlib' 'haskell-bindings-uname')
+makedepends=('ghc' 'git' 'haskell-quickcheck' 'haskell-hspec' 
'haskell-smallcheck')
+checkdepends=('cabal-install')
+conflicts=('haskell-stack')
+replaces=('haskell-stack')
+install="stack.install"
+source=("git+https://github.com/commercialhaskell/stack.git#tag=v$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  cd $pkgname
+  hpack
+  sed -i -e '/semigroups/d' -e 's/< *0.8/<1/' $pkgname.cabal
+}
+
+build() {
+  cd $pkgname
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+  -f-disable-git-info -f-integration-tests -f-static 
-f-hide-dependency-versions -f-supported-build
+  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 $pkgname
+  # cabal update
+  LD_LIBRARY_PATH="$PWD"/dist/build PATH="$PWD"/dist/build/stack:"$PATH" 
runhaskell Setup test
+  # Integration tests will result in 4 failures on Arch currently
+}
+
+package() {
+  cd $pkgname
+
+  install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+  install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+  runhaskell Setup copy --destdir="${pkgdir}"
+  install -D -m644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+  LD_PRELOAD=$(ls "$pkgdir"/usr/lib/libHSstack-*-ghc*.so) 
"${pkgdir}"/usr/bin/stack --bash-completion-script /usr/bin/stack > 
stack_completion_script
+  install -Dm644 stack_completion_script 
"${pkgdir}/usr/share/bash-completion/completions/stack"
+}

Copied: stack/repos/community-staging-x86_64/stack.install (from rev 476121, 
stack/trunk/stack.install)
===
--- community-staging-x86_64/stack.install  (rev 0)
+++ community-staging-x86_64/stack.install  2019-05-31 21:37:09 UTC (rev 
476122)
@@ -0,0 +1,4 @@

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

2019-05-31 Thread Felix Yan via arch-commits
Date: Friday, May 31, 2019 @ 21:36:57
  Author: felixonmars
Revision: 476121

upgpkg: stack 1.9.3.1-49

rebuild with cereal 0.5.8.1

Modified:
  stack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-31 21:30:46 UTC (rev 476120)
+++ PKGBUILD2019-05-31 21:36:57 UTC (rev 476121)
@@ -3,7 +3,7 @@
 
 pkgname=stack
 pkgver=1.9.3.1
-pkgrel=48
+pkgrel=49
 pkgdesc="The Haskell Tool Stack"
 url="https://github.com/commercialhaskell/stack;
 license=("BSD")


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

2019-05-31 Thread Felix Yan via arch-commits
Date: Friday, May 31, 2019 @ 21:30:37
  Author: felixonmars
Revision: 476119

upgpkg: shellcheck 0.6.0-119

rebuild with cereal 0.5.8.1

Modified:
  shellcheck/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-31 21:27:37 UTC (rev 476118)
+++ PKGBUILD2019-05-31 21:30:37 UTC (rev 476119)
@@ -4,7 +4,7 @@
 _hkgname=ShellCheck
 pkgname=shellcheck
 pkgver=0.6.0
-pkgrel=118
+pkgrel=119
 pkgdesc="Shell script analysis tool"
 url="http://www.shellcheck.net;
 license=("GPL")


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

2019-05-31 Thread Felix Yan via arch-commits
Date: Friday, May 31, 2019 @ 21:30:46
  Author: felixonmars
Revision: 476120

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: shellcheck/repos/community-staging-x86_64/PKGBUILD (from rev 476119, 
shellcheck/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-05-31 21:30:46 UTC (rev 476120)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=ShellCheck
+pkgname=shellcheck
+pkgver=0.6.0
+pkgrel=119
+pkgdesc="Shell script analysis tool"
+url="http://www.shellcheck.net;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-quickcheck' 'haskell-regex-tdfa')
+makedepends=('ghc' 'pandoc')
+source=("$_hkgname-$pkgver.tar.gz::https://github.com/koalaman/shellcheck/archive/v$pkgver.tar.gz;)
+sha512sums=('4e9575985fe914cb35444995212ac1afaa40b004dbbc86b5987bf8b65e20b14a0102c9c601dc061d604129a8e978021f22a11d682545cb7f07ec974495cfa387')
+
+build() {
+cd $pkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+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
+
+pandoc -s -t man shellcheck.1.md -o shellcheck.1
+}
+
+check() {
+cd $pkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $pkgname-$pkgver
+
+install -D -m644 ${pkgname}.1   "${pkgdir}/usr/share/man/man1/${pkgname}.1"
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-05-31 Thread Felix Yan via arch-commits
Date: Friday, May 31, 2019 @ 21:27:37
  Author: felixonmars
Revision: 476118

archrelease: copy trunk to community-staging-x86_64

Added:
  postgrest/repos/community-staging-x86_64/
  postgrest/repos/community-staging-x86_64/PKGBUILD
(from rev 476117, postgrest/trunk/PKGBUILD)

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

Copied: postgrest/repos/community-staging-x86_64/PKGBUILD (from rev 476117, 
postgrest/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-05-31 21:27:37 UTC (rev 476118)
@@ -0,0 +1,70 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=postgrest
+pkgver=5.2.0
+pkgrel=88
+pkgdesc="REST API for any Postgres database"
+url="https://github.com/begriffs/postgrest;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-auto-update' 'haskell-hasql' 'haskell-hasql-pool' 
'haskell-protolude'
+ 'haskell-warp' 'haskell-base64-bytestring' 'haskell-retry' 
'haskell-aeson'
+ 'haskell-ansi-wl-pprint' 'haskell-case-insensitive' 'haskell-cassava'
+ 'haskell-configurator-ng' 'haskell-contravariant' 
'haskell-contravariant-extras'
+ 'haskell-either' 'haskell-gitrev' 'haskell-hasql-transaction' 
'haskell-heredoc'
+ 'haskell-http' 'haskell-http-types' 
'haskell-insert-ordered-containers'
+ 'haskell-interpolatedstring-perl6' 'haskell-jose' 'haskell-lens' 
'haskell-lens-aeson'
+ 'haskell-network-uri' 'haskell-optparse-applicative' 
'haskell-ranged-sets'
+ 'haskell-regex-tdfa' 'haskell-scientific' 'haskell-swagger2' 
'haskell-unordered-containers'
+ 'haskell-vector' 'haskell-wai' 'haskell-wai-cors' 'haskell-wai-extra'
+ 'haskell-wai-middleware-static' 'haskell-cookie')
+makedepends=('ghc' 'haskell-aeson-qq' 'haskell-async' 'haskell-hspec' 
'haskell-hspec-wai'
+ 'haskell-hspec-wai-json' 'haskell-hjsonschema')
+checkdepends=('pifpaf' 'postgresql' 'procps-ng')
+source=("$pkgname-$pkgver.tar.bz2::https://github.com/begriffs/postgrest/archive/v$pkgver.tar.gz;)
+sha512sums=('7c2bba89457dd8b3d681ccc032482055144b5ee17336b2e90dda6bbed6c229f36cf521cf66aafd7923ca6c147a1f2bb26567a3109079dae65d726e85f85b32ed')
+
+prepare() {
+cd $pkgname-$pkgver
+sed -i -e 's/==/>=/' -e 's/< *4.10/<5/' -e 's/== 0.3.0/>= 0.3.0/' 
$pkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-CI
+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 $pkgname-$pkgver
+
+eval $(pifpaf run postgresql --host 127.0.0.1 --port 5432)
+createdb postgrest_test
+
+# TODO: it shouldn't take this long to finish
+# POSTGREST_TEST_CONNECTION=$(test/create_test_db 
"postgres://$USER@localhost" postgrest_test) runhaskell Setup test
+
+# Disabled: uses stack
+# test/io-tests.sh
+
+pifpaf_stop
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-05-31 Thread Felix Yan via arch-commits
Date: Friday, May 31, 2019 @ 21:27:27
  Author: felixonmars
Revision: 476117

upgpkg: postgrest 5.2.0-88

rebuild with cereal 0.5.8.1

Modified:
  postgrest/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-31 21:24:23 UTC (rev 476116)
+++ PKGBUILD2019-05-31 21:27:27 UTC (rev 476117)
@@ -3,7 +3,7 @@
 
 pkgname=postgrest
 pkgver=5.2.0
-pkgrel=87
+pkgrel=88
 pkgdesc="REST API for any Postgres database"
 url="https://github.com/begriffs/postgrest;
 license=("MIT")


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

2019-05-31 Thread Felix Yan via arch-commits
Date: Friday, May 31, 2019 @ 21:24:23
  Author: felixonmars
Revision: 476116

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: pandoc-crossref/repos/community-staging-x86_64/PKGBUILD (from rev 
476115, pandoc-crossref/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-05-31 21:24:23 UTC (rev 476116)
@@ -0,0 +1,46 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc-crossref
+pkgver=0.3.4.1
+pkgrel=30
+pkgdesc="Pandoc filter for cross-references"
+url="https://hackage.haskell.org/package/${pkgname};
+license=("GPL2")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-data-default' 'haskell-data-accessor' 
'haskell-data-accessor-template'
+ 'haskell-data-accessor-transformers' 'haskell-gitrev' 
'haskell-open-browser'
+ 'haskell-optparse-applicative' 'pandoc' 'haskell-pandoc-types' 
'haskell-roman-numerals'
+ 'haskell-syb' 'haskell-utility-ht')
+makedepends=('ghc' 'haskell-hspec')
+conflicts=('haskell-pandoc-crossref')
+replaces=('haskell-pandoc-crossref')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/lierdakil/pandoc-crossref/archive/v$pkgver.tar.gz;)
+sha512sums=('25cee0e9626e67d46769fff47da67fc616c1ce6c181e3c6e3f82b9dd1db1fc2bb3fe264da0e6c8d6082f8ea483530f88e917598ac9daaa2f6b97bbccca203254')
+
+build() {
+cd $pkgname-$pkgver
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests 
--datasubdir="$pkgname" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+   -f-enable_flaky_tests
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $pkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $pkgname-$pkgver
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-05-31 Thread Felix Yan via arch-commits
Date: Friday, May 31, 2019 @ 21:24:14
  Author: felixonmars
Revision: 476115

upgpkg: pandoc-crossref 0.3.4.1-30

rebuild with cereal 0.5.8.1

Modified:
  pandoc-crossref/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-31 21:22:53 UTC (rev 476114)
+++ PKGBUILD2019-05-31 21:24:14 UTC (rev 476115)
@@ -3,7 +3,7 @@
 
 pkgname=pandoc-crossref
 pkgver=0.3.4.1
-pkgrel=29
+pkgrel=30
 pkgdesc="Pandoc filter for cross-references"
 url="https://hackage.haskell.org/package/${pkgname};
 license=("GPL2")


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

2019-05-31 Thread Felix Yan via arch-commits
Date: Friday, May 31, 2019 @ 21:22:53
  Author: felixonmars
Revision: 476114

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-hakyll/repos/community-staging-x86_64/PKGBUILD (from rev 
476113, haskell-hakyll/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-05-31 21:22:53 UTC (rev 476114)
@@ -0,0 +1,56 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hakyll
+pkgname=haskell-hakyll
+pkgver=4.12.5.2
+pkgrel=18
+pkgdesc="A static website compiler library"
+url="http://jaspervdj.be/hakyll;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-blaze-html' 'haskell-blaze-markup' 
'haskell-cryptohash'
+ 'haskell-data-default' 'haskell-file-embed' 'haskell-fsnotify' 
'haskell-http-conduit'
+ 'haskell-http-types' 'haskell-lrucache' 'haskell-network-uri'
+ 'haskell-optparse-applicative' 'pandoc' 'pandoc-citeproc' 
'haskell-random'
+ 'haskell-regex-tdfa' 'haskell-resourcet' 'haskell-scientific' 
'haskell-tagsoup'
+ 'haskell-time-locale-compat' 'haskell-unordered-containers' 
'haskell-vector'
+ 'haskell-wai' 'haskell-wai-app-static' 'haskell-warp' 'haskell-yaml')
+makedepends=('ghc' 'haskell-quickcheck' 'haskell-tasty' 'haskell-tasty-hunit'
+ 'haskell-tasty-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('715324fa19b85e8f39e33b4d5082a04f40fc667737b41117da68a6a0eedad288a551929fa2eea636dd421d4d416996125ff9d83752c7daaf64ecc191e9790469')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i 's/< *2.13/<3/' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --datasubdir="$pkgname" 
--enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fcheckexternal -fwatchserver -fpreviewserver -fusepandoc
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+LC_CTYPE=en_US.UTF-8 runhaskell Setup test || warning 
"https://github.com/jaspervdj/hakyll/issues/682;
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-05-31 Thread Felix Yan via arch-commits
Date: Friday, May 31, 2019 @ 21:22:41
  Author: felixonmars
Revision: 476113

upgpkg: haskell-hakyll 4.12.5.2-18

rebuild with cereal 0.5.8.1

Modified:
  haskell-hakyll/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-31 21:20:59 UTC (rev 476112)
+++ PKGBUILD2019-05-31 21:22:41 UTC (rev 476113)
@@ -4,7 +4,7 @@
 _hkgname=hakyll
 pkgname=haskell-hakyll
 pkgver=4.12.5.2
-pkgrel=17
+pkgrel=18
 pkgdesc="A static website compiler library"
 url="http://jaspervdj.be/hakyll;
 license=("BSD")


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

2019-05-31 Thread Felix Yan via arch-commits
Date: Friday, May 31, 2019 @ 21:20:59
  Author: felixonmars
Revision: 476112

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: pandoc-citeproc/repos/community-staging-x86_64/PKGBUILD (from rev 
476111, pandoc-citeproc/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-05-31 21:20:59 UTC (rev 476112)
@@ -0,0 +1,57 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc-citeproc
+pkgver=0.16.2
+pkgrel=49
+pkgdesc="Supports using pandoc with citeproc"
+url="https://hackage.haskell.org/package/$pkgname;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-aeson-pretty' 'haskell-attoparsec'
+ 'haskell-base-compat' 'haskell-data-default' 'haskell-hs-bibutils' 
'haskell-libyaml'
+ 'haskell-network' 'haskell-old-locale' 'pandoc' 
'haskell-pandoc-types' 'haskell-rfc5051'
+ 'haskell-safe' 'haskell-setenv' 'haskell-split' 'haskell-syb' 
'haskell-tagsoup'
+ 'haskell-temporary' 'haskell-text-icu' 'haskell-unordered-containers' 
'haskell-vector'
+ 'haskell-xml-conduit' 'haskell-yaml')
+conflicts=('haskell-pandoc-citeproc')
+replaces=('haskell-pandoc-citeproc')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/$pkgname/${pkgver}/$pkgname-${pkgver}.tar.gz;)
+sha512sums=('90c3fabe3e1478f43b0157580deb691e5be8d3064144cbf4d67ab8f15bfd99c51b3e811b47bbe4fefc76c4efe660007ab05a782e5a5df01cd42965fe22e5c664')
+
+prepare() {
+cd "${srcdir}/$pkgname-${pkgver}"
+# TODO: find a better solution
+sed -i 
"s|(\"HOME\",\".\")|(\"HOME\",\".\"),(\"LD_LIBRARY_PATH\",\"$PWD/dist/build\"),(\"pandoc_citeproc_datadir\",\"$PWD\")|"
 tests/test-pandoc-citeproc.hs
+}
+
+build() {
+cd "${srcdir}/$pkgname-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/$pkgname" 
--datasubdir="$pkgname" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-debug -f-test_citeproc -funicode_collation -f-embed_data_files 
-fbibutils -f-static
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $pkgname-$pkgver
+# https://github.com/jgm/pandoc-citeproc/issues/342
+runhaskell Setup test || warning "Tests failed"
+}
+
+package() {
+cd "${srcdir}/$pkgname-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/$pkgname.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/$pkgname.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" "${pkgdir}/usr/share/licenses/$pkgname/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/$pkgname/LICENSE"
+}


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

2019-05-31 Thread Felix Yan via arch-commits
Date: Friday, May 31, 2019 @ 21:20:49
  Author: felixonmars
Revision: 476111

upgpkg: pandoc-citeproc 0.16.2-49

rebuild with cereal 0.5.8.1

Modified:
  pandoc-citeproc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-31 21:18:08 UTC (rev 476110)
+++ PKGBUILD2019-05-31 21:20:49 UTC (rev 476111)
@@ -3,7 +3,7 @@
 
 pkgname=pandoc-citeproc
 pkgver=0.16.2
-pkgrel=48
+pkgrel=49
 pkgdesc="Supports using pandoc with citeproc"
 url="https://hackage.haskell.org/package/$pkgname;
 license=("BSD")


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

2019-05-31 Thread Felix Yan via arch-commits
Date: Friday, May 31, 2019 @ 21:18:08
  Author: felixonmars
Revision: 476110

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: pandoc/repos/community-staging-x86_64/PKGBUILD (from rev 476109, 
pandoc/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-05-31 21:18:08 UTC (rev 476110)
@@ -0,0 +1,65 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc
+pkgver=2.7.2
+pkgrel=52
+pkgdesc='Conversion between markup formats'
+url='https://pandoc.org'
+license=('GPL')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-http' 'haskell-juicypixels' 'haskell-sha' 
'haskell-aeson'
+ 'haskell-aeson-pretty' 'haskell-attoparsec' 'haskell-base-compat' 
'haskell-base64-bytestring'
+ 'haskell-blaze-html' 'haskell-blaze-markup' 
'haskell-case-insensitive' 'haskell-cmark-gfm'
+ 'haskell-data-default' 'haskell-doctemplates' 'haskell-exceptions' 
'haskell-glob'
+ 'haskell-haddock-library' 'haskell-ipynb' 'haskell-skylighting' 
'haskell-hslua'
+ 'haskell-hslua-module-text' 'haskell-http-client' 'haskell-syb' 
'haskell-hsyaml' 'haskell-http-client-tls'
+ 'haskell-http-types' 'haskell-safe' 'haskell-split' 'haskell-texmath'
+ 'haskell-network' 'haskell-pandoc-types' 'haskell-random' 
'haskell-scientific'
+ 'haskell-tagsoup' 'haskell-temporary' 'haskell-network-uri' 
'haskell-unicode-transforms'
+ 'haskell-unordered-containers' 'haskell-zip-archive' 'haskell-vector' 
'haskell-xml'
+ 'haskell-zlib')
+optdepends=('pandoc-citeproc: for citation rendering with pandoc-citeproc 
filter'
+'pandoc-crossref: for numbering figures, equations, tables and 
cross-references to them with pandoc-crossref filter'
+'texlive-core: for pdf output')
+conflicts=('haskell-pandoc')
+replaces=('haskell-pandoc')
+makedepends=('ghc' 'haskell-diff' 'haskell-tasty' 'haskell-tasty-hunit' 
'haskell-tasty-quickcheck'
+ 'haskell-tasty-golden' 'haskell-quickcheck' 
'haskell-executable-path')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('f0d6a700413d1a70b6ca8f69883afda27248dcf5315a1819127163ad8e239fd19d2ec8462e3a793a67d3f86d02b364fa00ac5de735a77a63e737a1a2b92ef00b')
+
+prepare() {
+cd "${srcdir}/$pkgname-${pkgver}"
+sed -i -e 's/< *2.13/<3/' -e 's/< *0.2/<1/' $pkgname.cabal
+
+# TODO: find a better solution
+sed -i "s|let env' = dynlibEnv ++ |let env' = dynlibEnv ++ 
[(\"LD_LIBRARY_PATH\", \"$PWD/dist/build\")] ++ |" test/Tests/Command.hs
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgbase}" 
--datasubdir="$pkgname" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-trypandoc -f-embed_data_files -f-static
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+LC_CTYPE=en_US.UTF-8 runhaskell Setup test || warning "Tests failed"
+}
+
+package() {
+cd "${srcdir}/${pkgbase}-${pkgver}"
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/COPYING.md"
+}


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

2019-05-31 Thread Felix Yan via arch-commits
Date: Friday, May 31, 2019 @ 21:17:58
  Author: felixonmars
Revision: 476109

upgpkg: pandoc 2.7.2-52

rebuild with cereal 0.5.8.1

Modified:
  pandoc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-31 21:07:21 UTC (rev 476108)
+++ PKGBUILD2019-05-31 21:17:58 UTC (rev 476109)
@@ -3,7 +3,7 @@
 
 pkgname=pandoc
 pkgver=2.7.2
-pkgrel=51
+pkgrel=52
 pkgdesc='Conversion between markup formats'
 url='https://pandoc.org'
 license=('GPL')


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

2019-05-31 Thread Felix Yan via arch-commits
Date: Friday, May 31, 2019 @ 21:07:21
  Author: felixonmars
Revision: 476108

archrelease: copy trunk to community-staging-x86_64

Added:
  hopenpgp-tools/repos/community-staging-x86_64/
  hopenpgp-tools/repos/community-staging-x86_64/PKGBUILD
(from rev 476107, hopenpgp-tools/trunk/PKGBUILD)

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

Copied: hopenpgp-tools/repos/community-staging-x86_64/PKGBUILD (from rev 
476107, hopenpgp-tools/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-05-31 21:07:21 UTC (rev 476108)
@@ -0,0 +1,36 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hopenpgp-tools
+pkgver=0.21.3
+pkgrel=56
+pkgdesc="hOpenPGP-based command-line tools"
+url="http://floss.scru.org/hopenpgp-tools;
+license=("AGPL3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-attoparsec' 
'haskell-base16-bytestring'
+ 'haskell-binary-conduit' 'haskell-conduit' 'haskell-conduit-extra' 
'haskell-crypto-pubkey'
+ 'haskell-cryptohash' 'haskell-errors' 'haskell-fgl' 
'haskell-graphviz' 'haskell-hopenpgp'
+ 'haskell-http-client' 'haskell-http-client-tls' 'haskell-http-types' 
'haskell-ixset-typed'
+ 'haskell-lens' 'haskell-monad-loops' 'haskell-openpgp-asciiarmor'
+ 'haskell-optparse-applicative' 'haskell-prettyprinter'
+ 'haskell-prettyprinter-ansi-terminal' 
'haskell-prettyprinter-convert-ansi-wl-pprint'
+ 'haskell-resourcet' 'haskell-time-locale-compat' 'haskell-yaml')
+makedepends=('alex' 'happy' 'ghc')
+source=(https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('c19c9164879df7be62e08b69ce9175834044c2d7c0c3a890340e2a10444ac43fc6d2b63fb958925921056ef1e13ec9c7cfe08f20cdc430cfa2b9584fdd625d19')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --prefix=/usr --enable-executable-dynamic 
--docdir="/usr/share/doc/${pkgname}"
+runhaskell Setup build
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+
+rm "$pkgdir/usr/share/doc/hopenpgp-tools/LICENSE"
+rmdir "$pkgdir/usr/share/doc/hopenpgp-tools" "$pkgdir/usr/share/doc" 
"$pkgdir/usr/share"
+}


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

2019-05-31 Thread Felix Yan via arch-commits
Date: Friday, May 31, 2019 @ 21:07:12
  Author: felixonmars
Revision: 476107

upgpkg: hopenpgp-tools 0.21.3-56

rebuild with cereal 0.5.8.1

Modified:
  hopenpgp-tools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-31 21:05:45 UTC (rev 476106)
+++ PKGBUILD2019-05-31 21:07:12 UTC (rev 476107)
@@ -3,7 +3,7 @@
 
 pkgname=hopenpgp-tools
 pkgver=0.21.3
-pkgrel=55
+pkgrel=56
 pkgdesc="hOpenPGP-based command-line tools"
 url="http://floss.scru.org/hopenpgp-tools;
 license=("AGPL3")


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

2019-05-31 Thread Felix Yan via arch-commits
Date: Friday, May 31, 2019 @ 21:05:45
  Author: felixonmars
Revision: 476106

archrelease: copy trunk to community-staging-x86_64

Added:
  hoogle/repos/community-staging-x86_64/
  hoogle/repos/community-staging-x86_64/PKGBUILD
(from rev 476105, hoogle/trunk/PKGBUILD)

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

Copied: hoogle/repos/community-staging-x86_64/PKGBUILD (from rev 476105, 
hoogle/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-05-31 21:05:45 UTC (rev 476106)
@@ -0,0 +1,44 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hoogle
+pkgver=5.0.17.9
+pkgrel=2
+pkgdesc="Haskell API Search"
+url="http://www.haskell.org/hoogle/;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-quickcheck' 'haskell-aeson' 'haskell-blaze-html'
+ 'haskell-blaze-markup' 'haskell-cmdargs' 'haskell-conduit' 
'haskell-conduit-extra'
+ 'haskell-connection' 'haskell-extra' 'haskell-foundation' 
'haskell-hashable'
+ 'haskell-http-conduit' 'haskell-http-types' 'haskell-js-flot' 
'haskell-js-jquery'
+ 'haskell-mmap' 'haskell-network' 'haskell-old-locale' 
'haskell-process-extras'
+ 'haskell-resourcet' 'haskell-src-exts' 'haskell-storable-tuple' 
'haskell-tar'
+ 'haskell-uniplate' 'haskell-utf8-string' 'haskell-vector' 
'haskell-wai'
+ 'haskell-wai-logger' 'haskell-warp' 'haskell-warp-tls' 'haskell-zlib')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('d9a7d2ec6fc8aed6cff986b87ef268a76ddfb15946ed406c99478a26c02389272e6a7561a5b3b1895e6122f8158071f845f78bfccf9c999a2991652158d29332')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" \
+--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
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-05-31 Thread Felix Yan via arch-commits
Date: Friday, May 31, 2019 @ 21:05:36
  Author: felixonmars
Revision: 476105

upgpkg: hoogle 5.0.17.9-2

rebuild with cereal 0.5.8.1

Modified:
  hoogle/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-31 21:04:06 UTC (rev 476104)
+++ PKGBUILD2019-05-31 21:05:36 UTC (rev 476105)
@@ -3,7 +3,7 @@
 
 pkgname=hoogle
 pkgver=5.0.17.9
-pkgrel=1
+pkgrel=2
 pkgdesc="Haskell API Search"
 url="http://www.haskell.org/hoogle/;
 license=("BSD")


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

2019-05-31 Thread Felix Yan via arch-commits
Date: Friday, May 31, 2019 @ 21:04:06
  Author: felixonmars
Revision: 476104

archrelease: copy trunk to community-staging-x86_64

Added:
  hledger-web/repos/community-staging-x86_64/
  hledger-web/repos/community-staging-x86_64/PKGBUILD
(from rev 476103, hledger-web/trunk/PKGBUILD)

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

Copied: hledger-web/repos/community-staging-x86_64/PKGBUILD (from rev 476103, 
hledger-web/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-05-31 21:04:06 UTC (rev 476104)
@@ -0,0 +1,52 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hledger-web
+pkgver=1.14.1
+pkgrel=59
+pkgdesc="Web interface for the hledger accounting tool"
+url="http://hledger.org;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'hledger' 'haskell-hledger-lib' 'haskell-aeson' 
'haskell-blaze-html'
+ 'haskell-blaze-markup' 'haskell-case-insensitive' 
'haskell-clientsession'
+ 'haskell-cmdargs' 'haskell-conduit' 'haskell-data-default' 
'haskell-decimal'
+ 'haskell-hjsmin' 'haskell-http-conduit' 'haskell-http-client' 
'haskell-http-types'
+ 'haskell-conduit-extra' 'haskell-safe' 'haskell-shakespeare' 
'haskell-wai'
+ 'haskell-wai-extra' 'haskell-wai-handler-launch' 'haskell-warp' 
'haskell-yesod'
+ 'haskell-yesod-core' 'haskell-yesod-form' 'haskell-yesod-static' 
'haskell-json'
+ 'haskell-megaparsec')
+makedepends=('ghc' 'haskell-hspec' 'haskell-yesod-test')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('3eb50a27e96b8e4590719c41fe00dbf7add431a8bbc300f1d2614c09dbae5eaa2eb43ac96c597c441a2f43bf4096fe8c450bb3bdb601cc2a06fd840768b45786')
+
+prepare() {
+cd $pkgname-$pkgver
+sed -i -e '/semigroups/d' $pkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-dev -f-library-only -fthreaded
+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 $pkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-05-31 Thread Felix Yan via arch-commits
Date: Friday, May 31, 2019 @ 21:03:56
  Author: felixonmars
Revision: 476103

upgpkg: hledger-web 1.14.1-59

rebuild with cereal 0.5.8.1

Modified:
  hledger-web/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-31 21:01:53 UTC (rev 476102)
+++ PKGBUILD2019-05-31 21:03:56 UTC (rev 476103)
@@ -3,7 +3,7 @@
 
 pkgname=hledger-web
 pkgver=1.14.1
-pkgrel=58
+pkgrel=59
 pkgdesc="Web interface for the hledger accounting tool"
 url="http://hledger.org;
 license=("GPL")


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

2019-05-31 Thread Felix Yan via arch-commits
Date: Friday, May 31, 2019 @ 21:01:53
  Author: felixonmars
Revision: 476102

archrelease: copy trunk to community-staging-x86_64

Added:
  git-annex/repos/community-staging-x86_64/
  git-annex/repos/community-staging-x86_64/PKGBUILD
(from rev 476101, git-annex/trunk/PKGBUILD)
  git-annex/repos/community-staging-x86_64/socks-0.6.patch
(from rev 476101, git-annex/trunk/socks-0.6.patch)

-+
 PKGBUILD|   58 ++
 socks-0.6.patch |   13 
 2 files changed, 71 insertions(+)

Copied: git-annex/repos/community-staging-x86_64/PKGBUILD (from rev 476101, 
git-annex/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-05-31 21:01:53 UTC (rev 476102)
@@ -0,0 +1,58 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=git-annex
+pkgver=7.20190507
+pkgrel=20
+pkgdesc="Manage files with git, without checking their contents into git"
+url="http://git-annex.branchable.com/;
+license=("AGPL3")
+arch=('x86_64')
+depends=('git' 'lsof' 'rsync' 'ghc-libs' 'haskell-aeson' 'haskell-async' 
'haskell-aws'
+ 'haskell-blaze-builder' 'haskell-bloomfilter' 'haskell-byteable' 
'haskell-case-insensitive'
+ 'haskell-clientsession' 'haskell-concurrent-output' 
'haskell-connection' 'haskell-conduit'
+ 'haskell-crypto-api' 'haskell-cryptonite' 'haskell-data-default' 
'haskell-dav'
+ 'haskell-dbus' 'haskell-disk-free-space' 'haskell-dlist' 
'haskell-edit-distance'
+ 'haskell-exceptions' 'haskell-fdo-notify' 'haskell-feed' 
'haskell-hinotify'
+ 'haskell-hslogger' 'haskell-http-client' 'haskell-http-client-tls' 
'haskell-http-conduit'
+ 'haskell-http-types' 'haskell-ifelse' 'haskell-magic' 
'haskell-memory' 'haskell-microlens'
+ 'haskell-monad-control' 'haskell-monad-logger' 'haskell-mountpoints' 
'haskell-network'
+ 'haskell-network-info' 'haskell-network-multicast' 
'haskell-network-uri'
+ 'haskell-old-locale' 'haskell-optparse-applicative' 
'haskell-path-pieces'
+ 'haskell-persistent' 'haskell-persistent-sqlite' 
'haskell-persistent-template'
+ 'haskell-quickcheck' 'haskell-random' 'haskell-regex-tdfa' 
'haskell-resourcet'
+ 'haskell-safesemaphore' 'haskell-sandi' 'haskell-securemem' 
'haskell-shakespeare'
+ 'haskell-socks' 'haskell-split' 'haskell-stm-chans' 'haskell-tagsoup' 
'haskell-tasty'
+ 'haskell-tasty-hunit' 'haskell-tasty-quickcheck' 
'haskell-tasty-rerun' 'haskell-torrent'
+ 'haskell-unix-compat' 'haskell-unordered-containers' 
'haskell-utf8-string' 'haskell-uuid'
+ 'haskell-vector' 'haskell-wai' 'haskell-wai-extra' 'haskell-warp' 
'haskell-warp-tls'
+ 'haskell-yesod' 'haskell-yesod-core' 'haskell-yesod-form' 
'haskell-yesod-static')
+makedepends=('chrpath' 'ghc')
+source=("git+https://git.joeyh.name/git/git-annex.git#tag=$pkgver;
+socks-0.6.patch)
+sha512sums=('SKIP'
+
'572cfde516ac8efd7c7b7b734d7de2276e7fa4143d8ed66de101d987a81ac71b911161454979f5a6b3d89f0080423f5086eb73aa02e9ebfdde63f0167bcac608')
+
+prepare() {
+  cd git-annex
+  patch -p1 -i ../socks-0.6.patch
+}
+
+build() {
+  cd git-annex
+
+  runhaskell Setup configure -O --prefix=/usr --enable-executable-dynamic 
--disable-library-vanilla \
+--docdir="/usr/share/doc/$pkgname" \
+-ftorrentparser -fproduction -fpairing -fwebapp \
+-fassistant -fwebdav -fs3 -f-benchmark -fdbus -fmagicmime -f-networkbsd
+  runhaskell Setup build
+}
+
+package() {
+  cd git-annex
+  runhaskell Setup copy --destdir="$pkgdir"
+  make GHC="ghc -dynamic" BUILDER=true DESTDIR="$pkgdir" install-desktop 
install-completions
+
+  rm "$pkgdir"/usr/share/doc/git-annex/COPYRIGHT
+  rmdir "$pkgdir"/usr/share/doc/git-annex "$pkgdir"/usr/share/doc
+}

Copied: git-annex/repos/community-staging-x86_64/socks-0.6.patch (from rev 
476101, git-annex/trunk/socks-0.6.patch)
===
--- community-staging-x86_64/socks-0.6.patch(rev 0)
+++ community-staging-x86_64/socks-0.6.patch2019-05-31 21:01:53 UTC (rev 
476102)
@@ -0,0 +1,13 @@
+diff --git a/Utility/Tor.hs b/Utility/Tor.hs
+index 427fb100bc..0ee904ca2a 100644
+--- a/Utility/Tor.hs
 b/Utility/Tor.hs
+@@ -37,7 +37,7 @@ connectHiddenService (OnionAddress address) port = do
+   return s
+   where
+   torsocksport = 9050
+-  torsockconf = defaultSocksConf "127.0.0.1" torsocksport
++  torsockconf = defaultSocksConf $ SockAddrInet torsocksport $ 
tupleToHostAddress (127, 0, 0, 1)
+   socksdomain = SocksAddrDomainName (BU8.fromString address)
+   socksaddr = SocksAddress socksdomain (fromIntegral port)
+ 


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

2019-05-31 Thread Felix Yan via arch-commits
Date: Friday, May 31, 2019 @ 21:01:41
  Author: felixonmars
Revision: 476101

upgpkg: git-annex 7.20190507-20

rebuild with cereal 0.5.8.1

Modified:
  git-annex/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-31 19:17:04 UTC (rev 476100)
+++ PKGBUILD2019-05-31 21:01:41 UTC (rev 476101)
@@ -3,7 +3,7 @@
 
 pkgname=git-annex
 pkgver=7.20190507
-pkgrel=19
+pkgrel=20
 pkgdesc="Manage files with git, without checking their contents into git"
 url="http://git-annex.branchable.com/;
 license=("AGPL3")


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

2019-05-31 Thread Christian Hesse via arch-commits
Date: Friday, May 31, 2019 @ 19:17:04
  Author: eworm
Revision: 476100

this is [community]...

Added:
  wireguard-lts/repos/community-testing-x86_64/
Deleted:
  wireguard-lts/repos/testing-x86_64/


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

2019-05-31 Thread Christian Hesse via arch-commits
Date: Friday, May 31, 2019 @ 19:15:31
  Author: eworm
Revision: 476099

archrelease: copy trunk to testing-x86_64

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

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

Copied: wireguard-lts/repos/testing-x86_64/PKGBUILD (from rev 476098, 
wireguard-lts/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-05-31 19:15:31 UTC (rev 476099)
@@ -0,0 +1,32 @@
+# Maintainer: Christian Hesse 
+
+pkgname='wireguard-lts'
+pkgver=0.0.20190531
+pkgrel=2
+_linux_major=4
+_linux_minor=19
+arch=('x86_64')
+url='https://www.wireguard.com/'
+license=('GPL')
+_linux_cur=${_linux_major}.${_linux_minor}
+_linux_next=${_linux_major}.$((_linux_minor + 1))
+makedepends=("linux-lts>=$_linux_cur" "linux-lts<$_linux_next"
+ "linux-lts-headers>=$_linux_cur" "linux-lts-headers<$_linux_next"
+ "wireguard-dkms>=$pkgver")
+
+_extramodules="extramodules-${_linux_major}.${_linux_minor}-lts"
+
+package_wireguard-lts() {
+  _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
+  pkgdesc='Wireguard module for LTS Kernel'
+  license=('GPL')
+  depends=("linux-lts>=$_linux_cur" "linux-lts<$_linux_next")
+  conflicts=('wireguard-dkms')
+  provides=('WIREGUARD-MODULE')
+
+  cd "/var/lib/dkms/wireguard/${pkgver}/$_kernver/$CARCH/module"
+  install -Dt "$pkgdir/usr/lib/modules/$_extramodules" -m0644 *
+
+  # compress each module individually
+  find "$pkgdir" -name '*.ko' -exec xz -T1 {} +
+}


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

2019-05-31 Thread Andrew Crerar via arch-commits
Date: Friday, May 31, 2019 @ 19:15:27
  Author: andrewsc
Revision: 476097

archrelease: copy trunk to community-any

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

--+
 PKGBUILD |  448 ++---
 1 file changed, 224 insertions(+), 224 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-05-31 19:15:04 UTC (rev 476096)
+++ PKGBUILD2019-05-31 19:15:27 UTC (rev 476097)
@@ -1,224 +0,0 @@
-# Maintainer: Andrew Crerar 
-
-pkgbase=firefox-developer-edition-i18n
-pkgver=68.0b5
-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"'
-  '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 (US)"'
-  '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"'
-  'tr "Turkish"'
-  '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/devedition/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=('e2482b600f41b2676cc9ef3dcc8448ee0b6b2be876bd46840e608bdedf6712ea6970d46ed46e0e876262b410249c9a862a9c8b076796413798bbe16e976bcb4c'
-
'a17d2cb3987767812fa2fbe448bdc3c38973435574ad63ea4d6d60a8ad5050460fd1af91854040961da573f7a3725d65b9266712e4614e3d69f62837a78cc6dc'
-
'61b98c6abf37baa6c518cdb124171d592f4cdd9f2b0f7ac38d232d00cf8c7236d5525f96ebd09cd6beac34e3601d10dcc450456a3c0ada55d74a50d35726ff9e'
-
'acfc5f475836acd22f2311ca96b366709ab81b6b15978b71ddfe849ba7f55fea784bca785e896546547636135d9b8b0381946395eda35c2dea0caa8736a261e7'
-
'7c584cd0baa76f12854a99953ea4d82dca48146424987e7f16e802c1e8c2c62e0d8bf1d96751f7c1ed33de5086c54411a17a68fb5ce8fb7d2f7bf152c0c58923'
-
'8ec7c4f6d3e50b29a149d10d7a459259d7e19b70cddffb4aa3e2da4c6dc6b95dc60b67d103b2ff3faf64d0bbfdb5d60f8e657a9f8ec7192e8d23ec9fbccf3e6a'
-
'c3a9a134c68762eac3b48a5a00fd871709604ba857006203ff7ccb95cd36768e4d32c17b72f2d23bee84b687e1c1bf86417d5ce613a47ad05c82f1088eaebbd8'
-

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

2019-05-31 Thread Christian Hesse via arch-commits
Date: Friday, May 31, 2019 @ 19:15:29
  Author: eworm
Revision: 476098

upgpkg: wireguard-lts 0.0.20190531-2

rebuilt for linux-lts-4.19.47-1

Modified:
  wireguard-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-31 19:15:27 UTC (rev 476097)
+++ PKGBUILD2019-05-31 19:15:29 UTC (rev 476098)
@@ -2,7 +2,7 @@
 
 pkgname='wireguard-lts'
 pkgver=0.0.20190531
-pkgrel=1
+pkgrel=2
 _linux_major=4
 _linux_minor=19
 arch=('x86_64')


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

2019-05-31 Thread Andrew Crerar via arch-commits
Date: Friday, May 31, 2019 @ 19:15:04
  Author: andrewsc
Revision: 476096

upgpkg: firefox-developer-edition-i18n 68.0b6-1

firefox-developer-edition-i18n: Updating to 68.0b6

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

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-31 19:12:28 UTC (rev 476095)
+++ PKGBUILD2019-05-31 19:15:04 UTC (rev 476096)
@@ -1,7 +1,7 @@
 # Maintainer: Andrew Crerar 
 
 pkgbase=firefox-developer-edition-i18n
-pkgver=68.0b5
+pkgver=68.0b6
 pkgrel=1
 pkgdesc="Language pack for Firefox Developer Edition"
 arch=('any')
@@ -129,96 +129,96 @@
 
"$pkgdir/usr/lib/firefox-developer-edition/browser/extensions/langpack-$1...@devedition.mozilla.org.xpi"
 }
 
-sha512sums=('e2482b600f41b2676cc9ef3dcc8448ee0b6b2be876bd46840e608bdedf6712ea6970d46ed46e0e876262b410249c9a862a9c8b076796413798bbe16e976bcb4c'
-
'a17d2cb3987767812fa2fbe448bdc3c38973435574ad63ea4d6d60a8ad5050460fd1af91854040961da573f7a3725d65b9266712e4614e3d69f62837a78cc6dc'
-
'61b98c6abf37baa6c518cdb124171d592f4cdd9f2b0f7ac38d232d00cf8c7236d5525f96ebd09cd6beac34e3601d10dcc450456a3c0ada55d74a50d35726ff9e'
-
'acfc5f475836acd22f2311ca96b366709ab81b6b15978b71ddfe849ba7f55fea784bca785e896546547636135d9b8b0381946395eda35c2dea0caa8736a261e7'
-
'7c584cd0baa76f12854a99953ea4d82dca48146424987e7f16e802c1e8c2c62e0d8bf1d96751f7c1ed33de5086c54411a17a68fb5ce8fb7d2f7bf152c0c58923'
-
'8ec7c4f6d3e50b29a149d10d7a459259d7e19b70cddffb4aa3e2da4c6dc6b95dc60b67d103b2ff3faf64d0bbfdb5d60f8e657a9f8ec7192e8d23ec9fbccf3e6a'
-
'c3a9a134c68762eac3b48a5a00fd871709604ba857006203ff7ccb95cd36768e4d32c17b72f2d23bee84b687e1c1bf86417d5ce613a47ad05c82f1088eaebbd8'
-
'031534626c226e3157c3b7828a0b26f3659a1b7707f3f27ac02b641142595ea84fa65ec156edf7758599c3cc4d86c7eaa429b365a8bea2be1ec20cad4a4d6847'
-
'5995318a328d6dcd695213daf2ab855e2e059a37f28fe0c476fa24bb2e7ce0eeed5396de77a78716473a47c4b96cc97a7df6c4ecb6c7c7a63d865bd96f954c95'
-
'9ff7f090a7a4d57dd18dfe69f88ae18152ce1895436bd57b68fc628f5bf2109d1ad2c891eacdd8d0bf49c6d0fcb9ef3fa6a3299e004e7ad8cc64640421a23599'
-
'5dc4179d46e6ab669aaee223654eb6d5b16c5f2fa28ba73547161e7b40c6c77c978facd22ba488ceae9856a0b23c42af7cb2566594f401649ee059f6b50808a7'
-
'e619c8978471f5b76478507c0e5edce69fadafe0a3734b542abd80c8f8cf7848b6e5fbe2b6dbdd69c033d1373d09373322ddd481bbf4fe50fdc39ebdf0941309'
-
'bde9f7438bcadae4f5c56c7765fd5c4378d147fd31d2d67d3d8ce502d350c7fda62d41bb78dc71981279ac857c65dd1fdfec3ed9a7a84fc978c13e90dd87e7a5'
-
'887f8335283d361f722dbadd8ae028610181d39b4184cf62acabcc0fca6eec55381d096225a2fd7e3a755e16ffbcec3e0c8dc331b086b108752f4e68628b2d42'
-
'b22cb6d54efb37d35f003df1070823c0efded2ada41eea4dbb6d78125ad51bb221a6d80da39f7427c2427aeaa2d24592ca85bea52e09e8f5f3ebc3da74e55d89'
-
'36e69f65abd48298163d0c7c093baf83c13a3d363bedb44beff38ae811b66a16cf0c28c0afcce94ac206e31caa41b3a0704172557e84f10ff15ea1859f192c9e'
-
'e18481aaad0581ad5fc7f3680c07ed9efc308d1889fc20b0848015be22602a36c371ed64a8de978cad55ce09a7a9c131e92db416acf9a736d68a4c6a20a5b818'
-
'a6057a996d9ea81551aacbc4185376cf0bd0b735ec9223e4f449262d7286a98584b3d95e5f191b55c10b5177ecdcd8c76369c5020d7f9ef103ee669a4f4ffcca'
-
'7253efa2a708a2ea7aa90d53cb541fd26db17c9ac74e806e1e00835196f1f298b42227f14c6b395462a26eee28d64f35296005d97edb211f25aa560ac1338860'
-
'e33d7e596bcdadf20286714caf4775b75c05076a5484eb2e4403252abb09054177ecb65bb8a2e19f711bcbcda5d723d58458b9e26f7f42a6fe95e20f15c4f750'
-
'3718cd9881667a09ff6afeb0d4e20cc6d177ec42d576ec8a11faa97434f66cd69fb0403e0b9cb495532c4c66502b1d0e89157b3890eae6f110a910e8eb47f604'
-
'864706b93c9cd9fa1416d945a39c2269ccb4a1e000a3170416707bfef3b546062347937d45d8727a1e76808f6b70fa431a7cbd45f2aa98f6037d70041f513f81'
-
'2a1c56f24c7198a6b5f328b87c8bfcde8d24dac8db221013f910c79dafcb2c637d165669c5d75cd812a8f15c6c6447ef043421d1603deee2dd595f5d9627f288'
-
'66885a183fedca30575921b694942f959c2bc39ba11b62664b3b2b27b3877f52b735cad4578c1c3bb6602abc7e7e5b6cd4c10dc853501c4eef9bff25a9074064'
-
'696bf4f97f7f47d5dd0bbce05b8b88231b53adeeae49364524e0accecfeb91eee3f099ceb76e0fc7896c7f001b9ed8483392982a14b9894e713e42e48f398992'
-
'922aa59bbc5657909b1ed2f32dab7f71f47af0d625df77d0cf9fb57729a09b976af9409a44091c2400d9649c5d626f7ab3e3e9fb379850b4577fe83099ff8d04'
-
'9fe1ee182ad4e5a067379b91ae931255201de7ce9b62d99bc2809ac27be39d1fa726407321c6fba8c9bec8a3e16534b9e00e34adedf47c71c689c38dcff8ca3f'
-
'bfa9e4a27f08ec8b1088f6fc952ed8ee803ab62be87972b4b44d7898c54dbf649207f58b61998b7e208ba6b1992e1fabc350d79f1c089c924ee1a47b25abe99a'
-

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

2019-05-31 Thread Christian Hesse via arch-commits
Date: Friday, May 31, 2019 @ 19:12:28
  Author: eworm
Revision: 476095

archrelease: copy trunk to community-x86_64

Added:
  wireguard-lts/repos/community-x86_64/PKGBUILD
(from rev 476094, wireguard-lts/trunk/PKGBUILD)
Deleted:
  wireguard-lts/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-05-31 19:12:25 UTC (rev 476094)
+++ PKGBUILD2019-05-31 19:12:28 UTC (rev 476095)
@@ -1,32 +0,0 @@
-# Maintainer: Christian Hesse 
-
-pkgname='wireguard-lts'
-pkgver=0.0.20190406
-pkgrel=7
-_linux_major=4
-_linux_minor=19
-arch=('x86_64')
-url='https://www.wireguard.com/'
-license=('GPL')
-_linux_cur=${_linux_major}.${_linux_minor}
-_linux_next=${_linux_major}.$((_linux_minor + 1))
-makedepends=("linux-lts>=$_linux_cur" "linux-lts<$_linux_next"
- "linux-lts-headers>=$_linux_cur" "linux-lts-headers<$_linux_next"
- "wireguard-dkms>=$pkgver")
-
-_extramodules="extramodules-${_linux_major}.${_linux_minor}-lts"
-
-package_wireguard-lts() {
-  _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
-  pkgdesc='Wireguard module for LTS Kernel'
-  license=('GPL')
-  depends=("linux-lts>=$_linux_cur" "linux-lts<$_linux_next")
-  conflicts=('wireguard-dkms')
-  provides=('WIREGUARD-MODULE')
-
-  cd "/var/lib/dkms/wireguard/${pkgver}/$_kernver/$CARCH/module"
-  install -Dt "$pkgdir/usr/lib/modules/$_extramodules" -m0644 *
-
-  # compress each module individually
-  find "$pkgdir" -name '*.ko' -exec xz -T1 {} +
-}

Copied: wireguard-lts/repos/community-x86_64/PKGBUILD (from rev 476094, 
wireguard-lts/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-05-31 19:12:28 UTC (rev 476095)
@@ -0,0 +1,32 @@
+# Maintainer: Christian Hesse 
+
+pkgname='wireguard-lts'
+pkgver=0.0.20190531
+pkgrel=1
+_linux_major=4
+_linux_minor=19
+arch=('x86_64')
+url='https://www.wireguard.com/'
+license=('GPL')
+_linux_cur=${_linux_major}.${_linux_minor}
+_linux_next=${_linux_major}.$((_linux_minor + 1))
+makedepends=("linux-lts>=$_linux_cur" "linux-lts<$_linux_next"
+ "linux-lts-headers>=$_linux_cur" "linux-lts-headers<$_linux_next"
+ "wireguard-dkms>=$pkgver")
+
+_extramodules="extramodules-${_linux_major}.${_linux_minor}-lts"
+
+package_wireguard-lts() {
+  _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
+  pkgdesc='Wireguard module for LTS Kernel'
+  license=('GPL')
+  depends=("linux-lts>=$_linux_cur" "linux-lts<$_linux_next")
+  conflicts=('wireguard-dkms')
+  provides=('WIREGUARD-MODULE')
+
+  cd "/var/lib/dkms/wireguard/${pkgver}/$_kernver/$CARCH/module"
+  install -Dt "$pkgdir/usr/lib/modules/$_extramodules" -m0644 *
+
+  # compress each module individually
+  find "$pkgdir" -name '*.ko' -exec xz -T1 {} +
+}


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

2019-05-31 Thread Christian Hesse via arch-commits
Date: Friday, May 31, 2019 @ 19:12:25
  Author: eworm
Revision: 476094

upgpkg: wireguard-lts 0.0.20190531-1

new upstream release

Modified:
  wireguard-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-31 19:09:00 UTC (rev 476093)
+++ PKGBUILD2019-05-31 19:12:25 UTC (rev 476094)
@@ -1,8 +1,8 @@
 # Maintainer: Christian Hesse 
 
 pkgname='wireguard-lts'
-pkgver=0.0.20190406
-pkgrel=7
+pkgver=0.0.20190531
+pkgrel=1
 _linux_major=4
 _linux_minor=19
 arch=('x86_64')


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

2019-05-31 Thread Christian Hesse via arch-commits
Date: Friday, May 31, 2019 @ 19:09:00
  Author: eworm
Revision: 476093

archrelease: copy trunk to community-x86_64

Added:
  wireguard-arch/repos/community-x86_64/PKGBUILD
(from rev 476092, wireguard-arch/trunk/PKGBUILD)
Deleted:
  wireguard-arch/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-05-31 19:08:57 UTC (rev 476092)
+++ PKGBUILD2019-05-31 19:09:00 UTC (rev 476093)
@@ -1,27 +0,0 @@
-# Maintainer: Christian Hesse 
-
-pkgname=wireguard-arch
-pkgver=0.0.20190406
-pkgrel=17
-pkgdesc='Wireguard module for Arch Kernel'
-url='https://www.wireguard.com/'
-arch=('x86_64')
-license=('GPL')
-depends=('linux')
-makedepends=('linux-headers' "wireguard-dkms>=$pkgver")
-conflicts=('wireguard-dkms')
-provides=('WIREGUARD-MODULE')
-
-_extramodules='extramodules-ARCH'
-
-package() {
-  _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
-
-  cd "/var/lib/dkms/wireguard/${pkgver}/$_kernver/$CARCH/module"
-  install -Dt "$pkgdir/usr/lib/modules/$_extramodules" -m0644 *
-
-  # compress each module individually
-  find "$pkgdir" -name '*.ko' -exec xz -T1 {} +
-}
-
-# vim:set sw=2 et:

Copied: wireguard-arch/repos/community-x86_64/PKGBUILD (from rev 476092, 
wireguard-arch/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-05-31 19:09:00 UTC (rev 476093)
@@ -0,0 +1,27 @@
+# Maintainer: Christian Hesse 
+
+pkgname=wireguard-arch
+pkgver=0.0.20190531
+pkgrel=1
+pkgdesc='Wireguard module for Arch Kernel'
+url='https://www.wireguard.com/'
+arch=('x86_64')
+license=('GPL')
+depends=('linux')
+makedepends=('linux-headers' "wireguard-dkms>=$pkgver")
+conflicts=('wireguard-dkms')
+provides=('WIREGUARD-MODULE')
+
+_extramodules='extramodules-ARCH'
+
+package() {
+  _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
+
+  cd "/var/lib/dkms/wireguard/${pkgver}/$_kernver/$CARCH/module"
+  install -Dt "$pkgdir/usr/lib/modules/$_extramodules" -m0644 *
+
+  # compress each module individually
+  find "$pkgdir" -name '*.ko' -exec xz -T1 {} +
+}
+
+# vim:set sw=2 et:


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

2019-05-31 Thread Christian Hesse via arch-commits
Date: Friday, May 31, 2019 @ 19:08:57
  Author: eworm
Revision: 476092

upgpkg: wireguard-arch 0.0.20190531-1

new upstream release

Modified:
  wireguard-arch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-31 19:05:13 UTC (rev 476091)
+++ PKGBUILD2019-05-31 19:08:57 UTC (rev 476092)
@@ -1,8 +1,8 @@
 # Maintainer: Christian Hesse 
 
 pkgname=wireguard-arch
-pkgver=0.0.20190406
-pkgrel=17
+pkgver=0.0.20190531
+pkgrel=1
 pkgdesc='Wireguard module for Arch Kernel'
 url='https://www.wireguard.com/'
 arch=('x86_64')


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

2019-05-31 Thread Christian Hesse via arch-commits
Date: Friday, May 31, 2019 @ 19:05:13
  Author: eworm
Revision: 476091

archrelease: copy trunk to community-x86_64

Added:
  wireguard/repos/community-x86_64/PKGBUILD
(from rev 476090, wireguard/trunk/PKGBUILD)
Deleted:
  wireguard/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-05-31 19:05:02 UTC (rev 476090)
+++ PKGBUILD2019-05-31 19:05:13 UTC (rev 476091)
@@ -1,61 +0,0 @@
-# Maintainer: Christian Hesse 
-# Contributor: Jason A. Donenfeld 
-
-pkgbase=wireguard
-pkgname=(wireguard-dkms wireguard-tools)
-pkgver=0.0.20190406
-pkgrel=1
-pkgdesc='next generation secure network tunnel'
-arch=('x86_64')
-url='http://www.wireguard.com/'
-license=('GPL')
-makedepends=('git' 'libmnl')
-validpgpkeys=('AB9942E6D4A4CFC3412620A749FC7012A5DE03AE') # Jason A. Donenfeld 

-source=("https://git.zx2c4.com/WireGuard/snapshot/WireGuard-${pkgver}.tar"{.xz,.asc})
-sha256sums=('2f06f3adf70b95e74a7736a22dcf6e9ef623b311a15b7d55b5474e57c3d0415b'
-'SKIP')
-
-prepare() {
-   cd WireGuard-${pkgver}/
-
-   find contrib/examples/ -name '.gitignore' -delete
-}
-
-build() {
-   cd WireGuard-${pkgver}/
-
-   make -C src/tools/
-}
-
-package_wireguard-dkms() {
-   depends=('dkms')
-   provides=('WIREGUARD-MODULE')
-
-   cd WireGuard-${pkgver}/
-
-   make -C src/ \
-   DESTDIR="${pkgdir}/" \
-   DKMSDIR="/usr/src/wireguard-${pkgver}/" \
-   dkms-install
-}
-
-package_wireguard-tools() {
-   depends=('libmnl')
-   optdepends=('openresolv: for DNS functionality'
-   'wireguard-dkms: wireguard module, built by dkms'
-   'wireguard-arch: wireguard module for linux'
-   'wireguard-lts: wireguard module for linux-lts')
-
-   cd WireGuard-${pkgver}/
-
-   make -C src/tools/ \
-   DESTDIR="${pkgdir}/" \
-   WITH_BASHCOMPLETION=yes \
-WITH_WGQUICK=yes \
-WITH_SYSTEMDUNITS=yes \
-install
-
-   install -d -m0755 "${pkgdir}"/usr/share/${pkgbase}/
-   cp -r contrib/examples/ "${pkgdir}"/usr/share/${pkgbase}/
-}
-

Copied: wireguard/repos/community-x86_64/PKGBUILD (from rev 476090, 
wireguard/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-05-31 19:05:13 UTC (rev 476091)
@@ -0,0 +1,61 @@
+# Maintainer: Christian Hesse 
+# Contributor: Jason A. Donenfeld 
+
+pkgbase=wireguard
+pkgname=(wireguard-dkms wireguard-tools)
+pkgver=0.0.20190531
+pkgrel=1
+pkgdesc='next generation secure network tunnel'
+arch=('x86_64')
+url='http://www.wireguard.com/'
+license=('GPL')
+makedepends=('git' 'libmnl')
+validpgpkeys=('AB9942E6D4A4CFC3412620A749FC7012A5DE03AE') # Jason A. Donenfeld 

+source=("https://git.zx2c4.com/WireGuard/snapshot/WireGuard-${pkgver}.tar"{.xz,.asc})
+sha256sums=('8b0280322ec4c46fd1a786af4db0c4d0c600053542c4563582baac478e4127b1'
+'SKIP')
+
+prepare() {
+   cd WireGuard-${pkgver}/
+
+   find contrib/examples/ -name '.gitignore' -delete
+}
+
+build() {
+   cd WireGuard-${pkgver}/
+
+   make -C src/tools/
+}
+
+package_wireguard-dkms() {
+   depends=('dkms')
+   provides=('WIREGUARD-MODULE')
+
+   cd WireGuard-${pkgver}/
+
+   make -C src/ \
+   DESTDIR="${pkgdir}/" \
+   DKMSDIR="/usr/src/wireguard-${pkgver}/" \
+   dkms-install
+}
+
+package_wireguard-tools() {
+   depends=('libmnl')
+   optdepends=('openresolv: for DNS functionality'
+   'wireguard-dkms: wireguard module, built by dkms'
+   'wireguard-arch: wireguard module for linux'
+   'wireguard-lts: wireguard module for linux-lts')
+
+   cd WireGuard-${pkgver}/
+
+   make -C src/tools/ \
+   DESTDIR="${pkgdir}/" \
+   WITH_BASHCOMPLETION=yes \
+WITH_WGQUICK=yes \
+WITH_SYSTEMDUNITS=yes \
+install
+
+   install -d -m0755 "${pkgdir}"/usr/share/${pkgbase}/
+   cp -r contrib/examples/ "${pkgdir}"/usr/share/${pkgbase}/
+}
+


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

2019-05-31 Thread Christian Hesse via arch-commits
Date: Friday, May 31, 2019 @ 19:05:02
  Author: eworm
Revision: 476090

upgpkg: wireguard 0.0.20190531-1

new upstream release

Modified:
  wireguard/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-31 19:01:04 UTC (rev 476089)
+++ PKGBUILD2019-05-31 19:05:02 UTC (rev 476090)
@@ -3,7 +3,7 @@
 
 pkgbase=wireguard
 pkgname=(wireguard-dkms wireguard-tools)
-pkgver=0.0.20190406
+pkgver=0.0.20190531
 pkgrel=1
 pkgdesc='next generation secure network tunnel'
 arch=('x86_64')
@@ -12,7 +12,7 @@
 makedepends=('git' 'libmnl')
 validpgpkeys=('AB9942E6D4A4CFC3412620A749FC7012A5DE03AE') # Jason A. Donenfeld 

 
source=("https://git.zx2c4.com/WireGuard/snapshot/WireGuard-${pkgver}.tar"{.xz,.asc})
-sha256sums=('2f06f3adf70b95e74a7736a22dcf6e9ef623b311a15b7d55b5474e57c3d0415b'
+sha256sums=('8b0280322ec4c46fd1a786af4db0c4d0c600053542c4563582baac478e4127b1'
 'SKIP')
 
 prepare() {


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

2019-05-31 Thread Andrew Crerar via arch-commits
Date: Friday, May 31, 2019 @ 19:01:04
  Author: andrewsc
Revision: 476089

archrelease: copy trunk to community-x86_64

Added:
  firefox-developer-edition/repos/community-x86_64/PKGBUILD
(from rev 476088, firefox-developer-edition/trunk/PKGBUILD)
  
firefox-developer-edition/repos/community-x86_64/firefox-developer-edition.desktop
(from rev 476088, 
firefox-developer-edition/trunk/firefox-developer-edition.desktop)
  firefox-developer-edition/repos/community-x86_64/firefox-install-dir.patch
(from rev 476088, firefox-developer-edition/trunk/firefox-install-dir.patch)
  firefox-developer-edition/repos/community-x86_64/firefox-symbolic.svg
(from rev 476088, firefox-developer-edition/trunk/firefox-symbolic.svg)
Deleted:
  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
  firefox-developer-edition/repos/community-x86_64/firefox-symbolic.svg

---+
 PKGBUILD  |  354 ++--
 firefox-developer-edition.desktop |  622 ++--
 firefox-install-dir.patch |   84 ++--
 firefox-symbolic.svg  |  128 +++
 4 files changed, 594 insertions(+), 594 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-05-31 18:58:42 UTC (rev 476088)
+++ PKGBUILD2019-05-31 19:01:04 UTC (rev 476089)
@@ -1,177 +0,0 @@
-# Maintainer: Andrew Crerar 
-# Contributor: Jan Alexander Steffens (heftig) 
-
-pkgname=firefox-developer-edition
-pkgver=68.0b5
-pkgrel=1
-pkgdesc="Developer Edition of the popular Firefox web browser"
-arch=('x86_64')
-license=('MPL' 'GPL' 'LGPL')
-url="https://www.mozilla.org/firefox/channel/#developer;
-depends=('gtk3' 'mozilla-common' 'libxt' 'startup-notification' 'mime-types'
- 'dbus-glib' 'ffmpeg' 'nss' 'sqlite' 'ttf-font' 'libpulse')
-makedepends=('unzip' 'zip' 'diffutils' 'python2' 'python' 'yasm' 'mesa' 
'imake' 'inetutils'
- 'xorg-server-xvfb' 'autoconf2.13' 'rust' 'mercurial' 'clang' 
'llvm' 'jack'
- 'gtk2' 'nodejs' 'python2-psutil' 'cbindgen' 'nasm')
-optdepends=('networkmanager: Location detection via available WiFi networks'
-'libnotify: Notification integration'
-'pulseaudio: Audio support'
-'speech-dispatcher: Text-to-Speech'
-'hunspell-en_US: Spell Checking, American English')
-replaces=('firefox-developer')
-options=(!emptydirs !makeflags !strip)
-_repo=https://hg.mozilla.org/mozilla-unified
-source=("hg+$_repo#tag=DEVEDITION_${pkgver//./_}_RELEASE"
-"$pkgname".desktop
-firefox-symbolic.svg
-firefox-install-dir.patch)
-sha512sums=('SKIP'
-
'12617f60e01420350b8d9c7c1c3a2a5ba0f2c46df31b0e23e51093ebd68019ced7d193a01d964421b91e1b444ce4ab499523f21cd3a39a2ffac8883d096ac195'
-
'ba7db9a7c95a051bcd84e4c09c802fc55ee3c0d1d06ec1b169b04e414259b75bbe92fe584aee41a1e3f71e71c160df8bedf5393449e5024110ed27dbc0579ea8'
-
'8fdf6a65e78406251075168c8310bb12c9b8419b3e51f59b1aa6244ef48ef1d201aae8bfdd5faa1da79242d9967fce959cbeffa54991ff39691f16168111b248')
-
-# Google API keys (see http://www.chromium.org/developers/how-tos/api-keys)
-# Note: These are for Arch Linux use ONLY. For your own distribution, please
-# get your own set of keys. Feel free to contact foutre...@archlinux.org for
-# more information.
-_google_api_key=AIzaSyDwr302FpOSkGRpLlUpPThNTDPbXcIn_FM
-
-# Mozilla API keys (see https://location.services.mozilla.com/api)
-# Note: These are for Arch Linux use ONLY. For your own distribution, please
-# get your own set of keys. Feel free to contact hef...@archlinux.org for
-# more information.
-_mozilla_api_key=16674381-f021-49de-8622-3021c5942aff
-
-prepare() {
-  cd mozilla-unified
-  patch -Np1 -i ../firefox-install-dir.patch
-
-  echo -n "$_google_api_key" > google-api-key
-  echo -n "$_mozilla_api_key" > mozilla-api-key
-
-  cat > .mozconfig << END
-ac_add_options --enable-application=browser
-
-ac_add_options --prefix=/usr
-ac_add_options --enable-release
-ac_add_options --enable-hardening
-ac_add_options --enable-optimize
-ac_add_options --enable-rust-simd
-ac_add_options --enable-lto
-export MOZ_PGO=1
-export CC=clang
-export CXX=clang++
-export AR=llvm-ar
-export NM=llvm-nm
-export RANLIB=llvm-ranlib
-
-# Branding
-ac_add_options --with-branding=browser/branding/aurora
-ac_add_options --enable-update-channel=aurora
-ac_add_options --with-distribution-id=org.archlinux
-ac_add_options "MOZ_ALLOW_LEGACY_EXTENSIONS=1"
-export MOZILLA_OFFICIAL=1
-export MOZ_APP_REMOTINGNAME=${pkgname//-/}
-export MOZ_TELEMETRY_REPORTING=1
-export MOZ_REQUIRE_SIGNING=0
-
-# Keys
-ac_add_options 
--with-google-location-service-api-keyfile=${PWD@Q}/google-api-key
-ac_add_options 

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

2019-05-31 Thread Andrew Crerar via arch-commits
Date: Friday, May 31, 2019 @ 18:58:42
  Author: andrewsc
Revision: 476088

upgpkg: firefox-developer-edition 68.0b6-1

firefox-developer-edition: Updating to 68.0b6

Modified:
  firefox-developer-edition/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-31 18:49:20 UTC (rev 476087)
+++ PKGBUILD2019-05-31 18:58:42 UTC (rev 476088)
@@ -2,7 +2,7 @@
 # Contributor: Jan Alexander Steffens (heftig) 
 
 pkgname=firefox-developer-edition
-pkgver=68.0b5
+pkgver=68.0b6
 pkgrel=1
 pkgdesc="Developer Edition of the popular Firefox web browser"
 arch=('x86_64')


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

2019-05-31 Thread Alexander Rødseth via arch-commits
Date: Friday, May 31, 2019 @ 18:49:20
  Author: arodseth
Revision: 476087

archrelease: copy trunk to community-any

Added:
  pychess/repos/community-any/PKGBUILD
(from rev 476086, pychess/trunk/PKGBUILD)
Deleted:
  pychess/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-05-31 18:48:39 UTC (rev 476086)
+++ PKGBUILD2019-05-31 18:49:20 UTC (rev 476087)
@@ -1,31 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: Allan McRae 
-# Contributor: Alexander Fehr 
-
-pkgname=pychess
-pkgver=1.0.0
-pkgrel=1
-pkgdesc='Chess client'
-arch=(any)
-url='http://pychess.org/'
-license=(GPL)
-depends=(gst-plugins-base gtksourceview3 python-cairo python-gobject
- python-ptyprocess python-psutil python-sqlalchemy python-pexpect)
-# /usr/bin/fire and /usr/bin/gringo are mistaken for chess engines,
-# and launched when starting pychess...
-conflicts=(mesa-demos)
-makedepends=(git python-pexpect xorg-server-xvfb)
-source=("git+https://github.com/$pkgname/$pkgname#tag=$pkgver;)
-sha256sums=('SKIP')
-
-package() {
-  cd pychess
-
-  xvfb-run python setup.py install --prefix=/usr --root="$pkgdir"
-
-  # FS#59882
-  find "$pkgdir" -wholename 'external/pexpect' -type d -delete
-}
-
-# getver: 
raw.githubusercontent.com/pychess/pychess/master/lib/pychess/__init__.py
-# vim: ts=2 sw=2 et:

Copied: pychess/repos/community-any/PKGBUILD (from rev 476086, 
pychess/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-05-31 18:49:20 UTC (rev 476087)
@@ -0,0 +1,30 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Allan McRae 
+# Contributor: Alexander Fehr 
+
+pkgname=pychess
+pkgver=1.0.0
+pkgrel=1
+pkgdesc='Chess client'
+arch=(any)
+url='http://pychess.org/'
+license=(GPL)
+depends=(gst-plugins-base gtksourceview3 python-cairo python-gobject
+ python-ptyprocess python-psutil python-sqlalchemy python-pexpect)
+# /usr/bin/fire and /usr/bin/spike are/were mistaken for chess engines
+conflicts=(mesa-demos spike)
+makedepends=(git python-pexpect xorg-server-xvfb)
+source=("git+https://github.com/$pkgname/$pkgname#tag=$pkgver;)
+sha256sums=('SKIP')
+
+package() {
+  cd pychess
+
+  xvfb-run python setup.py install --prefix=/usr --root="$pkgdir"
+
+  # FS#59882
+  find "$pkgdir" -wholename 'external/pexpect' -type d -delete
+}
+
+# getver: 
raw.githubusercontent.com/pychess/pychess/master/lib/pychess/__init__.py
+# vim: ts=2 sw=2 et:


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

2019-05-31 Thread Alexander Rødseth via arch-commits
Date: Friday, May 31, 2019 @ 18:48:39
  Author: arodseth
Revision: 476086

upgpkg: pychess 1.0.0-1

Modified:
  pychess/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-31 17:42:47 UTC (rev 476085)
+++ PKGBUILD2019-05-31 18:48:39 UTC (rev 476086)
@@ -11,9 +11,8 @@
 license=(GPL)
 depends=(gst-plugins-base gtksourceview3 python-cairo python-gobject
  python-ptyprocess python-psutil python-sqlalchemy python-pexpect)
-# /usr/bin/fire and /usr/bin/gringo are mistaken for chess engines,
-# and launched when starting pychess...
-conflicts=(mesa-demos)
+# /usr/bin/fire and /usr/bin/spike are/were mistaken for chess engines
+conflicts=(mesa-demos spike)
 makedepends=(git python-pexpect xorg-server-xvfb)
 source=("git+https://github.com/$pkgname/$pkgname#tag=$pkgver;)
 sha256sums=('SKIP')


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

2019-05-31 Thread Felix Yan via arch-commits
Date: Friday, May 31, 2019 @ 17:42:47
  Author: felixonmars
Revision: 476085

use https url

Modified:
  jetring/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-31 17:42:02 UTC (rev 476084)
+++ PKGBUILD2019-05-31 17:42:47 UTC (rev 476085)
@@ -5,7 +5,7 @@
 pkgrel=1
 pkgdesc="gpg keyring maintenance using changesets"
 arch=('any')
-url="http://packages.debian.org/sid/jetring;
+url="https://packages.debian.org/sid/jetring;
 license=('GPL')
 depends=('gnupg' 'perl')
 
source=("https://mirrors.kernel.org/debian/pool/main/j/jetring/jetring_$pkgver.tar.xz;)


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

2019-05-31 Thread Felix Yan via arch-commits
Date: Friday, May 31, 2019 @ 17:42:02
  Author: felixonmars
Revision: 476084

use https url

Modified:
  iodine/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-31 17:40:44 UTC (rev 476083)
+++ PKGBUILD2019-05-31 17:42:02 UTC (rev 476084)
@@ -8,16 +8,16 @@
 pkgrel=4
 pkgdesc='Tunnel IPv4 data through a DNS server'
 arch=('x86_64')
-url='http://code.kryo.se/iodine'
+url='https://code.kryo.se/iodine'
 license=('custom:ISC')
 depends=('zlib' 'net-tools')
 backup=('etc/conf.d/iodined')
-source=("http://code.kryo.se/${pkgname}/${pkgname}-${pkgver}.tar.gz;
+source=("https://code.kryo.se/${pkgname}/${pkgname}-${pkgver}.tar.gz;
 'iodined.service'
 'iodined.conf.d')
-sha256sums=('ad2b40acf1421316ec15800dcde0f587ab31d7d6f891fa8b9967c4ded93c013e'
-'4019f95432c7b272b96c80a112abd56f4c308bfab4cc920525880c30f417cb84'
-'47e710954cdf68b4c2f66cac367c2bf4e750f682cd393001b8da67da1cdee54b')
+sha512sums=('49fe4f0cf614d3400cbfdade84eb4f50430f8f92004f663a08acc1514e8ff342443a8c3f855828bbca1864a3fafe419b5256f8a80fc4024b364d4c8c953fc0ec'
+
'286c888003086159bdac690fafe6a5c1e0648068af912921bafaf7b6a09484c46656c8e6223cd3cac550d39ce9c20683c6f5bc1d2a9b5ed06984164ae3ffa870'
+
'07c4733b98287672fe98bdb8d72994aa675d1bbde58d342471e318f1a7b5fc2f66cb8d068a1a4ef5697647608a217eb1949dfbd5b672b4d8982f09e902aa')
 
 prepare() {
   cd $pkgname-$pkgver


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

2019-05-31 Thread Felix Yan via arch-commits
Date: Friday, May 31, 2019 @ 17:40:44
  Author: felixonmars
Revision: 476083

use https url

Modified:
  ibus-rime/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-31 17:39:46 UTC (rev 476082)
+++ PKGBUILD2019-05-31 17:40:44 UTC (rev 476083)
@@ -7,7 +7,7 @@
 pkgrel=1
 pkgdesc="Rime input method engine for ibus"
 arch=('x86_64')
-url="http://rime.im;
+url="https://rime.im;
 license=('GPL3')
 depends=('ibus' 'libnotify' 'librime' 'brise')
 makedepends=('cmake')


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

2019-05-31 Thread Felix Yan via arch-commits
Date: Friday, May 31, 2019 @ 17:39:46
  Author: felixonmars
Revision: 476082

use https url

Modified:
  gulp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-31 17:39:10 UTC (rev 476081)
+++ PKGBUILD2019-05-31 17:39:46 UTC (rev 476082)
@@ -6,7 +6,7 @@
 pkgrel=1
 pkgdesc="The streaming build system"
 arch=('any')
-url="http://gulpjs.com/;
+url="https://gulpjs.com/;
 license=('MIT')
 depends=('nodejs' 'semver')
 makedepends=('npm')


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

2019-05-31 Thread Felix Yan via arch-commits
Date: Friday, May 31, 2019 @ 17:39:10
  Author: felixonmars
Revision: 476081

use https url

Modified:
  goaccess/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-31 17:37:02 UTC (rev 476080)
+++ PKGBUILD2019-05-31 17:39:10 UTC (rev 476081)
@@ -7,7 +7,7 @@
 pkgrel=1
 pkgdesc="An open source real-time web log analyzer and interactive viewer"
 arch=('x86_64')
-url='http://goaccess.io'
+url='https://goaccess.io'
 license=('GPL')
 depends=('ncurses' 'libmaxminddb' 'openssl')
 optdepends=('geoip2-database: for geoip support')


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

2019-05-31 Thread Felix Yan via arch-commits
Date: Friday, May 31, 2019 @ 17:37:02
  Author: felixonmars
Revision: 476080

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-yesod-static/repos/community-staging-x86_64/
  haskell-yesod-static/repos/community-staging-x86_64/PKGBUILD
(from rev 476079, haskell-yesod-static/trunk/PKGBUILD)

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

Copied: haskell-yesod-static/repos/community-staging-x86_64/PKGBUILD (from rev 
476079, haskell-yesod-static/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-05-31 17:37:02 UTC (rev 476080)
@@ -0,0 +1,48 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-static
+pkgname=haskell-yesod-static
+pkgver=1.6.0.1
+pkgrel=124
+pkgdesc="Static file serving subsite for Yesod Web Framework."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-async' 'haskell-attoparsec' 
'haskell-base64-bytestring'
+ 'haskell-blaze-builder' 'haskell-conduit' 'haskell-cryptonite'
+ 'haskell-cryptonite-conduit' 'haskell-css-text' 'haskell-data-default'
+ 'haskell-file-embed' 'haskell-hashable' 'haskell-hjsmin' 
'haskell-http-types'
+ 'haskell-memory' 'haskell-mime-types' 'haskell-unix-compat' 
'haskell-unordered-containers'
+ 'haskell-wai' 'haskell-wai-app-static' 'haskell-yesod-core')
+makedepends=('ghc' 'haskell-hspec' 'haskell-hunit' 'haskell-wai-extra' 
'haskell-yesod-test')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('2e1e4873248d435a9d58f3075b6c06cde2edcdd520f700dc7f0427039c236d28787f62a643a8cf57b74d85a885625474a5662b91a56c25e8f4d1737be525bc2f')
+
+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
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-05-31 Thread Felix Yan via arch-commits
Date: Friday, May 31, 2019 @ 17:36:16
  Author: felixonmars
Revision: 476078

use https url

Modified:
  ghc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-31 17:35:39 UTC (rev 476077)
+++ PKGBUILD2019-05-31 17:36:16 UTC (rev 476078)
@@ -15,7 +15,7 @@
 pkgrel=1
 pkgdesc='The Glasgow Haskell Compiler'
 arch=('x86_64')
-url='http://www.haskell.org/ghc/'
+url='https://www.haskell.org/ghc/'
 license=('custom')
 makedepends=('ghc-static' 'perl' 'libxslt' 'docbook-xsl' 'python-sphinx' 
'haskell-hscolour'
  'texlive-bin' 'texlive-latexextra' 'ttf-dejavu')


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

2019-05-31 Thread Felix Yan via arch-commits
Date: Friday, May 31, 2019 @ 17:36:43
  Author: felixonmars
Revision: 476079

upgpkg: haskell-yesod-static 1.6.0.1-124

rebuild with cereal 0.5.8.1

Modified:
  haskell-yesod-static/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-31 17:36:16 UTC (rev 476078)
+++ PKGBUILD2019-05-31 17:36:43 UTC (rev 476079)
@@ -4,7 +4,7 @@
 _hkgname=yesod-static
 pkgname=haskell-yesod-static
 pkgver=1.6.0.1
-pkgrel=123
+pkgrel=124
 pkgdesc="Static file serving subsite for Yesod Web Framework."
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2019-05-31 Thread Felix Yan via arch-commits
Date: Friday, May 31, 2019 @ 17:35:39
  Author: felixonmars
Revision: 476077

use https url

Modified:
  gdnsd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-31 17:35:14 UTC (rev 476076)
+++ PKGBUILD2019-05-31 17:35:39 UTC (rev 476077)
@@ -6,7 +6,7 @@
 pkgrel=2
 pkgdesc="an Authoritative-only DNS server which does geographic balancing, 
redirection, weighting, and service-state-conscious failover at the DNS layer"
 arch=('x86_64')
-url="http://gdnsd.org/;
+url="https://gdnsd.org/;
 license=('GPL3')
 depends=('libev' 'libmaxminddb' 'libsodium' 'libunwind' 'liburcu')
 makedepends=('ragel')


[arch-commits] Commit in network-manager-sstp/repos/community-x86_64 (2 files)

2019-05-31 Thread Felix Yan via arch-commits
Date: Friday, May 31, 2019 @ 17:34:48
  Author: felixonmars
Revision: 476075

archrelease: copy trunk to community-x86_64

Added:
  network-manager-sstp/repos/community-x86_64/PKGBUILD
(from rev 476073, network-manager-sstp/trunk/PKGBUILD)
Deleted:
  network-manager-sstp/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-05-31 17:34:44 UTC (rev 476074)
+++ PKGBUILD2019-05-31 17:34:48 UTC (rev 476075)
@@ -1,38 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Echizen Ryoma 
-# Contributor: Martchus 
-
-pkgname=network-manager-sstp
-pkgver=1.2.6
-pkgrel=1
-pkgdesc="SSTP support for NetworkManager"
-arch=('i686' 'x86_64')
-url="http://sstp-client.sourceforge.net/#Network_Manager_Plugin;
-license=('GPL2')
-depends=('gtk3' 'libnma' 'libsecret' 'sstp-client')
-optdepends=('ppp')
-makedepends=('intltool' 'ppp' 'python')
-source=("https://github.com/enaess/network-manager-sstp/archive/release-${pkgver}.tar.gz;)
-sha1sums=('2e3654c5293a7513c5365553ca0df1f98b9820d8')
-
-build() {
-  pppd_version=(`pppd --version 2>&1 | awk '{print $3}'`)
-  cd "${srcdir}/network-manager-sstp-release-${pkgver}"
-
-  ./autogen.sh \
---prefix=/usr \
---sysconfdir=/etc \
---with-pppd-plugin-dir=/usr/lib/pppd/${pppd_version} \
---libdir=/usr/lib \
---libexecdir=/usr/lib/NetworkManager \
---with-libnm-glib=no
-  # libnm-glib disabled due to missing libnm-gtk package
-
-  make
-}
-
-package() {
-  cd "${srcdir}/network-manager-sstp-release-${pkgver}"
-
-  make DESTDIR="${pkgdir}/" install
-}

Copied: network-manager-sstp/repos/community-x86_64/PKGBUILD (from rev 476073, 
network-manager-sstp/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-05-31 17:34:48 UTC (rev 476075)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan 
+# Contributor: Echizen Ryoma 
+# Contributor: Martchus 
+
+pkgname=network-manager-sstp
+pkgver=1.2.6
+pkgrel=2
+pkgdesc="SSTP support for NetworkManager"
+arch=('x86_64')
+url="http://sstp-client.sourceforge.net/#Network_Manager_Plugin;
+license=('GPL2')
+depends=('gtk3' 'libnma' 'libsecret' 'sstp-client')
+optdepends=('ppp')
+makedepends=('intltool' 'ppp' 'python')
+source=("https://github.com/enaess/network-manager-sstp/archive/release-${pkgver}.tar.gz;)
+sha1sums=('2e3654c5293a7513c5365553ca0df1f98b9820d8')
+
+build() {
+  pppd_version=(`pppd --version 2>&1 | awk '{print $3}'`)
+  cd network-manager-sstp-release-$pkgver
+
+  ./autogen.sh \
+--prefix=/usr \
+--sysconfdir=/etc \
+--with-pppd-plugin-dir=/usr/lib/pppd/$pppd_version \
+--libdir=/usr/lib \
+--libexecdir=/usr/lib/NetworkManager \
+--with-libnm-glib=no
+  # libnm-glib disabled due to missing libnm-gtk package
+
+  make
+}
+
+package() {
+  cd network-manager-sstp-release-$pkgver
+
+  make DESTDIR="$pkgdir" dbusservicedir=/usr/share/dbus-1/system.d install
+}


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

2019-05-31 Thread Felix Yan via arch-commits
Date: Friday, May 31, 2019 @ 17:35:14
  Author: felixonmars
Revision: 476076

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-yesod-test/repos/community-staging-x86_64/
  haskell-yesod-test/repos/community-staging-x86_64/PKGBUILD
(from rev 476075, haskell-yesod-test/trunk/PKGBUILD)

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

Copied: haskell-yesod-test/repos/community-staging-x86_64/PKGBUILD (from rev 
476075, haskell-yesod-test/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-05-31 17:35:14 UTC (rev 476076)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+
+_hkgname=yesod-test
+pkgname=haskell-yesod-test
+pkgver=1.6.6.1
+pkgrel=19
+pkgdesc="Integration testing for WAI/Yesod Applications"
+url="http://www.yesodweb.com;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-hunit' 'haskell-attoparsec' 
'haskell-blaze-builder'
+ 'haskell-blaze-html' 'haskell-case-insensitive' 'haskell-conduit'
+ 'haskell-cookie' 'haskell-hspec-core' 'haskell-html-conduit' 
'haskell-http-types'
+ 'haskell-network' 'haskell-pretty-show' 'haskell-wai'
+ 'haskell-wai-extra' 'haskell-xml-conduit' 'haskell-xml-types' 
'haskell-yesod-core')
+makedepends=('ghc' 'haskell-yesod-form' 'haskell-hspec' 'haskell-unliftio')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('833ae785c82ec2cbc34c386fb7678e20cdb905c3eaee2698532e8f09167fac92b5af84b25557f548406184852156e4e22f9f12a86c9a3306cbb23145a4af1cba')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i '/semigroups/d' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --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
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-05-31 Thread Felix Yan via arch-commits
Date: Friday, May 31, 2019 @ 17:34:44
  Author: felixonmars
Revision: 476074

upgpkg: haskell-yesod-test 1.6.6.1-19

rebuild with cereal 0.5.8.1

Modified:
  haskell-yesod-test/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-31 17:34:16 UTC (rev 476073)
+++ PKGBUILD2019-05-31 17:34:44 UTC (rev 476074)
@@ -3,7 +3,7 @@
 _hkgname=yesod-test
 pkgname=haskell-yesod-test
 pkgver=1.6.6.1
-pkgrel=18
+pkgrel=19
 pkgdesc="Integration testing for WAI/Yesod Applications"
 url="http://www.yesodweb.com;
 license=('MIT')


[arch-commits] Commit in network-manager-sstp/trunk (PKGBUILD)

2019-05-31 Thread Felix Yan via arch-commits
Date: Friday, May 31, 2019 @ 17:34:16
  Author: felixonmars
Revision: 476073

upgpkg: network-manager-sstp 1.2.6-2

fix dbus policy dir

Modified:
  network-manager-sstp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-31 17:33:23 UTC (rev 476072)
+++ PKGBUILD2019-05-31 17:34:16 UTC (rev 476073)
@@ -4,9 +4,9 @@
 
 pkgname=network-manager-sstp
 pkgver=1.2.6
-pkgrel=1
+pkgrel=2
 pkgdesc="SSTP support for NetworkManager"
-arch=('i686' 'x86_64')
+arch=('x86_64')
 url="http://sstp-client.sourceforge.net/#Network_Manager_Plugin;
 license=('GPL2')
 depends=('gtk3' 'libnma' 'libsecret' 'sstp-client')
@@ -17,12 +17,12 @@
 
 build() {
   pppd_version=(`pppd --version 2>&1 | awk '{print $3}'`)
-  cd "${srcdir}/network-manager-sstp-release-${pkgver}"
+  cd network-manager-sstp-release-$pkgver
 
   ./autogen.sh \
 --prefix=/usr \
 --sysconfdir=/etc \
---with-pppd-plugin-dir=/usr/lib/pppd/${pppd_version} \
+--with-pppd-plugin-dir=/usr/lib/pppd/$pppd_version \
 --libdir=/usr/lib \
 --libexecdir=/usr/lib/NetworkManager \
 --with-libnm-glib=no
@@ -32,7 +32,7 @@
 }
 
 package() {
-  cd "${srcdir}/network-manager-sstp-release-${pkgver}"
+  cd network-manager-sstp-release-$pkgver
 
-  make DESTDIR="${pkgdir}/" install
+  make DESTDIR="$pkgdir" dbusservicedir=/usr/share/dbus-1/system.d install
 }


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

2019-05-31 Thread Felix Yan via arch-commits
Date: Friday, May 31, 2019 @ 17:33:23
  Author: felixonmars
Revision: 476072

archrelease: copy trunk to community-x86_64

Added:
  dart/repos/community-x86_64/PKGBUILD
(from rev 476071, dart/trunk/PKGBUILD)
Deleted:
  dart/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-05-31 17:33:17 UTC (rev 476071)
+++ PKGBUILD2019-05-31 17:33:23 UTC (rev 476072)
@@ -1,61 +0,0 @@
-# Maintainer: Alexander Rødseth 
-# Maintainer: Felix Yan 
-# Contributor: T. Jameson Little 
-# Contributor: Usagi Ito 
-# Contributor: siasia 
-# Contributor: Julien Nicoulaud 
-
-pkgname=dart
-pkgver=2.3.1
-pkgrel=1
-pkgdesc='The dart programming language SDK'
-arch=('x86_64')
-url='http://www.dartlang.org/'
-license=('BSD')
-makedepends=('setconf')
-options=('!strip')
-source_x86_64+=("$pkgname-$pkgver-64.zip::http://storage.googleapis.com/dart-archive/channels/stable/release/latest/sdk/dartsdk-linux-x64-release.zip;)
-sha512sums_x86_64=('9115883a89e015e43eb2a3fd24b547a3667f79aee62c8c649107818aa7241a0eb26b9f87c0b07dd7528238f68ba5bd6063719e0780d847e45d5ca67e1600fe5c')
-
-prepare() {
-  # Fix permissions
-  find "$pkgname-sdk" -type d -exec chmod 0755 '{}' + \
--or -type f -exec chmod 0644 '{}' +
-  chmod +x "$pkgname-sdk/bin/"*
-
-  cd "$pkgname-sdk/bin"
-
-  # Configure paths
-  for _f in dart2js dartanalyzer pub dartfmt dartdevc dartdoc; do
-setconf $_f BIN_DIR "/opt/$pkgname-sdk/bin"
-setconf $_f PROG_NAME "/opt/$pkgname-sdk/bin/$_f"
-setconf $_f SDK_DIR "/opt/$pkgname-sdk/"
-  done
-
-  # Extract license (AUTHORS and LICENSE files are missing)
-  head -n5 "../include/dart_api.h" > ../../LICENSE
-}
-
-package() {
-  # Create directories
-  install -d "$pkgdir"{"/opt/$pkgname-sdk",/usr/{bin,"share/doc/$pkgname-sdk"}}
-
-  # Package the files
-  cp -a "$pkgname-sdk/"* "$pkgdir/opt/$pkgname-sdk/"
-
-  # Set up symbolic links for the executables
-  for f in dart dart2js dartanalyzer pub dartfmt dartdevc dartdoc; do
-ln -s "/opt/$pkgname-sdk/bin/$f" "$pkgdir/usr/bin/$f"
-  done
-
-  # Package samples and documentation
-  for f in samples about.html about_files; do
-echo mv "$pkgdir/opt/$pkgname-sdk/$f" "$pkgdir/usr/share/doc/$pkgname/"
-  done
-
-  # BSD License
-  install -Dm644 LICENSE \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: dart/repos/community-x86_64/PKGBUILD (from rev 476071, 
dart/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-05-31 17:33:23 UTC (rev 476072)
@@ -0,0 +1,61 @@
+# Maintainer: Alexander Rødseth 
+# Maintainer: Felix Yan 
+# Contributor: T. Jameson Little 
+# Contributor: Usagi Ito 
+# Contributor: siasia 
+# Contributor: Julien Nicoulaud 
+
+pkgname=dart
+pkgver=2.3.1
+pkgrel=2
+pkgdesc='The dart programming language SDK'
+arch=('x86_64')
+url='https://www.dartlang.org/'
+depends=('bash')
+license=('BSD')
+makedepends=('setconf')
+options=('!strip')
+source=("$pkgname-$pkgver-64.zip::https://storage.googleapis.com/dart-archive/channels/stable/release/latest/sdk/dartsdk-linux-x64-release.zip;)
+sha512sums=('9115883a89e015e43eb2a3fd24b547a3667f79aee62c8c649107818aa7241a0eb26b9f87c0b07dd7528238f68ba5bd6063719e0780d847e45d5ca67e1600fe5c')
+
+prepare() {
+  # Fix permissions
+  find "$pkgname-sdk" -type d -exec chmod a+rx '{}' + \
+-or -type f -exec chmod a+r '{}' +
+
+  cd "$pkgname-sdk/bin"
+
+  # Configure paths
+  for _f in dart2js dartanalyzer pub dartfmt dartdevc dartdoc; do
+setconf $_f BIN_DIR "/opt/$pkgname-sdk/bin"
+setconf $_f PROG_NAME "/opt/$pkgname-sdk/bin/$_f"
+setconf $_f SDK_DIR "/opt/$pkgname-sdk/"
+  done
+
+  # Extract license (AUTHORS and LICENSE files are missing)
+  head -n5 "../include/dart_api.h" > ../../LICENSE
+}
+
+package() {
+  # Create directories
+  install -d "$pkgdir"{"/opt/$pkgname-sdk",/usr/{bin,"share/doc/$pkgname-sdk"}}
+
+  # Package the files
+  cp -a "$pkgname-sdk/"* "$pkgdir/opt/$pkgname-sdk/"
+
+  # Set up symbolic links for the executables
+  for f in dart dart2js dartanalyzer pub dartfmt dartdevc dartdoc dart2aot 
dartaotruntime; do
+ln -s "/opt/$pkgname-sdk/bin/$f" "$pkgdir/usr/bin/$f"
+  done
+
+  # Package samples and documentation
+  for f in samples about.html about_files; do
+echo mv "$pkgdir/opt/$pkgname-sdk/$f" "$pkgdir/usr/share/doc/$pkgname/"
+  done
+
+  # BSD License
+  install -Dm644 LICENSE \
+"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:


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

2019-05-31 Thread Felix Yan via arch-commits
Date: Friday, May 31, 2019 @ 17:33:17
  Author: felixonmars
Revision: 476071

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-yesod-auth/repos/community-staging-x86_64/
  haskell-yesod-auth/repos/community-staging-x86_64/PKGBUILD
(from rev 476070, haskell-yesod-auth/trunk/PKGBUILD)

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

Copied: haskell-yesod-auth/repos/community-staging-x86_64/PKGBUILD (from rev 
476070, haskell-yesod-auth/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-05-31 17:33:17 UTC (rev 476071)
@@ -0,0 +1,47 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-auth
+pkgname=haskell-yesod-auth
+pkgver=1.6.6
+pkgrel=63
+pkgdesc="Authentication for Yesod."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-authenticate' 
'haskell-base16-bytestring'
+ 'haskell-base64-bytestring' 'haskell-blaze-builder' 
'haskell-blaze-html'
+ 'haskell-blaze-markup' 'haskell-conduit' 'haskell-conduit-extra' 
'haskell-cryptonite'
+ 'haskell-data-default' 'haskell-email-validate' 'haskell-file-embed' 
'haskell-http-client'
+ 'haskell-http-client-tls' 'haskell-http-conduit' 'haskell-http-types' 
'haskell-memory'
+ 'haskell-network-uri' 'haskell-nonce' 'haskell-persistent' 
'haskell-random' 'haskell-safe'
+ 'haskell-shakespeare' 'haskell-unliftio' 'haskell-unliftio-core'
+ 'haskell-unordered-containers' 'haskell-wai' 'haskell-yesod-core' 
'haskell-yesod-form'
+ 'haskell-yesod-persistent')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('4512a28e0e90e586b0b4cfbc1461c8773339c980e4244f7136e04ddd77f1a9fc1b7eb1311962bfb4a68b0163ea29eca50761cfc52e50e01e10fbc6184b2d481b')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fnetwork-uri
+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
+}
+
+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   >