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

2019-08-01 Thread Maxime Gauduin via arch-commits
Date: Thursday, August 1, 2019 @ 19:28:12
  Author: alucryd
Revision: 496461

upgpkg: vimb 3.5.0-1

Modified:
  vimb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-01 19:16:31 UTC (rev 496460)
+++ PKGBUILD2019-08-01 19:28:12 UTC (rev 496461)
@@ -4,8 +4,8 @@
 # Contributor: Daniel M. Capella 
 
 pkgname=vimb
-pkgver=3.4.0
-pkgrel=2
+pkgver=3.5.0
+pkgrel=1
 pkgdesc='The vim like browser'
 arch=(x86_64)
 url=https://fanglingsu.github.io/vimb/


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

2019-08-01 Thread Maxime Gauduin via arch-commits
Date: Thursday, August 1, 2019 @ 19:28:19
  Author: alucryd
Revision: 496462

archrelease: copy trunk to community-x86_64

Added:
  vimb/repos/community-x86_64/PKGBUILD
(from rev 496461, vimb/trunk/PKGBUILD)
  vimb/repos/community-x86_64/vimb-ldflags.patch
(from rev 496461, vimb/trunk/vimb-ldflags.patch)
Deleted:
  vimb/repos/community-x86_64/PKGBUILD
  vimb/repos/community-x86_64/vimb-ldflags.patch

+
 PKGBUILD   |   72 +--
 vimb-ldflags.patch |   24 -
 2 files changed, 48 insertions(+), 48 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-01 19:28:12 UTC (rev 496461)
+++ PKGBUILD2019-08-01 19:28:19 UTC (rev 496462)
@@ -1,36 +0,0 @@
-# Maintainer: Maxime Gauduin 
-# Contributor: Robert Timm 
-# Contributor: Jason Ryan 
-# Contributor: Daniel M. Capella 
-
-pkgname=vimb
-pkgver=3.4.0
-pkgrel=2
-pkgdesc='The vim like browser'
-arch=(x86_64)
-url=https://fanglingsu.github.io/vimb/
-license=(GPL3)
-depends=(webkit2gtk)
-makedepends=(git)
-source=(
-  git+https://github.com/fanglingsu/vimb.git#tag=${pkgver}
-  vimb-ldflags.patch
-)
-sha256sums=('SKIP'
-'daf758d2f0cf20c24c432ec4297cc45fb52dbee839726ffb57936c5a20ff5aa9')
-
-prepare() {
-  cd vimb
-
-  patch -Np1 -i ../vimb-ldflags.patch
-}
-
-build() {
-  make PREFIX=/usr -C vimb
-}
-
-package() {
-  make DESTDIR="${pkgdir}" PREFIX=/usr -C vimb install
-}
-
-# vim: ts=2 sw=2 et:

Copied: vimb/repos/community-x86_64/PKGBUILD (from rev 496461, 
vimb/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-01 19:28:19 UTC (rev 496462)
@@ -0,0 +1,36 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: Robert Timm 
+# Contributor: Jason Ryan 
+# Contributor: Daniel M. Capella 
+
+pkgname=vimb
+pkgver=3.5.0
+pkgrel=1
+pkgdesc='The vim like browser'
+arch=(x86_64)
+url=https://fanglingsu.github.io/vimb/
+license=(GPL3)
+depends=(webkit2gtk)
+makedepends=(git)
+source=(
+  git+https://github.com/fanglingsu/vimb.git#tag=${pkgver}
+  vimb-ldflags.patch
+)
+sha256sums=('SKIP'
+'daf758d2f0cf20c24c432ec4297cc45fb52dbee839726ffb57936c5a20ff5aa9')
+
+prepare() {
+  cd vimb
+
+  patch -Np1 -i ../vimb-ldflags.patch
+}
+
+build() {
+  make PREFIX=/usr -C vimb
+}
+
+package() {
+  make DESTDIR="${pkgdir}" PREFIX=/usr -C vimb install
+}
+
+# vim: ts=2 sw=2 et:

Deleted: vimb-ldflags.patch
===
--- vimb-ldflags.patch  2019-08-01 19:28:12 UTC (rev 496461)
+++ vimb-ldflags.patch  2019-08-01 19:28:19 UTC (rev 496462)
@@ -1,12 +0,0 @@
-diff -rupN vimb.orig/config.mk vimb/config.mk
 vimb.orig/config.mk2019-07-23 11:18:15.460717705 +0200
-+++ vimb/config.mk 2019-07-23 11:19:04.091175665 +0200
-@@ -36,7 +36,7 @@ endif
- EXTTARGET   = webext_main.so
- EXTCFLAGS   = ${CFLAGS} $(shell pkg-config --cflags 
webkit2gtk-web-extension-4.0)
- EXTCPPFLAGS = $(CPPFLAGS)
--EXTLDFLAGS  = $(shell pkg-config --libs webkit2gtk-web-extension-4.0) -shared
-+EXTLDFLAGS  = $(LDFLAGS) $(shell pkg-config --libs 
webkit2gtk-web-extension-4.0) -shared
- 
- # flags used for the main application
- CFLAGS += $(shell pkg-config --cflags $(LIBS))

Copied: vimb/repos/community-x86_64/vimb-ldflags.patch (from rev 496461, 
vimb/trunk/vimb-ldflags.patch)
===
--- vimb-ldflags.patch  (rev 0)
+++ vimb-ldflags.patch  2019-08-01 19:28:19 UTC (rev 496462)
@@ -0,0 +1,12 @@
+diff -rupN vimb.orig/config.mk vimb/config.mk
+--- vimb.orig/config.mk2019-07-23 11:18:15.460717705 +0200
 vimb/config.mk 2019-07-23 11:19:04.091175665 +0200
+@@ -36,7 +36,7 @@ endif
+ EXTTARGET   = webext_main.so
+ EXTCFLAGS   = ${CFLAGS} $(shell pkg-config --cflags 
webkit2gtk-web-extension-4.0)
+ EXTCPPFLAGS = $(CPPFLAGS)
+-EXTLDFLAGS  = $(shell pkg-config --libs webkit2gtk-web-extension-4.0) -shared
++EXTLDFLAGS  = $(LDFLAGS) $(shell pkg-config --libs 
webkit2gtk-web-extension-4.0) -shared
+ 
+ # flags used for the main application
+ CFLAGS += $(shell pkg-config --cflags $(LIBS))


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

2019-08-01 Thread Maxime Gauduin via arch-commits
Date: Thursday, August 1, 2019 @ 19:36:34
  Author: alucryd
Revision: 496467

upgpkg: python-trio 0.12.1-1

Modified:
  python-trio/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-01 19:35:46 UTC (rev 496466)
+++ PKGBUILD2019-08-01 19:36:34 UTC (rev 496467)
@@ -1,7 +1,7 @@
 # Maintainer: Maxime Gauduin 
 
 pkgname=python-trio
-pkgver=0.11.0
+pkgver=0.12.1
 pkgrel=1
 pkgdesc='A friendly Python library for async concurrency and I/O'
 arch=(any)
@@ -22,7 +22,7 @@
 )
 provides=(python-multio-provider)
 source=(git+https://github.com/python-trio/trio.git#tag=v${pkgver})
-sha256sums=(SKIP)
+sha256sums=('SKIP')
 
 build() {
   cd trio


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

2019-08-01 Thread Maxime Gauduin via arch-commits
Date: Thursday, August 1, 2019 @ 19:36:40
  Author: alucryd
Revision: 496468

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-01 19:36:34 UTC (rev 496467)
+++ PKGBUILD2019-08-01 19:36:40 UTC (rev 496468)
@@ -1,40 +0,0 @@
-# Maintainer: Maxime Gauduin 
-
-pkgname=python-trio
-pkgver=0.11.0
-pkgrel=1
-pkgdesc='A friendly Python library for async concurrency and I/O'
-arch=(any)
-url=https://github.com/python-trio/trio
-license=(MIT)
-depends=(
-  python
-  python-async_generator
-  python-attrs
-  python-idna
-  python-outcome
-  python-sniffio
-  python-sortedcontainers
-)
-makedepends=(
-  git
-  python-setuptools
-)
-provides=(python-multio-provider)
-source=(git+https://github.com/python-trio/trio.git#tag=v${pkgver})
-sha256sums=(SKIP)
-
-build() {
-  cd trio
-
-  python setup.py build
-}
-
-package() {
-  cd trio
-
-  python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
-  install -Dm 644 LICENSE -t "${pkgdir}"/usr/share/licenses/python-trio/
-}
-
-# vim: ts=2 sw=2 et:

Copied: python-trio/repos/community-any/PKGBUILD (from rev 496467, 
python-trio/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-01 19:36:40 UTC (rev 496468)
@@ -0,0 +1,40 @@
+# Maintainer: Maxime Gauduin 
+
+pkgname=python-trio
+pkgver=0.12.1
+pkgrel=1
+pkgdesc='A friendly Python library for async concurrency and I/O'
+arch=(any)
+url=https://github.com/python-trio/trio
+license=(MIT)
+depends=(
+  python
+  python-async_generator
+  python-attrs
+  python-idna
+  python-outcome
+  python-sniffio
+  python-sortedcontainers
+)
+makedepends=(
+  git
+  python-setuptools
+)
+provides=(python-multio-provider)
+source=(git+https://github.com/python-trio/trio.git#tag=v${pkgver})
+sha256sums=('SKIP')
+
+build() {
+  cd trio
+
+  python setup.py build
+}
+
+package() {
+  cd trio
+
+  python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+  install -Dm 644 LICENSE -t "${pkgdir}"/usr/share/licenses/python-trio/
+}
+
+# vim: ts=2 sw=2 et:


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

2019-08-01 Thread Maxime Gauduin via arch-commits
Date: Thursday, August 1, 2019 @ 19:16:24
  Author: alucryd
Revision: 496459

upgpkg: lollypop 1.1.4.8-1

Modified:
  lollypop/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-01 16:37:04 UTC (rev 496458)
+++ PKGBUILD2019-08-01 19:16:24 UTC (rev 496459)
@@ -3,7 +3,7 @@
 # Contributor: Cédric Bellegarde 
 
 pkgname=lollypop
-pkgver=1.1.4.7
+pkgver=1.1.4.8
 pkgrel=1
 pkgdesc='Music player for GNOME'
 arch=(any)


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

2019-08-01 Thread Maxime Gauduin via arch-commits
Date: Thursday, August 1, 2019 @ 19:16:31
  Author: alucryd
Revision: 496460

archrelease: copy trunk to community-any

Added:
  lollypop/repos/community-any/PKGBUILD
(from rev 496459, lollypop/trunk/PKGBUILD)
Deleted:
  lollypop/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-01 19:16:24 UTC (rev 496459)
+++ PKGBUILD2019-08-01 19:16:31 UTC (rev 496460)
@@ -1,54 +0,0 @@
-# Maintainer: Maxime Gauduin 
-# Contributor: kirek 
-# Contributor: Cédric Bellegarde 
-
-pkgname=lollypop
-pkgver=1.1.4.7
-pkgrel=1
-pkgdesc='Music player for GNOME'
-arch=(any)
-url=https://gitlab.gnome.org/gnumdk/lollypop
-license=(GPL)
-depends=(
-  appstream-glib
-  gst-plugins-base-libs
-  gtk3
-  python-beautifulsoup4
-  python-cairo
-  python-gobject
-  python-pillow
-  totem-plparser
-)
-makedepends=(
-  git
-  gobject-introspection
-  intltool
-  itstool
-  meson
-)
-optdepends=(
-  'easytag: Modify tags'
-  'gst-libav: FFmpeg plugin for GStreamer'
-  'gst-plugins-bad: "Bad" plugin libraries'
-  'gst-plugins-base: "Base" plugin libraries'
-  'gst-plugins-good: "Good" plugin libraries'
-  'gst-plugins-ugly: "Ugly" plugin libraries'
-  'kid3-qt: Store covers in tags'
-  'libsecret: Last.FM support'
-  'python-pylast: Last.FM support'
-  'youtube-dl: Youtube support'
-)
-source=(git+https://gitlab.gnome.org/World/lollypop.git#tag=${pkgver})
-sha256sums=('SKIP')
-
-build() {
-  arch-meson lollypop build \
---libexecdir=lib/lollypop
-  ninja -C build
-}
-
-package() {
-  DESTDIR="${pkgdir}" ninja -C build install
-}
-
-# vim: ts=2 sw=2 et:

Copied: lollypop/repos/community-any/PKGBUILD (from rev 496459, 
lollypop/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-01 19:16:31 UTC (rev 496460)
@@ -0,0 +1,54 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: kirek 
+# Contributor: Cédric Bellegarde 
+
+pkgname=lollypop
+pkgver=1.1.4.8
+pkgrel=1
+pkgdesc='Music player for GNOME'
+arch=(any)
+url=https://gitlab.gnome.org/gnumdk/lollypop
+license=(GPL)
+depends=(
+  appstream-glib
+  gst-plugins-base-libs
+  gtk3
+  python-beautifulsoup4
+  python-cairo
+  python-gobject
+  python-pillow
+  totem-plparser
+)
+makedepends=(
+  git
+  gobject-introspection
+  intltool
+  itstool
+  meson
+)
+optdepends=(
+  'easytag: Modify tags'
+  'gst-libav: FFmpeg plugin for GStreamer'
+  'gst-plugins-bad: "Bad" plugin libraries'
+  'gst-plugins-base: "Base" plugin libraries'
+  'gst-plugins-good: "Good" plugin libraries'
+  'gst-plugins-ugly: "Ugly" plugin libraries'
+  'kid3-qt: Store covers in tags'
+  'libsecret: Last.FM support'
+  'python-pylast: Last.FM support'
+  'youtube-dl: Youtube support'
+)
+source=(git+https://gitlab.gnome.org/World/lollypop.git#tag=${pkgver})
+sha256sums=('SKIP')
+
+build() {
+  arch-meson lollypop build \
+--libexecdir=lib/lollypop
+  ninja -C build
+}
+
+package() {
+  DESTDIR="${pkgdir}" ninja -C build install
+}
+
+# vim: ts=2 sw=2 et:


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

2019-08-01 Thread Levente Polyak via arch-commits
Date: Thursday, August 1, 2019 @ 21:19:54
  Author: anthraxx
Revision: 496477

upgpkg: profanity 1:0.7.0-1

Modified:
  profanity/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-01 21:05:02 UTC (rev 496476)
+++ PKGBUILD2019-08-01 21:19:54 UTC (rev 496477)
@@ -2,9 +2,10 @@
 # Contributor: Bartłomiej Piotrowski 
 # Contributor: jason ryan 
 
+# TODO: enable omemo
 pkgbase=profanity
 pkgname=('profanity' 'profanity-gtk')
-pkgver=0.6.0
+pkgver=0.7.0
 pkgrel=1
 epoch=1
 pkgdesc='Console based XMPP client'
@@ -11,14 +12,17 @@
 url='http://www.profanity.im'
 arch=('x86_64')
 license=('GPL3')
-makedepends=('curl' 'ncurses' 'expat' 'glib2' 'libotr' 'libmesode' 'libnotify' 
'gpgme' 'python' 'gtk2')
+makedepends=('curl' 'ncurses' 'expat' 'glib2' 'libotr' 'libmesode' 'libnotify' 
'gpgme' 'python' 'gtk2' 'autoconf-archive')
 checkdepends=('cmocka')
-source=(http://www.profanity.im/${pkgname}-${pkgver}.tar.gz)
-sha1sums=('9ed7dffb7b99dfff6010032602f3b08839b12c94')
-sha512sums=('c7d8e74b764276f59fccfa029d45271032db315cdbf6e00deccbd611f202983a0930fed99021202333047acee9f3f0d7779cd9bb3628d2e5c4757e3de8c3629e')
+source=(https://github.com/profanity-im/profanity/archive/${pkgver}/${pkgbase}-${pkgver}.tar.gz)
+sha1sums=('146699d2cc780fa283b1894c650e3c640da1b393')
+sha512sums=('4605b47dd3d16b8e4b6db9a683c6838fb08c128dd53c92cb05279467bb5b926a38fdd47b9fff6765a044f72a07a95433a3883a02b5da695da315a7a5c02dabc0')
 
 prepare() {
-  cp -a ${pkgname}-${pkgver}{,-gtk}
+  cd ${pkgname}-${pkgver}
+  mkdir -p m4
+  autoreconf -fiv
+  cp -a "${srcdir}"/${pkgname}-${pkgver}{,-gtk}
 }
 
 build() {


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

2019-08-01 Thread Levente Polyak via arch-commits
Date: Thursday, August 1, 2019 @ 21:19:59
  Author: anthraxx
Revision: 496478

archrelease: copy trunk to community-x86_64

Added:
  profanity/repos/community-x86_64/PKGBUILD
(from rev 496477, profanity/trunk/PKGBUILD)
Deleted:
  profanity/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-01 21:19:54 UTC (rev 496477)
+++ PKGBUILD2019-08-01 21:19:59 UTC (rev 496478)
@@ -1,68 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: jason ryan 
-
-pkgbase=profanity
-pkgname=('profanity' 'profanity-gtk')
-pkgver=0.6.0
-pkgrel=1
-epoch=1
-pkgdesc='Console based XMPP client'
-url='http://www.profanity.im'
-arch=('x86_64')
-license=('GPL3')
-makedepends=('curl' 'ncurses' 'expat' 'glib2' 'libotr' 'libmesode' 'libnotify' 
'gpgme' 'python' 'gtk2')
-checkdepends=('cmocka')
-source=(http://www.profanity.im/${pkgname}-${pkgver}.tar.gz)
-sha1sums=('9ed7dffb7b99dfff6010032602f3b08839b12c94')
-sha512sums=('c7d8e74b764276f59fccfa029d45271032db315cdbf6e00deccbd611f202983a0930fed99021202333047acee9f3f0d7779cd9bb3628d2e5c4757e3de8c3629e')
-
-prepare() {
-  cp -a ${pkgname}-${pkgver}{,-gtk}
-}
-
-build() {
-  msg "Building non-gtk variant..."
-  (cd ${pkgname}-${pkgver}
-./configure \
-  --prefix=/usr \
-  --disable-icons \
-  --enable-notifications \
-  --enable-python-plugins \
-  --enable-c-plugins \
-  --enable-plugins \
-  --enable-otr \
-  --enable-pgp
-make
-  )
-  msg "Building gtk variant..."
-  (cd ${pkgname}-${pkgver}-gtk
-./configure \
-  --prefix=/usr \
-  --enable-icons \
-  --enable-notifications \
-  --enable-python-plugins \
-  --enable-c-plugins \
-  --enable-plugins \
-  --enable-otr \
-  --enable-pgp
-make
-  )
-}
-
-package_profanity() {
-  depends=('curl' 'ncurses' 'expat' 'glib2' 'libotr' 'libmesode' 'libnotify' 
'gpgme' 'python')
-  cd ${pkgbase}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-}
-
-package_profanity-gtk() {
-  pkgdesc='Console based XMPP client (gtk support)'
-  depends=('curl' 'ncurses' 'expat' 'glib2' 'libotr' 'libmesode' 'libnotify' 
'gpgme' 'python' 'gtk2')
-  provides=('profanity')
-  conflicts=('profanity')
-  cd ${pkgbase}-${pkgver}-gtk
-  make DESTDIR="${pkgdir}" install
-}
-
-# vim: ts=2 sw=2 et:

Copied: profanity/repos/community-x86_64/PKGBUILD (from rev 496477, 
profanity/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-01 21:19:59 UTC (rev 496478)
@@ -0,0 +1,72 @@
+# Maintainer: Levente Polyak 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: jason ryan 
+
+# TODO: enable omemo
+pkgbase=profanity
+pkgname=('profanity' 'profanity-gtk')
+pkgver=0.7.0
+pkgrel=1
+epoch=1
+pkgdesc='Console based XMPP client'
+url='http://www.profanity.im'
+arch=('x86_64')
+license=('GPL3')
+makedepends=('curl' 'ncurses' 'expat' 'glib2' 'libotr' 'libmesode' 'libnotify' 
'gpgme' 'python' 'gtk2' 'autoconf-archive')
+checkdepends=('cmocka')
+source=(https://github.com/profanity-im/profanity/archive/${pkgver}/${pkgbase}-${pkgver}.tar.gz)
+sha1sums=('146699d2cc780fa283b1894c650e3c640da1b393')
+sha512sums=('4605b47dd3d16b8e4b6db9a683c6838fb08c128dd53c92cb05279467bb5b926a38fdd47b9fff6765a044f72a07a95433a3883a02b5da695da315a7a5c02dabc0')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  mkdir -p m4
+  autoreconf -fiv
+  cp -a "${srcdir}"/${pkgname}-${pkgver}{,-gtk}
+}
+
+build() {
+  msg "Building non-gtk variant..."
+  (cd ${pkgname}-${pkgver}
+./configure \
+  --prefix=/usr \
+  --disable-icons \
+  --enable-notifications \
+  --enable-python-plugins \
+  --enable-c-plugins \
+  --enable-plugins \
+  --enable-otr \
+  --enable-pgp
+make
+  )
+  msg "Building gtk variant..."
+  (cd ${pkgname}-${pkgver}-gtk
+./configure \
+  --prefix=/usr \
+  --enable-icons \
+  --enable-notifications \
+  --enable-python-plugins \
+  --enable-c-plugins \
+  --enable-plugins \
+  --enable-otr \
+  --enable-pgp
+make
+  )
+}
+
+package_profanity() {
+  depends=('curl' 'ncurses' 'expat' 'glib2' 'libotr' 'libmesode' 'libnotify' 
'gpgme' 'python')
+  cd ${pkgbase}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}
+
+package_profanity-gtk() {
+  pkgdesc='Console based XMPP client (gtk support)'
+  depends=('curl' 'ncurses' 'expat' 'glib2' 'libotr' 'libmesode' 'libnotify' 
'gpgme' 'python' 'gtk2')
+  provides=('profanity')
+  conflicts=('profanity')
+  cd ${pkgbase}-${pkgver}-gtk
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:


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

2019-08-01 Thread Maxime Gauduin via arch-commits
Date: Thursday, August 1, 2019 @ 19:53:57
  Author: alucryd
Revision: 358865

archrelease: copy trunk to extra-x86_64

Added:
  x265/repos/extra-x86_64/PKGBUILD
(from rev 358864, x265/trunk/PKGBUILD)
Deleted:
  x265/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-01 19:53:51 UTC (rev 358864)
+++ PKGBUILD2019-08-01 19:53:57 UTC (rev 358865)
@@ -1,77 +0,0 @@
-# Maintainer: Maxime Gauduin 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: kfgz 
-
-pkgname=x265
-pkgver=3.1.1
-pkgrel=1
-pkgdesc='Open Source H265/HEVC video encoder'
-arch=(x86_64)
-url=https://bitbucket.org/multicoreware/x265
-license=(GPL)
-depends=()
-makedepends=(
-  cmake
-  mercurial
-  nasm
-)
-provides=(libx265.so)
-source=(hg+https://bitbucket.org/multicoreware/x265#tag=${pkgver})
-sha256sums=(SKIP)
-
-prepare() {
-  cd x265
-
-  for d in 8 10 12; do
-if [[ -d build-$d ]]; then
-  rm -rf build-$d
-fi
-mkdir build-$d
-  done
-}
-
-build() {
-  cd x265/build-12
-
-  cmake ../source \
--DCMAKE_INSTALL_PREFIX=/usr \
--DHIGH_BIT_DEPTH=TRUE \
--DMAIN12=TRUE \
--DEXPORT_C_API=FALSE \
--DENABLE_CLI=FALSE \
--DENABLE_SHARED=FALSE
-  make
-
-  cd ../build-10
-
-  cmake ../source \
--DCMAKE_INSTALL_PREFIX=/usr \
--DHIGH_BIT_DEPTH=TRUE \
--DEXPORT_C_API=FALSE \
--DENABLE_CLI=FALSE \
--DENABLE_SHARED=FALSE
-  make
-
-  cd ../build-8
-
-  ln -s ../build-10/libx265.a libx265_main10.a
-  ln -s ../build-12/libx265.a libx265_main12.a
-
-  cmake ../source \
--DCMAKE_INSTALL_PREFIX=/usr \
--DENABLE_SHARED=TRUE \
--DENABLE_HDR10_PLUS=TRUE \
--DEXTRA_LIB='x265_main10.a;x265_main12.a' \
--DEXTRA_LINK_FLAGS='-L .' \
--DLINKED_10BIT=TRUE \
--DLINKED_12BIT=TRUE
-  make
-}
-
-package() {
-  cd x265/build-8
-
-  make DESTDIR="${pkgdir}" install
-}
-
-# vim: ts=2 sw=2 et:

Copied: x265/repos/extra-x86_64/PKGBUILD (from rev 358864, x265/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-01 19:53:57 UTC (rev 358865)
@@ -0,0 +1,77 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: kfgz 
+
+pkgname=x265
+pkgver=3.1.2
+pkgrel=1
+pkgdesc='Open Source H265/HEVC video encoder'
+arch=(x86_64)
+url=https://bitbucket.org/multicoreware/x265
+license=(GPL)
+depends=()
+makedepends=(
+  cmake
+  mercurial
+  nasm
+)
+provides=(libx265.so)
+source=(hg+https://bitbucket.org/multicoreware/x265#tag=${pkgver})
+sha256sums=(SKIP)
+
+prepare() {
+  cd x265
+
+  for d in 8 10 12; do
+if [[ -d build-$d ]]; then
+  rm -rf build-$d
+fi
+mkdir build-$d
+  done
+}
+
+build() {
+  cd x265/build-12
+
+  cmake ../source \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DHIGH_BIT_DEPTH=TRUE \
+-DMAIN12=TRUE \
+-DEXPORT_C_API=FALSE \
+-DENABLE_CLI=FALSE \
+-DENABLE_SHARED=FALSE
+  make
+
+  cd ../build-10
+
+  cmake ../source \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DHIGH_BIT_DEPTH=TRUE \
+-DEXPORT_C_API=FALSE \
+-DENABLE_CLI=FALSE \
+-DENABLE_SHARED=FALSE
+  make
+
+  cd ../build-8
+
+  ln -s ../build-10/libx265.a libx265_main10.a
+  ln -s ../build-12/libx265.a libx265_main12.a
+
+  cmake ../source \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DENABLE_SHARED=TRUE \
+-DENABLE_HDR10_PLUS=TRUE \
+-DEXTRA_LIB='x265_main10.a;x265_main12.a' \
+-DEXTRA_LINK_FLAGS='-L .' \
+-DLINKED_10BIT=TRUE \
+-DLINKED_12BIT=TRUE
+  make
+}
+
+package() {
+  cd x265/build-8
+
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:


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

2019-08-01 Thread Maxime Gauduin via arch-commits
Date: Thursday, August 1, 2019 @ 19:53:51
  Author: alucryd
Revision: 358864

upgpkg: x265 3.1.2-1

Modified:
  x265/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-01 18:05:05 UTC (rev 358863)
+++ PKGBUILD2019-08-01 19:53:51 UTC (rev 358864)
@@ -3,7 +3,7 @@
 # Contributor: kfgz 
 
 pkgname=x265
-pkgver=3.1.1
+pkgver=3.1.2
 pkgrel=1
 pkgdesc='Open Source H265/HEVC video encoder'
 arch=(x86_64)


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

2019-08-01 Thread Maxime Gauduin via arch-commits
Date: Thursday, August 1, 2019 @ 19:34:12
  Author: alucryd
Revision: 496463

upgpkg: zimg 2.9.2-1

Modified:
  zimg/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-01 19:28:19 UTC (rev 496462)
+++ PKGBUILD2019-08-01 19:34:12 UTC (rev 496463)
@@ -2,7 +2,7 @@
 # Contributor: Gustavo Alvarez 
 
 pkgname=zimg
-pkgver=2.9.1
+pkgver=2.9.2
 pkgrel=1
 pkgdesc='Scaling, colorspace conversion, and dithering library'
 arch=('x86_64')


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

2019-08-01 Thread Maxime Gauduin via arch-commits
Date: Thursday, August 1, 2019 @ 19:34:18
  Author: alucryd
Revision: 496464

archrelease: copy trunk to community-x86_64

Added:
  zimg/repos/community-x86_64/PKGBUILD
(from rev 496463, zimg/trunk/PKGBUILD)
Deleted:
  zimg/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-01 19:34:12 UTC (rev 496463)
+++ PKGBUILD2019-08-01 19:34:18 UTC (rev 496464)
@@ -1,38 +0,0 @@
-# Maintainer: Maxime Gauduin 
-# Contributor: Gustavo Alvarez 
-
-pkgname=zimg
-pkgver=2.9.1
-pkgrel=1
-pkgdesc='Scaling, colorspace conversion, and dithering library'
-arch=('x86_64')
-url='https://github.com/sekrit-twc/zimg'
-license=('custom:WTFPL')
-makedepends=('git')
-provides=('libzimg.so')
-options=('!emptydirs')
-source=("git+https://github.com/sekrit-twc/zimg.git#tag=release-${pkgver};)
-sha256sums=('SKIP')
-
-prepare() {
-  cd zimg
-
-  ./autogen.sh
-}
-
-build() {
-  cd zimg
-
-  ./configure \
---prefix='/usr' \
---enable-x86simd \
---disable-static
-  make
-}
-
-package(){
-  make DESTDIR="${pkgdir}" -C zimg install
-  install -Dm 644 zimg/COPYING -t "${pkgdir}"/usr/share/licenses/zimg/
-}
-
-# vim: ts=2 sw=2 et:

Copied: zimg/repos/community-x86_64/PKGBUILD (from rev 496463, 
zimg/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-01 19:34:18 UTC (rev 496464)
@@ -0,0 +1,38 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: Gustavo Alvarez 
+
+pkgname=zimg
+pkgver=2.9.2
+pkgrel=1
+pkgdesc='Scaling, colorspace conversion, and dithering library'
+arch=('x86_64')
+url='https://github.com/sekrit-twc/zimg'
+license=('custom:WTFPL')
+makedepends=('git')
+provides=('libzimg.so')
+options=('!emptydirs')
+source=("git+https://github.com/sekrit-twc/zimg.git#tag=release-${pkgver};)
+sha256sums=('SKIP')
+
+prepare() {
+  cd zimg
+
+  ./autogen.sh
+}
+
+build() {
+  cd zimg
+
+  ./configure \
+--prefix='/usr' \
+--enable-x86simd \
+--disable-static
+  make
+}
+
+package(){
+  make DESTDIR="${pkgdir}" -C zimg install
+  install -Dm 644 zimg/COPYING -t "${pkgdir}"/usr/share/licenses/zimg/
+}
+
+# vim: ts=2 sw=2 et:


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

2019-08-01 Thread Levente Polyak via arch-commits
Date: Thursday, August 1, 2019 @ 20:21:01
  Author: anthraxx
Revision: 496469

upgpkg: checksec 2.1.0-1

Modified:
  checksec/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-01 19:36:40 UTC (rev 496468)
+++ PKGBUILD2019-08-01 20:21:01 UTC (rev 496469)
@@ -4,7 +4,7 @@
 
 pkgname=checksec
 _pkgname=checksec.sh
-pkgver=2.0.1
+pkgver=2.1.0
 pkgrel=1
 pkgdesc='Tool designed to test which standard Linux OS and PaX security 
features are being used'
 url='https://github.com/slimm609/checksec.sh'
@@ -11,9 +11,9 @@
 arch=('any')
 license=('BSD')
 depends=('bash' 'binutils' 'procps-ng')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/slimm609/checksec.sh/archive/${pkgver}.tar.gz)
-sha256sums=('16ac66217cfdced5e07ce193826cd8c92bd9e1d6048511134149270d39b4ee44')
-sha512sums=('b2466b621b6ddb3fa01cfc5eb3dc301d6d616b26ddd2017a622ba2a24e9daf8f5e294236d1dda695fd9ab25fa411724b5f7dbdabc944cdc124e4369c176f35b4')
+source=(https://github.com/slimm609/checksec.sh/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha256sums=('e50a92a2bb22d40d1aa297cd011209ab5ad0b620236dfb9a7afe4c29744260a9')
+sha512sums=('66090777de15c492090da3494127037ffe20a169b426b054b3a8f642e9c980b2a99d5c8f8411715d74b1faed41023fb17770d3f07eec5b9efda0a43b64c07a74')
 
 prepare() {
   cd ${_pkgname}-${pkgver}


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

2019-08-01 Thread Levente Polyak via arch-commits
Date: Thursday, August 1, 2019 @ 20:26:59
  Author: anthraxx
Revision: 496471

upgpkg: ruby-paint 2.1.0-1

Modified:
  ruby-paint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-01 20:21:07 UTC (rev 496470)
+++ PKGBUILD2019-08-01 20:26:59 UTC (rev 496471)
@@ -3,8 +3,8 @@
 
 _gemname=paint
 pkgname=ruby-${_gemname}
-pkgver=2.0.1
-pkgrel=3
+pkgver=2.1.0
+pkgrel=1
 pkgdesc='Ruby paint manages terminal colors and effects'
 url='https://github.com/janlelis/paint'
 arch=('any')
@@ -12,7 +12,7 @@
 depends=('ruby-rspec' 'ruby-rainbow' 'ruby-term-ansicolor')
 options=('!emptydirs')
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/janlelis/paint/archive/v${pkgver}.tar.gz)
-sha512sums=('49db2bdca0b3b6236669219dadb8b72fb0f68102c6f93658e9b032d1da8e5be154458979425a793355efcfc90968c9cca7a1caacd087a67a5c486cd7495235ff')
+sha512sums=('0de206c78c678d77cfdff0f26e42f2a045fc98a982943f7104d11e47cd4db9b196dba6a14eb09d98c103b3b70e13b84e48fe6261d2b03a9a0f4d4f10037a39cb')
 
 prepare() {
   cd ${_gemname}-${pkgver}


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

2019-08-01 Thread Levente Polyak via arch-commits
Date: Thursday, August 1, 2019 @ 20:27:05
  Author: anthraxx
Revision: 496472

archrelease: copy trunk to community-any

Added:
  ruby-paint/repos/community-any/PKGBUILD
(from rev 496471, ruby-paint/trunk/PKGBUILD)
Deleted:
  ruby-paint/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-01 20:26:59 UTC (rev 496471)
+++ PKGBUILD2019-08-01 20:27:05 UTC (rev 496472)
@@ -1,36 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Gordin <9ordin @t gmail dot com>
-
-_gemname=paint
-pkgname=ruby-${_gemname}
-pkgver=2.0.1
-pkgrel=3
-pkgdesc='Ruby paint manages terminal colors and effects'
-url='https://github.com/janlelis/paint'
-arch=('any')
-license=('MIT')
-depends=('ruby-rspec' 'ruby-rainbow' 'ruby-term-ansicolor')
-options=('!emptydirs')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/janlelis/paint/archive/v${pkgver}.tar.gz)
-sha512sums=('49db2bdca0b3b6236669219dadb8b72fb0f68102c6f93658e9b032d1da8e5be154458979425a793355efcfc90968c9cca7a1caacd087a67a5c486cd7495235ff')
-
-prepare() {
-  cd ${_gemname}-${pkgver}
-  sed -r 's|~>|>=|g' -i paint.gemspec # don't give a fuck about rubys bla bla
-}
-
-build() {
-  cd ${_gemname}-${pkgver}
-  gem build paint.gemspec
-}
-
-package() {
-  cd ${_gemname}-${pkgver}
-  local _gemdir="$(gem env gemdir)"
-  gem install --ignore-dependencies --no-user-install -i "${pkgdir}${_gemdir}" 
-n "${pkgdir}/usr/bin" ${_gemname}-${pkgver}.gem
-  rm "${pkgdir}/${_gemdir}/cache/${_gemname}-${pkgver}.gem"
-  install -Dm 644 MIT-LICENSE.txt 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  install -Dm 644 README.md CHANGELOG.md -t 
"${pkgdir}/usr/share/doc/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: ruby-paint/repos/community-any/PKGBUILD (from rev 496471, 
ruby-paint/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-01 20:27:05 UTC (rev 496472)
@@ -0,0 +1,36 @@
+# Maintainer: Levente Polyak 
+# Contributor: Gordin <9ordin @t gmail dot com>
+
+_gemname=paint
+pkgname=ruby-${_gemname}
+pkgver=2.1.0
+pkgrel=1
+pkgdesc='Ruby paint manages terminal colors and effects'
+url='https://github.com/janlelis/paint'
+arch=('any')
+license=('MIT')
+depends=('ruby-rspec' 'ruby-rainbow' 'ruby-term-ansicolor')
+options=('!emptydirs')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/janlelis/paint/archive/v${pkgver}.tar.gz)
+sha512sums=('0de206c78c678d77cfdff0f26e42f2a045fc98a982943f7104d11e47cd4db9b196dba6a14eb09d98c103b3b70e13b84e48fe6261d2b03a9a0f4d4f10037a39cb')
+
+prepare() {
+  cd ${_gemname}-${pkgver}
+  sed -r 's|~>|>=|g' -i paint.gemspec # don't give a fuck about rubys bla bla
+}
+
+build() {
+  cd ${_gemname}-${pkgver}
+  gem build paint.gemspec
+}
+
+package() {
+  cd ${_gemname}-${pkgver}
+  local _gemdir="$(gem env gemdir)"
+  gem install --ignore-dependencies --no-user-install -i "${pkgdir}${_gemdir}" 
-n "${pkgdir}/usr/bin" ${_gemname}-${pkgver}.gem
+  rm "${pkgdir}/${_gemdir}/cache/${_gemname}-${pkgver}.gem"
+  install -Dm 644 MIT-LICENSE.txt 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -Dm 644 README.md CHANGELOG.md -t 
"${pkgdir}/usr/share/doc/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:


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

2019-08-01 Thread Christian Rebischke via arch-commits
Date: Thursday, August 1, 2019 @ 21:04:54
  Author: shibumi
Revision: 496475

upgpkg: terraform 0.12.6-1

New version + new changelog

Added:
  terraform/trunk/CHANGELOG.md
(from rev 496474, terraform/trunk/CHANGELOG)
Modified:
  terraform/trunk/PKGBUILD
Deleted:
  terraform/trunk/CHANGELOG

--+
 CHANGELOG|  185 ---
 CHANGELOG.md |  224 +
 PKGBUILD |8 +-
 3 files changed, 228 insertions(+), 189 deletions(-)

Deleted: CHANGELOG
===
--- CHANGELOG   2019-08-01 20:38:29 UTC (rev 496474)
+++ CHANGELOG   2019-08-01 21:04:54 UTC (rev 496475)
@@ -1,185 +0,0 @@
-## 0.12.5 (July 18, 2019)
-
-ENHANCEMENTS:
-* command/format: No longer show no-ops in `terraform show`, since nothing 
will change ([#21907](https://github.com/hashicorp/terraform/issues/21907))
-* backend/s3: Support for assuming role using credential process from the 
shared AWS configuration file (support profile containing both 
`credential_process` and `role_arn` configurations) 
([#21908](https://github.com/hashicorp/terraform/issues/21908))
-* connection/ssh: Abort ssh connections when the server is no longer 
responding ([#22037](https://github.com/hashicorp/terraform/issues/22037))
-* connection/ssh: Support ssh diffie-hellman-group-exchange-sha256 key 
exchange ([#22037](https://github.com/hashicorp/terraform/issues/22037))
-
-BUG FIXES:
-* backend/remote: fix conflict with normalized config dir and vcs root working 
directory ([#22096](https://github.com/hashicorp/terraform/issues/22096))
-* backend/remote: be transparent about what filesystem prefix Terraform is 
uploading to the remote system, and why it's doing that 
([#22121](https://github.com/hashicorp/terraform/issues/22121))
-* configs: Ensure diagnostics are properly recorded from nested modules 
([#22098](https://github.com/hashicorp/terraform/issues/22098))
-* core: Prevent inconsistent final plan error when using dynamic in a set-type 
block ([#22057](https://github.com/hashicorp/terraform/issues/22057))
-* lang/funcs: Allow null values in `compact` function 
([#22044](https://github.com/hashicorp/terraform/issues/22044))
-* lang/funcs: Pass through empty list in `chunklist` 
([#22119](https://github.com/hashicorp/terraform/issues/22119))
-
-## 0.12.4 (July 11, 2019)
-
-NEW FEATURES: 
-
-* lang/funcs: new `abspath` function returns the absolute path to a given file 
([#21409](https://github.com/hashicorp/terraform/issues/21409))
-* backend/swift: support for user configured state object names in swift 
containers ([#17465](https://github.com/hashicorp/terraform/issues/17465))
-
-BUG FIXES:
-
-* core: Prevent crash when a resource has no current valid instance 
([#21979](https://github.com/hashicorp/terraform/issues/21979))
-* plugin/sdk: Prevent empty strings from being replaced with default values 
([#21806](https://github.com/hashicorp/terraform/issues/21806))
-* plugin/sdk: Ensure resource timeouts are not lost when there is an empty 
plan ([#21814](https://github.com/hashicorp/terraform/issues/21814))
-* plugin/sdk: Don't add null elements to diagnostic paths when validating 
config ([#21884](https://github.com/hashicorp/terraform/issues/21884))
-* lang/funcs: Add missing map of bool support for `lookup` 
([#21863](https://github.com/hashicorp/terraform/issues/21863))
-* config: Fix issue with downloading BitBucket modules from deprecated V1 API 
by updating go-getter dependency 
([#21948](https://github.com/hashicorp/terraform/issues/21948))
-* config: Fix conditionals to evaluate to the correct type when using null 
([#21957](https://github.com/hashicorp/terraform/issues/21957))
-
-## 0.12.3 (June 24, 2019)
-
-ENHANCEMENTS:
-
-* config: add GCS source support for modules 
([#21254](https://github.com/hashicorp/terraform/issues/21254))
-* command/format: Reduce extra whitespaces & new lines 
([#21334](https://github.com/hashicorp/terraform/issues/21334))
-* backend/s3: Support for chaining assume IAM role from AWS shared 
configuration files 
([#21815](https://github.com/hashicorp/terraform/issues/21815))
-
-BUG FIXES:
-
-* configs: Can now use references like `tags["foo"]` in `ignore_changes` to 
ignore in-place updates to specific keys in a map 
([#21788](https://github.com/hashicorp/terraform/issues/21788))
-* configs: Fix panic on missing value for `version` attribute in `provider` 
blocks. ([#21825](https://github.com/hashicorp/terraform/issues/21825))
-* lang/funcs: Fix `merge` panic on null values. Now will give an error if null 
used ([#21695](https://github.com/hashicorp/terraform/issues/21695))
-* backend/remote: Fix "Conflict" error if the first state snapshot written 
after a Terraform CLI upgrade has the same content as the prior state. 
([#21811](https://github.com/hashicorp/terraform/issues/21811))
-* backend/s3: Fix AWS shared configuration file credential source not 

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

2019-08-01 Thread Christian Rebischke via arch-commits
Date: Thursday, August 1, 2019 @ 21:05:02
  Author: shibumi
Revision: 496476

archrelease: copy trunk to community-x86_64

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

--+
 CHANGELOG|  185 ---
 CHANGELOG.md |  224 +
 PKGBUILD |   64 
 3 files changed, 256 insertions(+), 217 deletions(-)

Deleted: CHANGELOG
===
--- CHANGELOG   2019-08-01 21:04:54 UTC (rev 496475)
+++ CHANGELOG   2019-08-01 21:05:02 UTC (rev 496476)
@@ -1,185 +0,0 @@
-## 0.12.5 (July 18, 2019)
-
-ENHANCEMENTS:
-* command/format: No longer show no-ops in `terraform show`, since nothing 
will change ([#21907](https://github.com/hashicorp/terraform/issues/21907))
-* backend/s3: Support for assuming role using credential process from the 
shared AWS configuration file (support profile containing both 
`credential_process` and `role_arn` configurations) 
([#21908](https://github.com/hashicorp/terraform/issues/21908))
-* connection/ssh: Abort ssh connections when the server is no longer 
responding ([#22037](https://github.com/hashicorp/terraform/issues/22037))
-* connection/ssh: Support ssh diffie-hellman-group-exchange-sha256 key 
exchange ([#22037](https://github.com/hashicorp/terraform/issues/22037))
-
-BUG FIXES:
-* backend/remote: fix conflict with normalized config dir and vcs root working 
directory ([#22096](https://github.com/hashicorp/terraform/issues/22096))
-* backend/remote: be transparent about what filesystem prefix Terraform is 
uploading to the remote system, and why it's doing that 
([#22121](https://github.com/hashicorp/terraform/issues/22121))
-* configs: Ensure diagnostics are properly recorded from nested modules 
([#22098](https://github.com/hashicorp/terraform/issues/22098))
-* core: Prevent inconsistent final plan error when using dynamic in a set-type 
block ([#22057](https://github.com/hashicorp/terraform/issues/22057))
-* lang/funcs: Allow null values in `compact` function 
([#22044](https://github.com/hashicorp/terraform/issues/22044))
-* lang/funcs: Pass through empty list in `chunklist` 
([#22119](https://github.com/hashicorp/terraform/issues/22119))
-
-## 0.12.4 (July 11, 2019)
-
-NEW FEATURES: 
-
-* lang/funcs: new `abspath` function returns the absolute path to a given file 
([#21409](https://github.com/hashicorp/terraform/issues/21409))
-* backend/swift: support for user configured state object names in swift 
containers ([#17465](https://github.com/hashicorp/terraform/issues/17465))
-
-BUG FIXES:
-
-* core: Prevent crash when a resource has no current valid instance 
([#21979](https://github.com/hashicorp/terraform/issues/21979))
-* plugin/sdk: Prevent empty strings from being replaced with default values 
([#21806](https://github.com/hashicorp/terraform/issues/21806))
-* plugin/sdk: Ensure resource timeouts are not lost when there is an empty 
plan ([#21814](https://github.com/hashicorp/terraform/issues/21814))
-* plugin/sdk: Don't add null elements to diagnostic paths when validating 
config ([#21884](https://github.com/hashicorp/terraform/issues/21884))
-* lang/funcs: Add missing map of bool support for `lookup` 
([#21863](https://github.com/hashicorp/terraform/issues/21863))
-* config: Fix issue with downloading BitBucket modules from deprecated V1 API 
by updating go-getter dependency 
([#21948](https://github.com/hashicorp/terraform/issues/21948))
-* config: Fix conditionals to evaluate to the correct type when using null 
([#21957](https://github.com/hashicorp/terraform/issues/21957))
-
-## 0.12.3 (June 24, 2019)
-
-ENHANCEMENTS:
-
-* config: add GCS source support for modules 
([#21254](https://github.com/hashicorp/terraform/issues/21254))
-* command/format: Reduce extra whitespaces & new lines 
([#21334](https://github.com/hashicorp/terraform/issues/21334))
-* backend/s3: Support for chaining assume IAM role from AWS shared 
configuration files 
([#21815](https://github.com/hashicorp/terraform/issues/21815))
-
-BUG FIXES:
-
-* configs: Can now use references like `tags["foo"]` in `ignore_changes` to 
ignore in-place updates to specific keys in a map 
([#21788](https://github.com/hashicorp/terraform/issues/21788))
-* configs: Fix panic on missing value for `version` attribute in `provider` 
blocks. ([#21825](https://github.com/hashicorp/terraform/issues/21825))
-* lang/funcs: Fix `merge` panic on null values. Now will give an error if null 
used ([#21695](https://github.com/hashicorp/terraform/issues/21695))
-* backend/remote: Fix "Conflict" error if the first state snapshot written 
after a Terraform CLI upgrade has the same content as the prior state. 

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

2019-08-01 Thread Levente Polyak via arch-commits
Date: Thursday, August 1, 2019 @ 21:39:22
  Author: anthraxx
Revision: 496480

archrelease: copy trunk to multilib-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-01 21:39:17 UTC (rev 496479)
+++ PKGBUILD2019-08-01 21:39:22 UTC (rev 496480)
@@ -1,48 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor:  Bartłomiej Piotrowski 
-# Contributor: Andrzej Giniewicz 
-# Contributor: Johan Förberg 
-
-_pkgname=zstd
-pkgname=lib32-zstd
-pkgver=1.4.1
-pkgrel=1
-pkgdesc='Zstandard - Fast real-time compression algorithm (32-bit)'
-url='https://www.zstd.net/'
-arch=('x86_64')
-license=('BSD' 'GPL2')
-depends=('zstd' 'lib32-zlib' 'lib32-xz' 'lib32-lz4')
-makedepends=('gtest')
-source=(https://github.com/facebook/zstd/releases/download/v${pkgver}/zstd-${pkgver}.tar.gz)
-sha256sums=('535020867eb3af61fbadfcb402335af7f52dfe44f081ccfa201e961f01751aa0')
-sha512sums=('d405b8e160703c3de2cdd395451c12b0b6a792f2ed88976b37ab662191af3dc32a844b4e627871dbba94ef8acfe011b2ba5833aa949238255dcab99e792b8b62')
-
-build() {
-  cd ${_pkgname}-${pkgver}
-  export CC="gcc -m32"
-  export CXX="g++ -m32"
-  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
-  make
-  make zstdmt
-  make -C contrib/pzstd
-}
-
-check() {
-  cd ${_pkgname}-${pkgver}
-  make check
-  make -C contrib/pzstd test
-}
-
-package() {
-  cd ${_pkgname}-${pkgver}
-  make \
-PREFIX=/usr \
-LIBDIR=/usr/lib32 \
-PKGCONFIGDIR=/usr/lib32/pkgconfig \
-DESTDIR="${pkgdir}" \
-install
-  rm -rf "${pkgdir}"/usr/{share,include,bin}
-  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: lib32-zstd/repos/multilib-x86_64/PKGBUILD (from rev 496479, 
lib32-zstd/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-01 21:39:22 UTC (rev 496480)
@@ -0,0 +1,48 @@
+# Maintainer: Levente Polyak 
+# Contributor:  Bartłomiej Piotrowski 
+# Contributor: Andrzej Giniewicz 
+# Contributor: Johan Förberg 
+
+_pkgname=zstd
+pkgname=lib32-zstd
+pkgver=1.4.2
+pkgrel=1
+pkgdesc='Zstandard - Fast real-time compression algorithm (32-bit)'
+url='https://www.zstd.net/'
+arch=('x86_64')
+license=('BSD' 'GPL2')
+depends=('zstd' 'lib32-zlib' 'lib32-xz' 'lib32-lz4')
+makedepends=('gtest')
+source=(https://github.com/facebook/zstd/releases/download/v${pkgver}/zstd-${pkgver}.tar.gz)
+sha256sums=('12730983b521f9a604c6789140fcb94fadf9a3ca99199765e33c56eb65b643c9')
+sha512sums=('b760f201ff8d018c422b030d3f59245b5f1cfd157ba8d6eb9fe9240e23d5739ca7b5a705b2d5e8ace703d041ab77bea66d735b283e51facfb18923794fabe213')
+
+build() {
+  cd ${_pkgname}-${pkgver}
+  export CC="gcc -m32"
+  export CXX="g++ -m32"
+  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
+  make
+  make zstdmt
+  make -C contrib/pzstd
+}
+
+check() {
+  cd ${_pkgname}-${pkgver}
+  make check
+  make -C contrib/pzstd test
+}
+
+package() {
+  cd ${_pkgname}-${pkgver}
+  make \
+PREFIX=/usr \
+LIBDIR=/usr/lib32 \
+PKGCONFIGDIR=/usr/lib32/pkgconfig \
+DESTDIR="${pkgdir}" \
+install
+  rm -rf "${pkgdir}"/usr/{share,include,bin}
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:


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

2019-08-01 Thread Levente Polyak via arch-commits
Date: Thursday, August 1, 2019 @ 21:39:17
  Author: anthraxx
Revision: 496479

upgpkg: lib32-zstd 1.4.2-1

Modified:
  lib32-zstd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-01 21:19:59 UTC (rev 496478)
+++ PKGBUILD2019-08-01 21:39:17 UTC (rev 496479)
@@ -5,7 +5,7 @@
 
 _pkgname=zstd
 pkgname=lib32-zstd
-pkgver=1.4.1
+pkgver=1.4.2
 pkgrel=1
 pkgdesc='Zstandard - Fast real-time compression algorithm (32-bit)'
 url='https://www.zstd.net/'
@@ -14,8 +14,8 @@
 depends=('zstd' 'lib32-zlib' 'lib32-xz' 'lib32-lz4')
 makedepends=('gtest')
 
source=(https://github.com/facebook/zstd/releases/download/v${pkgver}/zstd-${pkgver}.tar.gz)
-sha256sums=('535020867eb3af61fbadfcb402335af7f52dfe44f081ccfa201e961f01751aa0')
-sha512sums=('d405b8e160703c3de2cdd395451c12b0b6a792f2ed88976b37ab662191af3dc32a844b4e627871dbba94ef8acfe011b2ba5833aa949238255dcab99e792b8b62')
+sha256sums=('12730983b521f9a604c6789140fcb94fadf9a3ca99199765e33c56eb65b643c9')
+sha512sums=('b760f201ff8d018c422b030d3f59245b5f1cfd157ba8d6eb9fe9240e23d5739ca7b5a705b2d5e8ace703d041ab77bea66d735b283e51facfb18923794fabe213')
 
 build() {
   cd ${_pkgname}-${pkgver}


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

2019-08-01 Thread Maxime Gauduin via arch-commits
Date: Thursday, August 1, 2019 @ 19:35:46
  Author: alucryd
Revision: 496466

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-01 19:35:40 UTC (rev 496465)
+++ PKGBUILD2019-08-01 19:35:46 UTC (rev 496466)
@@ -1,43 +0,0 @@
-# Maintainer: Maxime Gauduin 
-# Contributor: Tatsuyuki Ishi 
-
-pkgname=python-arrow
-pkgver=0.14.3
-pkgrel=1
-pkgdesc='Better dates and times for Python'
-arch=(any)
-url=https://arrow.readthedocs.io
-license=(APACHE)
-makedepends=(
-  git
-  python-dateutil
-  python-setuptools
-)
-checkdepends=(
-  python-chai
-  python-nose
-  python-pytz
-  python-simplejson
-)
-source=(git+https://github.com/crsmithdev/arrow.git#tag=${pkgver})
-sha256sums=('SKIP')
-
-build() {
-  cd arrow
-
-  python setup.py build
-}
-
-check() {
-  cd arrow
-
-  nosetests
-}
-
-package() {
-  cd arrow
-
-  python setup.py install --skip-build --root="${pkgdir}" --optimize=1 
--skip-build
-}
-
-# vim: ts=2 sw=2 et:

Copied: python-arrow/repos/community-any/PKGBUILD (from rev 496465, 
python-arrow/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-01 19:35:46 UTC (rev 496466)
@@ -0,0 +1,43 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: Tatsuyuki Ishi 
+
+pkgname=python-arrow
+pkgver=0.14.4
+pkgrel=1
+pkgdesc='Better dates and times for Python'
+arch=(any)
+url=https://arrow.readthedocs.io
+license=(APACHE)
+makedepends=(
+  git
+  python-dateutil
+  python-setuptools
+)
+checkdepends=(
+  python-chai
+  python-nose
+  python-pytz
+  python-simplejson
+)
+source=(git+https://github.com/crsmithdev/arrow.git#tag=${pkgver})
+sha256sums=('SKIP')
+
+build() {
+  cd arrow
+
+  python setup.py build
+}
+
+check() {
+  cd arrow
+
+  nosetests
+}
+
+package() {
+  cd arrow
+
+  python setup.py install --skip-build --root="${pkgdir}" --optimize=1 
--skip-build
+}
+
+# vim: ts=2 sw=2 et:


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

2019-08-01 Thread Maxime Gauduin via arch-commits
Date: Thursday, August 1, 2019 @ 19:35:40
  Author: alucryd
Revision: 496465

upgpkg: python-arrow 0.14.4-1

Modified:
  python-arrow/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-01 19:34:18 UTC (rev 496464)
+++ PKGBUILD2019-08-01 19:35:40 UTC (rev 496465)
@@ -2,7 +2,7 @@
 # Contributor: Tatsuyuki Ishi 
 
 pkgname=python-arrow
-pkgver=0.14.3
+pkgver=0.14.4
 pkgrel=1
 pkgdesc='Better dates and times for Python'
 arch=(any)


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

2019-08-01 Thread Levente Polyak via arch-commits
Date: Thursday, August 1, 2019 @ 20:38:22
  Author: anthraxx
Revision: 496473

upgpkg: wpscan 1:3.6.2-1

Modified:
  wpscan/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-01 20:27:05 UTC (rev 496472)
+++ PKGBUILD2019-08-01 20:38:22 UTC (rev 496473)
@@ -2,7 +2,7 @@
 # Contributor: alexiobash < me (at) alexiobash (dot) com >
 
 pkgname=wpscan
-pkgver=3.6.1
+pkgver=3.6.2
 pkgrel=1
 epoch=1
 pkgdesc='Black box WordPress vulnerability scanner'
@@ -13,8 +13,8 @@
 options=('!strip' '!emptydirs')
 install=wpscan.install
 
source=(https://github.com/wpscanteam/wpscan/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha256sums=('49a6dd0a361bd529a4c1fa95314b56a54db2f3bedf9a630576352f2ec0f71260')
-sha512sums=('6dd29021beb877696f8763d9b4e374d1de4d3e460995f252cf9ddfa5d640d9bfde1cd68bf5012aab1b21c51816fc66873951c8bffb11fc02faf926620db5717b')
+sha256sums=('98f687f7a47e4afc310b2af73c635312f78bb3ee8f490593d2cf8318378a75a2')
+sha512sums=('7c274395b1bf48006bbdb9e2efc4803936de27ec54bdea4266af9073a844e9b8a01f345932bb4d9ba8d9e6dac6570bc0f6d95a8b6a2702cd77b62287dd461563')
 
 prepare() {
   cd ${pkgname}-${pkgver}


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

2019-08-01 Thread Levente Polyak via arch-commits
Date: Thursday, August 1, 2019 @ 20:38:29
  Author: anthraxx
Revision: 496474

archrelease: copy trunk to community-x86_64

Added:
  wpscan/repos/community-x86_64/PKGBUILD
(from rev 496473, wpscan/trunk/PKGBUILD)
  wpscan/repos/community-x86_64/wpscan.install
(from rev 496473, wpscan/trunk/wpscan.install)
Deleted:
  wpscan/repos/community-x86_64/PKGBUILD
  wpscan/repos/community-x86_64/wpscan.install

+
 PKGBUILD   |   98 +++
 wpscan.install |   18 +-
 2 files changed, 58 insertions(+), 58 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-01 20:38:22 UTC (rev 496473)
+++ PKGBUILD2019-08-01 20:38:29 UTC (rev 496474)
@@ -1,49 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: alexiobash < me (at) alexiobash (dot) com >
-
-pkgname=wpscan
-pkgver=3.6.1
-pkgrel=1
-epoch=1
-pkgdesc='Black box WordPress vulnerability scanner'
-url='https://wpscan.org'
-arch=('x86_64')
-license=('custom:WPScan')
-depends=('ruby-bundler' 'libxslt' 'libyaml' 'curl' 'libxml2')
-options=('!strip' '!emptydirs')
-install=wpscan.install
-source=(https://github.com/wpscanteam/wpscan/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha256sums=('49a6dd0a361bd529a4c1fa95314b56a54db2f3bedf9a630576352f2ec0f71260')
-sha512sums=('6dd29021beb877696f8763d9b4e374d1de4d3e460995f252cf9ddfa5d640d9bfde1cd68bf5012aab1b21c51816fc66873951c8bffb11fc02faf926620db5717b')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  sed -i '/bundler/ s|~>|>=|g' $pkgname.gemspec
-  bundle config build.nokogiri --use-system-libraries
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-  CFLAGS+=" -I/usr/include/libxml2"
-  bundle install -j"$(nproc)" --path vendor/bundle --without development test
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-
-  install -d "${pkgdir}/opt/${pkgname}"
-  cp -ra --no-preserve=owner . "${pkgdir}/opt/${pkgname}"
-
-  install -d "${pkgdir}/usr/bin"
-  cat > "${pkgdir}/usr/bin/${pkgname}" << EOF
-#!/bin/sh
-BUNDLE_GEMFILE=/opt/${pkgname}/Gemfile bundle exec ruby /opt/wpscan/bin/wpscan 
"\$@"
-EOF
-  chmod 755 "${pkgdir}/usr/bin/${pkgname}"
-
-  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
-  find "${pkgdir}" \( -name gem_make.out -or -name mkmf.log \) -delete
-}
-
-# vim: ts=2 sw=2 et:

Copied: wpscan/repos/community-x86_64/PKGBUILD (from rev 496473, 
wpscan/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-01 20:38:29 UTC (rev 496474)
@@ -0,0 +1,49 @@
+# Maintainer: Levente Polyak 
+# Contributor: alexiobash < me (at) alexiobash (dot) com >
+
+pkgname=wpscan
+pkgver=3.6.2
+pkgrel=1
+epoch=1
+pkgdesc='Black box WordPress vulnerability scanner'
+url='https://wpscan.org'
+arch=('x86_64')
+license=('custom:WPScan')
+depends=('ruby-bundler' 'libxslt' 'libyaml' 'curl' 'libxml2')
+options=('!strip' '!emptydirs')
+install=wpscan.install
+source=(https://github.com/wpscanteam/wpscan/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha256sums=('98f687f7a47e4afc310b2af73c635312f78bb3ee8f490593d2cf8318378a75a2')
+sha512sums=('7c274395b1bf48006bbdb9e2efc4803936de27ec54bdea4266af9073a844e9b8a01f345932bb4d9ba8d9e6dac6570bc0f6d95a8b6a2702cd77b62287dd461563')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  sed -i '/bundler/ s|~>|>=|g' $pkgname.gemspec
+  bundle config build.nokogiri --use-system-libraries
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  CFLAGS+=" -I/usr/include/libxml2"
+  bundle install -j"$(nproc)" --path vendor/bundle --without development test
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+
+  install -d "${pkgdir}/opt/${pkgname}"
+  cp -ra --no-preserve=owner . "${pkgdir}/opt/${pkgname}"
+
+  install -d "${pkgdir}/usr/bin"
+  cat > "${pkgdir}/usr/bin/${pkgname}" << EOF
+#!/bin/sh
+BUNDLE_GEMFILE=/opt/${pkgname}/Gemfile bundle exec ruby /opt/wpscan/bin/wpscan 
"\$@"
+EOF
+  chmod 755 "${pkgdir}/usr/bin/${pkgname}"
+
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+  find "${pkgdir}" \( -name gem_make.out -or -name mkmf.log \) -delete
+}
+
+# vim: ts=2 sw=2 et:

Deleted: wpscan.install
===
--- wpscan.install  2019-08-01 20:38:22 UTC (rev 496473)
+++ wpscan.install  2019-08-01 20:38:29 UTC (rev 496474)
@@ -1,9 +0,0 @@
-post_install() {
-  echo -n 'Updating wpscan database...'
-  /usr/bin/wpscan --update >/dev/null 2>&1
-  echo "done."
-}
-
-post_upgrade() {
-  post_install
-}

Copied: wpscan/repos/community-x86_64/wpscan.install (from rev 496473, 
wpscan/trunk/wpscan.install)
===
--- wpscan.install  (rev 0)
+++ wpscan.install  2019-08-01 

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

2019-08-01 Thread Levente Polyak via arch-commits
Date: Thursday, August 1, 2019 @ 21:28:38
  Author: anthraxx
Revision: 358866

upgpkg: linux-hardened 5.2.5.a-1 use CONFIG_PAGE_SANITIZE instead of 
CONFIG_PAGE_POISONING

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

---+
 PKGBUILD  |8 
 config.x86_64 |8 +++-
 2 files changed, 7 insertions(+), 9 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-08-01 19:53:57 UTC (rev 358865)
+++ PKGBUILD2019-08-01 21:28:38 UTC (rev 358866)
@@ -4,7 +4,7 @@
 # Contributor: Thomas Baechler 
 
 pkgbase=linux-hardened
-_pkgver=5.2.4
+_pkgver=5.2.5
 _hardenedver=a
 _srcname=linux-${_pkgver}
 pkgver=${_pkgver}.${_hardenedver}
@@ -26,11 +26,11 @@
 linux.preset   # standard config files for mkinitcpio ramdisk
 )
 replaces=('linux-grsec')
-sha256sums=('b1cd8b9e0bfe7afb2fdf3915605db3a6cd3fe098833f9bc0b37aae74b057ee43'
+sha256sums=('c645402843f90a69426975f8923923dfc6edebb5d1bc0092560ffb7135d3cd96'
 'SKIP'
-'9c2daa260faf1cc63de68161eb2032516af024e8da5a0772a0d492a1983521aa'
+'a8d19561776c445212c3ec6b9550570f2097e32cfa553ef2280220937f3246b5'
 'SKIP'
-'32a21ef4202dc00f4a9ce774aab853d9ffe5f6b99927c18ee0fe91678c6df079'
+'685188f59ab529893fe540ace20ca6e8832c799ad799811306cf039fd09d5bd3'
 'ae2e95db94ef7176207c690224169594d49445e04249d2499e9d2fbc117a0b21'
 'c043f3033bb781e2688794a59f6d1f7ed49ef9b13eb77ff9a425df33a244a636'
 'ad6344badc91ad0630caacde83f7f9b97276f80d26a20619a87952be65492c65')

Modified: config.x86_64
===
--- config.x86_64   2019-08-01 19:53:57 UTC (rev 358865)
+++ config.x86_64   2019-08-01 21:28:38 UTC (rev 358866)
@@ -1,6 +1,6 @@
 #
 # Automatically generated file; DO NOT EDIT.
-# Linux/x86 5.2.4 Kernel Configuration
+# Linux/x86 5.2.5 Kernel Configuration
 #
 
 #
@@ -176,6 +176,7 @@
 CONFIG_UTS_NS=y
 CONFIG_IPC_NS=y
 CONFIG_USER_NS=y
+# CONFIG_USER_NS_UNPRIVILEGED is not set
 CONFIG_PID_NS=y
 CONFIG_NET_NS=y
 # CONFIG_CHECKPOINT_RESTORE is not set
@@ -192,7 +193,6 @@
 CONFIG_RD_LZ4=y
 CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y
 # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
-# CONFIG_LOCAL_INIT is not set
 CONFIG_SYSCTL=y
 CONFIG_HAVE_UID16=y
 CONFIG_SYSCTL_EXCEPTION_TRACE=y
@@ -10154,9 +10154,7 @@
 # CONFIG_PAGE_EXTENSION is not set
 # CONFIG_DEBUG_PAGEALLOC is not set
 # CONFIG_PAGE_OWNER is not set
-CONFIG_PAGE_POISONING=y
-CONFIG_PAGE_POISONING_NO_SANITY=y
-CONFIG_PAGE_POISONING_ZERO=y
+# CONFIG_PAGE_POISONING is not set
 # CONFIG_DEBUG_PAGE_REF is not set
 # CONFIG_DEBUG_RODATA_TEST is not set
 # CONFIG_DEBUG_OBJECTS is not set


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

2019-08-01 Thread Levente Polyak via arch-commits
Date: Thursday, August 1, 2019 @ 21:28:47
  Author: anthraxx
Revision: 358867

archrelease: copy trunk to extra-x86_64

Added:
  linux-hardened/repos/extra-x86_64/60-linux.hook
(from rev 358866, linux-hardened/trunk/60-linux.hook)
  linux-hardened/repos/extra-x86_64/90-linux.hook
(from rev 358866, linux-hardened/trunk/90-linux.hook)
  linux-hardened/repos/extra-x86_64/PKGBUILD
(from rev 358866, linux-hardened/trunk/PKGBUILD)
  linux-hardened/repos/extra-x86_64/config.x86_64
(from rev 358866, linux-hardened/trunk/config.x86_64)
  linux-hardened/repos/extra-x86_64/linux.install
(from rev 358866, linux-hardened/trunk/linux.install)
  linux-hardened/repos/extra-x86_64/linux.preset
(from rev 358866, linux-hardened/trunk/linux.preset)
Deleted:
  linux-hardened/repos/extra-x86_64/60-linux.hook
  linux-hardened/repos/extra-x86_64/90-linux.hook
  linux-hardened/repos/extra-x86_64/PKGBUILD
  linux-hardened/repos/extra-x86_64/config.x86_64
  linux-hardened/repos/extra-x86_64/linux.install
  linux-hardened/repos/extra-x86_64/linux.preset

---+
 60-linux.hook |   24 
 90-linux.hook |   22 
 PKGBUILD  |  510 -
 config.x86_64 |20782 +++-
 linux.install |   26 
 linux.preset  |   28 
 6 files changed, 10695 insertions(+), 10697 deletions(-)

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


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

2019-08-01 Thread Felix Yan via arch-commits
Date: Thursday, August 1, 2019 @ 08:59:14
  Author: felixonmars
Revision: 496336

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-x509-validation/repos/community-staging-x86_64/
  haskell-x509-validation/repos/community-staging-x86_64/PKGBUILD
(from rev 496335, haskell-x509-validation/trunk/PKGBUILD)

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

Copied: haskell-x509-validation/repos/community-staging-x86_64/PKGBUILD (from 
rev 496335, haskell-x509-validation/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-01 08:59:14 UTC (rev 496336)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=x509-validation
+pkgname=haskell-x509-validation
+pkgver=1.6.11
+pkgrel=27
+pkgdesc="X.509 Certificate and CRL validation"
+url="https://github.com/vincenthz/hs-certificate;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-asn1-encoding' 'haskell-asn1-types' 
'haskell-byteable'
+ 'haskell-cryptonite' 'haskell-data-default-class' 'haskell-hourglass' 
'haskell-memory'
+ 'haskell-pem' 'haskell-x509' 'haskell-x509-store')
+makedepends=('ghc' 'haskell-tasty' 'haskell-tasty-hunit')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('5c156b7018afabedac0c2ee6192c536cf09eacdaf9265490a7f4a7d336077dc198a07f16bf58f3fec04a1350f0a8b3c050380673612cf5695c9e7b5a73a4ebf4')
+
+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-tls/repos (2 files)

2019-08-01 Thread Felix Yan via arch-commits
Date: Thursday, August 1, 2019 @ 09:00:30
  Author: felixonmars
Revision: 496338

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-tls/repos/community-staging-x86_64/PKGBUILD (from rev 496337, 
haskell-tls/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-01 09:00:30 UTC (rev 496338)
@@ -0,0 +1,41 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=tls
+pkgname=haskell-tls
+pkgver=1.4.1
+pkgrel=80
+pkgdesc="TLS/SSL protocol native implementation (Server and Client)"
+url="https://github.com/vincenthz/hs-tls;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-asn1-encoding" "haskell-asn1-types" 
"haskell-async" "haskell-cereal"
+ "haskell-cryptonite" "haskell-data-default-class" "haskell-memory"
+ "haskell-network" "haskell-x509" "haskell-x509-store" 
"haskell-x509-validation")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('a72435af9d3188fb19d6367089bc598ec17e845eccfbeb3457da89c3a3eb3f47b6041b4d2be6bff63e0c40e110b1eb8b176380e5acb82641869df4dfb871d9fd')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-hans -fnetwork -fcompat
+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"
+}


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

2019-08-01 Thread Felix Yan via arch-commits
Date: Thursday, August 1, 2019 @ 09:00:20
  Author: felixonmars
Revision: 496337

upgpkg: haskell-tls 1.4.1-80

rebuild with splitmix 0.0.3

Modified:
  haskell-tls/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-01 08:59:14 UTC (rev 496336)
+++ PKGBUILD2019-08-01 09:00:20 UTC (rev 496337)
@@ -4,7 +4,7 @@
 _hkgname=tls
 pkgname=haskell-tls
 pkgver=1.4.1
-pkgrel=79
+pkgrel=80
 pkgdesc="TLS/SSL protocol native implementation (Server and Client)"
 url="https://github.com/vincenthz/hs-tls;
 license=("BSD")


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

2019-08-01 Thread Felix Yan via arch-commits
Date: Thursday, August 1, 2019 @ 09:04:46
  Author: felixonmars
Revision: 496345

upgpkg: haskell-hjsonschema 1.9.0-246

rebuild with splitmix 0.0.3

Modified:
  haskell-hjsonschema/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-01 09:02:53 UTC (rev 496344)
+++ PKGBUILD2019-08-01 09:04:46 UTC (rev 496345)
@@ -4,7 +4,7 @@
 _hkgname=hjsonschema
 pkgname=haskell-hjsonschema
 pkgver=1.9.0
-pkgrel=245
+pkgrel=246
 pkgdesc="JSON Schema library"
 url="https://github.com/seagreen/hjsonschema;
 license=("MIT")


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

2019-08-01 Thread Felix Yan via arch-commits
Date: Thursday, August 1, 2019 @ 09:04:56
  Author: felixonmars
Revision: 496346

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-hjsonschema/repos/community-staging-x86_64/PKGBUILD (from rev 
496345, haskell-hjsonschema/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-01 09:04:56 UTC (rev 496346)
@@ -0,0 +1,46 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hjsonschema
+pkgname=haskell-hjsonschema
+pkgver=1.9.0
+pkgrel=246
+pkgdesc="JSON Schema library"
+url="https://github.com/seagreen/hjsonschema;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-file-embed' 'haskell-hashable' 
'haskell-hjsonpointer'
+ 'haskell-http-client' 'haskell-http-client-tls' 'haskell-http-types' 
'haskell-pcre-heavy'
+ 'haskell-profunctors' 'haskell-protolude' 'haskell-quickcheck' 
'haskell-safe-exceptions'
+ 'haskell-scientific' 'haskell-unordered-containers' 'haskell-vector')
+makedepends=('ghc' 'haskell-hspec' 'haskell-wai-app-static' 'haskell-warp')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('c71f4f23453abbb7e5c3b8a04e9fd2bea560e03ccf590fbad3739f609fe0e4e5292acfe94204b2d52d30f8fda8cc1c94edac41d5095f6be1c4cf8c05ec08e273')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test || warning "json-schema.org is NXDOMAIN as of 
2018-06-03"
+}
+
+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 "MIT-LICENSE.txt" 
"${pkgdir}/usr/share/licenses/${pkgname}/MIT-LICENSE.txt"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/MIT-LICENSE.txt"
+}


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

2019-08-01 Thread Felix Yan via arch-commits
Date: Thursday, August 1, 2019 @ 09:24:08
  Author: felixonmars
Revision: 496367

upgpkg: haskell-fdo-notify 0.3.1-184

rebuild with splitmix 0.0.3

Modified:
  haskell-fdo-notify/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-01 09:23:10 UTC (rev 496366)
+++ PKGBUILD2019-08-01 09:24:08 UTC (rev 496367)
@@ -4,7 +4,7 @@
 _hkgname=fdo-notify
 pkgname=haskell-fdo-notify
 pkgver=0.3.1
-pkgrel=183
+pkgrel=184
 pkgdesc="Desktop Notifications client"
 url="https://bitbucket.org/taejo/fdo-notify/;
 license=("BSD")


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

2019-08-01 Thread Felix Yan via arch-commits
Date: Thursday, August 1, 2019 @ 09:24:18
  Author: felixonmars
Revision: 496368

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-fdo-notify/repos/community-staging-x86_64/
  haskell-fdo-notify/repos/community-staging-x86_64/PKGBUILD
(from rev 496367, haskell-fdo-notify/trunk/PKGBUILD)

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

Copied: haskell-fdo-notify/repos/community-staging-x86_64/PKGBUILD (from rev 
496367, haskell-fdo-notify/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-01 09:24:18 UTC (rev 496368)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=fdo-notify
+pkgname=haskell-fdo-notify
+pkgver=0.3.1
+pkgrel=184
+pkgdesc="Desktop Notifications client"
+url="https://bitbucket.org/taejo/fdo-notify/;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-dbus")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('d9193899d5eebd7c36e9464571827bd5b560fcc156e89822877b3b67a1f376c7abea9958f7e0aa6f79da06ad5f35a8738ad30a40d447b64ad557ed341054e6b6')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-08-01 Thread Felix Yan via arch-commits
Date: Thursday, August 1, 2019 @ 09:25:30
  Author: felixonmars
Revision: 496370

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-feed/repos/community-staging-x86_64/PKGBUILD (from rev 496369, 
haskell-feed/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-01 09:25:30 UTC (rev 496370)
@@ -0,0 +1,46 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=feed
+pkgname=haskell-feed
+pkgver=1.2.0.0
+pkgrel=3
+pkgdesc="Interfacing with RSS (v 0.9x, 2.x, 1.0) + Atom feeds."
+url="https://github.com/bergmark/feed;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-base-compat' 'haskell-old-locale' 
'haskell-old-time' 'haskell-safe'
+ 'haskell-time-locale-compat' 'haskell-utf8-string' 'haskell-xml-types'
+ 'haskell-xml-conduit')
+makedepends=('ghc' 'haskell-hunit' 'haskell-test-framework' 
'haskell-test-framework-hunit'
+ 'haskell-markdown-unlit')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('16da6930e00a67fe96a1dc4800c6759ab336a3907da4b3c69a760242f06305a4d0a0f3c52c66004f5d84b5efe382972719bba5ee4a7c39d2f6359da76e0acd23')
+
+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
+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 beats/repos/community-x86_64 (20 files)

2019-08-01 Thread Massimiliano Torromeo via arch-commits
Date: Thursday, August 1, 2019 @ 09:32:53
  Author: mtorromeo
Revision: 496384

archrelease: copy trunk to community-x86_64

Added:
  beats/repos/community-x86_64/PKGBUILD
(from rev 496383, beats/trunk/PKGBUILD)
  beats/repos/community-x86_64/auditbeat.install
(from rev 496383, beats/trunk/auditbeat.install)
  beats/repos/community-x86_64/auditbeat.service
(from rev 496383, beats/trunk/auditbeat.service)
  beats/repos/community-x86_64/filebeat.service
(from rev 496383, beats/trunk/filebeat.service)
  beats/repos/community-x86_64/golang-crypto.patch
(from rev 496383, beats/trunk/golang-crypto.patch)
  beats/repos/community-x86_64/heartbeat.service
(from rev 496383, beats/trunk/heartbeat.service)
  beats/repos/community-x86_64/journalbeat.service
(from rev 496383, beats/trunk/journalbeat.service)
  beats/repos/community-x86_64/metricbeat.service
(from rev 496383, beats/trunk/metricbeat.service)
  beats/repos/community-x86_64/packetbeat.service
(from rev 496383, beats/trunk/packetbeat.service)
  beats/repos/community-x86_64/tmpfile.conf
(from rev 496383, beats/trunk/tmpfile.conf)
Deleted:
  beats/repos/community-x86_64/PKGBUILD
  beats/repos/community-x86_64/auditbeat.install
  beats/repos/community-x86_64/auditbeat.service
  beats/repos/community-x86_64/filebeat.service
  beats/repos/community-x86_64/golang-crypto.patch
  beats/repos/community-x86_64/heartbeat.service
  beats/repos/community-x86_64/journalbeat.service
  beats/repos/community-x86_64/metricbeat.service
  beats/repos/community-x86_64/packetbeat.service
  beats/repos/community-x86_64/tmpfile.conf

-+
 PKGBUILD|  346 +-
 auditbeat.install   |   12 -
 auditbeat.service   |   22 +--
 filebeat.service|   22 +--
 golang-crypto.patch |  262 ++---
 heartbeat.service   |   22 +--
 journalbeat.service |   24 +--
 metricbeat.service  |   22 +--
 packetbeat.service  |   22 +--
 tmpfile.conf|4 
 10 files changed, 379 insertions(+), 379 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-01 09:32:30 UTC (rev 496383)
+++ PKGBUILD2019-08-01 09:32:53 UTC (rev 496384)
@@ -1,173 +0,0 @@
-# Maintainer: Massimiliano Torromeo 
-# Contributor: Tyler Langlois 
-
-pkgbase=beats
-pkgname=(filebeat packetbeat metricbeat heartbeat-elastic auditbeat 
journalbeat)
-pkgver=7.2.0
-pkgrel=1
-pkgdesc='Data shippers for Elasticsearch'
-arch=('x86_64')
-url='https://www.elastic.co/products/beats'
-license=('Apache')
-depends=('glibc')
-makedepends=('go-pie' 'git' 'libpcap' 'rsync' 'python2-virtualenv' 'audit')
-optdepends=('elasticsearch: for standalone installation'
-'python: for migration script')
-source=("https://github.com/elastic/beats/archive/v$pkgver/beats-$pkgver.tar.gz;
-"filebeat.service"
-"packetbeat.service"
-"metricbeat.service"
-"heartbeat.service"
-"auditbeat.service"
-"journalbeat.service"
-"tmpfile.conf")
-sha256sums=('6a6bfd7f4583677fa542191f6918dd5c5f8c64d5c80f08733ab96f4ed92619be'
-'66d9061841e8b406135383e45d6db9ce6261b2bb08aa28224e3ed689e6e0efec'
-'9f4e33fc768d3500fa3428dcbfda241c6473a2cae8cc4dbadf8f61ca9f2bbec5'
-'26b123acd96808162a7f827ce6f0e9669140c2665fc28d76583a15996fbf853d'
-'212cb4ab5a02d7078025f7d1f50f48e5caa25debce0852cf68cd8f89ed0a8d09'
-'b7f1c61950f21c7fab31166c68d4a9e5027f0c5bcc40a97913d6d89eaf643b85'
-'57d2f5bf75b4b5214065ba408c98ec941fb0042f19a623add7f4396d640225ba'
-'f29361772f23ec42bb15b5e0ca7e93f17fe00d31cf08a9e2c0d0ab27f2277bbc')
-
-prepare() {
-mkdir -p "$srcdir/bin"
-ln -s /usr/bin/python2 "$srcdir/bin/python"
-ln -s /usr/bin/pip2 "$srcdir/bin/pip"
-ln -s /usr/bin/virtualenv2 "$srcdir/bin/virtualenv"
-
-export GOPATH="$srcdir"/gopath
-mkdir -p "$GOPATH"
-go get golang.org/x/sys/cpu
-
-cd "$srcdir"/beats-$pkgver
-
-# Avoid installing extraneous configs
-sed '/[- ]win/d ; /[- ]darwin/d ; /[- ]binary/d' -i */Makefile
-
-# Install the Linux config as default
-sed -r 's#/([a-z]+)-linux.yml#/\1.yml#' -i */Makefile
-
-# Perform some timestomping to avoid make warnings
-LANG=C _t="$(date -r Makefile +'%Y-%m-%d %k:%M:%S')"
-touch -m -d "$_t" */Makefile
-
-# Use version instead of commit id
-sed -ri "s/^COMMIT_ID=.*/COMMIT_ID=$pkgver/" libbeat/scripts/Makefile
-
-# Workaround to place extracted release into GOPATH
-mkdir -p "$GOPATH"/src/github.com/elastic
-ln -sf ../../../../beats-$pkgver "$GOPATH"/src/github.com/elastic/beats
-}
-
-build() {
-export GOPATH="$srcdir"/gopath
-export PATH="$GOPATH/bin:$srcdir/bin:$PATH"
-
-cd "$GOPATH"/src/github.com/elastic/beats
-git init # git root required by one of the build scripts
-
-cd libbeat
-make update
-
-

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

2019-08-01 Thread Felix Yan via arch-commits
Date: Thursday, August 1, 2019 @ 09:32:18
  Author: felixonmars
Revision: 496382

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-xss-sanitize/repos/community-staging-x86_64/
  haskell-xss-sanitize/repos/community-staging-x86_64/PKGBUILD
(from rev 496381, haskell-xss-sanitize/trunk/PKGBUILD)

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

Copied: haskell-xss-sanitize/repos/community-staging-x86_64/PKGBUILD (from rev 
496381, haskell-xss-sanitize/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-01 09:32:18 UTC (rev 496382)
@@ -0,0 +1,40 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=xss-sanitize
+pkgname=haskell-xss-sanitize
+pkgver=0.3.6
+pkgrel=36
+pkgdesc="sanitize untrusted HTML to prevent XSS attacks"
+url="https://github.com/yesodweb/haskell-xss-sanitize;
+license=("custom:BSD2")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-attoparsec" "haskell-css-text" 
"haskell-network-uri" "haskell-tagsoup"
+ "haskell-utf8-string")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('8d038d807b7fa01a65f4b73d135c87ab75385f4c91ce174b332cd5fd1dc1ebdec26b0c5713cf3f68c27351e19e099815d1b530af3ecb7e4c45e71fec4ae12b4c')
+
+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"
+}


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

2019-08-01 Thread Massimiliano Torromeo via arch-commits
Date: Thursday, August 1, 2019 @ 09:32:30
  Author: mtorromeo
Revision: 496383

upgpkg: beats 7.3.0-1

Modified:
  beats/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-01 09:32:18 UTC (rev 496382)
+++ PKGBUILD2019-08-01 09:32:30 UTC (rev 496383)
@@ -3,7 +3,7 @@
 
 pkgbase=beats
 pkgname=(filebeat packetbeat metricbeat heartbeat-elastic auditbeat 
journalbeat)
-pkgver=7.2.0
+pkgver=7.3.0
 pkgrel=1
 pkgdesc='Data shippers for Elasticsearch'
 arch=('x86_64')
@@ -21,7 +21,7 @@
 "auditbeat.service"
 "journalbeat.service"
 "tmpfile.conf")
-sha256sums=('6a6bfd7f4583677fa542191f6918dd5c5f8c64d5c80f08733ab96f4ed92619be'
+sha256sums=('26d83a31acc51dbadbd06f6486ab49dce2dc7fbd4644d34fa243086b5591160b'
 '66d9061841e8b406135383e45d6db9ce6261b2bb08aa28224e3ed689e6e0efec'
 '9f4e33fc768d3500fa3428dcbfda241c6473a2cae8cc4dbadf8f61ca9f2bbec5'
 '26b123acd96808162a7f827ce6f0e9669140c2665fc28d76583a15996fbf853d'


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

2019-08-01 Thread Felix Yan via arch-commits
Date: Thursday, August 1, 2019 @ 09:33:28
  Author: felixonmars
Revision: 496385

upgpkg: haskell-cheapskate 0.1.1.1-75

rebuild with splitmix 0.0.3

Modified:
  haskell-cheapskate/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-01 09:32:53 UTC (rev 496384)
+++ PKGBUILD2019-08-01 09:33:28 UTC (rev 496385)
@@ -4,7 +4,7 @@
 _hkgname=cheapskate
 pkgname=haskell-cheapskate
 pkgver=0.1.1.1
-pkgrel=74
+pkgrel=75
 pkgdesc="Experimental markdown processor."
 url="https://github.com/jgm/cheapskate;
 license=("BSD")


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

2019-08-01 Thread Felix Yan via arch-commits
Date: Thursday, August 1, 2019 @ 09:38:59
  Author: felixonmars
Revision: 496397

upgpkg: haskell-hpack 0.31.2-49

rebuild with splitmix 0.0.3

Modified:
  haskell-hpack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-01 09:37:13 UTC (rev 496396)
+++ PKGBUILD2019-08-01 09:38:59 UTC (rev 496397)
@@ -5,7 +5,7 @@
 pkgname=haskell-hpack
 _hkgname=hpack
 pkgver=0.31.2
-pkgrel=48
+pkgrel=49
 pkgdesc="A modern format for Haskell packages"
 url="https://github.com/sol/hpack#readme;
 license=("MIT")


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

2019-08-01 Thread Felix Yan via arch-commits
Date: Thursday, August 1, 2019 @ 09:39:09
  Author: felixonmars
Revision: 496398

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-hpack/repos/community-staging-x86_64/PKGBUILD (from rev 496397, 
haskell-hpack/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-01 09:39:09 UTC (rev 496398)
@@ -0,0 +1,47 @@
+# Maintainer: Felix Yan 
+# Contributor: Daniel Nagy 
+# Contributor: Daniel Micay 
+
+pkgname=haskell-hpack
+_hkgname=hpack
+pkgver=0.31.2
+pkgrel=49
+pkgdesc="A modern format for Haskell packages"
+url="https://github.com/sol/hpack#readme;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-bifunctors' 'haskell-cryptonite' 
'haskell-glob'
+ 'haskell-http-client' 'haskell-http-client-tls' 'haskell-http-types'
+ 'haskell-infer-license' 'haskell-scientific' 
'haskell-unordered-containers'
+ 'haskell-vector' 'haskell-yaml')
+makedepends=('ghc' 'haskell-hunit' 'haskell-quickcheck' 'haskell-hspec' 
'haskell-interpolate'
+ 'haskell-mockery' 'haskell-temporary')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-${pkgver}.tar.gz;)
+sha512sums=('8476463d34a4f110362e09e2b64fa091776c8742b217be26de8cddd932ae850eb63d2ba241021e4f2a1528a10b5852bba7bccdb8b7248e6ced534d45a6c39542')
+
+build() {
+  cd $_hkgname-$pkgver
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+  runhaskell Setup build
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd $_hkgname-$pkgver
+  runhaskell Setup test || warning "https://github.com/sol/hpack/issues/358;
+}
+
+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-persistent/repos (2 files)

2019-08-01 Thread Felix Yan via arch-commits
Date: Thursday, August 1, 2019 @ 09:46:47
  Author: felixonmars
Revision: 496410

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-yesod-persistent/repos/community-staging-x86_64/PKGBUILD (from 
rev 496409, haskell-yesod-persistent/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-01 09:46:47 UTC (rev 496410)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-persistent
+pkgname=haskell-yesod-persistent
+pkgver=1.6.0.2
+pkgrel=64
+pkgdesc="Some helpers for using Persistent from Yesod."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-blaze-builder" "haskell-conduit" 
"haskell-persistent"
+ "haskell-persistent-template" "haskell-resource-pool" 
"haskell-resourcet"
+ "haskell-yesod-core")
+makedepends=('ghc' 'haskell-hspec' 'haskell-wai-extra' 
'haskell-persistent-sqlite')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('8014d1bcb5101bfad61911377e4122b07f41b4e98bd20c8f7a205d151caa73dbe4b1cc526f1f3d4bb2323920b290f080c77649e0f368ca017cd50389a7f7120c')
+
+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-persistent/trunk (PKGBUILD)

2019-08-01 Thread Felix Yan via arch-commits
Date: Thursday, August 1, 2019 @ 09:46:36
  Author: felixonmars
Revision: 496409

upgpkg: haskell-yesod-persistent 1.6.0.2-64

rebuild with splitmix 0.0.3

Modified:
  haskell-yesod-persistent/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-01 09:45:26 UTC (rev 496408)
+++ PKGBUILD2019-08-01 09:46:36 UTC (rev 496409)
@@ -4,7 +4,7 @@
 _hkgname=yesod-persistent
 pkgname=haskell-yesod-persistent
 pkgver=1.6.0.2
-pkgrel=63
+pkgrel=64
 pkgdesc="Some helpers for using Persistent from Yesod."
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2019-08-01 Thread Felix Yan via arch-commits
Date: Thursday, August 1, 2019 @ 09:54:13
  Author: felixonmars
Revision: 496419

upgpkg: haskell-yesod-static 1.6.0.1-164

rebuild with splitmix 0.0.3

Modified:
  haskell-yesod-static/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-01 09:52:50 UTC (rev 496418)
+++ PKGBUILD2019-08-01 09:54:13 UTC (rev 496419)
@@ -4,7 +4,7 @@
 _hkgname=yesod-static
 pkgname=haskell-yesod-static
 pkgver=1.6.0.1
-pkgrel=163
+pkgrel=164
 pkgdesc="Static file serving subsite for Yesod Web Framework."
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2019-08-01 Thread Felix Yan via arch-commits
Date: Thursday, August 1, 2019 @ 10:06:21
  Author: felixonmars
Revision: 496425

upgpkg: cabal-install 2.4.0.0-119

rebuild with splitmix 0.0.3

Modified:
  cabal-install/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-01 10:02:47 UTC (rev 496424)
+++ PKGBUILD2019-08-01 10:06:21 UTC (rev 496425)
@@ -5,7 +5,7 @@
 
 pkgname=cabal-install
 pkgver=2.4.0.0
-pkgrel=118
+pkgrel=119
 pkgdesc="The command-line interface for Cabal and Hackage."
 url="https://hackage.haskell.org/package/cabal-install;
 license=('BSD')


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

2019-08-01 Thread Felix Yan via arch-commits
Date: Thursday, August 1, 2019 @ 10:06:32
  Author: felixonmars
Revision: 496426

archrelease: copy trunk to community-staging-x86_64

Added:
  cabal-install/repos/community-staging-x86_64/
  cabal-install/repos/community-staging-x86_64/PKGBUILD
(from rev 496425, cabal-install/trunk/PKGBUILD)

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

Copied: cabal-install/repos/community-staging-x86_64/PKGBUILD (from rev 496425, 
cabal-install/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-01 10:06:32 UTC (rev 496426)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+# Contributor: Thomas Dziedzic 
+# Contributor: Vesa Kaihlavirta 
+# Contributor: Arch Haskell Team 
+
+pkgname=cabal-install
+pkgver=2.4.0.0
+pkgrel=119
+pkgdesc="The command-line interface for Cabal and Hackage."
+url="https://hackage.haskell.org/package/cabal-install;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-async' 'haskell-base16-bytestring' 
'haskell-cryptohash-sha256'
+ 'haskell-echo' 'haskell-edit-distance' 'haskell-hackage-security' 
'haskell-hashable'
+ 'haskell-http' 'haskell-network' 'haskell-network-uri' 
'haskell-random' 'haskell-resolv'
+ 'haskell-tar' 'haskell-zlib' 'haskell-zip-archive')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/package/cabal-install-${pkgver}/cabal-install-${pkgver}.tar.gz;)
+sha512sums=('caf49ec35d5665164b76db3a6219c0409243fb80fd7a740a91933732fbb26fc3efef88ddc3d769a76d0f76811ea83a6a7effdab5ad8264da808d4469c9faf125')
+
+prepare() {
+  cd $pkgname-$pkgver
+  sed -i -e 's/< *0.4/<1/' -e 's/< *2.8/<4/' $pkgname.cabal
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  runhaskell Setup configure -O --prefix=/usr --enable-executable-dynamic 
--disable-library-vanilla \
+--docdir="/usr/share/doc/${pkgname}"
+  runhaskell Setup build
+}
+
+package() {
+  cd $pkgname-$pkgver
+  runhaskell Setup copy --destdir="${pkgdir}"
+
+  install -Dm644 LICENSE \
+"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+
+  install -Dm644 bash-completion/cabal \
+"${pkgdir}/usr/share/bash-completion/completions/cabal"
+}


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

2019-08-01 Thread Felix Yan via arch-commits
Date: Thursday, August 1, 2019 @ 10:48:12
  Author: felixonmars
Revision: 496429

upgpkg: haskell-pantry 0.1.1.1-2

rebuild with splitmix 0.0.3

Modified:
  haskell-pantry/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-01 10:17:31 UTC (rev 496428)
+++ PKGBUILD2019-08-01 10:48:12 UTC (rev 496429)
@@ -3,7 +3,7 @@
 _hkgname=pantry
 pkgname=haskell-pantry
 pkgver=0.1.1.1
-pkgrel=1
+pkgrel=2
 pkgdesc="Content addressable Haskell package management"
 url="https://github.com/commercialhaskell/pantry;
 license=('BSD')


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

2019-08-01 Thread Felix Yan via arch-commits
Date: Thursday, August 1, 2019 @ 10:49:19
  Author: felixonmars
Revision: 496431

upgpkg: hasktags 0.71.2-40

rebuild with splitmix 0.0.3

Modified:
  hasktags/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-01 10:48:22 UTC (rev 496430)
+++ PKGBUILD2019-08-01 10:49:19 UTC (rev 496431)
@@ -3,7 +3,7 @@
 
 pkgname=hasktags
 pkgver=0.71.2
-pkgrel=39
+pkgrel=40
 pkgdesc="Produces ctags \"tags\" and etags \"TAGS\" files for Haskell programs"
 url="https://github.com/MarcWeber/hasktags;
 license=("BSD")


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

2019-08-01 Thread Felix Yan via arch-commits
Date: Thursday, August 1, 2019 @ 10:49:29
  Author: felixonmars
Revision: 496432

archrelease: copy trunk to community-staging-x86_64

Added:
  hasktags/repos/community-staging-x86_64/
  hasktags/repos/community-staging-x86_64/PKGBUILD
(from rev 496431, hasktags/trunk/PKGBUILD)

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

Copied: hasktags/repos/community-staging-x86_64/PKGBUILD (from rev 496431, 
hasktags/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-01 10:49:29 UTC (rev 496432)
@@ -0,0 +1,49 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hasktags
+pkgver=0.71.2
+pkgrel=40
+pkgdesc="Produces ctags \"tags\" and etags \"TAGS\" files for Haskell programs"
+url="https://github.com/MarcWeber/hasktags;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-json' 'haskell-microlens-platform' 
'haskell-optparse-applicative'
+ 'haskell-utf8-string')
+makedepends=('ghc' 'haskell-hunit')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('649f8e74202dc08b8c37535c2fb0fefe11c55bc9de300093b20e7b224fa6daccbc938988ef810a479e745b53270215fc847caa6e0b06310a7d1c7493fc37b1ce')
+
+prepare() {
+cd $pkgname-$pkgver
+sed -i 's/< *0.4/<1/' $pkgname.cabal
+}
+
+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 \
+-f-debug
+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 || warning "Tests failed"
+}
+
+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}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-08-01 Thread Felix Yan via arch-commits
Date: Thursday, August 1, 2019 @ 06:00:46
  Author: felixonmars
Revision: 496136

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-foldl/repos/community-staging-x86_64/PKGBUILD (from rev 496135, 
haskell-foldl/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-01 06:00:46 UTC (rev 496136)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=foldl
+pkgname=haskell-foldl
+pkgver=1.4.5
+pkgrel=43
+pkgdesc="Composable, streaming, and efficient left folds"
+url="https://hackage.haskell.org/package/${_hkgname};
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-comonad' 'haskell-contravariant' 
'haskell-mwc-random'
+ 'haskell-primitive' 'haskell-profunctors' 'haskell-semigroupoids'
+ 'haskell-unordered-containers' 'haskell-vector' 
'haskell-vector-builder')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('adc718045f344206bb2e38b92610e643c61a470e294b73331adb58ebe6a3d33f2614634a1750c7e049b3f8def761a43232baee4633cc6bb09b25b7564f3fe1b2')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i -e '/semigroups/d' -e 's/<.*0.14/<1/' -e 's/< *5.4/<6/' 
$_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-08-01 Thread Felix Yan via arch-commits
Date: Thursday, August 1, 2019 @ 06:00:35
  Author: felixonmars
Revision: 496135

upgpkg: haskell-foldl 1.4.5-43

rebuild with splitmix 0.0.3

Modified:
  haskell-foldl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-01 05:59:39 UTC (rev 496134)
+++ PKGBUILD2019-08-01 06:00:35 UTC (rev 496135)
@@ -4,7 +4,7 @@
 _hkgname=foldl
 pkgname=haskell-foldl
 pkgver=1.4.5
-pkgrel=42
+pkgrel=43
 pkgdesc="Composable, streaming, and efficient left folds"
 url="https://hackage.haskell.org/package/${_hkgname};
 license=("BSD")


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

2019-08-01 Thread Felix Yan via arch-commits
Date: Thursday, August 1, 2019 @ 06:01:48
  Author: felixonmars
Revision: 496137

upgpkg: haskell-free 5.1.1-18

rebuild with splitmix 0.0.3

Modified:
  haskell-free/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-01 06:00:46 UTC (rev 496136)
+++ PKGBUILD2019-08-01 06:01:48 UTC (rev 496137)
@@ -4,7 +4,7 @@
 _hkgname=free
 pkgname=haskell-free
 pkgver=5.1.1
-pkgrel=17
+pkgrel=18
 pkgdesc="Monads for free"
 url="https://github.com/ekmett/free/;
 license=("BSD")


[arch-commits] Commit in haskell-clash-prelude/repos (3 files)

2019-08-01 Thread Felix Yan via arch-commits
Date: Thursday, August 1, 2019 @ 06:12:56
  Author: felixonmars
Revision: 496152

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-clash-prelude/repos/community-staging-x86_64/
  haskell-clash-prelude/repos/community-staging-x86_64/PKGBUILD
(from rev 496151, haskell-clash-prelude/trunk/PKGBUILD)
  haskell-clash-prelude/repos/community-staging-x86_64/ghc-8.6.patch
(from rev 496151, haskell-clash-prelude/trunk/ghc-8.6.patch)

---+
 PKGBUILD  |   54 +
 ghc-8.6.patch |  324 
 2 files changed, 378 insertions(+)

Copied: haskell-clash-prelude/repos/community-staging-x86_64/PKGBUILD (from rev 
496151, haskell-clash-prelude/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-01 06:12:56 UTC (rev 496152)
@@ -0,0 +1,54 @@
+# Maintainer: Felix Yan 
+
+_hkgname=clash-prelude
+pkgname=haskell-clash-prelude
+pkgver=0.99.3
+pkgrel=57
+pkgdesc="CAES Language for Synchronous Hardware - Prelude library"
+url="https://github.com/clash-lang/clash-prelude;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-bifunctors' 'haskell-constraints' 
'haskell-data-binary-ieee754'
+ 'haskell-data-default' 'haskell-ghc-typelits-extra' 
'haskell-ghc-typelits-knownnat'
+ 'haskell-ghc-typelits-natnormalise' 'haskell-half' 'haskell-lens' 
'haskell-quickcheck'
+ 'haskell-reflection' 'haskell-singletons' 'haskell-vector')
+makedepends=('ghc' 'haskell-doctest')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz
+ghc-8.6.patch)
+sha512sums=('9eb9dc5647a5dc61c9f0b5a9b880ae102e6f26783db0c4b29b4898705c9679c01d6cb96db0b206e327172743189a984299662c91209429f36c1eeb7d1d319bd1'
+
'52fcf8c2c701d724b55f8dc3a99e2842d26088ce36ae04dea02b104366255a268c83a6c02f1282f4b51795cd5afb3cb8c66d5c7348dc9ee3f149338df7776b87')
+
+prepare() {
+cd $_hkgname-$pkgver
+patch -p1 -i ../ghc-8.6.patch
+sed -i -e 's/< *0.3/<1/' -e 's/< *2.14/<3/' -e 's/< *0.6/<1/' -e 's/< 
*2.12/<3/' -e 's/< *0.10/<1/' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --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
+# TODO
+runhaskell Setup test || warning "Tests failed"
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: haskell-clash-prelude/repos/community-staging-x86_64/ghc-8.6.patch 
(from rev 496151, haskell-clash-prelude/trunk/ghc-8.6.patch)
===
--- community-staging-x86_64/ghc-8.6.patch  (rev 0)
+++ community-staging-x86_64/ghc-8.6.patch  2019-08-01 06:12:56 UTC (rev 
496152)
@@ -0,0 +1,324 @@
+From d2f9a0081c4355fdbd1062f3b15fafb3a3572cdc Mon Sep 17 00:00:00 2001
+From: Christiaan Baaij 
+Date: Thu, 26 Jul 2018 16:55:48 +0200
+Subject: [PATCH] Fixes to build on GHC 8.6
+
+---
+ cabal.project |  9 -
+ clash-prelude.cabal   |  4 ++--
+ src/Clash/Explicit/DDR.hs |  4 
+ src/Clash/Intel/DDR.hs|  4 
+ src/Clash/Promoted/Nat.hs |  9 +++--
+ src/Clash/Sized/Internal/Index.hs |  4 
+ src/Clash/Sized/RTree.hs  | 23 ++-
+ src/Clash/Sized/Vector.hs | 13 +
+ src/Clash/Xilinx/DDR.hs   |  4 
+ 9 files changed, 56 insertions(+), 18 deletions(-)
+
+diff --git a/src/Clash/Explicit/DDR.hs b/src/Clash/Explicit/DDR.hs
+index a22d925..96a9877 100644
+--- a/src/Clash/Explicit/DDR.hs
 b/src/Clash/Explicit/DDR.hs
+@@ -17,11 +17,15 @@ dedicated hardware resources use the functions from 
"Clash.Intel.DDR"
+ or "Clash.Xilinx.DDR".
+ -}
+ 
++{-# LANGUAGE CPP #-}
+ {-# LANGUAGE DataKinds   #-}
+ {-# LANGUAGE MagicHash   #-}
+ {-# LANGUAGE ScopedTypeVariables #-}
+ {-# LANGUAGE TypeFamilies#-}
+ {-# LANGUAGE TypeOperators   #-}
++#if __GLASGOW_HASKELL__ >= 806
++{-# 

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

2019-08-01 Thread Felix Yan via arch-commits
Date: Thursday, August 1, 2019 @ 06:13:49
  Author: felixonmars
Revision: 496153

upgpkg: haskell-concise 0.1.0.1-114

rebuild with splitmix 0.0.3

Modified:
  haskell-concise/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-01 06:12:56 UTC (rev 496152)
+++ PKGBUILD2019-08-01 06:13:49 UTC (rev 496153)
@@ -4,7 +4,7 @@
 _hkgname=concise
 pkgname=haskell-concise
 pkgver=0.1.0.1
-pkgrel=113
+pkgrel=114
 pkgdesc="Utilities for Control.Lens.Cons"
 url="https://github.com/frasertweedal/hs-concise;
 license=("BSD")


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

2019-08-01 Thread Felix Yan via arch-commits
Date: Thursday, August 1, 2019 @ 06:12:42
  Author: felixonmars
Revision: 496151

upgpkg: haskell-clash-prelude 0.99.3-57

rebuild with splitmix 0.0.3

Modified:
  haskell-clash-prelude/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-01 06:09:35 UTC (rev 496150)
+++ PKGBUILD2019-08-01 06:12:42 UTC (rev 496151)
@@ -3,7 +3,7 @@
 _hkgname=clash-prelude
 pkgname=haskell-clash-prelude
 pkgver=0.99.3
-pkgrel=56
+pkgrel=57
 pkgdesc="CAES Language for Synchronous Hardware - Prelude library"
 url="https://github.com/clash-lang/clash-prelude;
 license=('BSD')


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

2019-08-01 Thread Felix Yan via arch-commits
Date: Thursday, August 1, 2019 @ 06:24:08
  Author: felixonmars
Revision: 496170

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-pointed/repos/community-staging-x86_64/PKGBUILD (from rev 
496169, haskell-pointed/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-01 06:24:08 UTC (rev 496170)
@@ -0,0 +1,47 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=pointed
+pkgname=haskell-pointed
+pkgver=5.0.1
+pkgrel=98
+pkgdesc="Pointed and copointed data"
+url="https://github.com/ekmett/pointed/;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-comonad' 'haskell-data-default-class' 
'haskell-hashable'
+ 'haskell-kan-extensions' 'haskell-semigroupoids' 'haskell-tagged'
+ 'haskell-transformers-compat' 'haskell-unordered-containers')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('65958628c983a2c2866b1a1a615c7a7f2f516068c667ce9b93f4214b863632b40eba4915d49e07388c52ced8868bb308b24e7b38a6f50563c68954696748c99b')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i -e '/semigroups/d' -e 's/< *0.6/<1/' -e 's/< *2.5/<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 \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fcomonad -fcontainers -fkan-extensions -fsemigroupoids 
-fsemigroups \
+-fstm -ftagged -ftransformers -funordered-containers
+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"
+}


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

2019-08-01 Thread Felix Yan via arch-commits
Date: Thursday, August 1, 2019 @ 06:23:58
  Author: felixonmars
Revision: 496169

upgpkg: haskell-pointed 5.0.1-98

rebuild with splitmix 0.0.3

Modified:
  haskell-pointed/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-01 06:23:18 UTC (rev 496168)
+++ PKGBUILD2019-08-01 06:23:58 UTC (rev 496169)
@@ -4,7 +4,7 @@
 _hkgname=pointed
 pkgname=haskell-pointed
 pkgver=5.0.1
-pkgrel=97
+pkgrel=98
 pkgdesc="Pointed and copointed data"
 url="https://github.com/ekmett/pointed/;
 license=("BSD")


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

2019-08-01 Thread Felix Yan via arch-commits
Date: Thursday, August 1, 2019 @ 06:32:51
  Author: felixonmars
Revision: 496184

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-sandi/repos/community-staging-x86_64/PKGBUILD (from rev 496183, 
haskell-sandi/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-01 06:32:51 UTC (rev 496184)
@@ -0,0 +1,50 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=sandi
+pkgname=haskell-sandi
+pkgver=0.5
+pkgrel=34
+pkgdesc="Data encoding library"
+url="https://hackage.haskell.org/package/sandi;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-conduit' 'haskell-exceptions')
+makedepends=('ghc' 'haskell-tasty' 'haskell-tasty-hunit' 
'haskell-tasty-quickcheck'
+ 'haskell-tasty-th')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('8abff3496d0d3f082f12416eea3189e06d1663fe78d996159396ab944389b2a816853c0191edced3b176fc506dac60e9ce84347ecaf2c255e5ec0d6b1590c012')
+
+prepare() {
+cd $_hkgname-$pkgver
+echo -e "import Distribution.Simple\nmain = defaultMain" > Setup.hs
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fwith-conduit
+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-sandi/trunk (PKGBUILD)

2019-08-01 Thread Felix Yan via arch-commits
Date: Thursday, August 1, 2019 @ 06:32:40
  Author: felixonmars
Revision: 496183

upgpkg: haskell-sandi 0.5-34

rebuild with splitmix 0.0.3

Modified:
  haskell-sandi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-01 06:31:48 UTC (rev 496182)
+++ PKGBUILD2019-08-01 06:32:40 UTC (rev 496183)
@@ -4,7 +4,7 @@
 _hkgname=sandi
 pkgname=haskell-sandi
 pkgver=0.5
-pkgrel=33
+pkgrel=34
 pkgdesc="Data encoding library"
 url="https://hackage.haskell.org/package/sandi;
 license=("BSD")


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

2019-08-01 Thread Felix Yan via arch-commits
Date: Thursday, August 1, 2019 @ 06:31:48
  Author: felixonmars
Revision: 496182

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-postgresql-binary/repos/community-staging-x86_64/
  haskell-postgresql-binary/repos/community-staging-x86_64/PKGBUILD
(from rev 496181, haskell-postgresql-binary/trunk/PKGBUILD)

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

Copied: haskell-postgresql-binary/repos/community-staging-x86_64/PKGBUILD (from 
rev 496181, haskell-postgresql-binary/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-01 06:31:48 UTC (rev 496182)
@@ -0,0 +1,53 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=postgresql-binary
+pkgname=haskell-postgresql-binary
+pkgver=0.12.1.2
+pkgrel=56
+pkgdesc="Encoders and decoders for the PostgreSQL's binary format"
+url="https://github.com/nikita-volkov/postgresql-binary;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-base-prelude' 
'haskell-binary-parser'
+ 'haskell-bytestring-strict-builder' 'haskell-loch-th' 
'haskell-network-ip'
+ 'haskell-placeholders' 'haskell-scientific' 
'haskell-unordered-containers'
+ 'haskell-uuid' 'haskell-vector')
+makedepends=('ghc' 'haskell-postgresql-libpq' 'haskell-tasty' 
'haskell-tasty-quickcheck'
+ 'haskell-tasty-hunit' 'haskell-quickcheck' 
'haskell-quickcheck-instances'
+ 'haskell-json-ast' 'haskell-conversion' 
'haskell-conversion-bytestring'
+ 'haskell-conversion-text' 'haskell-rerebase' 'pifpaf' 
'postgresql')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('adb64905b689cd7422894563b0172094ee92e1e6068ddb726b87ac945a32f7e0be47b10996d436928810afe59dccb7f2d4b52dffde5903fadb588aa0ad35fc38')
+
+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
+
+eval $(pifpaf run postgresql --host 127.0.0.1 --port 5432)
+createuser -s postgres
+runhaskell Setup test
+pifpaf_stop
+}
+
+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-postgresql-binary/trunk (PKGBUILD)

2019-08-01 Thread Felix Yan via arch-commits
Date: Thursday, August 1, 2019 @ 06:31:38
  Author: felixonmars
Revision: 496181

upgpkg: haskell-postgresql-binary 0.12.1.2-56

rebuild with splitmix 0.0.3

Modified:
  haskell-postgresql-binary/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-01 06:29:47 UTC (rev 496180)
+++ PKGBUILD2019-08-01 06:31:38 UTC (rev 496181)
@@ -4,7 +4,7 @@
 _hkgname=postgresql-binary
 pkgname=haskell-postgresql-binary
 pkgver=0.12.1.2
-pkgrel=55
+pkgrel=56
 pkgdesc="Encoders and decoders for the PostgreSQL's binary format"
 url="https://github.com/nikita-volkov/postgresql-binary;
 license=("MIT")


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

2019-08-01 Thread Felix Yan via arch-commits
Date: Thursday, August 1, 2019 @ 07:27:52
  Author: felixonmars
Revision: 496206

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-cryptohash-conduit/repos/community-staging-x86_64/PKGBUILD 
(from rev 496205, haskell-cryptohash-conduit/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-01 07:27:52 UTC (rev 496206)
@@ -0,0 +1,39 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=cryptohash-conduit
+pkgname=haskell-cryptohash-conduit
+pkgver=0.1.1
+pkgrel=291
+pkgdesc="cryptohash conduit"
+url="https://github.com/vincenthz/hs-cryptohash-conduit;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-conduit" "haskell-conduit-extra" 
"haskell-cryptohash"
+ "haskell-resourcet")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('6382a05b35bae34b53fd1ad6d897c25ca149ed852360c8f775587efcd3c29e45ff854f96ddbc9b446e04a4dd5698b1f5e2af754345f7d5af8f587b73b57fdec0')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-08-01 Thread Felix Yan via arch-commits
Date: Thursday, August 1, 2019 @ 07:26:38
  Author: felixonmars
Revision: 496203

upgpkg: haskell-conduit-extra 1.3.4-2

rebuild with splitmix 0.0.3

Modified:
  haskell-conduit-extra/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-01 07:25:13 UTC (rev 496202)
+++ PKGBUILD2019-08-01 07:26:38 UTC (rev 496203)
@@ -4,7 +4,7 @@
 _hkgname=conduit-extra
 pkgname=haskell-conduit-extra
 pkgver=1.3.4
-pkgrel=1
+pkgrel=2
 pkgdesc="Batteries included conduit: adapters for common libraries."
 url="https://github.com/snoyberg/conduit;
 license=("MIT")


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

2019-08-01 Thread Felix Yan via arch-commits
Date: Thursday, August 1, 2019 @ 07:27:38
  Author: felixonmars
Revision: 496205

upgpkg: haskell-cryptohash-conduit 0.1.1-291

rebuild with splitmix 0.0.3

Modified:
  haskell-cryptohash-conduit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-01 07:26:49 UTC (rev 496204)
+++ PKGBUILD2019-08-01 07:27:38 UTC (rev 496205)
@@ -4,7 +4,7 @@
 _hkgname=cryptohash-conduit
 pkgname=haskell-cryptohash-conduit
 pkgver=0.1.1
-pkgrel=290
+pkgrel=291
 pkgdesc="cryptohash conduit"
 url="https://github.com/vincenthz/hs-cryptohash-conduit;
 license=("BSD")


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

2019-08-01 Thread Felix Yan via arch-commits
Date: Thursday, August 1, 2019 @ 07:28:40
  Author: felixonmars
Revision: 496207

upgpkg: haskell-cryptonite-conduit 0.2.2-185

rebuild with splitmix 0.0.3

Modified:
  haskell-cryptonite-conduit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-01 07:27:52 UTC (rev 496206)
+++ PKGBUILD2019-08-01 07:28:40 UTC (rev 496207)
@@ -3,7 +3,7 @@
 _hkgname=cryptonite-conduit
 pkgname=haskell-cryptonite-conduit
 pkgver=0.2.2
-pkgrel=184
+pkgrel=185
 pkgdesc="Conduit bridge for cryptonite"
 url="https://github.com/haskell-crypto/cryptonite-conduit;
 license=('BSD')


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

2019-08-01 Thread Felix Yan via arch-commits
Date: Thursday, August 1, 2019 @ 07:37:15
  Author: felixonmars
Revision: 496218

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-swagger2/repos/community-staging-x86_64/
  haskell-swagger2/repos/community-staging-x86_64/PKGBUILD
(from rev 496217, haskell-swagger2/trunk/PKGBUILD)
  haskell-swagger2/repos/community-staging-x86_64/generics-sop-0.5.patch
(from rev 496217, haskell-swagger2/trunk/generics-sop-0.5.patch)

+
 PKGBUILD   |   57 +
 generics-sop-0.5.patch |   59 +++
 2 files changed, 116 insertions(+)

Copied: haskell-swagger2/repos/community-staging-x86_64/PKGBUILD (from rev 
496217, haskell-swagger2/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-01 07:37:15 UTC (rev 496218)
@@ -0,0 +1,57 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=swagger2
+pkgname=haskell-swagger2
+pkgver=2.3.1.1
+pkgrel=47
+pkgdesc="Swagger 2.0 data model"
+url="https://github.com/GetShopTV/swagger2;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-base-compat-batteries' 
'haskell-cookie'
+ 'haskell-hashable' 'haskell-generics-sop' 'haskell-http-media'
+ 'haskell-insert-ordered-containers' 'haskell-lens' 'haskell-network' 
'haskell-quickcheck'
+ 'haskell-scientific' 'haskell-transformers-compat' 
'haskell-unordered-containers'
+ 'haskell-vector' 'haskell-uuid-types')
+makedepends=('ghc' 'haskell-hspec' 'haskell-hunit' 
'haskell-quickcheck-instances'
+ 'haskell-hspec-discover' 'haskell-doctest' 
'haskell-cabal-doctest' 'haskell-glob'
+ 'haskell-utf8-string')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;
+generics-sop-0.5.patch)
+sha512sums=('1834e75cc6c8ff8287605e93d2b4d665b7d8de7e7e00f6537d25e0f54934c85e5431e5f2f1beb5264382c4b81f5ed19cc2b7af1f9323ebee9502e19d73d49fc1'
+
'8f1b74df57a090f5cb1cfb9551288dc6ade326c486ebb432767bfb1a0571ff1104269b19b4e2fbed8c5427cd432b3d0c1d18adb19f971b5fd441affbc88c27b6')
+
+prepare() {
+cd $_hkgname-$pkgver
+patch -p1 -i ../generics-sop-0.5.patch
+sed -i -e 's/< *0.8/<1/' -e '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 --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"
+}

Copied: haskell-swagger2/repos/community-staging-x86_64/generics-sop-0.5.patch 
(from rev 496217, haskell-swagger2/trunk/generics-sop-0.5.patch)
===
--- community-staging-x86_64/generics-sop-0.5.patch 
(rev 0)
+++ community-staging-x86_64/generics-sop-0.5.patch 2019-08-01 07:37:15 UTC 
(rev 496218)
@@ -0,0 +1,59 @@
+commit 96420ab204b6079eef1331faecf80fa73476c206
+Author: Felix Yan 
+Date:   Fri May 17 03:19:47 2019 +0800
+
+Fix compatibility with generics-sop 0.5
+
+diff --git a/src/Data/Swagger/Internal/AesonUtils.hs 
b/src/Data/Swagger/Internal/AesonUtils.hs
+index c1280f0..c785e76 100644
+--- a/src/Data/Swagger/Internal/AesonUtils.hs
 b/src/Data/Swagger/Internal/AesonUtils.hs
+@@ -144,7 +144,11 @@ sopSwaggerGenericToJSON'
+ -> DatatypeInfo '[xs]
+ -> POP Maybe '[xs]
+ -> [Pair]
++#if MIN_VERSION_generics_sop(0,5,0)
++sopSwaggerGenericToJSON' opts (SOP (Z fields)) (ADT _ _ (Record _ fieldsInfo 
:* Nil) _) (POP (defs :* Nil)) =
++#else
+ sopSwaggerGenericToJSON' opts (SOP (Z fields)) (ADT _ _ (Record _ fieldsInfo 
:* Nil)) (POP (defs :* Nil)) =
++#endif
+ sopSwaggerGenericToJSON'' opts fields fieldsInfo defs
+ sopSwaggerGenericToJSON' _ _ _ _ = error "sopSwaggerGenericToJSON: 
unsupported type"
+ 
+@@ -220,7 +224,11 @@ sopSwaggerGenericParseJSON'
+ -> DatatypeInfo '[xs]
+ -> POP Maybe '[xs]
+ -> Parser (SOP I '[xs])
++#if 

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

2019-08-01 Thread Felix Yan via arch-commits
Date: Thursday, August 1, 2019 @ 07:38:44
  Author: felixonmars
Revision: 496219

upgpkg: haskell-servant-swagger 1.1.7.1-13

rebuild with splitmix 0.0.3

Modified:
  haskell-servant-swagger/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-01 07:37:15 UTC (rev 496218)
+++ PKGBUILD2019-08-01 07:38:44 UTC (rev 496219)
@@ -4,7 +4,7 @@
 _hkgname=servant-swagger
 pkgname=haskell-servant-swagger
 pkgver=1.1.7.1
-pkgrel=12
+pkgrel=13
 pkgdesc="Generate Swagger specification for your servant API."
 url="https://github.com/haskell-servant/servant-swagger;
 license=("BSD")


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

2019-08-01 Thread Felix Yan via arch-commits
Date: Thursday, August 1, 2019 @ 07:38:56
  Author: felixonmars
Revision: 496220

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-servant-swagger/repos/community-staging-x86_64/
  haskell-servant-swagger/repos/community-staging-x86_64/PKGBUILD
(from rev 496219, haskell-servant-swagger/trunk/PKGBUILD)

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

Copied: haskell-servant-swagger/repos/community-staging-x86_64/PKGBUILD (from 
rev 496219, haskell-servant-swagger/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-01 07:38:56 UTC (rev 496220)
@@ -0,0 +1,47 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=servant-swagger
+pkgname=haskell-servant-swagger
+pkgver=1.1.7.1
+pkgrel=13
+pkgdesc="Generate Swagger specification for your servant API."
+url="https://github.com/haskell-servant/servant-swagger;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-aeson-pretty' 'haskell-http-media'
+ 'haskell-insert-ordered-containers' 'haskell-lens' 'haskell-servant'
+ 'haskell-singleton-bool' 'haskell-swagger2' 
'haskell-unordered-containers'
+ 'haskell-hspec' 'haskell-quickcheck')
+makedepends=('ghc' 'haskell-base-compat' 'haskell-cabal-doctest' 
'haskell-doctest'
+ 'haskell-hspec-discover' 'haskell-lens-aeson' 
'haskell-utf8-string' 'haskell-vector')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('74b71c331272ad905e5a73f81d2b7eba4a6b705bc633f3e7747824d3c8f22e0f4518a19c47792ecc46d3c0956d39280201b085c2be1c78dc7455f6fd5ca1b434')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test || warning "Tests failed"
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-08-01 Thread Felix Yan via arch-commits
Date: Thursday, August 1, 2019 @ 07:47:53
  Author: felixonmars
Revision: 496233

upgpkg: haskell-trifecta 2-50

rebuild with splitmix 0.0.3

Modified:
  haskell-trifecta/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-01 07:46:32 UTC (rev 496232)
+++ PKGBUILD2019-08-01 07:47:53 UTC (rev 496233)
@@ -4,7 +4,7 @@
 _hkgname=trifecta
 pkgname=haskell-trifecta
 pkgver=2
-pkgrel=49
+pkgrel=50
 pkgdesc="A modern parser combinator library with convenient diagnostics"
 url="https://github.com/ekmett/trifecta/;
 license=("BSD")


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

2019-08-01 Thread Felix Yan via arch-commits
Date: Thursday, August 1, 2019 @ 07:57:00
  Author: felixonmars
Revision: 496249

upgpkg: haskell-wai-cors 0.2.7-11

rebuild with splitmix 0.0.3

Modified:
  haskell-wai-cors/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-01 07:56:18 UTC (rev 496248)
+++ PKGBUILD2019-08-01 07:57:00 UTC (rev 496249)
@@ -4,7 +4,7 @@
 _hkgname=wai-cors
 pkgname=haskell-wai-cors
 pkgver=0.2.7
-pkgrel=10
+pkgrel=11
 pkgdesc="CORS for WAI"
 url="https://github.com/larskuhtz/wai-cors;
 license=("MIT")


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

2019-08-01 Thread Felix Yan via arch-commits
Date: Thursday, August 1, 2019 @ 07:56:18
  Author: felixonmars
Revision: 496248

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-wai-conduit/repos/community-staging-x86_64/PKGBUILD (from rev 
496247, haskell-wai-conduit/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-01 07:56:18 UTC (rev 496248)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=wai-conduit
+pkgname=haskell-wai-conduit
+pkgver=3.0.0.4
+pkgrel=132
+pkgdesc="Conduit wrappers for WAI"
+url="https://github.com/yesodweb/wai;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-conduit' 'haskell-http-types' 'haskell-wai')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('49f1a2b53912a899b4cf427a72ab7c34994fd86810e5345233de34a611c71b970ff09e8fa33c93803950c2991a7c22c9b0b6d277fc9aca64bb599af60415ae70')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-08-01 Thread Felix Yan via arch-commits
Date: Thursday, August 1, 2019 @ 07:57:10
  Author: felixonmars
Revision: 496250

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-wai-cors/repos/community-staging-x86_64/
  haskell-wai-cors/repos/community-staging-x86_64/PKGBUILD
(from rev 496249, haskell-wai-cors/trunk/PKGBUILD)

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

Copied: haskell-wai-cors/repos/community-staging-x86_64/PKGBUILD (from rev 
496249, haskell-wai-cors/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-01 07:57:10 UTC (rev 496250)
@@ -0,0 +1,39 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=wai-cors
+pkgname=haskell-wai-cors
+pkgver=0.2.7
+pkgrel=11
+pkgdesc="CORS for WAI"
+url="https://github.com/larskuhtz/wai-cors;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-attoparsec" "haskell-base-unicode-symbols" 
"haskell-case-insensitive"
+ "haskell-http-types" "haskell-wai")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('77a9e3cb457136a05c2b104ac331af17d70edf8d985689c962d3e6cc0981c6752eff59ef18301c0ba98c6d4256909c44afe50bedb0f3dd741b6879564516cea7')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-08-01 Thread Felix Yan via arch-commits
Date: Thursday, August 1, 2019 @ 07:57:54
  Author: felixonmars
Revision: 496251

upgpkg: haskell-wai-middleware-static 0.8.2-81

rebuild with splitmix 0.0.3

Modified:
  haskell-wai-middleware-static/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-01 07:57:10 UTC (rev 496250)
+++ PKGBUILD2019-08-01 07:57:54 UTC (rev 496251)
@@ -4,7 +4,7 @@
 _hkgname=wai-middleware-static
 pkgname=haskell-wai-middleware-static
 pkgver=0.8.2
-pkgrel=80
+pkgrel=81
 pkgdesc="WAI middleware that serves requests to static files"
 url="https://github.com/scotty-web/wai-middleware-static;
 license=("BSD")


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

2019-08-01 Thread Felix Yan via arch-commits
Date: Thursday, August 1, 2019 @ 07:58:05
  Author: felixonmars
Revision: 496252

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-wai-middleware-static/repos/community-staging-x86_64/
  haskell-wai-middleware-static/repos/community-staging-x86_64/PKGBUILD
(from rev 496251, haskell-wai-middleware-static/trunk/PKGBUILD)

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

Copied: haskell-wai-middleware-static/repos/community-staging-x86_64/PKGBUILD 
(from rev 496251, haskell-wai-middleware-static/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-01 07:58:05 UTC (rev 496252)
@@ -0,0 +1,44 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=wai-middleware-static
+pkgname=haskell-wai-middleware-static
+pkgver=0.8.2
+pkgrel=81
+pkgdesc="WAI middleware that serves requests to static files"
+url="https://github.com/scotty-web/wai-middleware-static;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-cryptonite' 'haskell-memory' 
'haskell-expiring-cache-map'
+ 'haskell-http-types' 'haskell-mime-types' 'haskell-old-locale' 
'haskell-wai')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('0316fa827606562e5172eb93f8baba08af6ac07c78ff92cd8b7228658f2e9460ed0cd31e6e3e4249b41aa125f771d5610634140153b69c940a8562aa089c6bb6')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i -e '/semigroups/d' -e 's/< *0.6/<1/' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--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 $_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-auto-update/repos (2 files)

2019-08-01 Thread Felix Yan via arch-commits
Date: Thursday, August 1, 2019 @ 08:08:06
  Author: felixonmars
Revision: 496270

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-auto-update/repos/community-staging-x86_64/
  haskell-auto-update/repos/community-staging-x86_64/PKGBUILD
(from rev 496269, haskell-auto-update/trunk/PKGBUILD)

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

Copied: haskell-auto-update/repos/community-staging-x86_64/PKGBUILD (from rev 
496269, haskell-auto-update/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-01 08:08:06 UTC (rev 496270)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=auto-update
+pkgname=haskell-auto-update
+pkgver=0.1.6
+pkgrel=4
+pkgdesc="Efficiently run periodic, on-demand actions"
+url="https://github.com/yesodweb/wai;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs')
+makedepends=('ghc' 'haskell-exceptions' 'haskell-hspec' 'haskell-retry' 
'haskell-hunit')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('ff0f4f835d0b24aafbe18dbc42a9c3cc396cea24be3f4b13b5f5dac49b3b21030c941c8b09a5c33ba175c9902d076aa12fc9eb5a6a79c94ee5c9b60935fa047f')
+
+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-dns/trunk (PKGBUILD)

2019-08-01 Thread Felix Yan via arch-commits
Date: Thursday, August 1, 2019 @ 08:09:30
  Author: felixonmars
Revision: 496271

upgpkg: haskell-dns 3.0.4-77

rebuild with splitmix 0.0.3

Modified:
  haskell-dns/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-01 08:08:06 UTC (rev 496270)
+++ PKGBUILD2019-08-01 08:09:30 UTC (rev 496271)
@@ -4,7 +4,7 @@
 _hkgname=dns
 pkgname=haskell-dns
 pkgver=3.0.4
-pkgrel=76
+pkgrel=77
 pkgdesc="DNS library in Haskell"
 url="https://hackage.haskell.org/package/${_hkgname};
 license=("BSD")


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

2019-08-01 Thread Felix Yan via arch-commits
Date: Thursday, August 1, 2019 @ 08:20:47
  Author: felixonmars
Revision: 496290

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-wai-logger/repos/community-staging-x86_64/
  haskell-wai-logger/repos/community-staging-x86_64/PKGBUILD
(from rev 496289, haskell-wai-logger/trunk/PKGBUILD)

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

Copied: haskell-wai-logger/repos/community-staging-x86_64/PKGBUILD (from rev 
496289, haskell-wai-logger/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-01 08:20:47 UTC (rev 496290)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=wai-logger
+pkgname=haskell-wai-logger
+pkgver=2.3.5
+pkgrel=17
+pkgdesc="A logging system for WAI"
+url="https://hackage.haskell.org/package/${_hkgname};
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-byteorder' 'haskell-fast-logger'
+ 'haskell-http-types' 'haskell-network' 'haskell-wai')
+makedepends=('ghc' 'haskell-cabal-doctest' 'haskell-doctest')
+checkdepends=('haskell-wai-extra')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('5e545aad57b6e860f147f59fd7bf2702081c769c28d47a901c174474a67086161d4709b33203436ecca0d7134a6f898532fdc08385db329c30be4b8007a1cf2b')
+
+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-wai-logger/trunk (PKGBUILD)

2019-08-01 Thread Felix Yan via arch-commits
Date: Thursday, August 1, 2019 @ 08:20:36
  Author: felixonmars
Revision: 496289

upgpkg: haskell-wai-logger 2.3.5-17

rebuild with splitmix 0.0.3

Modified:
  haskell-wai-logger/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-01 08:19:40 UTC (rev 496288)
+++ PKGBUILD2019-08-01 08:20:36 UTC (rev 496289)
@@ -4,7 +4,7 @@
 _hkgname=wai-logger
 pkgname=haskell-wai-logger
 pkgver=2.3.5
-pkgrel=16
+pkgrel=17
 pkgdesc="A logging system for WAI"
 url="https://hackage.haskell.org/package/${_hkgname};
 license=("BSD")


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

2019-08-01 Thread Felix Yan via arch-commits
Date: Thursday, August 1, 2019 @ 08:28:48
  Author: felixonmars
Revision: 496302

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-js-jquery/repos/community-staging-x86_64/
  haskell-js-jquery/repos/community-staging-x86_64/PKGBUILD
(from rev 496301, haskell-js-jquery/trunk/PKGBUILD)

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

Copied: haskell-js-jquery/repos/community-staging-x86_64/PKGBUILD (from rev 
496301, haskell-js-jquery/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-01 08:28:48 UTC (rev 496302)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=js-jquery
+pkgname=haskell-js-jquery
+pkgver=3.3.1
+pkgrel=259
+pkgdesc="Obtain minified jQuery code"
+url="https://github.com/ndmitchell/js-jquery#readme;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs')
+makedepends=('ghc' 'haskell-http')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('359a4342bc5156d5360385a478e235def04db0381cc48f342baac5018e91350dce760adb9b9ada796bc6341d5629f807672f629ee127faefe521801d62bb')
+
+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
+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-js-jquery/trunk (PKGBUILD)

2019-08-01 Thread Felix Yan via arch-commits
Date: Thursday, August 1, 2019 @ 08:28:38
  Author: felixonmars
Revision: 496301

upgpkg: haskell-js-jquery 3.3.1-259

rebuild with splitmix 0.0.3

Modified:
  haskell-js-jquery/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-01 08:27:50 UTC (rev 496300)
+++ PKGBUILD2019-08-01 08:28:38 UTC (rev 496301)
@@ -4,7 +4,7 @@
 _hkgname=js-jquery
 pkgname=haskell-js-jquery
 pkgver=3.3.1
-pkgrel=258
+pkgrel=259
 pkgdesc="Obtain minified jQuery code"
 url="https://github.com/ndmitchell/js-jquery#readme;
 license=("MIT")


[arch-commits] Commit in haskell-wl-pprint-extras/repos (2 files)

2019-08-01 Thread Felix Yan via arch-commits
Date: Thursday, August 1, 2019 @ 08:44:37
  Author: felixonmars
Revision: 496314

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-wl-pprint-extras/repos/community-staging-x86_64/
  haskell-wl-pprint-extras/repos/community-staging-x86_64/PKGBUILD
(from rev 496313, haskell-wl-pprint-extras/trunk/PKGBUILD)

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

Copied: haskell-wl-pprint-extras/repos/community-staging-x86_64/PKGBUILD (from 
rev 496313, haskell-wl-pprint-extras/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-01 08:44:37 UTC (rev 496314)
@@ -0,0 +1,41 @@
+# Maintainer: Felix Yan 
+
+_hkgname=wl-pprint-extras
+pkgname=haskell-wl-pprint-extras
+pkgver=3.5.0.5
+pkgrel=107
+pkgdesc="A free monad based on the Wadler/Leijen pretty printer"
+url="https://github.com/ekmett/wl-pprint-extras/;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-semigroupoids' 'haskell-utf8-string')
+makedepends=('ghc')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('705107842ccbf4eb23d0b9e8069fd4d5bb1b03ffecbf9efaa8a579fd977380913d590fa370cc42476d5b28fde98fc44e7879fe343f761cd1751ebeb0b8c0e242')
+
+prepare() {
+sed -e '/nats/d' -e '/semigroups/d' -e 's/< *0.6/<1/' -i 
${_hkgname}-${pkgver}/${_hkgname}.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


[arch-commits] Commit in haskell-wl-pprint-extras/trunk (PKGBUILD)

2019-08-01 Thread Felix Yan via arch-commits
Date: Thursday, August 1, 2019 @ 08:44:26
  Author: felixonmars
Revision: 496313

upgpkg: haskell-wl-pprint-extras 3.5.0.5-107

rebuild with splitmix 0.0.3

Modified:
  haskell-wl-pprint-extras/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-01 08:43:46 UTC (rev 496312)
+++ PKGBUILD2019-08-01 08:44:26 UTC (rev 496313)
@@ -3,7 +3,7 @@
 _hkgname=wl-pprint-extras
 pkgname=haskell-wl-pprint-extras
 pkgver=3.5.0.5
-pkgrel=106
+pkgrel=107
 pkgdesc="A free monad based on the Wadler/Leijen pretty printer"
 url="https://github.com/ekmett/wl-pprint-extras/;
 license=('BSD')


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

2019-08-01 Thread Felix Yan via arch-commits
Date: Thursday, August 1, 2019 @ 08:54:21
  Author: felixonmars
Revision: 496327

upgpkg: haskell-x509 1.7.5-28

rebuild with splitmix 0.0.3

Modified:
  haskell-x509/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-01 08:53:30 UTC (rev 496326)
+++ PKGBUILD2019-08-01 08:54:21 UTC (rev 496327)
@@ -4,7 +4,7 @@
 _hkgname=x509
 pkgname=haskell-x509
 pkgver=1.7.5
-pkgrel=27
+pkgrel=28
 pkgdesc="X509 reader and writer"
 url="https://github.com/vincenthz/hs-certificate;
 license=("BSD")


[arch-commits] Commit in tmate/repos/community-x86_64 (3 files)

2019-08-01 Thread Christian Hesse via arch-commits
Date: Thursday, August 1, 2019 @ 09:02:53
  Author: eworm
Revision: 496344

archrelease: copy trunk to community-x86_64

Added:
  tmate/repos/community-x86_64/PKGBUILD
(from rev 496343, tmate/trunk/PKGBUILD)
Deleted:
  tmate/repos/community-x86_64/0001-libssh.patch
  tmate/repos/community-x86_64/PKGBUILD

---+
 0001-libssh.patch |  103 
 PKGBUILD  |   70 +++
 2 files changed, 31 insertions(+), 142 deletions(-)

Deleted: 0001-libssh.patch
===
--- 0001-libssh.patch   2019-08-01 09:02:52 UTC (rev 496343)
+++ 0001-libssh.patch   2019-08-01 09:02:53 UTC (rev 496344)
@@ -1,103 +0,0 @@
-From 299c7c670c3d56ad6eaf73618dcf0c3c5d6fa2ec Mon Sep 17 00:00:00 2001
-From: Christian Hesse 
-Date: Tue, 30 Jul 2019 08:15:59 +0200
-Subject: [PATCH 1/3] add new channel after authentication
-
-With libssh commit 8a885f0b ("channels: Add check if we are authenticated
-before we create a channel") connection fails if channel is added before
-successful authentication. So add the channel after authentication.
-
-Fixes #154

- tmate-ssh-client.c | 12 ++--
- 1 file changed, 6 insertions(+), 6 deletions(-)
-
-diff --git a/tmate-ssh-client.c b/tmate-ssh-client.c
-index 96da14c8..2a9afee0 100644
 a/tmate-ssh-client.c
-+++ b/tmate-ssh-client.c
-@@ -241,12 +241,6 @@ static void on_ssh_client_event(struct tmate_ssh_client 
*client)
- 
-   ssh_set_callbacks(session, >ssh_callbacks);
- 
--  client->channel = channel = ssh_channel_new(session);
--  if (!channel) {
--  tmate_fatal("cannot initialize");
--  return;
--  }
--
-   ssh_set_blocking(session, 0);
-   ssh_options_set(session, SSH_OPTIONS_HOST, client->server_ip);
-   ssh_options_set(session, SSH_OPTIONS_LOG_VERBOSITY, );
-@@ -370,6 +364,12 @@ static void on_ssh_client_event(struct tmate_ssh_client 
*client)
-   case SSH_AUTH_SUCCESS:
-   tmate_debug("Auth successful");
-   client->state = SSH_OPEN_CHANNEL;
-+
-+  client->channel = channel = ssh_channel_new(session);
-+  if (!channel) {
-+  tmate_fatal("cannot initialize");
-+  return;
-+  }
-   /* fall through */
-   }
- 
-From e25ab3cc8bb4d42b137625b376d677707bc4fbe2 Mon Sep 17 00:00:00 2001
-From: Andreas Schneider 
-Date: Tue, 30 Jul 2019 14:48:37 +0200
-Subject: [PATCH 2/3] ssh-client: Add missing ecdsa keytypes of libssh 0.9

- tmate-ssh-client.c | 7 ++-
- 1 file changed, 6 insertions(+), 1 deletion(-)
-
-diff --git a/tmate-ssh-client.c b/tmate-ssh-client.c
-index 2a9afee0..943ebf49 100644
 a/tmate-ssh-client.c
-+++ b/tmate-ssh-client.c
-@@ -218,7 +218,7 @@ static void on_ssh_client_event(struct tmate_ssh_client 
*client)
- {
-   char *identity;
-   ssh_key pubkey;
--  int key_type;
-+  enum ssh_keytypes_e key_type;
-   unsigned char *hash;
-   ssize_t hash_len;
-   char *hash_str;
-@@ -304,6 +304,11 @@ static void on_ssh_client_event(struct tmate_ssh_client 
*client)
-   "tmate-server-rsa-fingerprint");
-   break;
-   case SSH_KEYTYPE_ECDSA:
-+#if LIBSSH_VERSION_INT >= SSH_VERSION_INT(0, 9, 0)
-+  case SSH_KEYTYPE_ECDSA_P256:
-+  case SSH_KEYTYPE_ECDSA_P384:
-+  case SSH_KEYTYPE_ECDSA_P521:
-+#endif
-   server_hash_str = options_get_string(global_options,
-   
"tmate-server-ecdsa-fingerprint");
-   break;
-From 4e7caeb536629fc4ddc4d413ca867f754b1257c3 Mon Sep 17 00:00:00 2001
-From: Andreas Schneider 
-Date: Tue, 30 Jul 2019 15:37:35 +0200
-Subject: [PATCH 3/3] ssh-client: Use ssh_get_server_publickey() if possible

- tmate-ssh-client.c | 5 +
- 1 file changed, 5 insertions(+)
-
-diff --git a/tmate-ssh-client.c b/tmate-ssh-client.c
-index 943ebf49..c5fb4243 100644
 a/tmate-ssh-client.c
-+++ b/tmate-ssh-client.c
-@@ -282,8 +282,13 @@ static void on_ssh_client_event(struct tmate_ssh_client 
*client)
-   }
- 
-   case SSH_AUTH_SERVER:
-+#if LIBSSH_VERSION_INT >= SSH_VERSION_INT(0, 9, 0)
-+  if (ssh_get_server_publickey(session, ) < 0)
-+  tmate_fatal("ssh_get_server_publickey");
-+#else
-   if (ssh_get_publickey(session, ) < 0)
-   tmate_fatal("ssh_get_publickey");
-+#endif
- 
-   if (ssh_get_publickey_hash(pubkey, SSH_PUBLICKEY_HASH_SHA256,
-  , _len) < 0) {

Deleted: PKGBUILD
===
--- 

[arch-commits] Commit in tmate/trunk (0001-libssh.patch PKGBUILD)

2019-08-01 Thread Christian Hesse via arch-commits
Date: Thursday, August 1, 2019 @ 09:02:48
  Author: eworm
Revision: 496342

upgpkg: tmate 2.3.0-1

new upstream release

Modified:
  tmate/trunk/PKGBUILD
Deleted:
  tmate/trunk/0001-libssh.patch

---+
 0001-libssh.patch |  103 
 PKGBUILD  |   16 ++--
 2 files changed, 4 insertions(+), 115 deletions(-)

Deleted: 0001-libssh.patch
===
--- 0001-libssh.patch   2019-08-01 09:02:42 UTC (rev 496341)
+++ 0001-libssh.patch   2019-08-01 09:02:48 UTC (rev 496342)
@@ -1,103 +0,0 @@
-From 299c7c670c3d56ad6eaf73618dcf0c3c5d6fa2ec Mon Sep 17 00:00:00 2001
-From: Christian Hesse 
-Date: Tue, 30 Jul 2019 08:15:59 +0200
-Subject: [PATCH 1/3] add new channel after authentication
-
-With libssh commit 8a885f0b ("channels: Add check if we are authenticated
-before we create a channel") connection fails if channel is added before
-successful authentication. So add the channel after authentication.
-
-Fixes #154

- tmate-ssh-client.c | 12 ++--
- 1 file changed, 6 insertions(+), 6 deletions(-)
-
-diff --git a/tmate-ssh-client.c b/tmate-ssh-client.c
-index 96da14c8..2a9afee0 100644
 a/tmate-ssh-client.c
-+++ b/tmate-ssh-client.c
-@@ -241,12 +241,6 @@ static void on_ssh_client_event(struct tmate_ssh_client 
*client)
- 
-   ssh_set_callbacks(session, >ssh_callbacks);
- 
--  client->channel = channel = ssh_channel_new(session);
--  if (!channel) {
--  tmate_fatal("cannot initialize");
--  return;
--  }
--
-   ssh_set_blocking(session, 0);
-   ssh_options_set(session, SSH_OPTIONS_HOST, client->server_ip);
-   ssh_options_set(session, SSH_OPTIONS_LOG_VERBOSITY, );
-@@ -370,6 +364,12 @@ static void on_ssh_client_event(struct tmate_ssh_client 
*client)
-   case SSH_AUTH_SUCCESS:
-   tmate_debug("Auth successful");
-   client->state = SSH_OPEN_CHANNEL;
-+
-+  client->channel = channel = ssh_channel_new(session);
-+  if (!channel) {
-+  tmate_fatal("cannot initialize");
-+  return;
-+  }
-   /* fall through */
-   }
- 
-From e25ab3cc8bb4d42b137625b376d677707bc4fbe2 Mon Sep 17 00:00:00 2001
-From: Andreas Schneider 
-Date: Tue, 30 Jul 2019 14:48:37 +0200
-Subject: [PATCH 2/3] ssh-client: Add missing ecdsa keytypes of libssh 0.9

- tmate-ssh-client.c | 7 ++-
- 1 file changed, 6 insertions(+), 1 deletion(-)
-
-diff --git a/tmate-ssh-client.c b/tmate-ssh-client.c
-index 2a9afee0..943ebf49 100644
 a/tmate-ssh-client.c
-+++ b/tmate-ssh-client.c
-@@ -218,7 +218,7 @@ static void on_ssh_client_event(struct tmate_ssh_client 
*client)
- {
-   char *identity;
-   ssh_key pubkey;
--  int key_type;
-+  enum ssh_keytypes_e key_type;
-   unsigned char *hash;
-   ssize_t hash_len;
-   char *hash_str;
-@@ -304,6 +304,11 @@ static void on_ssh_client_event(struct tmate_ssh_client 
*client)
-   "tmate-server-rsa-fingerprint");
-   break;
-   case SSH_KEYTYPE_ECDSA:
-+#if LIBSSH_VERSION_INT >= SSH_VERSION_INT(0, 9, 0)
-+  case SSH_KEYTYPE_ECDSA_P256:
-+  case SSH_KEYTYPE_ECDSA_P384:
-+  case SSH_KEYTYPE_ECDSA_P521:
-+#endif
-   server_hash_str = options_get_string(global_options,
-   
"tmate-server-ecdsa-fingerprint");
-   break;
-From 4e7caeb536629fc4ddc4d413ca867f754b1257c3 Mon Sep 17 00:00:00 2001
-From: Andreas Schneider 
-Date: Tue, 30 Jul 2019 15:37:35 +0200
-Subject: [PATCH 3/3] ssh-client: Use ssh_get_server_publickey() if possible

- tmate-ssh-client.c | 5 +
- 1 file changed, 5 insertions(+)
-
-diff --git a/tmate-ssh-client.c b/tmate-ssh-client.c
-index 943ebf49..c5fb4243 100644
 a/tmate-ssh-client.c
-+++ b/tmate-ssh-client.c
-@@ -282,8 +282,13 @@ static void on_ssh_client_event(struct tmate_ssh_client 
*client)
-   }
- 
-   case SSH_AUTH_SERVER:
-+#if LIBSSH_VERSION_INT >= SSH_VERSION_INT(0, 9, 0)
-+  if (ssh_get_server_publickey(session, ) < 0)
-+  tmate_fatal("ssh_get_server_publickey");
-+#else
-   if (ssh_get_publickey(session, ) < 0)
-   tmate_fatal("ssh_get_publickey");
-+#endif
- 
-   if (ssh_get_publickey_hash(pubkey, SSH_PUBLICKEY_HASH_SHA256,
-  , _len) < 0) {

Modified: PKGBUILD
===
--- PKGBUILD2019-08-01 09:02:42 UTC (rev 496341)
+++ PKGBUILD2019-08-01 09:02:48 UTC (rev 496342)
@@ -3,8 +3,8 @@
 # Contributors: 

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

2019-08-01 Thread Felix Yan via arch-commits
Date: Thursday, August 1, 2019 @ 09:02:52
  Author: felixonmars
Revision: 496343

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-http-client-tls/repos/community-staging-x86_64/
  haskell-http-client-tls/repos/community-staging-x86_64/PKGBUILD
(from rev 496342, haskell-http-client-tls/trunk/PKGBUILD)

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

Copied: haskell-http-client-tls/repos/community-staging-x86_64/PKGBUILD (from 
rev 496342, haskell-http-client-tls/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-01 09:02:52 UTC (rev 496343)
@@ -0,0 +1,41 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http-client-tls
+pkgname=haskell-http-client-tls
+pkgver=0.3.5.3
+pkgrel=132
+pkgdesc="http-client backend using the connection package and tls library"
+url="https://github.com/snoyberg/http-client;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-case-insensitive" "haskell-connection" 
"haskell-cryptonite"
+ "haskell-data-default-class" "haskell-exceptions" 
"haskell-http-client"
+ "haskell-http-types" "haskell-memory" "haskell-network" 
"haskell-network-uri"
+ "haskell-tls")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('df4fff9fbd6736a52d54bf04669107b24e3d31c22b0f7882310204ca4ef1a895e9f79cea289423341aa575759a2667ff9ca86b889567605ad3daec266a1bbb14')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-08-01 Thread Felix Yan via arch-commits
Date: Thursday, August 1, 2019 @ 09:02:42
  Author: felixonmars
Revision: 496341

upgpkg: haskell-http-client-tls 0.3.5.3-132

rebuild with splitmix 0.0.3

Modified:
  haskell-http-client-tls/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-01 09:01:40 UTC (rev 496340)
+++ PKGBUILD2019-08-01 09:02:42 UTC (rev 496341)
@@ -4,7 +4,7 @@
 _hkgname=http-client-tls
 pkgname=haskell-http-client-tls
 pkgver=0.3.5.3
-pkgrel=131
+pkgrel=132
 pkgdesc="http-client backend using the connection package and tls library"
 url="https://github.com/snoyberg/http-client;
 license=("MIT")


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

2019-08-01 Thread Felix Yan via arch-commits
Date: Thursday, August 1, 2019 @ 09:09:58
  Author: felixonmars
Revision: 496354

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-http-conduit/repos/community-staging-x86_64/PKGBUILD (from rev 
496353, haskell-http-conduit/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-01 09:09:58 UTC (rev 496354)
@@ -0,0 +1,49 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http-conduit
+pkgname=haskell-http-conduit
+pkgver=2.3.7.1
+pkgrel=46
+pkgdesc="HTTP client package with conduit interface and HTTPS support"
+url="https://www.yesodweb.com/book/http-conduit;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-attoparsec' 'haskell-conduit' 
'haskell-conduit-extra'
+ 'haskell-http-client' 'haskell-http-client-tls' 'haskell-http-types' 
'haskell-resourcet'
+ 'haskell-unliftio-core')
+makedepends=('ghc' 'haskell-blaze-builder' 'haskell-case-insensitive' 
'haskell-connection'
+ 'haskell-cookie' 'haskell-data-default-class' 'haskell-hunit' 
'haskell-hspec'
+ 'haskell-lifted-base' 'haskell-network' 
'haskell-streaming-commons' 'haskell-temporary'
+ 'haskell-unliftio' 'haskell-utf8-string' 'haskell-wai' 
'haskell-wai-conduit'
+ 'haskell-warp' 'haskell-warp-tls')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('39308e85a9b8c292930803b0b0bb00d4fb58e64e3a8273a30fee4f6016fe18ae9cbd75ece5b67ff88237d87c0b895896b9d715eaa45d396f3baf1deb2b8388ba')
+
+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-http-conduit/trunk (PKGBUILD)

2019-08-01 Thread Felix Yan via arch-commits
Date: Thursday, August 1, 2019 @ 09:09:48
  Author: felixonmars
Revision: 496353

upgpkg: haskell-http-conduit 2.3.7.1-46

rebuild with splitmix 0.0.3

Modified:
  haskell-http-conduit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-01 09:08:34 UTC (rev 496352)
+++ PKGBUILD2019-08-01 09:09:48 UTC (rev 496353)
@@ -4,7 +4,7 @@
 _hkgname=http-conduit
 pkgname=haskell-http-conduit
 pkgver=2.3.7.1
-pkgrel=45
+pkgrel=46
 pkgdesc="HTTP client package with conduit interface and HTTPS support"
 url="https://www.yesodweb.com/book/http-conduit;
 license=("BSD")


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

2019-08-01 Thread Felix Yan via arch-commits
Date: Thursday, August 1, 2019 @ 09:15:59
  Author: felixonmars
Revision: 496358

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-wreq/repos/community-staging-x86_64/PKGBUILD (from rev 496357, 
haskell-wreq/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-01 09:15:59 UTC (rev 496358)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+
+_hkgname=wreq
+pkgname=haskell-wreq
+pkgver=0.5.3.2
+pkgrel=63
+pkgdesc="An easy-to-use HTTP client library."
+url="https://github.com/bos/wreq;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-attoparsec' 
'haskell-authenticate-oauth'
+ 'haskell-base16-bytestring' 'haskell-case-insensitive' 
'haskell-cryptonite'
+ 'haskell-exceptions' 'haskell-hashable' 'haskell-http-client' 
'haskell-http-client-tls'
+ 'haskell-http-types' 'haskell-lens' 'haskell-lens-aeson' 
'haskell-memory'
+ 'haskell-mime-types' 'haskell-psqueues' 'haskell-time-locale-compat'
+ 'haskell-unordered-containers' 'haskell-aeson-pretty' 
'haskell-base64-bytestring'
+ 'haskell-snap-core' 'haskell-snap-server' 'haskell-unix-compat' 
'haskell-uuid')
+makedepends=('ghc' 'haskell-cabal-doctest' 'haskell-doctest' 'haskell-hunit' 
'haskell-quickcheck'
+ 'haskell-network-info' 'haskell-temporary' 
'haskell-test-framework'
+ 'haskell-test-framework-hunit' 
'haskell-test-framework-quickcheck2' 'haskell-vector')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('5a2c62b973758cb8ce2bf20504e328090896fa25e7ee1f77b472d7cf5156e08b6d85bf4341ff45e44db1724070fcf3c0f21037fa0a79211a1767024328f7c779')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fdoctest -f-aws -fhttpbin -f-developer
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test || warning "Tests failed"
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE.md" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.md"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE.md"
+}


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

2019-08-01 Thread Felix Yan via arch-commits
Date: Thursday, August 1, 2019 @ 09:23:00
  Author: felixonmars
Revision: 496365

upgpkg: haskell-dbus 1.2.7-24

rebuild with splitmix 0.0.3

Modified:
  haskell-dbus/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-01 09:21:17 UTC (rev 496364)
+++ PKGBUILD2019-08-01 09:23:00 UTC (rev 496365)
@@ -4,7 +4,7 @@
 _hkgname=dbus
 pkgname=haskell-dbus
 pkgver=1.2.7
-pkgrel=23
+pkgrel=24
 pkgdesc="A client library for the D-Bus IPC system"
 url="https://john-millikin.com/software/haskell-dbus/;
 license=("GPL3")


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

2019-08-01 Thread Felix Yan via arch-commits
Date: Thursday, August 1, 2019 @ 09:23:10
  Author: felixonmars
Revision: 496366

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-dbus/repos/community-staging-x86_64/PKGBUILD (from rev 496365, 
haskell-dbus/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-01 09:23:10 UTC (rev 496366)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=dbus
+pkgname=haskell-dbus
+pkgver=1.2.7
+pkgrel=24
+pkgdesc="A client library for the D-Bus IPC system"
+url="https://john-millikin.com/software/haskell-dbus/;
+license=("GPL3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-cereal' 'haskell-conduit' 'haskell-exceptions' 
'haskell-lens'
+ 'haskell-network' 'haskell-random' 'haskell-split' 'haskell-th-lift'
+ 'haskell-vector' 'haskell-xml-conduit' 'haskell-xml-types')
+makedepends=('ghc' 'haskell-extra' 'haskell-quickcheck' 'haskell-resourcet' 
'haskell-tasty'
+ 'haskell-tasty-hunit' 'haskell-tasty-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('07ab78ae93b0249f7f2da0af59b5f958daa1b140287eab21962eb8ed53bc608dbd0d906d91a6a7e1bc8a9a82a2ad8e294b540ab0a6c3e01337fbb151a2211ca3')
+
+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"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/license.txt"
+}


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

2019-08-01 Thread Felix Yan via arch-commits
Date: Thursday, August 1, 2019 @ 09:28:48
  Author: felixonmars
Revision: 496376

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-authenticate/repos/community-staging-x86_64/PKGBUILD (from rev 
496375, haskell-authenticate/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-01 09:28:48 UTC (rev 496376)
@@ -0,0 +1,42 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=authenticate
+pkgname=haskell-authenticate
+pkgver=1.3.4
+pkgrel=321
+pkgdesc="Authentication methods for Haskell web applications."
+url="https://github.com/yesodweb/authenticate;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-attoparsec' 
'haskell-blaze-builder'
+ 'haskell-case-insensitive' 'haskell-conduit' 'haskell-http-conduit' 
'haskell-http-types'
+ 'haskell-network-uri' 'haskell-resourcet' 'haskell-tagstream-conduit'
+ 'haskell-unordered-containers' 'haskell-xml-conduit')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('a6e5a9f4c20ca2bb980958c0cc6273492a6488a3f7c1954170bb8b40e46a4c2f7b607c961506e11ddc5421289c907148c1bc70b855bd16664bc1153ef7865571')
+
+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"
+}


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

2019-08-01 Thread Felix Yan via arch-commits
Date: Thursday, August 1, 2019 @ 09:30:04
  Author: felixonmars
Revision: 496378

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-xml-hamlet/repos/community-staging-x86_64/
  haskell-xml-hamlet/repos/community-staging-x86_64/PKGBUILD
(from rev 496377, haskell-xml-hamlet/trunk/PKGBUILD)

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

Copied: haskell-xml-hamlet/repos/community-staging-x86_64/PKGBUILD (from rev 
496377, haskell-xml-hamlet/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-01 09:30:04 UTC (rev 496378)
@@ -0,0 +1,39 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=xml-hamlet
+pkgname=haskell-xml-hamlet
+pkgver=0.5.0
+pkgrel=141
+pkgdesc="Hamlet-style quasiquoter for XML content"
+url="http://www.yesodweb.com/;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-shakespeare"
+ "haskell-xml-conduit")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('6ab50b237e13f5d41f311fe30477c5ecef43af7400e6994652b384b8b91a0007facd7051d2651dac6836356fad6a764dfc2793338b7c0a8c20e83009a0a673ce')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-08-01 Thread Felix Yan via arch-commits
Date: Thursday, August 1, 2019 @ 09:29:55
  Author: felixonmars
Revision: 496377

upgpkg: haskell-xml-hamlet 0.5.0-141

rebuild with splitmix 0.0.3

Modified:
  haskell-xml-hamlet/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-01 09:28:48 UTC (rev 496376)
+++ PKGBUILD2019-08-01 09:29:55 UTC (rev 496377)
@@ -4,7 +4,7 @@
 _hkgname=xml-hamlet
 pkgname=haskell-xml-hamlet
 pkgver=0.5.0
-pkgrel=140
+pkgrel=141
 pkgdesc="Hamlet-style quasiquoter for XML content"
 url="http://www.yesodweb.com/;
 license=("BSD")


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

2019-08-01 Thread Massimiliano Torromeo via arch-commits
Date: Thursday, August 1, 2019 @ 09:35:14
  Author: mtorromeo
Revision: 496391

upgpkg: kibana 7.3.0-1

Modified:
  kibana/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-01 09:35:03 UTC (rev 496390)
+++ PKGBUILD2019-08-01 09:35:14 UTC (rev 496391)
@@ -3,7 +3,7 @@
 # Contributor: Spider.007 
 
 pkgname=kibana
-pkgver=7.2.0
+pkgver=7.3.0
 pkgrel=1
 pkgdesc='Browser based analytics and search dashboard for Elasticsearch'
 url='https://www.elastic.co/products/kibana'
@@ -17,7 +17,7 @@
 kibana.service
 tmpfile.conf
 user.conf)
-sha512sums=('ea735ecd18fc4441f29adcd7fd5a08a61e8bf1e82170219f598edf4a7726a11166e16b36f125edbfecafb6ed2c7cf003880d428960765861868e22cf55542e6b'
+sha512sums=('a2c94eee352e112f1cbb6814d200a9cc7f4d8080b7a47c9f096dc29522fb6d0c0721f39feddff5e25c3b07abcb680bae91972e9c9a5ce2546c1e016812b32c71'
 
'3216c2864cf184cea0883677a05bf83cf396fda52dbd3d9a187de22f0c45d13db58f8fb4dc926694ba7d7a24000cf6d5f6218805f74fb5d729fc85c643ca8f2f'
 
'afed49c164561f3c658a6d2423519adcf4d5293c416cd93fa5c9d12421416c1e9cb4287e832009049cfd014b365dc1cd93d9cf879117c701cce4caad3b772a8e'
 
'9085884430c656cc68b855c3d6740e5fd0854a8785930341b29e15e201deacc1870d8223255d9ebe096cb111319bea9bf4faa03d0760d5819976ebf912221c7d')


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

2019-08-01 Thread Felix Yan via arch-commits
Date: Thursday, August 1, 2019 @ 09:34:52
  Author: felixonmars
Revision: 496389

upgpkg: haskell-yaml 0.11.1.0-8

rebuild with splitmix 0.0.3

Modified:
  haskell-yaml/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-01 09:33:43 UTC (rev 496388)
+++ PKGBUILD2019-08-01 09:34:52 UTC (rev 496389)
@@ -4,7 +4,7 @@
 _hkgname=yaml
 pkgname=haskell-yaml
 pkgver=0.11.1.0
-pkgrel=7
+pkgrel=8
 pkgdesc="Support for parsing and rendering YAML documents."
 url="https://github.com/snoyberg/yaml/;
 license=("BSD")


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

2019-08-01 Thread Felix Yan via arch-commits
Date: Thursday, August 1, 2019 @ 09:35:03
  Author: felixonmars
Revision: 496390

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-yaml/repos/community-staging-x86_64/PKGBUILD (from rev 496389, 
haskell-yaml/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-01 09:35:03 UTC (rev 496390)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yaml
+pkgname=haskell-yaml
+pkgver=0.11.1.0
+pkgrel=8
+pkgdesc="Support for parsing and rendering YAML documents."
+url="https://github.com/snoyberg/yaml/;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-attoparsec' 'haskell-conduit' 
'haskell-libyaml'
+ 'haskell-vector' 'haskell-resourcet' 'haskell-scientific' 
'haskell-unordered-containers')
+makedepends=('ghc' 'haskell-hspec' 'haskell-hunit' 'haskell-mockery' 
'haskell-base-compat'
+ 'haskell-raw-strings-qq' 'haskell-temporary')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('4f166b9d7ee6aadde3f2cde2b0b5f4884d07d3a272117c2fd6aa13ab1b472aa0b07603a2a8c7e8ebb52e1d4fba8d1a03df5126b25a0b58432af3b1ed1ed3440e')
+
+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
+LC_CTYPE=en_US.UTF-8 runhaskell Setup test || warning "Tests failed"
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


[arch-commits] Commit in elasticsearch/repos/community-x86_64 (20 files)

2019-08-01 Thread Massimiliano Torromeo via arch-commits
Date: Thursday, August 1, 2019 @ 09:37:13
  Author: mtorromeo
Revision: 496396

archrelease: copy trunk to community-x86_64

Added:
  elasticsearch/repos/community-x86_64/PKGBUILD
(from rev 496395, elasticsearch/trunk/PKGBUILD)
  elasticsearch/repos/community-x86_64/elasticsearch-env
(from rev 496395, elasticsearch/trunk/elasticsearch-env)
  elasticsearch/repos/community-x86_64/elasticsearch-keystore.service
(from rev 496395, elasticsearch/trunk/elasticsearch-keystore.service)
  elasticsearch/repos/community-x86_64/elasticsearch-keystore@.service
(from rev 496395, elasticsearch/trunk/elasticsearch-keystore@.service)
  elasticsearch/repos/community-x86_64/elasticsearch-sysctl.conf
(from rev 496395, elasticsearch/trunk/elasticsearch-sysctl.conf)
  elasticsearch/repos/community-x86_64/elasticsearch-tmpfile.conf
(from rev 496395, elasticsearch/trunk/elasticsearch-tmpfile.conf)
  elasticsearch/repos/community-x86_64/elasticsearch-user.conf
(from rev 496395, elasticsearch/trunk/elasticsearch-user.conf)
  elasticsearch/repos/community-x86_64/elasticsearch.default
(from rev 496395, elasticsearch/trunk/elasticsearch.default)
  elasticsearch/repos/community-x86_64/elasticsearch.service
(from rev 496395, elasticsearch/trunk/elasticsearch.service)
  elasticsearch/repos/community-x86_64/elasticsearch@.service
(from rev 496395, elasticsearch/trunk/elasticsearch@.service)
Deleted:
  elasticsearch/repos/community-x86_64/PKGBUILD
  elasticsearch/repos/community-x86_64/elasticsearch-env
  elasticsearch/repos/community-x86_64/elasticsearch-keystore.service
  elasticsearch/repos/community-x86_64/elasticsearch-keystore@.service
  elasticsearch/repos/community-x86_64/elasticsearch-sysctl.conf
  elasticsearch/repos/community-x86_64/elasticsearch-tmpfile.conf
  elasticsearch/repos/community-x86_64/elasticsearch-user.conf
  elasticsearch/repos/community-x86_64/elasticsearch.default
  elasticsearch/repos/community-x86_64/elasticsearch.service
  elasticsearch/repos/community-x86_64/elasticsearch@.service

-+
 PKGBUILD|  170 +++---
 elasticsearch-env   |  122 +--
 elasticsearch-keystore.service  |   20 ++--
 elasticsearch-keystore@.service |   22 ++--
 elasticsearch-sysctl.conf   |2 
 elasticsearch-tmpfile.conf  |   12 +-
 elasticsearch-user.conf |2 
 elasticsearch.default   |   26 ++---
 elasticsearch.service   |   80 -
 elasticsearch@.service  |   80 -
 10 files changed, 268 insertions(+), 268 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-01 09:37:00 UTC (rev 496395)
+++ PKGBUILD2019-08-01 09:37:13 UTC (rev 496396)
@@ -1,85 +0,0 @@
-# Maintainer: Massimiliano Torromeo 
-# Contributor: Marcello "mererghost" Rocha 
-# Refactored by Blaž "Speed" Hrastnik 
-
-pkgname=elasticsearch
-pkgver=7.2.0
-pkgrel=1
-pkgdesc="Distributed RESTful search engine built on top of Lucene"
-arch=('x86_64')
-url="https://www.elastic.co/products/elasticsearch;
-license=('Apache')
-depends=('java-runtime-headless' 'systemd')
-source=(
-  
"https://artifacts.elastic.co/downloads/$pkgname/$pkgname-oss-$pkgver-linux-x86_64.tar.gz;
-  elasticsearch-env
-  elasticsearch.service
-  elasticsearch@.service
-  elasticsearch-keystore.service
-  elasticsearch-keystore@.service
-  elasticsearch-sysctl.conf
-  elasticsearch-user.conf
-  elasticsearch-tmpfile.conf
-  elasticsearch.default
-)
-sha256sums=('4c77cfce006de44f4657469523c6305e2ae06b60021cabb4398c2d0a48e8920a'
-'ff530bf9440364955e9f38b5c5cc0782da1b1ac1c54870b162b7ded81e56eebc'
-'de3842935b6ef9cb8a05dc18334112f534dccc2292e36052df942a92de7e66db'
-'13090c1d23ae0a21bf6f0f1d1da795d38972f1674b20c3d2d32f54311aa99094'
-'bac40d87acaa5bee209ceb6dfa253009a072e9243fe3b94be42fb5cd44727d6f'
-'22a78a165a810608188faea6f2b0b381f27b1e9d60126c3b3e729124540589a8'
-'b3feb1e9c7e7ce6b33cea6c727728ed700332aae942ca475c3bcc1d56b9f113c'
-'815f6a39db6f54bb40750c382ffbdc298d2c4c187ee8ea7e2f855923e2ff354b'
-'3173e3efa429507e6329f518699a072dfd442d9b5da7c62452a55f82334dd2b5'
-'bb74e5fb8bc28f2125e015395ab05bea117b72bfc6dadbca827694b362ee0bf8')
-
-backup=('etc/elasticsearch/elasticsearch.yml'
-'etc/elasticsearch/log4j2.properties'
-'etc/elasticsearch/jvm.options'
-'etc/default/elasticsearch')
-
-prepare() {
-  cd "$srcdir"/$pkgname-$pkgver
-
-  find bin -type f \( -name \*.bat -o -name \*.exe \) -delete
-  find bin -type f \( -name \*.jar -o -name \*-env \) -exec chmod a-x {} +
-  find bin -type f ! -name \*.jar -exec \
-sed -r 's;source .*/(.*)-env;source /usr/share/elasticsearch/\1-env;' -i 
{} +
-  find bin -type f -name 

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

2019-08-01 Thread Felix Yan via arch-commits
Date: Thursday, August 1, 2019 @ 09:41:45
  Author: felixonmars
Revision: 496401

upgpkg: haskell-mustache 2.3.0-211

rebuild with splitmix 0.0.3

Modified:
  haskell-mustache/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-01 09:40:22 UTC (rev 496400)
+++ PKGBUILD2019-08-01 09:41:45 UTC (rev 496401)
@@ -3,7 +3,7 @@
 _hkgname=mustache
 pkgname=haskell-mustache
 pkgver=2.3.0
-pkgrel=210
+pkgrel=211
 pkgdesc="A mustache template parser library."
 url="https://github.com/JustusAdam/mustache;
 license=('BSD')


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

2019-08-01 Thread Felix Yan via arch-commits
Date: Thursday, August 1, 2019 @ 09:42:52
  Author: felixonmars
Revision: 496404

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-optparse-simple/repos/community-staging-x86_64/
  haskell-optparse-simple/repos/community-staging-x86_64/PKGBUILD
(from rev 496403, haskell-optparse-simple/trunk/PKGBUILD)

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

Copied: haskell-optparse-simple/repos/community-staging-x86_64/PKGBUILD (from 
rev 496403, haskell-optparse-simple/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-01 09:42:52 UTC (rev 496404)
@@ -0,0 +1,44 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=optparse-simple
+pkgname=haskell-optparse-simple
+pkgver=0.1.1.2
+pkgrel=40
+pkgdesc="Simple interface to optparse-applicative"
+url="https://hackage.haskell.org/package/${_hkgname};
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-githash' 'haskell-optparse-applicative')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('a2810745ba4a3fd62585fc7367f02ff8eb70752d4836da495a73f15d2b1672d7b5ff59a72bcbc8688efff71fec189c5cc11331b6c46b714233ad86049d581c03')
+
+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 \
+ -f-build-example
+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-mustache/repos (2 files)

2019-08-01 Thread Felix Yan via arch-commits
Date: Thursday, August 1, 2019 @ 09:41:55
  Author: felixonmars
Revision: 496402

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-mustache/repos/community-staging-x86_64/PKGBUILD (from rev 
496401, haskell-mustache/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-01 09:41:55 UTC (rev 496402)
@@ -0,0 +1,44 @@
+# Maintainer: Felix Yan 
+
+_hkgname=mustache
+pkgname=haskell-mustache
+pkgver=2.3.0
+pkgrel=211
+pkgdesc="A mustache template parser library."
+url="https://github.com/JustusAdam/mustache;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-either' 
'haskell-unordered-containers' 'haskell-vector'
+ 'haskell-scientific' 'haskell-th-lift' 'haskell-cmdargs' 
'haskell-yaml')
+makedepends=('ghc' 'haskell-hspec' 'haskell-base-unicode-symbols' 
'haskell-wreq' 'haskell-zlib'
+ 'haskell-tar' 'haskell-lens' 'haskell-temporary')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('bdefb406a44bb3648ca7129128767be04c780d967757385770111a0da8f91ff7165213038e8abc7799b28b66eb7d2f47383346837fad7e6327dad7aa714971f6')
+
+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"
+}


  1   2   3   4   5   >