[arch-commits] Commit in xfce4-screensaver/repos/extra-x86_64 (4 files)

2020-03-29 Thread Christian Hesse via arch-commits
Date: Monday, March 30, 2020 @ 05:37:32
  Author: eworm
Revision: 378702

archrelease: copy trunk to extra-x86_64

Added:
  xfce4-screensaver/repos/extra-x86_64/0001-Send-empty-DBus-responses.patch
(from rev 378701, 
xfce4-screensaver/trunk/0001-Send-empty-DBus-responses.patch)
  xfce4-screensaver/repos/extra-x86_64/PKGBUILD
(from rev 378701, xfce4-screensaver/trunk/PKGBUILD)
Deleted:
  xfce4-screensaver/repos/extra-x86_64/0001-Send-empty-DBus-responses.patch
  xfce4-screensaver/repos/extra-x86_64/PKGBUILD

--+
 0001-Send-empty-DBus-responses.patch |  140 -
 PKGBUILD |   76 -
 2 files changed, 104 insertions(+), 112 deletions(-)

Deleted: 0001-Send-empty-DBus-responses.patch
===
--- 0001-Send-empty-DBus-responses.patch2020-03-30 05:37:24 UTC (rev 
378701)
+++ 0001-Send-empty-DBus-responses.patch2020-03-30 05:37:32 UTC (rev 
378702)
@@ -1,70 +0,0 @@
-From cc33cea3df2ab361cdbddecfa901fbc048ce278b Mon Sep 17 00:00:00 2001
-From: Sean Davis 
-Date: Sat, 28 Mar 2020 08:23:00 -0400
-Subject: Send empty DBus responses (bug #16522)
-

- src/gs-listener-dbus.c | 27 +++
- 1 file changed, 23 insertions(+), 4 deletions(-)
-
-diff --git a/src/gs-listener-dbus.c b/src/gs-listener-dbus.c
-index 3463ef9..6307324 100644
 a/src/gs-listener-dbus.c
-+++ b/src/gs-listener-dbus.c
-@@ -832,6 +832,25 @@ listener_remove_ck_ref_entry (GSListener *listener,
- }
- #endif
- 
-+static DBusHandlerResult
-+listener_dbus_confirm (DBusConnection *connection,
-+   DBusMessage*message) {
-+DBusMessage*reply;
-+
-+reply = dbus_message_new_method_return (message);
-+if (reply == NULL) {
-+g_error ("No memory");
-+}
-+
-+if (!dbus_connection_send (connection, reply, NULL)) {
-+g_error ("No memory");
-+}
-+
-+dbus_message_unref (reply);
-+
-+return DBUS_HANDLER_RESULT_HANDLED;
-+}
-+
- static DBusHandlerResult
- listener_dbus_add_ref_entry (GSListener *listener,
-  int entry_type,
-@@ -1306,15 +1325,15 @@ listener_dbus_handle_session_message (DBusConnection 
*connection,
- 
- if (dbus_message_is_method_call (message, GS_LISTENER_SERVICE, "Lock")) {
- g_signal_emit (listener, signals[LOCK], 0);
--return DBUS_HANDLER_RESULT_HANDLED;
-+return listener_dbus_confirm (connection, message);
- }
- if (dbus_message_is_method_call (message, GS_LISTENER_SERVICE, "Quit")) {
- g_signal_emit (listener, signals[QUIT], 0);
--return DBUS_HANDLER_RESULT_HANDLED;
-+return listener_dbus_confirm (connection, message);
- }
- if (dbus_message_is_method_call (message, GS_LISTENER_SERVICE, "Cycle")) {
- g_signal_emit (listener, signals[CYCLE], 0);
--return DBUS_HANDLER_RESULT_HANDLED;
-+return listener_dbus_confirm (connection, message);
- }
- if (dbus_message_is_method_call (message, GS_LISTENER_SERVICE, 
"Inhibit")) {
- return listener_dbus_add_ref_entry (listener, REF_ENTRY_TYPE_INHIBIT, 
connection, message);
-@@ -1345,7 +1364,7 @@ listener_dbus_handle_session_message (DBusConnection 
*connection,
- }
- if (dbus_message_is_method_call (message, GS_LISTENER_SERVICE, 
"SimulateUserActivity")) {
- g_signal_emit (listener, signals[SIMULATE_USER_ACTIVITY], 0);
--return DBUS_HANDLER_RESULT_HANDLED;
-+return listener_dbus_confirm (connection, message);
- }
- if (dbus_message_is_method_call (message, 
"org.freedesktop.DBus.Introspectable", "Introspect")) {
- return do_introspect (connection, message, local_interface);
--- 
-cgit v1.2.3
-

Copied: 
xfce4-screensaver/repos/extra-x86_64/0001-Send-empty-DBus-responses.patch (from 
rev 378701, xfce4-screensaver/trunk/0001-Send-empty-DBus-responses.patch)
===
--- 0001-Send-empty-DBus-responses.patch(rev 0)
+++ 0001-Send-empty-DBus-responses.patch2020-03-30 05:37:32 UTC (rev 
378702)
@@ -0,0 +1,70 @@
+From cc33cea3df2ab361cdbddecfa901fbc048ce278b Mon Sep 17 00:00:00 2001
+From: Sean Davis 
+Date: Sat, 28 Mar 2020 08:23:00 -0400
+Subject: Send empty DBus responses (bug #16522)
+
+---
+ src/gs-listener-dbus.c | 27 +++
+ 1 file changed, 23 insertions(+), 4 deletions(-)
+
+diff --git a/src/gs-listener-dbus.c b/src/gs-listener-dbus.c
+index 3463ef9..6307324 100644
+--- a/src/gs-listener-dbus.c
 b/src/gs-listener-dbus.c
+@@ -832,6 +832,25 @@ listener_remove_ck_ref_entry (GSListener *listener,
+ }
+ #endif
+ 
++static DBusHandlerResult
++listener_dbus_confirm (DBusConnection *connection,
++   DBusMessage*message) {
++DBusMessage*reply;
++
++reply = 

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

2020-03-29 Thread Christian Hesse via arch-commits
Date: Monday, March 30, 2020 @ 05:37:24
  Author: eworm
Revision: 378701

upgpkg: xfce4-screensaver 0.1.10-1

new upstream release

Modified:
  xfce4-screensaver/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-30 05:19:09 UTC (rev 378700)
+++ PKGBUILD2020-03-30 05:37:24 UTC (rev 378701)
@@ -1,8 +1,8 @@
 # Maintainer: Christian Hesse 
 
 pkgname=xfce4-screensaver
-pkgver=0.1.9
-pkgrel=3
+pkgver=0.1.10
+pkgrel=1
 pkgdesc='Xfce Screensaver'
 arch=('x86_64')
 url='https://docs.xfce.org/apps/screensaver/start'
@@ -11,17 +11,9 @@
 depends=('libxss' 'libxklavier' 'libwnck3' 'garcon' 'dbus-glib' 'python' 
'python-gobject')
 makedepends=('intltool')
 backup=('etc/pam.d/xfce4-screensaver')
-source=("https://archive.xfce.org/src/apps/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.bz2;
-'0001-Send-empty-DBus-responses.patch')
-sha256sums=('5743ff271f3df3cdeb7f9e8ba63548f6cf0c9e37a16ebf1ccfccf827bd47e486'
-'fe4c1c13431f62ca0cd22fa21ff97648c8edaf023d55027337b2a096e852c680')
+source=("https://archive.xfce.org/src/apps/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.bz2;)
+sha256sums=('586f1c78dd6745a20e9ce9f12d0117189d597ba7ad0c8ffcfcd25c9bb05f1d57')
 
-prepare() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  patch -Np1 < ../0001-Send-empty-DBus-responses.patch
-}
-
 build() {
   cd "$srcdir/$pkgname-$pkgver"
 


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

2020-03-29 Thread Andreas Radke via arch-commits
Date: Monday, March 30, 2020 @ 05:19:03
  Author: andyrtr
Revision: 378699

upgpkg: liborcus 0.15.4-1: upstream update 0.15.4

Modified:
  liborcus/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-30 05:12:18 UTC (rev 378698)
+++ PKGBUILD2020-03-30 05:19:03 UTC (rev 378699)
@@ -2,7 +2,7 @@
 # Contributor: Thomas Arnhold 
 
 pkgname=liborcus
-pkgver=0.15.3
+pkgver=0.15.4
 pkgrel=1
 pkgdesc="File import filter library for spreadsheet documents."
 arch=('x86_64')
@@ -11,7 +11,7 @@
 depends=('libixion')
 makedepends=('boost' 'mdds')
 source=(https://kohei.us/files/orcus/src/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('3a6d50127937f2347b145c5ca3e9cf9401421c09e004d535a94ed8b235b6eb91')
+sha256sums=('b02173c1787373fa728fdaad1b9658184dbcefefcc23c3afcf5400571282e512')
 
 build() {
 cd "${pkgname}"-${pkgver}


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

2020-03-29 Thread Andreas Radke via arch-commits
Date: Monday, March 30, 2020 @ 05:19:09
  Author: andyrtr
Revision: 378700

archrelease: copy trunk to extra-x86_64

Added:
  liborcus/repos/extra-x86_64/PKGBUILD
(from rev 378699, liborcus/trunk/PKGBUILD)
Deleted:
  liborcus/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-03-30 05:19:03 UTC (rev 378699)
+++ PKGBUILD2020-03-30 05:19:09 UTC (rev 378700)
@@ -1,30 +0,0 @@
-# Maintainer: AndyRTR 
-# Contributor: Thomas Arnhold 
-
-pkgname=liborcus
-pkgver=0.15.3
-pkgrel=1
-pkgdesc="File import filter library for spreadsheet documents."
-arch=('x86_64')
-url="https://gitlab.com/orcus/orcus/blob/master/README.md;
-license=('MPL')
-depends=('libixion')
-makedepends=('boost' 'mdds')
-source=(https://kohei.us/files/orcus/src/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('3a6d50127937f2347b145c5ca3e9cf9401421c09e004d535a94ed8b235b6eb91')
-
-build() {
-cd "${pkgname}"-${pkgver}
-./configure --prefix=/usr
-make
-}
-
-check() {
-cd "${pkgname}"-${pkgver}
-make check
-}
-
-package() {
-cd "${pkgname}"-${pkgver}
-make DESTDIR="$pkgdir" install
-}

Copied: liborcus/repos/extra-x86_64/PKGBUILD (from rev 378699, 
liborcus/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-03-30 05:19:09 UTC (rev 378700)
@@ -0,0 +1,30 @@
+# Maintainer: AndyRTR 
+# Contributor: Thomas Arnhold 
+
+pkgname=liborcus
+pkgver=0.15.4
+pkgrel=1
+pkgdesc="File import filter library for spreadsheet documents."
+arch=('x86_64')
+url="https://gitlab.com/orcus/orcus/blob/master/README.md;
+license=('MPL')
+depends=('libixion')
+makedepends=('boost' 'mdds')
+source=(https://kohei.us/files/orcus/src/${pkgname}-${pkgver}.tar.xz)
+sha256sums=('b02173c1787373fa728fdaad1b9658184dbcefefcc23c3afcf5400571282e512')
+
+build() {
+cd "${pkgname}"-${pkgver}
+./configure --prefix=/usr
+make
+}
+
+check() {
+cd "${pkgname}"-${pkgver}
+make check
+}
+
+package() {
+cd "${pkgname}"-${pkgver}
+make DESTDIR="$pkgdir" install
+}


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

2020-03-29 Thread Andreas Radke via arch-commits
Date: Monday, March 30, 2020 @ 05:11:58
  Author: andyrtr
Revision: 378697

upgpkg: xorg-server 1.20.8-1: upstream update 1.20.8

Modified:
  xorg-server/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-30 00:44:57 UTC (rev 378696)
+++ PKGBUILD2020-03-30 05:11:58 UTC (rev 378697)
@@ -4,7 +4,7 @@
 pkgbase=xorg-server
 pkgname=('xorg-server' 'xorg-server-xephyr' 'xorg-server-xvfb' 
'xorg-server-xnest'
  'xorg-server-xwayland' 'xorg-server-common' 'xorg-server-devel')
-pkgver=1.20.7
+pkgver=1.20.8
 pkgrel=1
 arch=('x86_64')
 license=('custom')
@@ -27,7 +27,7 @@
   'DD38563A8A8224537D1F90E45B8A2D50A0ECD0D3'
   '995ED5C8A6138EB0961F18474C09DD83CAAA50B2'
   '3BB639E56F861FA2E86505690FDD682D974CA72A')
-sha512sums=('c67612e379111c28c68941c0a660abf72be7669591b41ccaa3b3474c4540a03822a28d892831b12ce08bac6e5e7e33504c2d19ef2a0c2298f83bd083459f96f5'
+sha512sums=('ab0ec0fcbf490c61558b9297f61b58fd2dedb676c78bef6431dc9166054743b43a0091b88a8b3f4e81d1f539909440ee7e188a298cefabe13ea89159639cd805'
 'SKIP'
 
'd84f4d63a502b7af76ea49944d1b21e2030dfd250ac1e82878935cf631973310ac9ba1f0dfedf10980ec6c7431d61b7daa4b7bbaae9ee477b2c19812c1661a22'
 
'74e1aa0c101e42f0f25349d305641873b3a79ab3b9bb2d4ed68ba8e392b4db2701fcbc35826531ee2667d3ee55673e4b4fecc2a9f088141af29ceb400f72f363'


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

2020-03-29 Thread Andreas Radke via arch-commits
Date: Monday, March 30, 2020 @ 05:12:18
  Author: andyrtr
Revision: 378698

archrelease: copy trunk to testing-x86_64

Added:
  xorg-server/repos/testing-x86_64/
  xorg-server/repos/testing-x86_64/0001-v2-FS-58644.patch
(from rev 378697, xorg-server/trunk/0001-v2-FS-58644.patch)
  xorg-server/repos/testing-x86_64/0002-fix-libshadow-2.patch
(from rev 378697, xorg-server/trunk/0002-fix-libshadow-2.patch)
  xorg-server/repos/testing-x86_64/PKGBUILD
(from rev 378697, xorg-server/trunk/PKGBUILD)
  xorg-server/repos/testing-x86_64/xorg-server.install
(from rev 378697, xorg-server/trunk/xorg-server.install)
  xorg-server/repos/testing-x86_64/xserver-autobind-hotplug.patch
(from rev 378697, xorg-server/trunk/xserver-autobind-hotplug.patch)
  xorg-server/repos/testing-x86_64/xvfb-run
(from rev 378697, xorg-server/trunk/xvfb-run)
  xorg-server/repos/testing-x86_64/xvfb-run.1
(from rev 378697, xorg-server/trunk/xvfb-run.1)

+
 0001-v2-FS-58644.patch |   57 +++
 0002-fix-libshadow-2.patch |   30 +++
 PKGBUILD   |  201 ++
 xorg-server.install|   18 ++
 xserver-autobind-hotplug.patch |  293 +++
 xvfb-run   |  200 ++
 xvfb-run.1 |  282 +
 7 files changed, 1081 insertions(+)

Copied: xorg-server/repos/testing-x86_64/0001-v2-FS-58644.patch (from rev 
378697, xorg-server/trunk/0001-v2-FS-58644.patch)
===
--- testing-x86_64/0001-v2-FS-58644.patch   (rev 0)
+++ testing-x86_64/0001-v2-FS-58644.patch   2020-03-30 05:12:18 UTC (rev 
378698)
@@ -0,0 +1,57 @@
+From 17584285d296acaa80f131ca0e8b75eff675962b Mon Sep 17 00:00:00 2001
+From: fafryd 
+Date: Sun, 20 May 2018 14:30:43 +0200
+Subject: [PATCH] v2 FS#58644
+
+---
+ hw/xfree86/common/meson.build | 13 +
+ hw/xfree86/meson.build| 12 +++-
+ 2 files changed, 20 insertions(+), 5 deletions(-)
+
+diff --git a/hw/xfree86/common/meson.build b/hw/xfree86/common/meson.build
+index 514999ff6..0eff6e488 100644
+--- a/hw/xfree86/common/meson.build
 b/hw/xfree86/common/meson.build
+@@ -1,3 +1,16 @@
++if get_option('suid_wrapper')
++x_sh = configure_file(
++input: '../Xorg.sh.in',
++output: 'Xorg',
++configuration: conf_data,
++)
++install_data(
++   x_sh,
++   install_mode: 'rwxr-xr-x',
++   install_dir: join_paths(get_option('prefix'), get_option('bindir')),
++)
++endif
++
+ srcs_xorg_common = [
+ 'xf86fbBus.c',
+ 'xf86noBus.c',
+diff --git a/hw/xfree86/meson.build b/hw/xfree86/meson.build
+index cacf56d4c..d1295d404 100644
+--- a/hw/xfree86/meson.build
 b/hw/xfree86/meson.build
+@@ -145,11 +145,13 @@ if get_option('suid_wrapper')
+ install_dir: get_option('libexecdir'),
+ # install_mode: ['r-sr-xr-x', 0, 0],
+ )
+-configure_file(
+-input: 'Xorg.sh.in',
+-output: 'Xorg',
+-configuration: conf_data,
+-install_dir: join_paths(get_option('prefix'), get_option('bindir')),
++ meson.add_install_script(
++'sh', '-c',
++'chmod u+s @0@@1@/@2@'.format(
++'${DESTDIR}',
++join_paths(get_option('prefix'), get_option('libexecdir')),
++'Xorg.wrap'
++)
+ )
+ endif
+ 
+-- 
+2.17.0
+

Copied: xorg-server/repos/testing-x86_64/0002-fix-libshadow-2.patch (from rev 
378697, xorg-server/trunk/0002-fix-libshadow-2.patch)
===
--- testing-x86_64/0002-fix-libshadow-2.patch   (rev 0)
+++ testing-x86_64/0002-fix-libshadow-2.patch   2020-03-30 05:12:18 UTC (rev 
378698)
@@ -0,0 +1,30 @@
+From a530b6e8923f2b9153a773c8618a1e2f41619288 Mon Sep 17 00:00:00 2001
+From: Adam Jackson 
+Date: Tue, 30 Apr 2019 18:01:27 -0400
+Subject: [PATCH] meson: Fix libshadow.so linkage
+
+Don't link against fb, it's the driver's responsibility to load that
+first. Underlinking like this is unpleasant but this matches what
+autotools does.
+
+Fixes: xorg/xserver#540
+---
+ hw/xfree86/dixmods/meson.build | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/hw/xfree86/dixmods/meson.build b/hw/xfree86/dixmods/meson.build
+index 835d23215..0562b630f 100644
+--- a/hw/xfree86/dixmods/meson.build
 b/hw/xfree86/dixmods/meson.build
+@@ -34,7 +34,7 @@ shared_module(
+ c_args: xorg_c_args,
+ dependencies: common_dep,
+ link_whole: libxserver_miext_shadow,
+-link_with: [fb, e],
++link_with: e,
+ 
+ install: true,
+ install_dir: module_dir,
+-- 
+2.22.0
+

Copied: xorg-server/repos/testing-x86_64/PKGBUILD (from rev 378697, 
xorg-server/trunk/PKGBUILD)
===
--- 

[arch-commits] Commit in calibre/repos/community-x86_64 (10 files)

2020-03-29 Thread Eli Schwartz via arch-commits
Date: Monday, March 30, 2020 @ 02:37:39
  Author: eschwartz
Revision: 606705

archrelease: copy trunk to community-x86_64

Added:
  calibre/repos/community-x86_64/0001-De-vendor-pychm.patch
(from rev 606704, calibre/trunk/0001-De-vendor-pychm.patch)
  calibre/repos/community-x86_64/PKGBUILD
(from rev 606704, calibre/trunk/PKGBUILD)
  calibre/repos/community-x86_64/calibre-alternatives.sh
(from rev 606704, calibre/trunk/calibre-alternatives.sh)
  calibre/repos/community-x86_64/calibre-common.install
(from rev 606704, calibre/trunk/calibre-common.install)
  calibre/repos/community-x86_64/calibre.install
(from rev 606704, calibre/trunk/calibre.install)
Deleted:
  calibre/repos/community-x86_64/0001-De-vendor-pychm.patch
  calibre/repos/community-x86_64/PKGBUILD
  calibre/repos/community-x86_64/calibre-alternatives.sh
  calibre/repos/community-x86_64/calibre-common.install
  calibre/repos/community-x86_64/calibre.install

+
 0001-De-vendor-pychm.patch |13730 +--
 PKGBUILD   |  352 -
 calibre-alternatives.sh|  122 
 calibre-common.install |   18 
 calibre.install|   14 
 5 files changed, 7118 insertions(+), 7118 deletions(-)

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


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

2020-03-29 Thread Eli Schwartz via arch-commits
Date: Monday, March 30, 2020 @ 02:37:13
  Author: eschwartz
Revision: 606704

upgpkg: calibre 4.13.0-1: upstream release

Modified:
  calibre/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-30 02:07:54 UTC (rev 606703)
+++ PKGBUILD2020-03-30 02:37:13 UTC (rev 606704)
@@ -8,7 +8,7 @@
 
 pkgbase=calibre
 pkgname=('calibre' 'calibre-common' 'calibre-python3')
-pkgver=4.12.0
+pkgver=4.13.0
 pkgrel=1
 pkgdesc="Ebook management application"
 arch=('x86_64')
@@ -28,11 +28,11 @@
 "https://calibre-ebook.com/signatures/${pkgbase}-${pkgver}.tar.xz.sig;
 "0001-De-vendor-pychm.patch"
 "calibre-alternatives.sh")
-sha256sums=('d111bfd36d3be058234c4f3a4f468a05a3f60b8e3967a530e39e35056ea19b90'
+sha256sums=('f9587dea4f9ea76c6a5ec11b04ee66d0199d4ab3a4aad8c87966fed8ee76e1f6'
 'SKIP'
 'f7b829aea1d33818808cbeeb9a295e18e49edf619a5bc89b8315c88f56ce4d25'
 '940cc7081d0a64ba363bb0e1a1d8e0563c676458f90db845f2fbdd4195c075b3')
-b2sums=('b8dd24152b79790c8d22d3c0aa9482f69250fe177499e01c6c0564bf31946d0266a2e3053549f037c7ea7626b18a27798097bfbe0caf93f97585d4869c475ab9'
+b2sums=('46d012d633b98fd892c194692d007d9c383b0cce520c4b9c97a74ab6da366efbc8861ed718b4a92d331e800e4cd44d27d51acfda8cbeca7726ba3e50cdfe139a'
 'SKIP'
 
'c35181c70084813772c4d593311b48b3e3bcc3b4e9e8ee58112b9beab2bbc0de1ee22aafc3d06cfd812f87a2e91292f7b7f1dc5f522c55440f415b6b265d5671'
 
'543df218dfd2d4152a941ab57118d69bf4c6927e8020ee53c9a8b38efe9c89f032dc6385207e134cc9f69bfdc9cbcf63cd92fa6ea1647cbd534c5a511a5d1e91')


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

2020-03-29 Thread Eli Schwartz via arch-commits
Date: Monday, March 30, 2020 @ 02:07:54
  Author: eschwartz
Revision: 606703

archrelease: copy trunk to community-x86_64

Added:
  pageedit/repos/community-x86_64/PKGBUILD
(from rev 606702, pageedit/trunk/PKGBUILD)
Deleted:
  pageedit/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-03-30 02:07:39 UTC (rev 606702)
+++ PKGBUILD2020-03-30 02:07:54 UTC (rev 606703)
@@ -1,39 +0,0 @@
-# Maintainer: Eli Schwartz 
-
-pkgname=pageedit
-pkgver=1.1.1
-pkgrel=1
-pkgdesc="Simple Single Page XHTML Visual Editor, split from Sigil's BookView"
-arch=('x86_64')
-url="https://github.com/Sigil-Ebook/PageEdit;
-license=('GPL3')
-depends=('qt5-webengine')
-makedepends=('cmake' 'qt5-tools')
-source=("PageEdit-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz"
-"${url}/releases/download/${pkgver}/PageEdit-${pkgver}.tar.gz.sig")
-sha256sums=('9d5537a4a0fb8e2c4895e873ebf4971c7af9f92a19c8dd5cc8e7931689787bfc'
-'SKIP')
-b2sums=('e57bda966dbb1c4001afe88976397b57b2c3884f8e1e16cbb94b95f8013d40a8e25cb2a98f0fa71988ff3ae41f228e389022884e7a5b649f4eee369145c3be9e'
-'SKIP')
-validpgpkeys=('B5A56206AB0FBC1A24EFAB8AA166D29A8FCDAC63') # Doug Massay 

-
-build() {
-mkdir -p "${srcdir}"/PageEdit-${pkgver}/build
-cd "${srcdir}"/PageEdit-${pkgver}/build
-
-cmake -G "Unix Makefiles" \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DINSTALL_BUNDLED_DICTS=0 \
--DCMAKE_C_FLAGS:STRING="${CFLAGS}" \
--DCMAKE_CXX_FLAGS:STRING="${CXXFLAGS}" \
--DCMAKE_BUILD_TYPE=Release \
-..
-make
-}
-
-package() {
-cd "${srcdir}"/PageEdit-${pkgver}/build
-
-make install DESTDIR="${pkgdir}"
-}

Copied: pageedit/repos/community-x86_64/PKGBUILD (from rev 606702, 
pageedit/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-03-30 02:07:54 UTC (rev 606703)
@@ -0,0 +1,39 @@
+# Maintainer: Eli Schwartz 
+
+pkgname=pageedit
+pkgver=1.2.0
+pkgrel=1
+pkgdesc="Simple Single Page XHTML Visual Editor, split from Sigil's BookView"
+arch=('x86_64')
+url="https://github.com/Sigil-Ebook/PageEdit;
+license=('GPL3')
+depends=('qt5-webengine')
+makedepends=('cmake' 'qt5-tools')
+source=("PageEdit-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz"
+"${url}/releases/download/${pkgver}/PageEdit-${pkgver}.tar.gz.sig")
+sha256sums=('9142741f2321e2b991fc053a4b8f1755266733adaf75705b1215e2fbf788bb17'
+'SKIP')
+b2sums=('9e282f33ffcd24e50a151c48188f2ba1617352be7c658caebaeca145d0c4d1ce9f30f3e42d6ffe2234aa326427a00a1f3ba0f6e60c518ec978b6780c913b40e0'
+'SKIP')
+validpgpkeys=('B5A56206AB0FBC1A24EFAB8AA166D29A8FCDAC63') # Doug Massay 

+
+build() {
+mkdir -p "${srcdir}"/PageEdit-${pkgver}/build
+cd "${srcdir}"/PageEdit-${pkgver}/build
+
+cmake -G "Unix Makefiles" \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DINSTALL_BUNDLED_DICTS=0 \
+-DCMAKE_C_FLAGS:STRING="${CFLAGS}" \
+-DCMAKE_CXX_FLAGS:STRING="${CXXFLAGS}" \
+-DCMAKE_BUILD_TYPE=Release \
+..
+make
+}
+
+package() {
+cd "${srcdir}"/PageEdit-${pkgver}/build
+
+make install DESTDIR="${pkgdir}"
+}


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

2020-03-29 Thread Eli Schwartz via arch-commits
Date: Monday, March 30, 2020 @ 02:07:39
  Author: eschwartz
Revision: 606702

upgpkg: pageedit 1.2.0-1: upstream release

Modified:
  pageedit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-30 02:03:35 UTC (rev 606701)
+++ PKGBUILD2020-03-30 02:07:39 UTC (rev 606702)
@@ -1,7 +1,7 @@
 # Maintainer: Eli Schwartz 
 
 pkgname=pageedit
-pkgver=1.1.1
+pkgver=1.2.0
 pkgrel=1
 pkgdesc="Simple Single Page XHTML Visual Editor, split from Sigil's BookView"
 arch=('x86_64')
@@ -11,9 +11,9 @@
 makedepends=('cmake' 'qt5-tools')
 source=("PageEdit-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz"
 "${url}/releases/download/${pkgver}/PageEdit-${pkgver}.tar.gz.sig")
-sha256sums=('9d5537a4a0fb8e2c4895e873ebf4971c7af9f92a19c8dd5cc8e7931689787bfc'
+sha256sums=('9142741f2321e2b991fc053a4b8f1755266733adaf75705b1215e2fbf788bb17'
 'SKIP')
-b2sums=('e57bda966dbb1c4001afe88976397b57b2c3884f8e1e16cbb94b95f8013d40a8e25cb2a98f0fa71988ff3ae41f228e389022884e7a5b649f4eee369145c3be9e'
+b2sums=('9e282f33ffcd24e50a151c48188f2ba1617352be7c658caebaeca145d0c4d1ce9f30f3e42d6ffe2234aa326427a00a1f3ba0f6e60c518ec978b6780c913b40e0'
 'SKIP')
 validpgpkeys=('B5A56206AB0FBC1A24EFAB8AA166D29A8FCDAC63') # Doug Massay 

 


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

2020-03-29 Thread Filipe Laíns via arch-commits
Date: Monday, March 30, 2020 @ 02:03:35
  Author: ffy00
Revision: 606701

archrelease: copy trunk to community-any

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

---+
 PKGBUILD  |   88 ++--
 sort_new_with_model_fix.patch |   52 +++
 2 files changed, 66 insertions(+), 74 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-03-30 02:03:15 UTC (rev 606700)
+++ PKGBUILD2020-03-30 02:03:35 UTC (rev 606701)
@@ -1,48 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Frederik “Freso” S. Olesen 
-# Contributor: Maxime Gauduin 
-
-pkgname=lutris
-pkgver=0.5.4
-pkgrel=2
-pkgdesc='Open Gaming Platform'
-arch=('any')
-url='https://lutris.net'
-license=('GPL3')
-depends=('python-gobject' 'python-yaml' 'python-evdev' 'gtk3' 'glib2' 'psmisc' 
'cabextract' 'unzip' 'p7zip' 'curl' 'xorg-xrandr'
- 'python-pillow' 'python-requests' 'gnome-desktop' 'webkit2gtk' 'gvfs' 
'mesa-demos')
-makedepends=('python-setuptools')
-checkdepends=('xorg-server-xvfb' 'python-nose-cover3' 'wine' 'xterm')
-optdepends=('wine: Windows support'
-'vulkan-icd-loader: Vulkan support'
-'lib32-vulkan-icd-loader: Vulkan support')
-makedepends=('python-setuptools')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/lutris/lutris/archive/v$pkgver.tar.gz;
-'sort_new_with_model_fix.patch')
-sha512sums=('758c2a854912e29ac579c2030ec118e406db97aa0ecb9be394b2910e48e19c87a774972299b0c83e73fb57e8db3c98a2c52d1545e8071e378d3aff263d325cc4'
-
'4c80024c47ae7165a57d94b4421bf8d61b926b5957b231570b0b2b3489d88ac08b1b16ba337ce9bc50174aa057987764363a42465af643286e5dd9cdce16e5d9')
-
-prepare() {
-  cd $pkgname-$pkgver
-
-  patch -p1 -i ../sort_new_with_model_fix.patch
-}
-
-build() {
-  cd $pkgname-$pkgver
-
-  python setup.py build
-}
-
-check() {
-  cd $pkgname-$pkgver
-
-  xvfb-run nosetests --cover-erase --with-xunit --xunit-file=nosetests.xml 
--with-coverage --cover-package=lutris --cover-xml-file=coverage.xml
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}
-

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

Deleted: sort_new_with_model_fix.patch
===
--- sort_new_with_model_fix.patch   2020-03-30 02:03:15 UTC (rev 606700)
+++ sort_new_with_model_fix.patch   2020-03-30 02:03:35 UTC (rev 606701)
@@ -1,26 +0,0 @@
-From 12a458db3c590c3f1972594e091a24cb4d65b610 Mon Sep 17 00:00:00 2001
-From: Mathieu Comandon 
-Date: Wed, 1 Jan 2020 12:47:55 -0800
-Subject: [PATCH] Support both sort_new_with_model and new_with_model
-

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

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

2020-03-29 Thread Filipe Laíns via arch-commits
Date: Monday, March 30, 2020 @ 02:03:15
  Author: ffy00
Revision: 606700

upgpkg: lutris 0.5.5-1

Modified:
  lutris/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-30 01:53:29 UTC (rev 606699)
+++ PKGBUILD2020-03-30 02:03:15 UTC (rev 606700)
@@ -3,14 +3,14 @@
 # Contributor: Maxime Gauduin 
 
 pkgname=lutris
-pkgver=0.5.4
-pkgrel=2
+pkgver=0.5.5
+pkgrel=1
 pkgdesc='Open Gaming Platform'
 arch=('any')
 url='https://lutris.net'
 license=('GPL3')
 depends=('python-gobject' 'python-yaml' 'python-evdev' 'gtk3' 'glib2' 'psmisc' 
'cabextract' 'unzip' 'p7zip' 'curl' 'xorg-xrandr'
- 'python-pillow' 'python-requests' 'gnome-desktop' 'webkit2gtk' 'gvfs' 
'mesa-demos')
+ 'python-pillow' 'python-requests' 'gnome-desktop' 'webkit2gtk' 'gvfs' 
'mesa-demos' 'python-dbus')
 makedepends=('python-setuptools')
 checkdepends=('xorg-server-xvfb' 'python-nose-cover3' 'wine' 'xterm')
 optdepends=('wine: Windows support'
@@ -17,17 +17,9 @@
 'vulkan-icd-loader: Vulkan support'
 'lib32-vulkan-icd-loader: Vulkan support')
 makedepends=('python-setuptools')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/lutris/lutris/archive/v$pkgver.tar.gz;
-'sort_new_with_model_fix.patch')
-sha512sums=('758c2a854912e29ac579c2030ec118e406db97aa0ecb9be394b2910e48e19c87a774972299b0c83e73fb57e8db3c98a2c52d1545e8071e378d3aff263d325cc4'
-
'4c80024c47ae7165a57d94b4421bf8d61b926b5957b231570b0b2b3489d88ac08b1b16ba337ce9bc50174aa057987764363a42465af643286e5dd9cdce16e5d9')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/lutris/lutris/archive/v$pkgver.tar.gz;)
+sha512sums=('d63b9c79f55238d01b6a8c8fe62a0c70d7334c023a51e92d1c99a91cfc9336d3d071d13394c49d0a26bc04549ab7b7122aa8f133da00ed5aa8ae3a7bcc63848f')
 
-prepare() {
-  cd $pkgname-$pkgver
-
-  patch -p1 -i ../sort_new_with_model_fix.patch
-}
-
 build() {
   cd $pkgname-$pkgver
 


[arch-commits] Commit in ttf-nerd-fonts-symbols/repos/community-x86_64 (4 files)

2020-03-29 Thread Daniel M. Capella via arch-commits
Date: Monday, March 30, 2020 @ 01:53:29
  Author: polyzen
Revision: 606699

archrelease: copy trunk to community-x86_64

Added:
  ttf-nerd-fonts-symbols/repos/community-x86_64/PKGBUILD
(from rev 606698, ttf-nerd-fonts-symbols/trunk/PKGBUILD)
  ttf-nerd-fonts-symbols/repos/community-x86_64/ttf-nerd-fonts-symbols.install
(from rev 606698, 
ttf-nerd-fonts-symbols/trunk/ttf-nerd-fonts-symbols.install)
Deleted:
  ttf-nerd-fonts-symbols/repos/community-x86_64/PKGBUILD
  ttf-nerd-fonts-symbols/repos/community-x86_64/ttf-nerd-fonts-symbols.install

+
 PKGBUILD   |   51 +++
 ttf-nerd-fonts-symbols.install |   26 +--
 2 files changed, 39 insertions(+), 38 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-03-30 01:52:30 UTC (rev 606698)
+++ PKGBUILD2020-03-30 01:53:29 UTC (rev 606699)
@@ -1,25 +0,0 @@
-# Maintainer: Daniel M. Capella 
-# Contributor: Asger Hautop Drewsen 
-
-pkgname=ttf-nerd-fonts-symbols
-pkgver=2.1.0
-pkgrel=1
-pkgdesc='Developer targeted patched fonts with a high number of glyphs (icons)'
-arch=('x86_64')
-url=https://github.com/ryanoasis/nerd-fonts
-license=('MIT')
-depends=('fontconfig')
-install=$pkgname.install
-source=("https://raw.githubusercontent.com/ryanoasis/nerd-fonts/$pkgver/src/glyphs/Symbols-2048-em%20Nerd%20Font%20Complete.ttf;
-
"https://raw.githubusercontent.com/ryanoasis/nerd-fonts/$pkgver/10-nerd-font-symbols.conf;
-
"https://raw.githubusercontent.com/ryanoasis/nerd-fonts/$pkgver/LICENSE;)
-sha512sums=('27570eec33e687967733633b487dd6d09ab236a710950a1a1d4eafddec545e25d5e307a4048c9cbb7b6a298e6247aa8c76277d968b5172d737fa936901de616f'
-
'4b35087c7e0a8a880a160d3abc84f983371275c091c74bfd44d01e51317e452dd42cbbd0519ba483b94978de95732ad7736c898c8fdcec451bb1096216c62e14'
-
'95712651fb58ad5f5ee1b796b1891e5cb6c62532699c08d3cd9255df46c10336faa170b4ec5a920be44d2cba68ab7726907c800e4a9b0060483437569cfe6fd3')
-
-package() {
-  install -Dm644 Symbols-2048-em%20Nerd%20Font%20Complete.ttf \
-"$pkgdir"/usr/share/fonts/TTF/'Symbols-2048-em Nerd Font Complete.ttf'
-  install -Dm644 -t "$pkgdir"/etc/fonts/conf.avail 10-nerd-font-symbols.conf
-  install -Dm644 -t "$pkgdir"/usr/share/licenses/$pkgname LICENSE
-}

Copied: ttf-nerd-fonts-symbols/repos/community-x86_64/PKGBUILD (from rev 
606698, ttf-nerd-fonts-symbols/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-03-30 01:53:29 UTC (rev 606699)
@@ -0,0 +1,26 @@
+# Maintainer: Daniel M. Capella 
+# Contributor: Asger Hautop Drewsen 
+
+pkgname=ttf-nerd-fonts-symbols
+pkgver=2.1.0
+pkgrel=2
+pkgdesc='Developer targeted font with a high number of glyphs (icons)'
+arch=('x86_64')
+url=https://github.com/ryanoasis/nerd-fonts
+license=('MIT')
+install=$pkgname.install
+source=("https://raw.githubusercontent.com/ryanoasis/nerd-fonts/$pkgver/src/glyphs/Symbols-2048-em%20Nerd%20Font%20Complete.ttf;
+
"https://raw.githubusercontent.com/ryanoasis/nerd-fonts/$pkgver/10-nerd-font-symbols.conf;
+
"Nerd_Fonts-LICENSE-$pkgver::https://raw.githubusercontent.com/ryanoasis/nerd-fonts/$pkgver/LICENSE;)
+sha512sums=('27570eec33e687967733633b487dd6d09ab236a710950a1a1d4eafddec545e25d5e307a4048c9cbb7b6a298e6247aa8c76277d968b5172d737fa936901de616f'
+
'4b35087c7e0a8a880a160d3abc84f983371275c091c74bfd44d01e51317e452dd42cbbd0519ba483b94978de95732ad7736c898c8fdcec451bb1096216c62e14'
+
'95712651fb58ad5f5ee1b796b1891e5cb6c62532699c08d3cd9255df46c10336faa170b4ec5a920be44d2cba68ab7726907c800e4a9b0060483437569cfe6fd3')
+
+package() {
+  install -Dm644 Symbols-2048-em%20Nerd%20Font%20Complete.ttf \
+"$pkgdir"/usr/share/fonts/TTF/'Symbols-2048-em Nerd Font Complete.ttf'
+  install -Dm644 -t "$pkgdir"/etc/fonts/conf.avail 10-nerd-font-symbols.conf
+  install -Dm644 Nerd_Fonts-LICENSE-$pkgver 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: ttf-nerd-fonts-symbols.install
===
--- ttf-nerd-fonts-symbols.install  2020-03-30 01:52:30 UTC (rev 606698)
+++ ttf-nerd-fonts-symbols.install  2020-03-30 01:53:29 UTC (rev 606699)
@@ -1,13 +0,0 @@
-post_install() {
-  cat << EOF
-Symlink /etc/fonts/conf.avail/10-nerd-font-symbols.conf to /etc/fonts/conf.d/
-or copy and modify as needed.
-EOF
-}
-
-post_remove() {
-  cat << EOF
-Make sure to remove /etc/fonts/conf.d/10-nerd-font-symbols.conf
-if you created it earlier.
-EOF
-}

Copied: 
ttf-nerd-fonts-symbols/repos/community-x86_64/ttf-nerd-fonts-symbols.install 
(from rev 606698, ttf-nerd-fonts-symbols/trunk/ttf-nerd-fonts-symbols.install)
===
--- ttf-nerd-fonts-symbols.install  

[arch-commits] Commit in ttf-nerd-fonts-symbols/trunk (PKGBUILD)

2020-03-29 Thread Daniel M. Capella via arch-commits
Date: Monday, March 30, 2020 @ 01:52:30
  Author: polyzen
Revision: 606698

upgpkg: ttf-nerd-fonts-symbols 2.1.0-2 Remove dep

See FS#66012

Modified:
  ttf-nerd-fonts-symbols/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-30 01:37:59 UTC (rev 606697)
+++ PKGBUILD2020-03-30 01:52:30 UTC (rev 606698)
@@ -3,16 +3,15 @@
 
 pkgname=ttf-nerd-fonts-symbols
 pkgver=2.1.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Developer targeted font with a high number of glyphs (icons)'
 arch=('x86_64')
 url=https://github.com/ryanoasis/nerd-fonts
 license=('MIT')
-depends=('fontconfig')
 install=$pkgname.install
 
source=("https://raw.githubusercontent.com/ryanoasis/nerd-fonts/$pkgver/src/glyphs/Symbols-2048-em%20Nerd%20Font%20Complete.ttf;
 
"https://raw.githubusercontent.com/ryanoasis/nerd-fonts/$pkgver/10-nerd-font-symbols.conf;
-
"https://raw.githubusercontent.com/ryanoasis/nerd-fonts/$pkgver/LICENSE;)
+
"Nerd_Fonts-LICENSE-$pkgver::https://raw.githubusercontent.com/ryanoasis/nerd-fonts/$pkgver/LICENSE;)
 
sha512sums=('27570eec33e687967733633b487dd6d09ab236a710950a1a1d4eafddec545e25d5e307a4048c9cbb7b6a298e6247aa8c76277d968b5172d737fa936901de616f'
 
'4b35087c7e0a8a880a160d3abc84f983371275c091c74bfd44d01e51317e452dd42cbbd0519ba483b94978de95732ad7736c898c8fdcec451bb1096216c62e14'
 
'95712651fb58ad5f5ee1b796b1891e5cb6c62532699c08d3cd9255df46c10336faa170b4ec5a920be44d2cba68ab7726907c800e4a9b0060483437569cfe6fd3')
@@ -21,5 +20,7 @@
   install -Dm644 Symbols-2048-em%20Nerd%20Font%20Complete.ttf \
 "$pkgdir"/usr/share/fonts/TTF/'Symbols-2048-em Nerd Font Complete.ttf'
   install -Dm644 -t "$pkgdir"/etc/fonts/conf.avail 10-nerd-font-symbols.conf
-  install -Dm644 -t "$pkgdir"/usr/share/licenses/$pkgname LICENSE
+  install -Dm644 Nerd_Fonts-LICENSE-$pkgver 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 }
+
+# vim:set ts=2 sw=2 et:


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

2020-03-29 Thread Eli Schwartz via arch-commits
Date: Monday, March 30, 2020 @ 01:37:59
  Author: eschwartz
Revision: 606697

archrelease: copy trunk to community-x86_64

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

---+
 PKGBUILD  |  136 
 sigil.install |   20 
 2 files changed, 78 insertions(+), 78 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-03-30 01:37:41 UTC (rev 606696)
+++ PKGBUILD2020-03-30 01:37:59 UTC (rev 606697)
@@ -1,68 +0,0 @@
-# Maintainer: Eli Schwartz 
-# Maintainer: Alad Wenter 
-# Contributor: Giovanni Scafora 
-# Contributor: Larry Hajali 
-
-pkgname=sigil
-pkgver=1.1.0
-pkgrel=1
-pkgdesc="multi-platform EPUB2/EPUB3 ebook editor"
-arch=('x86_64')
-url="https://sigil-ebook.com/;
-license=('GPL3')
-depends=('hicolor-icon-theme' 'hunspell' 'mathjax2' 'minizip' 
'python-css-parser'
- 'python-lxml' 'qt5-webengine')
-makedepends=('qt5-tools' 'cmake')
-optdepends=('hunspell-en_US: for English dictionary support'
-'hyphen-en: for English hyphenation support in plugins'
-'pageedit: external editor to replace BookView'
-'python-html5lib: recommended for plugins'
-'python-chardet: recommended for plugins'
-'python-cssselect: recommended for plugins'
-'python-pillow: recommended for plugins'
-'python-regex: recommended for plugins'
-'python-pyqt5: recommended for plugins'
-'tk: recommended for plugins')
-install=${pkgname}.install
-source=("Sigil-${pkgver}.tar.gz::https://github.com/Sigil-Ebook/Sigil/archive/${pkgver}.tar.gz;
-
"https://github.com/Sigil-Ebook/Sigil/releases/download/${pkgver}/Sigil-${pkgver}.tar.gz.sig;)
-sha256sums=('b22c612464f5d3f62f850c0412183d7eba0c6f4879c3d6a521f9872b6f98da79'
-'SKIP')
-b2sums=('f5e522e6cd6335ef0a897fecdc99f40da5f6be902c02fadc8bf5817bc0e88c4bacab1075995f5da1fd6bbacb8759ab9f20c6810acfeb3736d033241d1ca6f2ed'
-'SKIP')
-validpgpkeys=('B5A56206AB0FBC1A24EFAB8AA166D29A8FCDAC63') # Doug Massay 

-
-build() {
-mkdir -p "${srcdir}"/Sigil-${pkgver}/build
-cd "${srcdir}"/Sigil-${pkgver}/build
-
-cmake -G "Unix Makefiles" \
--DUSE_SYSTEM_LIBS=1 \
--DSYSTEM_LIBS_REQUIRED=1 \
--DINSTALL_BUNDLED_DICTS=0 \
--DMATHJAX_DIR=/usr/share/mathjax2 \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DCMAKE_C_FLAGS:STRING="${CFLAGS}" \
--DCMAKE_CXX_FLAGS:STRING="${CXXFLAGS}" \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_SKIP_RPATH=ON ..
-
-make
-}
-
-package() {
-cd "${srcdir}"/Sigil-${pkgver}/build
-make install DESTDIR="${pkgdir}"
-
-for _pic in 16 32 48 128 256; do
-install -D -m 0644 ../src/Resource_Files/icon/app_icon_${_pic}.png \
-
"${pkgdir}"/usr/share/icons/hicolor/${_pic}x${_pic}/apps/${pkgname}.png
-done
-install -Dm644 ../src/Resource_Files/icon/app_icon_128.png \
-"$pkgdir/usr/share/pixmaps/$pkgname.png"
-
-# Compile python bytecode
-python -m compileall 
"${pkgdir}"/usr/share/sigil/{plugin_launchers/python/,python3lib}
-python -O -m compileall 
"${pkgdir}"/usr/share/sigil/{plugin_launchers/python/,python3lib}
-}

Copied: sigil/repos/community-x86_64/PKGBUILD (from rev 606696, 
sigil/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-03-30 01:37:59 UTC (rev 606697)
@@ -0,0 +1,68 @@
+# Maintainer: Eli Schwartz 
+# Maintainer: Alad Wenter 
+# Contributor: Giovanni Scafora 
+# Contributor: Larry Hajali 
+
+pkgname=sigil
+pkgver=1.2.1
+pkgrel=1
+pkgdesc="multi-platform EPUB2/EPUB3 ebook editor"
+arch=('x86_64')
+url="https://sigil-ebook.com/;
+license=('GPL3')
+depends=('hicolor-icon-theme' 'hunspell' 'mathjax2' 'minizip' 
'python-css-parser'
+ 'python-dulwich' 'python-lxml' 'qt5-webengine')
+makedepends=('qt5-tools' 'cmake')
+optdepends=('hunspell-en_US: for English dictionary support'
+'hyphen-en: for English hyphenation support in plugins'
+'pageedit: external editor to replace BookView'
+'python-html5lib: recommended for plugins'
+'python-chardet: recommended for plugins'
+'python-cssselect: recommended for plugins'
+'python-pillow: recommended for plugins'
+'python-regex: recommended for plugins'
+'python-pyqt5: recommended for plugins'
+'tk: recommended for plugins')
+install=${pkgname}.install
+source=("Sigil-${pkgver}.tar.gz::https://github.com/Sigil-Ebook/Sigil/archive/${pkgver}.tar.gz;
+

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

2020-03-29 Thread Eli Schwartz via arch-commits
Date: Monday, March 30, 2020 @ 01:37:41
  Author: eschwartz
Revision: 606696

upgpkg: sigil 1.2.1-1: upstream release

new dependency on dulwich for the checkpointing feature

Modified:
  sigil/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-30 01:29:03 UTC (rev 606695)
+++ PKGBUILD2020-03-30 01:37:41 UTC (rev 606696)
@@ -4,7 +4,7 @@
 # Contributor: Larry Hajali 
 
 pkgname=sigil
-pkgver=1.1.0
+pkgver=1.2.1
 pkgrel=1
 pkgdesc="multi-platform EPUB2/EPUB3 ebook editor"
 arch=('x86_64')
@@ -11,7 +11,7 @@
 url="https://sigil-ebook.com/;
 license=('GPL3')
 depends=('hicolor-icon-theme' 'hunspell' 'mathjax2' 'minizip' 
'python-css-parser'
- 'python-lxml' 'qt5-webengine')
+ 'python-dulwich' 'python-lxml' 'qt5-webengine')
 makedepends=('qt5-tools' 'cmake')
 optdepends=('hunspell-en_US: for English dictionary support'
 'hyphen-en: for English hyphenation support in plugins'
@@ -26,9 +26,9 @@
 install=${pkgname}.install
 
source=("Sigil-${pkgver}.tar.gz::https://github.com/Sigil-Ebook/Sigil/archive/${pkgver}.tar.gz;
 
"https://github.com/Sigil-Ebook/Sigil/releases/download/${pkgver}/Sigil-${pkgver}.tar.gz.sig;)
-sha256sums=('b22c612464f5d3f62f850c0412183d7eba0c6f4879c3d6a521f9872b6f98da79'
+sha256sums=('5187084486513f9bd3239eb4f4961cd98192c34fe6e161f277b52511fd760861'
 'SKIP')
-b2sums=('f5e522e6cd6335ef0a897fecdc99f40da5f6be902c02fadc8bf5817bc0e88c4bacab1075995f5da1fd6bbacb8759ab9f20c6810acfeb3736d033241d1ca6f2ed'
+b2sums=('b615304d80ae1bc8b202398e4e00e25e6f13130ba5f27239d78cb847813fac6d13ddd868ed8daa496b5a5f2f37914603b3014b2c0ecb9f8ae2f0e5f6f2bdf84b'
 'SKIP')
 validpgpkeys=('B5A56206AB0FBC1A24EFAB8AA166D29A8FCDAC63') # Doug Massay 

 


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

2020-03-29 Thread Eli Schwartz via arch-commits
Date: Monday, March 30, 2020 @ 01:29:03
  Author: eschwartz
Revision: 606695

archrelease: copy trunk to community-x86_64

Added:
  samurai/repos/community-x86_64/PKGBUILD
(from rev 606694, samurai/trunk/PKGBUILD)
Deleted:
  samurai/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-03-30 01:28:45 UTC (rev 606694)
+++ PKGBUILD2020-03-30 01:29:03 UTC (rev 606695)
@@ -1,26 +0,0 @@
-# Maintainer: Eli Schwartz 
-# Contributor : Drew DeVault 
-
-pkgname=samurai
-pkgver=1.0
-pkgrel=1
-pkgdesc="ninja-compatible build tool written in C"
-arch=('x86_64')
-url="https://github.com/michaelforney/${pkgname};
-license=('ISC' 'Apache' 'MIT')
-source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha256sums=('55c73da66b5b8af8b6e26e74b55b3a9f06b763547fe6d0a6206dae68274a1438')
-b2sums=('8a16590d4e93e1b399e545e80087ff38705ada24f144d9a6c8526e4e27ab062bc2b1785da108f06721a50bda069c2df9ecb54447a23b4df3b586ff28360f66db')
-
-build() {
-cd "${srcdir}"/${pkgname}-${pkgver}
-
-make samu
-}
-
-package() {
-cd "${srcdir}"/${pkgname}-${pkgver}
-
-make install PREFIX=/usr DESTDIR="${pkgdir}"
-install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: samurai/repos/community-x86_64/PKGBUILD (from rev 606694, 
samurai/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-03-30 01:29:03 UTC (rev 606695)
@@ -0,0 +1,26 @@
+# Maintainer: Eli Schwartz 
+# Contributor : Drew DeVault 
+
+pkgname=samurai
+pkgver=1.1
+pkgrel=1
+pkgdesc="ninja-compatible build tool written in C"
+arch=('x86_64')
+url="https://github.com/michaelforney/${pkgname};
+license=('ISC' 'Apache' 'MIT')
+source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
+sha256sums=('9f31e45e65c0b270c0dae431460c53bc0a254dc98385947e3ab507b7b986a162')
+b2sums=('4bf91309f7bed10fd7c2d1f4bc506ceece676e61e783713cb870eb3cfc912a1996089af930c1fda0b149caf27f6f311b1873f889d258960625012c504063219e')
+
+build() {
+cd "${srcdir}"/${pkgname}-${pkgver}
+
+make samu
+}
+
+package() {
+cd "${srcdir}"/${pkgname}-${pkgver}
+
+make install PREFIX=/usr DESTDIR="${pkgdir}"
+install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}


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

2020-03-29 Thread Eli Schwartz via arch-commits
Date: Monday, March 30, 2020 @ 01:28:45
  Author: eschwartz
Revision: 606694

upgpkg: samurai 1.1-1: upstream release

Modified:
  samurai/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-30 00:32:23 UTC (rev 606693)
+++ PKGBUILD2020-03-30 01:28:45 UTC (rev 606694)
@@ -2,7 +2,7 @@
 # Contributor : Drew DeVault 
 
 pkgname=samurai
-pkgver=1.0
+pkgver=1.1
 pkgrel=1
 pkgdesc="ninja-compatible build tool written in C"
 arch=('x86_64')
@@ -9,8 +9,8 @@
 url="https://github.com/michaelforney/${pkgname};
 license=('ISC' 'Apache' 'MIT')
 source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha256sums=('55c73da66b5b8af8b6e26e74b55b3a9f06b763547fe6d0a6206dae68274a1438')
-b2sums=('8a16590d4e93e1b399e545e80087ff38705ada24f144d9a6c8526e4e27ab062bc2b1785da108f06721a50bda069c2df9ecb54447a23b4df3b586ff28360f66db')
+sha256sums=('9f31e45e65c0b270c0dae431460c53bc0a254dc98385947e3ab507b7b986a162')
+b2sums=('4bf91309f7bed10fd7c2d1f4bc506ceece676e61e783713cb870eb3cfc912a1996089af930c1fda0b149caf27f6f311b1873f889d258960625012c504063219e')
 
 build() {
 cd "${srcdir}"/${pkgname}-${pkgver}


[arch-commits] Commit in pipewire/repos/extra-x86_64 (4 files)

2020-03-29 Thread Jan Steffens via arch-commits
Date: Monday, March 30, 2020 @ 00:44:57
  Author: heftig
Revision: 378696

archrelease: copy trunk to extra-x86_64

Added:
  pipewire/repos/extra-x86_64/PKGBUILD
(from rev 378695, pipewire/trunk/PKGBUILD)
  pipewire/repos/extra-x86_64/pipewire.install
(from rev 378695, pipewire/trunk/pipewire.install)
Deleted:
  pipewire/repos/extra-x86_64/PKGBUILD
  pipewire/repos/extra-x86_64/pipewire.install

--+
 PKGBUILD |  184 ++---
 pipewire.install |   28 
 2 files changed, 106 insertions(+), 106 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-03-30 00:44:42 UTC (rev 378695)
+++ PKGBUILD2020-03-30 00:44:57 UTC (rev 378696)
@@ -1,92 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Maintainer: Jan de Groot 
-
-pkgbase=pipewire
-pkgname=(pipewire pipewire-docs pipewire-jack pipewire-pulse)
-pkgver=0.3.1
-pkgrel=1
-pkgdesc="Server and user space API to deal with multimedia pipelines"
-url="https://pipewire.org;
-license=(LGPL2.1)
-arch=(x86_64)
-makedepends=(git meson doxygen graphviz xmltoman valgrind jack2 libpulse
- alsa-lib gstreamer gst-plugins-base sbc rtkit vulkan-icd-loader
- dbus libsndfile bluez-libs vulkan-headers)
-_commit=74a1632f0720886d5b3b6c23ee8fcd6c03ca7aac  # tags/0.3.1
-source=("git+https://github.com/PipeWire/pipewire#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgbase
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgbase
-}
-
-build() {
-  # warning: ‘-Wformat-security’ ignored without ‘-Wformat’ [-Wformat-security]
-  CFLAGS+=" -Wformat"
-
-  arch-meson $pkgbase build \
--D docs=true \
--D man=true
-
-  ninja -C build
-}
-
-check() {
-  meson test -C build --print-errorlogs
-}
-
-_pick() {
-  local p="$1" f d; shift
-  for f; do
-d="$srcdir/$p/${f#$pkgdir/}"
-mkdir -p "$(dirname "$d")"
-mv "$f" "$d"
-rmdir -p --ignore-fail-on-non-empty "$(dirname "$f")"
-  done
-}
-
-package_pipewire() {
-  depends=(gstreamer gst-plugins-base sbc rtkit vulkan-icd-loader bluez-libs
-   libdbus-1.so libsndfile.so)
-  optdepends=('pipewire-docs: Documentation'
-  'pipewire-jack: JACK support'
-  'pipewire-pulse: PulseAudio support')
-  provides=(libpipewire-${pkgver:0:3}.so)
-  backup=(etc/pipewire/pipewire.conf)
-  install=pipewire.install
-
-  DESTDIR="$pkgdir" meson install -C build
-
-  cd "$pkgdir"
-
-  _pick docs usr/share/doc
-
-  _pick pulse usr/lib/libpulse*
-
-  _pick jack usr/lib/spa-0.2/jack
-  _pick jack usr/lib/libjack*
-}
-
-package_pipewire-docs() {
-  pkgdesc+=" (documentation)"
-  mv docs/* "$pkgdir"
-}
-
-package_pipewire-jack() {
-  pkgdesc+=" (JACK support)"
-  depends=(libpipewire-${pkgver:0:3}.so libjack.so)
-  provides=(libjack-pw.so)
-  mv jack/* "$pkgdir"
-}
-
-package_pipewire-pulse() {
-  pkgdesc+=" (PulseAudio support)"
-  depends=(libpipewire-${pkgver:0:3}.so libpulse.so libglib-2.0.so)
-  provides=(libpulse{,-simple,-mainloop-glib}-pw.so)
-  mv pulse/* "$pkgdir"
-}

Copied: pipewire/repos/extra-x86_64/PKGBUILD (from rev 378695, 
pipewire/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-03-30 00:44:57 UTC (rev 378696)
@@ -0,0 +1,92 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Maintainer: Jan de Groot 
+
+pkgbase=pipewire
+pkgname=(pipewire pipewire-docs pipewire-jack pipewire-pulse)
+pkgver=0.3.2
+pkgrel=1
+pkgdesc="Server and user space API to deal with multimedia pipelines"
+url="https://pipewire.org;
+license=(LGPL2.1)
+arch=(x86_64)
+makedepends=(git meson doxygen graphviz xmltoman valgrind jack2 libpulse
+ alsa-lib gstreamer gst-plugins-base sbc rtkit vulkan-icd-loader
+ dbus libsndfile bluez-libs vulkan-headers)
+_commit=f0f3a0a66032cf693a979dae6187cac07fa353ee  # tags/0.3.2
+source=("git+https://github.com/PipeWire/pipewire#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgbase
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgbase
+}
+
+build() {
+  # warning: ‘-Wformat-security’ ignored without ‘-Wformat’ [-Wformat-security]
+  CFLAGS+=" -Wformat"
+
+  arch-meson $pkgbase build \
+-D docs=true \
+-D man=true
+
+  ninja -C build
+}
+
+check() {
+  meson test -C build --print-errorlogs
+}
+
+_pick() {
+  local p="$1" f d; shift
+  for f; do
+d="$srcdir/$p/${f#$pkgdir/}"
+mkdir -p "$(dirname "$d")"
+mv "$f" "$d"
+rmdir -p --ignore-fail-on-non-empty "$(dirname "$f")"
+  done
+}
+
+package_pipewire() {
+  depends=(gstreamer gst-plugins-base sbc rtkit vulkan-icd-loader bluez-libs
+   libdbus-1.so libsndfile.so)
+  optdepends=('pipewire-docs: Documentation'
+  'pipewire-jack: JACK support'
+  'pipewire-pulse: PulseAudio support')
+  provides=(libpipewire-${pkgver:0:3}.so)
+  

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

2020-03-29 Thread Jan Steffens via arch-commits
Date: Monday, March 30, 2020 @ 00:44:42
  Author: heftig
Revision: 378695

0.3.2-1

Modified:
  pipewire/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-29 23:12:50 UTC (rev 378694)
+++ PKGBUILD2020-03-30 00:44:42 UTC (rev 378695)
@@ -3,7 +3,7 @@
 
 pkgbase=pipewire
 pkgname=(pipewire pipewire-docs pipewire-jack pipewire-pulse)
-pkgver=0.3.1
+pkgver=0.3.2
 pkgrel=1
 pkgdesc="Server and user space API to deal with multimedia pipelines"
 url="https://pipewire.org;
@@ -12,7 +12,7 @@
 makedepends=(git meson doxygen graphviz xmltoman valgrind jack2 libpulse
  alsa-lib gstreamer gst-plugins-base sbc rtkit vulkan-icd-loader
  dbus libsndfile bluez-libs vulkan-headers)
-_commit=74a1632f0720886d5b3b6c23ee8fcd6c03ca7aac  # tags/0.3.1
+_commit=f0f3a0a66032cf693a979dae6187cac07fa353ee  # tags/0.3.2
 source=("git+https://github.com/PipeWire/pipewire#commit=$_commit;)
 sha256sums=('SKIP')
 


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

2020-03-29 Thread Fabio Castelli via arch-commits
Date: Monday, March 30, 2020 @ 00:32:23
  Author: muflone
Revision: 606693

archrelease: copy trunk to community-any

Added:
  perl-gtk3/repos/community-any/PKGBUILD
(from rev 606692, perl-gtk3/trunk/PKGBUILD)
Deleted:
  perl-gtk3/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-03-30 00:32:12 UTC (rev 606692)
+++ PKGBUILD2020-03-30 00:32:23 UTC (rev 606693)
@@ -1,40 +0,0 @@
-# Maintainer: Muflone http://www.muflone.com/contacts/english/
-# Contributor: Ordoban 
-# Contributor: John D Jones III AKA jnbek 
-
-pkgname=perl-gtk3
-_perl_module=Gtk3
-pkgver=0.035
-pkgrel=1
-pkgdesc="Perl interface to the 3.x series of the GTK+ toolkit"
-arch=('any')
-url="https://metacpan.org/release/${_perl_module};
-license=('LGPL')
-checkdepends=('ttf-dejavu' 'xorg-server-xvfb')
-depends=('gtk3' 'perl-cairo-gobject' 'perl-glib-object-introspection')
-source=("https://cpan.metacpan.org/authors/id/X/XA/XAOC/${_perl_module}-${pkgver}.tar.gz;)
-sha256sums=('8fb9d69da95b724d70793e084ea40b7d62839e1b4ce6a5bb9579a4257b2419fe')
-options=('!emptydirs')
-
-build() {
-  cd "${_perl_module}-${pkgver}"
-  unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT
-  export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps
-  perl Makefile.PL
-  make
-}
-
-check() {
-  cd "${_perl_module}-${pkgver}"
-  unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT
-  export PERL_MM_USE_DEFAULT=1
-  xvfb-run -a -s "-extension GLX -screen 0 1280x1024x24" make test
-}
-
-package() {
-  cd "${_perl_module}-${pkgver}"
-  unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT
-  make pure_install INSTALLDIRS=vendor DESTDIR="${pkgdir}"
-  # Delete unuseful files
-  find "${pkgdir}" -name '.packlist' -delete
-}

Copied: perl-gtk3/repos/community-any/PKGBUILD (from rev 606692, 
perl-gtk3/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-03-30 00:32:23 UTC (rev 606693)
@@ -0,0 +1,40 @@
+# Maintainer: Muflone http://www.muflone.com/contacts/english/
+# Contributor: Ordoban 
+# Contributor: John D Jones III AKA jnbek 
+
+pkgname=perl-gtk3
+_perl_module=Gtk3
+pkgver=0.037
+pkgrel=1
+pkgdesc="Perl interface to the 3.x series of the GTK+ toolkit"
+arch=('any')
+url="https://metacpan.org/release/${_perl_module};
+license=('LGPL')
+checkdepends=('ttf-dejavu' 'xorg-server-xvfb')
+depends=('gtk3' 'perl-cairo-gobject' 'perl-glib-object-introspection')
+source=("https://cpan.metacpan.org/authors/id/X/XA/XAOC/${_perl_module}-${pkgver}.tar.gz;)
+sha256sums=('bf5ae1547294a78ca8ba5a88cb20f99a16e4c82bed55446aa054c944918e3f51')
+options=('!emptydirs')
+
+build() {
+  cd "${_perl_module}-${pkgver}"
+  unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT
+  export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps
+  perl Makefile.PL
+  make
+}
+
+check() {
+  cd "${_perl_module}-${pkgver}"
+  unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT
+  export PERL_MM_USE_DEFAULT=1
+  xvfb-run -a -s "-extension GLX -screen 0 1280x1024x24" make test
+}
+
+package() {
+  cd "${_perl_module}-${pkgver}"
+  unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT
+  make pure_install INSTALLDIRS=vendor DESTDIR="${pkgdir}"
+  # Delete unuseful files
+  find "${pkgdir}" -name '.packlist' -delete
+}


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

2020-03-29 Thread Fabio Castelli via arch-commits
Date: Monday, March 30, 2020 @ 00:32:12
  Author: muflone
Revision: 606692

upgpkg: perl-gtk3 0.037-1

Modified:
  perl-gtk3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-30 00:32:10 UTC (rev 606691)
+++ PKGBUILD2020-03-30 00:32:12 UTC (rev 606692)
@@ -4,7 +4,7 @@
 
 pkgname=perl-gtk3
 _perl_module=Gtk3
-pkgver=0.035
+pkgver=0.037
 pkgrel=1
 pkgdesc="Perl interface to the 3.x series of the GTK+ toolkit"
 arch=('any')
@@ -13,7 +13,7 @@
 checkdepends=('ttf-dejavu' 'xorg-server-xvfb')
 depends=('gtk3' 'perl-cairo-gobject' 'perl-glib-object-introspection')
 
source=("https://cpan.metacpan.org/authors/id/X/XA/XAOC/${_perl_module}-${pkgver}.tar.gz;)
-sha256sums=('8fb9d69da95b724d70793e084ea40b7d62839e1b4ce6a5bb9579a4257b2419fe')
+sha256sums=('bf5ae1547294a78ca8ba5a88cb20f99a16e4c82bed55446aa054c944918e3f51')
 options=('!emptydirs')
 
 build() {


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

2020-03-29 Thread Felix Yan via arch-commits
Date: Monday, March 30, 2020 @ 00:32:10
  Author: felixonmars
Revision: 606691

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: xmobar/repos/community-staging-x86_64/PKGBUILD (from rev 606690, 
xmobar/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-03-30 00:32:10 UTC (rev 606691)
@@ -0,0 +1,63 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Jelle van der Waa 
+# Contributer: Sergej Pupykin 
+# Contributor: Arch Haskell Team 
+
+pkgname=xmobar
+pkgver=0.33
+pkgrel=24
+pkgdesc='Minimalistic Text Based Status Bar'
+url='https://hackage.haskell.org/package/xmobar'
+license=('BSD')
+arch=('x86_64')
+depends=('libxft' 'libxinerama' 'libxrandr' 'libxpm' 'ghc-libs' 'haskell-x11'
+ 'haskell-x11-xft' 'haskell-utf8-string' 'haskell-network-uri'
+ 'haskell-hinotify' 'haskell-stm' 'haskell-parsec' 
'haskell-parsec-numbers'
+ 'haskell-mtl' 'haskell-regex-base' 'haskell-regex-compat'
+ 'haskell-http' 'haskell-dbus' 'haskell-libmpd' 'haskell-cereal' 
'haskell-netlink'
+ 'haskell-text' 'haskell-async' 'haskell-aeson'
+ 'haskell-timezone-olson' 'haskell-timezone-series' 'alsa-lib'
+ 'haskell-extensible-exceptions' 'haskell-http-conduit'
+ 'haskell-http-types' 'haskell-alsa-core' 'haskell-alsa-mixer')
+makedepends=('ghc' 'haskell-hspec' 'haskell-temporary')
+source=(https://github.com/jaor/xmobar/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('3a85a7c68d905dc88e181a921299d30adbb300f190a91e93d83b4fdf7a4f78f0646ec976bc405c0a82ca5547f159e5d64073d28a6a36ed83f5c831c1919c44b9')
+
+prepare() {
+  cd xmobar-$pkgver
+  sed -e 's/&& <.*,/,/g' -e 's/==.*,/,/g' -i xmobar.cabal
+}
+
+build() {
+  cd xmobar-${pkgver}
+
+  _flags=(with_xft with_utf8 with_inotify with_mpd with_alsa with_nl80211
+  with_datezone with_mpris with_dbus with_xpm with_threaded
+  with_rtsopts with_weather)
+
+  runhaskell setup configure -O \
+--enable-shared \
+--enable-executable-dynamic \
+--disable-library-vanilla \
+--prefix=/usr \
+--dynlibdir=/usr/lib \
+--libsubdir=\$compiler/site-local/\$pkgid \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie' \
+--flags="${_flags[*]}" \
+--enable-tests
+  runhaskell setup build
+}
+
+check() {
+  cd xmobar-${pkgver}
+  runhaskell setup test
+}
+
+package() {
+  cd xmobar-${pkgver}
+  runhaskell setup copy --destdir="${pkgdir}"
+  install -Dm 644 license -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:


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

2020-03-29 Thread Felix Yan via arch-commits
Date: Monday, March 30, 2020 @ 00:31:55
  Author: felixonmars
Revision: 606690

upgpkg: xmobar 0.33-24: rebuild with ChasingBottoms 1.3.1.8

Modified:
  xmobar/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-30 00:30:34 UTC (rev 606689)
+++ PKGBUILD2020-03-30 00:31:55 UTC (rev 606690)
@@ -5,7 +5,7 @@
 
 pkgname=xmobar
 pkgver=0.33
-pkgrel=23
+pkgrel=24
 pkgdesc='Minimalistic Text Based Status Bar'
 url='https://hackage.haskell.org/package/xmobar'
 license=('BSD')


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

2020-03-29 Thread Felix Yan via arch-commits
Date: Monday, March 30, 2020 @ 00:30:19
  Author: felixonmars
Revision: 606688

upgpkg: taskell 1.9.2.0-66: rebuild with ChasingBottoms 1.3.1.8

Modified:
  taskell/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-30 00:29:08 UTC (rev 606687)
+++ PKGBUILD2020-03-30 00:30:19 UTC (rev 606688)
@@ -2,7 +2,7 @@
 
 pkgname=taskell
 pkgver=1.9.2.0
-pkgrel=65
+pkgrel=66
 pkgdesc='A command-line kanban board/task manager'
 license=(BSD)
 arch=(x86_64)


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

2020-03-29 Thread Felix Yan via arch-commits
Date: Monday, March 30, 2020 @ 00:30:34
  Author: felixonmars
Revision: 606689

archrelease: copy trunk to community-staging-x86_64

Added:
  taskell/repos/community-staging-x86_64/
  taskell/repos/community-staging-x86_64/PKGBUILD
(from rev 606688, taskell/trunk/PKGBUILD)

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

Copied: taskell/repos/community-staging-x86_64/PKGBUILD (from rev 606688, 
taskell/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-03-30 00:30:34 UTC (rev 606689)
@@ -0,0 +1,44 @@
+# Maintainer: Jelle van der Waa https://hackage.haskell.org/package/$pkgname;
+depends=(ghc-libs haskell-aeson haskell-attoparsec haskell-brick 
haskell-config-ini haskell-file-embed haskell-fold-debounce haskell-http-client 
haskell-http-conduit haskell-http-types haskell-lens haskell-tz haskell-vty 
haskell-classy-prelude)
+makedepends=(ghc)
+source=(https://hackage.haskell.org/packages/archive/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz)
+sha512sums=('4c55922ad9f6c529a8c8ca73602b9f42fa3cda4945fe8edaa554909334445e089db0b7a5ba7f6804bdf618274543fd6598d19802907a0ae661571ed48366376b')
+
+prepare() {
+  cd $pkgname-$pkgver
+  sed -i -e 's/== *0.50/==0.52/' -e 's/== *5.26/==5.28/' -e 's/< *4/<5/' -e 
's/< *2/<3/' -e 's/< *1/<2/' $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 \
+--datasubdir=$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+  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 $pkgname-$pkgver
+  runghc Setup.hs copy --destdir="$pkgdir"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  # Doc only contains the license
+  rm -rf "$pkgdir/usr/share/doc"
+}
+
+# vim: ts=2 sw=2 et:


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

2020-03-29 Thread Felix Yan via arch-commits
Date: Monday, March 30, 2020 @ 00:29:08
  Author: felixonmars
Revision: 606687

archrelease: copy trunk to community-staging-x86_64

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

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

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


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

2020-03-29 Thread Felix Yan via arch-commits
Date: Monday, March 30, 2020 @ 00:28:51
  Author: felixonmars
Revision: 606686

upgpkg: tamarin-prover 1.4.1-313: rebuild with ChasingBottoms 1.3.1.8

Modified:
  tamarin-prover/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-30 00:28:13 UTC (rev 606685)
+++ PKGBUILD2020-03-30 00:28:51 UTC (rev 606686)
@@ -3,7 +3,7 @@
 
 pkgname=tamarin-prover
 pkgver=1.4.1
-pkgrel=312
+pkgrel=313
 pkgdesc="The Tamarin prover for security protocol analysis"
 url="https://tamarin-prover.github.io;
 license=("GPL")


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

2020-03-29 Thread Felix Yan via arch-commits
Date: Monday, March 30, 2020 @ 00:27:21
  Author: felixonmars
Revision: 606683

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: stylish-haskell/repos/community-staging-x86_64/PKGBUILD (from rev 
606682, stylish-haskell/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-03-30 00:27:21 UTC (rev 606683)
@@ -0,0 +1,50 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=stylish-haskell
+pkgver=0.11.0.0
+pkgrel=14
+pkgdesc="Haskell code prettifier"
+url="https://github.com/jaspervdj/stylish-haskell;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-file-embed' 
'haskell-optparse-applicative'
+ 'haskell-src-exts' 'haskell-strict' 'haskell-syb' 'haskell-hsyaml' 
'haskell-hsyaml-aeson')
+makedepends=('ghc' 'haskell-hunit' 'haskell-random' 'haskell-test-framework'
+ 'haskell-test-framework-hunit')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('3939fb8d88b77b75983c95770190c23f04ae3f00c7f4c826e8ec3898a9be6f3816df6e9398a9f5932e88c86d2bdaa7ef096c8063738cafd5c8de2ebd0ba5da25')
+
+prepare() {
+cd $pkgname-$pkgver
+sed -i -e '/semigroups/d' $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 
--datasubdir="$pkgname" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-old_base --ghc-option='-pie'
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $pkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $pkgname-$pkgver
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-03-29 Thread Felix Yan via arch-commits
Date: Monday, March 30, 2020 @ 00:27:04
  Author: felixonmars
Revision: 606682

upgpkg: stylish-haskell 0.11.0.0-14: rebuild with ChasingBottoms 1.3.1.8

Modified:
  stylish-haskell/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-30 00:26:03 UTC (rev 606681)
+++ PKGBUILD2020-03-30 00:27:04 UTC (rev 606682)
@@ -3,7 +3,7 @@
 
 pkgname=stylish-haskell
 pkgver=0.11.0.0
-pkgrel=13
+pkgrel=14
 pkgdesc="Haskell code prettifier"
 url="https://github.com/jaspervdj/stylish-haskell;
 license=("BSD")


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

2020-03-29 Thread Felix Yan via arch-commits
Date: Monday, March 30, 2020 @ 00:26:03
  Author: felixonmars
Revision: 606681

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: stack/repos/community-staging-x86_64/PKGBUILD (from rev 606680, 
stack/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-03-30 00:26:03 UTC (rev 606681)
@@ -0,0 +1,79 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=stack
+pkgver=2.1.3.20200310
+_commit=95aaf2bc2c969622679c2a8233e7bb637e43210d
+pkgrel=34
+pkgdesc="The Haskell Tool Stack"
+url="https://github.com/commercialhaskell/stack;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-annotated-wl-pprint' 
'haskell-ansi-terminal'
+ 'haskell-async' 'haskell-attoparsec' 'haskell-base64-bytestring' 
'haskell-casa-client'
+ 'haskell-casa-types' 'haskell-colour' 'haskell-conduit' 
'haskell-conduit-extra'
+ 'haskell-cryptonite' 'haskell-cryptonite-conduit' 'haskell-echo' 
'haskell-exceptions'
+ 'haskell-extra' 'haskell-file-embed' 'haskell-filelock' 
'haskell-fsnotify'
+ 'haskell-generic-deriving' 'haskell-githash' 
'haskell-hackage-security' 'haskell-hashable'
+ 'haskell-hi-file-parser' 'haskell-hpack' 'haskell-http-client' 
'haskell-http-client-tls'
+ 'haskell-http-conduit' 'haskell-http-download' 'haskell-http-types' 
'haskell-memory'
+ 'haskell-microlens' 'haskell-mintty' 'haskell-mono-traversable' 
'haskell-mustache'
+ 'haskell-neat-interpolation' 'haskell-network-uri' 
'haskell-open-browser'
+ 'haskell-optparse-applicative' 'haskell-optparse-generic' 
'haskell-optparse-simple'
+ 'haskell-pantry' 'haskell-path' 'haskell-path-io' 'haskell-persistent'
+ 'haskell-persistent-sqlite' 'haskell-persistent-template' 
'haskell-primitive'
+ 'haskell-project-template' 'haskell-regex-applicative-text' 
'haskell-retry' 'haskell-rio'
+ 'haskell-rio-prettyprint' 'haskell-split' 'haskell-streaming-commons' 
'haskell-tar'
+ 'haskell-temporary' 'haskell-terminal-size' 'haskell-text-metrics' 
'haskell-th-reify-many'
+ 'haskell-tls' 'haskell-typed-process' 'haskell-unicode-transforms' 
'haskell-unix-compat'
+ 'haskell-unliftio' 'haskell-unordered-containers' 'haskell-vector' 
'haskell-yaml'
+ 'haskell-zip-archive' 'haskell-zlib')
+makedepends=('ghc' 'git' 'haskell-quickcheck' 'haskell-hspec' 
'haskell-raw-strings-qq'
+ 'haskell-smallcheck')
+checkdepends=('cabal-install')
+conflicts=('haskell-stack')
+replaces=('haskell-stack')
+install="stack.install"
+source=("git+https://github.com/commercialhaskell/stack.git#commit=$_commit;)
+sha512sums=('SKIP')
+
+prepare() {
+  cd $pkgname
+  hpack
+  sed -i -e '/semigroups/d' $pkgname.cabal
+}
+
+build() {
+  cd $pkgname
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+  -f-disable-git-info -f-integration-tests -f-static 
-f-hide-dependency-versions -f-supported-build \
+  --ghc-option='-pie'
+  runhaskell Setup build
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd $pkgname
+  # cabal update
+  LD_LIBRARY_PATH="$PWD"/dist/build PATH="$PWD"/dist/build/stack:"$PATH" 
runhaskell Setup test
+  # Integration tests will result in 4 failures on Arch currently
+}
+
+package() {
+  cd $pkgname
+
+  install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+  install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+  runhaskell Setup copy --destdir="${pkgdir}"
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+
+  LD_PRELOAD=$(ls "$pkgdir"/usr/lib/libHSstack-*-ghc*.so) 
"${pkgdir}"/usr/bin/stack --bash-completion-script /usr/bin/stack > 
stack_completion_script
+  install -Dm644 stack_completion_script 
"${pkgdir}/usr/share/bash-completion/completions/stack"
+}

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

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

2020-03-29 Thread Felix Yan via arch-commits
Date: Monday, March 30, 2020 @ 00:25:41
  Author: felixonmars
Revision: 606680

upgpkg: stack 2.1.3.20200310-34: rebuild with ChasingBottoms 1.3.1.8

Modified:
  stack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-30 00:24:46 UTC (rev 606679)
+++ PKGBUILD2020-03-30 00:25:41 UTC (rev 606680)
@@ -4,7 +4,7 @@
 pkgname=stack
 pkgver=2.1.3.20200310
 _commit=95aaf2bc2c969622679c2a8233e7bb637e43210d
-pkgrel=33
+pkgrel=34
 pkgdesc="The Haskell Tool Stack"
 url="https://github.com/commercialhaskell/stack;
 license=("BSD")


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

2020-03-29 Thread Felix Yan via arch-commits
Date: Monday, March 30, 2020 @ 00:21:12
  Author: felixonmars
Revision: 606675

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: shellcheck/repos/community-staging-x86_64/PKGBUILD (from rev 606674, 
shellcheck/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-03-30 00:21:12 UTC (rev 606675)
@@ -0,0 +1,55 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=ShellCheck
+pkgname=shellcheck
+pkgver=0.7.0
+pkgrel=205
+pkgdesc="Shell script analysis tool"
+url="https://www.shellcheck.net;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-diff' 'haskell-quickcheck' 
'haskell-regex-tdfa')
+makedepends=('ghc' 'pandoc')
+source=("$_hkgname-$pkgver.tar.gz::https://github.com/koalaman/shellcheck/archive/v$pkgver.tar.gz;
+
shellcheck-cabal3.patch::https://github.com/koalaman/shellcheck/commit/2c026f1ec7c205c731ff2a0ccd85365f37245758.patch)
+sha512sums=('46ef486dff09bd51bdc5f053b1dda9e3f2943c66bbf6788824ddf8fcf3b69b7a3a9c00bf98bca0dee9d57ee6df833ca4088252dbf773815248be0fa667f35215'
+
'88b7101a536598ecbf4d1c48cfd4eb10b1a6424a2344e4b1be6f6a814dcf1c3d00e78390070242369bc55ed9c20defd4cc7337854da71761fb08e13240619684')
+
+prepare() {
+cd $pkgname-$pkgver
+patch -p1 -i ../shellcheck-cabal3.patch
+
+echo -e "import Distribution.Simple\nmain = defaultMain" > Setup.hs
+}
+
+build() {
+cd $pkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+--ghc-option='-pie'
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+
+./manpage
+}
+
+check() {
+cd $pkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $pkgname-$pkgver
+
+install -D -m644 ${pkgname}.1   "${pkgdir}/usr/share/man/man1/${pkgname}.1"
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-03-29 Thread Felix Yan via arch-commits
Date: Monday, March 30, 2020 @ 00:20:57
  Author: felixonmars
Revision: 606674

upgpkg: shellcheck 0.7.0-205: rebuild with ChasingBottoms 1.3.1.8

Modified:
  shellcheck/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-30 00:18:08 UTC (rev 606673)
+++ PKGBUILD2020-03-30 00:20:57 UTC (rev 606674)
@@ -4,7 +4,7 @@
 _hkgname=ShellCheck
 pkgname=shellcheck
 pkgver=0.7.0
-pkgrel=204
+pkgrel=205
 pkgdesc="Shell script analysis tool"
 url="https://www.shellcheck.net;
 license=("GPL")


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

2020-03-29 Thread Felix Yan via arch-commits
Date: Monday, March 30, 2020 @ 00:18:08
  Author: felixonmars
Revision: 606673

archrelease: copy trunk to community-staging-x86_64

Added:
  postgrest/repos/community-staging-x86_64/
  postgrest/repos/community-staging-x86_64/PKGBUILD
(from rev 606672, postgrest/trunk/PKGBUILD)
  postgrest/repos/community-staging-x86_64/postgrest-hspec-wai-0.10.patch
(from rev 606672, postgrest/trunk/postgrest-hspec-wai-0.10.patch)

+
 PKGBUILD   |   83 +
 postgrest-hspec-wai-0.10.patch |  568 +++
 2 files changed, 651 insertions(+)

Copied: postgrest/repos/community-staging-x86_64/PKGBUILD (from rev 606672, 
postgrest/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-03-30 00:18:08 UTC (rev 606673)
@@ -0,0 +1,83 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=postgrest
+pkgver=6.0.2
+pkgrel=112
+pkgdesc="REST API for any Postgres database"
+url="https://github.com/begriffs/postgrest;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-http' 'haskell-ranged-sets' 'haskell-aeson' 
'haskell-ansi-wl-pprint'
+ 'haskell-base64-bytestring' 'haskell-case-insensitive' 
'haskell-cassava'
+ 'haskell-configurator-pg' 'haskell-contravariant' 
'haskell-contravariant-extras'
+ 'haskell-cookie' 'haskell-either' 'haskell-gitrev' 'haskell-hasql' 
'haskell-hasql-pool'
+ 'haskell-hasql-transaction' 'haskell-heredoc' 'haskell-http-types'
+ 'haskell-insert-ordered-containers' 
'haskell-interpolatedstring-perl6' 'haskell-jose'
+ 'haskell-lens' 'haskell-lens-aeson' 'haskell-network-uri' 
'haskell-optparse-applicative'
+ 'haskell-parsec' 'haskell-protolude' 'haskell-regex-tdfa' 
'haskell-scientific'
+ 'haskell-swagger2' 'haskell-unordered-containers' 'haskell-vector' 
'haskell-wai'
+ 'haskell-wai-cors' 'haskell-wai-extra' 'haskell-wai-middleware-static'
+ 'haskell-auto-update' 'haskell-retry' 'haskell-warp')
+makedepends=('ghc' 'haskell-aeson-qq' 'haskell-async' 'haskell-hspec' 
'haskell-hspec-wai'
+ 'haskell-hspec-wai-json' 'haskell-monad-control' 
'haskell-transformers-base')
+checkdepends=('pifpaf' 'postgresql' 'procps-ng')
+source=("$pkgname-$pkgver.tar.bz2::https://github.com/begriffs/postgrest/archive/v$pkgver.tar.gz;
+
postgrest-swagger-2.4.patch::https://github.com/PostgREST/postgrest/pull/1326.patch
+postgrest-hspec-wai-0.10.patch
+
postgrest-configuration-pg-0.2.patch::https://github.com/PostgREST/postgrest/pull/1457.patch)
+sha512sums=('abdcec3291c2216cb7383e13c80cb36c7bbecaded95ebebdc4482e44418d11abafab591ed1e5568ac38cdfc8e3f8b2c6c1c2a0e3e846ee6f97ab48b42c4c580d'
+
'd8c654e55e424c8ad29c2791362109af6d0ae94a04d8726946f95caa1bd6b11d9a818069df61e03591e02b54ff15b86e4097375343e28f9354f7fafa5efdcee1'
+
'22da00f9fbdfc70b6db76d3cbf7f2406091131868077b439c35925b5fc7b56dcf218b13e2dca4c37b81e4bbba686040b2ad04086201c60885589c61bdd5df088'
+
'c391a2ff289469115c7fd932753bedc8a1f7ba283e3ca21ffaea64c25eb1678adc1519ad75e8353556444c201d06b815f57e768d12dec2e0b1770d13baaeb4d6')
+
+prepare() {
+cd $pkgname-$pkgver
+patch -p1 -i ../postgrest-swagger-2.4.patch
+patch -p1 -i ../postgrest-hspec-wai-0.10.patch
+patch -p1 -i ../postgrest-configuration-pg-0.2.patch || :
+sed -i -e 's/< *4/<5/' -e 's/< *1/<2/' -e 's/< *3.3/<4/' -e 's/< *0/<1/' 
-e 's/< *2.9/<3.2/' -e 's/< *2.5/<3/' $pkgname.cabal
+
+sed -i -e '/ fail /d' src/PostgREST/Config.hs
+
+sed -i 's/5432/9824/' test/fixtures/dumpfixture.sh
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-CI --ghc-option='-pie'
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $pkgname-$pkgver
+
+eval $(pifpaf run postgresql --host 127.0.0.1)
+createdb postgrest_test
+
+# TODO: user authentication issue?
+POSTGREST_TEST_CONNECTION=$(test/create_test_db 
"postgres://$USER@localhost" postgrest_test) runhaskell Setup test || warning 
"Tests failed"
+
+# Disabled: uses stack
+# test/io-tests.sh
+
+pifpaf_stop
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 

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

2020-03-29 Thread Felix Yan via arch-commits
Date: Monday, March 30, 2020 @ 00:17:43
  Author: felixonmars
Revision: 606672

upgpkg: postgrest 6.0.2-112: rebuild with ChasingBottoms 1.3.1.8

Modified:
  postgrest/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-30 00:15:22 UTC (rev 606671)
+++ PKGBUILD2020-03-30 00:17:43 UTC (rev 606672)
@@ -3,7 +3,7 @@
 
 pkgname=postgrest
 pkgver=6.0.2
-pkgrel=111
+pkgrel=112
 pkgdesc="REST API for any Postgres database"
 url="https://github.com/begriffs/postgrest;
 license=("MIT")


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

2020-03-29 Thread Felix Yan via arch-commits
Date: Monday, March 30, 2020 @ 00:10:48
  Author: felixonmars
Revision: 606665

archrelease: copy trunk to community-staging-x86_64

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

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

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


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

2020-03-29 Thread Felix Yan via arch-commits
Date: Monday, March 30, 2020 @ 00:06:42
  Author: felixonmars
Revision: 606660

upgpkg: pandoc 2.9.2-78: rebuild with ChasingBottoms 1.3.1.8

Modified:
  pandoc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-30 00:06:27 UTC (rev 606659)
+++ PKGBUILD2020-03-30 00:06:42 UTC (rev 606660)
@@ -3,7 +3,7 @@
 
 pkgname=pandoc
 pkgver=2.9.2
-pkgrel=77
+pkgrel=78
 pkgdesc='Conversion between markup formats'
 url='https://pandoc.org'
 license=('GPL')


[arch-commits] Commit in dbeaver-plugin-bouncycastle/repos/community-any (4 files)

2020-03-29 Thread Fabio Castelli via arch-commits
Date: Monday, March 30, 2020 @ 00:09:48
  Author: muflone
Revision: 606663

archrelease: copy trunk to community-any

Added:
  dbeaver-plugin-bouncycastle/repos/community-any/PKGBUILD
(from rev 606662, dbeaver-plugin-bouncycastle/trunk/PKGBUILD)
  
dbeaver-plugin-bouncycastle/repos/community-any/dbeaver-plugin-bouncycastle.info
(from rev 606662, 
dbeaver-plugin-bouncycastle/trunk/dbeaver-plugin-bouncycastle.info)
Deleted:
  dbeaver-plugin-bouncycastle/repos/community-any/PKGBUILD
  
dbeaver-plugin-bouncycastle/repos/community-any/dbeaver-plugin-bouncycastle.info

--+
 PKGBUILD |   68 ++---
 dbeaver-plugin-bouncycastle.info |6 +--
 2 files changed, 37 insertions(+), 37 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-03-30 00:08:22 UTC (rev 606662)
+++ PKGBUILD2020-03-30 00:09:48 UTC (rev 606663)
@@ -1,34 +0,0 @@
-# Maintainer: Muflone http://www.muflone.com/contacts/english/
-
-pkgname=dbeaver-plugin-bouncycastle
-pkgver=1.61.0.v20190602.1335
-pkgrel=2
-pkgdesc='Bouncy Castle library for DBeaver plugin for SSHv2 tunnels'
-arch=('any')
-url='https://dbeaver.io/'
-license=('Apache')
-makedepends=('unzip')
-depends=('dbeaver>=4.2.5')
-source=("https://dbeaver.io/update/ce/latest/plugins/org.bouncycastle.bcpg_${pkgver%.*}-${pkgver##*.}.jar;
-
"https://dbeaver.io/update/ce/latest/plugins/org.bouncycastle.bcpkix_${pkgver%.*}-${pkgver##*.}.jar;
-
"https://dbeaver.io/update/ce/latest/plugins/org.bouncycastle.bcprov_${pkgver%.*}-${pkgver##*.}.jar;
-"${pkgname}.info")
-sha256sums=('0a0e2b6073a93eca5c6cdeb2ff09adb8ef6dcf92145ea6a484c06a2f239aec02'
-'081735d3452413b0ad065ff1e72aad62cba9c56336805aa12427cbddd10ffa10'
-'5ddd756100259756b6e2ec5d096d1778a8a48e6893167ebb097ee2ae8ae9e1e4'
-'af23a9e3708d4e29dba0876d3a7e6b722d3676d66bc6fc730da57a49caa9')
-noextract=("org.bouncycastle.bcpg_${pkgver%.*}-${pkgver##*.}.jar"
-   "org.bouncycastle.bcpkix_${pkgver%.*}-${pkgver##*.}.jar"
-   "org.bouncycastle.bcprov_${pkgver}.jar")
-
-package() {
-  # Copy bundles
-  install -m 755 -d "${pkgdir}/usr/lib/dbeaver/plugins"
-  install -m 644 -t "${pkgdir}/usr/lib/dbeaver/plugins/" \
-org.bouncycastle.bcpg_${pkgver%.*}-${pkgver##*.}.jar \
-org.bouncycastle.bcpkix_${pkgver%.*}-${pkgver##*.}.jar \
-org.bouncycastle.bcprov_${pkgver%.*}-${pkgver##*.}.jar
-  # Add configuration file (handled by the hook)
-  install -m 755 -d "${pkgdir}/etc/dbeaver/bundles.d"
-  install -m 644 "${srcdir}/${pkgname}.info" 
"${pkgdir}/etc/dbeaver/bundles.d/20-${pkgname}.info"
-}

Copied: dbeaver-plugin-bouncycastle/repos/community-any/PKGBUILD (from rev 
606662, dbeaver-plugin-bouncycastle/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-03-30 00:09:48 UTC (rev 606663)
@@ -0,0 +1,34 @@
+# Maintainer: Muflone http://www.muflone.com/contacts/english/
+
+pkgname=dbeaver-plugin-bouncycastle
+pkgver=1.64.0.v20191109.0815
+pkgrel=1
+pkgdesc='Bouncy Castle library for DBeaver plugin for SSHv2 tunnels'
+arch=('any')
+url='https://dbeaver.io/'
+license=('Apache')
+makedepends=('unzip')
+depends=('dbeaver>=4.2.5')
+source=("https://dbeaver.io/update/ce/latest/plugins/org.bouncycastle.bcpg_${pkgver%.*}-${pkgver##*.}.jar;
+
"https://dbeaver.io/update/ce/latest/plugins/org.bouncycastle.bcpkix_${pkgver%.*}-${pkgver##*.}.jar;
+
"https://dbeaver.io/update/ce/latest/plugins/org.bouncycastle.bcprov_${pkgver%.*}-${pkgver##*.}.jar;
+"${pkgname}.info")
+sha256sums=('8c4f68ba9ccff40ad874a68a25102924975b39ddbaf13bf0bb9c9e9344896958'
+'1f4c49a04da9c15632d6d9c4a6f11ea349de6bd0ec921f7f69ea7648605e71a5'
+'b47650241df91583d1afac3eafa52eed8db6bb509e0b0f1692e0cdca8d1ec34a'
+'571e6aab0c8e9789fc1f8ddc4222eb67b0b6d74dcce30299a08b7240b7c7b2de')
+noextract=("org.bouncycastle.bcpg_${pkgver%.*}-${pkgver##*.}.jar"
+   "org.bouncycastle.bcpkix_${pkgver%.*}-${pkgver##*.}.jar"
+   "org.bouncycastle.bcprov_${pkgver}.jar")
+
+package() {
+  # Copy bundles
+  install -m 755 -d "${pkgdir}/usr/lib/dbeaver/plugins"
+  install -m 644 -t "${pkgdir}/usr/lib/dbeaver/plugins/" \
+org.bouncycastle.bcpg_${pkgver%.*}-${pkgver##*.}.jar \
+org.bouncycastle.bcpkix_${pkgver%.*}-${pkgver##*.}.jar \
+org.bouncycastle.bcprov_${pkgver%.*}-${pkgver##*.}.jar
+  # Add configuration file (handled by the hook)
+  install -m 755 -d "${pkgdir}/etc/dbeaver/bundles.d"
+  install -m 644 "${srcdir}/${pkgname}.info" 
"${pkgdir}/etc/dbeaver/bundles.d/20-${pkgname}.info"
+}

Deleted: dbeaver-plugin-bouncycastle.info
===
--- dbeaver-plugin-bouncycastle.info2020-03-30 00:08:22 UTC (rev 606662)
+++ 

[arch-commits] Commit in dbeaver-plugin-bouncycastle/trunk (2 files)

2020-03-29 Thread Fabio Castelli via arch-commits
Date: Monday, March 30, 2020 @ 00:01:35
  Author: muflone
Revision: 606658

upgpkg: dbeaver-plugin-bouncycastle 1.64.0.v20191109.0815-1

Modified:
  dbeaver-plugin-bouncycastle/trunk/PKGBUILD
  dbeaver-plugin-bouncycastle/trunk/dbeaver-plugin-bouncycastle.info

--+
 PKGBUILD |   12 ++--
 dbeaver-plugin-bouncycastle.info |6 +++---
 2 files changed, 9 insertions(+), 9 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-03-29 23:50:27 UTC (rev 606657)
+++ PKGBUILD2020-03-30 00:01:35 UTC (rev 606658)
@@ -1,8 +1,8 @@
 # Maintainer: Muflone http://www.muflone.com/contacts/english/
 
 pkgname=dbeaver-plugin-bouncycastle
-pkgver=1.61.0.v20190602.1335
-pkgrel=2
+pkgver=1.64.0.v20191109.0815
+pkgrel=1
 pkgdesc='Bouncy Castle library for DBeaver plugin for SSHv2 tunnels'
 arch=('any')
 url='https://dbeaver.io/'
@@ -13,10 +13,10 @@
 
"https://dbeaver.io/update/ce/latest/plugins/org.bouncycastle.bcpkix_${pkgver%.*}-${pkgver##*.}.jar;
 
"https://dbeaver.io/update/ce/latest/plugins/org.bouncycastle.bcprov_${pkgver%.*}-${pkgver##*.}.jar;
 "${pkgname}.info")
-sha256sums=('0a0e2b6073a93eca5c6cdeb2ff09adb8ef6dcf92145ea6a484c06a2f239aec02'
-'081735d3452413b0ad065ff1e72aad62cba9c56336805aa12427cbddd10ffa10'
-'5ddd756100259756b6e2ec5d096d1778a8a48e6893167ebb097ee2ae8ae9e1e4'
-'af23a9e3708d4e29dba0876d3a7e6b722d3676d66bc6fc730da57a49caa9')
+sha256sums=('8c4f68ba9ccff40ad874a68a25102924975b39ddbaf13bf0bb9c9e9344896958'
+'1f4c49a04da9c15632d6d9c4a6f11ea349de6bd0ec921f7f69ea7648605e71a5'
+'b47650241df91583d1afac3eafa52eed8db6bb509e0b0f1692e0cdca8d1ec34a'
+'571e6aab0c8e9789fc1f8ddc4222eb67b0b6d74dcce30299a08b7240b7c7b2de')
 noextract=("org.bouncycastle.bcpg_${pkgver%.*}-${pkgver##*.}.jar"
"org.bouncycastle.bcpkix_${pkgver%.*}-${pkgver##*.}.jar"
"org.bouncycastle.bcprov_${pkgver}.jar")

Modified: dbeaver-plugin-bouncycastle.info
===
--- dbeaver-plugin-bouncycastle.info2020-03-29 23:50:27 UTC (rev 606657)
+++ dbeaver-plugin-bouncycastle.info2020-03-30 00:01:35 UTC (rev 606658)
@@ -1,3 +1,3 @@
-org.bouncycastle.bcpg,1.61.0.v20190602-1335,plugins/org.bouncycastle.bcpg_1.61.0.v20190602-1335.jar,4,false
-org.bouncycastle.bcpkix,1.61.0.v20190602-1335,plugins/org.bouncycastle.bcpkix_1.61.0.v20190602-1335.jar,4,false
-org.bouncycastle.bcprov,1.61.0.v20190602-1335,plugins/org.bouncycastle.bcprov_1.61.0.v20190602-1335.jar,4,false
+org.bouncycastle.bcpg,1.64.0.v20191109-0815,plugins/org.bouncycastle.bcpg_1.64.0.v20191109-0815.jar,4,false
+org.bouncycastle.bcpkix,1.64.0.v20191109-0815,plugins/org.bouncycastle.bcpkix_1.64.0.v20191109-0815.jar,4,false
+org.bouncycastle.bcprov,1.64.0.v20191109-0815,plugins/org.bouncycastle.bcprov_1.64.0.v20191109-0815.jar,4,false


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

2020-03-29 Thread Felix Yan via arch-commits
Date: Monday, March 30, 2020 @ 00:10:32
  Author: felixonmars
Revision: 606664

upgpkg: pandoc-citeproc 0.17-59: rebuild with ChasingBottoms 1.3.1.8

Modified:
  pandoc-citeproc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-30 00:09:48 UTC (rev 606663)
+++ PKGBUILD2020-03-30 00:10:32 UTC (rev 606664)
@@ -3,7 +3,7 @@
 
 pkgname=pandoc-citeproc
 pkgver=0.17
-pkgrel=58
+pkgrel=59
 pkgdesc="Supports using pandoc with citeproc"
 url="https://hackage.haskell.org/package/$pkgname;
 license=("BSD")


[arch-commits] Commit in fantasque-sans-mono/trunk (PKGBUILD)

2020-03-29 Thread Daniel M. Capella via arch-commits
Date: Monday, March 30, 2020 @ 00:06:27
  Author: polyzen
Revision: 606659

upgpkg: fantasque-sans-mono 1.8.0-2 Remove deps

See FS#66012. Also remove unnecessary pkgdesc's.

Modified:
  fantasque-sans-mono/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-30 00:01:35 UTC (rev 606658)
+++ PKGBUILD2020-03-30 00:06:27 UTC (rev 606659)
@@ -4,23 +4,20 @@
 pkgbase=fantasque-sans-mono
 pkgname=('otf-fantasque-sans-mono' 'ttf-fantasque-sans-mono')
 pkgver=1.8.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Font family with a great monospaced variant for programmers'
 arch=('any')
 url=https://github.com/belluzj/fantasque-sans
 license=('custom:OFL')
-depends=('fontconfig' 'xorg-font-utils')
 
source=("$pkgbase-$pkgver.tar.gz::$url/releases/download/v$pkgver/FantasqueSansMono-Normal.tar.gz")
 
sha512sums=('3afbd441d192769ea44fd7730e728844d13c15b0dd52e3968e6e1659ffa11a173d21891c09ceb7465b83a0b8c923129df2554e159620c9611ee9bb6ff35c90c6')
 
 package_otf-fantasque-sans-mono() {
-  pkgdesc='OTF font family with a great monospaced variant for programmers'
   install -Dm644 -t "$pkgdir"/usr/share/fonts/OTF OTF/*.otf
   install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/${pkgname[0]}/LICENSE
 }
 
 package_ttf-fantasque-sans-mono() {
-  pkgdesc='TTF font family with a great monospaced variant for programmers'
   install -Dm644 -t "$pkgdir"/usr/share/fonts/TTF TTF/*.ttf
   install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/${pkgname[1]}/LICENSE
 }


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

2020-03-29 Thread Felix Yan via arch-commits
Date: Monday, March 30, 2020 @ 00:07:15
  Author: felixonmars
Revision: 606661

archrelease: copy trunk to community-staging-x86_64

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

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

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


[arch-commits] Commit in fantasque-sans-mono/repos/community-any (PKGBUILD PKGBUILD)

2020-03-29 Thread Daniel M. Capella via arch-commits
Date: Monday, March 30, 2020 @ 00:08:22
  Author: polyzen
Revision: 606662

archrelease: copy trunk to community-any

Added:
  fantasque-sans-mono/repos/community-any/PKGBUILD
(from rev 606661, fantasque-sans-mono/trunk/PKGBUILD)
Deleted:
  fantasque-sans-mono/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-03-30 00:07:15 UTC (rev 606661)
+++ PKGBUILD2020-03-30 00:08:22 UTC (rev 606662)
@@ -1,26 +0,0 @@
-# Maintainer: Daniel M. Capella 
-# Contributor: George Rawlinson 
-
-pkgbase=fantasque-sans-mono
-pkgname=('otf-fantasque-sans-mono' 'ttf-fantasque-sans-mono')
-pkgver=1.8.0
-pkgrel=1
-pkgdesc='Font family with a great monospaced variant for programmers'
-arch=('any')
-url=https://github.com/belluzj/fantasque-sans
-license=('custom:OFL')
-depends=('fontconfig' 'xorg-font-utils')
-source=("$pkgbase-$pkgver.tar.gz::$url/releases/download/v$pkgver/FantasqueSansMono-Normal.tar.gz")
-sha512sums=('3afbd441d192769ea44fd7730e728844d13c15b0dd52e3968e6e1659ffa11a173d21891c09ceb7465b83a0b8c923129df2554e159620c9611ee9bb6ff35c90c6')
-
-package_otf-fantasque-sans-mono() {
-  pkgdesc='OTF font family with a great monospaced variant for programmers'
-  install -Dm644 -t "$pkgdir"/usr/share/fonts/OTF OTF/*.otf
-  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/${pkgname[0]}/LICENSE
-}
-
-package_ttf-fantasque-sans-mono() {
-  pkgdesc='TTF font family with a great monospaced variant for programmers'
-  install -Dm644 -t "$pkgdir"/usr/share/fonts/TTF TTF/*.ttf
-  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/${pkgname[1]}/LICENSE
-}

Copied: fantasque-sans-mono/repos/community-any/PKGBUILD (from rev 606661, 
fantasque-sans-mono/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-03-30 00:08:22 UTC (rev 606662)
@@ -0,0 +1,23 @@
+# Maintainer: Daniel M. Capella 
+# Contributor: George Rawlinson 
+
+pkgbase=fantasque-sans-mono
+pkgname=('otf-fantasque-sans-mono' 'ttf-fantasque-sans-mono')
+pkgver=1.8.0
+pkgrel=2
+pkgdesc='Font family with a great monospaced variant for programmers'
+arch=('any')
+url=https://github.com/belluzj/fantasque-sans
+license=('custom:OFL')
+source=("$pkgbase-$pkgver.tar.gz::$url/releases/download/v$pkgver/FantasqueSansMono-Normal.tar.gz")
+sha512sums=('3afbd441d192769ea44fd7730e728844d13c15b0dd52e3968e6e1659ffa11a173d21891c09ceb7465b83a0b8c923129df2554e159620c9611ee9bb6ff35c90c6')
+
+package_otf-fantasque-sans-mono() {
+  install -Dm644 -t "$pkgdir"/usr/share/fonts/OTF OTF/*.otf
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/${pkgname[0]}/LICENSE
+}
+
+package_ttf-fantasque-sans-mono() {
+  install -Dm644 -t "$pkgdir"/usr/share/fonts/TTF TTF/*.ttf
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/${pkgname[1]}/LICENSE
+}


[arch-commits] Commit in dbeaver-plugin-office/trunk (2 files)

2020-03-29 Thread Fabio Castelli via arch-commits
Date: Monday, March 30, 2020 @ 00:14:59
  Author: muflone
Revision: 606670

upgpkg: dbeaver-plugin-office 1.1.67.202003211804-1

Modified:
  dbeaver-plugin-office/trunk/PKGBUILD
  dbeaver-plugin-office/trunk/dbeaver-plugin-office.info

+
 PKGBUILD   |   14 +++---
 dbeaver-plugin-office.info |2 +-
 2 files changed, 8 insertions(+), 8 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-03-30 00:14:36 UTC (rev 606669)
+++ PKGBUILD2020-03-30 00:14:59 UTC (rev 606670)
@@ -1,8 +1,8 @@
 # Maintainer: Muflone http://www.muflone.com/contacts/english/
 
 pkgname=dbeaver-plugin-office
-pkgver=1.1.60.201912011827
-_featurever=1.1.59.201912011827
+pkgver=1.1.67.202003211804
+_featurever=1.1.66.202003211804
 pkgrel=1
 pkgdesc='DBeaver plugin to export data to Microsoft Office format'
 arch=('any')
@@ -10,12 +10,12 @@
 license=('Apache')
 makedepends=('unzip')
 depends=('dbeaver>=4.2.5' 'dbeaver-plugin-apache-poi')
-source=("https://dbeaver.io/update/office/latest/plugins/org.jkiss.dbeaver.data.office_${pkgver}.jar;
-
"https://dbeaver.io/update/office/latest/features/org.jkiss.dbeaver.ext.office.feature_${_featurever}.jar;
+source=("https://dbeaver.io/update/ce/latest/plugins/org.jkiss.dbeaver.data.office_${pkgver}.jar;
+
"https://dbeaver.io/update/ce/latest/features/org.jkiss.dbeaver.ext.office.feature_${_featurever}.jar;
 "${pkgname}.info")
-sha256sums=('8bc2f78d62f63402374542d0280d162a58397e258b96bdee3b19f6563ad4801f'
-'60cda49475c3544d608ae0f557a0ad5ea8597ca9c79c3548aa1d8cbe25e5fabe'
-'efd68fe64f682f1f22f65653af8d270a9b992f6cc442f03dc036584b5470eb6a')
+sha256sums=('2c831071cba23f7c21b3ffd4af6c2487015fc3f6c6bab91de95f0337f398af4f'
+'2a1f089188465b60ae820da065cfb1652f993b9c460ebc56205e0d1965d17c98'
+'60b37cd315ae4f80511060f1508ae357e157739425bdd0c48f5d408304759ff5')
 noextract=("org.jkiss.dbeaver.data.office_${pkgver}.jar"
"org.jkiss.dbeaver.ext.office.feature_${_featurever}.jar")
 

Modified: dbeaver-plugin-office.info
===
--- dbeaver-plugin-office.info  2020-03-30 00:14:36 UTC (rev 606669)
+++ dbeaver-plugin-office.info  2020-03-30 00:14:59 UTC (rev 606670)
@@ -1 +1 @@
-org.jkiss.dbeaver.data.office,1.1.60.201912011827,plugins/org.jkiss.dbeaver.data.office_1.1.60.201912011827.jar,4,false
+org.jkiss.dbeaver.data.office,1.1.67.202003211804,plugins/org.jkiss.dbeaver.data.office_1.1.67.202003211804.jar,4,false


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

2020-03-29 Thread Felix Yan via arch-commits
Date: Monday, March 30, 2020 @ 00:14:36
  Author: felixonmars
Revision: 606669

archrelease: copy trunk to community-staging-x86_64

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

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

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


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

2020-03-29 Thread Felix Yan via arch-commits
Date: Monday, March 30, 2020 @ 00:12:43
  Author: felixonmars
Revision: 606667

archrelease: copy trunk to community-staging-x86_64

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

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

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


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

2020-03-29 Thread Felix Yan via arch-commits
Date: Monday, March 30, 2020 @ 00:14:14
  Author: felixonmars
Revision: 606668

upgpkg: pandoc-crossref 0.3.6.2-56: rebuild with ChasingBottoms 1.3.1.8

Modified:
  pandoc-crossref/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-30 00:12:43 UTC (rev 606667)
+++ PKGBUILD2020-03-30 00:14:14 UTC (rev 606668)
@@ -3,7 +3,7 @@
 
 pkgname=pandoc-crossref
 pkgver=0.3.6.2
-pkgrel=55
+pkgrel=56
 pkgdesc="Pandoc filter for cross-references"
 url="https://hackage.haskell.org/package/${pkgname};
 license=("GPL2")


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

2020-03-29 Thread Felix Yan via arch-commits
Date: Monday, March 30, 2020 @ 00:12:25
  Author: felixonmars
Revision: 60

upgpkg: haskell-hakyll 4.13.2.0-35: rebuild with ChasingBottoms 1.3.1.8

Modified:
  haskell-hakyll/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-30 00:10:48 UTC (rev 606665)
+++ PKGBUILD2020-03-30 00:12:25 UTC (rev 60)
@@ -4,7 +4,7 @@
 _hkgname=hakyll
 pkgname=haskell-hakyll
 pkgver=4.13.2.0
-pkgrel=34
+pkgrel=35
 pkgdesc="A static website compiler library"
 url="https://jaspervdj.be/hakyll;
 license=("BSD")


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

2020-03-29 Thread Fabio Castelli via arch-commits
Date: Sunday, March 29, 2020 @ 23:50:00
  Author: muflone
Revision: 606656

upgpkg: dbeaver 7.0.1-1

Modified:
  dbeaver/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-29 23:47:16 UTC (rev 606655)
+++ PKGBUILD2020-03-29 23:50:00 UTC (rev 606656)
@@ -2,7 +2,7 @@
 # Contributor: Arne Hoch 
 
 pkgname=dbeaver
-pkgver=7.0.0
+pkgver=7.0.1
 pkgrel=1
 pkgdesc="Free universal SQL Client for developers and database administrators 
(community edition)"
 arch=('x86_64')
@@ -18,7 +18,7 @@
 "${pkgname}.profile.gz"
 "${pkgname}.hook"
 "${pkgname}.install")
-sha256sums=('37507d392653e0c2055587dbc85f0ba1d81411aebf99f0cc44f0db5e209b2973'
+sha256sums=('e3e2acc0bdf264e8af43ec6c6a865c21ebe67395191a97eaafba53a5a4e7235a'
 '27573b6ddb62a3d4dde4841a633e9b52cb020deb338b327a6d460fd3a29c8ded'
 '3d1138ef8ec6d413d9552cab0444bd3b692fa808e9798a16b280ab17b6ca3659'
 '1863e74bdcf22b7328e6e8487cbebff7d5360e34bde85c1dd226b168b4737034'


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

2020-03-29 Thread Fabio Castelli via arch-commits
Date: Sunday, March 29, 2020 @ 23:50:27
  Author: muflone
Revision: 606657

archrelease: copy trunk to community-x86_64

Added:
  dbeaver/repos/community-x86_64/PKGBUILD
(from rev 606656, dbeaver/trunk/PKGBUILD)
  dbeaver/repos/community-x86_64/dbeaver.desktop
(from rev 606656, dbeaver/trunk/dbeaver.desktop)
  dbeaver/repos/community-x86_64/dbeaver.hook
(from rev 606656, dbeaver/trunk/dbeaver.hook)
  dbeaver/repos/community-x86_64/dbeaver.install
(from rev 606656, dbeaver/trunk/dbeaver.install)
  dbeaver/repos/community-x86_64/dbeaver.profile.gz
(from rev 606656, dbeaver/trunk/dbeaver.profile.gz)
  dbeaver/repos/community-x86_64/dbeaver.sh
(from rev 606656, dbeaver/trunk/dbeaver.sh)
Deleted:
  dbeaver/repos/community-x86_64/PKGBUILD
  dbeaver/repos/community-x86_64/dbeaver.desktop
  dbeaver/repos/community-x86_64/dbeaver.hook
  dbeaver/repos/community-x86_64/dbeaver.install
  dbeaver/repos/community-x86_64/dbeaver.profile.gz
  dbeaver/repos/community-x86_64/dbeaver.sh

-+
 PKGBUILD|  216 +++---
 dbeaver.desktop |   28 +++
 dbeaver.hook|   24 +++---
 dbeaver.install |   10 +-
 dbeaver.sh  |   12 +--
 5 files changed, 145 insertions(+), 145 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-03-29 23:50:00 UTC (rev 606656)
+++ PKGBUILD2020-03-29 23:50:27 UTC (rev 606657)
@@ -1,108 +0,0 @@
-# Maintainer: Muflone http://www.muflone.com/contacts/english/
-# Contributor: Arne Hoch 
-
-pkgname=dbeaver
-pkgver=7.0.0
-pkgrel=1
-pkgdesc="Free universal SQL Client for developers and database administrators 
(community edition)"
-arch=('x86_64')
-url="https://dbeaver.io/;
-license=("Apache")
-depends=('java-runtime>=8' 'gtk3' 'gtk-update-icon-cache' 'libsecret')
-makedepends=('maven' 'java-runtime>=8')
-optdepends=('dbeaver-plugin-office: export data in Microsoft Office Excel 
format'
-'dbeaver-plugin-svg-format: save diagrams in SVG format')
-source=("${pkgname}-${pkgver}.tar.gz"::"https://github.com/serge-rider/dbeaver/archive/${pkgver}.tar.gz;
-"${pkgname}.desktop"
-"${pkgname}.sh"
-"${pkgname}.profile.gz"
-"${pkgname}.hook"
-"${pkgname}.install")
-sha256sums=('37507d392653e0c2055587dbc85f0ba1d81411aebf99f0cc44f0db5e209b2973'
-'27573b6ddb62a3d4dde4841a633e9b52cb020deb338b327a6d460fd3a29c8ded'
-'3d1138ef8ec6d413d9552cab0444bd3b692fa808e9798a16b280ab17b6ca3659'
-'1863e74bdcf22b7328e6e8487cbebff7d5360e34bde85c1dd226b168b4737034'
-'f8b763ca210bfa4d9a4e407b656ba4f5d1bf2f3f54c67044f7a4dd0c3625fc22'
-'f8d65dd933049b587a5815ea75a30ef944300b812df383ca1c2dcd68280bc7ab')
-install="${pkgname}.install"
-
-prepare() {
-  # Fix version number in profile file
-  gzip --decompress --keep --stdout "${pkgname}.profile.gz" | 
-sed "s/DBEAVER_VERSION/${pkgver}/g" |
-gzip -9 > "${pkgname}.profile-${pkgver}.gz"
-
-  # Download dependencies during prepare FS#55873
-  # https://bugs.archlinux.org/task/55873
-  cd "${pkgname}-${pkgver}"
-  export MAVEN_OPTS="-Xmx2048m"
-  mvn --batch-mode validate
-}
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  mvn --batch-mode package
-}
-
-package() {
-  cd "${pkgname}-${pkgver}/product/standalone"
-  # Install icons into /usr/share/icons/hicolor
-  for _size in 16 32 48 64 128 256 512
-  do
-install -m 644 -D "icons-sources/icon_${_size}x${_size}.png" \
-  "${pkgdir}/usr/share/icons/hicolor/${_size}x${_size}/apps/dbeaver.png"
-  done
-
-  # Move into the target directory
-  cd "target/products/org.jkiss.dbeaver.core.product/linux/gtk/${CARCH}"
-
-  # Initially install everything into /usr/lib/dbeaver
-  install -m 755 -d "${pkgdir}/usr/lib"
-  cp -r "dbeaver" "${pkgdir}/usr/lib/${pkgname}"
-
-  # Move shared data to /usr/share/dbeaver
-  cd "${pkgdir}/usr/lib/${pkgname}"
-  install -m 755 -d "${pkgdir}/usr/share/${pkgname}"
-  for _file in configuration features p2 .eclipseproduct artifacts.xml 
dbeaver.ini readme.txt
-  do
-mv "${_file}" "${pkgdir}/usr/share/${pkgname}"
-ln -s "/usr/share/${pkgname}/${_file}" .
-  done
-
-  # Install additional licenses
-  install -m 755 -d "${pkgdir}/usr/share/licenses"
-  mv licenses "${pkgdir}/usr/share/licenses/${pkgname}"
-
-  # Install icons
-  install -m 755 -d "${pkgdir}/usr/share/pixmaps"
-  mv dbeaver.png "${pkgdir}/usr/share/pixmaps/${pkgname}.png"
-  mv icon.xpm "${pkgdir}/usr/share/pixmaps/${pkgname}.xpm"
-
-  # Install executable script into /usr/bin
-  install -m 755 -d "${pkgdir}/usr/bin"
-  install -m 755 "${srcdir}/dbeaver.sh" "${pkgdir}/usr/bin/${pkgname}"
-
-  # Install application launcher into /usr/share/applications
-  install -m 755 -d "${pkgdir}/usr/share/applications"
-  install -m 755 -t "${pkgdir}/usr/share/applications" 
"${srcdir}/${pkgname}.desktop"
-
-  # Clean up and install new profile
-  rm -rf 

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

2020-03-29 Thread Felix Yan via arch-commits
Date: Sunday, March 29, 2020 @ 23:47:16
  Author: felixonmars
Revision: 606655

archrelease: copy trunk to community-staging-x86_64

Added:
  idris/repos/community-staging-x86_64/
  idris/repos/community-staging-x86_64/PKGBUILD
(from rev 606654, idris/trunk/PKGBUILD)
  idris/repos/community-staging-x86_64/ghc-8.8.patch
(from rev 606654, idris/trunk/ghc-8.8.patch)
  idris/repos/community-staging-x86_64/megaparsec-8.patch
(from rev 606654, idris/trunk/megaparsec-8.patch)

+
 PKGBUILD   |   65 
 ghc-8.8.patch  | 5186 +++
 megaparsec-8.patch |   41 
 3 files changed, 5292 insertions(+)

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


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

2020-03-29 Thread Felix Yan via arch-commits
Date: Sunday, March 29, 2020 @ 23:46:55
  Author: felixonmars
Revision: 606654

upgpkg: idris 1.3.2-110: rebuild with ChasingBottoms 1.3.1.8

Modified:
  idris/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-29 23:32:37 UTC (rev 606653)
+++ PKGBUILD2020-03-29 23:46:55 UTC (rev 606654)
@@ -3,7 +3,7 @@
 
 pkgname=idris
 pkgver=1.3.2
-pkgrel=109
+pkgrel=110
 pkgdesc="Functional Programming Language with Dependent Types"
 url="https://www.idris-lang.org/;
 license=("BSD")


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

2020-03-29 Thread Fabio Castelli via arch-commits
Date: Sunday, March 29, 2020 @ 23:32:20
  Author: muflone
Revision: 606652

upgpkg: gscan2pdf 2.6.5-1

Modified:
  gscan2pdf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-29 23:29:16 UTC (rev 606651)
+++ PKGBUILD2020-03-29 23:32:20 UTC (rev 606652)
@@ -6,7 +6,7 @@
 # Contributor: Olaf Leidinger 
 
 pkgname=gscan2pdf
-pkgver=2.6.4
+pkgver=2.6.5
 pkgrel=1
 pkgdesc='A GUI with OCR capability to produce PDFs or DjVus from scanned 
documents'
 arch=('any')
@@ -25,7 +25,7 @@
 'cuneiform: OCR support'
 'pdftk: PDF encryption')
 
source=("https://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.xz;)
-sha512sums=('10d08b10f3101759757a2d98f2c2b41813a5f67234471f746ecda5ffebe085cb0d435343d05fa9107ed942785f707c7c2d8db6e430b1af335afe30b1d9079f08')
+sha512sums=('5e0bfd358daaf340092a54750df791460e3e234ffd144351232e23dad40b6602d45a54e24b61eb54a11c7b8fc7eb7ca192764f67d323f86799d48096483b09d6')
 options=('!emptydirs')
 
 build() {


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

2020-03-29 Thread Fabio Castelli via arch-commits
Date: Sunday, March 29, 2020 @ 23:32:37
  Author: muflone
Revision: 606653

archrelease: copy trunk to community-any

Added:
  gscan2pdf/repos/community-any/PKGBUILD
(from rev 606652, gscan2pdf/trunk/PKGBUILD)
Deleted:
  gscan2pdf/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-03-29 23:32:20 UTC (rev 606652)
+++ PKGBUILD2020-03-29 23:32:37 UTC (rev 606653)
@@ -1,48 +0,0 @@
-# Maintainer: Muflone http://www.muflone.com/contacts/english/
-# Contributor: Tristelune  
-# Contributor: LeCrayonVert 
-# Contributor: yugrotavele 
-# Contributor: Sven Salzwedel 
-# Contributor: Olaf Leidinger 
-
-pkgname=gscan2pdf
-pkgver=2.6.4
-pkgrel=1
-pkgdesc='A GUI with OCR capability to produce PDFs or DjVus from scanned 
documents'
-arch=('any')
-url='http://gscan2pdf.sourceforge.net/'
-license=('GPL')
-depends=('imagemagick' 'perl-config-general' 'perl-date-calc' 'perl-goocanvas2'
- 'perl-gtk3-simplelist' 'perl-data-uuid'
- 'perl-filesys-df' 'perl-html-parser' 'perl-list-moreutils'
- 'perl-locale-gettext' 'perl-log-log4perl' 'perl-pdf-api2'
- 'perl-proc-processtable' 'perl-readonly' 'perl-image-sane' 
'perl-set-intspan'
- 'perl-try-tiny' 'unpaper')
-optdepends=('djvulibre: DjVu image format'
-'gocr: OCR support'
-'xdg-utils: email as PDF'
-'tesseract: OCR support'
-'cuneiform: OCR support'
-'pdftk: PDF encryption')
-source=("https://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.xz;)
-sha512sums=('10d08b10f3101759757a2d98f2c2b41813a5f67234471f746ecda5ffebe085cb0d435343d05fa9107ed942785f707c7c2d8db6e430b1af335afe30b1d9079f08')
-options=('!emptydirs')
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT
-  export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps
-  perl Makefile.PL
-  make
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT
-  export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps
-  make install INSTALLDIRS=vendor DESTDIR="${pkgdir}"
-  mv "${pkgdir}/usr/bin/vendor_perl/${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
-  # Delete unuseful files
-  find "${pkgdir}" -name '.packlist' -delete
-  find "${pkgdir}" -name '*.pod' -delete
-}

Copied: gscan2pdf/repos/community-any/PKGBUILD (from rev 606652, 
gscan2pdf/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-03-29 23:32:37 UTC (rev 606653)
@@ -0,0 +1,48 @@
+# Maintainer: Muflone http://www.muflone.com/contacts/english/
+# Contributor: Tristelune  
+# Contributor: LeCrayonVert 
+# Contributor: yugrotavele 
+# Contributor: Sven Salzwedel 
+# Contributor: Olaf Leidinger 
+
+pkgname=gscan2pdf
+pkgver=2.6.5
+pkgrel=1
+pkgdesc='A GUI with OCR capability to produce PDFs or DjVus from scanned 
documents'
+arch=('any')
+url='http://gscan2pdf.sourceforge.net/'
+license=('GPL')
+depends=('imagemagick' 'perl-config-general' 'perl-date-calc' 'perl-goocanvas2'
+ 'perl-gtk3-simplelist' 'perl-data-uuid'
+ 'perl-filesys-df' 'perl-html-parser' 'perl-list-moreutils'
+ 'perl-locale-gettext' 'perl-log-log4perl' 'perl-pdf-api2'
+ 'perl-proc-processtable' 'perl-readonly' 'perl-image-sane' 
'perl-set-intspan'
+ 'perl-try-tiny' 'unpaper')
+optdepends=('djvulibre: DjVu image format'
+'gocr: OCR support'
+'xdg-utils: email as PDF'
+'tesseract: OCR support'
+'cuneiform: OCR support'
+'pdftk: PDF encryption')
+source=("https://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.xz;)
+sha512sums=('5e0bfd358daaf340092a54750df791460e3e234ffd144351232e23dad40b6602d45a54e24b61eb54a11c7b8fc7eb7ca192764f67d323f86799d48096483b09d6')
+options=('!emptydirs')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT
+  export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps
+  perl Makefile.PL
+  make
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT
+  export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps
+  make install INSTALLDIRS=vendor DESTDIR="${pkgdir}"
+  mv "${pkgdir}/usr/bin/vendor_perl/${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
+  # Delete unuseful files
+  find "${pkgdir}" -name '.packlist' -delete
+  find "${pkgdir}" -name '*.pod' -delete
+}


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

2020-03-29 Thread Felix Yan via arch-commits
Date: Sunday, March 29, 2020 @ 23:29:16
  Author: felixonmars
Revision: 606651

archrelease: copy trunk to community-staging-x86_64

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

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

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


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

2020-03-29 Thread Felix Yan via arch-commits
Date: Sunday, March 29, 2020 @ 23:29:02
  Author: felixonmars
Revision: 606650

upgpkg: hopenpgp-tools 0.23.1-9: rebuild with ChasingBottoms 1.3.1.8

Modified:
  hopenpgp-tools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-29 23:27:53 UTC (rev 606649)
+++ PKGBUILD2020-03-29 23:29:02 UTC (rev 606650)
@@ -3,7 +3,7 @@
 
 pkgname=hopenpgp-tools
 pkgver=0.23.1
-pkgrel=8
+pkgrel=9
 pkgdesc="hOpenPGP-based command-line tools"
 url="https://salsa.debian.org/clint/hopenpgp-tools;
 license=("AGPL3")


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

2020-03-29 Thread Jonas Witschel via arch-commits
Date: Sunday, March 29, 2020 @ 23:27:53
  Author: diabonas
Revision: 606649

archrelease: copy trunk to community-any

Added:
  weechat-matrix/repos/community-any/
  weechat-matrix/repos/community-any/PKGBUILD
(from rev 606648, weechat-matrix/trunk/PKGBUILD)
  weechat-matrix/repos/community-any/weechat-matrix.install
(from rev 606648, weechat-matrix/trunk/weechat-matrix.install)

+
 PKGBUILD   |   46 ++
 weechat-matrix.install |4 
 2 files changed, 50 insertions(+)

Copied: weechat-matrix/repos/community-any/PKGBUILD (from rev 606648, 
weechat-matrix/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2020-03-29 23:27:53 UTC (rev 606649)
@@ -0,0 +1,46 @@
+# Maintainer: Jonas Witschel 
+pkgname=weechat-matrix
+pkgver=0.1.0
+_tag=f0249bd923607220508386aefb2cb2507e11669e # git show-ref "$pkgver"
+pkgrel=1
+pkgdesc='Weechat Matrix protocol script written in Python'
+arch=('any')
+url='https://github.com/poljar/weechat-matrix'
+license=('ISC')
+depends=('python-atomicwrites' 'python-attrs' 'python-future' 'python-logbook' 
'python-matrix-nio'
+ 'python-pygments' 'python-pyopenssl' 'python-webcolors')
+makedepends=('git')
+checkdepends=('python-hypothesis' 'python-pytest')
+optdepends=('python-aiohttp: matrix_sso_helper support'
+'python-magic: matrix_upload support'
+'python-requests: matrix_decrypt and matrix_upload support'
+'ranger: default plumber for matrix_decrypt')
+install='weechat-matrix.install'
+source=("git+$url.git?signed#tag=$_tag")
+sha512sums=('SKIP')
+validpgpkeys=('689A3B5BC6560AB4C99A2A0581314DA807EF4E22') # Damir Jelić 
(poljar) 
+
+pkgver() {
+   cd "$pkgname"
+   git describe | sed 's/\([^-]*-\)g/r\1/;s/-/./g'
+}
+
+prepare() {
+   cd "$pkgname"
+   sed -ri 's|#!/usr/bin/env( -S)? python3|#!/usr/bin/python3|' 
contrib/*.py
+}
+
+check() {
+   cd "$pkgname"
+   python -m pytest
+}
+
+package() {
+   cd "$pkgname"
+   make DESTDIR="$pkgdir" PREFIX=/usr/share/weechat install
+   for _script in matrix_decrypt matrix_sso_helper matrix_upload
+   do
+   install -Dm755 "contrib/$_script.py" "$pkgdir/usr/bin/$_script"
+   done
+   install -Dm644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
+}

Copied: weechat-matrix/repos/community-any/weechat-matrix.install (from rev 
606648, weechat-matrix/trunk/weechat-matrix.install)
===
--- community-any/weechat-matrix.install(rev 0)
+++ community-any/weechat-matrix.install2020-03-29 23:27:53 UTC (rev 
606649)
@@ -0,0 +1,4 @@
+post_install() {
+   echo "To add this script to your WeeChat installation, please execute 
the following command:"
+   echo "ln -s /usr/share/weechat/python/{matrix,matrix.py} -t 
~/.weechat/python"
+}


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

2020-03-29 Thread Felix Yan via arch-commits
Date: Sunday, March 29, 2020 @ 23:27:43
  Author: felixonmars
Revision: 606648

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: hoogle/repos/community-staging-x86_64/PKGBUILD (from rev 606646, 
hoogle/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-03-29 23:27:43 UTC (rev 606648)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hoogle
+pkgver=5.0.17.15
+pkgrel=23
+pkgdesc="Haskell API Search"
+url="https://www.haskell.org/hoogle/;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-quickcheck' 'haskell-aeson' 'haskell-blaze-html'
+ 'haskell-blaze-markup' 'haskell-cmdargs' 'haskell-conduit' 
'haskell-conduit-extra'
+ 'haskell-connection' 'haskell-extra' 'haskell-foundation' 
'haskell-hashable'
+ 'haskell-http-conduit' 'haskell-http-types' 'haskell-js-flot' 
'haskell-js-jquery'
+ 'haskell-mmap' 'haskell-network' 'haskell-old-locale' 
'haskell-process-extras'
+ 'haskell-resourcet' 'haskell-src-exts' 'haskell-storable-tuple' 
'haskell-tar'
+ 'haskell-uniplate' 'haskell-utf8-string' 'haskell-vector' 
'haskell-wai'
+ 'haskell-wai-logger' 'haskell-warp' 'haskell-warp-tls' 'haskell-zlib')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('e2440cc92f5395e0e6b25344d0ed47eaa20ab257d2e9d5d3f67005d3ed666acc359503516418127cb3fe9a760387105b7894de80fafea326fe75143022ec5283')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+--ghc-option='-pie'
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


[arch-commits] Commit in (5 files)

2020-03-29 Thread Jonas Witschel via arch-commits
Date: Sunday, March 29, 2020 @ 23:27:42
  Author: diabonas
Revision: 606647

Initial import of weechat-matrix

Added:
  weechat-matrix/
  weechat-matrix/repos/
  weechat-matrix/trunk/
  weechat-matrix/trunk/PKGBUILD
  weechat-matrix/trunk/weechat-matrix.install

+
 PKGBUILD   |   46 ++
 weechat-matrix.install |4 
 2 files changed, 50 insertions(+)

Added: weechat-matrix/trunk/PKGBUILD
===
--- weechat-matrix/trunk/PKGBUILD   (rev 0)
+++ weechat-matrix/trunk/PKGBUILD   2020-03-29 23:27:42 UTC (rev 606647)
@@ -0,0 +1,46 @@
+# Maintainer: Jonas Witschel 
+pkgname=weechat-matrix
+pkgver=0.1.0
+_tag=f0249bd923607220508386aefb2cb2507e11669e # git show-ref "$pkgver"
+pkgrel=1
+pkgdesc='Weechat Matrix protocol script written in Python'
+arch=('any')
+url='https://github.com/poljar/weechat-matrix'
+license=('ISC')
+depends=('python-atomicwrites' 'python-attrs' 'python-future' 'python-logbook' 
'python-matrix-nio'
+ 'python-pygments' 'python-pyopenssl' 'python-webcolors')
+makedepends=('git')
+checkdepends=('python-hypothesis' 'python-pytest')
+optdepends=('python-aiohttp: matrix_sso_helper support'
+'python-magic: matrix_upload support'
+'python-requests: matrix_decrypt and matrix_upload support'
+'ranger: default plumber for matrix_decrypt')
+install='weechat-matrix.install'
+source=("git+$url.git?signed#tag=$_tag")
+sha512sums=('SKIP')
+validpgpkeys=('689A3B5BC6560AB4C99A2A0581314DA807EF4E22') # Damir Jelić 
(poljar) 
+
+pkgver() {
+   cd "$pkgname"
+   git describe | sed 's/\([^-]*-\)g/r\1/;s/-/./g'
+}
+
+prepare() {
+   cd "$pkgname"
+   sed -ri 's|#!/usr/bin/env( -S)? python3|#!/usr/bin/python3|' 
contrib/*.py
+}
+
+check() {
+   cd "$pkgname"
+   python -m pytest
+}
+
+package() {
+   cd "$pkgname"
+   make DESTDIR="$pkgdir" PREFIX=/usr/share/weechat install
+   for _script in matrix_decrypt matrix_sso_helper matrix_upload
+   do
+   install -Dm755 "contrib/$_script.py" "$pkgdir/usr/bin/$_script"
+   done
+   install -Dm644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
+}

Added: weechat-matrix/trunk/weechat-matrix.install
===
--- weechat-matrix/trunk/weechat-matrix.install (rev 0)
+++ weechat-matrix/trunk/weechat-matrix.install 2020-03-29 23:27:42 UTC (rev 
606647)
@@ -0,0 +1,4 @@
+post_install() {
+   echo "To add this script to your WeeChat installation, please execute 
the following command:"
+   echo "ln -s /usr/share/weechat/python/{matrix,matrix.py} -t 
~/.weechat/python"
+}


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

2020-03-29 Thread Felix Yan via arch-commits
Date: Sunday, March 29, 2020 @ 23:27:29
  Author: felixonmars
Revision: 606646

upgpkg: hoogle 5.0.17.15-23: rebuild with ChasingBottoms 1.3.1.8

Modified:
  hoogle/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-29 23:26:03 UTC (rev 606645)
+++ PKGBUILD2020-03-29 23:27:29 UTC (rev 606646)
@@ -3,7 +3,7 @@
 
 pkgname=hoogle
 pkgver=5.0.17.15
-pkgrel=22
+pkgrel=23
 pkgdesc="Haskell API Search"
 url="https://www.haskell.org/hoogle/;
 license=("BSD")


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

2020-03-29 Thread Felix Yan via arch-commits
Date: Sunday, March 29, 2020 @ 23:26:03
  Author: felixonmars
Revision: 606645

archrelease: copy trunk to community-staging-x86_64

Added:
  cryptol/repos/community-staging-x86_64/
  cryptol/repos/community-staging-x86_64/PKGBUILD
(from rev 606644, cryptol/trunk/PKGBUILD)

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

Copied: cryptol/repos/community-staging-x86_64/PKGBUILD (from rev 606644, 
cryptol/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-03-29 23:26:03 UTC (rev 606645)
@@ -0,0 +1,50 @@
+# Maintainer: Felix Yan 
+
+pkgname=cryptol
+pkgver=2.8.0
+pkgrel=92
+pkgdesc="The Language of Cryptography"
+url="https://www.cryptol.net;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'z3' 'haskell-base-compat' 'haskell-cryptohash-sha1' 
'haskell-gitrev'
+ 'haskell-graphscc' 'haskell-heredoc' 'haskell-monad-control' 
'haskell-monadlib'
+ 'haskell-panic' 'haskell-random' 'haskell-sbv' 'haskell-simple-smt' 
'haskell-strict'
+ 'haskell-tf-random' 'haskell-transformers-base' 
'haskell-ansi-terminal'
+ 'haskell-blaze-html')
+makedepends=('ghc' 'alex' 'happy')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/GaloisInc/cryptol/archive/$pkgver.tar.gz;
+ghc-8.8.patch::https://github.com/GaloisInc/cryptol/pull/655.patch)
+sha512sums=('ad2cbb67dbcd10dba12457b24558af4ef7066817f18e162432607e7d887071fef13a1c958e37a3f7e8e3fd04079c20cc2a8abdcf1c9dd35a9a93e7e0a2d383b0'
+
'f5399cfde04c2645e0bc80d80a39ac570c9649961e22bf9808bb55ba8457f9a124469d699de73624b2debabe8d672879bd0b2279b60dfcb08d328de67ca78e84')
+
+prepare() {
+cd $pkgname-$pkgver
+patch -p1 -i ../ghc-8.8.patch
+sed -i 's/< *0.11/<1/' $pkgname.cabal
+#sed -i 's/import Prelude.Compat/import Prelude.Compat hiding ( fail )/' 
src/Cryptol/Parser/{NoPat,ParserUtils}.hs
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-static -f-relocatable --ghc-option='-pie'
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-03-29 Thread Felix Yan via arch-commits
Date: Sunday, March 29, 2020 @ 23:25:49
  Author: felixonmars
Revision: 606644

upgpkg: cryptol 2.8.0-92: rebuild with ChasingBottoms 1.3.1.8

Modified:
  cryptol/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-29 23:23:11 UTC (rev 606643)
+++ PKGBUILD2020-03-29 23:25:49 UTC (rev 606644)
@@ -2,7 +2,7 @@
 
 pkgname=cryptol
 pkgver=2.8.0
-pkgrel=91
+pkgrel=92
 pkgdesc="The Language of Cryptography"
 url="https://www.cryptol.net;
 license=("BSD")


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

2020-03-29 Thread Felix Yan via arch-commits
Date: Sunday, March 29, 2020 @ 23:22:57
  Author: felixonmars
Revision: 606642

upgpkg: haskell-sbv 8.6-53: rebuild with ChasingBottoms 1.3.1.8

Modified:
  haskell-sbv/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-29 23:18:22 UTC (rev 606641)
+++ PKGBUILD2020-03-29 23:22:57 UTC (rev 606642)
@@ -4,7 +4,7 @@
 _hkgname=sbv
 pkgname=haskell-sbv
 pkgver=8.6
-pkgrel=52
+pkgrel=53
 pkgdesc="SMT Based Verification: Symbolic Haskell theorem prover using SMT 
solving"
 url="https://leventerkok.github.com/sbv;
 license=("BSD")


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

2020-03-29 Thread Felix Yan via arch-commits
Date: Sunday, March 29, 2020 @ 23:23:11
  Author: felixonmars
Revision: 606643

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-sbv/repos/community-staging-x86_64/PKGBUILD (from rev 606642, 
haskell-sbv/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-03-29 23:23:11 UTC (rev 606643)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=sbv
+pkgname=haskell-sbv
+pkgver=8.6
+pkgrel=53
+pkgdesc="SMT Based Verification: Symbolic Haskell theorem prover using SMT 
solving"
+url="https://leventerkok.github.com/sbv;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-ghc' 'haskell-quickcheck' 'haskell-cracknum' 
'haskell-async'
+ 'haskell-random' 'haskell-syb' 'haskell-generic-deriving')
+makedepends=('ghc' 'haskell-doctest' 'haskell-glob' 'hlint' 'haskell-tasty' 
'haskell-tasty-golden'
+ 'haskell-tasty-hunit' 'haskell-tasty-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('2282c63d21c6baa8070ec8afbfb75deeae6becead7963efd0894d9a82af31de7e993d7bc57c17c5e7914bd458f45771ac7e0995632511584dd6d90bff9034f1f')
+
+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 python-fonttools/repos/community-any (PKGBUILD PKGBUILD)

2020-03-29 Thread Andrzej Giniewicz via arch-commits
Date: Sunday, March 29, 2020 @ 23:17:26
  Author: aginiewicz
Revision: 606639

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-03-29 23:17:19 UTC (rev 606638)
+++ PKGBUILD2020-03-29 23:17:26 UTC (rev 606639)
@@ -1,35 +0,0 @@
-# Maintainer: Andrzej Giniewicz 
-# Contributor: Firmicus 
-# Contributor: flying sheep 
-
-pkgname=python-fonttools
-pkgver=4.6.0
-pkgrel=1
-pkgdesc="A library to manipulate font files from Python"
-url="https://github.com/fonttools/fonttools;
-license=("MIT")
-arch=('any')
-depends=("python")
-makedepends=("python-setuptools")
-optdepends=("python-lxml: faster backend for XML files reading/writing"
-   "python-fs: to read/write UFO source files, "
-   "python-brotli: to compress/decompress WOFF 2.0 web fonts"
-   "python-zopfli: faster backend fom WOFF 1.0 web fonts compression"
-   "python-scipy: for finding wrong contour/component order between 
different masters"
-   "python-matplotlib: for visualizing DesignSpaceDocument and 
resulting VariationModel"
-   "python-sympy: for symbolic font statistics analysis"
-   "python-pyqt5: for drawing glyphs with Qt's QPainterPath"
-   "python-reportlab: to drawing glyphs as PNG images")
-source=("https://github.com/fonttools/fonttools/releases/download/${pkgver}/fonttools-${pkgver}.zip;)
-sha256sums=('18ebd83054995509584a542f70202f9fe8f0dacdb6eab3e132e96a067f9b09d7')
-
-build() {
-  cd "$srcdir"/fonttools-${pkgver}
-  python setup.py build
-}
-
-package() {
-  cd "$srcdir"/fonttools-${pkgver}
-  python setup.py install --skip-build --root="$pkgdir" --optimize=1
-  install -D -m755 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-fonttools/repos/community-any/PKGBUILD (from rev 606638, 
python-fonttools/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-03-29 23:17:26 UTC (rev 606639)
@@ -0,0 +1,36 @@
+# Maintainer: Andrzej Giniewicz 
+# Contributor: Firmicus 
+# Contributor: flying sheep 
+
+pkgname=python-fonttools
+pkgver=4.6.0
+pkgrel=2
+pkgdesc="A library to manipulate font files from Python"
+url="https://github.com/fonttools/fonttools;
+license=("MIT")
+arch=('any')
+depends=("python")
+makedepends=("python-setuptools")
+optdepends=("python-lxml: faster backend for XML files reading/writing"
+   "python-fs: to read/write UFO source files, "
+   "python-brotli: to compress/decompress WOFF 2.0 web fonts"
+   "python-zopfli: faster backend fom WOFF 1.0 web fonts compression"
+   "python-scipy: for finding wrong contour/component order between 
different masters"
+   "python-matplotlib: for visualizing DesignSpaceDocument and 
resulting VariationModel"
+   "python-unicodedata2: for displaying the Unicode character names 
when dumping the cmap table with ttx"
+   "python-sympy: for symbolic font statistics analysis"
+   "python-pyqt5: for drawing glyphs with Qt's QPainterPath"
+   "python-reportlab: to drawing glyphs as PNG images")
+source=("https://github.com/fonttools/fonttools/releases/download/${pkgver}/fonttools-${pkgver}.zip;)
+sha256sums=('18ebd83054995509584a542f70202f9fe8f0dacdb6eab3e132e96a067f9b09d7')
+
+build() {
+  cd "$srcdir"/fonttools-${pkgver}
+  python setup.py build
+}
+
+package() {
+  cd "$srcdir"/fonttools-${pkgver}
+  python setup.py install --skip-build --root="$pkgdir" --optimize=1
+  install -D -m755 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


[arch-commits] Commit in (4 files)

2020-03-29 Thread Jonas Witschel via arch-commits
Date: Sunday, March 29, 2020 @ 23:18:03
  Author: diabonas
Revision: 606640

Initial import of python-matrix-nio

Added:
  python-matrix-nio/
  python-matrix-nio/repos/
  python-matrix-nio/trunk/
  python-matrix-nio/trunk/PKGBUILD

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

Added: python-matrix-nio/trunk/PKGBUILD
===
--- python-matrix-nio/trunk/PKGBUILD(rev 0)
+++ python-matrix-nio/trunk/PKGBUILD2020-03-29 23:18:03 UTC (rev 606640)
@@ -0,0 +1,39 @@
+# Maintainer: Jonas Witschel 
+pkgname=python-matrix-nio
+pkgver=0.10.0
+_tag=55b4a01732def2865576335ab8ec867ac26c81e4 # git show-ref "$pkgver"
+pkgrel=1
+pkgdesc='Python Matrix client library, designed according to sans I/O 
principles'
+arch=('any')
+url='https://github.com/poljar/matrix-nio'
+license=('ISC')
+depends=('python-aiofiles' 'python-aiohttp' 'python-atomicwrites' 
'python-attrs' 'python-cachetools'
+ 'python-future' 'python-h11' 'python-h2' 'python-jsonschema' 
'python-logbook' 'python-olm'
+ 'python-peewee' 'python-pycryptodome' 'python-unpaddedbase64')
+makedepends=('git')
+checkdepends=('python-aioresponses' 'python-faker' 'python-hypothesis' 
+  'python-pytest' 'python-pytest-aiohttp' 
'python-pytest-benchmark')
+source=("git+$url.git?signed#tag=$_tag")
+sha512sums=('SKIP')
+validpgpkeys=('689A3B5BC6560AB4C99A2A0581314DA807EF4E22') # Damir Jelić 
(poljar) 
+
+pkgver() {
+   cd "${pkgname#python-}"
+   git describe | sed 's/\([^-]*-\)g/r\1/;s/-/./g'
+}
+
+build() {
+   cd "${pkgname#python-}"
+   python setup.py build
+}
+
+check() {
+   cd "${pkgname#python-}"
+   python -m pytest
+}
+
+package() {
+   cd "${pkgname#python-}"
+   python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+   install -Dm644 LICENSE.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


[arch-commits] Commit in python-matrix-nio/repos (2 files)

2020-03-29 Thread Jonas Witschel via arch-commits
Date: Sunday, March 29, 2020 @ 23:18:22
  Author: diabonas
Revision: 606641

archrelease: copy trunk to community-any

Added:
  python-matrix-nio/repos/community-any/
  python-matrix-nio/repos/community-any/PKGBUILD
(from rev 606640, python-matrix-nio/trunk/PKGBUILD)

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

Copied: python-matrix-nio/repos/community-any/PKGBUILD (from rev 606640, 
python-matrix-nio/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2020-03-29 23:18:22 UTC (rev 606641)
@@ -0,0 +1,39 @@
+# Maintainer: Jonas Witschel 
+pkgname=python-matrix-nio
+pkgver=0.10.0
+_tag=55b4a01732def2865576335ab8ec867ac26c81e4 # git show-ref "$pkgver"
+pkgrel=1
+pkgdesc='Python Matrix client library, designed according to sans I/O 
principles'
+arch=('any')
+url='https://github.com/poljar/matrix-nio'
+license=('ISC')
+depends=('python-aiofiles' 'python-aiohttp' 'python-atomicwrites' 
'python-attrs' 'python-cachetools'
+ 'python-future' 'python-h11' 'python-h2' 'python-jsonschema' 
'python-logbook' 'python-olm'
+ 'python-peewee' 'python-pycryptodome' 'python-unpaddedbase64')
+makedepends=('git')
+checkdepends=('python-aioresponses' 'python-faker' 'python-hypothesis' 
+  'python-pytest' 'python-pytest-aiohttp' 
'python-pytest-benchmark')
+source=("git+$url.git?signed#tag=$_tag")
+sha512sums=('SKIP')
+validpgpkeys=('689A3B5BC6560AB4C99A2A0581314DA807EF4E22') # Damir Jelić 
(poljar) 
+
+pkgver() {
+   cd "${pkgname#python-}"
+   git describe | sed 's/\([^-]*-\)g/r\1/;s/-/./g'
+}
+
+build() {
+   cd "${pkgname#python-}"
+   python setup.py build
+}
+
+check() {
+   cd "${pkgname#python-}"
+   python -m pytest
+}
+
+package() {
+   cd "${pkgname#python-}"
+   python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+   install -Dm644 LICENSE.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2020-03-29 Thread Andrzej Giniewicz via arch-commits
Date: Sunday, March 29, 2020 @ 23:17:19
  Author: aginiewicz
Revision: 606638

upgpkg: python-fonttools 4.6.0-2: python-fonttools: fix FS#66018, add 
python-unicodedata2

Modified:
  python-fonttools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-29 23:15:01 UTC (rev 606637)
+++ PKGBUILD2020-03-29 23:17:19 UTC (rev 606638)
@@ -4,7 +4,7 @@
 
 pkgname=python-fonttools
 pkgver=4.6.0
-pkgrel=1
+pkgrel=2
 pkgdesc="A library to manipulate font files from Python"
 url="https://github.com/fonttools/fonttools;
 license=("MIT")
@@ -17,6 +17,7 @@
"python-zopfli: faster backend fom WOFF 1.0 web fonts compression"
"python-scipy: for finding wrong contour/component order between 
different masters"
"python-matplotlib: for visualizing DesignSpaceDocument and 
resulting VariationModel"
+   "python-unicodedata2: for displaying the Unicode character names 
when dumping the cmap table with ttx"
"python-sympy: for symbolic font statistics analysis"
"python-pyqt5: for drawing glyphs with Qt's QPainterPath"
"python-reportlab: to drawing glyphs as PNG images")


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

2020-03-29 Thread Felix Yan via arch-commits
Date: Sunday, March 29, 2020 @ 23:15:01
  Author: felixonmars
Revision: 606637

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-ipynb/repos/community-staging-x86_64/PKGBUILD (from rev 606636, 
haskell-ipynb/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-03-29 23:15:01 UTC (rev 606637)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+
+_hkgname=ipynb
+pkgname=haskell-ipynb
+pkgver=0.1
+pkgrel=164
+pkgdesc="Data structure for working with Jupyter notebooks (ipynb)"
+url="https://github.com/jgm/ipynb;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-base64-bytestring' 
'haskell-unordered-containers')
+makedepends=('ghc' 'haskell-aeson-diff' 'haskell-microlens' 
'haskell-microlens-aeson'
+ 'haskell-tasty' 'haskell-tasty-hunit' 'haskell-vector')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('8717dac6496905afc5e8735abc3b3a4a90b171253b035efa0751a6311b901caad563fdfeaa455987c1307d0532273ab80be37256562143db575f13c326843bf4')
+
+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 hledger/repos (2 files)

2020-03-29 Thread Felix Yan via arch-commits
Date: Sunday, March 29, 2020 @ 23:08:16
  Author: felixonmars
Revision: 606625

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: hledger/repos/community-staging-x86_64/PKGBUILD (from rev 606624, 
hledger/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-03-29 23:08:16 UTC (rev 606625)
@@ -0,0 +1,46 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hledger
+pkgver=1.17.1.1
+pkgrel=6
+pkgdesc="Command-line interface for the hledger accounting tool"
+url="http://hledger.org;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-ansi-terminal' 
'haskell-base-compat-batteries'
+ 'haskell-cmdargs' 'haskell-data-default' 'haskell-decimal' 
'haskell-diff'
+ 'haskell-hashable' 'haskell-hledger-lib' 'haskell-lucid' 
'haskell-math-functions'
+ 'haskell-megaparsec' 'haskell-old-time' 'haskell-pretty-show' 
'haskell-regex-tdfa'
+ 'haskell-safe' 'haskell-shakespeare' 'haskell-split' 
'haskell-tabular' 'haskell-tasty'
+ 'haskell-temporary' 'haskell-unordered-containers' 
'haskell-utf8-string'
+ 'haskell-utility-ht' 'haskell-wizards')
+makedepends=('ghc' 'haskell-extra' 'haskell-timeit')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('46d356575e4ce3736da17716e0638d53b022d53393751bfec5fcae965a3c3416be92afbac5300fa9ffa0c32031fb4892e34e565aba1fea426837cf3f4c2c83ea')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fterminfo -fthreaded --ghc-option='-pie'
+LC_CTYPE=en_US.UTF-8 runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $pkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-03-29 Thread Felix Yan via arch-commits
Date: Sunday, March 29, 2020 @ 23:13:47
  Author: felixonmars
Revision: 606634

upgpkg: haskell-aeson-diff 1.1.0.8-82: rebuild with ChasingBottoms 1.3.1.8

Modified:
  haskell-aeson-diff/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-29 23:13:30 UTC (rev 606633)
+++ PKGBUILD2020-03-29 23:13:47 UTC (rev 606634)
@@ -3,7 +3,7 @@
 _hkgname=aeson-diff
 pkgname=haskell-aeson-diff
 pkgver=1.1.0.8
-pkgrel=81
+pkgrel=82
 pkgdesc="Extract and apply patches to JSON documents"
 url="https://github.com/thsutton/aeson-diff;
 license=('BSD')


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

2020-03-29 Thread Felix Yan via arch-commits
Date: Sunday, March 29, 2020 @ 23:14:02
  Author: felixonmars
Revision: 606635

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-aeson-diff/repos/community-staging-x86_64/
  haskell-aeson-diff/repos/community-staging-x86_64/PKGBUILD
(from rev 606634, haskell-aeson-diff/trunk/PKGBUILD)

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

Copied: haskell-aeson-diff/repos/community-staging-x86_64/PKGBUILD (from rev 
606634, haskell-aeson-diff/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-03-29 23:14:02 UTC (rev 606635)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+
+_hkgname=aeson-diff
+pkgname=haskell-aeson-diff
+pkgver=1.1.0.8
+pkgrel=82
+pkgdesc="Extract and apply patches to JSON documents"
+url="https://github.com/thsutton/aeson-diff;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-edit-distance-vector' 
'haskell-hashable'
+ 'haskell-scientific' 'haskell-unordered-containers' 'haskell-vector'
+ 'haskell-optparse-applicative')
+makedepends=('ghc' 'haskell-doctest' 'haskell-glob' 'haskell-quickcheck'
+ 'haskell-quickcheck-instances' 'hlint')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('5a5f703dec592c0cfd825eb1899006350649c52bf810ff1aaaf4134ebfbc11f5fbe9e7f158a8c3a21dbef4902b1f9e94148bc116e27418b2b786f6d31c7561fb')
+
+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-ipynb/trunk (PKGBUILD)

2020-03-29 Thread Felix Yan via arch-commits
Date: Sunday, March 29, 2020 @ 23:14:46
  Author: felixonmars
Revision: 606636

upgpkg: haskell-ipynb 0.1-164: rebuild with ChasingBottoms 1.3.1.8

Modified:
  haskell-ipynb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-29 23:14:02 UTC (rev 606635)
+++ PKGBUILD2020-03-29 23:14:46 UTC (rev 606636)
@@ -3,7 +3,7 @@
 _hkgname=ipynb
 pkgname=haskell-ipynb
 pkgver=0.1
-pkgrel=163
+pkgrel=164
 pkgdesc="Data structure for working with Jupyter notebooks (ipynb)"
 url="https://github.com/jgm/ipynb;
 license=('BSD')


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

2020-03-29 Thread Jonas Witschel via arch-commits
Date: Sunday, March 29, 2020 @ 23:13:14
  Author: diabonas
Revision: 606632

Import libolm and python-olm as a split package from the AUR

Added:
  libolm/
  libolm/repos/
  libolm/trunk/
  libolm/trunk/PKGBUILD

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

Added: libolm/trunk/PKGBUILD
===
--- libolm/trunk/PKGBUILD   (rev 0)
+++ libolm/trunk/PKGBUILD   2020-03-29 23:13:14 UTC (rev 606632)
@@ -0,0 +1,56 @@
+# Maintainer: Jonas Witschel 
+pkgname=('libolm' 'python-olm')
+pkgver=3.1.4
+_tag=505e3e2b944599f4291d55b7700a79e3301f877d # git show-ref "$pkgver"
+pkgrel=2
+pkgdesc='Implementation of the Olm and Megolm cryptographic ratchets'
+arch=('x86_64')
+url='https://gitlab.matrix.org/matrix-org/olm'
+license=('APACHE')
+makedepends=('git' 'cmake' 'python-cffi' 'python-future' 'python-setuptools')
+checkdepends=('python-aspectlib' 'python-pytest' 'python-pytest-benchmark')
+source=("git+$url.git?signed#tag=$_tag")
+sha512sums=('SKIP')
+validpgpkeys=('56CF24AEE5F4513280CC594BF75FDC22C1DE8453') # Matrix.org olm 

+
+pkgver() {
+   cd olm
+   git describe | sed 's/\([^-]*-\)g/r\1/;s/-/./g'
+}
+
+build() {
+   cd olm
+   cmake -DCMAKE_INSTALL_PREFIX=/usr \
+ -DCMAKE_BUILD_TYPE=None \
+ -DCMAKE_C_FLAGS="${CFLAGS} ${CPPFLAGS}" \
+ -DCMAKE_CXX_FLAGS="${CXXFLAGS} ${CPPFLAGS}" \
+ -B build
+   cmake --build build
+
+   cd python
+   make olm-python3
+}
+
+check() {
+   cd olm/build/tests
+   ctest
+
+   cd ../../python
+   python olm_build.py
+   LD_LIBRARY_PATH=../build python -m pytest
+}
+
+package_libolm() {
+   depends=('gcc-libs')
+
+   cd olm/build
+   make DESTDIR="$pkgdir" install
+}
+
+package_python-olm() {
+   pkgdesc='Python bindings for Olm'
+   depends=('libolm' 'python-cffi' 'python-future')
+
+   cd olm/python
+   python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}


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

2020-03-29 Thread Jonas Witschel via arch-commits
Date: Sunday, March 29, 2020 @ 23:13:30
  Author: diabonas
Revision: 606633

archrelease: copy trunk to community-x86_64

Added:
  libolm/repos/community-x86_64/
  libolm/repos/community-x86_64/PKGBUILD
(from rev 606632, libolm/trunk/PKGBUILD)

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

Copied: libolm/repos/community-x86_64/PKGBUILD (from rev 606632, 
libolm/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2020-03-29 23:13:30 UTC (rev 606633)
@@ -0,0 +1,56 @@
+# Maintainer: Jonas Witschel 
+pkgname=('libolm' 'python-olm')
+pkgver=3.1.4
+_tag=505e3e2b944599f4291d55b7700a79e3301f877d # git show-ref "$pkgver"
+pkgrel=2
+pkgdesc='Implementation of the Olm and Megolm cryptographic ratchets'
+arch=('x86_64')
+url='https://gitlab.matrix.org/matrix-org/olm'
+license=('APACHE')
+makedepends=('git' 'cmake' 'python-cffi' 'python-future' 'python-setuptools')
+checkdepends=('python-aspectlib' 'python-pytest' 'python-pytest-benchmark')
+source=("git+$url.git?signed#tag=$_tag")
+sha512sums=('SKIP')
+validpgpkeys=('56CF24AEE5F4513280CC594BF75FDC22C1DE8453') # Matrix.org olm 

+
+pkgver() {
+   cd olm
+   git describe | sed 's/\([^-]*-\)g/r\1/;s/-/./g'
+}
+
+build() {
+   cd olm
+   cmake -DCMAKE_INSTALL_PREFIX=/usr \
+ -DCMAKE_BUILD_TYPE=None \
+ -DCMAKE_C_FLAGS="${CFLAGS} ${CPPFLAGS}" \
+ -DCMAKE_CXX_FLAGS="${CXXFLAGS} ${CPPFLAGS}" \
+ -B build
+   cmake --build build
+
+   cd python
+   make olm-python3
+}
+
+check() {
+   cd olm/build/tests
+   ctest
+
+   cd ../../python
+   python olm_build.py
+   LD_LIBRARY_PATH=../build python -m pytest
+}
+
+package_libolm() {
+   depends=('gcc-libs')
+
+   cd olm/build
+   make DESTDIR="$pkgdir" install
+}
+
+package_python-olm() {
+   pkgdesc='Python bindings for Olm'
+   depends=('libolm' 'python-cffi' 'python-future')
+
+   cd olm/python
+   python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}


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

2020-03-29 Thread Felix Yan via arch-commits
Date: Sunday, March 29, 2020 @ 23:12:29
  Author: felixonmars
Revision: 606631

archrelease: copy trunk to community-staging-x86_64

Added:
  hlint/repos/community-staging-x86_64/
  hlint/repos/community-staging-x86_64/PKGBUILD
(from rev 606630, hlint/trunk/PKGBUILD)

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

Copied: hlint/repos/community-staging-x86_64/PKGBUILD (from rev 606630, 
hlint/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-03-29 23:12:29 UTC (rev 606631)
@@ -0,0 +1,42 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hlint
+pkgver=2.2.11
+pkgrel=34
+pkgdesc="Source code suggestions"
+url="http://community.haskell.org/~ndm/hlint/;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-ansi-terminal' 'haskell-cmdargs' 
'haskell-cpphs'
+ 'haskell-data-default' 'haskell-extra' 'haskell-file-embed' 
'haskell-filepattern'
+ 'haskell-ghc' 'haskell-ghc-lib-parser-ex' 'haskell-hscolour' 
'haskell-refact'
+ 'haskell-src-exts' 'haskell-src-exts-util' 'haskell-syb' 
'haskell-uniplate'
+ 'haskell-unordered-containers' 'haskell-utf8-string' 'haskell-vector' 
'haskell-yaml')
+conflicts=('haskell-hlint')
+replaces=('haskell-hlint')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('287b4230d1238b45fa8b6cbe51e6bca19e0300ad89e9637a250e51104a5f843ac5bfbbd2c984edd482248aa086de5f22f82d3525d80880a02847db4130d1aa9c')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fgpl -fthreaded
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/COPYING.BSD3"
+}


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

2020-03-29 Thread Felix Yan via arch-commits
Date: Sunday, March 29, 2020 @ 23:12:14
  Author: felixonmars
Revision: 606630

upgpkg: hlint 2.2.11-34: rebuild with ChasingBottoms 1.3.1.8

Modified:
  hlint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-29 23:10:59 UTC (rev 606629)
+++ PKGBUILD2020-03-29 23:12:14 UTC (rev 606630)
@@ -3,7 +3,7 @@
 
 pkgname=hlint
 pkgver=2.2.11
-pkgrel=33
+pkgrel=34
 pkgdesc="Source code suggestions"
 url="http://community.haskell.org/~ndm/hlint/;
 license=("BSD")


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

2020-03-29 Thread Gaëtan Bisson via arch-commits
Date: Sunday, March 29, 2020 @ 23:12:50
  Author: bisson
Revision: 378694

revert useless bikeshedding

Modified:
  mutt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-29 23:11:27 UTC (rev 378693)
+++ PKGBUILD2020-03-29 23:12:50 UTC (rev 378694)
@@ -14,7 +14,7 @@
 depends=('gpgme' 'ncurses' 'openssl' 'libsasl' 'gdbm' 'libidn2' 'mime-types' 
'krb5')
 validpgpkeys=('8975A9B33AA37910385C5308ADEF768480316BDA')
 source=("http://ftp.mutt.org/pub/mutt/${pkgname}-${pkgver}.tar.gz"{,.asc})
-sha512sums=('f2ea863626e5dad4854c98a1797faa97c9f14fb5161c590e88ee02afbdde7f48493bd2cce6109f9839501cf38aa238dc804f4c98f17ac97c68b48cb0bc0e5b4a'
+sha256sums=('6cd71b5b3e6b255afef6bed3b5e1e8ee9819b3d7c9839fd95e798045882aa653'
 'SKIP')
 
 build() {


[arch-commits] Commit in xfce4-clipman-plugin/trunk (PKGBUILD)

2020-03-29 Thread Evangelos Foutras via arch-commits
Date: Sunday, March 29, 2020 @ 23:11:22
  Author: foutrelis
Revision: 378692

upgpkg: xfce4-clipman-plugin 1.6.0-1: new upstream release

Modified:
  xfce4-clipman-plugin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-29 23:11:18 UTC (rev 378691)
+++ PKGBUILD2020-03-29 23:11:22 UTC (rev 378692)
@@ -3,7 +3,7 @@
 # Contributor: Aurelien Foret 
 
 pkgname=xfce4-clipman-plugin
-pkgver=1.4.4
+pkgver=1.6.0
 pkgrel=1
 pkgdesc="A clipboard plugin for the Xfce4 panel"
 arch=('x86_64')
@@ -13,7 +13,7 @@
 depends=('xfce4-panel' 'libxtst' 'qrencode')
 makedepends=('intltool')
 
source=(https://archive.xfce.org/src/panel-plugins/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
-sha256sums=('08e14c5d0fcee9adb4bc77efc0ab4af2b12b3fe1ee5e2121fc60e877ac9c29a0')
+sha256sums=('0295da92ade7d6e1d8b15a525e73ddcfba1986142d34c6143955164a13552ed7')
 
 build() {
   cd "$srcdir/$pkgname-$pkgver"


[arch-commits] Commit in xfce4-clipman-plugin/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2020-03-29 Thread Evangelos Foutras via arch-commits
Date: Sunday, March 29, 2020 @ 23:11:27
  Author: foutrelis
Revision: 378693

archrelease: copy trunk to extra-x86_64

Added:
  xfce4-clipman-plugin/repos/extra-x86_64/PKGBUILD
(from rev 378692, xfce4-clipman-plugin/trunk/PKGBUILD)
Deleted:
  xfce4-clipman-plugin/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-03-29 23:11:22 UTC (rev 378692)
+++ PKGBUILD2020-03-29 23:11:27 UTC (rev 378693)
@@ -1,35 +0,0 @@
-# Maintainer: Evangelos Foutras 
-# Contributor: tobias 
-# Contributor: Aurelien Foret 
-
-pkgname=xfce4-clipman-plugin
-pkgver=1.4.4
-pkgrel=1
-pkgdesc="A clipboard plugin for the Xfce4 panel"
-arch=('x86_64')
-license=('GPL2')
-url="https://docs.xfce.org/panel-plugins/xfce4-clipman-plugin;
-groups=('xfce4-goodies')
-depends=('xfce4-panel' 'libxtst' 'qrencode')
-makedepends=('intltool')
-source=(https://archive.xfce.org/src/panel-plugins/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
-sha256sums=('08e14c5d0fcee9adb4bc77efc0ab4af2b12b3fe1ee5e2121fc60e877ac9c29a0')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---libexecdir=/usr/lib \
---localstatedir=/var \
---disable-debug
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: xfce4-clipman-plugin/repos/extra-x86_64/PKGBUILD (from rev 378692, 
xfce4-clipman-plugin/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-03-29 23:11:27 UTC (rev 378693)
@@ -0,0 +1,35 @@
+# Maintainer: Evangelos Foutras 
+# Contributor: tobias 
+# Contributor: Aurelien Foret 
+
+pkgname=xfce4-clipman-plugin
+pkgver=1.6.0
+pkgrel=1
+pkgdesc="A clipboard plugin for the Xfce4 panel"
+arch=('x86_64')
+license=('GPL2')
+url="https://docs.xfce.org/panel-plugins/xfce4-clipman-plugin;
+groups=('xfce4-goodies')
+depends=('xfce4-panel' 'libxtst' 'qrencode')
+makedepends=('intltool')
+source=(https://archive.xfce.org/src/panel-plugins/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
+sha256sums=('0295da92ade7d6e1d8b15a525e73ddcfba1986142d34c6143955164a13552ed7')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib \
+--localstatedir=/var \
+--disable-debug
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:


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

2020-03-29 Thread Gaëtan Bisson via arch-commits
Date: Sunday, March 29, 2020 @ 23:11:18
  Author: bisson
Revision: 378691

archrelease: copy trunk to testing-any

Added:
  iana-etc/repos/testing-any/
  iana-etc/repos/testing-any/LICENSE
(from rev 378690, iana-etc/trunk/LICENSE)
  iana-etc/repos/testing-any/PKGBUILD
(from rev 378690, iana-etc/trunk/PKGBUILD)

--+
 LICENSE  |1 +
 PKGBUILD |   51 +++
 2 files changed, 52 insertions(+)

Copied: iana-etc/repos/testing-any/LICENSE (from rev 378690, 
iana-etc/trunk/LICENSE)
===
--- testing-any/LICENSE (rev 0)
+++ testing-any/LICENSE 2020-03-29 23:11:18 UTC (rev 378691)
@@ -0,0 +1 @@
+The contents of this package are inelligible for copyright protection.

Copied: iana-etc/repos/testing-any/PKGBUILD (from rev 378690, 
iana-etc/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2020-03-29 23:11:18 UTC (rev 378691)
@@ -0,0 +1,51 @@
+# Contributor: Thomas Bächler 
+# Maintainer: Gaetan Bisson 
+
+pkgname=iana-etc
+pkgver=20200327
+_ports=service-names-port-numbers-${pkgver}
+_protocols=protocol-numbers-20200131
+pkgrel=1
+pkgdesc='/etc/protocols and /etc/services provided by IANA'
+url='https://www.iana.org/protocols'
+arch=('any')
+license=('custom:none')
+backup=('etc/'{protocols,services})
+source=("https://sources.archlinux.org/other/packages/iana-etc/${_ports}.xml;
+
"https://sources.archlinux.org/other/packages/iana-etc/${_protocols}.xml;
+'LICENSE')
+sha256sums=('455ece1a770c7d589c117b637c8a7807c449f6226d8476d323c3fde6f12b3cd3'
+'4703c1157774e7b2673bfbf0a7c0ba8bb409df92c92ac906ac66a54cad51497f'
+'dd37e92942d5a4024f1c77df49d61ca77fc6284691814903a741785df61f78cb')
+
+# Original but unversioned IANA files:
+# 
https://www.iana.org/assignments/service-names-port-numbers/service-names-port-numbers.xml
+# https://www.iana.org/assignments/protocol-numbers/protocol-numbers.xml
+
+package() {
+   cd "${srcdir}"
+
+   install -d "${pkgdir}/etc"
+   install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/iana-etc/LICENSE"
+   install -Dm644 ${_ports}.xml 
"${pkgdir}/usr/share/iana-etc/port-numbers.iana"
+   install -Dm644 ${_protocols}.xml 
"${pkgdir}/usr/share/iana-etc/protocol-numbers.iana"
+
+   gawk -F"[<>]" '
+BEGIN { print "# Full data: /usr/share/iana-etc/protocol-numbers.iana\n" }
+(/ "${pkgdir}/etc/protocols"
+
+   gawk -F"[<>]" '
+BEGIN { print "# Full data: /usr/share/iana-etc/port-numbers.iana\n" }
+(/ "${pkgdir}/etc/services"
+
+}


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

2020-03-29 Thread Felix Yan via arch-commits
Date: Sunday, March 29, 2020 @ 23:10:43
  Author: felixonmars
Revision: 606628

upgpkg: hledger-web 1.17.1-11: rebuild with ChasingBottoms 1.3.1.8

Modified:
  hledger-web/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-29 23:09:29 UTC (rev 606627)
+++ PKGBUILD2020-03-29 23:10:43 UTC (rev 606628)
@@ -3,7 +3,7 @@
 
 pkgname=hledger-web
 pkgver=1.17.1
-pkgrel=10
+pkgrel=11
 pkgdesc="Web interface for the hledger accounting tool"
 url="http://hledger.org;
 license=("GPL")


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

2020-03-29 Thread Gaëtan Bisson via arch-commits
Date: Sunday, March 29, 2020 @ 23:10:59
  Author: bisson
Revision: 378690

upstream update

Modified:
  iana-etc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-29 23:09:24 UTC (rev 378689)
+++ PKGBUILD2020-03-29 23:10:59 UTC (rev 378690)
@@ -2,7 +2,7 @@
 # Maintainer: Gaetan Bisson 
 
 pkgname=iana-etc
-pkgver=20200311
+pkgver=20200327
 _ports=service-names-port-numbers-${pkgver}
 _protocols=protocol-numbers-20200131
 pkgrel=1
@@ -14,7 +14,7 @@
 source=("https://sources.archlinux.org/other/packages/iana-etc/${_ports}.xml;
 
"https://sources.archlinux.org/other/packages/iana-etc/${_protocols}.xml;
 'LICENSE')
-sha256sums=('1ccb9f300942e2a0f6b18171546c14db8ebeb7ccb87af3cf52f15a21e1c2cbee'
+sha256sums=('455ece1a770c7d589c117b637c8a7807c449f6226d8476d323c3fde6f12b3cd3'
 '4703c1157774e7b2673bfbf0a7c0ba8bb409df92c92ac906ac66a54cad51497f'
 'dd37e92942d5a4024f1c77df49d61ca77fc6284691814903a741785df61f78cb')
 


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

2020-03-29 Thread Felix Yan via arch-commits
Date: Sunday, March 29, 2020 @ 23:10:59
  Author: felixonmars
Revision: 606629

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: hledger-web/repos/community-staging-x86_64/PKGBUILD (from rev 606628, 
hledger-web/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-03-29 23:10:59 UTC (rev 606629)
@@ -0,0 +1,53 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hledger-web
+pkgver=1.17.1
+pkgrel=11
+pkgdesc="Web interface for the hledger accounting tool"
+url="http://hledger.org;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'hledger' 'haskell-hledger-lib' 'haskell-aeson' 
'haskell-blaze-html'
+ 'haskell-blaze-markup' 'haskell-case-insensitive' 
'haskell-clientsession'
+ 'haskell-cmdargs' 'haskell-conduit' 'haskell-conduit-extra' 
'haskell-data-default'
+ 'haskell-decimal' 'haskell-extra' 'haskell-hjsmin' 
'haskell-http-conduit'
+ 'haskell-http-client' 'haskell-http-types' 'haskell-megaparsec' 
'haskell-network'
+ 'haskell-shakespeare' 'haskell-unix-compat' 'haskell-utf8-string' 
'haskell-wai'
+ 'haskell-wai-cors' 'haskell-wai-extra' 'haskell-wai-handler-launch' 
'haskell-warp'
+ 'haskell-yesod' 'haskell-yesod-core' 'haskell-yesod-form' 
'haskell-yesod-static')
+makedepends=('ghc' 'haskell-hspec' 'haskell-yesod-test')
+replaces=('hledger-api')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('4221cd01387715efe6c17bbece72878a93acb6f1b153fac5eb2a28a3086676e9ebca84e1c6fbff86c49d2b6f383cbc2bfb38115301c10645bc9245c03c1f5b31')
+
+prepare() {
+cd $pkgname-$pkgver
+sed -i -e '/semigroups/d' $pkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-dev -f-library-only -fthreaded
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $pkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-03-29 Thread Felix Yan via arch-commits
Date: Sunday, March 29, 2020 @ 23:09:29
  Author: felixonmars
Revision: 606627

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: hledger-ui/repos/community-staging-x86_64/PKGBUILD (from rev 606626, 
hledger-ui/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-03-29 23:09:29 UTC (rev 606627)
@@ -0,0 +1,32 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hledger-ui
+pkgver=1.17.1.1
+pkgrel=8
+pkgdesc="Curses-style user interface for the hledger accounting tool"
+url="http://hledger.org;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'hledger' 'haskell-hledger-lib' 'haskell-ansi-terminal' 
'haskell-async'
+ 'haskell-base-compat-batteries' 'haskell-cmdargs' 
'haskell-data-default' 'haskell-extra'
+ 'haskell-fsnotify' 'haskell-microlens' 'haskell-microlens-platform' 
'haskell-megaparsec'
+ 'haskell-pretty-show' 'haskell-safe' 'haskell-split' 
'haskell-text-zipper'
+ 'haskell-vector' 'haskell-brick' 'haskell-vty')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('cb6a28a4b31881f0a0036330338ca7d44a56b67b327dda6cf7ec41cba1ddfae62cff5cdaaf8ffc259e494e79b95992d5fdaee2b51239e9e4bcf077e8b1384974')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup configure -O --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" \
+-fthreaded
+runhaskell Setup build
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-03-29 Thread Felix Yan via arch-commits
Date: Sunday, March 29, 2020 @ 23:09:14
  Author: felixonmars
Revision: 606626

upgpkg: hledger-ui 1.17.1.1-8: rebuild with ChasingBottoms 1.3.1.8

Modified:
  hledger-ui/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-29 23:08:16 UTC (rev 606625)
+++ PKGBUILD2020-03-29 23:09:14 UTC (rev 606626)
@@ -3,7 +3,7 @@
 
 pkgname=hledger-ui
 pkgver=1.17.1.1
-pkgrel=7
+pkgrel=8
 pkgdesc="Curses-style user interface for the hledger accounting tool"
 url="http://hledger.org;
 license=("GPL")


[arch-commits] Commit in (28 files)

2020-03-29 Thread Evangelos Foutras via arch-commits
Date: Sunday, March 29, 2020 @ 23:09:24
  Author: foutrelis
Revision: 378689

Change url from goodies.xfce.org to docs.xfce.org

Modified:
  thunar-archive-plugin/trunk/PKGBUILD
  thunar-media-tags-plugin/trunk/PKGBUILD
  thunar-volman/trunk/PKGBUILD
  xfce4-battery-plugin/trunk/PKGBUILD
  xfce4-cpufreq-plugin/trunk/PKGBUILD
  xfce4-cpugraph-plugin/trunk/PKGBUILD
  xfce4-datetime-plugin/trunk/PKGBUILD
  xfce4-dict/trunk/PKGBUILD
  xfce4-diskperf-plugin/trunk/PKGBUILD
  xfce4-eyes-plugin/trunk/PKGBUILD
  xfce4-fsguard-plugin/trunk/PKGBUILD
  xfce4-genmon-plugin/trunk/PKGBUILD
  xfce4-mailwatch-plugin/trunk/PKGBUILD
  xfce4-mount-plugin/trunk/PKGBUILD
  xfce4-mpc-plugin/trunk/PKGBUILD
  xfce4-netload-plugin/trunk/PKGBUILD
  xfce4-notes-plugin/trunk/PKGBUILD
  xfce4-notifyd/trunk/PKGBUILD
  xfce4-screenshooter/trunk/PKGBUILD
  xfce4-sensors-plugin/trunk/PKGBUILD
  xfce4-smartbookmark-plugin/trunk/PKGBUILD
  xfce4-systemload-plugin/trunk/PKGBUILD
  xfce4-taskmanager/trunk/PKGBUILD
  xfce4-time-out-plugin/trunk/PKGBUILD
  xfce4-timer-plugin/trunk/PKGBUILD
  xfce4-verve-plugin/trunk/PKGBUILD
  xfce4-wavelan-plugin/trunk/PKGBUILD
  xfce4-xkb-plugin/trunk/PKGBUILD

---+
 thunar-archive-plugin/trunk/PKGBUILD  |2 +-
 thunar-media-tags-plugin/trunk/PKGBUILD   |2 +-
 thunar-volman/trunk/PKGBUILD  |2 +-
 xfce4-battery-plugin/trunk/PKGBUILD   |2 +-
 xfce4-cpufreq-plugin/trunk/PKGBUILD   |2 +-
 xfce4-cpugraph-plugin/trunk/PKGBUILD  |2 +-
 xfce4-datetime-plugin/trunk/PKGBUILD  |2 +-
 xfce4-dict/trunk/PKGBUILD |2 +-
 xfce4-diskperf-plugin/trunk/PKGBUILD  |2 +-
 xfce4-eyes-plugin/trunk/PKGBUILD  |2 +-
 xfce4-fsguard-plugin/trunk/PKGBUILD   |2 +-
 xfce4-genmon-plugin/trunk/PKGBUILD|2 +-
 xfce4-mailwatch-plugin/trunk/PKGBUILD |2 +-
 xfce4-mount-plugin/trunk/PKGBUILD |2 +-
 xfce4-mpc-plugin/trunk/PKGBUILD   |2 +-
 xfce4-netload-plugin/trunk/PKGBUILD   |2 +-
 xfce4-notes-plugin/trunk/PKGBUILD |2 +-
 xfce4-notifyd/trunk/PKGBUILD  |2 +-
 xfce4-screenshooter/trunk/PKGBUILD|2 +-
 xfce4-sensors-plugin/trunk/PKGBUILD   |2 +-
 xfce4-smartbookmark-plugin/trunk/PKGBUILD |2 +-
 xfce4-systemload-plugin/trunk/PKGBUILD|2 +-
 xfce4-taskmanager/trunk/PKGBUILD  |2 +-
 xfce4-time-out-plugin/trunk/PKGBUILD  |2 +-
 xfce4-timer-plugin/trunk/PKGBUILD |2 +-
 xfce4-verve-plugin/trunk/PKGBUILD |2 +-
 xfce4-wavelan-plugin/trunk/PKGBUILD   |2 +-
 xfce4-xkb-plugin/trunk/PKGBUILD   |2 +-
 28 files changed, 28 insertions(+), 28 deletions(-)

Modified: thunar-archive-plugin/trunk/PKGBUILD
===
--- thunar-archive-plugin/trunk/PKGBUILD2020-03-29 21:49:53 UTC (rev 
378688)
+++ thunar-archive-plugin/trunk/PKGBUILD2020-03-29 23:09:24 UTC (rev 
378689)
@@ -6,7 +6,7 @@
 pkgrel=2
 pkgdesc="Create and extract archives in Thunar"
 arch=('x86_64')
-url="https://goodies.xfce.org/projects/thunar-plugins/thunar-archive-plugin;
+url="https://docs.xfce.org/xfce/thunar/archive;
 license=('GPL2')
 groups=('xfce4-goodies')
 depends=('thunar' 'hicolor-icon-theme')

Modified: thunar-media-tags-plugin/trunk/PKGBUILD
===
--- thunar-media-tags-plugin/trunk/PKGBUILD 2020-03-29 21:49:53 UTC (rev 
378688)
+++ thunar-media-tags-plugin/trunk/PKGBUILD 2020-03-29 23:09:24 UTC (rev 
378689)
@@ -7,7 +7,7 @@
 pkgdesc="Adds special features for media files to the Thunar File Manager"
 arch=('x86_64')
 license=('GPL')
-url="https://goodies.xfce.org/projects/thunar-plugins/thunar-media-tags-plugin;
+url="https://docs.xfce.org/xfce/thunar/media-tags;
 groups=('xfce4-goodies')
 depends=('taglib' 'thunar')
 makedepends=('intltool')

Modified: thunar-volman/trunk/PKGBUILD
===
--- thunar-volman/trunk/PKGBUILD2020-03-29 21:49:53 UTC (rev 378688)
+++ thunar-volman/trunk/PKGBUILD2020-03-29 23:09:24 UTC (rev 378689)
@@ -6,7 +6,7 @@
 pkgrel=2
 pkgdesc="Automatic management of removeable devices in Thunar"
 arch=('x86_64')
-url="https://goodies.xfce.org/projects/thunar-plugins/thunar-volman;
+url="https://docs.xfce.org/xfce/thunar/thunar-volman;
 license=('GPL2')
 groups=('xfce4')
 depends=('thunar' 'libxfce4ui' 'hicolor-icon-theme')

Modified: xfce4-battery-plugin/trunk/PKGBUILD
===
--- xfce4-battery-plugin/trunk/PKGBUILD 2020-03-29 21:49:53 UTC (rev 378688)
+++ xfce4-battery-plugin/trunk/PKGBUILD 2020-03-29 23:09:24 UTC (rev 378689)
@@ -8,7 +8,7 @@
 pkgdesc="A battery monitor plugin for the Xfce panel"
 arch=('x86_64')
 license=('GPL2')

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

2020-03-29 Thread Felix Yan via arch-commits
Date: Sunday, March 29, 2020 @ 23:08:02
  Author: felixonmars
Revision: 606624

upgpkg: hledger 1.17.1.1-6: rebuild with ChasingBottoms 1.3.1.8

Modified:
  hledger/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-29 23:05:21 UTC (rev 606623)
+++ PKGBUILD2020-03-29 23:08:02 UTC (rev 606624)
@@ -3,7 +3,7 @@
 
 pkgname=hledger
 pkgver=1.17.1.1
-pkgrel=5
+pkgrel=6
 pkgdesc="Command-line interface for the hledger accounting tool"
 url="http://hledger.org;
 license=("GPL")


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

2020-03-29 Thread Felix Yan via arch-commits
Date: Sunday, March 29, 2020 @ 23:05:21
  Author: felixonmars
Revision: 606623

archrelease: copy trunk to community-staging-x86_64

Added:
  hedgewars/repos/community-staging-x86_64/
  hedgewars/repos/community-staging-x86_64/PKGBUILD
(from rev 606622, hedgewars/trunk/PKGBUILD)

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

Copied: hedgewars/repos/community-staging-x86_64/PKGBUILD (from rev 606622, 
hedgewars/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-03-29 23:05:21 UTC (rev 606623)
@@ -0,0 +1,54 @@
+# Maintainer: Felix Yan 
+# Contributor: Sergej Pupykin 
+# Contributor: Tinxy 
+
+pkgname=hedgewars
+pkgver=1.0.0
+pkgrel=54
+pkgdesc="Turn-based strategy artillery game similiar to Worms"
+arch=('x86_64')
+url="https://hedgewars.org;
+license=('GPL' 'custom')
+depends=('qt5-base' 'sdl2' 'sdl2_mixer' 'sdl2_image' 'sdl2_net' 'sdl2_ttf' 
'lua51' 'ffmpeg' 'glut'
+ 'physfs' 'ghc-libs' 'haskell-entropy' 'haskell-sha' 'haskell-random' 
'haskell-regex-tdfa'
+ 'haskell-sandi' 'haskell-hslogger' 'haskell-network2.8' 
'haskell-utf8-string' 'haskell-vector')
+makedepends=('fpc' 'cmake' 'qt5-tools' 'ghc' 'haskell-bytestring-show'
+ 'haskell-zlib' 'haskell-base-prelude' 'imagemagick' 'mesa')
+source=("https://www.hedgewars.org/download/releases/hedgewars-src-$pkgver.tar.bz2;)
+sha512sums=('9aeb904550239040a878a0e7ae5006aa4d824124b61d813b9e6f6dfe1bd1c8f5fe395e0fd6e58d685ef1259abd4669e03b985be129c620be15f6e5ad82519ec2')
+
+prepare() {
+  cd hedgewars-src-$pkgver
+  sed -i 's|set(ghc_flags|set(ghc_flags -dynamic -package network-2.8.0.1 
-hide-package network-bsd|' gameServer/CMakeLists.txt
+}
+
+build() {
+  cd hedgewars-src-$pkgver
+  cmake \
+-DCMAKE_BUILD_TYPE="Release" \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DDATA_INSTALL_DIR=/usr/share/hedgewars \
+-DNOSERVER=0 \
+.
+  make
+
+  # resize icon
+  for _size in 16 32 48 64 128 256; do
+convert +set date:create +set date:modify misc/hedgewars.png -resize 
${_size}x${_size} hedgewars_${_size}.png
+  done
+}
+
+package() {
+  cd hedgewars-src-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -D -m644 Fonts_LICENSE.txt 
"$pkgdir"/usr/share/licenses/${pkgname}/Fonts_LICENSE.txt
+
+  # install icons
+  install -D -m644 misc/hedgewars.png 
"$pkgdir"/usr/share/icons/hicolor/512x512/apps/hedgewars.png
+  for _size in 16 32 48 64 128 256; do
+install -D -m644 hedgewars_${_size}.png 
"$pkgdir"/usr/share/icons/hicolor/${_size}x${_size}/apps/hedgewars.png
+  done
+  rm -rf "$pkgdir"/usr/share/pixmaps
+
+  install -D -m644 share/hedgewars/Data/misc/hedgewars.desktop 
"$pkgdir"/usr/share/applications/hedgewars.desktop
+}


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

2020-03-29 Thread Felix Yan via arch-commits
Date: Sunday, March 29, 2020 @ 23:05:03
  Author: felixonmars
Revision: 606622

upgpkg: hedgewars 1.0.0-54: rebuild with ChasingBottoms 1.3.1.8

Modified:
  hedgewars/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-29 22:58:27 UTC (rev 606621)
+++ PKGBUILD2020-03-29 23:05:03 UTC (rev 606622)
@@ -4,7 +4,7 @@
 
 pkgname=hedgewars
 pkgver=1.0.0
-pkgrel=53
+pkgrel=54
 pkgdesc="Turn-based strategy artillery game similiar to Worms"
 arch=('x86_64')
 url="https://hedgewars.org;


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

2020-03-29 Thread Andrzej Giniewicz via arch-commits
Date: Sunday, March 29, 2020 @ 22:57:49
  Author: aginiewicz
Revision: 606616

upgpkg: python-unicodedata2 13.0.0.post2-1: python-unicodedata2: moved from AUR 
as python-fonttools dependency

Modified:
  python-unicodedata2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-29 22:57:27 UTC (rev 606615)
+++ PKGBUILD2020-03-29 22:57:49 UTC (rev 606616)
@@ -4,7 +4,7 @@
 
 pkgname=python-unicodedata2
 pkgver=13.0.0.post2
-pkgrel=0
+pkgrel=1
 pkgdesc="unicodedata backport/updates to Python 3"
 arch=('x86_64')
 url="https://github.com/mikekap/unicodedata2;


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

2020-03-29 Thread Andrzej Giniewicz via arch-commits
Date: Sunday, March 29, 2020 @ 22:57:55
  Author: aginiewicz
Revision: 606618

archrelease: copy trunk to community-x86_64

Added:
  python-unicodedata2/repos/community-x86_64/
  python-unicodedata2/repos/community-x86_64/PKGBUILD
(from rev 606616, python-unicodedata2/trunk/PKGBUILD)

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

Copied: python-unicodedata2/repos/community-x86_64/PKGBUILD (from rev 606616, 
python-unicodedata2/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2020-03-29 22:57:55 UTC (rev 606618)
@@ -0,0 +1,27 @@
+# Maintainer: Andrzej Giniewicz 
+# Contributor: Guillaume Horel 
+
+pkgname=python-unicodedata2
+pkgver=13.0.0.post2
+pkgrel=1
+pkgdesc="unicodedata backport/updates to Python 3"
+arch=('x86_64')
+url="https://github.com/mikekap/unicodedata2;
+license=('Apache')
+depends=('python')
+makedepends=('python-setuptools')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/mikekap/unicodedata2/archive/${pkgver/.post/-}.tar.gz;)
+sha256sums=('27141b225f84599b49429c5f9cd1ba7403c044102da78d4ac0e84cafdb62188f')
+
+build() {
+  cd "unicodedata2-${pkgver/.post/-}"
+
+  python setup.py build
+}
+
+package() {
+  cd "unicodedata2-${pkgver/.post/-}"
+
+  python setup.py install --root="$pkgdir" --optimize=1
+}


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

2020-03-29 Thread Levente Polyak via arch-commits
Date: Sunday, March 29, 2020 @ 22:57:59
  Author: anthraxx
Revision: 606619

archrelease: copy trunk to community-any

Added:
  strip-nondeterminism/repos/community-any/PKGBUILD
(from rev 606618, strip-nondeterminism/trunk/PKGBUILD)
Deleted:
  strip-nondeterminism/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-03-29 22:57:55 UTC (rev 606618)
+++ PKGBUILD2020-03-29 22:57:59 UTC (rev 606619)
@@ -1,47 +0,0 @@
-# Maintainer: Levente Polyak 
-
-pkgname=strip-nondeterminism
-_gitcommit=44531930caaebfbb56700a117c5de28c9d55f17e
-pkgver=0.041
-pkgrel=4
-pkgdesc='Tool for stripping bits of non-deterministic information from files'
-url='https://salsa.debian.org/reproducible-builds/strip-nondeterminism'
-arch=('any')
-license=('GPL3')
-depends=("perl" 'perl-archive-zip' 'perl-archive-cpio')
-makedepends=('git')
-options=('!emptydirs')
-source=(${pkgname}::"git+https://salsa.debian.org/reproducible-builds/strip-nondeterminism.git#commit=${_gitcommit};)
-sha512sums=('SKIP')
-validpgpkeys=('C2FE4BD271C139B86C533E461E953E27D4311E58'  # Chris Lamb 

-  'EF5D84C1838F2EB6D8968C0410378EFC2080080C'  # Andrew Ayer 

-  '2F5DAF3FC1F793D94F3D900CA721DA055374AA4F'  # Reiner Herrmann 

-  '66AE2B4AFCCF3F52DA184D184B043FCDB9444540') # Mattia Rizzolo 

-
-pkgver() {
-  cd ${pkgname}
-  git describe --always | sed 's/^v//;s/-/./g'
-}
-
-prepare() {
-  cd ${pkgname}
-  sed -r 's|bin/dh_strip_nondeterminism ||g' -i Makefile.PL
-}
-
-build() {
-  cd ${pkgname}
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  make -C ${pkgname} test
-}
-
-package() {
-  cd ${pkgname}
-  make DESTDIR="${pkgdir}" install
-  install -Dm 644 README -t "${pkgdir}/usr/share/doc/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: strip-nondeterminism/repos/community-any/PKGBUILD (from rev 606618, 
strip-nondeterminism/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-03-29 22:57:59 UTC (rev 606619)
@@ -0,0 +1,43 @@
+# Maintainer: Levente Polyak 
+
+pkgname=strip-nondeterminism
+pkgver=1.6.3
+pkgrel=1
+pkgdesc='Tool for stripping bits of non-deterministic information from files'
+url='https://salsa.debian.org/reproducible-builds/strip-nondeterminism'
+arch=('any')
+license=('GPL3')
+depends=("perl" 'perl-archive-zip' 'perl-archive-cpio' 'perl-sub-override')
+makedepends=('git')
+options=('!emptydirs')
+source=(https://salsa.debian.org/reproducible-builds/strip-nondeterminism/-/archive/${pkgver}/strip-nondeterminism-${pkgver}.tar.bz2
+
https://salsa.debian.org/reproducible-builds/reproducible-lfs/raw/master/releases/strip-nondeterminism/strip-nondeterminism-${pkgver}.tar.bz2.asc)
+sha512sums=('69b9ba40cd0bb1cef69b1377704a7f135d106f7b575ef5ddc55dc630bf5a71ec7e59caa943f6a124d33d77f3b8b7b7258ab937762ef5bb9127cec9f9c21ff2c5'
+'SKIP')
+validpgpkeys=('C2FE4BD271C139B86C533E461E953E27D4311E58'  # Chris Lamb 

+  'EF5D84C1838F2EB6D8968C0410378EFC2080080C'  # Andrew Ayer 

+  '2F5DAF3FC1F793D94F3D900CA721DA055374AA4F'  # Reiner Herrmann 

+  '66AE2B4AFCCF3F52DA184D184B043FCDB9444540') # Mattia Rizzolo 

+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  sed -r 's|bin/dh_strip_nondeterminism ||g' -i Makefile.PL
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  make -C ${pkgname}-${pkgver} test
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -Dm 644 README -t "${pkgdir}/usr/share/doc/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:


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

2020-03-29 Thread Felix Yan via arch-commits
Date: Sunday, March 29, 2020 @ 22:58:27
  Author: felixonmars
Revision: 606621

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: hasktags/repos/community-staging-x86_64/PKGBUILD (from rev 606620, 
hasktags/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-03-29 22:58:27 UTC (rev 606621)
@@ -0,0 +1,49 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hasktags
+pkgver=0.71.2
+pkgrel=65
+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 -e 's/< *0.4/<1/' -e 's/< *0.10/<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 --ghc-option='-pie'
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $pkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $pkgname-$pkgver
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-03-29 Thread Levente Polyak via arch-commits
Date: Sunday, March 29, 2020 @ 22:57:55
  Author: anthraxx
Revision: 606617

upgpkg: strip-nondeterminism 1.6.3-1

Modified:
  strip-nondeterminism/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-29 22:57:49 UTC (rev 606616)
+++ PKGBUILD2020-03-29 22:57:55 UTC (rev 606617)
@@ -1,45 +1,41 @@
 # Maintainer: Levente Polyak 
 
 pkgname=strip-nondeterminism
-_gitcommit=44531930caaebfbb56700a117c5de28c9d55f17e
-pkgver=0.041
-pkgrel=4
+pkgver=1.6.3
+pkgrel=1
 pkgdesc='Tool for stripping bits of non-deterministic information from files'
 url='https://salsa.debian.org/reproducible-builds/strip-nondeterminism'
 arch=('any')
 license=('GPL3')
-depends=("perl" 'perl-archive-zip' 'perl-archive-cpio')
+depends=("perl" 'perl-archive-zip' 'perl-archive-cpio' 'perl-sub-override')
 makedepends=('git')
 options=('!emptydirs')
-source=(${pkgname}::"git+https://salsa.debian.org/reproducible-builds/strip-nondeterminism.git#commit=${_gitcommit};)
-sha512sums=('SKIP')
+source=(https://salsa.debian.org/reproducible-builds/strip-nondeterminism/-/archive/${pkgver}/strip-nondeterminism-${pkgver}.tar.bz2
+
https://salsa.debian.org/reproducible-builds/reproducible-lfs/raw/master/releases/strip-nondeterminism/strip-nondeterminism-${pkgver}.tar.bz2.asc)
+sha512sums=('69b9ba40cd0bb1cef69b1377704a7f135d106f7b575ef5ddc55dc630bf5a71ec7e59caa943f6a124d33d77f3b8b7b7258ab937762ef5bb9127cec9f9c21ff2c5'
+'SKIP')
 validpgpkeys=('C2FE4BD271C139B86C533E461E953E27D4311E58'  # Chris Lamb 

   'EF5D84C1838F2EB6D8968C0410378EFC2080080C'  # Andrew Ayer 

   '2F5DAF3FC1F793D94F3D900CA721DA055374AA4F'  # Reiner Herrmann 

   '66AE2B4AFCCF3F52DA184D184B043FCDB9444540') # Mattia Rizzolo 

 
-pkgver() {
-  cd ${pkgname}
-  git describe --always | sed 's/^v//;s/-/./g'
-}
-
 prepare() {
-  cd ${pkgname}
+  cd ${pkgname}-${pkgver}
   sed -r 's|bin/dh_strip_nondeterminism ||g' -i Makefile.PL
 }
 
 build() {
-  cd ${pkgname}
+  cd ${pkgname}-${pkgver}
   PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
   make
 }
 
 check() {
-  make -C ${pkgname} test
+  make -C ${pkgname}-${pkgver} test
 }
 
 package() {
-  cd ${pkgname}
+  cd ${pkgname}-${pkgver}
   make DESTDIR="${pkgdir}" install
   install -Dm 644 README -t "${pkgdir}/usr/share/doc/${pkgname}"
 }


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

2020-03-29 Thread Felix Yan via arch-commits
Date: Sunday, March 29, 2020 @ 22:58:13
  Author: felixonmars
Revision: 606620

upgpkg: hasktags 0.71.2-65: rebuild with ChasingBottoms 1.3.1.8

Modified:
  hasktags/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-29 22:57:59 UTC (rev 606619)
+++ PKGBUILD2020-03-29 22:58:13 UTC (rev 606620)
@@ -3,7 +3,7 @@
 
 pkgname=hasktags
 pkgver=0.71.2
-pkgrel=64
+pkgrel=65
 pkgdesc="Produces ctags \"tags\" and etags \"TAGS\" files for Haskell programs"
 url="https://github.com/MarcWeber/hasktags;
 license=("BSD")


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

2020-03-29 Thread Felix Yan via arch-commits
Date: Sunday, March 29, 2020 @ 22:57:13
  Author: felixonmars
Revision: 606614

upgpkg: git-annex 8.20200309-37: rebuild with ChasingBottoms 1.3.1.8

Modified:
  git-annex/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-29 22:56:44 UTC (rev 606613)
+++ PKGBUILD2020-03-29 22:57:13 UTC (rev 606614)
@@ -3,7 +3,7 @@
 
 pkgname=git-annex
 pkgver=8.20200309
-pkgrel=36
+pkgrel=37
 pkgdesc="Manage files with git, without checking their contents into git"
 url="https://git-annex.branchable.com/;
 license=("AGPL3")


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

2020-03-29 Thread Felix Yan via arch-commits
Date: Sunday, March 29, 2020 @ 22:57:27
  Author: felixonmars
Revision: 606615

archrelease: copy trunk to community-staging-x86_64

Added:
  git-annex/repos/community-staging-x86_64/
  git-annex/repos/community-staging-x86_64/PKGBUILD
(from rev 606614, git-annex/trunk/PKGBUILD)

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

Copied: git-annex/repos/community-staging-x86_64/PKGBUILD (from rev 606614, 
git-annex/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-03-29 22:57:27 UTC (rev 606615)
@@ -0,0 +1,54 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=git-annex
+pkgver=8.20200309
+pkgrel=37
+pkgdesc="Manage files with git, without checking their contents into git"
+url="https://git-annex.branchable.com/;
+license=("AGPL3")
+arch=('x86_64')
+depends=('git' 'lsof' 'rsync' 'ghc-libs' 'haskell-aeson' 'haskell-async' 
'haskell-aws'
+ 'haskell-blaze-builder' 'haskell-bloomfilter' 'haskell-byteable' 
'haskell-case-insensitive'
+ 'haskell-clientsession' 'haskell-concurrent-output' 
'haskell-connection' 'haskell-conduit'
+ 'haskell-crypto-api' 'haskell-cryptonite' 'haskell-data-default' 
'haskell-dav'
+ 'haskell-dbus' 'haskell-disk-free-space' 'haskell-dlist' 
'haskell-edit-distance'
+ 'haskell-exceptions' 'haskell-fdo-notify' 'haskell-feed' 
'haskell-filepath-bytestring'
+ 'haskell-hinotify' 'haskell-hslogger' 'haskell-http-client' 
'haskell-http-client-tls'
+ 'haskell-http-conduit' 'haskell-http-types' 'haskell-ifelse' 
'haskell-magic'
+ 'haskell-memory' 'haskell-microlens' 'haskell-monad-control' 
'haskell-monad-logger'
+ 'haskell-mountpoints' 'haskell-network' 'haskell-network-info' 
'haskell-network-multicast'
+ 'haskell-network-uri' 'haskell-old-locale' 
'haskell-optparse-applicative'
+ 'haskell-path-pieces' 'haskell-persistent' 'haskell-persistent-sqlite'
+ 'haskell-persistent-template' 'haskell-quickcheck' 'haskell-random' 
'haskell-regex-tdfa'
+ 'haskell-resourcet' 'haskell-safesemaphore' 'haskell-sandi' 
'haskell-securemem'
+ 'haskell-shakespeare' 'haskell-socks' 'haskell-split' 
'haskell-stm-chans' 'haskell-tagsoup'
+ 'haskell-tasty' 'haskell-tasty-hunit' 'haskell-tasty-quickcheck' 
'haskell-tasty-rerun'
+ 'haskell-torrent' 'haskell-unix-compat' 'haskell-unliftio-core'
+ 'haskell-unordered-containers' 'haskell-utf8-string' 'haskell-uuid' 
'haskell-vector'
+ 'haskell-wai' 'haskell-wai-extra' 'haskell-warp' 'haskell-warp-tls' 
'haskell-yesod'
+ 'haskell-yesod-core' 'haskell-yesod-form' 'haskell-yesod-static')
+makedepends=('chrpath' 'ghc')
+source=("git+https://git.joeyh.name/git/git-annex.git#tag=$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  cd git-annex
+  sed -i 's/ fail / error /' Utility/HumanTime.hs Command/{Expire.hs,Init.hs}
+  sed -i 's/(fail /(error /' CmdLine/GitAnnex/Options.hs
+}
+
+build() {
+  cd git-annex
+
+  sed -e 's|--ghc-options|-O --prefix=/usr --enable-executable-dynamic 
--disable-library-vanilla --docdir=/usr/share/doc/'$pkgname' --ghc-options|' \
+  -i Makefile
+  make GHC="ghc -dynamic" BUILDER=./Setup -j1
+}
+
+package() {
+  cd git-annex
+  make GHC="ghc -dynamic" BUILDER=./Setup DESTDIR="$pkgdir" install
+
+  rmdir "$pkgdir"/usr/share/doc/git-annex "$pkgdir"/usr/share/doc
+}


[arch-commits] Commit in (4 files)

2020-03-29 Thread Andrzej Giniewicz via arch-commits
Date: Sunday, March 29, 2020 @ 22:56:44
  Author: aginiewicz
Revision: 606613

python-unicodedata2: move from AUR as python-fonttools dependency

Added:
  python-unicodedata2/
  python-unicodedata2/repos/
  python-unicodedata2/trunk/
  python-unicodedata2/trunk/PKGBUILD

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

Added: python-unicodedata2/trunk/PKGBUILD
===
--- python-unicodedata2/trunk/PKGBUILD  (rev 0)
+++ python-unicodedata2/trunk/PKGBUILD  2020-03-29 22:56:44 UTC (rev 606613)
@@ -0,0 +1,27 @@
+# Maintainer: Andrzej Giniewicz 
+# Contributor: Guillaume Horel 
+
+pkgname=python-unicodedata2
+pkgver=13.0.0.post2
+pkgrel=0
+pkgdesc="unicodedata backport/updates to Python 3"
+arch=('x86_64')
+url="https://github.com/mikekap/unicodedata2;
+license=('Apache')
+depends=('python')
+makedepends=('python-setuptools')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/mikekap/unicodedata2/archive/${pkgver/.post/-}.tar.gz;)
+sha256sums=('27141b225f84599b49429c5f9cd1ba7403c044102da78d4ac0e84cafdb62188f')
+
+build() {
+  cd "unicodedata2-${pkgver/.post/-}"
+
+  python setup.py build
+}
+
+package() {
+  cd "unicodedata2-${pkgver/.post/-}"
+
+  python setup.py install --root="$pkgdir" --optimize=1
+}


  1   2   3   4   5   6   7   8   >