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

2020-11-26 Thread Christian Hesse via arch-commits
Date: Friday, November 27, 2020 @ 07:18:48
  Author: eworm
Revision: 763987

archrelease: copy trunk to community-testing-x86_64

Added:
  lib32-systemd/repos/community-testing-x86_64/
  lib32-systemd/repos/community-testing-x86_64/PKGBUILD
(from rev 763986, lib32-systemd/trunk/PKGBUILD)

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

Copied: lib32-systemd/repos/community-testing-x86_64/PKGBUILD (from rev 763986, 
lib32-systemd/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-11-27 07:18:48 UTC (rev 763987)
@@ -0,0 +1,121 @@
+# Maintainer: Christian Hesse 
+# Maintainer: Dave Reisner 
+# Maintainer: Tom Gundersen 
+
+pkgname=lib32-systemd
+_pkgbasename=systemd
+_tag='ddbbb1a91461e173fba2677466007ee1508184af' # git rev-parse v${pkgver}
+pkgver=247
+pkgrel=1
+pkgdesc='system and service manager (32-bit)'
+arch=('x86_64')
+url='https://www.github.com/systemd/systemd'
+license=('GPL2' 'LGPL2.1')
+depends=('lib32-gcc-libs' 'lib32-libcap' 'lib32-libgcrypt' 'lib32-libxcrypt'
+ 'lib32-xz' 'lib32-zstd' 'systemd')
+makedepends=('git' 'gperf' 'intltool' 'lib32-acl' 'lib32-bzip2'
+ 'lib32-curl' 'lib32-dbus' 'lib32-gcc-libs' 'lib32-glib2'
+ 'lib32-gnutls' 'lib32-libelf' 'lib32-libidn2' 'lib32-pcre2'
+ 'libxslt' 'meson')
+options=('strip')
+validpgpkeys=('63CDA1E5D3FC22B998D20DD6327F26951A015CC4'  # Lennart Poettering 

+  '5C251B5FC54EB2F80F407AAAC54CA336CFEB557E') # Zbigniew 
Jędrzejewski-Szmek 
+source=("git+https://github.com/systemd/systemd-stable#tag=${_tag}?signed;
+"git+https://github.com/systemd/systemd#tag=v${pkgver%.*}?signed;)
+sha512sums=('SKIP'
+'SKIP')
+
+_backports=(
+)
+
+_reverts=(
+)
+
+prepare() {
+  cd "$_pkgbasename-stable"
+
+  # add upstream repository for cherry-picking
+  git remote add -f upstream ../systemd
+
+  local _c
+  for _c in "${_backports[@]}"; do
+git cherry-pick -n "${_c}"
+  done
+  for _c in "${_reverts[@]}"; do
+git revert -n "${_c}"
+  done
+}
+
+build() {
+  export CC="gcc -m32"
+  export CXX="g++ -m32"
+  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
+
+  local _timeservers=({0..3}.arch.pool.ntp.org)
+  local _nameservers=(
+# We use these public name services, ordered by their
+# privacy policy (hopefully):
+#  * Cloudflare (https://1.1.1.1/)
+#  * Quad9 without filtering (https://www.quad9.net/)
+#  * Google (https://developers.google.com/speed/public-dns/)
+1.1.1.1
+9.9.9.10
+8.8.8.8
+2606:4700:4700::
+2620:fe::10
+2001:4860:4860::
+  )
+ 
+  local _meson_options=(
+--libexecdir   /usr/lib32
+--libdir   /usr/lib32
+
+-Dversion-tag="${pkgver}-${pkgrel}-arch"
+
+-Daudit=false
+-Dblkid=false
+-Dgnu-efi=false
+-Dhtml=false
+-Dima=false
+-Dkmod=false
+-Dlibcryptsetup=false
+-Dlibidn2=true
+-Dlibiptc=false
+-Dlz4=false
+-Dman=false
+-Dmanpages=false
+-Dmicrohttpd=false
+-Dnetworkd=false
+-Dpam=false
+-Dpython=false
+-Drepart=false
+-Dseccomp=false
+
+-Ddbuspolicydir=/usr/share/dbus-1/system.d
+-Ddefault-hierarchy=hybrid
+-Ddefault-kill-user-processes=false
+-Ddefault-locale=C
+-Dfallback-hostname='archlinux'
+-Dnologin-path=/usr/bin/nologin
+-Dntp-servers="${_timeservers[*]}"
+-Ddns-servers="${_nameservers[*]}"
+-Drpmmacrosdir=no
+-Dsysvinit-path=
+-Dsysvrcnd-path=
+  )
+
+  arch-meson "$_pkgbasename-stable" build "${_meson_options[@]}"
+
+  ninja -C build
+}
+
+check() {
+  meson test -C build
+}
+
+package() {
+  DESTDIR="$pkgdir" ninja -C build install
+
+  rm -rf "${pkgdir}"/{etc,var}
+  rm -rf "${pkgdir}"/usr/{bin,include,lib,share}
+}


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

2020-11-26 Thread Christian Hesse via arch-commits
Date: Friday, November 27, 2020 @ 07:18:46
  Author: eworm
Revision: 763986

upgpkg: lib32-systemd 247-1: new upstream release

Modified:
  lib32-systemd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-27 07:11:31 UTC (rev 763985)
+++ PKGBUILD2020-11-27 07:18:46 UTC (rev 763986)
@@ -4,8 +4,8 @@
 
 pkgname=lib32-systemd
 _pkgbasename=systemd
-_tag='27d60e13ed5db2194cac14ad4cc86ad06d753805' # git rev-parse v${pkgver}
-pkgver=246.6
+_tag='ddbbb1a91461e173fba2677466007ee1508184af' # git rev-parse v${pkgver}
+pkgver=247
 pkgrel=1
 pkgdesc='system and service manager (32-bit)'
 arch=('x86_64')


[arch-commits] Commit in systemd/repos (21 files)

2020-11-26 Thread Christian Hesse via arch-commits
Date: Friday, November 27, 2020 @ 07:18:32
  Author: eworm
Revision: 402100

archrelease: copy trunk to testing-x86_64

Added:
  systemd/repos/testing-x86_64/
  systemd/repos/testing-x86_64/0001-Use-Arch-Linux-device-access-groups.patch
(from rev 402099, 
systemd/trunk/0001-Use-Arch-Linux-device-access-groups.patch)
  systemd/repos/testing-x86_64/20-systemd-sysusers.hook
(from rev 402099, systemd/trunk/20-systemd-sysusers.hook)
  systemd/repos/testing-x86_64/30-systemd-binfmt.hook
(from rev 402099, systemd/trunk/30-systemd-binfmt.hook)
  systemd/repos/testing-x86_64/30-systemd-catalog.hook
(from rev 402099, systemd/trunk/30-systemd-catalog.hook)
  systemd/repos/testing-x86_64/30-systemd-daemon-reload.hook
(from rev 402099, systemd/trunk/30-systemd-daemon-reload.hook)
  systemd/repos/testing-x86_64/30-systemd-hwdb.hook
(from rev 402099, systemd/trunk/30-systemd-hwdb.hook)
  systemd/repos/testing-x86_64/30-systemd-sysctl.hook
(from rev 402099, systemd/trunk/30-systemd-sysctl.hook)
  systemd/repos/testing-x86_64/30-systemd-tmpfiles.hook
(from rev 402099, systemd/trunk/30-systemd-tmpfiles.hook)
  systemd/repos/testing-x86_64/30-systemd-udev-reload.hook
(from rev 402099, systemd/trunk/30-systemd-udev-reload.hook)
  systemd/repos/testing-x86_64/30-systemd-update.hook
(from rev 402099, systemd/trunk/30-systemd-update.hook)
  systemd/repos/testing-x86_64/PKGBUILD
(from rev 402099, systemd/trunk/PKGBUILD)
  systemd/repos/testing-x86_64/arch.conf
(from rev 402099, systemd/trunk/arch.conf)
  systemd/repos/testing-x86_64/initcpio-hook-udev
(from rev 402099, systemd/trunk/initcpio-hook-udev)
  systemd/repos/testing-x86_64/initcpio-install-systemd
(from rev 402099, systemd/trunk/initcpio-install-systemd)
  systemd/repos/testing-x86_64/initcpio-install-udev
(from rev 402099, systemd/trunk/initcpio-install-udev)
  systemd/repos/testing-x86_64/loader.conf
(from rev 402099, systemd/trunk/loader.conf)
  systemd/repos/testing-x86_64/splash-arch.bmp
(from rev 402099, systemd/trunk/splash-arch.bmp)
  systemd/repos/testing-x86_64/systemd-hook
(from rev 402099, systemd/trunk/systemd-hook)
  systemd/repos/testing-x86_64/systemd-user.pam
(from rev 402099, systemd/trunk/systemd-user.pam)
  systemd/repos/testing-x86_64/systemd.install
(from rev 402099, systemd/trunk/systemd.install)

+
 0001-Use-Arch-Linux-device-access-groups.patch |   67 +
 20-systemd-sysusers.hook   |   10 
 30-systemd-binfmt.hook |   10 
 30-systemd-catalog.hook|   11 
 30-systemd-daemon-reload.hook  |   11 
 30-systemd-hwdb.hook   |   11 
 30-systemd-sysctl.hook |   10 
 30-systemd-tmpfiles.hook   |   10 
 30-systemd-udev-reload.hook|   11 
 30-systemd-update.hook |   11 
 PKGBUILD   |  276 +++
 arch.conf  |7 
 initcpio-hook-udev |   22 +
 initcpio-install-systemd   |  197 
 initcpio-install-udev  |   29 ++
 loader.conf|1 
 systemd-hook   |   37 +++
 systemd-user.pam   |5 
 systemd.install|  109 +
 19 files changed, 845 insertions(+)

Copied: 
systemd/repos/testing-x86_64/0001-Use-Arch-Linux-device-access-groups.patch 
(from rev 402099, systemd/trunk/0001-Use-Arch-Linux-device-access-groups.patch)
===
--- testing-x86_64/0001-Use-Arch-Linux-device-access-groups.patch   
(rev 0)
+++ testing-x86_64/0001-Use-Arch-Linux-device-access-groups.patch   
2020-11-27 07:18:32 UTC (rev 402100)
@@ -0,0 +1,67 @@
+From: "Jan Alexander Steffens (heftig)" 
+Date: Tue, 6 Mar 2018 23:39:47 +0100
+Subject: [PATCH] Use Arch Linux' device access groups
+
+  cdrom   → optical
+  dialout → uucp
+  tape→ storage
+---
+ rules.d/50-udev-default.rules.in | 14 +++---
+ sysusers.d/basic.conf.in   |  6 +++---
+ 2 files changed, 10 insertions(+), 10 deletions(-)
+
+diff --git a/rules.d/50-udev-default.rules.in 
b/rules.d/50-udev-default.rules.in
+index 191f56f42..f81c4d0fc 100644
+--- a/rules.d/50-udev-default.rules.in
 b/rules.d/50-udev-default.rules.in
+@@ -22,7 +22,7 @@ SUBSYSTEM=="tty", KERNEL=="sclp_line[0-9]*", GROUP="tty", 
MODE="0620"
+ SUBSYSTEM=="tty", KERNEL=="ttysclp[0-9]*", GROUP="tty", MODE="0620"
+ SUBSYSTEM=="tty", KERNEL=="3270/tty[0-9]*", GROUP="tty", MODE="0620"
+ SUBSYSTEM=="vc", KERNEL=="vcs*|vcsa*", GROUP="tty"
+-KERNEL=="tty[A-Z]*[0-9]|ttymxc[0-9]*|pppox[0-9]*|ircomm[0-9]*|noz[0-9]*|rfcomm[0-9]*",
 

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

2020-11-26 Thread Christian Hesse via arch-commits
Date: Friday, November 27, 2020 @ 07:18:18
  Author: eworm
Revision: 402099

upgpkg: systemd 247-1: new upstream release

Modified:
  systemd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-27 04:00:18 UTC (rev 402098)
+++ PKGBUILD2020-11-27 07:18:18 UTC (rev 402099)
@@ -4,8 +4,8 @@
 
 pkgbase=systemd
 pkgname=('systemd' 'systemd-libs' 'systemd-resolvconf' 'systemd-sysvcompat')
-_tag='27d60e13ed5db2194cac14ad4cc86ad06d753805' # git rev-parse v${pkgver}
-pkgver=246.6
+_tag='ddbbb1a91461e173fba2677466007ee1508184af' # git rev-parse v${pkgver}
+pkgver=247
 pkgrel=1
 arch=('x86_64')
 url='https://www.github.com/systemd/systemd'
@@ -60,6 +60,10 @@
 
'825b9dd0167c072ba62cabe0677e7cd20f2b4b850328022540f122689d8b25315005fa98ce867cf6e7460b2b26df16b88bb3b5c9ebf721746dce4e2271af7b97')
 
 _backports=(
+  # home: fix homed.conf install location
+  '72a4466e6e80693f4455c0c5edf946f8a440845a'
+  # oom: fix oomd.conf install location
+  '2bb703e440c844162cc258dfa0385c33d7bc32b3'
 )
 
 _reverts=(
@@ -156,11 +160,14 @@
   'curl: machinectl pull-tar and pull-raw')
   backup=(etc/pam.d/systemd-user
   etc/systemd/coredump.conf
+  etc/systemd/homed.conf
   etc/systemd/journald.conf
   etc/systemd/journal-remote.conf
   etc/systemd/journal-upload.conf
   etc/systemd/logind.conf
   etc/systemd/networkd.conf
+  etc/systemd/oomd.conf
+  etc/systemd/pstore.conf
   etc/systemd/resolved.conf
   etc/systemd/sleep.conf
   etc/systemd/system.conf
@@ -179,10 +186,10 @@
   mv "$pkgdir"/usr/lib/lib{nss,systemd,udev}*.so* systemd-libs
 
   # manpages shipped with systemd-sysvcompat
-  rm 
"$pkgdir"/usr/share/man/man8/{halt,poweroff,reboot,runlevel,shutdown,telinit}.8
+  rm "$pkgdir"/usr/share/man/man8/{halt,poweroff,reboot,shutdown}.8
 
   # executable (symlinks) shipped with systemd-sysvcompat
-  rm "$pkgdir"/usr/bin/{halt,init,poweroff,reboot,runlevel,shutdown,telinit}
+  rm "$pkgdir"/usr/bin/{halt,init,poweroff,reboot,shutdown}
 
   # files shipped with systemd-resolvconf
   rm "$pkgdir"/usr/{bin/resolvconf,share/man/man1/resolvconf.1}
@@ -257,11 +264,11 @@
   depends=('systemd')
 
   install -D -m0644 -t "$pkgdir"/usr/share/man/man8 \
-build/man/{halt,poweroff,reboot,runlevel,shutdown,telinit}.8
+build/man/{halt,poweroff,reboot,shutdown}.8
 
   install -d -m0755 "$pkgdir"/usr/bin
   ln -s ../lib/systemd/systemd "$pkgdir"/usr/bin/init
-  for tool in halt poweroff reboot runlevel shutdown telinit; do
+  for tool in halt poweroff reboot shutdown; do
 ln -s systemctl "$pkgdir"/usr/bin/$tool
   done
 }


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

2020-11-26 Thread Eli Schwartz via arch-commits
Date: Friday, November 27, 2020 @ 07:11:31
  Author: eschwartz
Revision: 763985

archrelease: copy trunk to community-x86_64

Added:
  muffin/repos/community-x86_64/PKGBUILD
(from rev 763984, muffin/trunk/PKGBUILD)
Deleted:
  muffin/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-27 07:11:02 UTC (rev 763984)
+++ PKGBUILD2020-11-27 07:11:31 UTC (rev 763985)
@@ -1,58 +0,0 @@
-# Maintainer: Eli Schwartz 
-# Contributor: Alexandre Filgueira 
-# Contributor: Adam Hani Schakaki 
-# Contributor: Ner0
-
-pkgname=muffin
-pkgver=4.6.3
-pkgrel=1
-pkgdesc="Cinnamon window manager based on Mutter"
-arch=('x86_64')
-url="https://github.com/linuxmint/${pkgname};
-license=('GPL')
-depends=('cinnamon-desktop' 'gobject-introspection-runtime' 'libcanberra' 
'libinput'
- 'libsm' 'libxkbcommon-x11' 'startup-notification' 'zenity')
-makedepends=('intltool' 'gobject-introspection' 'gtk-doc')
-options=('!emptydirs')
-source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha256sums=('e634209f1a1dfec7efc7c741e65014903ea937926070dba3793cac595df3d5a3')
-b2sums=('1b8c0eeab13c35fc0b66898328f378331cb2bfc78b27a48a8f9e22c842df1a223613f27f5b29fe28c1edaaeb59972262024ed656dfabafa6c9454c4c4c0a74b9')
-
-prepare() {
-cd "${srcdir}"/${pkgname}-${pkgver}
-
-# thou shalt not -Werror
-sed -i 's/--warn-error//g' src/Makefile.am
-
-NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-cd "${srcdir}"/${pkgname}-${pkgver}
-
-./configure --prefix=/usr \
---sysconfdir=/etc \
---libexecdir=/usr/lib/muffin \
---localstatedir=/var \
---disable-gtk-doc \
---disable-static \
---disable-schemas-compile \
---enable-compile-warnings=minimum
-
-#https://bugzilla.gnome.org/show_bug.cgi?id=656231
-sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool clutter/libtool 
cogl/libtool
-
-make
-}
-
-package() {
-cd "${srcdir}"/${pkgname}-${pkgver}
-
-make DESTDIR="${pkgdir}" install
-
-# Remove unused stuff
-make -C src DESTDIR="${pkgdir}" uninstall-binPROGRAMS 
uninstall-desktopfilesDATA
-make -C src/tools DESTDIR="${pkgdir}" uninstall
-make -C src/compositor/plugins DESTDIR="${pkgdir}" uninstall
-make -C doc/man DESTDIR="${pkgdir}" uninstall
-}

Copied: muffin/repos/community-x86_64/PKGBUILD (from rev 763984, 
muffin/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-27 07:11:31 UTC (rev 763985)
@@ -0,0 +1,58 @@
+# Maintainer: Eli Schwartz 
+# Contributor: Alexandre Filgueira 
+# Contributor: Adam Hani Schakaki 
+# Contributor: Ner0
+
+pkgname=muffin
+pkgver=4.8.0
+pkgrel=1
+pkgdesc="Cinnamon window manager based on Mutter"
+arch=('x86_64')
+url="https://github.com/linuxmint/${pkgname};
+license=('GPL')
+depends=('cinnamon-desktop' 'gobject-introspection-runtime' 'libcanberra' 
'libinput'
+ 'libsm' 'libxkbcommon-x11' 'startup-notification' 'zenity')
+makedepends=('intltool' 'gobject-introspection' 'gtk-doc')
+options=('!emptydirs')
+source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
+sha256sums=('a4f1cb9ed80b7ea1e51d30b97ea3ae2f196b06fc9fd56c0283e64c9ee1322c18')
+b2sums=('4c2770d2d4774fc749dfd415de639da8b01cb07242e69e22f5de1c214a93494388fe0a0f8a2a7f7ca2064fc2c87a66b5c379fbfd335dccedc8ce09935483c018')
+
+prepare() {
+cd "${srcdir}"/${pkgname}-${pkgver}
+
+# thou shalt not -Werror
+sed -i 's/--warn-error//g' src/Makefile.am
+
+NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+cd "${srcdir}"/${pkgname}-${pkgver}
+
+./configure --prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib/muffin \
+--localstatedir=/var \
+--disable-gtk-doc \
+--disable-static \
+--disable-schemas-compile \
+--enable-compile-warnings=minimum
+
+#https://bugzilla.gnome.org/show_bug.cgi?id=656231
+sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool clutter/libtool 
cogl/libtool
+
+make
+}
+
+package() {
+cd "${srcdir}"/${pkgname}-${pkgver}
+
+make DESTDIR="${pkgdir}" install
+
+# Remove unused stuff
+make -C src DESTDIR="${pkgdir}" uninstall-binPROGRAMS 
uninstall-desktopfilesDATA
+make -C src/tools DESTDIR="${pkgdir}" uninstall
+make -C src/compositor/plugins DESTDIR="${pkgdir}" uninstall
+make -C doc/man DESTDIR="${pkgdir}" uninstall
+}


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

2020-11-26 Thread Eli Schwartz via arch-commits
Date: Friday, November 27, 2020 @ 07:11:02
  Author: eschwartz
Revision: 763984

upgpkg: muffin 4.8.0-1: upstream release

Modified:
  muffin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-27 07:10:56 UTC (rev 763983)
+++ PKGBUILD2020-11-27 07:11:02 UTC (rev 763984)
@@ -4,7 +4,7 @@
 # Contributor: Ner0
 
 pkgname=muffin
-pkgver=4.6.3
+pkgver=4.8.0
 pkgrel=1
 pkgdesc="Cinnamon window manager based on Mutter"
 arch=('x86_64')
@@ -15,8 +15,8 @@
 makedepends=('intltool' 'gobject-introspection' 'gtk-doc')
 options=('!emptydirs')
 source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha256sums=('e634209f1a1dfec7efc7c741e65014903ea937926070dba3793cac595df3d5a3')
-b2sums=('1b8c0eeab13c35fc0b66898328f378331cb2bfc78b27a48a8f9e22c842df1a223613f27f5b29fe28c1edaaeb59972262024ed656dfabafa6c9454c4c4c0a74b9')
+sha256sums=('a4f1cb9ed80b7ea1e51d30b97ea3ae2f196b06fc9fd56c0283e64c9ee1322c18')
+b2sums=('4c2770d2d4774fc749dfd415de639da8b01cb07242e69e22f5de1c214a93494388fe0a0f8a2a7f7ca2064fc2c87a66b5c379fbfd335dccedc8ce09935483c018')
 
 prepare() {
 cd "${srcdir}"/${pkgname}-${pkgver}


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

2020-11-26 Thread Eli Schwartz via arch-commits
Date: Friday, November 27, 2020 @ 07:10:56
  Author: eschwartz
Revision: 763983

archrelease: copy trunk to community-x86_64

Added:
  nemo/repos/community-x86_64/PKGBUILD
(from rev 763982, nemo/trunk/PKGBUILD)
Deleted:
  nemo/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-27 07:10:20 UTC (rev 763982)
+++ PKGBUILD2020-11-27 07:10:56 UTC (rev 763983)
@@ -1,43 +0,0 @@
-# Maintainer: Eli Schwartz 
-# Contributor: Alexandre Filgueira 
-# Contributor: Ner0
-
-pkgname=nemo
-pkgver=4.6.5
-pkgrel=1
-pkgdesc="Cinnamon file manager (Nautilus fork)"
-arch=('x86_64')
-url="https://github.com/linuxmint/${pkgname};
-license=('GPL')
-depends=('cinnamon-desktop' 'dconf' 'gvfs' 'exempi' 'libexif' 'libnotify' 
'libxml2'
- 'python' 'xapps')
-optdepends=('cinnamon-translations: i18n'
-'ffmpegthumbnailer: support for video thumbnails')
-makedepends=('meson' 'samurai' 'gobject-introspection' 'intltool')
-source=("$pkgname-$pkgver.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha512sums=('3c8c95e75e8bc499b56d1fd133f5ccc86ad18dae2219772b732586fd684a4a7a36e51fa61e6b734ad182ffd96636bdf276b8645d049e5ca68795fac274236eb6')
-b2sums=('42b47300782745e4ae98db164ca547b0794caf8f0883db4241f2f0ed2e375e5c8564cff6d878142b55744ce41f49c60aad3f24930398ff68444e32c572d7e9bd')
-
-prepare() {
-cd "${srcdir}"/${pkgname}-${pkgver}
-
-# Rename 'Files' app name to avoid having the same as nautilus
-sed -i '/^\[Desktop Entry/,/^\[Desktop Action/ 
s/^Name\(.*\)=.*/Name\1=Nemo/' data/nemo.desktop.in
-}
-
-build() {
-mkdir -p "${srcdir}"/${pkgname}-${pkgver}/build
-cd "${srcdir}"/${pkgname}-${pkgver}/build
-
-meson --prefix=/usr \
-  --libexecdir=lib/${pkgname} \
-  --buildtype=plain \
-  ..
-samu
-}
-
-package() {
-cd "${srcdir}"/${pkgname}-${pkgver}/build
-
-DESTDIR="${pkgdir}" samu install
-}

Copied: nemo/repos/community-x86_64/PKGBUILD (from rev 763982, 
nemo/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-27 07:10:56 UTC (rev 763983)
@@ -0,0 +1,43 @@
+# Maintainer: Eli Schwartz 
+# Contributor: Alexandre Filgueira 
+# Contributor: Ner0
+
+pkgname=nemo
+pkgver=4.8.0
+pkgrel=1
+pkgdesc="Cinnamon file manager (Nautilus fork)"
+arch=('x86_64')
+url="https://github.com/linuxmint/${pkgname};
+license=('GPL')
+depends=('cinnamon-desktop' 'dconf' 'gvfs' 'exempi' 'libexif' 'libnotify' 
'libxml2'
+ 'python' 'xapp')
+optdepends=('cinnamon-translations: i18n'
+'ffmpegthumbnailer: support for video thumbnails')
+makedepends=('meson' 'samurai' 'gobject-introspection' 'intltool')
+source=("$pkgname-$pkgver.tar.gz::${url}/archive/${pkgver}.tar.gz")
+sha512sums=('041c429314b575f26fb7daec7fc6829346f3b9482d3b29eda0c3517416a1e6b7a5de9da8dbf87c5884b52930c170695ceabf0495cf146c1b6b9709ad81a12575')
+b2sums=('0226a9e0cf252030f567eada1b4e93cdb7367578050b8cc4b06c2f79ec200593f26eeadeb1a45ce9e103f5f23b305f7a2ec11fdc6761f9c19e10c935eb9d')
+
+prepare() {
+cd "${srcdir}"/${pkgname}-${pkgver}
+
+# Rename 'Files' app name to avoid having the same as nautilus
+sed -i '/^\[Desktop Entry/,/^\[Desktop Action/ 
s/^Name\(.*\)=.*/Name\1=Nemo/' data/nemo.desktop.in
+}
+
+build() {
+mkdir -p "${srcdir}"/${pkgname}-${pkgver}/build
+cd "${srcdir}"/${pkgname}-${pkgver}/build
+
+meson --prefix=/usr \
+  --libexecdir=lib/${pkgname} \
+  --buildtype=plain \
+  ..
+samu
+}
+
+package() {
+cd "${srcdir}"/${pkgname}-${pkgver}/build
+
+DESTDIR="${pkgdir}" samu install
+}


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

2020-11-26 Thread Eli Schwartz via arch-commits
Date: Friday, November 27, 2020 @ 07:10:20
  Author: eschwartz
Revision: 763982

upgpkg: nemo 4.8.0-1: upstream release

Modified:
  nemo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-27 06:54:56 UTC (rev 763981)
+++ PKGBUILD2020-11-27 07:10:20 UTC (rev 763982)
@@ -3,7 +3,7 @@
 # Contributor: Ner0
 
 pkgname=nemo
-pkgver=4.6.5
+pkgver=4.8.0
 pkgrel=1
 pkgdesc="Cinnamon file manager (Nautilus fork)"
 arch=('x86_64')
@@ -10,13 +10,13 @@
 url="https://github.com/linuxmint/${pkgname};
 license=('GPL')
 depends=('cinnamon-desktop' 'dconf' 'gvfs' 'exempi' 'libexif' 'libnotify' 
'libxml2'
- 'python' 'xapps')
+ 'python' 'xapp')
 optdepends=('cinnamon-translations: i18n'
 'ffmpegthumbnailer: support for video thumbnails')
 makedepends=('meson' 'samurai' 'gobject-introspection' 'intltool')
 source=("$pkgname-$pkgver.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha512sums=('3c8c95e75e8bc499b56d1fd133f5ccc86ad18dae2219772b732586fd684a4a7a36e51fa61e6b734ad182ffd96636bdf276b8645d049e5ca68795fac274236eb6')
-b2sums=('42b47300782745e4ae98db164ca547b0794caf8f0883db4241f2f0ed2e375e5c8564cff6d878142b55744ce41f49c60aad3f24930398ff68444e32c572d7e9bd')
+sha512sums=('041c429314b575f26fb7daec7fc6829346f3b9482d3b29eda0c3517416a1e6b7a5de9da8dbf87c5884b52930c170695ceabf0495cf146c1b6b9709ad81a12575')
+b2sums=('0226a9e0cf252030f567eada1b4e93cdb7367578050b8cc4b06c2f79ec200593f26eeadeb1a45ce9e103f5f23b305f7a2ec11fdc6761f9c19e10c935eb9d')
 
 prepare() {
 cd "${srcdir}"/${pkgname}-${pkgver}


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

2020-11-26 Thread Eli Schwartz via arch-commits
Date: Friday, November 27, 2020 @ 06:54:56
  Author: eschwartz
Revision: 763981

archrelease: copy trunk to community-x86_64

Added:
  cjs/repos/community-x86_64/PKGBUILD
(from rev 763980, cjs/trunk/PKGBUILD)
Deleted:
  cjs/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-27 06:54:26 UTC (rev 763980)
+++ PKGBUILD2020-11-27 06:54:56 UTC (rev 763981)
@@ -1,42 +0,0 @@
-# Maintainer: Eli Schwartz 
-# Contributor: Alexandre Filgueira 
-# Contributor: Ionut Biru 
-
-pkgname=cjs
-pkgver=4.8.0
-pkgrel=1
-pkgdesc="Javascript Bindings for Cinnamon"
-arch=('x86_64')
-url="https://github.com/linuxmint/${pkgname};
-license=('GPL')
-depends=('gtk3' 'gobject-introspection-runtime' 'js78')
-makedepends=('meson' 'samurai' 'gobject-introspection')
-checkdepends=('xorg-server-xvfb')
-source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha512sums=('e5cff9f7790d2874fb1b743d823a799560c5fe82271f6cbff8b74baa70eec267fad9ac651258ee5c4de5dfce81964c73ca9a652ce3441791e44c34bcd8187770')
-b2sums=('6fea53cda72fc1e13618375d636b492d9e2cbc8130ff729376fbba7504e56fd5e1fa9b1330e2696a841b3400af04832f81febdfefc6730b43e3ccb7a41c46271')
-
-build() {
-mkdir -p "${srcdir}"/${pkgname}-${pkgver}/builddir
-cd "${srcdir}"/${pkgname}-${pkgver}/builddir
-
-meson --prefix=/usr \
-  --libexecdir=/usr/lib \
-  -Dinstalled_tests=false \
-  ..
-
-samu
-}
-
-check() {
-cd "${srcdir}"/${pkgname}-${pkgver}/builddir
-
-# Needs a display
-xvfb-run meson test --print-errorlogs
-}
-
-package() {
-cd "${srcdir}"/${pkgname}-${pkgver}/builddir
-
-DESTDIR="${pkgdir}" samu install
-}

Copied: cjs/repos/community-x86_64/PKGBUILD (from rev 763980, 
cjs/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-27 06:54:56 UTC (rev 763981)
@@ -0,0 +1,43 @@
+# Maintainer: Eli Schwartz 
+# Contributor: Alexandre Filgueira 
+# Contributor: Ionut Biru 
+
+pkgname=cjs
+pkgver=4.8.0
+pkgrel=1
+pkgdesc="Javascript Bindings for Cinnamon"
+arch=('x86_64')
+url="https://github.com/linuxmint/${pkgname};
+license=('GPL')
+depends=('gtk3' 'gobject-introspection-runtime' 'js78')
+makedepends=('meson' 'samurai' 'gobject-introspection')
+checkdepends=('xorg-server-xvfb')
+source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
+sha512sums=('e5cff9f7790d2874fb1b743d823a799560c5fe82271f6cbff8b74baa70eec267fad9ac651258ee5c4de5dfce81964c73ca9a652ce3441791e44c34bcd8187770')
+b2sums=('6fea53cda72fc1e13618375d636b492d9e2cbc8130ff729376fbba7504e56fd5e1fa9b1330e2696a841b3400af04832f81febdfefc6730b43e3ccb7a41c46271')
+
+build() {
+mkdir -p "${srcdir}"/${pkgname}-${pkgver}/builddir
+cd "${srcdir}"/${pkgname}-${pkgver}/builddir
+
+meson --prefix=/usr \
+  --libexecdir=/usr/lib \
+  --buildtype=plain \
+  -Dinstalled_tests=false \
+  ..
+
+samu
+}
+
+check() {
+cd "${srcdir}"/${pkgname}-${pkgver}/builddir
+
+# Needs a display
+xvfb-run meson test --print-errorlogs
+}
+
+package() {
+cd "${srcdir}"/${pkgname}-${pkgver}/builddir
+
+DESTDIR="${pkgdir}" samu install
+}


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

2020-11-26 Thread Eli Schwartz via arch-commits
Date: Friday, November 27, 2020 @ 06:54:26
  Author: eschwartz
Revision: 763980

re-upgpkg: cjs 4.8.0-1: now with correct buildtype

erk! I'm too tired for this...

Modified:
  cjs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-27 06:54:09 UTC (rev 763979)
+++ PKGBUILD2020-11-27 06:54:26 UTC (rev 763980)
@@ -22,6 +22,7 @@
 
 meson --prefix=/usr \
   --libexecdir=/usr/lib \
+  --buildtype=plain \
   -Dinstalled_tests=false \
   ..
 


[arch-commits] Commit in cinnamon-settings-daemon/repos/community-x86_64 (2 files)

2020-11-26 Thread Eli Schwartz via arch-commits
Date: Friday, November 27, 2020 @ 06:54:09
  Author: eschwartz
Revision: 763979

archrelease: copy trunk to community-x86_64

Added:
  cinnamon-settings-daemon/repos/community-x86_64/PKGBUILD
(from rev 763978, cinnamon-settings-daemon/trunk/PKGBUILD)
Deleted:
  cinnamon-settings-daemon/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-27 06:53:22 UTC (rev 763978)
+++ PKGBUILD2020-11-27 06:54:09 UTC (rev 763979)
@@ -1,38 +0,0 @@
-# Maintainer: Eli Schwartz 
-# Contributor: Alexandre Filgueira (faidoc) 
-# Contributor: Jan Alexander Steffens (heftig) 
-
-pkgname=cinnamon-settings-daemon
-pkgver=4.8.1
-pkgrel=1
-pkgdesc="The Cinnamon Settings daemon"
-arch=('x86_64')
-url="https://github.com/linuxmint/${pkgname};
-license=('GPL')
-depends=('cinnamon-desktop' 'colord' 'dbus-glib' 'libcanberra-pulse' 'libcups'
- 'libgnomekbd' 'libgudev' 'libnotify' 'librsvg' 'libwacom' 'nss' 
'polkit'
- 'pulseaudio-alsa' 'upower')
-optdepends=('cinnamon-translations: i18n')
-makedepends=('meson' 'samurai' 'xf86-input-wacom')
-options=('!emptydirs')
-source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha512sums=('0b3f8764385f8c51fdc2144be92e7394bd8061979942dc370ae5a01abb8a0b309bbbf9b9399586acd4fb5840b4f6c8dd7b6ddb6947ecdaf9bdfaeb7ff4f86292')
-b2sums=('53ac03644bdf766eb8cd8721490330e0672d95a7bfb58d02196a28a7706f4667c469d2a5d2ceee95444cf693a0706fada05efc0823b992779fd37bd374f8c110')
-
-build() {
-mkdir -p "${srcdir}"/${pkgname}-${pkgver}/builddir
-cd "${srcdir}"/${pkgname}-${pkgver}/builddir
-
-meson --prefix=/usr \
-  --libexecdir="/usr/lib/${pkgname}" \
-  -Dinstall_binfiles=false \
-  ..
-
-samu
-}
-
-package() {
-cd "${srcdir}"/${pkgname}-${pkgver}/builddir
-
- DESTDIR="${pkgdir}" samu install
-}

Copied: cinnamon-settings-daemon/repos/community-x86_64/PKGBUILD (from rev 
763978, cinnamon-settings-daemon/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-27 06:54:09 UTC (rev 763979)
@@ -0,0 +1,39 @@
+# Maintainer: Eli Schwartz 
+# Contributor: Alexandre Filgueira (faidoc) 
+# Contributor: Jan Alexander Steffens (heftig) 
+
+pkgname=cinnamon-settings-daemon
+pkgver=4.8.1
+pkgrel=1
+pkgdesc="The Cinnamon Settings daemon"
+arch=('x86_64')
+url="https://github.com/linuxmint/${pkgname};
+license=('GPL')
+depends=('cinnamon-desktop' 'colord' 'dbus-glib' 'libcanberra-pulse' 'libcups'
+ 'libgnomekbd' 'libgudev' 'libnotify' 'librsvg' 'libwacom' 'nss' 
'polkit'
+ 'pulseaudio-alsa' 'upower')
+optdepends=('cinnamon-translations: i18n')
+makedepends=('meson' 'samurai' 'xf86-input-wacom')
+options=('!emptydirs')
+source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
+sha512sums=('0b3f8764385f8c51fdc2144be92e7394bd8061979942dc370ae5a01abb8a0b309bbbf9b9399586acd4fb5840b4f6c8dd7b6ddb6947ecdaf9bdfaeb7ff4f86292')
+b2sums=('53ac03644bdf766eb8cd8721490330e0672d95a7bfb58d02196a28a7706f4667c469d2a5d2ceee95444cf693a0706fada05efc0823b992779fd37bd374f8c110')
+
+build() {
+mkdir -p "${srcdir}"/${pkgname}-${pkgver}/builddir
+cd "${srcdir}"/${pkgname}-${pkgver}/builddir
+
+meson --prefix=/usr \
+  --libexecdir="/usr/lib/${pkgname}" \
+  --buildtype=plain \
+  -Dinstall_binfiles=false \
+  ..
+
+samu
+}
+
+package() {
+cd "${srcdir}"/${pkgname}-${pkgver}/builddir
+
+ DESTDIR="${pkgdir}" samu install
+}


[arch-commits] Commit in cinnamon-settings-daemon/trunk (PKGBUILD)

2020-11-26 Thread Eli Schwartz via arch-commits
Date: Friday, November 27, 2020 @ 06:53:22
  Author: eschwartz
Revision: 763978

re-upgpkg: cinnamon-settings-daemon 4.8.1-1: now with correct buildtype

erk! I'm too tired for this...

Modified:
  cinnamon-settings-daemon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-27 06:33:22 UTC (rev 763977)
+++ PKGBUILD2020-11-27 06:53:22 UTC (rev 763978)
@@ -25,6 +25,7 @@
 
 meson --prefix=/usr \
   --libexecdir="/usr/lib/${pkgname}" \
+  --buildtype=plain \
   -Dinstall_binfiles=false \
   ..
 


[arch-commits] Commit in cinnamon-control-center/repos/community-x86_64 (2 files)

2020-11-26 Thread Eli Schwartz via arch-commits
Date: Friday, November 27, 2020 @ 06:33:22
  Author: eschwartz
Revision: 763977

archrelease: copy trunk to community-x86_64

Added:
  cinnamon-control-center/repos/community-x86_64/PKGBUILD
(from rev 763976, cinnamon-control-center/trunk/PKGBUILD)
Deleted:
  cinnamon-control-center/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-27 06:32:33 UTC (rev 763976)
+++ PKGBUILD2020-11-27 06:33:22 UTC (rev 763977)
@@ -1,45 +0,0 @@
-# Maintainer: Eli Schwartz 
-# Contributor: Alexandre Filgueira 
-# Based on gnome-control-center:
-# Jan Alexander Steffens (heftig) 
-# Jan de Groot 
-
-pkgname=cinnamon-control-center
-pkgver=4.8.0
-pkgrel=1
-pkgdesc="The Control Center for Cinnamon"
-arch=('x86_64')
-url="https://github.com/linuxmint/${pkgname};
-license=('GPL')
-depends=('cinnamon-settings-daemon' 'cinnamon-menus' 'colord'
- 'libgnomekbd' 'libmm-glib' 'nm-connection-editor')
-optdepends=('cinnamon-translations: i18n'
-'gnome-color-manager: for color management tasks'
-'gnome-online-accounts: for the online accounts module')
-makedepends=('meson' 'samurai' 'gnome-online-accounts')
-options=('!emptydirs')
-source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha256sums=('c419b7ce59c24492543ba95bd7dbb5fcc4b5338d2596b14820d80ec26d98fdd3')
-b2sums=('056b41c48ad00c6870971526b72de5cae03489cca595d5ed842aca4f08819f613faef4aefc350bb08d93fd05a533564baefc108741117856edc1474ba5821216')
-
-build() {
-mkdir -p "${srcdir}"/${pkgname}-${pkgver}/builddir
-cd "${srcdir}"/${pkgname}-${pkgver}/builddir
-
-meson --prefix=/usr \
-..
-
-samu
-}
-
-package() {
-cd "${srcdir}"/${pkgname}-${pkgver}/builddir
-
-DESTDIR="${pkgdir}" samu install
-
-# https://github.com/linuxmint/Cinnamon/pull/7382#issuecomment-374894901
-# /usr/bin/cinnamon-control-center is not meant for users, it is a 
development troubleshooting tool.
-# Just install the shell libs/headers.
-rm "${pkgdir}"/usr/bin/cinnamon-control-center
-rm "${pkgdir}"/usr/share/cinnamon-control-center/ui/shell.ui
-}

Copied: cinnamon-control-center/repos/community-x86_64/PKGBUILD (from rev 
763976, cinnamon-control-center/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-27 06:33:22 UTC (rev 763977)
@@ -0,0 +1,46 @@
+# Maintainer: Eli Schwartz 
+# Contributor: Alexandre Filgueira 
+# Based on gnome-control-center:
+# Jan Alexander Steffens (heftig) 
+# Jan de Groot 
+
+pkgname=cinnamon-control-center
+pkgver=4.8.0
+pkgrel=1
+pkgdesc="The Control Center for Cinnamon"
+arch=('x86_64')
+url="https://github.com/linuxmint/${pkgname};
+license=('GPL')
+depends=('cinnamon-settings-daemon' 'cinnamon-menus' 'colord'
+ 'libgnomekbd' 'libmm-glib' 'nm-connection-editor')
+optdepends=('cinnamon-translations: i18n'
+'gnome-color-manager: for color management tasks'
+'gnome-online-accounts: for the online accounts module')
+makedepends=('meson' 'samurai' 'gnome-online-accounts')
+options=('!emptydirs')
+source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
+sha256sums=('c419b7ce59c24492543ba95bd7dbb5fcc4b5338d2596b14820d80ec26d98fdd3')
+b2sums=('056b41c48ad00c6870971526b72de5cae03489cca595d5ed842aca4f08819f613faef4aefc350bb08d93fd05a533564baefc108741117856edc1474ba5821216')
+
+build() {
+mkdir -p "${srcdir}"/${pkgname}-${pkgver}/builddir
+cd "${srcdir}"/${pkgname}-${pkgver}/builddir
+
+meson --prefix=/usr \
+  --buildtype=plain \
+..
+
+samu
+}
+
+package() {
+cd "${srcdir}"/${pkgname}-${pkgver}/builddir
+
+DESTDIR="${pkgdir}" samu install
+
+# https://github.com/linuxmint/Cinnamon/pull/7382#issuecomment-374894901
+# /usr/bin/cinnamon-control-center is not meant for users, it is a 
development troubleshooting tool.
+# Just install the shell libs/headers.
+rm "${pkgdir}"/usr/bin/cinnamon-control-center
+rm "${pkgdir}"/usr/share/cinnamon-control-center/ui/shell.ui
+}


[arch-commits] Commit in cinnamon-control-center/trunk (PKGBUILD)

2020-11-26 Thread Eli Schwartz via arch-commits
Date: Friday, November 27, 2020 @ 06:32:33
  Author: eschwartz
Revision: 763976

re-upgpkg: cinnamon-control-center 4.8.0-1: now with correct buildtype

erk! I'm too tired for this...

Modified:
  cinnamon-control-center/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-27 06:10:50 UTC (rev 763975)
+++ PKGBUILD2020-11-27 06:32:33 UTC (rev 763976)
@@ -27,6 +27,7 @@
 cd "${srcdir}"/${pkgname}-${pkgver}/builddir
 
 meson --prefix=/usr \
+  --buildtype=plain \
 ..
 
 samu


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

2020-11-26 Thread Eli Schwartz via arch-commits
Date: Friday, November 27, 2020 @ 06:10:50
  Author: eschwartz
Revision: 763975

archrelease: copy trunk to community-x86_64

Added:
  cjs/repos/community-x86_64/PKGBUILD
(from rev 763974, cjs/trunk/PKGBUILD)
Deleted:
  cjs/repos/community-x86_64/PKGBUILD
  cjs/repos/community-x86_64/ax_code_coverage.m4

-+
 PKGBUILD|   91 +++--
 ax_code_coverage.m4 |  264 --
 2 files changed, 42 insertions(+), 313 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-27 06:10:15 UTC (rev 763974)
+++ PKGBUILD2020-11-27 06:10:50 UTC (rev 763975)
@@ -1,49 +0,0 @@
-# Maintainer: Eli Schwartz 
-# Contributor: Alexandre Filgueira 
-# Contributor: Ionut Biru 
-
-pkgname=cjs
-pkgver=4.4.0
-pkgrel=2
-pkgdesc="Javascript Bindings for Cinnamon"
-arch=('x86_64')
-url="https://github.com/linuxmint/${pkgname};
-license=('GPL')
-depends=('dbus-glib' 'gtk3' 'gobject-introspection-runtime' 'js52')
-makedepends=('autoconf-archive' 'gobject-introspection')
-checkdepends=('xorg-server-xvfb')
-source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha512sums=('3b2bdc55ab572713d6b6f92978522b290819656f64fef620659065ff5673a04a0585b83a1a0248116570ac1cfee4f54acc228f355c02aa4e0a2a13b59fbafed2')
-b2sums=('af276cd8f9ef0f66a6f4ab3e0072b485e33015e070bb796818907964df0696240b753f7a271bf45db788eb244e0cd1fb866f3b78798adf3ef8f9e76825fc4d74')
-
-prepare() {
-cd "${srcdir}"/${pkgname}-${pkgver}
-
-autoreconf -fi
-}
-
-build() {
-cd "${srcdir}"/${pkgname}-${pkgver}
-
-./configure --prefix=/usr \
---libexecdir=/usr/lib \
---disable-static
-
-#https://bugzilla.gnome.org/show_bug.cgi?id=656231
-sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-make
-}
-
-check() {
-cd "${srcdir}"/${pkgname}-${pkgver}
-
-# Needs a display
-xvfb-run make -k check || :
-}
-
-package() {
-cd "${srcdir}"/${pkgname}-${pkgver}
-
-make DESTDIR="${pkgdir}" install
-}

Copied: cjs/repos/community-x86_64/PKGBUILD (from rev 763974, 
cjs/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-27 06:10:50 UTC (rev 763975)
@@ -0,0 +1,42 @@
+# Maintainer: Eli Schwartz 
+# Contributor: Alexandre Filgueira 
+# Contributor: Ionut Biru 
+
+pkgname=cjs
+pkgver=4.8.0
+pkgrel=1
+pkgdesc="Javascript Bindings for Cinnamon"
+arch=('x86_64')
+url="https://github.com/linuxmint/${pkgname};
+license=('GPL')
+depends=('gtk3' 'gobject-introspection-runtime' 'js78')
+makedepends=('meson' 'samurai' 'gobject-introspection')
+checkdepends=('xorg-server-xvfb')
+source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
+sha512sums=('e5cff9f7790d2874fb1b743d823a799560c5fe82271f6cbff8b74baa70eec267fad9ac651258ee5c4de5dfce81964c73ca9a652ce3441791e44c34bcd8187770')
+b2sums=('6fea53cda72fc1e13618375d636b492d9e2cbc8130ff729376fbba7504e56fd5e1fa9b1330e2696a841b3400af04832f81febdfefc6730b43e3ccb7a41c46271')
+
+build() {
+mkdir -p "${srcdir}"/${pkgname}-${pkgver}/builddir
+cd "${srcdir}"/${pkgname}-${pkgver}/builddir
+
+meson --prefix=/usr \
+  --libexecdir=/usr/lib \
+  -Dinstalled_tests=false \
+  ..
+
+samu
+}
+
+check() {
+cd "${srcdir}"/${pkgname}-${pkgver}/builddir
+
+# Needs a display
+xvfb-run meson test --print-errorlogs
+}
+
+package() {
+cd "${srcdir}"/${pkgname}-${pkgver}/builddir
+
+DESTDIR="${pkgdir}" samu install
+}

Deleted: ax_code_coverage.m4
===
--- ax_code_coverage.m4 2020-11-27 06:10:15 UTC (rev 763974)
+++ ax_code_coverage.m4 2020-11-27 06:10:50 UTC (rev 763975)
@@ -1,264 +0,0 @@
-# ===
-# https://www.gnu.org/software/autoconf-archive/ax_code_coverage.html
-# ===
-#
-# SYNOPSIS
-#
-#   AX_CODE_COVERAGE()
-#
-# DESCRIPTION
-#
-#   Defines CODE_COVERAGE_CPPFLAGS, CODE_COVERAGE_CFLAGS,
-#   CODE_COVERAGE_CXXFLAGS and CODE_COVERAGE_LIBS which should be included
-#   in the CPPFLAGS, CFLAGS CXXFLAGS and LIBS/LIBADD variables of every
-#   build target (program or library) which should be built with code
-#   coverage support. Also defines CODE_COVERAGE_RULES which should be
-#   substituted in your Makefile; and $enable_code_coverage which can be
-#   used in subsequent configure output. CODE_COVERAGE_ENABLED is defined
-#   and substituted, and corresponds to the value of the
-#   --enable-code-coverage option, which defaults to being disabled.
-#
-#   Test also for gcov program and create GCOV variable that could be
-#   substituted.
-#
-#   Note that all optimization flags in CFLAGS must be disabled when code
-#   coverage is enabled.
-#
-#   Usage 

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

2020-11-26 Thread Eli Schwartz via arch-commits
Date: Friday, November 27, 2020 @ 06:10:15
  Author: eschwartz
Revision: 763974

upgpkg: cjs 4.8.0-1: upstream release

port to meson
port to mozjs 78

Modified:
  cjs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-27 06:07:24 UTC (rev 763973)
+++ PKGBUILD2020-11-27 06:10:15 UTC (rev 763974)
@@ -3,47 +3,40 @@
 # Contributor: Ionut Biru 
 
 pkgname=cjs
-pkgver=4.4.0
-pkgrel=2
+pkgver=4.8.0
+pkgrel=1
 pkgdesc="Javascript Bindings for Cinnamon"
 arch=('x86_64')
 url="https://github.com/linuxmint/${pkgname};
 license=('GPL')
-depends=('gtk3' 'gobject-introspection-runtime' 'js52')
-makedepends=('autoconf-archive' 'gobject-introspection')
+depends=('gtk3' 'gobject-introspection-runtime' 'js78')
+makedepends=('meson' 'samurai' 'gobject-introspection')
 checkdepends=('xorg-server-xvfb')
 source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha512sums=('3b2bdc55ab572713d6b6f92978522b290819656f64fef620659065ff5673a04a0585b83a1a0248116570ac1cfee4f54acc228f355c02aa4e0a2a13b59fbafed2')
-b2sums=('af276cd8f9ef0f66a6f4ab3e0072b485e33015e070bb796818907964df0696240b753f7a271bf45db788eb244e0cd1fb866f3b78798adf3ef8f9e76825fc4d74')
+sha512sums=('e5cff9f7790d2874fb1b743d823a799560c5fe82271f6cbff8b74baa70eec267fad9ac651258ee5c4de5dfce81964c73ca9a652ce3441791e44c34bcd8187770')
+b2sums=('6fea53cda72fc1e13618375d636b492d9e2cbc8130ff729376fbba7504e56fd5e1fa9b1330e2696a841b3400af04832f81febdfefc6730b43e3ccb7a41c46271')
 
-prepare() {
-cd "${srcdir}"/${pkgname}-${pkgver}
-
-autoreconf -fi
-}
-
 build() {
-cd "${srcdir}"/${pkgname}-${pkgver}
+mkdir -p "${srcdir}"/${pkgname}-${pkgver}/builddir
+cd "${srcdir}"/${pkgname}-${pkgver}/builddir
 
-./configure --prefix=/usr \
---libexecdir=/usr/lib \
---disable-static
+meson --prefix=/usr \
+  --libexecdir=/usr/lib \
+  -Dinstalled_tests=false \
+  ..
 
-#https://bugzilla.gnome.org/show_bug.cgi?id=656231
-sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-make
+samu
 }
 
 check() {
-cd "${srcdir}"/${pkgname}-${pkgver}
+cd "${srcdir}"/${pkgname}-${pkgver}/builddir
 
 # Needs a display
-xvfb-run make -k check || :
+xvfb-run meson test --print-errorlogs
 }
 
 package() {
-cd "${srcdir}"/${pkgname}-${pkgver}
+cd "${srcdir}"/${pkgname}-${pkgver}/builddir
 
-make DESTDIR="${pkgdir}" install
+DESTDIR="${pkgdir}" samu install
 }


[arch-commits] Commit in firefox-dark-reader/repos/community-any (PKGBUILD PKGBUILD)

2020-11-26 Thread Daniel M. Capella via arch-commits
Date: Friday, November 27, 2020 @ 06:07:24
  Author: polyzen
Revision: 763973

archrelease: copy trunk to community-any

Added:
  firefox-dark-reader/repos/community-any/PKGBUILD
(from rev 763972, firefox-dark-reader/trunk/PKGBUILD)
Deleted:
  firefox-dark-reader/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-27 06:07:03 UTC (rev 763972)
+++ PKGBUILD2020-11-27 06:07:24 UTC (rev 763973)
@@ -1,23 +0,0 @@
-# Maintainer: Daniel M. Capella 
-# Contributor: Cookie Engineer 
-
-pkgname=firefox-dark-reader
-pkgver=4.9.24
-pkgrel=1
-pkgdesc='Inverts brightness of web pages and aims to reduce eyestrain while 
browsing the web'
-url=https://darkreader.org/
-arch=('any')
-license=('MIT')
-groups=('firefox-addons')
-conflicts=('firefox-extension-dark-reader')
-replaces=('firefox-extension-dark-reader')
-source=("https://addons.cdn.mozilla.net/user-media/addons/855413/dark_reader-$pkgver-an+fx.xpi;)
-noextract=("${source##*/}")
-sha256sums=('4d8c220167819e21347213635930c1b866dc73d8943cf1cef94d6aa2eaf0ddf1')
-b2sums=('fd6d2e1c8127a25c4b56cb6dde7384e25c14d180b8b56a9a00161dd776e3752cc477d718c67e16a1f760c759cc4a5e0e160494052a3fc41b0fe6db3aa31aafd2')
-
-package() {
-  install -Dm644 "${source##*/}" 
"$pkgdir"/usr/lib/firefox/browser/extensions/ad...@darkreader.org.xpi
-}
-
-# vim:set ts=2 sw=2 et:

Copied: firefox-dark-reader/repos/community-any/PKGBUILD (from rev 763972, 
firefox-dark-reader/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-27 06:07:24 UTC (rev 763973)
@@ -0,0 +1,27 @@
+# Maintainer: Daniel M. Capella 
+# Contributor: Cookie Engineer 
+
+pkgname=firefox-dark-reader
+pkgver=4.9.26
+pkgrel=1
+pkgdesc='Inverts brightness of web pages and aims to reduce eyestrain while 
browsing the web'
+url=https://darkreader.org/
+arch=('any')
+license=('MIT')
+groups=('firefox-addons')
+makedepends=('nodejs' 'npm')
+source=("https://github.com/darkreader/darkreader/archive/v$pkgver/darkreader-v$pkgver.tar.gz;)
+b2sums=('9ca8df8eb5f695ee8ee2d4694afa170ca206e5d4468370dc24b3704d6313e4f45939faff398f48df48125b6411b7f74e241d47680ea358dbf52f12e6ac8811d5')
+
+build() {
+  cd darkreader-$pkgver
+  npm install
+  npm run build
+}
+
+package() {
+  cd darkreader-$pkgver
+  install -Dm644 build-firefox.xpi 
"$pkgdir"/usr/lib/firefox/browser/extensions/ad...@darkreader.org.xpi
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in firefox-dark-reader/trunk (PKGBUILD)

2020-11-26 Thread Daniel M. Capella via arch-commits
Date: Friday, November 27, 2020 @ 06:07:03
  Author: polyzen
Revision: 763972

upgpkg: firefox-dark-reader 4.9.26-1 and build from source

Modified:
  firefox-dark-reader/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-27 05:52:27 UTC (rev 763971)
+++ PKGBUILD2020-11-27 06:07:03 UTC (rev 763972)
@@ -2,7 +2,7 @@
 # Contributor: Cookie Engineer 
 
 pkgname=firefox-dark-reader
-pkgver=4.9.24
+pkgver=4.9.26
 pkgrel=1
 pkgdesc='Inverts brightness of web pages and aims to reduce eyestrain while 
browsing the web'
 url=https://darkreader.org/
@@ -9,15 +9,19 @@
 arch=('any')
 license=('MIT')
 groups=('firefox-addons')
-conflicts=('firefox-extension-dark-reader')
-replaces=('firefox-extension-dark-reader')
-source=("https://addons.cdn.mozilla.net/user-media/addons/855413/dark_reader-$pkgver-an+fx.xpi;)
-noextract=("${source##*/}")
-sha256sums=('4d8c220167819e21347213635930c1b866dc73d8943cf1cef94d6aa2eaf0ddf1')
-b2sums=('fd6d2e1c8127a25c4b56cb6dde7384e25c14d180b8b56a9a00161dd776e3752cc477d718c67e16a1f760c759cc4a5e0e160494052a3fc41b0fe6db3aa31aafd2')
+makedepends=('nodejs' 'npm')
+source=("https://github.com/darkreader/darkreader/archive/v$pkgver/darkreader-v$pkgver.tar.gz;)
+b2sums=('9ca8df8eb5f695ee8ee2d4694afa170ca206e5d4468370dc24b3704d6313e4f45939faff398f48df48125b6411b7f74e241d47680ea358dbf52f12e6ac8811d5')
 
+build() {
+  cd darkreader-$pkgver
+  npm install
+  npm run build
+}
+
 package() {
-  install -Dm644 "${source##*/}" 
"$pkgdir"/usr/lib/firefox/browser/extensions/ad...@darkreader.org.xpi
+  cd darkreader-$pkgver
+  install -Dm644 build-firefox.xpi 
"$pkgdir"/usr/lib/firefox/browser/extensions/ad...@darkreader.org.xpi
 }
 
 # vim:set ts=2 sw=2 et:


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

2020-11-26 Thread Eli Schwartz via arch-commits
Date: Friday, November 27, 2020 @ 05:52:27
  Author: eschwartz
Revision: 763971

archrelease: copy trunk to community-x86_64

Added:
  xapp/repos/community-x86_64/PKGBUILD
(from rev 763970, xapp/trunk/PKGBUILD)
Deleted:
  xapp/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-27 05:51:54 UTC (rev 763970)
+++ PKGBUILD2020-11-27 05:52:27 UTC (rev 763971)
@@ -1,48 +0,0 @@
-# Maintainer: Eli Schwartz 
-# Contributor: Alex Filgueira 
-# Contributor: Nate Simon 
-
-pkgname=xapp
-pkgver=1.8.10
-pkgrel=1
-pkgdesc="Common library for X-Apps project"
-arch=('x86_64')
-url="https://github.com/linuxmint/${pkgname};
-license=('GPL')
-depends=('libdbusmenu-gtk3' 'libgnomekbd')
-optdepends=('python: for mate-desktop status applet')
-makedepends=('meson' 'samurai' 'gobject-introspection' 'python-gobject' 'vala')
-provides=('xapps')
-conflicts=('xapps')
-replaces=('xapps')
-source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha256sums=('a0d542de6dc4d6a318bdf1fad88447db270ab2dd0582f0c6f28008cc77337672')
-b2sums=('cda37ade7d8cd3f9ffb5fd1e6ac7ed5841f9ccc8c8735cfc5a7d88a0a3530614b70dd56395b4f36a6c39b980df83c5668b44f45223240ed1009918178ee0e88f')
-
-build() {
-mkdir -p "${srcdir}"/${pkgname}-${pkgver}/build
-cd "${srcdir}"/${pkgname}-${pkgver}/build
-
-meson --prefix=/usr \
-  --libexecdir=lib \
-  --buildtype=plain \
-  ..
-samu
-}
-
-package(){
-cd "${srcdir}"/${pkgname}-${pkgver}/build
-
-DESTDIR="${pkgdir}" samu install
-# rm useless scripts
-rm -r "${pkgdir}"/usr/bin
-
-# byte-compile python modules since meson does not implement autotools'
-# py-compile.
-# This is kind of ugly but removes traces of the build root.
-while read -rd '' _file; do
-_destdir="$(dirname "${_file#${pkgdir}}")"
-python -m compileall -d "${_destdir}" "${_file}"
-python -O -m compileall -d "${_destdir}" "${_file}"
-done < <(find "${pkgdir}"/usr/lib/python3* -name '*.py' -print0)
-}

Copied: xapp/repos/community-x86_64/PKGBUILD (from rev 763970, 
xapp/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-27 05:52:27 UTC (rev 763971)
@@ -0,0 +1,61 @@
+# Maintainer: Eli Schwartz 
+# Contributor: Alex Filgueira 
+# Contributor: Nate Simon 
+
+pkgname=xapp
+pkgver=2.0.0
+pkgrel=1
+pkgdesc="Common library for X-Apps project"
+arch=('x86_64')
+url="https://github.com/linuxmint/${pkgname};
+license=('GPL')
+depends=('libdbusmenu-gtk3' 'libgnomekbd')
+optdepends=('python: for mate-desktop status applet')
+makedepends=('meson' 'samurai' 'gobject-introspection' 'python-gobject' 'vala')
+provides=('xapps')
+conflicts=('xapps')
+replaces=('xapps')
+source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz"
+
"https://github.com/linuxmint/xapp/pull/117/commits/8fb391b5d8f081d6fa1ed4a7d9f56e175aae31ff.patch;)
+sha256sums=('cc33dea39cc1092e77280ba290b94adf991125d922b285dc20c5a62cc41dac29'
+'e5e0e3462746d2c967d136a5561de72fb67b9882d644fad30d516512eb8f5255')
+b2sums=('64159030705a8f94c4ebebc361a78b34ede83ff21e8ef66fe0445d0ff69f1d8546ccbe19625bad1ce9101fa6c4654ef3706ca9b0fc006f3b934562f388e96814'
+
'785f78e9f0dd51ae70388d09de26d760a530a6859f78995197fc9eacd1b4c483c3570b2e716ad27c9133f6b2f5e835507ba203359ed81069fc9b4e5c09ef8995')
+
+prepare() {
+cd "${srcdir}"/${pkgname}-${pkgver}
+
+# do not install file in Debian-specific location that doesn't work 
anywhere else
+# https://github.com/linuxmint/xapp/pull/117
+patch -p1 -i ../8fb391b5d8f081d6fa1ed4a7d9f56e175aae31ff.patch
+
+}
+
+build() {
+mkdir -p "${srcdir}"/${pkgname}-${pkgver}/build
+cd "${srcdir}"/${pkgname}-${pkgver}/build
+
+meson --prefix=/usr \
+  --libexecdir=lib \
+  --buildtype=plain \
+  ..
+samu
+}
+
+package(){
+cd "${srcdir}"/${pkgname}-${pkgver}/build
+
+DESTDIR="${pkgdir}" samu install
+
+# rm useless scripts
+rm -r "${pkgdir}"/usr/bin
+
+# byte-compile python modules since meson does not implement autotools'
+# py-compile.
+# This is kind of ugly but removes traces of the build root.
+while read -rd '' _file; do
+_destdir="$(dirname "${_file#${pkgdir}}")"
+python -m compileall -d "${_destdir}" "${_file}"
+python -O -m compileall -d "${_destdir}" "${_file}"
+done < <(find "${pkgdir}"/usr/lib/python3* -name '*.py' -print0)
+}


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

2020-11-26 Thread Eli Schwartz via arch-commits
Date: Friday, November 27, 2020 @ 05:51:54
  Author: eschwartz
Revision: 763970

upgpkg: xapp 2.0.0-1: upstream release

weird soname doesn't seem to be directly harmful...

work around broken support file, see https://github.com/linuxmint/xapp/pull/117

Modified:
  xapp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-27 05:49:26 UTC (rev 763969)
+++ PKGBUILD2020-11-27 05:51:54 UTC (rev 763970)
@@ -3,8 +3,8 @@
 # Contributor: Nate Simon 
 
 pkgname=xapp
-pkgver=1.8.10
-pkgrel=3
+pkgver=2.0.0
+pkgrel=1
 pkgdesc="Common library for X-Apps project"
 arch=('x86_64')
 url="https://github.com/linuxmint/${pkgname};
@@ -15,10 +15,22 @@
 provides=('xapps')
 conflicts=('xapps')
 replaces=('xapps')
-source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha256sums=('a0d542de6dc4d6a318bdf1fad88447db270ab2dd0582f0c6f28008cc77337672')
-b2sums=('cda37ade7d8cd3f9ffb5fd1e6ac7ed5841f9ccc8c8735cfc5a7d88a0a3530614b70dd56395b4f36a6c39b980df83c5668b44f45223240ed1009918178ee0e88f')
+source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz"
+
"https://github.com/linuxmint/xapp/pull/117/commits/8fb391b5d8f081d6fa1ed4a7d9f56e175aae31ff.patch;)
+sha256sums=('cc33dea39cc1092e77280ba290b94adf991125d922b285dc20c5a62cc41dac29'
+'e5e0e3462746d2c967d136a5561de72fb67b9882d644fad30d516512eb8f5255')
+b2sums=('64159030705a8f94c4ebebc361a78b34ede83ff21e8ef66fe0445d0ff69f1d8546ccbe19625bad1ce9101fa6c4654ef3706ca9b0fc006f3b934562f388e96814'
+
'785f78e9f0dd51ae70388d09de26d760a530a6859f78995197fc9eacd1b4c483c3570b2e716ad27c9133f6b2f5e835507ba203359ed81069fc9b4e5c09ef8995')
 
+prepare() {
+cd "${srcdir}"/${pkgname}-${pkgver}
+
+# do not install file in Debian-specific location that doesn't work 
anywhere else
+# https://github.com/linuxmint/xapp/pull/117
+patch -p1 -i ../8fb391b5d8f081d6fa1ed4a7d9f56e175aae31ff.patch
+
+}
+
 build() {
 mkdir -p "${srcdir}"/${pkgname}-${pkgver}/build
 cd "${srcdir}"/${pkgname}-${pkgver}/build
@@ -34,6 +46,7 @@
 cd "${srcdir}"/${pkgname}-${pkgver}/build
 
 DESTDIR="${pkgdir}" samu install
+
 # rm useless scripts
 rm -r "${pkgdir}"/usr/bin
 


[arch-commits] Commit in cinnamon-screensaver/repos/community-x86_64 (2 files)

2020-11-26 Thread Eli Schwartz via arch-commits
Date: Friday, November 27, 2020 @ 05:49:26
  Author: eschwartz
Revision: 763969

archrelease: copy trunk to community-x86_64

Added:
  cinnamon-screensaver/repos/community-x86_64/PKGBUILD
(from rev 763968, cinnamon-screensaver/trunk/PKGBUILD)
Deleted:
  cinnamon-screensaver/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-27 05:48:51 UTC (rev 763968)
+++ PKGBUILD2020-11-27 05:49:26 UTC (rev 763969)
@@ -1,38 +0,0 @@
-# Maintainer: Eli Schwartz 
-# Contributor: Alexandre Filgueira 
-# Based on gnome-screensaver package:
-# Jan Alexander Steffens (heftig) 
-# Jan de Groot 
-
-pkgname=cinnamon-screensaver
-pkgver=4.6.0
-pkgrel=1
-pkgdesc="Screensaver designed to integrate well with the Cinnamon desktop."
-arch=('x86_64')
-url="https://github.com/linuxmint/${pkgname};
-license=('GPL')
-depends=('accountsservice' 'cinnamon-desktop' 'dbus-glib' 'libgnomekbd'
- 'python-cairo' 'python-gobject' 'python-setproctitle' 'python-xapp' 
'xapps')
-optdepends=('cinnamon-translations: i18n')
-makedepends=('gobject-introspection' 'meson' 'samurai')
-backup=('etc/pam.d/cinnamon-screensaver')
-source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha512sums=('c83a057ff12a22445a155d4f91a45638d922c9b2180a7655f1e34bfd8ddcd31ed901b5b038236fa0e06c6f7986547c34ee8ab61cd216b5bc75f1c202b545c28f')
-b2sums=('ba9f1e02fb7567d269daa4eccdb39d2c73dd6ac6bd3a3a4e00e1bcec685b48394fc9247d5006f908091291748e013ae65cf7718a972ef67ed7fd11a226789d6d')
-
-build() {
-mkdir -p "${srcdir}"/${pkgname}-${pkgver}/build
-cd "${srcdir}"/${pkgname}-${pkgver}/build
-
-meson --prefix=/usr \
-  --libexecdir=lib/cinnamon-screensaver \
-  --buildtype=plain \
-  ..
-samu
-}
-
-package() {
-cd "${srcdir}"/${pkgname}-${pkgver}/build
-
-DESTDIR="${pkgdir}" samu install
-}

Copied: cinnamon-screensaver/repos/community-x86_64/PKGBUILD (from rev 763968, 
cinnamon-screensaver/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-27 05:49:26 UTC (rev 763969)
@@ -0,0 +1,38 @@
+# Maintainer: Eli Schwartz 
+# Contributor: Alexandre Filgueira 
+# Based on gnome-screensaver package:
+# Jan Alexander Steffens (heftig) 
+# Jan de Groot 
+
+pkgname=cinnamon-screensaver
+pkgver=4.8.0
+pkgrel=1
+pkgdesc="Screensaver designed to integrate well with the Cinnamon desktop."
+arch=('x86_64')
+url="https://github.com/linuxmint/${pkgname};
+license=('GPL')
+depends=('accountsservice' 'cinnamon-desktop' 'libgnomekbd'
+ 'python-cairo' 'python-gobject' 'python-setproctitle' 'python-xapp' 
'xapp')
+optdepends=('cinnamon-translations: i18n')
+makedepends=('gobject-introspection' 'meson' 'samurai')
+backup=('etc/pam.d/cinnamon-screensaver')
+source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
+sha512sums=('09a76bd99c0463bf48843f5e138a9fb215fd160a9b1d1b0cafacdf2ddc0958c991edf25bdf65850783c90732be22f034213b4ec9ce1d17e5f6432778bb70185b')
+b2sums=('24bbe279958f9fb13e0864f7c0e68eac4807d2ffd49367171932e8c2578f34d2bbc8dada1889db7381aba16f80df492a105101655a697de9133d3f242d1988c2')
+
+build() {
+mkdir -p "${srcdir}"/${pkgname}-${pkgver}/build
+cd "${srcdir}"/${pkgname}-${pkgver}/build
+
+meson --prefix=/usr \
+  --libexecdir=lib/cinnamon-screensaver \
+  --buildtype=plain \
+  ..
+samu
+}
+
+package() {
+cd "${srcdir}"/${pkgname}-${pkgver}/build
+
+DESTDIR="${pkgdir}" samu install
+}


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

2020-11-26 Thread Eli Schwartz via arch-commits
Date: Friday, November 27, 2020 @ 05:48:51
  Author: eschwartz
Revision: 763968

upgpkg: cinnamon-screensaver 4.8.0-1: upstream release

Modified:
  cinnamon-screensaver/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-27 05:31:28 UTC (rev 763967)
+++ PKGBUILD2020-11-27 05:48:51 UTC (rev 763968)
@@ -5,20 +5,20 @@
 # Jan de Groot 
 
 pkgname=cinnamon-screensaver
-pkgver=4.6.0
-pkgrel=2
+pkgver=4.8.0
+pkgrel=1
 pkgdesc="Screensaver designed to integrate well with the Cinnamon desktop."
 arch=('x86_64')
 url="https://github.com/linuxmint/${pkgname};
 license=('GPL')
 depends=('accountsservice' 'cinnamon-desktop' 'libgnomekbd'
- 'python-cairo' 'python-gobject' 'python-setproctitle' 'python-xapp' 
'xapps')
+ 'python-cairo' 'python-gobject' 'python-setproctitle' 'python-xapp' 
'xapp')
 optdepends=('cinnamon-translations: i18n')
 makedepends=('gobject-introspection' 'meson' 'samurai')
 backup=('etc/pam.d/cinnamon-screensaver')
 source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha512sums=('c83a057ff12a22445a155d4f91a45638d922c9b2180a7655f1e34bfd8ddcd31ed901b5b038236fa0e06c6f7986547c34ee8ab61cd216b5bc75f1c202b545c28f')
-b2sums=('ba9f1e02fb7567d269daa4eccdb39d2c73dd6ac6bd3a3a4e00e1bcec685b48394fc9247d5006f908091291748e013ae65cf7718a972ef67ed7fd11a226789d6d')
+sha512sums=('09a76bd99c0463bf48843f5e138a9fb215fd160a9b1d1b0cafacdf2ddc0958c991edf25bdf65850783c90732be22f034213b4ec9ce1d17e5f6432778bb70185b')
+b2sums=('24bbe279958f9fb13e0864f7c0e68eac4807d2ffd49367171932e8c2578f34d2bbc8dada1889db7381aba16f80df492a105101655a697de9133d3f242d1988c2')
 
 build() {
 mkdir -p "${srcdir}"/${pkgname}-${pkgver}/build


[arch-commits] Commit in cinnamon-control-center/repos/community-x86_64 (2 files)

2020-11-26 Thread Eli Schwartz via arch-commits
Date: Friday, November 27, 2020 @ 05:31:28
  Author: eschwartz
Revision: 763967

archrelease: copy trunk to community-x86_64

Added:
  cinnamon-control-center/repos/community-x86_64/PKGBUILD
(from rev 763966, cinnamon-control-center/trunk/PKGBUILD)
Deleted:
  cinnamon-control-center/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-27 05:30:59 UTC (rev 763966)
+++ PKGBUILD2020-11-27 05:31:28 UTC (rev 763967)
@@ -1,54 +0,0 @@
-# Maintainer: Eli Schwartz 
-# Contributor: Alexandre Filgueira 
-# Based on gnome-control-center:
-# Jan Alexander Steffens (heftig) 
-# Jan de Groot 
-
-pkgname=cinnamon-control-center
-pkgver=4.6.2
-pkgrel=1
-pkgdesc="The Control Center for Cinnamon"
-arch=('x86_64')
-url="https://github.com/linuxmint/${pkgname};
-license=('GPL')
-depends=('cinnamon-settings-daemon' 'cinnamon-menus' 'colord'
- 'libgnomekbd' 'libmm-glib' 'nm-connection-editor')
-optdepends=('cinnamon-translations: i18n'
-'gnome-color-manager: for color management tasks'
-'gnome-online-accounts: for the online accounts module')
-makedepends=('gnome-online-accounts' 'intltool' 'python')
-options=('!emptydirs')
-source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha256sums=('f887d7e185f8ff1ee6f9789219231cba8be820c706b316d35ee5118d2fd898eb')
-b2sums=('f64ebfedc73eb92b96f81fb2743d818ec1602a550130d362eadba4c66a24a0e1f2bdffbe0bf80b23426ab57cead910c78b061b52e4eb82d0e6173d1da2d62749')
-
-prepare() {
-cd "${srcdir}"/${pkgname}-${pkgver}
-
-NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-cd "${srcdir}"/${pkgname}-${pkgver}
-
-./configure --prefix=/usr \
---sysconfdir=/etc \
---localstatedir=/var \
---enable-systemd
-
-#https://bugzilla.gnome.org/show_bug.cgi?id=656229
-sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' -e 's/if test 
"$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then/  
func_append compile_command " -Wl,-O1,--as-needed"\n  func_append 
finalize_command " -Wl,-O1,--as-needed"\n\0/' libtool
-make
-}
-
-package() {
-cd "${srcdir}"/${pkgname}-${pkgver}
-
-# https://github.com/linuxmint/Cinnamon/pull/7382#issuecomment-374894901
-# /usr/bin/cinnamon-control-center is not meant for users, it is a 
development troubleshooting tool.
-# Just install the shell libs/headers.
-make -C shell  DESTDIR="${pkgdir}" 
install-{libcinnamon_control_center_includeHEADERS,libLTLIBRARIES,pkgconfigDATA}
-make -C panels DESTDIR="${pkgdir}" install
-
-install -d -o root -g 102 -m 750 "${pkgdir}"/usr/share/polkit-1/rules.d
-}

Copied: cinnamon-control-center/repos/community-x86_64/PKGBUILD (from rev 
763966, cinnamon-control-center/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-27 05:31:28 UTC (rev 763967)
@@ -0,0 +1,45 @@
+# Maintainer: Eli Schwartz 
+# Contributor: Alexandre Filgueira 
+# Based on gnome-control-center:
+# Jan Alexander Steffens (heftig) 
+# Jan de Groot 
+
+pkgname=cinnamon-control-center
+pkgver=4.8.0
+pkgrel=1
+pkgdesc="The Control Center for Cinnamon"
+arch=('x86_64')
+url="https://github.com/linuxmint/${pkgname};
+license=('GPL')
+depends=('cinnamon-settings-daemon' 'cinnamon-menus' 'colord'
+ 'libgnomekbd' 'libmm-glib' 'nm-connection-editor')
+optdepends=('cinnamon-translations: i18n'
+'gnome-color-manager: for color management tasks'
+'gnome-online-accounts: for the online accounts module')
+makedepends=('meson' 'samurai' 'gnome-online-accounts')
+options=('!emptydirs')
+source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
+sha256sums=('c419b7ce59c24492543ba95bd7dbb5fcc4b5338d2596b14820d80ec26d98fdd3')
+b2sums=('056b41c48ad00c6870971526b72de5cae03489cca595d5ed842aca4f08819f613faef4aefc350bb08d93fd05a533564baefc108741117856edc1474ba5821216')
+
+build() {
+mkdir -p "${srcdir}"/${pkgname}-${pkgver}/builddir
+cd "${srcdir}"/${pkgname}-${pkgver}/builddir
+
+meson --prefix=/usr \
+..
+
+samu
+}
+
+package() {
+cd "${srcdir}"/${pkgname}-${pkgver}/builddir
+
+DESTDIR="${pkgdir}" samu install
+
+# https://github.com/linuxmint/Cinnamon/pull/7382#issuecomment-374894901
+# /usr/bin/cinnamon-control-center is not meant for users, it is a 
development troubleshooting tool.
+# Just install the shell libs/headers.
+rm "${pkgdir}"/usr/bin/cinnamon-control-center
+rm "${pkgdir}"/usr/share/cinnamon-control-center/ui/shell.ui
+}


[arch-commits] Commit in cinnamon-control-center/trunk (PKGBUILD)

2020-11-26 Thread Eli Schwartz via arch-commits
Date: Friday, November 27, 2020 @ 05:30:59
  Author: eschwartz
Revision: 763966

upgpkg: cinnamon-control-center 4.8.0-1: upstream release

port to meson, upstream dropped datetime module and polkit rules

Modified:
  cinnamon-control-center/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-27 04:21:09 UTC (rev 763965)
+++ PKGBUILD2020-11-27 05:30:59 UTC (rev 763966)
@@ -5,7 +5,7 @@
 # Jan de Groot 
 
 pkgname=cinnamon-control-center
-pkgver=4.6.2
+pkgver=4.8.0
 pkgrel=1
 pkgdesc="The Control Center for Cinnamon"
 arch=('x86_64')
@@ -16,39 +16,30 @@
 optdepends=('cinnamon-translations: i18n'
 'gnome-color-manager: for color management tasks'
 'gnome-online-accounts: for the online accounts module')
-makedepends=('gnome-online-accounts' 'intltool' 'python')
+makedepends=('meson' 'samurai' 'gnome-online-accounts')
 options=('!emptydirs')
 source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha256sums=('f887d7e185f8ff1ee6f9789219231cba8be820c706b316d35ee5118d2fd898eb')
-b2sums=('f64ebfedc73eb92b96f81fb2743d818ec1602a550130d362eadba4c66a24a0e1f2bdffbe0bf80b23426ab57cead910c78b061b52e4eb82d0e6173d1da2d62749')
+sha256sums=('c419b7ce59c24492543ba95bd7dbb5fcc4b5338d2596b14820d80ec26d98fdd3')
+b2sums=('056b41c48ad00c6870971526b72de5cae03489cca595d5ed842aca4f08819f613faef4aefc350bb08d93fd05a533564baefc108741117856edc1474ba5821216')
 
-prepare() {
-cd "${srcdir}"/${pkgname}-${pkgver}
-
-NOCONFIGURE=1 ./autogen.sh
-}
-
 build() {
-cd "${srcdir}"/${pkgname}-${pkgver}
+mkdir -p "${srcdir}"/${pkgname}-${pkgver}/builddir
+cd "${srcdir}"/${pkgname}-${pkgver}/builddir
 
-./configure --prefix=/usr \
---sysconfdir=/etc \
---localstatedir=/var \
---enable-systemd
+meson --prefix=/usr \
+..
 
-#https://bugzilla.gnome.org/show_bug.cgi?id=656229
-sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' -e 's/if test 
"$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then/  
func_append compile_command " -Wl,-O1,--as-needed"\n  func_append 
finalize_command " -Wl,-O1,--as-needed"\n\0/' libtool
-make
+samu
 }
 
 package() {
-cd "${srcdir}"/${pkgname}-${pkgver}
+cd "${srcdir}"/${pkgname}-${pkgver}/builddir
 
+DESTDIR="${pkgdir}" samu install
+
 # https://github.com/linuxmint/Cinnamon/pull/7382#issuecomment-374894901
 # /usr/bin/cinnamon-control-center is not meant for users, it is a 
development troubleshooting tool.
 # Just install the shell libs/headers.
-make -C shell  DESTDIR="${pkgdir}" 
install-{libcinnamon_control_center_includeHEADERS,libLTLIBRARIES,pkgconfigDATA}
-make -C panels DESTDIR="${pkgdir}" install
-
-install -d -o root -g 102 -m 750 "${pkgdir}"/usr/share/polkit-1/rules.d
+rm "${pkgdir}"/usr/bin/cinnamon-control-center
+rm "${pkgdir}"/usr/share/cinnamon-control-center/ui/shell.ui
 }


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

2020-11-26 Thread Eli Schwartz via arch-commits
Date: Friday, November 27, 2020 @ 04:21:09
  Author: eschwartz
Revision: 763965

archrelease: copy trunk to community-x86_64

Added:
  cinnamon-menus/repos/community-x86_64/PKGBUILD
(from rev 763964, cinnamon-menus/trunk/PKGBUILD)
Deleted:
  cinnamon-menus/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-27 04:20:39 UTC (rev 763964)
+++ PKGBUILD2020-11-27 04:21:09 UTC (rev 763965)
@@ -1,31 +0,0 @@
-# Maintainer: Eli Schwartz 
-# Contributor: Alexandre Filgueira 
-
-pkgname=cinnamon-menus
-pkgver=4.6.1
-pkgrel=1
-pkgdesc="Cinnamon menu specifications"
-arch=('x86_64')
-url="https://github.com/linuxmint/${pkgname};
-license=('GPL' 'LGPL')
-depends=('glib2')
-makedepends=('gobject-introspection' 'meson' 'samurai')
-source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha256sums=('534cf3e15fed812e1affb544811e10823edbc56360b52a80ffbabc006c467dc6')
-b2sums=('bdfacd5f4c5344833c9804b79846c5ac9908e74381c2e84b29b8cb765b10578ac69155d93e1c0bd8b6b8100d5e5f34ca1bc8bd77edb681eb705d759c5d9275bc')
-
-build() {
-mkdir -p "${srcdir}"/${pkgname}-${pkgver}/build
-cd "${srcdir}"/${pkgname}-${pkgver}/build
-
-meson --prefix=/usr \
-  --buildtype=plain \
-  ..
-samu
-}
-
-package(){
-cd "${srcdir}"/${pkgname}-${pkgver}/build
-
-DESTDIR="${pkgdir}" samu install
-}

Copied: cinnamon-menus/repos/community-x86_64/PKGBUILD (from rev 763964, 
cinnamon-menus/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-27 04:21:09 UTC (rev 763965)
@@ -0,0 +1,31 @@
+# Maintainer: Eli Schwartz 
+# Contributor: Alexandre Filgueira 
+
+pkgname=cinnamon-menus
+pkgver=4.8.1
+pkgrel=1
+pkgdesc="Cinnamon menu specifications"
+arch=('x86_64')
+url="https://github.com/linuxmint/${pkgname};
+license=('GPL' 'LGPL')
+depends=('glib2')
+makedepends=('gobject-introspection' 'meson' 'samurai')
+source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
+sha256sums=('a6070591b1e9eaed8b9a332e7e2ecb9fcd90de5565f7e4dc97cd7aeb89a6cc19')
+b2sums=('2bc9ebc2af763af4f3ec64da30718d04a0d9e33dfc0c78ab8d5777a4676436298bcb1af856e04b367d796bd277c85dd8fd72148d110a233e3a0f06f7b24c433f')
+
+build() {
+mkdir -p "${srcdir}"/${pkgname}-${pkgver}/build
+cd "${srcdir}"/${pkgname}-${pkgver}/build
+
+meson --prefix=/usr \
+  --buildtype=plain \
+  ..
+samu
+}
+
+package(){
+cd "${srcdir}"/${pkgname}-${pkgver}/build
+
+DESTDIR="${pkgdir}" samu install
+}


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

2020-11-26 Thread Eli Schwartz via arch-commits
Date: Friday, November 27, 2020 @ 04:20:39
  Author: eschwartz
Revision: 763964

upgpkg: cinnamon-menus 4.8.1-1: upstream release

Modified:
  cinnamon-menus/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-27 04:18:05 UTC (rev 763963)
+++ PKGBUILD2020-11-27 04:20:39 UTC (rev 763964)
@@ -2,7 +2,7 @@
 # Contributor: Alexandre Filgueira 
 
 pkgname=cinnamon-menus
-pkgver=4.6.1
+pkgver=4.8.1
 pkgrel=1
 pkgdesc="Cinnamon menu specifications"
 arch=('x86_64')
@@ -11,8 +11,8 @@
 depends=('glib2')
 makedepends=('gobject-introspection' 'meson' 'samurai')
 source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha256sums=('534cf3e15fed812e1affb544811e10823edbc56360b52a80ffbabc006c467dc6')
-b2sums=('bdfacd5f4c5344833c9804b79846c5ac9908e74381c2e84b29b8cb765b10578ac69155d93e1c0bd8b6b8100d5e5f34ca1bc8bd77edb681eb705d759c5d9275bc')
+sha256sums=('a6070591b1e9eaed8b9a332e7e2ecb9fcd90de5565f7e4dc97cd7aeb89a6cc19')
+b2sums=('2bc9ebc2af763af4f3ec64da30718d04a0d9e33dfc0c78ab8d5777a4676436298bcb1af856e04b367d796bd277c85dd8fd72148d110a233e3a0f06f7b24c433f')
 
 build() {
 mkdir -p "${srcdir}"/${pkgname}-${pkgver}/build


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

2020-11-26 Thread Daniel M. Capella via arch-commits
Date: Friday, November 27, 2020 @ 04:18:05
  Author: polyzen
Revision: 763963

archrelease: copy trunk to community-testing-x86_64

Added:
  razercfg/repos/community-testing-x86_64/PKGBUILD
(from rev 763962, razercfg/trunk/PKGBUILD)
  razercfg/repos/community-testing-x86_64/tmpfile.conf
(from rev 763962, razercfg/trunk/tmpfile.conf)
Deleted:
  razercfg/repos/community-testing-x86_64/PKGBUILD
  razercfg/repos/community-testing-x86_64/tmpfile.conf

--+
 PKGBUILD |   72 -
 tmpfile.conf |2 -
 2 files changed, 37 insertions(+), 37 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-27 04:17:41 UTC (rev 763962)
+++ PKGBUILD2020-11-27 04:18:05 UTC (rev 763963)
@@ -1,36 +0,0 @@
-# Maintainer: Daniel M. Capella 
-# Contributor: Maxwell "Synthead" Pray 
-# Contributor: Fergus Symon 
-
-pkgname=razercfg
-pkgver=0.42
-pkgrel=2
-pkgdesc='Razer mouse configuration tool'
-arch=('x86_64')
-url=https://bues.ch/cms/hacking/razercfg
-license=('GPL')
-depends=('hicolor-icon-theme' 'libusb' 'python')
-makedepends=('cmake')
-optdepends=('python-pyqt5: for the graphical qrazercfg tool')
-provides=('razerd')
-backup=('etc/razer.conf')
-source=("https://bues.ch/razercfg/razercfg-$pkgver.tar.xz"{,.asc})
-sha512sums=('3856f4133b620fb639a46a5bb02fe8e6c47ae3928a04fe9d1bbef2792a44fdd4f5dff2efa43a1e43d75312025d3c65c626e331e723092e4e0b8d6622657fb197'
-'SKIP')
-validpgpkeys=('757FAB7CED1814AE15B4836E5FB027474203454C') # Michael Busch
-
-build() {
-  cd razercfg-$pkgver
-  cmake -DCMAKE_INSTALL_PREFIX=/usr .
-  make
-}
-
-package() {
-  cd razercfg-$pkgver
-  make DESTDIR="$pkgdir" install
-
-  install -Dm644 -t "$pkgdir"/etc razer.conf
-  install -Dm644 tmpfile.conf "$pkgdir"/usr/lib/tmpfiles.d/razerd.conf
-}
-
-# vim:set ts=2 sw=2 et:

Copied: razercfg/repos/community-testing-x86_64/PKGBUILD (from rev 763962, 
razercfg/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-27 04:18:05 UTC (rev 763963)
@@ -0,0 +1,36 @@
+# Maintainer: Daniel M. Capella 
+# Contributor: Maxwell "Synthead" Pray 
+# Contributor: Fergus Symon 
+
+pkgname=razercfg
+pkgver=0.42
+pkgrel=3
+pkgdesc='Razer mouse configuration tool'
+arch=('x86_64')
+url=https://bues.ch/cms/hacking/razercfg
+license=('GPL')
+depends=('hicolor-icon-theme' 'libusb' 'python')
+makedepends=('cmake')
+optdepends=('python-pyqt5: for the graphical qrazercfg tool')
+provides=('razerd')
+backup=('etc/razer.conf')
+source=("https://bues.ch/razercfg/razercfg-$pkgver.tar.xz"{,.asc})
+sha512sums=('3856f4133b620fb639a46a5bb02fe8e6c47ae3928a04fe9d1bbef2792a44fdd4f5dff2efa43a1e43d75312025d3c65c626e331e723092e4e0b8d6622657fb197'
+'SKIP')
+validpgpkeys=('757FAB7CED1814AE15B4836E5FB027474203454C') # Michael Busch
+
+build() {
+  cd razercfg-$pkgver
+  cmake -DCMAKE_INSTALL_PREFIX=/usr .
+  make
+}
+
+package() {
+  cd razercfg-$pkgver
+  make DESTDIR="$pkgdir" install
+
+  install -Dm644 -t "$pkgdir"/etc razer.conf
+  install -Dm644 tmpfile.conf "$pkgdir"/usr/lib/tmpfiles.d/razerd.conf
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: tmpfile.conf
===
--- tmpfile.conf2020-11-27 04:17:41 UTC (rev 763962)
+++ tmpfile.conf2020-11-27 04:18:05 UTC (rev 763963)
@@ -1 +0,0 @@
-d /run/razerd 0755 root root -

Copied: razercfg/repos/community-testing-x86_64/tmpfile.conf (from rev 763962, 
razercfg/trunk/tmpfile.conf)
===
--- tmpfile.conf(rev 0)
+++ tmpfile.conf2020-11-27 04:18:05 UTC (rev 763963)
@@ -0,0 +1 @@
+d /run/razerd 0755 root root -


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

2020-11-26 Thread Daniel M. Capella via arch-commits
Date: Friday, November 27, 2020 @ 04:17:41
  Author: polyzen
Revision: 763962

upgpkg: razercfg 0.42-3: Rebuild due to missing systemd and udev files

Modified:
  razercfg/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-27 04:16:50 UTC (rev 763961)
+++ PKGBUILD2020-11-27 04:17:41 UTC (rev 763962)
@@ -4,7 +4,7 @@
 
 pkgname=razercfg
 pkgver=0.42
-pkgrel=2
+pkgrel=3
 pkgdesc='Razer mouse configuration tool'
 arch=('x86_64')
 url=https://bues.ch/cms/hacking/razercfg


[arch-commits] Commit in cinnamon-settings-daemon/repos/community-x86_64 (2 files)

2020-11-26 Thread Eli Schwartz via arch-commits
Date: Friday, November 27, 2020 @ 04:16:50
  Author: eschwartz
Revision: 763961

archrelease: copy trunk to community-x86_64

Added:
  cinnamon-settings-daemon/repos/community-x86_64/PKGBUILD
(from rev 763960, cinnamon-settings-daemon/trunk/PKGBUILD)
Deleted:
  cinnamon-settings-daemon/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-27 04:16:17 UTC (rev 763960)
+++ PKGBUILD2020-11-27 04:16:50 UTC (rev 763961)
@@ -1,49 +0,0 @@
-# Maintainer: Eli Schwartz 
-# Contributor: Alexandre Filgueira (faidoc) 
-# Contributor: Jan Alexander Steffens (heftig) 
-
-pkgname=cinnamon-settings-daemon
-pkgver=4.6.4
-pkgrel=1
-pkgdesc="The Cinnamon Settings daemon"
-arch=('x86_64')
-url="https://github.com/linuxmint/${pkgname};
-license=('GPL')
-depends=('cinnamon-desktop' 'colord' 'dbus-glib' 'libcanberra-pulse' 'libcups'
- 'libgnomekbd' 'libgudev' 'libnotify' 'librsvg' 'libwacom' 'nss' 
'polkit'
- 'pulseaudio-alsa' 'upower')
-optdepends=('cinnamon-translations: i18n')
-makedepends=('autoconf-archive' 'intltool' 'python' 'xf86-input-wacom')
-options=('!emptydirs')
-source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha512sums=('77ddb637fd93fdfd59fb27c5a10082259fd99b4753ff36b3473db12f2fe0d19ee89d44c9e72f1ce9eab3f228c5fef418ce774dd78746d77b959ad9d8f93c1208')
-b2sums=('80e14d29a74004c1778e90d39c6ca892d3eee778134e43b8ea77cfec8cbad4f5ac21609cfbb9cdaab0b4d35b42e897223a5b9cdfd43de49d8112b8bc6fc45914')
-
-prepare() {
-cd "${srcdir}"/${pkgname}-${pkgver}
-
-autoreconf -fi
-}
-
-build() {
-cd "${srcdir}"/${pkgname}-${pkgver}
-
-./configure --prefix=/usr \
---sysconfdir=/etc \
---localstatedir=/var \
---libexecdir="/usr/lib/${pkgname}" \
---with-dbus-sys="/usr/share/dbus-1/system.d" \
---enable-systemd \
---enable-polkit
-
-#https://bugzilla.gnome.org/show_bug.cgi?id=656231
-sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-make
-}
-
-package() {
-cd "${srcdir}"/${pkgname}-${pkgver}
-
-make DESTDIR="$pkgdir" install
-}

Copied: cinnamon-settings-daemon/repos/community-x86_64/PKGBUILD (from rev 
763960, cinnamon-settings-daemon/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-27 04:16:50 UTC (rev 763961)
@@ -0,0 +1,38 @@
+# Maintainer: Eli Schwartz 
+# Contributor: Alexandre Filgueira (faidoc) 
+# Contributor: Jan Alexander Steffens (heftig) 
+
+pkgname=cinnamon-settings-daemon
+pkgver=4.8.1
+pkgrel=1
+pkgdesc="The Cinnamon Settings daemon"
+arch=('x86_64')
+url="https://github.com/linuxmint/${pkgname};
+license=('GPL')
+depends=('cinnamon-desktop' 'colord' 'dbus-glib' 'libcanberra-pulse' 'libcups'
+ 'libgnomekbd' 'libgudev' 'libnotify' 'librsvg' 'libwacom' 'nss' 
'polkit'
+ 'pulseaudio-alsa' 'upower')
+optdepends=('cinnamon-translations: i18n')
+makedepends=('meson' 'samurai' 'xf86-input-wacom')
+options=('!emptydirs')
+source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
+sha512sums=('0b3f8764385f8c51fdc2144be92e7394bd8061979942dc370ae5a01abb8a0b309bbbf9b9399586acd4fb5840b4f6c8dd7b6ddb6947ecdaf9bdfaeb7ff4f86292')
+b2sums=('53ac03644bdf766eb8cd8721490330e0672d95a7bfb58d02196a28a7706f4667c469d2a5d2ceee95444cf693a0706fada05efc0823b992779fd37bd374f8c110')
+
+build() {
+mkdir -p "${srcdir}"/${pkgname}-${pkgver}/builddir
+cd "${srcdir}"/${pkgname}-${pkgver}/builddir
+
+meson --prefix=/usr \
+  --libexecdir="/usr/lib/${pkgname}" \
+  -Dinstall_binfiles=false \
+  ..
+
+samu
+}
+
+package() {
+cd "${srcdir}"/${pkgname}-${pkgver}/builddir
+
+ DESTDIR="${pkgdir}" samu install
+}


[arch-commits] Commit in cinnamon-settings-daemon/trunk (PKGBUILD)

2020-11-26 Thread Eli Schwartz via arch-commits
Date: Friday, November 27, 2020 @ 04:16:17
  Author: eschwartz
Revision: 763960

upgpkg: cinnamon-settings-daemon 4.8.1-1: upstream release

Modified:
  cinnamon-settings-daemon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-27 04:10:43 UTC (rev 763959)
+++ PKGBUILD2020-11-27 04:16:17 UTC (rev 763960)
@@ -3,7 +3,7 @@
 # Contributor: Jan Alexander Steffens (heftig) 
 
 pkgname=cinnamon-settings-daemon
-pkgver=4.6.4
+pkgver=4.8.1
 pkgrel=1
 pkgdesc="The Cinnamon Settings daemon"
 arch=('x86_64')
@@ -13,37 +13,26 @@
  'libgnomekbd' 'libgudev' 'libnotify' 'librsvg' 'libwacom' 'nss' 
'polkit'
  'pulseaudio-alsa' 'upower')
 optdepends=('cinnamon-translations: i18n')
-makedepends=('autoconf-archive' 'intltool' 'python' 'xf86-input-wacom')
+makedepends=('meson' 'samurai' 'xf86-input-wacom')
 options=('!emptydirs')
 source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha512sums=('77ddb637fd93fdfd59fb27c5a10082259fd99b4753ff36b3473db12f2fe0d19ee89d44c9e72f1ce9eab3f228c5fef418ce774dd78746d77b959ad9d8f93c1208')
-b2sums=('80e14d29a74004c1778e90d39c6ca892d3eee778134e43b8ea77cfec8cbad4f5ac21609cfbb9cdaab0b4d35b42e897223a5b9cdfd43de49d8112b8bc6fc45914')
+sha512sums=('0b3f8764385f8c51fdc2144be92e7394bd8061979942dc370ae5a01abb8a0b309bbbf9b9399586acd4fb5840b4f6c8dd7b6ddb6947ecdaf9bdfaeb7ff4f86292')
+b2sums=('53ac03644bdf766eb8cd8721490330e0672d95a7bfb58d02196a28a7706f4667c469d2a5d2ceee95444cf693a0706fada05efc0823b992779fd37bd374f8c110')
 
-prepare() {
-cd "${srcdir}"/${pkgname}-${pkgver}
-
-autoreconf -fi
-}
-
 build() {
-cd "${srcdir}"/${pkgname}-${pkgver}
+mkdir -p "${srcdir}"/${pkgname}-${pkgver}/builddir
+cd "${srcdir}"/${pkgname}-${pkgver}/builddir
 
-./configure --prefix=/usr \
---sysconfdir=/etc \
---localstatedir=/var \
---libexecdir="/usr/lib/${pkgname}" \
---with-dbus-sys="/usr/share/dbus-1/system.d" \
---enable-systemd \
---enable-polkit
+meson --prefix=/usr \
+  --libexecdir="/usr/lib/${pkgname}" \
+  -Dinstall_binfiles=false \
+  ..
 
-#https://bugzilla.gnome.org/show_bug.cgi?id=656231
-sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-make
+samu
 }
 
 package() {
-cd "${srcdir}"/${pkgname}-${pkgver}
+cd "${srcdir}"/${pkgname}-${pkgver}/builddir
 
-make DESTDIR="$pkgdir" install
+ DESTDIR="${pkgdir}" samu install
 }


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

2020-11-26 Thread Eli Schwartz via arch-commits
Date: Friday, November 27, 2020 @ 04:10:43
  Author: eschwartz
Revision: 763959

archrelease: copy trunk to community-x86_64

Added:
  cinnamon-session/repos/community-x86_64/PKGBUILD
(from rev 763958, cinnamon-session/trunk/PKGBUILD)
Deleted:
  cinnamon-session/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-27 04:10:13 UTC (rev 763958)
+++ PKGBUILD2020-11-27 04:10:43 UTC (rev 763959)
@@ -1,36 +0,0 @@
-# Maintainer: Eli Schwartz 
-# Contributor: Alexandre Filgueira 
-# Contributor: Jan Alexander Steffens (heftig) 
-
-pkgname=cinnamon-session
-pkgver=4.6.2
-pkgrel=1
-pkgdesc="The Cinnamon Session Handler"
-arch=('x86_64')
-url="https://github.com/linuxmint/${pkgname};
-license=('GPL' 'LGPL')
-depends=('cinnamon-desktop' 'libsm' 'libcanberra' 'xapps')
-optdepends=('cinnamon-translations: i18n')
-makedepends=('meson' 'samurai' 'xtrans')
-source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha256sums=('0d4793d8fb828ce8ec6dbedc67a5d244e56d4182b83030d10029eadc0c6723e6')
-b2sums=('f4a2a7dc438846c6013b539a027cbc13359a3cb47ed01c6acb97daf4a28fc26da3754d4264aaa90e8f10504bb7415a82dcc509430825cfd3e50e3beac7c78616')
-
-build() {
-mkdir -p "${srcdir}"/${pkgname}-${pkgver}/build
-cd "${srcdir}"/${pkgname}-${pkgver}/build
-
-meson --prefix=/usr \
-  --libexecdir=lib/${pkgname} \
-  --buildtype=plain \
-  -Dgconf=false \
-  -Ddocbook=false \
-  ..
-samu
-}
-
-package() {
-cd "${srcdir}"/${pkgname}-${pkgver}/build
-
-DESTDIR="${pkgdir}" samu install
-}

Copied: cinnamon-session/repos/community-x86_64/PKGBUILD (from rev 763958, 
cinnamon-session/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-27 04:10:43 UTC (rev 763959)
@@ -0,0 +1,36 @@
+# Maintainer: Eli Schwartz 
+# Contributor: Alexandre Filgueira 
+# Contributor: Jan Alexander Steffens (heftig) 
+
+pkgname=cinnamon-session
+pkgver=4.8.0
+pkgrel=1
+pkgdesc="The Cinnamon Session Handler"
+arch=('x86_64')
+url="https://github.com/linuxmint/${pkgname};
+license=('GPL' 'LGPL')
+depends=('cinnamon-desktop' 'libsm' 'libcanberra' 'xapps')
+optdepends=('cinnamon-translations: i18n')
+makedepends=('meson' 'samurai' 'xtrans')
+source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
+sha256sums=('66301a1eb748f646c419ced76f3388d8d6af0436716c737842cd85f359bd38d4')
+b2sums=('07baa1d359376fb1c5150224d3420c2ea2c06c2c015739835ffa2c8f0be751362b8ea2299e155369c0cb2d3e8493d5c45ed3f521bb36b6ddb092aff493f01b1f')
+
+build() {
+mkdir -p "${srcdir}"/${pkgname}-${pkgver}/build
+cd "${srcdir}"/${pkgname}-${pkgver}/build
+
+meson --prefix=/usr \
+  --libexecdir=lib/${pkgname} \
+  --buildtype=plain \
+  -Dgconf=false \
+  -Ddocbook=false \
+  ..
+samu
+}
+
+package() {
+cd "${srcdir}"/${pkgname}-${pkgver}/build
+
+DESTDIR="${pkgdir}" samu install
+}


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

2020-11-26 Thread Eli Schwartz via arch-commits
Date: Friday, November 27, 2020 @ 04:10:13
  Author: eschwartz
Revision: 763958

upgpkg: cinnamon-session 4.8.0-1: upstream release

Modified:
  cinnamon-session/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-27 04:07:33 UTC (rev 763957)
+++ PKGBUILD2020-11-27 04:10:13 UTC (rev 763958)
@@ -3,7 +3,7 @@
 # Contributor: Jan Alexander Steffens (heftig) 
 
 pkgname=cinnamon-session
-pkgver=4.6.2
+pkgver=4.8.0
 pkgrel=1
 pkgdesc="The Cinnamon Session Handler"
 arch=('x86_64')
@@ -13,8 +13,8 @@
 optdepends=('cinnamon-translations: i18n')
 makedepends=('meson' 'samurai' 'xtrans')
 source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha256sums=('0d4793d8fb828ce8ec6dbedc67a5d244e56d4182b83030d10029eadc0c6723e6')
-b2sums=('f4a2a7dc438846c6013b539a027cbc13359a3cb47ed01c6acb97daf4a28fc26da3754d4264aaa90e8f10504bb7415a82dcc509430825cfd3e50e3beac7c78616')
+sha256sums=('66301a1eb748f646c419ced76f3388d8d6af0436716c737842cd85f359bd38d4')
+b2sums=('07baa1d359376fb1c5150224d3420c2ea2c06c2c015739835ffa2c8f0be751362b8ea2299e155369c0cb2d3e8493d5c45ed3f521bb36b6ddb092aff493f01b1f')
 
 build() {
 mkdir -p "${srcdir}"/${pkgname}-${pkgver}/build


[arch-commits] Commit in freepats-general-midi/repos/community-any (PKGBUILD PKGBUILD)

2020-11-26 Thread Brett Cornwall via arch-commits
Date: Friday, November 27, 2020 @ 04:07:33
  Author: ainola
Revision: 763957

archrelease: copy trunk to community-any

Added:
  freepats-general-midi/repos/community-any/PKGBUILD
(from rev 763956, freepats-general-midi/trunk/PKGBUILD)
Deleted:
  freepats-general-midi/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-27 04:07:23 UTC (rev 763956)
+++ PKGBUILD2020-11-27 04:07:33 UTC (rev 763957)
@@ -1,22 +0,0 @@
-# Maintainer: David Runge 
-
-_name="FreePatsGM-SF2"
-pkgname=freepats-general-midi
-pkgver=20200814
-pkgrel=1
-pkgdesc="General MIDI sound sets"
-arch=('any')
-url="https://freepats.zenvoid.org/SoundSets/general-midi.html;
-license=('GPL3' 'CCPL')
-groups=('soundfonts')
-replaces=('timidity-freepats')
-depends=('soundfont-synthesizer')
-source=("https://freepats.zenvoid.org/SoundSets/FreePats-GeneralMIDI/${_name}-${pkgver}.tar.xz;)
-sha512sums=('0502ca0b23d9b1131b4749512a1e5c2a2c6a1d9db51349c41862714ec1d3496063517ac4c03de2a5da89ea5af355faaaf47af9aec0d7da3f3b7ff690f7d00b0b')
-b2sums=('37fcbf8ac765ab3241e49cd15cd0826db48458749b52989b66bcdfeb08cef6d5c15e4c114b4af364d894de6935c0285ba9903ea1cddb40b03d4147b346be82c5')
-
-package() {
-  cd "${_name}-${pkgver}"
-  install -vDm 644 *".sf2" "${pkgdir}/usr/share/soundfonts/${pkgname}.sf2"
-  install -vDm 644 readme.txt -t "${pkgdir}/usr/share/doc/${pkgname}"
-}

Copied: freepats-general-midi/repos/community-any/PKGBUILD (from rev 763956, 
freepats-general-midi/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-27 04:07:33 UTC (rev 763957)
@@ -0,0 +1,22 @@
+# Maintainer: David Runge 
+
+_name="FreePatsGM-SF2"
+pkgname=freepats-general-midi
+pkgver=20201122
+pkgrel=1
+pkgdesc="General MIDI sound sets"
+arch=('any')
+url="https://freepats.zenvoid.org/SoundSets/general-midi.html;
+license=('GPL3' 'CCPL')
+groups=('soundfonts')
+replaces=('timidity-freepats')
+depends=('soundfont-synthesizer')
+source=("https://freepats.zenvoid.org/SoundSets/FreePats-GeneralMIDI/${_name}-${pkgver}.tar.bz2;)
+sha512sums=('f8805084bf80700abe7cf1fdbdbaf1054c0ecf70188e3e2248922139aac87f7cce40828a7b03fceb0e592ea4c9a7e99f2eed6452d7d4d54e9c63376ff0e579a8')
+b2sums=('30ce1192b3f1dd9cc5251fb8f5560fd17f24d4f58d3f3e59704af0a65b106103e8e8409ce8ccaba14e69db834b1a457d6103a13fa002e4d1d8ccfa8197c7bc08')
+
+package() {
+  cd "${_name}-${pkgver}"
+  install -vDm 644 *".sf2" "${pkgdir}/usr/share/soundfonts/${pkgname}.sf2"
+  install -vDm 644 readme.txt -t "${pkgdir}/usr/share/doc/${pkgname}"
+}


[arch-commits] Commit in freepats-general-midi/trunk (PKGBUILD)

2020-11-26 Thread Brett Cornwall via arch-commits
Date: Friday, November 27, 2020 @ 04:07:23
  Author: ainola
Revision: 763956

upgpkg: freepats-general-midi 20201122-1

Modified:
  freepats-general-midi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-27 04:05:12 UTC (rev 763955)
+++ PKGBUILD2020-11-27 04:07:23 UTC (rev 763956)
@@ -2,7 +2,7 @@
 
 _name="FreePatsGM-SF2"
 pkgname=freepats-general-midi
-pkgver=20200814
+pkgver=20201122
 pkgrel=1
 pkgdesc="General MIDI sound sets"
 arch=('any')
@@ -11,9 +11,9 @@
 groups=('soundfonts')
 replaces=('timidity-freepats')
 depends=('soundfont-synthesizer')
-source=("https://freepats.zenvoid.org/SoundSets/FreePats-GeneralMIDI/${_name}-${pkgver}.tar.xz;)
-sha512sums=('0502ca0b23d9b1131b4749512a1e5c2a2c6a1d9db51349c41862714ec1d3496063517ac4c03de2a5da89ea5af355faaaf47af9aec0d7da3f3b7ff690f7d00b0b')
-b2sums=('37fcbf8ac765ab3241e49cd15cd0826db48458749b52989b66bcdfeb08cef6d5c15e4c114b4af364d894de6935c0285ba9903ea1cddb40b03d4147b346be82c5')
+source=("https://freepats.zenvoid.org/SoundSets/FreePats-GeneralMIDI/${_name}-${pkgver}.tar.bz2;)
+sha512sums=('f8805084bf80700abe7cf1fdbdbaf1054c0ecf70188e3e2248922139aac87f7cce40828a7b03fceb0e592ea4c9a7e99f2eed6452d7d4d54e9c63376ff0e579a8')
+b2sums=('30ce1192b3f1dd9cc5251fb8f5560fd17f24d4f58d3f3e59704af0a65b106103e8e8409ce8ccaba14e69db834b1a457d6103a13fa002e4d1d8ccfa8197c7bc08')
 
 package() {
   cd "${_name}-${pkgver}"


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

2020-11-26 Thread Jan Steffens via arch-commits
Date: Friday, November 27, 2020 @ 04:05:12
  Author: heftig
Revision: 763955

archrelease: copy trunk to multilib-testing-x86_64

Added:
  lib32-glib2/repos/multilib-testing-x86_64/
  lib32-glib2/repos/multilib-testing-x86_64/PKGBUILD
(from rev 763954, lib32-glib2/trunk/PKGBUILD)
  lib32-glib2/repos/multilib-testing-x86_64/gio-querymodules-32.hook
(from rev 763954, lib32-glib2/trunk/gio-querymodules-32.hook)
  lib32-glib2/repos/multilib-testing-x86_64/multilib.diff
(from rev 763954, lib32-glib2/trunk/multilib.diff)

--+
 PKGBUILD |   68 +
 gio-querymodules-32.hook |   11 +++
 multilib.diff|   12 +++
 3 files changed, 91 insertions(+)

Copied: lib32-glib2/repos/multilib-testing-x86_64/PKGBUILD (from rev 763954, 
lib32-glib2/trunk/PKGBUILD)
===
--- multilib-testing-x86_64/PKGBUILD(rev 0)
+++ multilib-testing-x86_64/PKGBUILD2020-11-27 04:05:12 UTC (rev 763955)
@@ -0,0 +1,68 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Ionut Biru 
+# Contributor: Pierre Schmitz 
+# Contributor: Mikko Seppälä 
+
+pkgname=lib32-glib2
+pkgver=2.66.3
+pkgrel=1
+pkgdesc="Low level core library (32-bit)"
+url="https://wiki.gnome.org/Projects/GLib;
+license=(LGPL2.1)
+arch=(x86_64)
+depends=(lib32-pcre lib32-libffi lib32-util-linux lib32-zlib glib2)
+makedepends=(gettext gtk-doc shared-mime-info python lib32-libelf git 
util-linux
+ meson lib32-dbus)
+checkdepends=(desktop-file-utils lib32-glib2)
+_commit=30c06eb5fc5c1d6b992c144ebf8ae540d99b2fd2  # tags/2.66.3^0
+source=("git+https://gitlab.gnome.org/GNOME/glib.git#commit=$_commit;
+multilib.diff
+gio-querymodules-32.hook)
+sha256sums=('SKIP'
+'2611ec4c97346c3c4eea61786ee20c801207135a9d52a771f5f340b41bf69fbc'
+'c37b2777d6c7b9d2eb6003d8bdb72175f889013bc4d582b3f7a12fc7419a2d6d')
+
+pkgver() {
+  cd glib
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd glib
+
+  # Test suite workaround
+  git apply -3 ../multilib.diff
+}
+
+build() {
+  export CC="gcc -m32 -mstackrealign"
+  export CXX="g++ -m32 -mstackrealign"
+  export PKG_CONFIG="i686-pc-linux-gnu-pkg-config"
+
+  CFLAGS+=" -DG_DISABLE_CAST_CHECKS"
+  arch-meson glib build \
+-D selinux=disabled \
+--libdir=/usr/lib32
+  meson compile -C build
+}
+
+check() {
+  # Spurious wakeups in g_cond_wait_until, only on lib32
+  meson test -C build --no-suite flaky --no-suite slow --print-errorlogs || :
+}
+
+package() {
+  depends+=(libmount.so)
+  provides+=(libgio-2.0.so libglib-2.0.so libgmodule-2.0.so libgobject-2.0.so
+ libgthread-2.0.so)
+
+  DESTDIR="$pkgdir" meson install -C build
+
+  rm -r "$pkgdir"/usr/{share,include}
+  find "$pkgdir/usr/bin" -type f -not -name gio-querymodules -printf 'Removing 
%P\n' -delete
+  mv "$pkgdir"/usr/bin/gio-querymodules{,-32}
+
+  install -Dt "$pkgdir/usr/share/libalpm/hooks" -m644 *.hook
+}
+
+# vim:set sw=2 et:

Copied: lib32-glib2/repos/multilib-testing-x86_64/gio-querymodules-32.hook 
(from rev 763954, lib32-glib2/trunk/gio-querymodules-32.hook)
===
--- multilib-testing-x86_64/gio-querymodules-32.hook
(rev 0)
+++ multilib-testing-x86_64/gio-querymodules-32.hook2020-11-27 04:05:12 UTC 
(rev 763955)
@@ -0,0 +1,11 @@
+[Trigger]
+Type = Path
+Operation = Install
+Operation = Upgrade
+Operation = Remove
+Target = usr/lib32/gio/modules/*.so
+
+[Action]
+Description = Updating 32-bit GIO module cache...
+When = PostTransaction
+Exec = /usr/bin/gio-querymodules-32 /usr/lib32/gio/modules

Copied: lib32-glib2/repos/multilib-testing-x86_64/multilib.diff (from rev 
763954, lib32-glib2/trunk/multilib.diff)
===
--- multilib-testing-x86_64/multilib.diff   (rev 0)
+++ multilib-testing-x86_64/multilib.diff   2020-11-27 04:05:12 UTC (rev 
763955)
@@ -0,0 +1,12 @@
+diff --git i/gio/tests/meson.build w/gio/tests/meson.build
+index 65f43e267..3bd66bf60 100644
+--- i/gio/tests/meson.build
 w/gio/tests/meson.build
+@@ -598,6 +598,7 @@ if not meson.is_cross_build() or meson.has_exe_wrapper()
+  '-r',
+  '-b','binary',
+  '@INPUT@',
++ '--oformat', 'elf32-i386',
+  '-o','@OUTPUT@'])
+ 
+ # Rename symbol to match the one in the C file


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

2020-11-26 Thread Jan Steffens via arch-commits
Date: Friday, November 27, 2020 @ 04:04:58
  Author: heftig
Revision: 763954

2.66.3-1

Modified:
  lib32-glib2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-27 03:54:57 UTC (rev 763953)
+++ PKGBUILD2020-11-27 04:04:58 UTC (rev 763954)
@@ -4,7 +4,7 @@
 # Contributor: Mikko Seppälä 
 
 pkgname=lib32-glib2
-pkgver=2.66.2
+pkgver=2.66.3
 pkgrel=1
 pkgdesc="Low level core library (32-bit)"
 url="https://wiki.gnome.org/Projects/GLib;
@@ -14,7 +14,7 @@
 makedepends=(gettext gtk-doc shared-mime-info python lib32-libelf git 
util-linux
  meson lib32-dbus)
 checkdepends=(desktop-file-utils lib32-glib2)
-_commit=500db2e0b8643815cdd9cba4eb67d5daf1352338  # tags/2.66.2^0
+_commit=30c06eb5fc5c1d6b992c144ebf8ae540d99b2fd2  # tags/2.66.3^0
 source=("git+https://gitlab.gnome.org/GNOME/glib.git#commit=$_commit;
 multilib.diff
 gio-querymodules-32.hook)


[arch-commits] Commit in firefox/repos/extra-x86_64 (9 files)

2020-11-26 Thread Jan Steffens via arch-commits
Date: Friday, November 27, 2020 @ 04:00:18
  Author: heftig
Revision: 402098

archrelease: copy trunk to extra-x86_64

Added:
  
firefox/repos/extra-x86_64/0001-Use-remoting-name-for-GDK-application-names.patch
(from rev 402096, 
firefox/trunk/0001-Use-remoting-name-for-GDK-application-names.patch)
  
firefox/repos/extra-x86_64/0002-Bug-1667736-Update-packed_simd-to-compile-on-Rust-1..patch
(from rev 402096, 
firefox/trunk/0002-Bug-1667736-Update-packed_simd-to-compile-on-Rust-1..patch)
  firefox/repos/extra-x86_64/PKGBUILD
(from rev 402096, firefox/trunk/PKGBUILD)
  firefox/repos/extra-x86_64/firefox.desktop
(from rev 402096, firefox/trunk/firefox.desktop)
  firefox/repos/extra-x86_64/upload-symbol-archive
(from rev 402097, firefox/trunk/upload-symbol-archive)
Deleted:
  
firefox/repos/extra-x86_64/0001-Use-remoting-name-for-GDK-application-names.patch
  firefox/repos/extra-x86_64/PKGBUILD
  firefox/repos/extra-x86_64/firefox.desktop
  firefox/repos/extra-x86_64/upload-symbol-archive

-+
 0001-Use-remoting-name-for-GDK-application-names.patch  |  113 
 0002-Bug-1667736-Update-packed_simd-to-compile-on-Rust-1..patch | 3514 
++
 PKGBUILD|  439 -
 firefox.desktop |  680 -
 upload-symbol-archive   |   50 
 5 files changed, 4158 insertions(+), 638 deletions(-)

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


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

2020-11-26 Thread Jan Steffens via arch-commits
Date: Friday, November 27, 2020 @ 04:00:13
  Author: heftig
Revision: 402097

archrelease: copy trunk to extra-x86_64

Added:
  js78/repos/extra-x86_64/0001-Fixes-for-LTO-PGO-support.patch
(from rev 402096, js78/trunk/0001-Fixes-for-LTO-PGO-support.patch)
  
js78/repos/extra-x86_64/0002-Bug-1667736-Update-packed_simd-to-compile-on-Rust-1..patch
(from rev 402096, 
js78/trunk/0002-Bug-1667736-Update-packed_simd-to-compile-on-Rust-1..patch)
  js78/repos/extra-x86_64/PKGBUILD
(from rev 402096, js78/trunk/PKGBUILD)
Deleted:
  js78/repos/extra-x86_64/PKGBUILD
  js78/repos/extra-x86_64/lto-pgo.diff

-+
 0001-Fixes-for-LTO-PGO-support.patch|  103 
 0002-Bug-1667736-Update-packed_simd-to-compile-on-Rust-1..patch | 3514 
++
 PKGBUILD|  251 
 lto-pgo.diff|   92 
 4 files changed, 3745 insertions(+), 215 deletions(-)

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


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

2020-11-26 Thread Eli Schwartz via arch-commits
Date: Friday, November 27, 2020 @ 03:54:57
  Author: eschwartz
Revision: 763953

archrelease: copy trunk to community-x86_64

Added:
  cinnamon-desktop/repos/community-x86_64/PKGBUILD
(from rev 763952, cinnamon-desktop/trunk/PKGBUILD)
  cinnamon-desktop/repos/community-x86_64/config.patch
(from rev 763952, cinnamon-desktop/trunk/config.patch)
Deleted:
  cinnamon-desktop/repos/community-x86_64/PKGBUILD
  cinnamon-desktop/repos/community-x86_64/config.patch

--+
 PKGBUILD |   78 -
 config.patch |   48 +--
 2 files changed, 63 insertions(+), 63 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-27 03:54:15 UTC (rev 763952)
+++ PKGBUILD2020-11-27 03:54:57 UTC (rev 763953)
@@ -1,39 +0,0 @@
-# Maintainer: Eli Schwartz 
-# Contributor: Alexandre Filgueria 
-# Contributor:  Jan de Groot 
-
-pkgname=cinnamon-desktop
-pkgver=4.6.4
-pkgrel=1
-pkgdesc="Library with common API for various Cinnamon modules"
-arch=('x86_64')
-url="https://github.com/linuxmint/${pkgname};
-license=('GPL' 'LGPL')
-depends=('accountsservice' 'gtk3' 'libxkbfile' 'libpulse')
-makedepends=('meson' 'samurai' 'gobject-introspection' 'intltool')
-source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz"
-"config.patch")
-sha256sums=('8b0f69c4acbeabca723a95ec80905601eec8d563c96ad88a9de3ddac56925ef6'
-'45f403e6fe4ec701a0f3d16e990bb36598dd4a58fac5a374f85ccecdf74dd98a')
-b2sums=('eba62e0d99bf824ea034a3bfdf08fcb157e9e5b156260f31c4b41244649ce4fd54adfc192654cffb1336d72c678d32ee151b2a7bbe114dccbe078e66f85ad261'
-
'40efc9c24e1011239f68734c6c0a9459dab95d4330d8c712e674c7d1e99dd01b60833667b52d0ad8c58b31469eee349757ed4c44e4589b6fbfd7236c1499d28b')
-
-prepare() {
-cd "${srcdir}"/${pkgname}-${pkgver}
-# Adjust configuration
-patch -Np1 -i ../config.patch
-}
-
-build() {
-mkdir -p "${srcdir}"/${pkgname}-${pkgver}/build
-cd "${srcdir}"/${pkgname}-${pkgver}/build
-
-meson --prefix=/usr --buildtype=plain ..
-samu
-}
-
-package() {
-cd "${srcdir}"/${pkgname}-${pkgver}/build
-
-DESTDIR="${pkgdir}" samu install
-}

Copied: cinnamon-desktop/repos/community-x86_64/PKGBUILD (from rev 763952, 
cinnamon-desktop/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-27 03:54:57 UTC (rev 763953)
@@ -0,0 +1,39 @@
+# Maintainer: Eli Schwartz 
+# Contributor: Alexandre Filgueria 
+# Contributor:  Jan de Groot 
+
+pkgname=cinnamon-desktop
+pkgver=4.8.0
+pkgrel=1
+pkgdesc="Library with common API for various Cinnamon modules"
+arch=('x86_64')
+url="https://github.com/linuxmint/${pkgname};
+license=('GPL' 'LGPL')
+depends=('accountsservice' 'gtk3' 'libxkbfile' 'libpulse')
+makedepends=('meson' 'samurai' 'gobject-introspection' 'intltool')
+source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz"
+"config.patch")
+sha256sums=('99db3b15f3d267f1e88320030020506c34953e2b9d9ec621ed59c0eb12f64d9b'
+'45f403e6fe4ec701a0f3d16e990bb36598dd4a58fac5a374f85ccecdf74dd98a')
+b2sums=('1dee620bb16260b2f5f317bed39521ae698b2c4a59bde44503e55cd4ba7e2018ff014fa123304f71a4fe14af3c9c03340cffa97b6ab0ee8ae34972b27066cd18'
+
'40efc9c24e1011239f68734c6c0a9459dab95d4330d8c712e674c7d1e99dd01b60833667b52d0ad8c58b31469eee349757ed4c44e4589b6fbfd7236c1499d28b')
+
+prepare() {
+cd "${srcdir}"/${pkgname}-${pkgver}
+# Adjust configuration
+patch -Np1 -i ../config.patch
+}
+
+build() {
+mkdir -p "${srcdir}"/${pkgname}-${pkgver}/build
+cd "${srcdir}"/${pkgname}-${pkgver}/build
+
+meson --prefix=/usr --buildtype=plain ..
+samu
+}
+
+package() {
+cd "${srcdir}"/${pkgname}-${pkgver}/build
+
+DESTDIR="${pkgdir}" samu install
+}

Deleted: config.patch
===
--- config.patch2020-11-27 03:54:15 UTC (rev 763952)
+++ config.patch2020-11-27 03:54:57 UTC (rev 763953)
@@ -1,24 +0,0 @@
-diff -Naur 
cinnamon-desktop-2.8.0.orig/schemas/org.cinnamon.desktop.background.gschema.xml.in.in
 
cinnamon-desktop-2.8.0/schemas/org.cinnamon.desktop.background.gschema.xml.in.in
 
cinnamon-desktop-2.8.0.orig/schemas/org.cinnamon.desktop.background.gschema.xml.in.in
  2015-10-16 13:00:30.0 +
-+++ 
cinnamon-desktop-2.8.0/schemas/org.cinnamon.desktop.background.gschema.xml.in.in
   2015-11-20 19:04:16.543027956 +
-@@ -10,7 +10,7 @@
-   
- 
- 
--  
'file://@datadir@/themes/Adwaita/backgrounds/adwaita-timed.xml'
-+  
'file://@datadir@/backgrounds/gnome/adwaita-timed.xml'
-   <_summary>Picture URI
-   <_description>
- URI to use for the background image. Not that the backend only 
supports
-diff -Naur 

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

2020-11-26 Thread Eli Schwartz via arch-commits
Date: Friday, November 27, 2020 @ 03:54:15
  Author: eschwartz
Revision: 763952

upgpkg: cinnamon-desktop 4.8.0-1: upstream release

Modified:
  cinnamon-desktop/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-27 03:31:26 UTC (rev 763951)
+++ PKGBUILD2020-11-27 03:54:15 UTC (rev 763952)
@@ -3,7 +3,7 @@
 # Contributor:  Jan de Groot 
 
 pkgname=cinnamon-desktop
-pkgver=4.6.4
+pkgver=4.8.0
 pkgrel=1
 pkgdesc="Library with common API for various Cinnamon modules"
 arch=('x86_64')
@@ -13,9 +13,9 @@
 makedepends=('meson' 'samurai' 'gobject-introspection' 'intltool')
 source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz"
 "config.patch")
-sha256sums=('8b0f69c4acbeabca723a95ec80905601eec8d563c96ad88a9de3ddac56925ef6'
+sha256sums=('99db3b15f3d267f1e88320030020506c34953e2b9d9ec621ed59c0eb12f64d9b'
 '45f403e6fe4ec701a0f3d16e990bb36598dd4a58fac5a374f85ccecdf74dd98a')
-b2sums=('eba62e0d99bf824ea034a3bfdf08fcb157e9e5b156260f31c4b41244649ce4fd54adfc192654cffb1336d72c678d32ee151b2a7bbe114dccbe078e66f85ad261'
+b2sums=('1dee620bb16260b2f5f317bed39521ae698b2c4a59bde44503e55cd4ba7e2018ff014fa123304f71a4fe14af3c9c03340cffa97b6ab0ee8ae34972b27066cd18'
 
'40efc9c24e1011239f68734c6c0a9459dab95d4330d8c712e674c7d1e99dd01b60833667b52d0ad8c58b31469eee349757ed4c44e4589b6fbfd7236c1499d28b')
 
 prepare() {


[arch-commits] Commit in python-pypugjs/repos/community-testing-any (2 files)

2020-11-26 Thread Chih-Hsuan Yen via arch-commits
Date: Friday, November 27, 2020 @ 03:31:26
  Author: yan12125
Revision: 763951

archrelease: copy trunk to community-testing-any

Added:
  python-pypugjs/repos/community-testing-any/PKGBUILD
(from rev 763950, python-pypugjs/trunk/PKGBUILD)
Deleted:
  python-pypugjs/repos/community-testing-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-27 03:31:10 UTC (rev 763950)
+++ PKGBUILD2020-11-27 03:31:26 UTC (rev 763951)
@@ -1,33 +0,0 @@
-# Maintainer: Chih-Hsuan Yen 
-# Contributor: zwindl on AUR
-
-pkgname=python-pypugjs
-pkgver=5.9.5
-pkgrel=2
-pkgdesc='PugJS syntax adapter for Django, Jinja2 and Mako templates'
-url='https://github.com/kakulukia/pypugjs'
-depends=(python python-six python-chardet)
-makedepends=(python-setuptools)
-checkdepends=(python-nose python-django python-jinja python-tornado 
python-mako)
-optdepends=(python-django python-jinja python-tornado python-mako)
-license=(MIT)
-arch=(any)
-source=("https://github.com/kakulukia/pypugjs/archive/v$pkgver/pypugjs-$pkgver.tar.gz;)
-sha256sums=('2c19c2c434e4104ce4ae5ac650d4e81e8fd952030183c9d7ed8f251db54537e9')
-
-build() {
-  cd pypugjs-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd pypugjs-$pkgver
-  # -w is needed here as test_cases.py looks into cases/
-  PYTHONPATH="$PWD" nosetests -v -w pypugjs/testsuite
-}
-
-package() {
-  cd pypugjs-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-  install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname
-}

Copied: python-pypugjs/repos/community-testing-any/PKGBUILD (from rev 763950, 
python-pypugjs/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-27 03:31:26 UTC (rev 763951)
@@ -0,0 +1,34 @@
+# Maintainer: Chih-Hsuan Yen 
+# Contributor: zwindl on AUR
+
+pkgname=python-pypugjs
+pkgver=5.9.6
+pkgrel=2
+pkgdesc='PugJS syntax adapter for Django, Jinja2 and Mako templates'
+url='https://github.com/kakulukia/pypugjs'
+depends=(python python-six python-chardet)
+makedepends=(python-setuptools)
+checkdepends=(python-nose python-django python-jinja python-tornado 
python-mako)
+optdepends=(python-django python-jinja python-tornado python-mako)
+license=(MIT)
+arch=(any)
+# sdist is not uploaded to PyPI
+source=("https://github.com/kakulukia/pypugjs/archive/v$pkgver/pypugjs-$pkgver.tar.gz;)
+sha256sums=('741a1129105a17bc8c8066bbd74f2813a797ed7648095d25dd4d5f51aa57e4c2')
+
+build() {
+  cd pypugjs-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd pypugjs-$pkgver
+  # -w is needed here as test_cases.py looks into cases/
+  PYTHONPATH="$PWD" nosetests -w pypugjs/testsuite
+}
+
+package() {
+  cd pypugjs-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname
+}


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

2020-11-26 Thread Chih-Hsuan Yen via arch-commits
Date: Friday, November 27, 2020 @ 03:31:10
  Author: yan12125
Revision: 763950

upgpkg: python-pypugjs 5.9.6-2; rebuild for Python 3.9

Modified:
  python-pypugjs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-27 03:27:04 UTC (rev 763949)
+++ PKGBUILD2020-11-27 03:31:10 UTC (rev 763950)
@@ -3,7 +3,7 @@
 
 pkgname=python-pypugjs
 pkgver=5.9.6
-pkgrel=1
+pkgrel=2
 pkgdesc='PugJS syntax adapter for Django, Jinja2 and Mako templates'
 url='https://github.com/kakulukia/pypugjs'
 depends=(python python-six python-chardet)


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

2020-11-26 Thread Chih-Hsuan Yen via arch-commits
Date: Friday, November 27, 2020 @ 03:27:04
  Author: yan12125
Revision: 763949

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-27 03:26:44 UTC (rev 763948)
+++ PKGBUILD2020-11-27 03:27:04 UTC (rev 763949)
@@ -1,33 +0,0 @@
-# Maintainer: Chih-Hsuan Yen 
-# Contributor: zwindl on AUR
-
-pkgname=python-pypugjs
-pkgver=5.9.5
-pkgrel=1
-pkgdesc='PugJS syntax adapter for Django, Jinja2 and Mako templates'
-url='https://github.com/kakulukia/pypugjs'
-depends=(python python-six python-chardet)
-makedepends=(python-setuptools)
-checkdepends=(python-nose python-django python-jinja python-tornado 
python-mako)
-optdepends=(python-django python-jinja python-tornado python-mako)
-license=(MIT)
-arch=(any)
-source=("https://github.com/kakulukia/pypugjs/archive/v$pkgver/pypugjs-$pkgver.tar.gz;)
-sha256sums=('2c19c2c434e4104ce4ae5ac650d4e81e8fd952030183c9d7ed8f251db54537e9')
-
-build() {
-  cd pypugjs-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd pypugjs-$pkgver
-  # -w is needed here as test_cases.py looks into cases/
-  PYTHONPATH="$PWD" nosetests -v -w pypugjs/testsuite
-}
-
-package() {
-  cd pypugjs-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-  install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname
-}

Copied: python-pypugjs/repos/community-any/PKGBUILD (from rev 763948, 
python-pypugjs/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-27 03:27:04 UTC (rev 763949)
@@ -0,0 +1,34 @@
+# Maintainer: Chih-Hsuan Yen 
+# Contributor: zwindl on AUR
+
+pkgname=python-pypugjs
+pkgver=5.9.6
+pkgrel=1
+pkgdesc='PugJS syntax adapter for Django, Jinja2 and Mako templates'
+url='https://github.com/kakulukia/pypugjs'
+depends=(python python-six python-chardet)
+makedepends=(python-setuptools)
+checkdepends=(python-nose python-django python-jinja python-tornado 
python-mako)
+optdepends=(python-django python-jinja python-tornado python-mako)
+license=(MIT)
+arch=(any)
+# sdist is not uploaded to PyPI
+source=("https://github.com/kakulukia/pypugjs/archive/v$pkgver/pypugjs-$pkgver.tar.gz;)
+sha256sums=('741a1129105a17bc8c8066bbd74f2813a797ed7648095d25dd4d5f51aa57e4c2')
+
+build() {
+  cd pypugjs-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd pypugjs-$pkgver
+  # -w is needed here as test_cases.py looks into cases/
+  PYTHONPATH="$PWD" nosetests -w pypugjs/testsuite
+}
+
+package() {
+  cd pypugjs-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname
+}


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

2020-11-26 Thread Chih-Hsuan Yen via arch-commits
Date: Friday, November 27, 2020 @ 03:26:44
  Author: yan12125
Revision: 763948

upgpkg: python-pypugjs 5.9.6-1; make check() less verbose; clarify why GitHub 
tarball is used

Modified:
  python-pypugjs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-27 03:25:31 UTC (rev 763947)
+++ PKGBUILD2020-11-27 03:26:44 UTC (rev 763948)
@@ -2,8 +2,8 @@
 # Contributor: zwindl on AUR
 
 pkgname=python-pypugjs
-pkgver=5.9.5
-pkgrel=2
+pkgver=5.9.6
+pkgrel=1
 pkgdesc='PugJS syntax adapter for Django, Jinja2 and Mako templates'
 url='https://github.com/kakulukia/pypugjs'
 depends=(python python-six python-chardet)
@@ -12,8 +12,9 @@
 optdepends=(python-django python-jinja python-tornado python-mako)
 license=(MIT)
 arch=(any)
+# sdist is not uploaded to PyPI
 
source=("https://github.com/kakulukia/pypugjs/archive/v$pkgver/pypugjs-$pkgver.tar.gz;)
-sha256sums=('2c19c2c434e4104ce4ae5ac650d4e81e8fd952030183c9d7ed8f251db54537e9')
+sha256sums=('741a1129105a17bc8c8066bbd74f2813a797ed7648095d25dd4d5f51aa57e4c2')
 
 build() {
   cd pypugjs-$pkgver
@@ -23,7 +24,7 @@
 check() {
   cd pypugjs-$pkgver
   # -w is needed here as test_cases.py looks into cases/
-  PYTHONPATH="$PWD" nosetests -v -w pypugjs/testsuite
+  PYTHONPATH="$PWD" nosetests -w pypugjs/testsuite
 }
 
 package() {


[arch-commits] Commit in i3-wm/repos/community-x86_64 (5 files)

2020-11-26 Thread Daniel M. Capella via arch-commits
Date: Friday, November 27, 2020 @ 03:25:31
  Author: polyzen
Revision: 763947

archrelease: copy trunk to community-x86_64

Added:
  i3-wm/repos/community-x86_64/0001-Use-OVER-operator-for-drawing-text.patch
(from rev 763946, i3-wm/trunk/0001-Use-OVER-operator-for-drawing-text.patch)
  i3-wm/repos/community-x86_64/PKGBUILD
(from rev 763946, i3-wm/trunk/PKGBUILD)
Deleted:
  i3-wm/repos/community-x86_64/0001-Use-OVER-operator-for-drawing-text.patch
  
i3-wm/repos/community-x86_64/0002-kick-tray-clients-before-destroying-the-bar.patch
  i3-wm/repos/community-x86_64/PKGBUILD

+
 0001-Use-OVER-operator-for-drawing-text.patch  |   70 +-
 0002-kick-tray-clients-before-destroying-the-bar.patch |   34 
 PKGBUILD   |  105 +++
 3 files changed, 88 insertions(+), 121 deletions(-)

Deleted: 0001-Use-OVER-operator-for-drawing-text.patch
===
--- 0001-Use-OVER-operator-for-drawing-text.patch   2020-11-27 03:25:06 UTC 
(rev 763946)
+++ 0001-Use-OVER-operator-for-drawing-text.patch   2020-11-27 03:25:31 UTC 
(rev 763947)
@@ -1,35 +0,0 @@
-From eea280b1f1d9d66c903014fd6703f401eb119a87 Mon Sep 17 00:00:00 2001
-Message-Id: 

-From: "Jan Alexander Steffens (heftig)" 
-Date: Sat, 9 Sep 2017 00:22:13 +0200
-Subject: [PATCH] Use OVER operator for drawing text
-
-For opaque text, SOURCE is not any different from OVER. However, when
-drawing color glyphs (which consist of RGBA pixels instead of strokes)
-SOURCE's handling of alpha is not what we want.
-
-I stumbled across this because cairo 1.15.8 seems to clear the surface
-before drawing color emoji if the operator is SOURCE, deleting every-
-thing drawn before. Arguably, the area outside the glyph bounds should
-not be touched, but even if this is a cairo bug the problem of alpha
-within the glyph remains.

- libi3/font.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/libi3/font.c b/libi3/font.c
-index 81091ea74a31da11..aef8427b5396c3d8 100644
 a/libi3/font.c
-+++ b/libi3/font.c
-@@ -105,7 +105,7 @@ static void draw_text_pango(const char *text, size_t 
text_len,
- pango_layout_set_text(layout, text, text_len);
- 
- /* Do the drawing */
--cairo_set_operator(cr, CAIRO_OPERATOR_SOURCE);
-+cairo_set_operator(cr, CAIRO_OPERATOR_OVER);
- cairo_set_source_rgb(cr, pango_font_red, pango_font_green, 
pango_font_blue);
- pango_cairo_update_layout(cr, layout);
- pango_layout_get_pixel_size(layout, NULL, );
--- 
-2.14.1
-

Copied: 
i3-wm/repos/community-x86_64/0001-Use-OVER-operator-for-drawing-text.patch 
(from rev 763946, i3-wm/trunk/0001-Use-OVER-operator-for-drawing-text.patch)
===
--- 0001-Use-OVER-operator-for-drawing-text.patch   
(rev 0)
+++ 0001-Use-OVER-operator-for-drawing-text.patch   2020-11-27 03:25:31 UTC 
(rev 763947)
@@ -0,0 +1,35 @@
+From eea280b1f1d9d66c903014fd6703f401eb119a87 Mon Sep 17 00:00:00 2001
+Message-Id: 

+From: "Jan Alexander Steffens (heftig)" 
+Date: Sat, 9 Sep 2017 00:22:13 +0200
+Subject: [PATCH] Use OVER operator for drawing text
+
+For opaque text, SOURCE is not any different from OVER. However, when
+drawing color glyphs (which consist of RGBA pixels instead of strokes)
+SOURCE's handling of alpha is not what we want.
+
+I stumbled across this because cairo 1.15.8 seems to clear the surface
+before drawing color emoji if the operator is SOURCE, deleting every-
+thing drawn before. Arguably, the area outside the glyph bounds should
+not be touched, but even if this is a cairo bug the problem of alpha
+within the glyph remains.
+---
+ libi3/font.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/libi3/font.c b/libi3/font.c
+index 81091ea74a31da11..aef8427b5396c3d8 100644
+--- a/libi3/font.c
 b/libi3/font.c
+@@ -105,7 +105,7 @@ static void draw_text_pango(const char *text, size_t 
text_len,
+ pango_layout_set_text(layout, text, text_len);
+ 
+ /* Do the drawing */
+-cairo_set_operator(cr, CAIRO_OPERATOR_SOURCE);
++cairo_set_operator(cr, CAIRO_OPERATOR_OVER);
+ cairo_set_source_rgb(cr, pango_font_red, pango_font_green, 
pango_font_blue);
+ pango_cairo_update_layout(cr, layout);
+ pango_layout_get_pixel_size(layout, NULL, );
+-- 
+2.14.1
+

Deleted: 0002-kick-tray-clients-before-destroying-the-bar.patch
===
--- 0002-kick-tray-clients-before-destroying-the-bar.patch  2020-11-27 
03:25:06 UTC (rev 763946)
+++ 0002-kick-tray-clients-before-destroying-the-bar.patch  2020-11-27 
03:25:31 UTC (rev 763947)
@@ -1,34 +0,0 @@
-From 838b600fead202416013db5c1b57f7031f06bed6 Mon Sep 17 00:00:00 2001
-From: Mark Guptill 
-Date: Tue, 30 Jun 2020 04:34:32 -0400
-Subject: 

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

2020-11-26 Thread Daniel M. Capella via arch-commits
Date: Friday, November 27, 2020 @ 03:25:06
  Author: polyzen
Revision: 763946

upgpkg: i3-wm 4.19-1

Modified:
  i3-wm/trunk/PKGBUILD
Deleted:
  i3-wm/trunk/0002-kick-tray-clients-before-destroying-the-bar.patch

+
 0002-kick-tray-clients-before-destroying-the-bar.patch |   34 ---
 PKGBUILD   |   69 +++
 2 files changed, 35 insertions(+), 68 deletions(-)

Deleted: 0002-kick-tray-clients-before-destroying-the-bar.patch
===
--- 0002-kick-tray-clients-before-destroying-the-bar.patch  2020-11-27 
01:18:37 UTC (rev 763945)
+++ 0002-kick-tray-clients-before-destroying-the-bar.patch  2020-11-27 
03:25:06 UTC (rev 763946)
@@ -1,34 +0,0 @@
-From 838b600fead202416013db5c1b57f7031f06bed6 Mon Sep 17 00:00:00 2001
-From: Mark Guptill 
-Date: Tue, 30 Jun 2020 04:34:32 -0400
-Subject: [PATCH] kick tray clients before destroying the bar
-

- i3bar/src/xcb.c | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/i3bar/src/xcb.c b/i3bar/src/xcb.c
-index 94212630..5f01c1d8 100644
 a/i3bar/src/xcb.c
-+++ b/i3bar/src/xcb.c
-@@ -1613,6 +1613,8 @@ void destroy_window(i3_output *output) {
- return;
- }
- 
-+kick_tray_clients(output);
-+
- draw_util_surface_free(xcb_connection, &(output->bar));
- draw_util_surface_free(xcb_connection, &(output->buffer));
- draw_util_surface_free(xcb_connection, &(output->statusline_buffer));
-@@ -1620,8 +1622,6 @@ void destroy_window(i3_output *output) {
- xcb_free_pixmap(xcb_connection, output->buffer.id);
- xcb_free_pixmap(xcb_connection, output->statusline_buffer.id);
- output->bar.id = XCB_NONE;
--
--kick_tray_clients(output);
- }
- 
- /* Strut partial tells i3 where to reserve space for i3bar. This is determined
--- 
-2.28.0
-

Modified: PKGBUILD
===
--- PKGBUILD2020-11-27 01:18:37 UTC (rev 763945)
+++ PKGBUILD2020-11-27 03:25:06 UTC (rev 763946)
@@ -1,52 +1,53 @@
-# Maintainer: Thorsten Töpper 
+# Maintainer: Jelle van der Waa 
+# Maintainer: Levente Polyak 
+# Maintainer: Daniel M. Capella 
+# Contributor: Thorsten Töpper 
 
 pkgname=i3-wm
-pkgver=4.18.3
+pkgver=4.19
 pkgrel=1
-pkgdesc="An improved dynamic tiling window manager"
-url="https://i3wm.org/;
-arch=(x86_64)
-license=(BSD)
-depends=(xcb-util-cursor xcb-util-keysyms xcb-util-wm xcb-util-xrm libev yajl 
startup-notification
- pango libxkbcommon-x11)
-makedepends=(bison flex asciidoc xmlto)
-optdepends=('dmenu: As menu.'
-'i3lock: For locking your screen.'
-'i3status: To display systeminformation with a bar.'
-'perl: i3-save-tree and i3-dmenu-desktop'
-'perl-anyevent-i3: Features like saving the layout.'
-'perl-json-xs: Features like saving the layout.')
-backup=(etc/i3/config)
-groups=(i3)
-replaces=(i3 i3bar)
-source=("https://i3wm.org/downloads/i3-$pkgver.tar.bz2"{,.asc}
-0001-Use-OVER-operator-for-drawing-text.patch)
-sha256sums=('53ae7903fad6eea830d58e949698e4a502c432c0d0a582659a0a59b1b995b10d'
-'SKIP'
-'e49e147b1cd06f95188decbbe41f5c3a0aca18d0195750bc3ea16465b4aca563')
+pkgdesc='Improved dynamic tiling window manager'
+arch=('x86_64')
+url=https://i3wm.org
+license=('BSD')
+groups=('i3')
+depends=('libev' 'libxkbcommon-x11' 'pango' 'startup-notification'
+ 'xcb-util-cursor' 'xcb-util-keysyms' 'xcb-util-wm' 'xcb-util-xrm'
+ 'yajl')
+makedepends=('meson' 'xmlto')
+optdepends=('dmenu: for the default program launcher'
+'rofi: for a modern dmenu replacement'
+'i3lock: for the default screen locker'
+'xss-lock: for the default screen locker'
+'i3status: for the default status bar generator'
+'perl: for i3-save-tree and i3-dmenu-desktop'
+'perl-anyevent-i3: for i3-save-tree'
+'perl-json-xs: for i3-save-tree')
+replaces=('i3' 'i3bar')
+backup=('etc/i3/config')
+source=("$url/downloads/i3-$pkgver.tar.xz"{,.asc}
+'0001-Use-OVER-operator-for-drawing-text.patch')
+b2sums=('3af5eac9cb618bc3b3da0bca430e1882701802f49e092d1e6fa7a35ceb3f2c0287b66eceeb0123a7dfda9976df06227bec34d7d98873aedc2292a2ba94584d84'
+'SKIP'
+
'35be78fc8be805fa4b7f32c8a18c62a0436f433e9064ef5adf32baa9aa816276da3b53b977287640ab70f30eea14bbd4dc002d49d9149afa01e0706a45dba947')
 validpgpkeys=('424E14D703E7C6D43D9D6F364E7160ED4AC8EE1D') # Michael Stapelberg
 
 prepare() {
-  mkdir build
   cd i3-$pkgver
-
   # https://github.com/i3/i3/pull/2925
   patch -Np1 -i ../0001-Use-OVER-operator-for-drawing-text.patch
-
-  autoreconf -fvi
 }
 
 build() {
-  cd build
-  ../i3-$pkgver/configure --prefix=/usr --sysconfdir=/etc --disable-sanitizers
-  make
+  cd i3-$pkgver
+  arch-meson build
+  ninja -C build
 }
 
 package() {
-  cd build

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

2020-11-26 Thread Jiachen Yang via arch-commits
Date: Friday, November 27, 2020 @ 01:18:37
  Author: farseerfc
Revision: 763945

archrelease: copy trunk to community-x86_64

Added:
  toxic/repos/community-x86_64/PKGBUILD
(from rev 763944, toxic/trunk/PKGBUILD)
Deleted:
  toxic/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-27 01:17:55 UTC (rev 763944)
+++ PKGBUILD2020-11-27 01:18:37 UTC (rev 763945)
@@ -1,39 +0,0 @@
-# Maintainer: Jiachen Yang 
-# AUR Maintainer: Vlad M. 
-
-pkgname=toxic
-pkgdesc='CLI Tox client'
-license=('GPL3')
-pkgver=0.8.4
-pkgrel=1
-depends=('curl'
- 'desktop-file-utils'
- 'freealut'
- 'libnotify'
- 'qrencode'
- 'toxcore')
-arch=('x86_64')
-url='https://github.com/JFreegman/toxic'
-source=("$pkgname-$pkgver.tar.gz::https://github.com/JFreegman/$pkgname/archive/v$pkgver/$pkgname-$pkgver.tar.gz;
-   
"$pkgname-$pkgver.tar.gz.asc::https://github.com/JFreegman/$pkgname/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz.asc;
-   )
-sha512sums=('877c725fe8add4cab4436b3aa8e07fccbc61096fb4553f21743d36ed5df8cb565c9d27c6a27a5596f1279b6c3845a05207a54efa2d2089646a9fca61732310c5'
-'SKIP')
-validpgpkeys=('BABD00573A065BFA90D53D563627F3144076AE63')  # Jfreegman 

-
-prepare() {
-  cd "$pkgname-$pkgver"
-  #patch -Np1 < ../ver0.8.0.patch
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-  # enabled X11 on konsole may cause 
https://github.com/JFreegman/toxic/issues/277
-  # but we can only do video and call with X11 enabled 
https://bugs.archlinux.org/task/52836
-  make PREFIX=/usr
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  make PREFIX=/usr DESTDIR="$pkgdir" install
-}

Copied: toxic/repos/community-x86_64/PKGBUILD (from rev 763944, 
toxic/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-27 01:18:37 UTC (rev 763945)
@@ -0,0 +1,39 @@
+# Maintainer: Jiachen Yang 
+# AUR Maintainer: Vlad M. 
+
+pkgname=toxic
+pkgdesc='CLI Tox client'
+license=('GPL3')
+pkgver=0.9.1
+pkgrel=1
+depends=('curl'
+ 'desktop-file-utils'
+ 'freealut'
+ 'libnotify'
+ 'qrencode'
+ 'libx11'
+ 'toxcore')
+arch=('x86_64')
+url='https://github.com/JFreegman/toxic'
+source=("$pkgname-$pkgver.tar.gz::https://github.com/JFreegman/$pkgname/archive/v$pkgver/$pkgname-$pkgver.tar.gz;
+   
"$pkgname-$pkgver.tar.gz.asc::https://github.com/JFreegman/$pkgname/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz.asc;
+   )
+sha512sums=('550c6fdca4fe7d56f4e4409a6ad0f2c89fd17c538f8ac48275a4656baf67466f178d9a2ed738292b3c11710474e0306d8c16deceed78cde2d2d48c813604bd6f'
+'SKIP')
+validpgpkeys=('BABD00573A065BFA90D53D563627F3144076AE63')  # Jfreegman 

+
+prepare() {
+  cd "$pkgname-$pkgver"
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  # enabled X11 on konsole may cause 
https://github.com/JFreegman/toxic/issues/277
+  # but we can only do video and call with X11 enabled 
https://bugs.archlinux.org/task/52836
+  make PREFIX=/usr
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make PREFIX=/usr DESTDIR="$pkgdir" install
+}


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

2020-11-26 Thread Jiachen Yang via arch-commits
Date: Friday, November 27, 2020 @ 01:17:55
  Author: farseerfc
Revision: 763944

upgpkg: toxic 0.9.1-1: toxic 0.9.1

Modified:
  toxic/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-26 23:47:42 UTC (rev 763943)
+++ PKGBUILD2020-11-27 01:17:55 UTC (rev 763944)
@@ -4,7 +4,7 @@
 pkgname=toxic
 pkgdesc='CLI Tox client'
 license=('GPL3')
-pkgver=0.8.4
+pkgver=0.9.1
 pkgrel=1
 depends=('curl'
  'desktop-file-utils'
@@ -11,6 +11,7 @@
  'freealut'
  'libnotify'
  'qrencode'
+ 'libx11'
  'toxcore')
 arch=('x86_64')
 url='https://github.com/JFreegman/toxic'
@@ -17,13 +18,12 @@
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/JFreegman/$pkgname/archive/v$pkgver/$pkgname-$pkgver.tar.gz;

"$pkgname-$pkgver.tar.gz.asc::https://github.com/JFreegman/$pkgname/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz.asc;
)
-sha512sums=('877c725fe8add4cab4436b3aa8e07fccbc61096fb4553f21743d36ed5df8cb565c9d27c6a27a5596f1279b6c3845a05207a54efa2d2089646a9fca61732310c5'
+sha512sums=('550c6fdca4fe7d56f4e4409a6ad0f2c89fd17c538f8ac48275a4656baf67466f178d9a2ed738292b3c11710474e0306d8c16deceed78cde2d2d48c813604bd6f'
 'SKIP')
 validpgpkeys=('BABD00573A065BFA90D53D563627F3144076AE63')  # Jfreegman 

 
 prepare() {
   cd "$pkgname-$pkgver"
-  #patch -Np1 < ../ver0.8.0.patch
 }
 
 build() {


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

2020-11-26 Thread Felix Yan via arch-commits
Date: Thursday, November 26, 2020 @ 23:33:30
  Author: felixonmars
Revision: 763933

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-primitive/repos/community-staging-x86_64/PKGBUILD (from rev 
763932, haskell-primitive/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-26 23:33:30 UTC (rev 763933)
@@ -0,0 +1,55 @@
+# Maintainer: Felix Yan 
+# Contributor: Sergej Pupykin 
+
+pkgname=haskell-primitive
+pkgver=0.7.1.0
+pkgrel=29
+pkgdesc="Wrappers for primitive operations"
+url="https://hackage.haskell.org/package/primitive;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs')
+makedepends=('ghc')
+checkdepends=('haskell-base-orphans' 'haskell-quickcheck' 
'haskell-quickcheck-classes-base'
+  'haskell-tasty' 'haskell-tasty-quickcheck' 'haskell-tagged'
+  'haskell-transformers-compat')
+source=("https://hackage.haskell.org/packages/archive/primitive/${pkgver}/primitive-${pkgver}.tar.gz;)
+sha512sums=('8ade11d0b2221cfdf042da0263b5b5367a7ca2a9b9e1141844e4a65bb0467df879c92cd3515440d715b59345860c1ec3cb3efd7a3d702269ea15e18692586367')
+
+prepare() {
+  cd primitive-$pkgver
+  sed -i '/semigroups/d;s/>= 2.13/>= 2.14/;s/>= 1.2/>= 1.3/' primitive.cabal
+}
+
+build() {
+  cd primitive-$pkgver
+
+  if (( CHECKFUNC )); then
+_opts=('--enable-tests')
+  else
+_opts=('--disable-tests')
+  fi
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+  --prefix=/usr --docdir=/usr/share/doc/$pkgname "${_opts[@]}" \
+  --dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+  runhaskell Setup build $MAKEFLAGS
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd primitive-$pkgver
+  runhaskell Setup test
+}
+
+package() {
+  cd primitive-$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 -Dm644 LICENSE "$pkgdir"/usr/share/licenses/${pkgname}/LICENSE
+  rm -f "$pkgdir"/usr/share/doc/${pkgname}/LICENSE
+}


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

2020-11-26 Thread Felix Yan via arch-commits
Date: Thursday, November 26, 2020 @ 23:47:42
  Author: felixonmars
Revision: 763943

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-splitmix/repos/community-staging-x86_64/PKGBUILD (from rev 
763942, haskell-splitmix/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-26 23:47:42 UTC (rev 763943)
@@ -0,0 +1,50 @@
+# Maintainer: Felix Yan 
+
+_hkgname=splitmix
+pkgname=haskell-splitmix
+pkgver=0.1.0.3
+pkgrel=5
+pkgdesc="Fast Splittable PRNG"
+url="https://github.com/haskellari/splitmix;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs')
+makedepends=('ghc' 'haskell-async' 'haskell-base-compat' 
'haskell-base-compat-batteries'
+ 'haskell-hunit' 'haskell-math-functions' 'haskell-test-framework'
+ 'haskell-test-framework-hunit' 'haskell-tf-random' 
'haskell-vector')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('22a3f0759e1c1150aabde01a77b48087509dfc7ff9614e97e5e06af73f533170993ff2e18101d940e7ddba81b8d6e496795be3851fccfa07b75e9d922f325064')
+
+build() {
+cd $_hkgname-$pkgver
+
+if (( CHECKFUNC )); then
+_opts=('--enable-tests')
+else
+_opts=('--disable-tests')
+fi
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname "${_opts[@]}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-11-26 Thread Felix Yan via arch-commits
Date: Thursday, November 26, 2020 @ 23:47:33
  Author: felixonmars
Revision: 763942

upgpkg: haskell-splitmix 0.1.0.3-5: rebuild with unbounded-delays 0.1.1.1

Modified:
  haskell-splitmix/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-26 23:46:22 UTC (rev 763941)
+++ PKGBUILD2020-11-26 23:47:33 UTC (rev 763942)
@@ -3,7 +3,7 @@
 _hkgname=splitmix
 pkgname=haskell-splitmix
 pkgver=0.1.0.3
-pkgrel=4
+pkgrel=5
 pkgdesc="Fast Splittable PRNG"
 url="https://github.com/haskellari/splitmix;
 license=('BSD')


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

2020-11-26 Thread Felix Yan via arch-commits
Date: Thursday, November 26, 2020 @ 23:46:12
  Author: felixonmars
Revision: 763940

upgpkg: haskell-math-functions 0.3.4.1-35: rebuild with unbounded-delays 0.1.1.1

Modified:
  haskell-math-functions/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-26 23:45:12 UTC (rev 763939)
+++ PKGBUILD2020-11-26 23:46:12 UTC (rev 763940)
@@ -4,7 +4,7 @@
 _hkgname=math-functions
 pkgname=haskell-math-functions
 pkgver=0.3.4.1
-pkgrel=34
+pkgrel=35
 pkgdesc="Special functions and Chebyshev polynomials"
 url="https://github.com/bos/math-functions;
 license=("BSD")


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

2020-11-26 Thread Felix Yan via arch-commits
Date: Thursday, November 26, 2020 @ 23:46:22
  Author: felixonmars
Revision: 763941

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-math-functions/repos/community-staging-x86_64/
  haskell-math-functions/repos/community-staging-x86_64/PKGBUILD
(from rev 763940, haskell-math-functions/trunk/PKGBUILD)

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

Copied: haskell-math-functions/repos/community-staging-x86_64/PKGBUILD (from 
rev 763940, haskell-math-functions/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-26 23:46:22 UTC (rev 763941)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=math-functions
+pkgname=haskell-math-functions
+pkgver=0.3.4.1
+pkgrel=35
+pkgdesc="Special functions and Chebyshev polynomials"
+url="https://github.com/bos/math-functions;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-data-default-class' "haskell-primitive" 
"haskell-vector")
+makedepends=('ghc' 'haskell-erf' 'haskell-quickcheck' 'haskell-tasty' 
'haskell-tasty-hunit'
+ 'haskell-tasty-quickcheck' 'haskell-vector-th-unbox')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('e87a50f10e1afc08acc3900983dcfe85eb46563260c0b52a73ac44c9d83b903dbf3cd59ba0b96f8d4dafc3ff5bb70fb47d04cb8a7a2aec42545096d4a86c2d34')
+
+build() {
+cd $_hkgname-$pkgver
+ 
+if (( CHECKFUNC )); then
+_opts=('--enable-tests')
+else
+_opts=('--disable-tests')
+fi
+   
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname "${_opts[@]}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-system-expm1
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


[arch-commits] Commit in haskell-vector-th-unbox/repos (2 files)

2020-11-26 Thread Felix Yan via arch-commits
Date: Thursday, November 26, 2020 @ 23:45:12
  Author: felixonmars
Revision: 763939

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-vector-th-unbox/repos/community-staging-x86_64/
  haskell-vector-th-unbox/repos/community-staging-x86_64/PKGBUILD
(from rev 763938, haskell-vector-th-unbox/trunk/PKGBUILD)

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

Copied: haskell-vector-th-unbox/repos/community-staging-x86_64/PKGBUILD (from 
rev 763938, haskell-vector-th-unbox/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-26 23:45:12 UTC (rev 763939)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=vector-th-unbox
+pkgname=haskell-vector-th-unbox
+pkgver=0.2.1.7
+pkgrel=66
+pkgdesc="Deriver for Data.Vector.Unboxed using Template Haskell"
+url="https://hackage.haskell.org/package/${_hkgname};
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-vector")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('fa65c32eace3ad93f0df69830eca0334519bbdbb2bbdc511db6e6abffe48c78870fef131dc34451873775a037634a87f0cd0d06dc1c4bc9404af2a86d7593ae1')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i 's/< *2.16/<3/;s/< *4.14/<5/' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


[arch-commits] Commit in haskell-vector-th-unbox/trunk (PKGBUILD)

2020-11-26 Thread Felix Yan via arch-commits
Date: Thursday, November 26, 2020 @ 23:45:03
  Author: felixonmars
Revision: 763938

upgpkg: haskell-vector-th-unbox 0.2.1.7-66: rebuild with unbounded-delays 
0.1.1.1

Modified:
  haskell-vector-th-unbox/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-26 23:39:59 UTC (rev 763937)
+++ PKGBUILD2020-11-26 23:45:03 UTC (rev 763938)
@@ -4,7 +4,7 @@
 _hkgname=vector-th-unbox
 pkgname=haskell-vector-th-unbox
 pkgver=0.2.1.7
-pkgrel=65
+pkgrel=66
 pkgdesc="Deriver for Data.Vector.Unboxed using Template Haskell"
 url="https://hackage.haskell.org/package/${_hkgname};
 license=("BSD")


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

2020-11-26 Thread Felix Yan via arch-commits
Date: Thursday, November 26, 2020 @ 23:39:59
  Author: felixonmars
Revision: 763937

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-vector/repos/community-staging-x86_64/PKGBUILD (from rev 
763936, haskell-vector/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-26 23:39:59 UTC (rev 763937)
@@ -0,0 +1,47 @@
+# Maintainer: Sergej Pupykin 
+
+pkgname=haskell-vector
+pkgver=0.12.1.2
+pkgrel=63
+pkgdesc="Efficient Arrays"
+url="https://hackage.haskell.org/package/vector;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-primitive')
+makedepends=('ghc' 'haskell-base-orphans' 'haskell-hunit' 'haskell-quickcheck' 
'haskell-random'
+ 'haskell-tasty' 'haskell-tasty-hunit' 'haskell-tasty-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/vector/${pkgver}/vector-${pkgver}.tar.gz;)
+sha512sums=('36d0237cf7c5a6b78f88b33ff09ea8b19baeaf85609efdeba9ab802ca588956457d4607304b73e8d58e9e802a9101c23da62caee71508f069047a6d531e50170')
+
+prepare() {
+  cd vector-$pkgver
+  sed -i 's/,semigroups$//' vector.cabal
+}
+
+build() {
+  cd "$srcdir"/vector-${pkgver}
+
+  if (( CHECKFUNC )); then
+  _opts=('--enable-tests')
+  else
+  _opts=('--disable-tests')
+  fi
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+  --prefix=/usr --docdir=/usr/share/doc/$pkgname "${_opts[@]}" \
+  --dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+  runhaskell Setup build $MAKEFLAGS
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+  cd "$srcdir"/vector-${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 -Dm644 LICENSE "$pkgdir"/usr/share/licenses/${pkgname}/LICENSE
+  rm -f "$pkgdir"/usr/share/doc/${pkgname}/LICENSE
+}


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

2020-11-26 Thread Felix Yan via arch-commits
Date: Thursday, November 26, 2020 @ 23:39:49
  Author: felixonmars
Revision: 763936

upgpkg: haskell-vector 0.12.1.2-63: rebuild with unbounded-delays 0.1.1.1

Modified:
  haskell-vector/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-26 23:34:18 UTC (rev 763935)
+++ PKGBUILD2020-11-26 23:39:49 UTC (rev 763936)
@@ -2,7 +2,7 @@
 
 pkgname=haskell-vector
 pkgver=0.12.1.2
-pkgrel=62
+pkgrel=63
 pkgdesc="Efficient Arrays"
 url="https://hackage.haskell.org/package/vector;
 license=("BSD")


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

2020-11-26 Thread Felix Yan via arch-commits
Date: Thursday, November 26, 2020 @ 23:34:08
  Author: felixonmars
Revision: 763934

upgpkg: haskell-tf-random 0.5-105: rebuild with unbounded-delays 0.1.1.1

Modified:
  haskell-tf-random/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-26 23:33:30 UTC (rev 763933)
+++ PKGBUILD2020-11-26 23:34:08 UTC (rev 763934)
@@ -3,7 +3,7 @@
 _hkgname=tf-random
 pkgname=haskell-tf-random
 pkgver=0.5
-pkgrel=104
+pkgrel=105
 pkgdesc='High-quality splittable pseudorandom number generator'
 url="https://hackage.haskell.org/package/${_hkgname};
 license=('BSD')


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

2020-11-26 Thread Felix Yan via arch-commits
Date: Thursday, November 26, 2020 @ 23:34:18
  Author: felixonmars
Revision: 763935

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-tf-random/repos/community-staging-x86_64/
  haskell-tf-random/repos/community-staging-x86_64/PKGBUILD
(from rev 763934, haskell-tf-random/trunk/PKGBUILD)

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

Copied: haskell-tf-random/repos/community-staging-x86_64/PKGBUILD (from rev 
763934, haskell-tf-random/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-26 23:34:18 UTC (rev 763935)
@@ -0,0 +1,37 @@
+# Maintainer: Alexander Rødseth 
+
+_hkgname=tf-random
+pkgname=haskell-tf-random
+pkgver=0.5
+pkgrel=105
+pkgdesc='High-quality splittable pseudorandom number generator'
+url="https://hackage.haskell.org/package/${_hkgname};
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-random' 'haskell-primitive')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('a766909571b4b37da9fa1aa9739bd2db8c32c0f64452fd7c3717f4578090e5227b763772858c6c311c5f366dd461421ffc3beb295455902fea1fb133deb7')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-11-26 Thread Felix Yan via arch-commits
Date: Thursday, November 26, 2020 @ 23:33:20
  Author: felixonmars
Revision: 763932

upgpkg: haskell-primitive 0.7.1.0-29: rebuild with unbounded-delays 0.1.1.1

Modified:
  haskell-primitive/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-26 23:32:00 UTC (rev 763931)
+++ PKGBUILD2020-11-26 23:33:20 UTC (rev 763932)
@@ -3,7 +3,7 @@
 
 pkgname=haskell-primitive
 pkgver=0.7.1.0
-pkgrel=28
+pkgrel=29
 pkgdesc="Wrappers for primitive operations"
 url="https://hackage.haskell.org/package/primitive;
 license=("BSD")


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

2020-11-26 Thread Felix Yan via arch-commits
Date: Thursday, November 26, 2020 @ 23:32:00
  Author: felixonmars
Revision: 763931

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-tasty-quickcheck/repos/community-staging-x86_64/
  haskell-tasty-quickcheck/repos/community-staging-x86_64/PKGBUILD
(from rev 763930, haskell-tasty-quickcheck/trunk/PKGBUILD)

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

Copied: haskell-tasty-quickcheck/repos/community-staging-x86_64/PKGBUILD (from 
rev 763930, haskell-tasty-quickcheck/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-26 23:32:00 UTC (rev 763931)
@@ -0,0 +1,44 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=tasty-quickcheck
+pkgname=haskell-tasty-quickcheck
+pkgver=0.10.1.1
+pkgrel=105
+pkgdesc="QuickCheck support for the Tasty test framework."
+url="http://documentup.com/feuerbach/tasty;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-optparse-applicative' 'haskell-quickcheck' 
'haskell-random'
+ 'haskell-tagged' 'haskell-tasty')
+makedepends=('ghc' 'haskell-tasty-hunit' 'haskell-pcre-light')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('13cfcc99eb9988d4842327d96f0e58f5ba6c653d3027a4adb307d4101bc2f7deee0033197b4358a837ace0d03423bdafe2197b029da6a64d8b650ee2f5bd958d')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-11-26 Thread Felix Yan via arch-commits
Date: Thursday, November 26, 2020 @ 23:31:46
  Author: felixonmars
Revision: 763930

upgpkg: haskell-tasty-quickcheck 0.10.1.1-105: rebuild with unbounded-delays 
0.1.1.1

Modified:
  haskell-tasty-quickcheck/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-26 23:31:06 UTC (rev 763929)
+++ PKGBUILD2020-11-26 23:31:46 UTC (rev 763930)
@@ -4,7 +4,7 @@
 _hkgname=tasty-quickcheck
 pkgname=haskell-tasty-quickcheck
 pkgver=0.10.1.1
-pkgrel=104
+pkgrel=105
 pkgdesc="QuickCheck support for the Tasty test framework."
 url="http://documentup.com/feuerbach/tasty;
 license=("MIT")


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

2020-11-26 Thread Felix Yan via arch-commits
Date: Thursday, November 26, 2020 @ 23:31:06
  Author: felixonmars
Revision: 763929

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-tasty-hunit/repos/community-staging-x86_64/
  haskell-tasty-hunit/repos/community-staging-x86_64/PKGBUILD
(from rev 763928, haskell-tasty-hunit/trunk/PKGBUILD)

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

Copied: haskell-tasty-hunit/repos/community-staging-x86_64/PKGBUILD (from rev 
763928, haskell-tasty-hunit/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-26 23:31:06 UTC (rev 763929)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=tasty-hunit
+pkgname=haskell-tasty-hunit
+pkgver=0.10.0.2
+pkgrel=95
+pkgdesc="HUnit support for the Tasty test framework."
+url="https://documentup.com/feuerbach/tasty;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-tasty' 'haskell-call-stack')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('82f70cd7813affeb756de89842a77070e688169eb35a386fbc4db36b65d8c960bca7b923294918e10b65281d3265820f9592398550af8af92027960d48562fd0')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-11-26 Thread Felix Yan via arch-commits
Date: Thursday, November 26, 2020 @ 23:30:55
  Author: felixonmars
Revision: 763928

upgpkg: haskell-tasty-hunit 0.10.0.2-95: rebuild with unbounded-delays 0.1.1.1

Modified:
  haskell-tasty-hunit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-26 23:25:10 UTC (rev 763927)
+++ PKGBUILD2020-11-26 23:30:55 UTC (rev 763928)
@@ -4,7 +4,7 @@
 _hkgname=tasty-hunit
 pkgname=haskell-tasty-hunit
 pkgver=0.10.0.2
-pkgrel=94
+pkgrel=95
 pkgdesc="HUnit support for the Tasty test framework."
 url="https://documentup.com/feuerbach/tasty;
 license=("MIT")


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

2020-11-26 Thread Felix Yan via arch-commits
Date: Thursday, November 26, 2020 @ 23:24:59
  Author: felixonmars
Revision: 763926

upgpkg: haskell-stringbuilder 0.5.1-110: rebuild with unbounded-delays 0.1.1.1

Modified:
  haskell-stringbuilder/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-26 23:24:19 UTC (rev 763925)
+++ PKGBUILD2020-11-26 23:24:59 UTC (rev 763926)
@@ -4,7 +4,7 @@
 _hkgname=stringbuilder
 pkgname=haskell-stringbuilder
 pkgver=0.5.1
-pkgrel=109
+pkgrel=110
 pkgdesc="A writer monad for multi-line string literals"
 url="https://github.com/sol/stringbuilder;
 license=("MIT")


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

2020-11-26 Thread Felix Yan via arch-commits
Date: Thursday, November 26, 2020 @ 23:25:10
  Author: felixonmars
Revision: 763927

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-stringbuilder/repos/community-staging-x86_64/PKGBUILD (from rev 
763926, haskell-stringbuilder/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-26 23:25:10 UTC (rev 763927)
@@ -0,0 +1,50 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=stringbuilder
+pkgname=haskell-stringbuilder
+pkgver=0.5.1
+pkgrel=110
+pkgdesc="A writer monad for multi-line string literals"
+url="https://github.com/sol/stringbuilder;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs')
+makedepends=('ghc')
+checkdepends=('haskell-hspec' 'haskell-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('09cbf01dce82b325393c0d6f0264792695d528a184052f5e1d5dbd3fc181fd11c280e77ba445f1e44c6a8dabc0b267aa90f4a9f1fc34135f1b741d2a5dca9369')
+
+build() {
+cd $_hkgname-$pkgver
+
+if (( CHECKFUNC )); then
+_opts=('--enable-tests')
+else
+_opts=('--disable-tests')
+fi
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname "${_opts[@]}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


[arch-commits] Commit in haskell-base-compat-batteries/trunk (PKGBUILD)

2020-11-26 Thread Felix Yan via arch-commits
Date: Thursday, November 26, 2020 @ 23:24:09
  Author: felixonmars
Revision: 763924

upgpkg: haskell-base-compat-batteries 0.11.2-11: rebuild with unbounded-delays 
0.1.1.1

Modified:
  haskell-base-compat-batteries/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-26 23:23:18 UTC (rev 763923)
+++ PKGBUILD2020-11-26 23:24:09 UTC (rev 763924)
@@ -3,7 +3,7 @@
 _hkgname=base-compat-batteries
 pkgname=haskell-base-compat-batteries
 pkgver=0.11.2
-pkgrel=10
+pkgrel=11
 pkgdesc="base-compat with extra batteries"
 url="https://hackage.haskell.org/package/base-compat-batteries;
 license=('MIT')


[arch-commits] Commit in haskell-base-compat-batteries/repos (2 files)

2020-11-26 Thread Felix Yan via arch-commits
Date: Thursday, November 26, 2020 @ 23:24:19
  Author: felixonmars
Revision: 763925

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-base-compat-batteries/repos/community-staging-x86_64/
  haskell-base-compat-batteries/repos/community-staging-x86_64/PKGBUILD
(from rev 763924, haskell-base-compat-batteries/trunk/PKGBUILD)

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

Copied: haskell-base-compat-batteries/repos/community-staging-x86_64/PKGBUILD 
(from rev 763924, haskell-base-compat-batteries/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-26 23:24:19 UTC (rev 763925)
@@ -0,0 +1,49 @@
+# Maintainer: Felix Yan 
+
+_hkgname=base-compat-batteries
+pkgname=haskell-base-compat-batteries
+pkgver=0.11.2
+pkgrel=11
+pkgdesc="base-compat with extra batteries"
+url="https://hackage.haskell.org/package/base-compat-batteries;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-base-compat')
+makedepends=('ghc')
+checkdepends=('haskell-hspec' 'haskell-hspec-discover' 'haskell-quickcheck')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('0b54b53bb762ca99cbfe82799a63f73229447325438ccae4849df676d14a4758177d9481391b628cca7921d9796ac3172ad8226b2530e151b7c59f86b82f381a')
+
+build() {
+cd $_hkgname-$pkgver
+
+if (( CHECKFUNC )); then
+_opts=('--enable-tests')
+else
+_opts=('--disable-tests')
+fi
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname "${_opts[@]}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-11-26 Thread Felix Yan via arch-commits
Date: Thursday, November 26, 2020 @ 23:23:18
  Author: felixonmars
Revision: 763923

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-hspec/repos/community-staging-x86_64/PKGBUILD (from rev 763922, 
haskell-hspec/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-26 23:23:18 UTC (rev 763923)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hspec
+pkgname=haskell-hspec
+pkgver=2.7.4
+pkgrel=64
+pkgdesc="A Testing Framework for Haskell"
+url="http://hspec.github.io/;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-quickcheck' 'haskell-hspec-core' 
'haskell-hspec-discover'
+ 'haskell-hspec-expectations')
+makedepends=('ghc')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('ebe6056f0f977c4fec6a1a43f2b9d2b463f883daba72e47e8b76e85d5ee4d7715e086bae457bdba499e41894f38853b76cd2bb1dc644bf23a94b45044e8bd2d6')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-11-26 Thread Felix Yan via arch-commits
Date: Thursday, November 26, 2020 @ 23:23:09
  Author: felixonmars
Revision: 763922

upgpkg: haskell-hspec 2.7.4-64: rebuild with unbounded-delays 0.1.1.1

Modified:
  haskell-hspec/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-26 23:18:50 UTC (rev 763921)
+++ PKGBUILD2020-11-26 23:23:09 UTC (rev 763922)
@@ -3,7 +3,7 @@
 _hkgname=hspec
 pkgname=haskell-hspec
 pkgver=2.7.4
-pkgrel=63
+pkgrel=64
 pkgdesc="A Testing Framework for Haskell"
 url="http://hspec.github.io/;
 license=('MIT')


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

2020-11-26 Thread Felix Yan via arch-commits
Date: Thursday, November 26, 2020 @ 23:18:41
  Author: felixonmars
Revision: 763920

upgpkg: haskell-hspec-core 2.7.4-59: rebuild with unbounded-delays 0.1.1.1

Modified:
  haskell-hspec-core/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-26 23:17:29 UTC (rev 763919)
+++ PKGBUILD2020-11-26 23:18:41 UTC (rev 763920)
@@ -3,7 +3,7 @@
 _hkgname=hspec-core
 pkgname=haskell-hspec-core
 pkgver=2.7.4
-pkgrel=58
+pkgrel=59
 pkgdesc="A Testing Framework for Haskell"
 url="http://hspec.github.io/;
 license=('MIT')


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

2020-11-26 Thread Felix Yan via arch-commits
Date: Thursday, November 26, 2020 @ 23:18:50
  Author: felixonmars
Revision: 763921

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-hspec-core/repos/community-staging-x86_64/PKGBUILD (from rev 
763920, haskell-hspec-core/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-26 23:18:50 UTC (rev 763921)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hspec-core
+pkgname=haskell-hspec-core
+pkgver=2.7.4
+pkgrel=59
+pkgdesc="A Testing Framework for Haskell"
+url="http://hspec.github.io/;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-ansi-terminal' 'haskell-call-stack' 
'haskell-clock'
+ 'haskell-hspec-expectations' 'haskell-hunit' 'haskell-quickcheck' 
'haskell-quickcheck-io'
+ 'haskell-random' 'haskell-setenv' 'haskell-tf-random')
+makedepends=('ghc' 'haskell-hspec-meta' 'haskell-silently' 'haskell-temporary')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('4dae2318ddc2d647ee273ebdbdb349bfdb8883d860681a932347fddcd012c4813c2f412804a9fe78a01d6c62ae4347bfedb7b4d46720c4ab75fb01caea99b6cc')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+# https://github.com/hspec/hspec/issues/432
+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-hspec-meta/repos (2 files)

2020-11-26 Thread Felix Yan via arch-commits
Date: Thursday, November 26, 2020 @ 23:17:29
  Author: felixonmars
Revision: 763919

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-hspec-meta/repos/community-staging-x86_64/
  haskell-hspec-meta/repos/community-staging-x86_64/PKGBUILD
(from rev 763918, haskell-hspec-meta/trunk/PKGBUILD)

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

Copied: haskell-hspec-meta/repos/community-staging-x86_64/PKGBUILD (from rev 
763918, haskell-hspec-meta/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-26 23:17:29 UTC (rev 763919)
@@ -0,0 +1,39 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hspec-meta
+pkgname=haskell-hspec-meta
+pkgver=2.6.0
+pkgrel=161
+pkgdesc="A version of Hspec which is used to test Hspec itself"
+url="http://hspec.github.io/;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-quickcheck' 'haskell-hspec-expectations' 
'haskell-hunit'
+ 'haskell-setenv' 'haskell-random' 'haskell-quickcheck-io' 
'haskell-ansi-terminal'
+ 'haskell-clock' 'haskell-call-stack')
+makedepends=('ghc')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('c35d09f84c093ab5fe7ae31cf004d485cf6d15a06ee7c98270d3f5c471da6e0c9a71c8ec6ca0aa87e7454c9470b218c24538270711677003dc63d316fb23dce9')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-11-26 Thread Felix Yan via arch-commits
Date: Thursday, November 26, 2020 @ 23:17:20
  Author: felixonmars
Revision: 763918

upgpkg: haskell-hspec-meta 2.6.0-161: rebuild with unbounded-delays 0.1.1.1

Modified:
  haskell-hspec-meta/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-26 23:12:38 UTC (rev 763917)
+++ PKGBUILD2020-11-26 23:17:20 UTC (rev 763918)
@@ -3,7 +3,7 @@
 _hkgname=hspec-meta
 pkgname=haskell-hspec-meta
 pkgver=2.6.0
-pkgrel=160
+pkgrel=161
 pkgdesc="A version of Hspec which is used to test Hspec itself"
 url="http://hspec.github.io/;
 license=('MIT')


[arch-commits] Commit in ttf-sarasa-gothic/trunk (PKGBUILD)

2020-11-26 Thread Felix Yan via arch-commits
Date: Thursday, November 26, 2020 @ 22:36:29
  Author: felixonmars
Revision: 763869

upgpkg: ttf-sarasa-gothic 0.15.3-1

Modified:
  ttf-sarasa-gothic/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-26 22:33:36 UTC (rev 763868)
+++ PKGBUILD2020-11-26 22:36:29 UTC (rev 763869)
@@ -3,7 +3,7 @@
 # Contributor: Markus Weimar 
 
 pkgname=ttf-sarasa-gothic
-pkgver=0.15.2
+pkgver=0.15.3
 pkgrel=1
 pkgdesc="A CJK programming font based on Iosevka and Source Han Sans. (TTC)"
 arch=('any')
@@ -12,7 +12,7 @@
 provides=('ttf-sarasa-slab')
 
source=("https://github.com/be5invis/Sarasa-Gothic/releases/download/v$pkgver/sarasa-gothic-ttc-$pkgver.7z;
 
"LICENSE-$pkgver::https://raw.githubusercontent.com/be5invis/Sarasa-Gothic/v${pkgver}/LICENSE;)
-sha512sums=('2b71e7802c995c00ce93040c2c09c6f599c68baf243e6aa2de03395e61b3e2725c9d447b332069830052f14bcb64b4db5a66efc364af11e9c6d1afe4d64cbcba'
+sha512sums=('64a1f635da9cbeb11d4c5a8f4b81f8cb1ce5154a2b65e24db81223af328f58d147ca9afbf8e7722032cd81a95f22e672bb0512c15daa15b7b6a569c1b3b4'
 
'1b305be7113857d058a16fc5ba95c52bf0b812664de8c726ff9800514333bebb4ff8c3489334a814eb48b7455349b492adf9565b9b59cff3c0a9c5d451c8ccc6')
 
 package() {


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

2020-11-26 Thread Felix Yan via arch-commits
Date: Thursday, November 26, 2020 @ 23:12:38
  Author: felixonmars
Revision: 763917

remove outdated fix

Modified:
  deepin-session-ui/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-26 23:05:36 UTC (rev 763916)
+++ PKGBUILD2020-11-26 23:12:38 UTC (rev 763917)
@@ -22,10 +22,6 @@
 prepare() {
   cd dde-session-ui-$pkgver
   sed -i 
's|/usr/share/backgrounds/default_background.jpg|/usr/share/backgrounds/deepin/desktop.jpg|'
 widgets/*.cpp
-
-  # Well this is so broken
-  # https://github.com/linuxdeepin/dde-session-ui/issues/170
-  sed -i '7s/dtkwidget$/dtkwidget testlib/' dde-osd/dde-osd.pro
 }
 
 build() {


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

2020-11-26 Thread Felix Yan via arch-commits
Date: Thursday, November 26, 2020 @ 22:52:58
  Author: felixonmars
Revision: 763900

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-test-framework-quickcheck2/repos/community-staging-x86_64/
  haskell-test-framework-quickcheck2/repos/community-staging-x86_64/PKGBUILD
(from rev 763899, haskell-test-framework-quickcheck2/trunk/PKGBUILD)

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

Copied: 
haskell-test-framework-quickcheck2/repos/community-staging-x86_64/PKGBUILD 
(from rev 763899, haskell-test-framework-quickcheck2/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-26 22:52:58 UTC (rev 763900)
@@ -0,0 +1,44 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=test-framework-quickcheck2
+pkgname=haskell-test-framework-quickcheck2
+pkgver=0.3.0.5
+pkgrel=122
+pkgdesc="QuickCheck-2 support for the test-framework package"
+url="https://haskell.github.io/test-framework/;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-test-framework' 'haskell-quickcheck' 
'haskell-extensible-exceptions'
+ 'haskell-random')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('58c6177d52829ba1ea1858a11101e5b21ae4e4543f8f829779f62208ad16083b41e9f3b2275392693698ef3d46912096c368d90db0d67ff136af4fa73d5e1d43')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i 's/< *2.13/<3/;s/< *1.2/<2/' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


[arch-commits] Commit in haskell-hspec-expectations/repos/community-staging-x86_64 (2 files)

2020-11-26 Thread Felix Yan via arch-commits
Date: Thursday, November 26, 2020 @ 23:04:42
  Author: felixonmars
Revision: 763914

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-hspec-expectations/repos/community-staging-x86_64/PKGBUILD
(from rev 763913, haskell-hspec-expectations/trunk/PKGBUILD)
Deleted:
  haskell-hspec-expectations/repos/community-staging-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-26 23:04:31 UTC (rev 763913)
+++ PKGBUILD2020-11-26 23:04:42 UTC (rev 763914)
@@ -1,37 +0,0 @@
-# Maintainer: Felix Yan 
-
-_hkgname=hspec-expectations
-pkgname=haskell-hspec-expectations
-pkgver=0.8.2
-pkgrel=84
-pkgdesc="Catchy combinators for HUnit"
-url="https://github.com/sol/hspec-expectations;
-license=('MIT')
-arch=('x86_64')
-depends=('ghc-libs' 'haskell-call-stack' 'haskell-hunit')
-makedepends=('ghc')
-source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
-sha512sums=('482799adad2a70f891a61227bcf28e6712e65fa7dceba13da15a101a6814bc0d44aafaeda360a06dcdbcdbb96e5539f15135753eabd63efdd6bf56b8994a44c9')
-
-build() {
-cd $_hkgname-$pkgver
-
-runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
---prefix=/usr --docdir=/usr/share/doc/$pkgname \
---dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
-runhaskell Setup build $MAKEFLAGS
-runhaskell Setup register --gen-script
-runhaskell Setup unregister --gen-script
-sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
-sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
-}
-
-package() {
-cd $_hkgname-$pkgver
-
-install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
-install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
-runhaskell Setup copy --destdir="$pkgdir"
-install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
-}

Copied: haskell-hspec-expectations/repos/community-staging-x86_64/PKGBUILD 
(from rev 763913, haskell-hspec-expectations/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-26 23:04:42 UTC (rev 763914)
@@ -0,0 +1,37 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hspec-expectations
+pkgname=haskell-hspec-expectations
+pkgver=0.8.2
+pkgrel=85
+pkgdesc="Catchy combinators for HUnit"
+url="https://github.com/sol/hspec-expectations;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-call-stack' 'haskell-hunit')
+makedepends=('ghc')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('482799adad2a70f891a61227bcf28e6712e65fa7dceba13da15a101a6814bc0d44aafaeda360a06dcdbcdbb96e5539f15135753eabd63efdd6bf56b8994a44c9')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-11-26 Thread Felix Yan via arch-commits
Date: Thursday, November 26, 2020 @ 23:04:31
  Author: felixonmars
Revision: 763913

upgpkg: haskell-hspec-expectations 0.8.2-85: rebuild with unbounded-delays 
0.1.1.1

Modified:
  haskell-hspec-expectations/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-26 22:59:00 UTC (rev 763912)
+++ PKGBUILD2020-11-26 23:04:31 UTC (rev 763913)
@@ -3,7 +3,7 @@
 _hkgname=hspec-expectations
 pkgname=haskell-hspec-expectations
 pkgver=0.8.2
-pkgrel=84
+pkgrel=85
 pkgdesc="Catchy combinators for HUnit"
 url="https://github.com/sol/hspec-expectations;
 license=('MIT')


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

2020-11-26 Thread Felix Yan via arch-commits
Date: Thursday, November 26, 2020 @ 23:05:26
  Author: felixonmars
Revision: 763915

upgpkg: haskell-quickcheck-io 0.2.0-156: rebuild with unbounded-delays 0.1.1.1

Modified:
  haskell-quickcheck-io/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-26 23:04:42 UTC (rev 763914)
+++ PKGBUILD2020-11-26 23:05:26 UTC (rev 763915)
@@ -3,7 +3,7 @@
 _hkgname=quickcheck-io
 pkgname=haskell-quickcheck-io
 pkgver=0.2.0
-pkgrel=155
+pkgrel=156
 pkgdesc="Use HUnit assertions as QuickCheck properties"
 url="https://github.com/hspec/quickcheck-io;
 license=('MIT')


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

2020-11-26 Thread Felix Yan via arch-commits
Date: Thursday, November 26, 2020 @ 23:05:36
  Author: felixonmars
Revision: 763916

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-quickcheck-io/repos/community-staging-x86_64/
  haskell-quickcheck-io/repos/community-staging-x86_64/PKGBUILD
(from rev 763915, haskell-quickcheck-io/trunk/PKGBUILD)

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

Copied: haskell-quickcheck-io/repos/community-staging-x86_64/PKGBUILD (from rev 
763915, haskell-quickcheck-io/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-26 23:05:36 UTC (rev 763916)
@@ -0,0 +1,37 @@
+# Maintainer: Felix Yan 
+
+_hkgname=quickcheck-io
+pkgname=haskell-quickcheck-io
+pkgver=0.2.0
+pkgrel=156
+pkgdesc="Use HUnit assertions as QuickCheck properties"
+url="https://github.com/hspec/quickcheck-io;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-hunit' 'haskell-quickcheck')
+makedepends=('ghc')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('02e1f40bac8f31f27c21d1d2df9f226816f9da871092b09f0451a8321e250c9e94887f94889be421c9d0034e0a27b02c907d16eb7da5a4376df42c7c1fbd01df')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-11-26 Thread Felix Yan via arch-commits
Date: Thursday, November 26, 2020 @ 22:51:15
  Author: felixonmars
Revision: 763895

upgpkg: haskell-test-framework 0.8.2.0-125: rebuild with unbounded-delays 
0.1.1.1

Modified:
  haskell-test-framework/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-26 22:50:33 UTC (rev 763894)
+++ PKGBUILD2020-11-26 22:51:15 UTC (rev 763895)
@@ -4,7 +4,7 @@
 _hkgname=test-framework
 pkgname=haskell-test-framework
 pkgver=0.8.2.0
-pkgrel=124
+pkgrel=125
 pkgdesc="Framework for running and organising tests, with HUnit and QuickCheck 
support"
 url="https://batterseapower.github.io/test-framework/;
 license=("BSD")


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

2020-11-26 Thread Felix Yan via arch-commits
Date: Thursday, November 26, 2020 @ 22:58:29
  Author: felixonmars
Revision: 763909

upgpkg: haskell-tasty-smallcheck 0.8.1-119: rebuild with unbounded-delays 
0.1.1.1

Modified:
  haskell-tasty-smallcheck/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-26 22:57:52 UTC (rev 763908)
+++ PKGBUILD2020-11-26 22:58:29 UTC (rev 763909)
@@ -3,7 +3,7 @@
 _hkgname=tasty-smallcheck
 pkgname=haskell-tasty-smallcheck
 pkgver=0.8.1
-pkgrel=118
+pkgrel=119
 pkgdesc="SmallCheck support for the Tasty test framework"
 url="http://documentup.com/feuerbach/tasty;
 license=('MIT')


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

2020-11-26 Thread Felix Yan via arch-commits
Date: Thursday, November 26, 2020 @ 22:58:50
  Author: felixonmars
Revision: 763911

upgpkg: ammonite 2.3.3-1

Modified:
  ammonite/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-26 22:58:48 UTC (rev 763910)
+++ PKGBUILD2020-11-26 22:58:50 UTC (rev 763911)
@@ -4,7 +4,7 @@
 # Contributor: wenLiangcan 
 
 pkgname=ammonite
-pkgver=2.3.2
+pkgver=2.3.3
 _scalaversion=2.13.2
 pkgrel=1
 pkgdesc="A cleanroom re-implementation of the Scala REPL from first 
principles. "
@@ -14,7 +14,7 @@
 depends=('bash' 'java-environment')
 makedepends=('mill')
 
source=("https://github.com/lihaoyi/Ammonite/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
-b2sums=('424a575d20c8d37659b35857b57390f379e29fd34fa6e35b578f2770cdf357174f5af836ca9ab1add6503cd18b2f62ba1e08c5e46b35074b41b9d9f574624515')
+b2sums=('419889d3c9076356663ccf147321970641e38dde9cd3a280d99ac1dff2e4598e5542baeb37ca96edf5296531a0b3113bfd07ff75e1b4746c8355caf198a231d0')
 
 prepare() {
   cd Ammonite-$pkgver


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

2020-11-26 Thread Felix Yan via arch-commits
Date: Thursday, November 26, 2020 @ 22:59:00
  Author: felixonmars
Revision: 763912

archrelease: copy trunk to community-any

Added:
  ammonite/repos/community-any/PKGBUILD
(from rev 763911, ammonite/trunk/PKGBUILD)
Deleted:
  ammonite/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-26 22:58:50 UTC (rev 763911)
+++ PKGBUILD2020-11-26 22:59:00 UTC (rev 763912)
@@ -1,35 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Thayne 
-# Contributor: Yiqiao Wang 
-# Contributor: wenLiangcan 
-
-pkgname=ammonite
-pkgver=2.3.2
-_scalaversion=2.13.2
-pkgrel=1
-pkgdesc="A cleanroom re-implementation of the Scala REPL from first 
principles. "
-arch=('any')
-url="https://github.com/lihaoyi/Ammonite;
-license=('MIT')
-depends=('bash' 'java-environment')
-makedepends=('mill')
-source=("https://github.com/lihaoyi/Ammonite/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
-b2sums=('424a575d20c8d37659b35857b57390f379e29fd34fa6e35b578f2770cdf357174f5af836ca9ab1add6503cd18b2f62ba1e08c5e46b35074b41b9d9f574624515')
-
-prepare() {
-  cd Ammonite-$pkgver
-  sed -i "s/'git/'true/;s/\"git\"/\"true\"/;s/\$gitHash/unknown/;s/^
\\.toInt$//" build.sc
-}
-
-build() {
-  cd Ammonite-$pkgver
-  TRAVIS_TAG=$pkgver mill -i amm[$_scalaversion].assembly
-}
-
-package() {
-  cd Ammonite-$pkgver
-  install -dm755 "$pkgdir"/usr/bin
-  (echo "#!/bin/sh"; cat out/amm/$_scalaversion/assembly/dest/out.jar) > 
"$pkgdir"/usr/bin/amm
-  chmod +x "$pkgdir"/usr/bin/amm
-  install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
-}

Copied: ammonite/repos/community-any/PKGBUILD (from rev 763911, 
ammonite/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-26 22:59:00 UTC (rev 763912)
@@ -0,0 +1,35 @@
+# Maintainer: Felix Yan 
+# Contributor: Thayne 
+# Contributor: Yiqiao Wang 
+# Contributor: wenLiangcan 
+
+pkgname=ammonite
+pkgver=2.3.3
+_scalaversion=2.13.2
+pkgrel=1
+pkgdesc="A cleanroom re-implementation of the Scala REPL from first 
principles. "
+arch=('any')
+url="https://github.com/lihaoyi/Ammonite;
+license=('MIT')
+depends=('bash' 'java-environment')
+makedepends=('mill')
+source=("https://github.com/lihaoyi/Ammonite/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
+b2sums=('419889d3c9076356663ccf147321970641e38dde9cd3a280d99ac1dff2e4598e5542baeb37ca96edf5296531a0b3113bfd07ff75e1b4746c8355caf198a231d0')
+
+prepare() {
+  cd Ammonite-$pkgver
+  sed -i "s/'git/'true/;s/\"git\"/\"true\"/;s/\$gitHash/unknown/;s/^
\\.toInt$//" build.sc
+}
+
+build() {
+  cd Ammonite-$pkgver
+  TRAVIS_TAG=$pkgver mill -i amm[$_scalaversion].assembly
+}
+
+package() {
+  cd Ammonite-$pkgver
+  install -dm755 "$pkgdir"/usr/bin
+  (echo "#!/bin/sh"; cat out/amm/$_scalaversion/assembly/dest/out.jar) > 
"$pkgdir"/usr/bin/amm
+  chmod +x "$pkgdir"/usr/bin/amm
+  install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+}


[arch-commits] Commit in haskell-optparse-applicative/repos/community-staging-x86_64 (2 files)

2020-11-26 Thread Felix Yan via arch-commits
Date: Thursday, November 26, 2020 @ 22:56:55
  Author: felixonmars
Revision: 763906

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-optparse-applicative/repos/community-staging-x86_64/PKGBUILD
(from rev 763905, haskell-optparse-applicative/trunk/PKGBUILD)
Deleted:
  haskell-optparse-applicative/repos/community-staging-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-26 22:56:44 UTC (rev 763905)
+++ PKGBUILD2020-11-26 22:56:55 UTC (rev 763906)
@@ -1,38 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Roger Duran 
-
-_hkgname=optparse-applicative
-pkgname=haskell-optparse-applicative
-pkgver=0.16.1.0
-pkgrel=3
-pkgdesc="Utilities and combinators for parsing command line options"
-url="https://github.com/pcapriotti/optparse-applicative;
-license=("BSD")
-arch=('x86_64')
-depends=('ghc-libs' "haskell-ansi-wl-pprint" "haskell-transformers-compat")
-makedepends=('ghc')
-source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha512sums=('46bdb37b1328a6dbf271dcdb3483266c0c8412fc489e68e32b114745d9cf0108dd49df6cb565df3470121931a769f11996f5fd9fd8e9e38ed6b6853faab56710')
-
-build() {
-cd $_hkgname-$pkgver
-
-runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
---prefix=/usr --docdir=/usr/share/doc/$pkgname \
---dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
-runhaskell Setup build $MAKEFLAGS
-runhaskell Setup register --gen-script
-runhaskell Setup unregister --gen-script
-sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
-sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
-}
-
-package() {
-cd $_hkgname-$pkgver
-
-install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
-install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
-runhaskell Setup copy --destdir="$pkgdir"
-install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
-}

Copied: haskell-optparse-applicative/repos/community-staging-x86_64/PKGBUILD 
(from rev 763905, haskell-optparse-applicative/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-26 22:56:55 UTC (rev 763906)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan 
+# Contributor: Roger Duran 
+
+_hkgname=optparse-applicative
+pkgname=haskell-optparse-applicative
+pkgver=0.16.1.0
+pkgrel=4
+pkgdesc="Utilities and combinators for parsing command line options"
+url="https://github.com/pcapriotti/optparse-applicative;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-ansi-wl-pprint" "haskell-transformers-compat")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('46bdb37b1328a6dbf271dcdb3483266c0c8412fc489e68e32b114745d9cf0108dd49df6cb565df3470121931a769f11996f5fd9fd8e9e38ed6b6853faab56710')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-11-26 Thread Felix Yan via arch-commits
Date: Thursday, November 26, 2020 @ 22:57:43
  Author: felixonmars
Revision: 763907

upgpkg: haskell-tasty 1.3.1-69: rebuild with unbounded-delays 0.1.1.1

Modified:
  haskell-tasty/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-26 22:56:55 UTC (rev 763906)
+++ PKGBUILD2020-11-26 22:57:43 UTC (rev 763907)
@@ -4,7 +4,7 @@
 _hkgname=tasty
 pkgname=haskell-tasty
 pkgver=1.3.1
-pkgrel=68
+pkgrel=69
 pkgdesc="Modern and extensible testing framework"
 url="http://documentup.com/feuerbach/tasty;
 license=("MIT")


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

2020-11-26 Thread Felix Yan via arch-commits
Date: Thursday, November 26, 2020 @ 22:57:52
  Author: felixonmars
Revision: 763908

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-tasty/repos/community-staging-x86_64/PKGBUILD (from rev 763907, 
haskell-tasty/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-26 22:57:52 UTC (rev 763908)
@@ -0,0 +1,41 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=tasty
+pkgname=haskell-tasty
+pkgver=1.3.1
+pkgrel=69
+pkgdesc="Modern and extensible testing framework"
+url="http://documentup.com/feuerbach/tasty;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-ansi-terminal' 'haskell-async' 'haskell-clock'
+ 'haskell-optparse-applicative' 'haskell-tagged' 
'haskell-unbounded-delays'
+ 'haskell-wcwidth')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('ed6e79f16a2c9e2fb7e82dce09b2ecb293b96bb42337d5cd8a15e822d3e35400842998ebda9b416c267d14f20a6e13c769a70ff22a58f7da5db3aa11e83411b2')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fclock
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-11-26 Thread Felix Yan via arch-commits
Date: Thursday, November 26, 2020 @ 22:58:48
  Author: felixonmars
Revision: 763910

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-tasty-smallcheck/repos/community-staging-x86_64/
  haskell-tasty-smallcheck/repos/community-staging-x86_64/PKGBUILD
(from rev 763909, haskell-tasty-smallcheck/trunk/PKGBUILD)

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

Copied: haskell-tasty-smallcheck/repos/community-staging-x86_64/PKGBUILD (from 
rev 763909, haskell-tasty-smallcheck/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-26 22:58:48 UTC (rev 763910)
@@ -0,0 +1,37 @@
+# Maintainer: Felix Yan 
+
+_hkgname=tasty-smallcheck
+pkgname=haskell-tasty-smallcheck
+pkgver=0.8.1
+pkgrel=119
+pkgdesc="SmallCheck support for the Tasty test framework"
+url="http://documentup.com/feuerbach/tasty;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-async' 'haskell-tasty' 'haskell-smallcheck' 
'haskell-tagged')
+makedepends=('ghc')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('26ed0d75559c2da2f4296af6e9b02f8d0a19043b0ef154674eb782703fcd3ad7f4863b7b07dbaae27440078b4b00a9272cd9d5da23089993018e933577be5893')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-11-26 Thread Felix Yan via arch-commits
Date: Thursday, November 26, 2020 @ 22:56:44
  Author: felixonmars
Revision: 763905

upgpkg: haskell-optparse-applicative 0.16.1.0-4: rebuild with unbounded-delays 
0.1.1.1

Modified:
  haskell-optparse-applicative/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-26 22:54:42 UTC (rev 763904)
+++ PKGBUILD2020-11-26 22:56:44 UTC (rev 763905)
@@ -4,7 +4,7 @@
 _hkgname=optparse-applicative
 pkgname=haskell-optparse-applicative
 pkgver=0.16.1.0
-pkgrel=3
+pkgrel=4
 pkgdesc="Utilities and combinators for parsing command line options"
 url="https://github.com/pcapriotti/optparse-applicative;
 license=("BSD")


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

2020-11-26 Thread Felix Yan via arch-commits
Date: Thursday, November 26, 2020 @ 22:54:42
  Author: felixonmars
Revision: 763904

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-async/repos/community-staging-x86_64/PKGBUILD (from rev 763903, 
haskell-async/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-26 22:54:42 UTC (rev 763904)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=async
+pkgname=haskell-async
+pkgver=2.2.2
+pkgrel=40
+pkgdesc="Run IO operations asynchronously and wait for their results"
+url="https://github.com/simonmar/async;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-hashable')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('6984c74b76dc1db73363ca2e360d2be6f2e7b4de5c7de452c4df7ee996b2256790a8cecb532af6d7d675541315a16f8e4ce566c5f79e4102e4a857f057e2d811')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i 's/< *4.14/<5/' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-11-26 Thread Felix Yan via arch-commits
Date: Thursday, November 26, 2020 @ 22:54:33
  Author: felixonmars
Revision: 763903

upgpkg: haskell-async 2.2.2-40: rebuild with unbounded-delays 0.1.1.1

Modified:
  haskell-async/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-26 22:53:55 UTC (rev 763902)
+++ PKGBUILD2020-11-26 22:54:33 UTC (rev 763903)
@@ -4,7 +4,7 @@
 _hkgname=async
 pkgname=haskell-async
 pkgver=2.2.2
-pkgrel=39
+pkgrel=40
 pkgdesc="Run IO operations asynchronously and wait for their results"
 url="https://github.com/simonmar/async;
 license=("BSD")


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

2020-11-26 Thread Morten Linderud via arch-commits
Date: Thursday, November 26, 2020 @ 22:24:01
  Author: foxboron
Revision: 763859

archrelease: copy trunk to community-x86_64

Added:
  containerd/repos/community-x86_64/PKGBUILD
(from rev 763858, containerd/trunk/PKGBUILD)
Deleted:
  containerd/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-26 22:23:51 UTC (rev 763858)
+++ PKGBUILD2020-11-26 22:24:01 UTC (rev 763859)
@@ -1,44 +0,0 @@
-# Maintainer: Morten Linderud 
-# Maintainer: Santiago Torres-Arias 
-# Contributor: Sébastien "Seblu" Luttringer
-# Contributor: Iwan Timmer 
-
-pkgname=containerd
-pkgver=1.4.2
-pkgrel=1
-pkgdesc='An open and reliable container runtime'
-url='https://containerd.io/'
-depends=('runc')
-makedepends=('go' 'git' 'btrfs-progs' 'libseccomp')
-arch=('x86_64')
-license=("Apache")
-source=("git+https://github.com/containerd/containerd.git#tag=v${pkgver}?signed;)
-validpgpkeys=("8C7A111C21105794B0E8A27BF58C5D0A4405ACDB") # Derek McGowan
-sha256sums=('SKIP')
-
-prepare() {
-  mkdir -p src/github.com/containerd
-  ln -rTsf $pkgname src/github.com/containerd/containerd
-
-  # fix paths in service
-  sed -i 's,/sbin,/usr/bin,;s,/usr/local,/usr,' $pkgname/containerd.service
-}
-
-build() {
-  export GOPATH="$srcdir"
-  cd src/github.com/containerd/containerd
-  export GOFLAGS="-trimpath -mod=readonly -modcacherw"
-  make VERSION=v$pkgver
-}
-
-check() {
-  cd src/github.com/containerd/containerd
-  GOFLAGS="" make test
-}
-
-package() {
-  export GOPATH="$srcdir"
-  cd src/github.com/containerd/containerd
-  make install DESTDIR="$pkgdir/usr"
-  install -Dm644 containerd.service 
"$pkgdir"/usr/lib/systemd/system/containerd.service
-}

Copied: containerd/repos/community-x86_64/PKGBUILD (from rev 763858, 
containerd/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-26 22:24:01 UTC (rev 763859)
@@ -0,0 +1,45 @@
+# Maintainer: Morten Linderud 
+# Maintainer: Santiago Torres-Arias 
+# Contributor: Sébastien "Seblu" Luttringer
+# Contributor: Iwan Timmer 
+
+pkgname=containerd
+pkgver=1.4.2
+pkgrel=2
+pkgdesc='An open and reliable container runtime'
+url='https://containerd.io/'
+depends=('runc')
+makedepends=('go' 'git' 'btrfs-progs' 'libseccomp' 'containers-common')
+provides=('container-runtime')
+arch=('x86_64')
+license=("Apache")
+source=("git+https://github.com/containerd/containerd.git#tag=v${pkgver}?signed;)
+validpgpkeys=("8C7A111C21105794B0E8A27BF58C5D0A4405ACDB") # Derek McGowan
+sha256sums=('SKIP')
+
+prepare() {
+  mkdir -p src/github.com/containerd
+  ln -rTsf $pkgname src/github.com/containerd/containerd
+
+  # fix paths in service
+  sed -i 's,/sbin,/usr/bin,;s,/usr/local,/usr,' $pkgname/containerd.service
+}
+
+build() {
+  export GOPATH="$srcdir"
+  cd src/github.com/containerd/containerd
+  export GOFLAGS="-trimpath -mod=readonly -modcacherw"
+  make VERSION=v$pkgver
+}
+
+check() {
+  cd src/github.com/containerd/containerd
+  GOFLAGS="" make test
+}
+
+package() {
+  export GOPATH="$srcdir"
+  cd src/github.com/containerd/containerd
+  make install DESTDIR="$pkgdir/usr"
+  install -Dm644 containerd.service 
"$pkgdir"/usr/lib/systemd/system/containerd.service
+}


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

2020-11-26 Thread Felix Yan via arch-commits
Date: Thursday, November 26, 2020 @ 22:51:25
  Author: felixonmars
Revision: 763896

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-test-framework/repos/community-staging-x86_64/PKGBUILD (from 
rev 763895, haskell-test-framework/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-26 22:51:25 UTC (rev 763896)
@@ -0,0 +1,50 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=test-framework
+pkgname=haskell-test-framework
+pkgver=0.8.2.0
+pkgrel=125
+pkgdesc="Framework for running and organising tests, with HUnit and QuickCheck 
support"
+url="https://batterseapower.github.io/test-framework/;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-ansi-terminal' 'haskell-ansi-wl-pprint' 
'haskell-hostname'
+ 'haskell-old-locale' 'haskell-random' 'haskell-regex-posix' 
'haskell-xml')
+makedepends=('ghc' 'haskell-hunit' 'haskell-quickcheck' 'haskell-libxml')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('d8e7ea274819a1b49b9f938df527d22c808f456d25b84f03173ed5739c230fb037a57ce90c38f571801ee38e86bed6826df1c93f184e4a803c72ce5f41e4')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i -e '/semigroups/d' -e 's/< *0.6/<1/;s/< *0.9/<1/;s/< *1.9/<2/;s/< 
*1.2/<2/' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+# --enable-tests \  Doesn't work with new QuickCheck
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+# runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-11-26 Thread Felix Yan via arch-commits
Date: Thursday, November 26, 2020 @ 22:52:48
  Author: felixonmars
Revision: 763899

upgpkg: haskell-test-framework-quickcheck2 0.3.0.5-122: rebuild with 
unbounded-delays 0.1.1.1

Modified:
  haskell-test-framework-quickcheck2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-26 22:52:11 UTC (rev 763898)
+++ PKGBUILD2020-11-26 22:52:48 UTC (rev 763899)
@@ -4,7 +4,7 @@
 _hkgname=test-framework-quickcheck2
 pkgname=haskell-test-framework-quickcheck2
 pkgver=0.3.0.5
-pkgrel=121
+pkgrel=122
 pkgdesc="QuickCheck-2 support for the test-framework package"
 url="https://haskell.github.io/test-framework/;
 license=("BSD")


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

2020-11-26 Thread Felix Yan via arch-commits
Date: Thursday, November 26, 2020 @ 22:53:45
  Author: felixonmars
Revision: 763901

upgpkg: haskell-hashable 1.3.0.0-36: rebuild with unbounded-delays 0.1.1.1

Modified:
  haskell-hashable/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-26 22:52:58 UTC (rev 763900)
+++ PKGBUILD2020-11-26 22:53:45 UTC (rev 763901)
@@ -4,7 +4,7 @@
 _hkgname=hashable
 pkgname=haskell-hashable
 pkgver=1.3.0.0
-pkgrel=35
+pkgrel=36
 pkgdesc="Mutable hash tables in the ST monad"
 url="https://hackage.haskell.org/package/${_hkgname};
 license=('BSD')


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

2020-11-26 Thread Felix Yan via arch-commits
Date: Thursday, November 26, 2020 @ 22:53:55
  Author: felixonmars
Revision: 763902

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-hashable/repos/community-staging-x86_64/PKGBUILD (from rev 
763901, haskell-hashable/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-26 22:53:55 UTC (rev 763902)
@@ -0,0 +1,57 @@
+# Maintainer: Felix Yan 
+# Contributor: Thomas Dziedzic 
+
+_hkgname=hashable
+pkgname=haskell-hashable
+pkgver=1.3.0.0
+pkgrel=36
+pkgdesc="Mutable hash tables in the ST monad"
+url="https://hackage.haskell.org/package/${_hkgname};
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'sh')
+makedepends=('ghc')
+checkdepends=('haskell-hunit' 'haskell-quickcheck' 'haskell-random' 
'haskell-test-framework'
+ 'haskell-test-framework-hunit' 
'haskell-test-framework-quickcheck2')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('2ba9b0657ddc6faf8b8be88e79d3c49503dfee3a446fc16bdc851f357afef1b92b443d1582d462cea859e37a16b46ec762b1dcf613458c5a15f800a8fccdb0ac')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i 's/< *4.14/<5/;s/< *1.2/<2/' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+if (( CHECKFUNC )); then
+_opts=('--enable-tests')
+else
+_opts=('--disable-tests')
+fi
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname "${_opts[@]}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-examples
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-11-26 Thread Felix Yan via arch-commits
Date: Thursday, November 26, 2020 @ 22:52:11
  Author: felixonmars
Revision: 763898

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-test-framework-hunit/repos/community-staging-x86_64/
  haskell-test-framework-hunit/repos/community-staging-x86_64/PKGBUILD
(from rev 763897, haskell-test-framework-hunit/trunk/PKGBUILD)

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

Copied: haskell-test-framework-hunit/repos/community-staging-x86_64/PKGBUILD 
(from rev 763897, haskell-test-framework-hunit/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-26 22:52:11 UTC (rev 763898)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=test-framework-hunit
+pkgname=haskell-test-framework-hunit
+pkgver=0.3.0.2
+pkgrel=142
+pkgdesc="HUnit support for the test-framework package."
+url="https://batterseapower.github.io/test-framework/;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-hunit" "haskell-extensible-exceptions" 
"haskell-test-framework")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('068ca4326935746769aa4023076e9bd85d1753073c6e67d88daa6ccf2a69f3bafb87c3b03fd5ada612f6ddbdf2447b06ef8f853675cf0efe9eafd80606c40e32')
+
+prepare() {
+sed -i 's/HUnit >= 1.2 && < 1.4/HUnit >= 1.2 \&\& < 1.7/' 
$_hkgname-$pkgver/$_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-base3 -fbase4
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


[arch-commits] Commit in haskell-ansi-wl-pprint/repos/community-staging-x86_64 (2 files)

2020-11-26 Thread Felix Yan via arch-commits
Date: Thursday, November 26, 2020 @ 22:50:33
  Author: felixonmars
Revision: 763894

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-ansi-wl-pprint/repos/community-staging-x86_64/PKGBUILD
(from rev 763893, haskell-ansi-wl-pprint/trunk/PKGBUILD)
Deleted:
  haskell-ansi-wl-pprint/repos/community-staging-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-26 22:50:22 UTC (rev 763893)
+++ PKGBUILD2020-11-26 22:50:33 UTC (rev 763894)
@@ -1,44 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Arch Haskell Team 
-
-_hkgname=ansi-wl-pprint
-pkgname=haskell-ansi-wl-pprint
-pkgver=0.6.9
-pkgrel=74
-pkgdesc="The Wadler/Leijen Pretty Printer for colored ANSI terminal output"
-url="https://github.com/ekmett/ansi-wl-pprint;
-license=("BSD")
-arch=('x86_64')
-depends=('ghc-libs' 'haskell-ansi-terminal')
-makedepends=('ghc')
-source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha512sums=('2a66236f740f0b45b6133555e8b1315dc85ece1c16dd51e4aa7f31d2fee03d66869af5f81e6383aa840f503c2cad46f3655f53b784ebca7b3480efb53eea2a04')
-
-prepare() {
-cd $_hkgname-$pkgver
-sed -i 's/< *0.10/<1/' $_hkgname.cabal
-}
-
-build() {
-cd $_hkgname-$pkgver
-
-runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
---prefix=/usr --docdir=/usr/share/doc/$pkgname \
---dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
--f-example
-runhaskell Setup build $MAKEFLAGS
-runhaskell Setup register --gen-script
-runhaskell Setup unregister --gen-script
-sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
-sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
-}
-
-package() {
-cd $_hkgname-$pkgver
-
-install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
-install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
-runhaskell Setup copy --destdir="$pkgdir"
-install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
-}

Copied: haskell-ansi-wl-pprint/repos/community-staging-x86_64/PKGBUILD (from 
rev 763893, haskell-ansi-wl-pprint/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-26 22:50:33 UTC (rev 763894)
@@ -0,0 +1,44 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=ansi-wl-pprint
+pkgname=haskell-ansi-wl-pprint
+pkgver=0.6.9
+pkgrel=75
+pkgdesc="The Wadler/Leijen Pretty Printer for colored ANSI terminal output"
+url="https://github.com/ekmett/ansi-wl-pprint;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-ansi-terminal')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('2a66236f740f0b45b6133555e8b1315dc85ece1c16dd51e4aa7f31d2fee03d66869af5f81e6383aa840f503c2cad46f3655f53b784ebca7b3480efb53eea2a04')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i 's/< *0.10/<1/' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-example
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-11-26 Thread Felix Yan via arch-commits
Date: Thursday, November 26, 2020 @ 22:52:02
  Author: felixonmars
Revision: 763897

upgpkg: haskell-test-framework-hunit 0.3.0.2-142: rebuild with unbounded-delays 
0.1.1.1

Modified:
  haskell-test-framework-hunit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-26 22:51:25 UTC (rev 763896)
+++ PKGBUILD2020-11-26 22:52:02 UTC (rev 763897)
@@ -4,7 +4,7 @@
 _hkgname=test-framework-hunit
 pkgname=haskell-test-framework-hunit
 pkgver=0.3.0.2
-pkgrel=141
+pkgrel=142
 pkgdesc="HUnit support for the test-framework package."
 url="https://batterseapower.github.io/test-framework/;
 license=("BSD")


  1   2   3   4   5   >