[arch-commits] Commit in firefox-tree-style-tab/trunk (PKGBUILD)

2020-11-30 Thread Daniel M. Capella via arch-commits
Date: Monday, November 30, 2020 @ 08:02:27
  Author: polyzen
Revision: 766538

upgpkg: firefox-tree-style-tab 3.6.2-2: Build from source

Modified:
  firefox-tree-style-tab/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-30 06:24:41 UTC (rev 766537)
+++ PKGBUILD2020-11-30 08:02:27 UTC (rev 766538)
@@ -1,21 +1,34 @@
 # Maintainer: Daniel M. Capella 
 # Contributor: Jérémie Detrey 
 
+_name=treestyletab
 pkgname=firefox-tree-style-tab
 pkgver=3.6.2
-pkgrel=1
+pkgrel=2
 pkgdesc='Firefox extension to show tabs like a tree'
 arch=('any')
+url=https://piro.sakura.ne.jp/xul/_treestyletab.html.en
 license=('MPL' 'MPL2')
 groups=('firefox-addons')
-url=https://piro.sakura.ne.jp/xul/_treestyletab.html.en
-source=("https://addons.cdn.mozilla.net/user-media/addons/5890/tree_style_tab_-$pkgver-fx.xpi";)
-noextract=("${source##*/}")
-sha256sums=('1200e00dcc7a0a79c848ee667e364df5a6465302b2613f631886aec316deedcb')
-b2sums=('94b6be305de38271bc871e7ecd2a3a10b15ccc7c417e74b4860e7078ffbdc415865f8172ca1b79a70b436f496e493f4e53259ebb4fdf3372c7140d4abd76247b')
+makedepends=('git' 'zip')
+source=("git+https://github.com/piroor/treestyletab.git#tag=$pkgver";)
+b2sums=('SKIP')
 
+prepare() {
+  cd $_name/webextensions
+  sed -i 's/^xpi:.*/xpi:/' Makefile
+  git submodule update --init
+}
+
+build() {
+  cd $_name/webextensions
+  make install_extlib
+  make xpi
+}
+
 package() {
-  install -Dm644 "${source##*/}" 
"$pkgdir"/usr/lib/firefox/browser/extensions/treestyle...@piro.sakura.ne.jp.xpi
+  cd $_name/webextensions
+  install -Dm644 $_name-we.xpi 
"$pkgdir"/usr/lib/firefox/browser/extensions/$_n...@piro.sakura.ne.jp.xpi
 }
 
 # vim:set ts=2 sw=2 et:


[arch-commits] Commit in firefox-tree-style-tab/repos/community-any (2 files)

2020-11-30 Thread Daniel M. Capella via arch-commits
Date: Monday, November 30, 2020 @ 08:02:48
  Author: polyzen
Revision: 766539

archrelease: copy trunk to community-any

Added:
  firefox-tree-style-tab/repos/community-any/PKGBUILD
(from rev 766538, firefox-tree-style-tab/trunk/PKGBUILD)
Deleted:
  firefox-tree-style-tab/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-30 08:02:27 UTC (rev 766538)
+++ PKGBUILD2020-11-30 08:02:48 UTC (rev 766539)
@@ -1,21 +0,0 @@
-# Maintainer: Daniel M. Capella 
-# Contributor: Jérémie Detrey 
-
-pkgname=firefox-tree-style-tab
-pkgver=3.6.2
-pkgrel=1
-pkgdesc='Firefox extension to show tabs like a tree'
-arch=('any')
-license=('MPL' 'MPL2')
-groups=('firefox-addons')
-url=https://piro.sakura.ne.jp/xul/_treestyletab.html.en
-source=("https://addons.cdn.mozilla.net/user-media/addons/5890/tree_style_tab_-$pkgver-fx.xpi";)
-noextract=("${source##*/}")
-sha256sums=('1200e00dcc7a0a79c848ee667e364df5a6465302b2613f631886aec316deedcb')
-b2sums=('94b6be305de38271bc871e7ecd2a3a10b15ccc7c417e74b4860e7078ffbdc415865f8172ca1b79a70b436f496e493f4e53259ebb4fdf3372c7140d4abd76247b')
-
-package() {
-  install -Dm644 "${source##*/}" 
"$pkgdir"/usr/lib/firefox/browser/extensions/treestyle...@piro.sakura.ne.jp.xpi
-}
-
-# vim:set ts=2 sw=2 et:

Copied: firefox-tree-style-tab/repos/community-any/PKGBUILD (from rev 766538, 
firefox-tree-style-tab/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-30 08:02:48 UTC (rev 766539)
@@ -0,0 +1,34 @@
+# Maintainer: Daniel M. Capella 
+# Contributor: Jérémie Detrey 
+
+_name=treestyletab
+pkgname=firefox-tree-style-tab
+pkgver=3.6.2
+pkgrel=2
+pkgdesc='Firefox extension to show tabs like a tree'
+arch=('any')
+url=https://piro.sakura.ne.jp/xul/_treestyletab.html.en
+license=('MPL' 'MPL2')
+groups=('firefox-addons')
+makedepends=('git' 'zip')
+source=("git+https://github.com/piroor/treestyletab.git#tag=$pkgver";)
+b2sums=('SKIP')
+
+prepare() {
+  cd $_name/webextensions
+  sed -i 's/^xpi:.*/xpi:/' Makefile
+  git submodule update --init
+}
+
+build() {
+  cd $_name/webextensions
+  make install_extlib
+  make xpi
+}
+
+package() {
+  cd $_name/webextensions
+  install -Dm644 $_name-we.xpi 
"$pkgdir"/usr/lib/firefox/browser/extensions/$_n...@piro.sakura.ne.jp.xpi
+}
+
+# vim:set ts=2 sw=2 et:


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

2020-11-30 Thread Daniel M. Capella via arch-commits
Date: Monday, November 30, 2020 @ 08:58:01
  Author: polyzen
Revision: 766540

upgpkg: firefox-decentraleyes 2.0.15-2: Build from source and add check()

Modified:
  firefox-decentraleyes/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-30 08:02:48 UTC (rev 766539)
+++ PKGBUILD2020-11-30 08:58:01 UTC (rev 766540)
@@ -2,18 +2,28 @@
 
 pkgname=firefox-decentraleyes
 pkgver=2.0.15
-pkgrel=1
+_commit=bcd62f75b346f838200cf29037cb5429620797a5
+pkgrel=2
 pkgdesc='Local emulation of Content Delivery Networks'
 url=https://decentraleyes.org/
 arch=('any')
 license=('MPL2')
 groups=('firefox-addons')
-source=("https://addons.cdn.mozilla.net/user-media/addons/521554/decentraleyes-$pkgver-an+fx.xpi";)
-noextract=("${source##*/}")
-sha256sums=('2554069168458cc1351e5d37ee995de044e514ec72369829ff0bcbf31d586ddf')
+makedepends=('git' 'npm' 'zip')
+source=("git+https://git.synz.io/Synzvato/decentraleyes.git#commit=$_commit?signed";)
+b2sums=('SKIP')
+validpgpkeys=('A6B7BA10893FE67EE17A9F8FCECC45E1E979013C') # Thomas Rientjes 

 
+check() {
+  cd decentraleyes/audit
+  npm install
+  node run
+}
+
 package() {
-  install -Dm644 "${source##*/}" 
"$pkgdir"/usr/lib/firefox/browser/extensions/jid1-bofifl9vbdl...@jetpack.xpi
+  cd decentraleyes
+  install -d "$pkgdir"/usr/lib/firefox/browser/extensions
+  zip -r 
"$pkgdir"/usr/lib/firefox/browser/extensions/jid1-bofifl9vbdl...@jetpack.xpi * 
-x '.git*' 'audit/*' crowdin.yaml
 }
 
 # vim:set ts=2 sw=2 et:


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

2020-11-30 Thread Daniel M. Capella via arch-commits
Date: Monday, November 30, 2020 @ 08:58:25
  Author: polyzen
Revision: 766541

archrelease: copy trunk to community-any

Added:
  firefox-decentraleyes/repos/community-any/PKGBUILD
(from rev 766540, firefox-decentraleyes/trunk/PKGBUILD)
Deleted:
  firefox-decentraleyes/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-30 08:58:01 UTC (rev 766540)
+++ PKGBUILD2020-11-30 08:58:25 UTC (rev 766541)
@@ -1,19 +0,0 @@
-# Maintainer: Daniel M. Capella 
-
-pkgname=firefox-decentraleyes
-pkgver=2.0.15
-pkgrel=1
-pkgdesc='Local emulation of Content Delivery Networks'
-url=https://decentraleyes.org/
-arch=('any')
-license=('MPL2')
-groups=('firefox-addons')
-source=("https://addons.cdn.mozilla.net/user-media/addons/521554/decentraleyes-$pkgver-an+fx.xpi";)
-noextract=("${source##*/}")
-sha256sums=('2554069168458cc1351e5d37ee995de044e514ec72369829ff0bcbf31d586ddf')
-
-package() {
-  install -Dm644 "${source##*/}" 
"$pkgdir"/usr/lib/firefox/browser/extensions/jid1-bofifl9vbdl...@jetpack.xpi
-}
-
-# vim:set ts=2 sw=2 et:

Copied: firefox-decentraleyes/repos/community-any/PKGBUILD (from rev 766540, 
firefox-decentraleyes/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-30 08:58:25 UTC (rev 766541)
@@ -0,0 +1,29 @@
+# Maintainer: Daniel M. Capella 
+
+pkgname=firefox-decentraleyes
+pkgver=2.0.15
+_commit=bcd62f75b346f838200cf29037cb5429620797a5
+pkgrel=2
+pkgdesc='Local emulation of Content Delivery Networks'
+url=https://decentraleyes.org/
+arch=('any')
+license=('MPL2')
+groups=('firefox-addons')
+makedepends=('git' 'npm' 'zip')
+source=("git+https://git.synz.io/Synzvato/decentraleyes.git#commit=$_commit?signed";)
+b2sums=('SKIP')
+validpgpkeys=('A6B7BA10893FE67EE17A9F8FCECC45E1E979013C') # Thomas Rientjes 

+
+check() {
+  cd decentraleyes/audit
+  npm install
+  node run
+}
+
+package() {
+  cd decentraleyes
+  install -d "$pkgdir"/usr/lib/firefox/browser/extensions
+  zip -r 
"$pkgdir"/usr/lib/firefox/browser/extensions/jid1-bofifl9vbdl...@jetpack.xpi * 
-x '.git*' 'audit/*' crowdin.yaml
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in (sauerbraten-data)

2020-11-30 Thread Laurent Carlier via arch-commits
Date: Monday, November 30, 2020 @ 09:20:46
  Author: lcarlier
Revision: 766542

now part of sauerbraten package

Deleted:
  sauerbraten-data/


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

2020-11-30 Thread Laurent Carlier via arch-commits
Date: Monday, November 30, 2020 @ 09:22:02
  Author: lcarlier
Revision: 766543

upgpkg: sauerbraten 2020_11_29-1: upstream update 2020_11_29

Modified:
  sauerbraten/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-30 09:20:46 UTC (rev 766542)
+++ PKGBUILD2020-11-30 09:22:02 UTC (rev 766543)
@@ -4,14 +4,14 @@
 # Contributor: Christoph Siegenthaler 
 # Contributor: Jesse Young 
 
-pkgname=sauerbraten
-pkgver=2013_02_03_collect_edition
-pkgrel=7
+pkgname=('sauerbraten' 'sauerbraten-data')
+pkgver=2020_11_29
+pkgrel=1
 pkgdesc="FPS that uses an improved version of the Cube engine"
 arch=('x86_64')
 url="http://www.sauerbraten.org/";
 license=('ZLIB')
-makedepends=('sdl_mixer' 'sdl_image' 'mesa-libgl' 'glu') # gendesk
+makedepends=('sdl2_mixer' 'sdl2_image' 'mesa-libgl' 'glu')
 backup=('etc/conf.d/sauerbraten')
 
source=(https://downloads.sourceforge.net/$pkgname/${pkgname}_${pkgver}_linux.tar.bz2
 sauerbraten-client
@@ -22,7 +22,7 @@
 sauerbraten.sysusers
 sauerbraten.desktop
 license.txt)
-md5sums=('2cfbd619981402898f97b93be08d58ac'
+md5sums=('762ad9bee1205a15986784926da54746'
  'cb84f0baa72ad88b939a9e5fd0916559'
  '4a42c314d01ccdc4c76fad38d18c7434'
  'c28be8761ede9ca82b6ab311aa7f6d42'
@@ -34,16 +34,14 @@
 #_exec=('sauerbraten-client %u')
 
 build() {
-#  cd "$srcdir"
-#  gendesk ## broken ##
-
   cd "$pkgname/src"
 
   make
 }
 
-package() {
-  depends=('sdl_mixer' 'sdl_image' 'libgl' 'sauerbraten-data')
+package_sauerbraten() {
+  pkgdesc="FPS that uses an improved version of the Cube engine"
+  depends=('sdl2_mixer' 'sdl2_image' 'libgl' 'sauerbraten-data')
 
   cd "${srcdir}"/$pkgname/src
 
@@ -62,3 +60,15 @@
   install -Dm644 "${srcdir}"/sauerbraten.png 
"${pkgdir}"/usr/share/pixmaps/sauerbraten.png
   install -Dm644 "${srcdir}"/license.txt 
"${pkgdir}"/usr/share/licenses/sauerbraten/license.txt
 }
+
+package_sauerbraten-data() {
+  pkgdesc="Improved version of the Cube engine - datas files"
+
+  cd "${srcdir}"/sauerbraten
+
+  install -d "${pkgdir}"/opt/sauerbraten
+  cp -r data "${pkgdir}"/opt/sauerbraten
+  cp -r packages "${pkgdir}"/opt/sauerbraten
+
+  install -Dm644 "${srcdir}"/license.txt 
"${pkgdir}"/usr/share/licenses/${pkgname}/license.txt
+}


[arch-commits] Commit in sauerbraten/repos/community-x86_64 (18 files)

2020-11-30 Thread Laurent Carlier via arch-commits
Date: Monday, November 30, 2020 @ 09:22:18
  Author: lcarlier
Revision: 766544

archrelease: copy trunk to community-x86_64

Added:
  sauerbraten/repos/community-x86_64/PKGBUILD
(from rev 766543, sauerbraten/trunk/PKGBUILD)
  sauerbraten/repos/community-x86_64/license.txt
(from rev 766543, sauerbraten/trunk/license.txt)
  sauerbraten/repos/community-x86_64/sauerbraten-client
(from rev 766543, sauerbraten/trunk/sauerbraten-client)
  sauerbraten/repos/community-x86_64/sauerbraten-server
(from rev 766543, sauerbraten/trunk/sauerbraten-server)
  sauerbraten/repos/community-x86_64/sauerbraten.confd
(from rev 766543, sauerbraten/trunk/sauerbraten.confd)
  sauerbraten/repos/community-x86_64/sauerbraten.desktop
(from rev 766543, sauerbraten/trunk/sauerbraten.desktop)
  sauerbraten/repos/community-x86_64/sauerbraten.png
(from rev 766543, sauerbraten/trunk/sauerbraten.png)
  sauerbraten/repos/community-x86_64/sauerbraten.service
(from rev 766543, sauerbraten/trunk/sauerbraten.service)
  sauerbraten/repos/community-x86_64/sauerbraten.sysusers
(from rev 766543, sauerbraten/trunk/sauerbraten.sysusers)
Deleted:
  sauerbraten/repos/community-x86_64/PKGBUILD
  sauerbraten/repos/community-x86_64/license.txt
  sauerbraten/repos/community-x86_64/sauerbraten-client
  sauerbraten/repos/community-x86_64/sauerbraten-server
  sauerbraten/repos/community-x86_64/sauerbraten.confd
  sauerbraten/repos/community-x86_64/sauerbraten.desktop
  sauerbraten/repos/community-x86_64/sauerbraten.png
  sauerbraten/repos/community-x86_64/sauerbraten.service
  sauerbraten/repos/community-x86_64/sauerbraten.sysusers

--+
 PKGBUILD |  138 ++---
 license.txt  |   68 
 sauerbraten-client   |   20 +++
 sauerbraten-server   |   44 +++
 sauerbraten.confd|6 +-
 sauerbraten.desktop  |   20 +++
 sauerbraten.service  |   26 -
 sauerbraten.sysusers |2 
 8 files changed, 167 insertions(+), 157 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-30 09:22:02 UTC (rev 766543)
+++ PKGBUILD2020-11-30 09:22:18 UTC (rev 766544)
@@ -1,64 +0,0 @@
-# Maintainer: Laurent Carlier 
-# Contributor: Jaroslaw Swierczynski 
-# Contributor: Roman Kyrylych 
-# Contributor: Christoph Siegenthaler 
-# Contributor: Jesse Young 
-
-pkgname=sauerbraten
-pkgver=2013_02_03_collect_edition
-pkgrel=7
-pkgdesc="FPS that uses an improved version of the Cube engine"
-arch=('x86_64')
-url="http://www.sauerbraten.org/";
-license=('ZLIB')
-makedepends=('sdl_mixer' 'sdl_image' 'mesa-libgl' 'glu') # gendesk
-backup=('etc/conf.d/sauerbraten')
-source=(https://downloads.sourceforge.net/$pkgname/${pkgname}_${pkgver}_linux.tar.bz2
-sauerbraten-client
-sauerbraten-server
-sauerbraten.confd
-sauerbraten.png
-sauerbraten.service
-sauerbraten.sysusers
-sauerbraten.desktop
-license.txt)
-md5sums=('2cfbd619981402898f97b93be08d58ac'
- 'cb84f0baa72ad88b939a9e5fd0916559'
- '4a42c314d01ccdc4c76fad38d18c7434'
- 'c28be8761ede9ca82b6ab311aa7f6d42'
- '3e602f421f7342cf8c3ed16314523d6f'
- '3c964cdd0906461c0404641b1eb52d96'
- 'd34cc6df5b58e4d5e67d758bfeca0839'
- '05c1f5f33c744097c4c70f1e23738847'
- 'cf46cd0148f03b7477f7c54aec865abe')
-#_exec=('sauerbraten-client %u')
-
-build() {
-#  cd "$srcdir"
-#  gendesk ## broken ##
-
-  cd "$pkgname/src"
-
-  make
-}
-
-package() {
-  depends=('sdl_mixer' 'sdl_image' 'libgl' 'sauerbraten-data')
-
-  cd "${srcdir}"/$pkgname/src
-
-  make DESTDIR="${pkgdir}" install
-
-  cd ..
-  install -D bin_unix/native_client 
"${pkgdir}"/opt/sauerbraten/bin/linux_client
-  install -D bin_unix/native_server 
"${pkgdir}"/opt/sauerbraten/bin/linux_server
-
-  install -Dm755 "${srcdir}"/sauerbraten-client 
"${pkgdir}"/usr/bin/sauerbraten-client
-  install -Dm755 "${srcdir}"/sauerbraten-server 
"${pkgdir}"/usr/bin/sauerbraten-server
-  install -Dm644 "${srcdir}"/sauerbraten.confd 
"${pkgdir}"/etc/conf.d/sauerbraten
-  install -Dm644 "${srcdir}"/sauerbraten.service 
"${pkgdir}"/usr/lib/systemd/system/sauerbraten.service
-  install -Dm644 "${srcdir}"/sauerbraten.sysusers 
"${pkgdir}"/usr/lib/sysusers.d/sauerbraten.conf
-  install -Dm644 "${srcdir}"/sauerbraten.desktop 
"${pkgdir}"/usr/share/applications/sauerbraten.desktop
-  install -Dm644 "${srcdir}"/sauerbraten.png 
"${pkgdir}"/usr/share/pixmaps/sauerbraten.png
-  install -Dm644 "${srcdir}"/license.txt 
"${pkgdir}"/usr/share/licenses/sauerbraten/license.txt
-}

Copied: sauerbraten/repos/community-x86_64/PKGBUILD (from rev 766543, 
sauerbraten/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-30 09:22:18 UTC (rev 766544)
@@ -0,0 +1,74 @@
+# Maintainer: Lau

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

2020-11-30 Thread Bartłomiej Piotrowski via arch-commits
Date: Monday, November 30, 2020 @ 09:39:48
  Author: bpiotrowski
Revision: 402403

2020.8-1

Modified:
  ostree/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-29 13:59:42 UTC (rev 402402)
+++ PKGBUILD2020-11-30 09:39:48 UTC (rev 402403)
@@ -2,8 +2,8 @@
 # Contributor: Mirco Tischler 
 
 pkgname=ostree
-pkgver=2020.3
-pkgrel=2
+pkgver=2020.8
+pkgrel=1
 pkgdesc="Operating system and container binary deployment and upgrades"
 url="https://ostree.readthedocs.org/en/latest/";
 arch=(x86_64)
@@ -11,7 +11,7 @@
 depends=(glib2 xz zlib libsoup gpgme libarchive fuse2 util-linux openssl avahi)
 makedepends=(e2fsprogs gobject-introspection gtk-doc libxslt systemd git 
python)
 checkdepends=(parallel syslinux gjs cpio elfutils)
-_commit=6ed48234ba579ff73eb128af237212b0a00f2057  # tags/v2020.3^0
+_commit=3e289b19345e30d2da193cd208e109f7d7aaa2a1  # tags/v2020.8^0
 source=("git+https://github.com/ostreedev/ostree#commit=$_commit";
 "git+https://github.com/mendsley/bsdiff";
 "git+https://gitlab.gnome.org/GNOME/libglnx.git";)


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

2020-11-30 Thread Bartłomiej Piotrowski via arch-commits
Date: Monday, November 30, 2020 @ 09:39:58
  Author: bpiotrowski
Revision: 402404

archrelease: copy trunk to extra-x86_64

Added:
  ostree/repos/extra-x86_64/PKGBUILD
(from rev 402403, ostree/trunk/PKGBUILD)
Deleted:
  ostree/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-30 09:39:48 UTC (rev 402403)
+++ PKGBUILD2020-11-30 09:39:58 UTC (rev 402404)
@@ -1,67 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Mirco Tischler 
-
-pkgname=ostree
-pkgver=2020.3
-pkgrel=2
-pkgdesc="Operating system and container binary deployment and upgrades"
-url="https://ostree.readthedocs.org/en/latest/";
-arch=(x86_64)
-license=(GPL)
-depends=(glib2 xz zlib libsoup gpgme libarchive fuse2 util-linux openssl avahi)
-makedepends=(e2fsprogs gobject-introspection gtk-doc libxslt systemd git 
python)
-checkdepends=(parallel syslinux gjs cpio elfutils)
-_commit=6ed48234ba579ff73eb128af237212b0a00f2057  # tags/v2020.3^0
-source=("git+https://github.com/ostreedev/ostree#commit=$_commit";
-"git+https://github.com/mendsley/bsdiff";
-"git+https://gitlab.gnome.org/GNOME/libglnx.git";)
-sha256sums=('SKIP'
-'SKIP'
-'SKIP')
-
-prepare() {
-  cd $pkgname
-
-  git submodule init
-  git config --local submodule.bsdiff.url "$srcdir/bsdiff"
-  git config --local submodule.libglnx.url "$srcdir/libglnx"
-  git submodule update
-
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-pkgver() {
-  cd $pkgname
-  git describe | sed 's/^v//;s/-/+/g'
-}
-
-build() {
-  cd $pkgname
-
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---localstatedir=/var \
---sbindir=/usr/bin \
---libexecdir=/usr/lib \
---with-mkinitcpio \
---with-openssl \
---with-builtin-grub2-mkconfig \
---enable-experimental-api \
---disable-static \
---enable-gtk-doc
-
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-check() {
-  cd $pkgname
-  make check || :
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-}

Copied: ostree/repos/extra-x86_64/PKGBUILD (from rev 402403, 
ostree/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-30 09:39:58 UTC (rev 402404)
@@ -0,0 +1,67 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Mirco Tischler 
+
+pkgname=ostree
+pkgver=2020.8
+pkgrel=1
+pkgdesc="Operating system and container binary deployment and upgrades"
+url="https://ostree.readthedocs.org/en/latest/";
+arch=(x86_64)
+license=(GPL)
+depends=(glib2 xz zlib libsoup gpgme libarchive fuse2 util-linux openssl avahi)
+makedepends=(e2fsprogs gobject-introspection gtk-doc libxslt systemd git 
python)
+checkdepends=(parallel syslinux gjs cpio elfutils)
+_commit=3e289b19345e30d2da193cd208e109f7d7aaa2a1  # tags/v2020.8^0
+source=("git+https://github.com/ostreedev/ostree#commit=$_commit";
+"git+https://github.com/mendsley/bsdiff";
+"git+https://gitlab.gnome.org/GNOME/libglnx.git";)
+sha256sums=('SKIP'
+'SKIP'
+'SKIP')
+
+prepare() {
+  cd $pkgname
+
+  git submodule init
+  git config --local submodule.bsdiff.url "$srcdir/bsdiff"
+  git config --local submodule.libglnx.url "$srcdir/libglnx"
+  git submodule update
+
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+pkgver() {
+  cd $pkgname
+  git describe | sed 's/^v//;s/-/+/g'
+}
+
+build() {
+  cd $pkgname
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--sbindir=/usr/bin \
+--libexecdir=/usr/lib \
+--with-mkinitcpio \
+--with-openssl \
+--with-builtin-grub2-mkconfig \
+--enable-experimental-api \
+--disable-static \
+--enable-gtk-doc
+
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+check() {
+  cd $pkgname
+  make check || :
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}


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

2020-11-30 Thread Bartłomiej Piotrowski via arch-commits
Date: Monday, November 30, 2020 @ 09:44:55
  Author: bpiotrowski
Revision: 402405

1.9.2-1

Modified:
  flatpak/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-30 09:39:58 UTC (rev 402404)
+++ PKGBUILD2020-11-30 09:44:55 UTC (rev 402405)
@@ -2,7 +2,7 @@
 # Contributor: Jan Alexander Steffens (heftig) 
 
 pkgname=flatpak
-pkgver=1.8.3
+pkgver=1.9.2
 pkgrel=1
 pkgdesc="Linux application sandboxing and distribution framework (formerly 
xdg-app)"
 url="https://flatpak.org";
@@ -12,7 +12,7 @@
  python bubblewrap appstream-glib xdg-dbus-proxy)
 makedepends=(intltool systemd gobject-introspection gtk-doc git docbook-xsl 
xmlto)
 checkdepends=(valgrind socat)
-_commit=815d4c4f0e08e94e27c68ed935dbc7f26df1ca4b
+_commit=aafe1f632c6bfa762b82c5a00a2382b7ea82bd38  # tags/1.9.2^0
 source=("git+https://github.com/flatpak/flatpak#commit=$_commit";
 "git+https://gitlab.gnome.org/GNOME/libglnx.git";
 "git+https://github.com/projectatomic/bubblewrap";


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

2020-11-30 Thread Bartłomiej Piotrowski via arch-commits
Date: Monday, November 30, 2020 @ 09:45:07
  Author: bpiotrowski
Revision: 402406

archrelease: copy trunk to extra-x86_64

Added:
  flatpak/repos/extra-x86_64/PKGBUILD
(from rev 402405, flatpak/trunk/PKGBUILD)
  flatpak/repos/extra-x86_64/flatpak-bindir.sh
(from rev 402405, flatpak/trunk/flatpak-bindir.sh)
Deleted:
  flatpak/repos/extra-x86_64/PKGBUILD
  flatpak/repos/extra-x86_64/flatpak-bindir.sh

---+
 PKGBUILD  |  172 ++--
 flatpak-bindir.sh |   14 ++--
 2 files changed, 93 insertions(+), 93 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-30 09:44:55 UTC (rev 402405)
+++ PKGBUILD2020-11-30 09:45:07 UTC (rev 402406)
@@ -1,86 +0,0 @@
-# Maintainer:  Bartłomiej Piotrowski 
-# Contributor: Jan Alexander Steffens (heftig) 
-
-pkgname=flatpak
-pkgver=1.8.3
-pkgrel=1
-pkgdesc="Linux application sandboxing and distribution framework (formerly 
xdg-app)"
-url="https://flatpak.org";
-arch=(x86_64)
-license=(LGPL2.1)
-depends=(dbus glib2 libsoup polkit libxau ostree json-glib libseccomp 
libarchive
- python bubblewrap appstream-glib xdg-dbus-proxy)
-makedepends=(intltool systemd gobject-introspection gtk-doc git docbook-xsl 
xmlto)
-checkdepends=(valgrind socat)
-_commit=815d4c4f0e08e94e27c68ed935dbc7f26df1ca4b
-source=("git+https://github.com/flatpak/flatpak#commit=$_commit";
-"git+https://gitlab.gnome.org/GNOME/libglnx.git";
-"git+https://github.com/projectatomic/bubblewrap";
-"git+https://github.com/flatpak/xdg-dbus-proxy";
-https://dl.flathub.org/repo/flathub.flatpakrepo
-flatpak-bindir.sh)
-sha256sums=('SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'3371dd250e61d9e1633630073fefda153cd4426f72f4afa0c3373ae2e8fea03a'
-'cf20e4831bceaaee74e9298b4ad7c4d2d51085d43f62d1c6a2d2977d2f421e00')
-
-prepare() {
-  cd $pkgname
-
-  git submodule init
-  git config --local submodule.bubblewrap.url "$srcdir/bubblewrap"
-  git config --local submodule.libglnx.url "$srcdir/libglnx"
-  git config --local submodule.dbus-proxy.url "$srcdir/xdg-dbus-proxy"
-  git submodule update
-
-  # https://github.com/flatpak/flatpak/issues/267
-  sed -i '/locale\/C\./d' tests/make-test-runtime.sh
-
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-build() {
-  cd $pkgname
-
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---localstatedir=/var \
---sbindir=/usr/bin \
---libexecdir=/usr/lib \
---disable-static \
---enable-gtk-doc \
---with-system-bubblewrap \
---with-system-dbus-proxy \
---with-dbus-config-dir=/usr/share/dbus-1/system.d
-
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-check() {
-  cd $pkgname
-  make -k check || :
-}
-
-package() {
-  depends+=(xdg-desktop-portal)
-
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-  rm -rf "$pkgdir/usr/share/selinux"
-
-  install -Dm644 "$srcdir/flatpak-bindir.sh" 
"$pkgdir/etc/profile.d/flatpak-bindir.sh"
-  install -Dm644 "$srcdir/flathub.flatpakrepo" 
"$pkgdir/etc/flatpak/remotes.d/flathub.flatpakrepo"
-
-  # Fixup mode to match polkit
-  install -d -o root -g 102 -m 750 "$pkgdir/usr/share/polkit-1/rules.d"
-}

Copied: flatpak/repos/extra-x86_64/PKGBUILD (from rev 402405, 
flatpak/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-30 09:45:07 UTC (rev 402406)
@@ -0,0 +1,86 @@
+# Maintainer:  Bartłomiej Piotrowski 
+# Contributor: Jan Alexander Steffens (heftig) 
+
+pkgname=flatpak
+pkgver=1.9.2
+pkgrel=1
+pkgdesc="Linux application sandboxing and distribution framework (formerly 
xdg-app)"
+url="https://flatpak.org";
+arch=(x86_64)
+license=(LGPL2.1)
+depends=(dbus glib2 libsoup polkit libxau ostree json-glib libseccomp 
libarchive
+ python bubblewrap appstream-glib xdg-dbus-proxy)
+makedepends=(intltool systemd gobject-introspection gtk-doc git docbook-xsl 
xmlto)
+checkdepends=(valgrind socat)
+_commit=aafe1f632c6bfa762b82c5a00a2382b7ea82bd38  # tags/1.9.2^0
+source=("git+https://github.com/flatpak/flatpak#commit=$_commit";
+"git+https://gitlab.gnome.org/GNOME/libglnx.git";
+"git+https://github.com/projectatomic/bubblewrap";
+"git+https://github.com/flatpak/xdg-dbus-proxy";
+https://dl.flathub.org/repo/flathub.flatpakrepo
+flatpak-bindir.sh)
+sha256sums=('SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'3371dd250e61d9e1633630073fefda153cd4426f72f4afa0c3373ae2e8fea03a'
+'cf20e4831bceaaee74e9298b4ad7c4d2d51085d43f62d1c6a2d2977d2f421e00')
+
+prepare() {
+  cd $pkgname
+
+  git submodule init
+  git config --local submodule.bubblewrap.url "$srcdir/bubblewrap"
+  git config --local submodule.libglnx.url "$srcdir/libgln

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

2020-11-30 Thread Felix Yan via arch-commits
Date: Monday, November 30, 2020 @ 10:53:55
  Author: felixonmars
Revision: 766546

upgpkg: rime-cantonese 0.0.0.20201129-1

Modified:
  rime-cantonese/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-30 10:53:55 UTC (rev 766545)
+++ PKGBUILD2020-11-30 10:53:55 UTC (rev 766546)
@@ -1,8 +1,8 @@
 # Maintainer: Felix Yan 
 
 pkgname=rime-cantonese
-pkgver=0.0.0.20201128
-_commit=252076b41005d83e07754e53fe904fd724db7f50
+pkgver=0.0.0.20201129
+_commit=3b792daeb39f7f32c1ff31518e4dc3bfb182104e
 pkgrel=1
 pkgdesc="Cantonese input for rime"
 arch=('x86_64')
@@ -12,7 +12,7 @@
 depends=('rime-cangjie' 'rime-emoji' 'rime-loengfan' 'rime-luna-pinyin' 
'rime-stroke')
 makedepends=('librime' 'rime-prelude' 'rime-essay')
 
source=("https://github.com/rime/rime-cantonese/archive/$_commit/rime-cantonese-$_commit.tar.gz";)
-sha512sums=('0c421092ea7b48d01af8b3cf7f0d813f7404c2f9edec89d5fabe0da17b0be67537c9d32b04312e03a6c0e3e167a63dff406d94c66b2ecfe85a7c30f4bf6e7f11')
+sha512sums=('ea3464e1ef22e6be159e48cc3f5e28d6225b42ea8ee4f0655fe592b8a66849098fa44cdd10541f847690adf1a59aa77fedf9a535966ad087ba836bda1b63f5a0')
 
 prepare() {
   cd $pkgname-$_commit


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

2020-11-30 Thread Felix Yan via arch-commits
Date: Monday, November 30, 2020 @ 10:54:09
  Author: felixonmars
Revision: 766552

archrelease: copy trunk to community-x86_64

Added:
  rime-cantonese/repos/community-x86_64/PKGBUILD
(from rev 766551, rime-cantonese/trunk/PKGBUILD)
Deleted:
  rime-cantonese/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-30 10:53:58 UTC (rev 766551)
+++ PKGBUILD2020-11-30 10:54:09 UTC (rev 766552)
@@ -1,35 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=rime-cantonese
-pkgver=0.0.0.20201128
-_commit=252076b41005d83e07754e53fe904fd724db7f50
-pkgrel=1
-pkgdesc="Cantonese input for rime"
-arch=('x86_64')
-url="https://github.com/rime/rime-cantonese";
-license=('CCPL:cc-by')
-# dependency for reverse lookup
-depends=('rime-cangjie' 'rime-emoji' 'rime-loengfan' 'rime-luna-pinyin' 
'rime-stroke')
-makedepends=('librime' 'rime-prelude' 'rime-essay')
-source=("https://github.com/rime/rime-cantonese/archive/$_commit/rime-cantonese-$_commit.tar.gz";)
-sha512sums=('0c421092ea7b48d01af8b3cf7f0d813f7404c2f9edec89d5fabe0da17b0be67537c9d32b04312e03a6c0e3e167a63dff406d94c66b2ecfe85a7c30f4bf6e7f11')
-
-prepare() {
-  cd $pkgname-$_commit
-  # Link essentials
-  for _f in $(pacman -Qql rime-prelude rime-essay | grep -v "/$"); do ln -sf 
$_f; done
-}
-
-build(){
-  cd $pkgname-$_commit
-  for _s in $(ls *.schema.yaml); do rime_deployer --compile $_s; done
-}
-
-package() {
-  cd $pkgname-$_commit
-  find . -type l -delete
-  rm build/*.txt
-  install -Dm644 *.yaml -t "$pkgdir"/usr/share/rime-data/
-  install -Dm644 build/* -t "$pkgdir"/usr/share/rime-data/build/
-  install -Dm644 opencc/* -t "$pkgdir"/usr/share/rime-data/opencc/
-}

Copied: rime-cantonese/repos/community-x86_64/PKGBUILD (from rev 766551, 
rime-cantonese/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-30 10:54:09 UTC (rev 766552)
@@ -0,0 +1,35 @@
+# Maintainer: Felix Yan 
+
+pkgname=rime-cantonese
+pkgver=0.0.0.20201129
+_commit=3b792daeb39f7f32c1ff31518e4dc3bfb182104e
+pkgrel=1
+pkgdesc="Cantonese input for rime"
+arch=('x86_64')
+url="https://github.com/rime/rime-cantonese";
+license=('CCPL:cc-by')
+# dependency for reverse lookup
+depends=('rime-cangjie' 'rime-emoji' 'rime-loengfan' 'rime-luna-pinyin' 
'rime-stroke')
+makedepends=('librime' 'rime-prelude' 'rime-essay')
+source=("https://github.com/rime/rime-cantonese/archive/$_commit/rime-cantonese-$_commit.tar.gz";)
+sha512sums=('ea3464e1ef22e6be159e48cc3f5e28d6225b42ea8ee4f0655fe592b8a66849098fa44cdd10541f847690adf1a59aa77fedf9a535966ad087ba836bda1b63f5a0')
+
+prepare() {
+  cd $pkgname-$_commit
+  # Link essentials
+  for _f in $(pacman -Qql rime-prelude rime-essay | grep -v "/$"); do ln -sf 
$_f; done
+}
+
+build(){
+  cd $pkgname-$_commit
+  for _s in $(ls *.schema.yaml); do rime_deployer --compile $_s; done
+}
+
+package() {
+  cd $pkgname-$_commit
+  find . -type l -delete
+  rm build/*.txt
+  install -Dm644 *.yaml -t "$pkgdir"/usr/share/rime-data/
+  install -Dm644 build/* -t "$pkgdir"/usr/share/rime-data/build/
+  install -Dm644 opencc/* -t "$pkgdir"/usr/share/rime-data/opencc/
+}


[arch-commits] Commit in firefox-extension-passff/trunk (PKGBUILD)

2020-11-30 Thread Daurnimator via arch-commits
Date: Monday, November 30, 2020 @ 11:49:20
  Author: daurnimator
Revision: 766553

upgpkg: firefox-extension-passff 1.10.4-1

Modified:
  firefox-extension-passff/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-30 10:54:09 UTC (rev 766552)
+++ PKGBUILD2020-11-30 11:49:20 UTC (rev 766553)
@@ -2,7 +2,7 @@
 # Contributor: Willem Mulder <14mrh4...@gmail.com>
 
 pkgname=firefox-extension-passff
-pkgver=1.10.3
+pkgver=1.10.4
 pkgrel=1
 pkgdesc="zx2c4 pass manager addon for firefox"
 url="https://github.com/passff/passff";
@@ -12,7 +12,7 @@
 replaces=('firefox-passff')
 depends=('firefox' 'passff-host')
 
source=("$pkgname-$pkgver.xpi::https://github.com/passff/passff/releases/download/${pkgver}/passff.xpi";)
-sha512sums=('23935f761954d4b4666b5fcfeda69d5967e38903d3b7ceb6f70b93778a7aed6f8257c1df0f0bc25bfd625bffe2e2a81507fdc433e040a129912004c0ce052967')
+sha512sums=('0aef5dfc48f4984f8655655eb51d6a79fddf3ef93ff89ffe546ea9c8b8cf6b18930ba4ae5c41492c97cd65f01e249b84f3cd2cd5ae7ca2016a7d1a71ee5c689f')
 noextract=("$pkgname-$pkgver.xpi")
 
 package() {


[arch-commits] Commit in firefox-extension-passff/repos/community-any (2 files)

2020-11-30 Thread Daurnimator via arch-commits
Date: Monday, November 30, 2020 @ 11:50:02
  Author: daurnimator
Revision: 766554

archrelease: copy trunk to community-any

Added:
  firefox-extension-passff/repos/community-any/PKGBUILD
(from rev 766553, firefox-extension-passff/trunk/PKGBUILD)
Deleted:
  firefox-extension-passff/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-30 11:49:20 UTC (rev 766553)
+++ PKGBUILD2020-11-30 11:50:02 UTC (rev 766554)
@@ -1,21 +0,0 @@
-# Maintainer: Daurnimator 
-# Contributor: Willem Mulder <14mrh4...@gmail.com>
-
-pkgname=firefox-extension-passff
-pkgver=1.10.3
-pkgrel=1
-pkgdesc="zx2c4 pass manager addon for firefox"
-url="https://github.com/passff/passff";
-license=('GPL2')
-arch=('any')
-groups=('firefox-addons')
-replaces=('firefox-passff')
-depends=('firefox' 'passff-host')
-source=("$pkgname-$pkgver.xpi::https://github.com/passff/passff/releases/download/${pkgver}/passff.xpi";)
-sha512sums=('23935f761954d4b4666b5fcfeda69d5967e38903d3b7ceb6f70b93778a7aed6f8257c1df0f0bc25bfd625bffe2e2a81507fdc433e040a129912004c0ce052967')
-noextract=("$pkgname-$pkgver.xpi")
-
-package() {
-install -Dm644 "$pkgname-$pkgver.xpi" \
-"${pkgdir}/usr/lib/firefox/browser/extensions/pas...@invicem.pro.xpi"
-}

Copied: firefox-extension-passff/repos/community-any/PKGBUILD (from rev 766553, 
firefox-extension-passff/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-30 11:50:02 UTC (rev 766554)
@@ -0,0 +1,21 @@
+# Maintainer: Daurnimator 
+# Contributor: Willem Mulder <14mrh4...@gmail.com>
+
+pkgname=firefox-extension-passff
+pkgver=1.10.4
+pkgrel=1
+pkgdesc="zx2c4 pass manager addon for firefox"
+url="https://github.com/passff/passff";
+license=('GPL2')
+arch=('any')
+groups=('firefox-addons')
+replaces=('firefox-passff')
+depends=('firefox' 'passff-host')
+source=("$pkgname-$pkgver.xpi::https://github.com/passff/passff/releases/download/${pkgver}/passff.xpi";)
+sha512sums=('0aef5dfc48f4984f8655655eb51d6a79fddf3ef93ff89ffe546ea9c8b8cf6b18930ba4ae5c41492c97cd65f01e249b84f3cd2cd5ae7ca2016a7d1a71ee5c689f')
+noextract=("$pkgname-$pkgver.xpi")
+
+package() {
+install -Dm644 "$pkgname-$pkgver.xpi" \
+"${pkgdir}/usr/lib/firefox/browser/extensions/pas...@invicem.pro.xpi"
+}


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

2020-11-30 Thread Giancarlo Razzolini via arch-commits
Date: Monday, November 30, 2020 @ 12:04:56
  Author: grazzolini
Revision: 402407

upgpkg: dhcpcd 9.3.4-1

Modified:
  dhcpcd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-30 09:45:07 UTC (rev 402406)
+++ PKGBUILD2020-11-30 12:04:56 UTC (rev 402407)
@@ -4,7 +4,7 @@
 # Contributor: Judd Vinet 
 
 pkgname=dhcpcd
-pkgver=9.3.3
+pkgver=9.3.4
 pkgrel=1
 pkgdesc="RFC2131 compliant DHCP client daemon"
 url="https://roy.marples.name/projects/dhcpcd/";
@@ -23,7 +23,7 @@
 dhcpcd.sysusers
 dhcpcd.tmpfiles)
 validpgpkeys=('A785ED2755955D9E93EA59F6597F97EA9AD45549')  # Roy Marples 
(NetBSD) 
-sha256sums=('2d49f00b233832e12b6cb0b033be0c6fdff20e019dfae5bda2b87d7551e2c4c1'
+sha256sums=('5c823a0b981b52e7e0fd3183ae220422d6fcc3aa511af31dcb1a7ee6cb0f1c39'
 'd40d51367fcf7e9596e42cd2bab59404633bedbab4d0a3183e7246b4677937b7'
 '37acd53a589711f5e1db2fcaebb4ccf1c90dc4bcd309626bde25beb7b630a545'
 '20bccbf8a05b1bc2be365c8b4b526c38c752f48229ba53c3be113ac5b634f210'


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

2020-11-30 Thread Giancarlo Razzolini via arch-commits
Date: Monday, November 30, 2020 @ 12:06:20
  Author: grazzolini
Revision: 402408

archrelease: copy trunk to testing-x86_64

Added:
  dhcpcd/repos/testing-x86_64/
  dhcpcd/repos/testing-x86_64/PKGBUILD
(from rev 402407, dhcpcd/trunk/PKGBUILD)
  dhcpcd/repos/testing-x86_64/dhcpcd.install
(from rev 402407, dhcpcd/trunk/dhcpcd.install)
  dhcpcd/repos/testing-x86_64/dhcpcd.service
(from rev 402407, dhcpcd/trunk/dhcpcd.service)
  dhcpcd/repos/testing-x86_64/dhcpcd.sysusers
(from rev 402407, dhcpcd/trunk/dhcpcd.sysusers)
  dhcpcd/repos/testing-x86_64/dhcpcd.tmpfiles
(from rev 402407, dhcpcd/trunk/dhcpcd.tmpfiles)
  dhcpcd/repos/testing-x86_64/dhcpcd_.service
(from rev 402407, dhcpcd/trunk/dhcpcd_.service)

-+
 PKGBUILD|   77 ++
 dhcpcd.install  |7 
 dhcpcd.service  |   13 +
 dhcpcd.sysusers |1 
 dhcpcd.tmpfiles |1 
 dhcpcd_.service |   15 ++
 6 files changed, 114 insertions(+)

Copied: dhcpcd/repos/testing-x86_64/PKGBUILD (from rev 402407, 
dhcpcd/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-11-30 12:06:20 UTC (rev 402408)
@@ -0,0 +1,77 @@
+# Maintainer: Ronald van Haren 
+# Maintainer: Giancarlo Razzolini 
+# Contributor: Tom Killian 
+# Contributor: Judd Vinet 
+
+pkgname=dhcpcd
+pkgver=9.3.4
+pkgrel=1
+pkgdesc="RFC2131 compliant DHCP client daemon"
+url="https://roy.marples.name/projects/dhcpcd/";
+arch=('x86_64')
+license=('BSD')
+depends=('glibc' 'sh' 'udev' 'systemd-libs')
+optdepends=('openresolv: resolvconf support')
+provides=('dhcp-client')
+backup=('etc/dhcpcd.conf')
+install='dhcpcd.install'
+options=('emptydirs')  # We Need the Empty /var/lib/dhcpcd Directory
+source=("https://roy.marples.name/downloads/$pkgname/$pkgname-$pkgver.tar.xz";
+dhcpcd.install
+dhcpcd_.service
+dhcpcd.service
+dhcpcd.sysusers
+dhcpcd.tmpfiles)
+validpgpkeys=('A785ED2755955D9E93EA59F6597F97EA9AD45549')  # Roy Marples 
(NetBSD) 
+sha256sums=('5c823a0b981b52e7e0fd3183ae220422d6fcc3aa511af31dcb1a7ee6cb0f1c39'
+'d40d51367fcf7e9596e42cd2bab59404633bedbab4d0a3183e7246b4677937b7'
+'37acd53a589711f5e1db2fcaebb4ccf1c90dc4bcd309626bde25beb7b630a545'
+'20bccbf8a05b1bc2be365c8b4b526c38c752f48229ba53c3be113ac5b634f210'
+'06788ad9f5f7ccb5d2a2da6f0322ff5771f8de82cfbe8b9ad954f2c38265e21b'
+'55d57b958f6b7e4d4a538ee88b0fcc1a522050c2d38efb5d680139f618234b35')
+# prepare () {
+#   cd ${pkgname}-${pkgver}
+# }
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  # configure variables
+  ./configure \
+  --prefix=/usr \
+  --sysconfdir=/etc \
+  --sbindir=/usr/bin \
+  --libexecdir=/usr/lib/dhcpcd \
+  --dbdir=/var/lib/dhcpcd \
+  --runstatedir=/run \
+  --privsepuser=dhcpcd
+
+  # Build
+  make
+}
+
+
+check() {
+  cd ${pkgname}-${pkgver}
+
+  make test
+}
+
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  # Install License
+  install -Dm644 "${srcdir}/${pkgname}-${pkgver}/LICENSE" \
+ "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  # Set Options in /etc/dhcpcd.conf
+  echo noipv4ll >> "${pkgdir}/etc/dhcpcd.conf" # Disable ip4vall
+
+  # install systemd files
+  install -Dm644 "${srcdir}/dhcpcd_.service" 
"${pkgdir}/usr/lib/systemd/system/dhcpcd@.service"
+  install -Dm644 "${srcdir}/dhcpcd.service" 
"${pkgdir}/usr/lib/systemd/system/dhcpcd.service" # FS#31543
+  install -Dm644 "${srcdir}/dhcpcd.sysusers" 
"${pkgdir}/usr/lib/sysusers.d/dhcpcd.conf"
+  install -Dm644 "${srcdir}/dhcpcd.tmpfiles" 
"${pkgdir}/usr/lib/tmpfiles.d/dhcpcd.conf"
+}

Copied: dhcpcd/repos/testing-x86_64/dhcpcd.install (from rev 402407, 
dhcpcd/trunk/dhcpcd.install)
===
--- testing-x86_64/dhcpcd.install   (rev 0)
+++ testing-x86_64/dhcpcd.install   2020-11-30 12:06:20 UTC (rev 402408)
@@ -0,0 +1,7 @@
+pre_upgrade() {
+if [ -d /var/lib/dhcpcd ]; then
+# match permissions with upstream
+chown root:root /var/lib/dhcpcd
+chmod 0750 /var/lib/dhcpcd
+fi
+}

Copied: dhcpcd/repos/testing-x86_64/dhcpcd.service (from rev 402407, 
dhcpcd/trunk/dhcpcd.service)
===
--- testing-x86_64/dhcpcd.service   (rev 0)
+++ testing-x86_64/dhcpcd.service   2020-11-30 12:06:20 UTC (rev 402408)
@@ -0,0 +1,13 @@
+[Unit]
+Description=dhcpcd on all interfaces
+Wants=network.target
+Before=network.target
+
+[Service]
+Type=forking
+PIDFile=/run/dhcpcd/pid
+ExecStart=/usr/bin/dhcpcd -q -b
+ExecStop=/usr/bin/dhcpcd -x
+
+[Install]
+WantedBy=multi-user.target

Copied: dhcpcd/repos/testing-x86_64/dhcpcd.sysusers (from rev 40

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

2020-11-30 Thread Jelle van der Waa via arch-commits
Date: Monday, November 30, 2020 @ 12:22:53
  Author: jelle
Revision: 766555

upgpkg: wabt 1.0.20-1

Modified:
  wabt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-30 11:50:02 UTC (rev 766554)
+++ PKGBUILD2020-11-30 12:22:53 UTC (rev 766555)
@@ -4,7 +4,7 @@
 pkgname=wabt
 pkgdesc="The WebAssembly Binary Toolkit is a suite of tools for WebAssembly"
 url="https://github.com/WebAssembly/wabt";
-pkgver=1.0.19
+pkgver=1.0.20
 pkgrel=1
 arch=('x86_64')
 license=('APACHE')


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

2020-11-30 Thread Jelle van der Waa via arch-commits
Date: Monday, November 30, 2020 @ 12:22:58
  Author: jelle
Revision: 766556

archrelease: copy trunk to community-x86_64

Added:
  wabt/repos/community-x86_64/PKGBUILD
(from rev 766555, wabt/trunk/PKGBUILD)
Deleted:
  wabt/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-30 12:22:53 UTC (rev 766555)
+++ PKGBUILD2020-11-30 12:22:58 UTC (rev 766556)
@@ -1,52 +0,0 @@
-# Maintainer: Jelle van der Waa 
-# Contributor:  Konstantin Gorodinskii 
-
-pkgname=wabt
-pkgdesc="The WebAssembly Binary Toolkit is a suite of tools for WebAssembly"
-url="https://github.com/WebAssembly/wabt";
-pkgver=1.0.19
-pkgrel=1
-arch=('x86_64')
-license=('APACHE')
-depends=(glibc gcc-libs)
-makedepends=('cmake' 'git' 'gcc' 'clang' 'python-ply' 'gtest')
-source=("git+https://github.com/WebAssembly/wabt#commit=cd5ff133f84854f0b269f5cb06193ad8205f05d3";
-"git+https://github.com/WebAssembly/testsuite";
-"git+https://github.com/google/googletest";
-"git+https://github.com/dabeaz/ply";)
-md5sums=('SKIP'
- 'SKIP'
- 'SKIP'
- 'SKIP')
-
-prepare() {
-  cd ${pkgname}
-
-  git submodule init
-  git config submodule."external/testsuite".url "${srcdir}/testsuite"
-  git config submodule."external/googletest".url "${srcdir}/googletest"
-  git config submodule."external/ply".url "${srcdir}/ply"
-  git submodule update --recursive
-
-  mkdir build
-}
-
-build() {
-  cd ${pkgname}/build
-  cmake \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
-..
-
-  make
-}
-
-check() {
-  cd ${pkgname}
-#  make test
-}
-
-package() {
-  cd ${pkgname}/build
-  make DESTDIR="${pkgdir}" install
-}

Copied: wabt/repos/community-x86_64/PKGBUILD (from rev 766555, 
wabt/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-30 12:22:58 UTC (rev 766556)
@@ -0,0 +1,52 @@
+# Maintainer: Jelle van der Waa 
+# Contributor:  Konstantin Gorodinskii 
+
+pkgname=wabt
+pkgdesc="The WebAssembly Binary Toolkit is a suite of tools for WebAssembly"
+url="https://github.com/WebAssembly/wabt";
+pkgver=1.0.20
+pkgrel=1
+arch=('x86_64')
+license=('APACHE')
+depends=(glibc gcc-libs)
+makedepends=('cmake' 'git' 'gcc' 'clang' 'python-ply' 'gtest')
+source=("git+https://github.com/WebAssembly/wabt#commit=cd5ff133f84854f0b269f5cb06193ad8205f05d3";
+"git+https://github.com/WebAssembly/testsuite";
+"git+https://github.com/google/googletest";
+"git+https://github.com/dabeaz/ply";)
+md5sums=('SKIP'
+ 'SKIP'
+ 'SKIP'
+ 'SKIP')
+
+prepare() {
+  cd ${pkgname}
+
+  git submodule init
+  git config submodule."external/testsuite".url "${srcdir}/testsuite"
+  git config submodule."external/googletest".url "${srcdir}/googletest"
+  git config submodule."external/ply".url "${srcdir}/ply"
+  git submodule update --recursive
+
+  mkdir build
+}
+
+build() {
+  cd ${pkgname}/build
+  cmake \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+..
+
+  make
+}
+
+check() {
+  cd ${pkgname}
+#  make test
+}
+
+package() {
+  cd ${pkgname}/build
+  make DESTDIR="${pkgdir}" install
+}


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

2020-11-30 Thread Evangelos Foutras via arch-commits
Date: Monday, November 30, 2020 @ 12:35:07
  Author: foutrelis
Revision: 402409

upgpkg: mousepad 0.5.0-1: new upstream release

Modified:
  mousepad/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-30 12:06:20 UTC (rev 402408)
+++ PKGBUILD2020-11-30 12:35:07 UTC (rev 402409)
@@ -2,18 +2,22 @@
 # Contributor: tobias [tobias at archlinux.org]
 
 pkgname=mousepad
-pkgver=0.4.2
-pkgrel=3
+pkgver=0.5.0
+pkgrel=1
 pkgdesc="Simple text editor for Xfce"
 arch=('x86_64')
 url="https://www.xfce.org/";
 license=('GPL2')
 groups=('xfce4-goodies')
-depends=('xfconf' 'gtksourceview3' 'desktop-file-utils')
+depends=('xfconf' 'gtksourceview3' 'desktop-file-utils' 'hicolor-icon-theme')
 makedepends=('intltool' 'perl')
 
source=(https://archive.xfce.org/src/apps/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
-sha256sums=('84c02adfca7f8b33b9466a306ded72fb9f38f93c9edb78660343854c4a3aded7')
+sha256sums=('b31b24cd489467c497c25c1cfe6b32ba941b312054eace77bcaa9e429a373912')
 
+prepare() {
+  mv mousepad-0.5.{,0}
+}
+
 build() {
   cd "$srcdir/$pkgname-$pkgver"
 
@@ -23,8 +27,7 @@
 --libexecdir=/usr/lib/xfce4 \
 --localstatedir=/var \
 --disable-static \
---disable-debug \
---enable-gtk3
+--disable-debug
   make
 }
 


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

2020-11-30 Thread Evangelos Foutras via arch-commits
Date: Monday, November 30, 2020 @ 12:35:11
  Author: foutrelis
Revision: 402410

archrelease: copy trunk to extra-x86_64

Added:
  mousepad/repos/extra-x86_64/PKGBUILD
(from rev 402409, mousepad/trunk/PKGBUILD)
Deleted:
  mousepad/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-30 12:35:07 UTC (rev 402409)
+++ PKGBUILD2020-11-30 12:35:11 UTC (rev 402410)
@@ -1,36 +0,0 @@
-# Maintainer: Evangelos Foutras 
-# Contributor: tobias [tobias at archlinux.org]
-
-pkgname=mousepad
-pkgver=0.4.2
-pkgrel=3
-pkgdesc="Simple text editor for Xfce"
-arch=('x86_64')
-url="https://www.xfce.org/";
-license=('GPL2')
-groups=('xfce4-goodies')
-depends=('xfconf' 'gtksourceview3' 'desktop-file-utils')
-makedepends=('intltool' 'perl')
-source=(https://archive.xfce.org/src/apps/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
-sha256sums=('84c02adfca7f8b33b9466a306ded72fb9f38f93c9edb78660343854c4a3aded7')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---libexecdir=/usr/lib/xfce4 \
---localstatedir=/var \
---disable-static \
---disable-debug \
---enable-gtk3
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: mousepad/repos/extra-x86_64/PKGBUILD (from rev 402409, 
mousepad/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-30 12:35:11 UTC (rev 402410)
@@ -0,0 +1,39 @@
+# Maintainer: Evangelos Foutras 
+# Contributor: tobias [tobias at archlinux.org]
+
+pkgname=mousepad
+pkgver=0.5.0
+pkgrel=1
+pkgdesc="Simple text editor for Xfce"
+arch=('x86_64')
+url="https://www.xfce.org/";
+license=('GPL2')
+groups=('xfce4-goodies')
+depends=('xfconf' 'gtksourceview3' 'desktop-file-utils' 'hicolor-icon-theme')
+makedepends=('intltool' 'perl')
+source=(https://archive.xfce.org/src/apps/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
+sha256sums=('b31b24cd489467c497c25c1cfe6b32ba941b312054eace77bcaa9e429a373912')
+
+prepare() {
+  mv mousepad-0.5.{,0}
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib/xfce4 \
+--localstatedir=/var \
+--disable-static \
+--disable-debug
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:


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

2020-11-30 Thread Jan Steffens via arch-commits
Date: Monday, November 30, 2020 @ 13:17:15
  Author: heftig
Revision: 402411

1.17.4-1

Modified:
  cairo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-30 12:35:11 UTC (rev 402410)
+++ PKGBUILD2020-11-30 13:17:15 UTC (rev 402411)
@@ -1,17 +1,18 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
 # Maintainer: Jan de Groot 
 # Contributor: Brice Carpentier 
 
 pkgname=cairo
-pkgver=1.17.2+25+gaee96d175
+pkgver=1.17.4
 pkgrel=1
 pkgdesc="2D graphics library with support for multiple output devices"
 url="https://cairographics.org/";
 arch=(x86_64)
 license=(LGPL MPL)
-depends=(libpng libxrender libxext fontconfig pixman glib2 lzo)
-makedepends=(librsvg gtk2 poppler-glib libspectre gtk-doc valgrind git)
-checkdepends=(ttf-dejavu gsfonts)
-_commit=aee96d175d8349945a6d1948a56abd4b4ec6ad84  # master
+depends=(lzo zlib libpng fontconfig freetype2 libx11 libxext libxrender libxcb
+ glib2 pixman)
+makedepends=(valgrind git meson)
+_commit=156cd3eaaebfd8635517c2baf61fcf3627ff7ec2  # tags/1.17.4^0
 source=("git+https://gitlab.freedesktop.org/cairo/cairo.git#commit=$_commit";)
 sha256sums=('SKIP')
 
@@ -22,45 +23,16 @@
 
 prepare() {
   cd cairo
-
-  # Update gtk-doc
-  cp /usr/share/aclocal/gtk-doc.m4 build/aclocal.gtk-doc.m4
-  cp /usr/share/gtk-doc/data/gtk-doc.make build/Makefile.am.gtk-doc
-
-  # Fix typo
-  sed -i 's/have_png/use_png/g' configure.ac
-
-  NOCONFIGURE=1 ./autogen.sh
 }
 
 build() {
-  cd cairo
-  ./configure --prefix=/usr \
---sysconfdir=/etc \
---localstatedir=/var \
---disable-static \
---disable-gl \
---enable-tee \
---enable-svg \
---enable-ps \
---enable-pdf \
---enable-gobject \
---enable-gtk-doc \
---enable-full-testing \
---enable-test-surfaces
-  sed -i 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
+  arch-meson cairo build \
+-D spectre=disabled \
+-D tee=enabled \
+-D tests=disabled
+  meson compile -C build
 }
 
-check() {
-  cd cairo
-  # FIXME: tests don't pass
-  env CAIRO_TEST_TARGET=image \
-  CAIRO_TEST_TARGET_FORMAT=rgba \
-  CAIRO_TESTS='!pthread-show-text' make -k check || :
-}
-
 package() {
-  cd cairo
-  make DESTDIR="$pkgdir" install
+  DESTDIR="$pkgdir" meson install -C build
 }


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

2020-11-30 Thread Jan Steffens via arch-commits
Date: Monday, November 30, 2020 @ 13:17:17
  Author: heftig
Revision: 766557

1.17.4-1

Modified:
  lib32-cairo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-30 12:22:58 UTC (rev 766556)
+++ PKGBUILD2020-11-30 13:17:17 UTC (rev 766557)
@@ -1,17 +1,18 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
 # Contributor: Ionut Biru 
 
 pkgname=lib32-cairo
-pkgver=1.17.2+25+gaee96d175
+pkgver=1.17.4
 pkgrel=1
 pkgdesc="2D graphics library with support for multiple output devices (32-bit)"
 url="https://cairographics.org/";
 arch=(x86_64)
 license=(LGPL MPL)
-depends=(lib32-libpng lib32-libxrender lib32-libxext lib32-fontconfig 
lib32-pixman lib32-glib2
+depends=(lib32-zlib lib32-libpng lib32-fontconfig lib32-freetype2 lib32-libx11
+ lib32-libxext lib32-libxrender lib32-libxcb lib32-glib2 lib32-pixman
  cairo)
-makedepends=(lib32-librsvg lib32-gtk2 gtk-doc valgrind git)
-checkdepends=(ttf-dejavu gsfonts)
-_commit=aee96d175d8349945a6d1948a56abd4b4ec6ad84  # master
+makedepends=(valgrind git meson)
+_commit=156cd3eaaebfd8635517c2baf61fcf3627ff7ec2  # tags/1.17.4^0
 source=("git+https://gitlab.freedesktop.org/cairo/cairo.git#commit=$_commit";)
 sha256sums=('SKIP')
 
@@ -22,15 +23,6 @@
 
 prepare() {
   cd cairo
-
-  # Update gtk-doc
-  cp /usr/share/aclocal/gtk-doc.m4 build/aclocal.gtk-doc.m4
-  cp /usr/share/gtk-doc/data/gtk-doc.make build/Makefile.am.gtk-doc
-
-  # Fix typo
-  sed -i 's/have_png/use_png/g' configure.ac
-
-  NOCONFIGURE=1 ./autogen.sh
 }
 
 build() {
@@ -38,35 +30,15 @@
   export CXX="g++ -m32"
   export PKG_CONFIG="i686-pc-linux-gnu-pkg-config"
 
-  cd cairo
-  ./configure --prefix=/usr \
---libdir=/usr/lib32 \
---sysconfdir=/etc \
---localstatedir=/var \
---disable-static \
---disable-gl \
---enable-tee \
---enable-svg \
---enable-ps \
---enable-pdf \
---enable-gobject \
---disable-gtk-doc \
---enable-full-testing \
---enable-test-surfaces
-  sed -i 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
+  arch-meson cairo build \
+--libdir=/usr/lib32 \
+-D spectre=disabled \
+-D tee=enabled \
+-D tests=disabled
+  meson compile -C build
 }
 
-check() {
-  cd cairo
-  # FIXME: tests don't pass
-  env CAIRO_TEST_TARGET=image \
-  CAIRO_TEST_TARGET_FORMAT=rgba \
-  CAIRO_TESTS='!pthread-show-text' make -k check || :
-}
-
 package() {
-  cd cairo
-  make DESTDIR="$pkgdir" install
+  DESTDIR="$pkgdir" meson install -C build
   rm -r "$pkgdir"/usr/{include,bin}
 }


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

2020-11-30 Thread Jan Steffens via arch-commits
Date: Monday, November 30, 2020 @ 13:17:32
  Author: heftig
Revision: 766558

archrelease: copy trunk to multilib-testing-x86_64

Added:
  lib32-cairo/repos/multilib-testing-x86_64/
  lib32-cairo/repos/multilib-testing-x86_64/PKGBUILD
(from rev 766557, lib32-cairo/trunk/PKGBUILD)

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

Copied: lib32-cairo/repos/multilib-testing-x86_64/PKGBUILD (from rev 766557, 
lib32-cairo/trunk/PKGBUILD)
===
--- multilib-testing-x86_64/PKGBUILD(rev 0)
+++ multilib-testing-x86_64/PKGBUILD2020-11-30 13:17:32 UTC (rev 766558)
@@ -0,0 +1,44 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Ionut Biru 
+
+pkgname=lib32-cairo
+pkgver=1.17.4
+pkgrel=1
+pkgdesc="2D graphics library with support for multiple output devices (32-bit)"
+url="https://cairographics.org/";
+arch=(x86_64)
+license=(LGPL MPL)
+depends=(lib32-zlib lib32-libpng lib32-fontconfig lib32-freetype2 lib32-libx11
+ lib32-libxext lib32-libxrender lib32-libxcb lib32-glib2 lib32-pixman
+ cairo)
+makedepends=(valgrind git meson)
+_commit=156cd3eaaebfd8635517c2baf61fcf3627ff7ec2  # tags/1.17.4^0
+source=("git+https://gitlab.freedesktop.org/cairo/cairo.git#commit=$_commit";)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd cairo
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd cairo
+}
+
+build() {
+  export CC="gcc -m32"
+  export CXX="g++ -m32"
+  export PKG_CONFIG="i686-pc-linux-gnu-pkg-config"
+
+  arch-meson cairo build \
+--libdir=/usr/lib32 \
+-D spectre=disabled \
+-D tee=enabled \
+-D tests=disabled
+  meson compile -C build
+}
+
+package() {
+  DESTDIR="$pkgdir" meson install -C build
+  rm -r "$pkgdir"/usr/{include,bin}
+}


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

2020-11-30 Thread Jan Steffens via arch-commits
Date: Monday, November 30, 2020 @ 13:17:33
  Author: heftig
Revision: 402412

archrelease: copy trunk to testing-x86_64

Added:
  cairo/repos/testing-x86_64/
  cairo/repos/testing-x86_64/PKGBUILD
(from rev 402411, cairo/trunk/PKGBUILD)

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

Copied: cairo/repos/testing-x86_64/PKGBUILD (from rev 402411, 
cairo/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-11-30 13:17:33 UTC (rev 402412)
@@ -0,0 +1,38 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Maintainer: Jan de Groot 
+# Contributor: Brice Carpentier 
+
+pkgname=cairo
+pkgver=1.17.4
+pkgrel=1
+pkgdesc="2D graphics library with support for multiple output devices"
+url="https://cairographics.org/";
+arch=(x86_64)
+license=(LGPL MPL)
+depends=(lzo zlib libpng fontconfig freetype2 libx11 libxext libxrender libxcb
+ glib2 pixman)
+makedepends=(valgrind git meson)
+_commit=156cd3eaaebfd8635517c2baf61fcf3627ff7ec2  # tags/1.17.4^0
+source=("git+https://gitlab.freedesktop.org/cairo/cairo.git#commit=$_commit";)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd cairo
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd cairo
+}
+
+build() {
+  arch-meson cairo build \
+-D spectre=disabled \
+-D tee=enabled \
+-D tests=disabled
+  meson compile -C build
+}
+
+package() {
+  DESTDIR="$pkgdir" meson install -C build
+}


[arch-commits] Commit in (4 files)

2020-11-30 Thread Daurnimator via arch-commits
Date: Monday, November 30, 2020 @ 13:29:56
  Author: daurnimator
Revision: 766561

Move lua-fifo from community

Added:
  lua-fifo/
  lua-fifo/repos/
  lua-fifo/trunk/
  lua-fifo/trunk/PKGBUILD

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

Added: lua-fifo/trunk/PKGBUILD
===
--- lua-fifo/trunk/PKGBUILD (rev 0)
+++ lua-fifo/trunk/PKGBUILD 2020-11-30 13:29:56 UTC (rev 766561)
@@ -0,0 +1,42 @@
+# Maintainer: Daurnimator 
+
+pkgname=('lua-fifo' 'lua51-fifo' 'lua52-fifo' 'lua53-fifo')
+pkgver=0.2
+pkgrel=1
+arch=('any')
+url='https://github.com/daurnimator/fifo.lua'
+license=('MIT')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/daurnimator/fifo.lua/archive/$pkgver.tar.gz";)
+sha256sums=('85cad0c2f9eac1cd3e08c5134feb655e0b928e1e22363c3ef3293a194c0eb53f')
+
+package_lua-fifo() {
+   pkgdesc='Fifo library for Lua 5.4'
+
+   cd "fifo.lua-$pkgver"
+   install -Dm644 fifo.lua "$pkgdir/usr/share/lua/5.4/fifo.lua"
+   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_lua51-fifo() {
+   pkgdesc='Fifo library for Lua 5.1'
+
+   cd "fifo.lua-$pkgver"
+   install -Dm644 fifo.lua "$pkgdir/usr/share/lua/5.1/fifo.lua"
+   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_lua52-fifo() {
+   pkgdesc='Fifo library for Lua 5.2'
+
+   cd "fifo.lua-$pkgver"
+   install -Dm644 fifo.lua "$pkgdir/usr/share/lua/5.2/fifo.lua"
+   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_lua53-fifo() {
+   pkgdesc='Fifo library for Lua 5.3'
+
+   cd "fifo.lua-$pkgver"
+   install -Dm644 fifo.lua "$pkgdir/usr/share/lua/5.3/fifo.lua"
+   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2020-11-30 Thread Daurnimator via arch-commits
Date: Monday, November 30, 2020 @ 13:31:19
  Author: daurnimator
Revision: 766562

archrelease: copy trunk to community-any

Added:
  lua-fifo/repos/community-any/
  lua-fifo/repos/community-any/PKGBUILD
(from rev 766561, lua-fifo/trunk/PKGBUILD)

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

Copied: lua-fifo/repos/community-any/PKGBUILD (from rev 766561, 
lua-fifo/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2020-11-30 13:31:19 UTC (rev 766562)
@@ -0,0 +1,42 @@
+# Maintainer: Daurnimator 
+
+pkgname=('lua-fifo' 'lua51-fifo' 'lua52-fifo' 'lua53-fifo')
+pkgver=0.2
+pkgrel=1
+arch=('any')
+url='https://github.com/daurnimator/fifo.lua'
+license=('MIT')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/daurnimator/fifo.lua/archive/$pkgver.tar.gz";)
+sha256sums=('85cad0c2f9eac1cd3e08c5134feb655e0b928e1e22363c3ef3293a194c0eb53f')
+
+package_lua-fifo() {
+   pkgdesc='Fifo library for Lua 5.4'
+
+   cd "fifo.lua-$pkgver"
+   install -Dm644 fifo.lua "$pkgdir/usr/share/lua/5.4/fifo.lua"
+   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_lua51-fifo() {
+   pkgdesc='Fifo library for Lua 5.1'
+
+   cd "fifo.lua-$pkgver"
+   install -Dm644 fifo.lua "$pkgdir/usr/share/lua/5.1/fifo.lua"
+   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_lua52-fifo() {
+   pkgdesc='Fifo library for Lua 5.2'
+
+   cd "fifo.lua-$pkgver"
+   install -Dm644 fifo.lua "$pkgdir/usr/share/lua/5.2/fifo.lua"
+   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_lua53-fifo() {
+   pkgdesc='Fifo library for Lua 5.3'
+
+   cd "fifo.lua-$pkgver"
+   install -Dm644 fifo.lua "$pkgdir/usr/share/lua/5.3/fifo.lua"
+   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2020-11-30 Thread Jan Steffens via arch-commits
Date: Monday, November 30, 2020 @ 13:38:06
  Author: heftig
Revision: 402413

0.3.17-1

Modified:
  pipewire/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-30 13:17:33 UTC (rev 402412)
+++ PKGBUILD2020-11-30 13:38:06 UTC (rev 402413)
@@ -4,8 +4,8 @@
 pkgbase=pipewire
 pkgname=(pipewire pipewire-docs pipewire-jack pipewire-pulse pipewire-alsa
  gst-plugin-pipewire)
-pkgver=0.3.16
-pkgrel=5
+pkgver=0.3.17
+pkgrel=1
 pkgdesc="Server and user space API to deal with multimedia pipelines"
 url="https://pipewire.org";
 license=(LGPL2.1)
@@ -13,7 +13,7 @@
 makedepends=(git meson doxygen graphviz xmltoman valgrind jack2 libpulse
  alsa-lib gst-plugins-base sbc rtkit vulkan-icd-loader dbus
  libsndfile bluez-libs vulkan-headers)
-_commit=09d373f094f0e6797aef3d97cde2c0167dccc986  # tags/0.3.16
+_commit=f5f5beb0ece64c7d08edb5413dde537ec5b6c3e2  # tags/0.3.17
 source=("git+https://github.com/PipeWire/pipewire#commit=$_commit";)
 sha256sums=('SKIP')
 
@@ -54,8 +54,7 @@
 
 package_pipewire() {
   depends=(sbc rtkit vulkan-icd-loader bluez-libs alsa-card-profiles
-   libdbus-1.so libsndfile.so libudev.so libasound.so libsystemd.so
-   libglib-2.0.so libgobject-2.0.so)
+   libdbus-1.so libsndfile.so libudev.so libasound.so libsystemd.so)
   optdepends=('pipewire-docs: Documentation'
   'pipewire-jack: JACK support'
   'pipewire-pulse: PulseAudio support')
@@ -72,10 +71,13 @@
 
   _pick docs usr/share/doc
 
+  _pick jack etc/pipewire/media-session.d/with-jack
   _pick jack usr/bin/pw-jack usr/lib/pipewire-$_ver/jack
   _pick jack usr/lib/spa-0.2/jack
   _pick jack usr/share/man/man1/pw-jack.1
 
+  _pick pulse etc/pipewire/media-session.d/with-pulseaudio
+
   _pick gst usr/lib/gstreamer-1.0
 
   # Use alsa-card-profiles built with Pulseaudio
@@ -97,8 +99,9 @@
   pkgdesc+=" (PulseAudio replacement)"
   depends=(pipewire libpulse)
   provides=(pulseaudio pulseaudio-bluetooth)
-  conflicts=(pulseaudio)  # Sockets conflict
+  conflicts=(pulseaudio pulseaudio-bluetooth)
   install=pipewire-pulse.install
+  mv pulse/* "$pkgdir"
 }
 
 package_pipewire-alsa() {


[arch-commits] Commit in pipewire/repos/testing-x86_64 (6 files)

2020-11-30 Thread Jan Steffens via arch-commits
Date: Monday, November 30, 2020 @ 13:38:22
  Author: heftig
Revision: 402414

archrelease: copy trunk to testing-x86_64

Added:
  pipewire/repos/testing-x86_64/PKGBUILD
(from rev 402413, pipewire/trunk/PKGBUILD)
  pipewire/repos/testing-x86_64/pipewire-pulse.install
(from rev 402413, pipewire/trunk/pipewire-pulse.install)
  pipewire/repos/testing-x86_64/pipewire.install
(from rev 402413, pipewire/trunk/pipewire.install)
Deleted:
  pipewire/repos/testing-x86_64/PKGBUILD
  pipewire/repos/testing-x86_64/pipewire-pulse.install
  pipewire/repos/testing-x86_64/pipewire.install

+
 PKGBUILD   |  237 +++
 pipewire-pulse.install |   28 ++---
 pipewire.install   |   28 ++---
 3 files changed, 148 insertions(+), 145 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-30 13:38:06 UTC (rev 402413)
+++ PKGBUILD2020-11-30 13:38:22 UTC (rev 402414)
@@ -1,117 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-
-pkgbase=pipewire
-pkgname=(pipewire pipewire-docs pipewire-jack pipewire-pulse pipewire-alsa
- gst-plugin-pipewire)
-pkgver=0.3.16
-pkgrel=5
-pkgdesc="Server and user space API to deal with multimedia pipelines"
-url="https://pipewire.org";
-license=(LGPL2.1)
-arch=(x86_64)
-makedepends=(git meson doxygen graphviz xmltoman valgrind jack2 libpulse
- alsa-lib gst-plugins-base sbc rtkit vulkan-icd-loader dbus
- libsndfile bluez-libs vulkan-headers)
-_commit=09d373f094f0e6797aef3d97cde2c0167dccc986  # tags/0.3.16
-source=("git+https://github.com/PipeWire/pipewire#commit=$_commit";)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgbase
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgbase
-
-  # fix kwin
-  git cherry-pick -n fc2b0b20ad4271b0c6f258451a82311b792b7a57
-}
-
-build() {
-  arch-meson $pkgbase build \
--D docs=true \
--D udevrulesdir=/usr/lib/udev/rules.d
-  meson compile -C build
-}
-
-check() {
-  meson test -C build --print-errorlogs
-}
-
-_pick() {
-  local p="$1" f d; shift
-  for f; do
-d="$srcdir/$p/${f#$pkgdir/}"
-mkdir -p "$(dirname "$d")"
-mv "$f" "$d"
-rmdir -p --ignore-fail-on-non-empty "$(dirname "$f")"
-  done
-}
-
-_ver=${pkgver:0:3}
-
-package_pipewire() {
-  depends=(sbc rtkit vulkan-icd-loader bluez-libs alsa-card-profiles
-   libdbus-1.so libsndfile.so libudev.so libasound.so libsystemd.so
-   libglib-2.0.so libgobject-2.0.so)
-  optdepends=('pipewire-docs: Documentation'
-  'pipewire-jack: JACK support'
-  'pipewire-pulse: PulseAudio support')
-  provides=(libpipewire-$_ver.so)
-  backup=(etc/pipewire/pipewire.conf)
-  install=pipewire.install
-
-  DESTDIR="$pkgdir" meson install -C build
-
-  cd "$pkgdir"
-
-  mkdir -p etc/alsa/conf.d
-  ln -st etc/alsa/conf.d /usr/share/alsa/alsa.conf.d/50-pipewire.conf 
-
-  _pick docs usr/share/doc
-
-  _pick jack usr/bin/pw-jack usr/lib/pipewire-$_ver/jack
-  _pick jack usr/lib/spa-0.2/jack
-  _pick jack usr/share/man/man1/pw-jack.1
-
-  _pick gst usr/lib/gstreamer-1.0
-
-  # Use alsa-card-profiles built with Pulseaudio
-  rm -rv "$pkgdir"/usr/share/alsa-card-profile
-}
-
-package_pipewire-docs() {
-  pkgdesc+=" (documentation)"
-  mv docs/* "$pkgdir"
-}
-
-package_pipewire-jack() {
-  pkgdesc+=" (JACK support)"
-  depends=(pipewire libpipewire-$_ver.so libjack.so)
-  mv jack/* "$pkgdir"
-}
-
-package_pipewire-pulse() {
-  pkgdesc+=" (PulseAudio replacement)"
-  depends=(pipewire libpulse)
-  provides=(pulseaudio pulseaudio-bluetooth)
-  conflicts=(pulseaudio)  # Sockets conflict
-  install=pipewire-pulse.install
-}
-
-package_pipewire-alsa() {
-  pkgdesc="ALSA Configuration for PipeWire"
-  depends=(pipewire libpipewire-$_ver.so)
-  provides=(pulseaudio-alsa)
-
-  mkdir -p "$pkgdir/etc/alsa/conf.d"
-  ln -st "$pkgdir/etc/alsa/conf.d" 
/usr/share/alsa/alsa.conf.d/99-pipewire-default.conf
-}
-
-package_gst-plugin-pipewire() {
-  pkgdesc="Multimedia graph framework - pipewire plugin"
-  depends=(pipewire libpipewire-$_ver.so gst-plugins-base-libs)
-  mv gst/* "$pkgdir"
-}

Copied: pipewire/repos/testing-x86_64/PKGBUILD (from rev 402413, 
pipewire/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-30 13:38:22 UTC (rev 402414)
@@ -0,0 +1,120 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgbase=pipewire
+pkgname=(pipewire pipewire-docs pipewire-jack pipewire-pulse pipewire-alsa
+ gst-plugin-pipewire)
+pkgver=0.3.17
+pkgrel=1
+pkgdesc="Server and user space API to deal with multimedia pipelines"
+url="https://pipewire.org";
+license=(LGPL2.1)
+arch=(x86_64)
+makedepends=(git meson doxygen graphviz xmltoman valgrind jack2 libpulse
+ alsa-lib gst-plugins-base sbc rtkit vulkan-icd-loa

[arch-commits] Commit in v2ray-domain-list-community/trunk (PKGBUILD)

2020-11-30 Thread Felix Yan via arch-commits
Date: Monday, November 30, 2020 @ 14:21:07
  Author: felixonmars
Revision: 766563

upgpkg: v2ray-domain-list-community 20201130101618-1

Modified:
  v2ray-domain-list-community/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-30 13:31:19 UTC (rev 766562)
+++ PKGBUILD2020-11-30 14:21:07 UTC (rev 766563)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=v2ray-domain-list-community
-pkgver=20201126091400
+pkgver=20201130101618
 pkgrel=1
 pkgdesc="A list of domains to be used as geosites for routing purpose in 
Project V"
 arch=('any')
@@ -9,7 +9,7 @@
 license=('MIT')
 makedepends=('go' 'git')
 
source=("https://github.com/v2fly/domain-list-community/archive/$pkgver/$pkgname-$pkgver.tar.gz";)
-sha512sums=('a31fd61d30bef7b3678b874a85d30f227ee29088e9386116fc7c05133409f80e6c8fcdd8073c9f06ea4d2a5d5860d98395228f85ca7f3c6428771dac53fd3018')
+sha512sums=('2cba598fc644edc3547b855b5a2efd66606b4180fc19bdcf52b3ec0c2cda67cc4b2ef7550715bd69eb070ad3c6633c0d898ad24fff726de7251051380a3ede3c')
 
 prepare() {
   mkdir .gopath


[arch-commits] Commit in v2ray-domain-list-community/repos/community-any (2 files)

2020-11-30 Thread Felix Yan via arch-commits
Date: Monday, November 30, 2020 @ 14:21:18
  Author: felixonmars
Revision: 766564

archrelease: copy trunk to community-any

Added:
  v2ray-domain-list-community/repos/community-any/PKGBUILD
(from rev 766563, v2ray-domain-list-community/trunk/PKGBUILD)
Deleted:
  v2ray-domain-list-community/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-30 14:21:07 UTC (rev 766563)
+++ PKGBUILD2020-11-30 14:21:18 UTC (rev 766564)
@@ -1,34 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=v2ray-domain-list-community
-pkgver=20201126091400
-pkgrel=1
-pkgdesc="A list of domains to be used as geosites for routing purpose in 
Project V"
-arch=('any')
-url="https://github.com/v2fly/domain-list-community";
-license=('MIT')
-makedepends=('go' 'git')
-source=("https://github.com/v2fly/domain-list-community/archive/$pkgver/$pkgname-$pkgver.tar.gz";)
-sha512sums=('a31fd61d30bef7b3678b874a85d30f227ee29088e9386116fc7c05133409f80e6c8fcdd8073c9f06ea4d2a5d5860d98395228f85ca7f3c6428771dac53fd3018')
-
-prepare() {
-  mkdir .gopath
-  export GOPATH="$srcdir/.gopath"
-
-  mkdir -p .gopath/src/github.com/v2fly
-  ln -s "$PWD/domain-list-community-$pkgver" 
.gopath/src/github.com/v2fly/domain-list-community
-
-  go get github.com/golang/protobuf/proto
-  go get -insecure v2ray.com/core/app/router
-}
-
-build() {
-  cd .gopath
-  go run ./src/github.com/v2fly/domain-list-community/main.go
-}
-
-package() {
-  cd .gopath
-  install -Dm644 dlc.dat "$pkgdir"/usr/share/v2ray/geosite.dat
-  install -Dm644 "$srcdir"/domain-list-community-$pkgver/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: v2ray-domain-list-community/repos/community-any/PKGBUILD (from rev 
766563, v2ray-domain-list-community/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-30 14:21:18 UTC (rev 766564)
@@ -0,0 +1,34 @@
+# Maintainer: Felix Yan 
+
+pkgname=v2ray-domain-list-community
+pkgver=20201130101618
+pkgrel=1
+pkgdesc="A list of domains to be used as geosites for routing purpose in 
Project V"
+arch=('any')
+url="https://github.com/v2fly/domain-list-community";
+license=('MIT')
+makedepends=('go' 'git')
+source=("https://github.com/v2fly/domain-list-community/archive/$pkgver/$pkgname-$pkgver.tar.gz";)
+sha512sums=('2cba598fc644edc3547b855b5a2efd66606b4180fc19bdcf52b3ec0c2cda67cc4b2ef7550715bd69eb070ad3c6633c0d898ad24fff726de7251051380a3ede3c')
+
+prepare() {
+  mkdir .gopath
+  export GOPATH="$srcdir/.gopath"
+
+  mkdir -p .gopath/src/github.com/v2fly
+  ln -s "$PWD/domain-list-community-$pkgver" 
.gopath/src/github.com/v2fly/domain-list-community
+
+  go get github.com/golang/protobuf/proto
+  go get -insecure v2ray.com/core/app/router
+}
+
+build() {
+  cd .gopath
+  go run ./src/github.com/v2fly/domain-list-community/main.go
+}
+
+package() {
+  cd .gopath
+  install -Dm644 dlc.dat "$pkgdir"/usr/share/v2ray/geosite.dat
+  install -Dm644 "$srcdir"/domain-list-community-$pkgver/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2020-11-30 Thread Felix Yan via arch-commits
Date: Monday, November 30, 2020 @ 14:24:36
  Author: felixonmars
Revision: 766565

upgpkg: perl-par-dist 0.51-1

Modified:
  perl-par-dist/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-30 14:21:18 UTC (rev 766564)
+++ PKGBUILD2020-11-30 14:24:36 UTC (rev 766565)
@@ -3,7 +3,7 @@
 # Contributor: François Charette 
 
 pkgname=perl-par-dist
-pkgver=0.50
+pkgver=0.51
 pkgrel=1
 pkgdesc="Perl bindings to create and manipulate PAR distributions"
 arch=('any')
@@ -12,7 +12,7 @@
 depends=('perl')
 options=('!emptydirs')
 
source=("https://search.cpan.org/CPAN/authors/id/R/RS/RSCHUPP/PAR-Dist-$pkgver.tar.gz";)
-sha512sums=('07048cbda958812c792d202ddde8624a1b3b14db42feb5ac90535439f288873599ef6e59bef8b2812263a3f7a354b4912982c2e053b91355add573549eae9382')
+sha512sums=('4c06ff54dfa8f3dc4766b60c45337b3cf80b32ec6bcc49d7e5a4786e0533e495f6215b257100fa5aae50f12e01a8b3d7144254d8706019c50ff115915f0fcb41')
 
 build() {
   cd "$srcdir/PAR-Dist-$pkgver"


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

2020-11-30 Thread Felix Yan via arch-commits
Date: Monday, November 30, 2020 @ 14:24:41
  Author: felixonmars
Revision: 766566

upgpkg: uusi 0.3.0.0-1

Modified:
  uusi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-30 14:24:36 UTC (rev 766565)
+++ PKGBUILD2020-11-30 14:24:41 UTC (rev 766566)
@@ -1,8 +1,8 @@
 # Maintainer: Felix Yan 
 
 pkgname=uusi
-pkgver=0.2.1.0
-pkgrel=3
+pkgver=0.3.0.0
+pkgrel=1
 pkgdesc="Remove all version constraints of dependencies in .cabal file"
 url="https://github.com/berberman/uusi";
 license=("MIT")
@@ -10,7 +10,7 @@
 depends=('ghc-libs' 'haskell-microlens' 'haskell-microlens-th')
 makedepends=('ghc' 'haskell-hunit')
 
source=("https://hackage.haskell.org/packages/archive/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz";)
-sha512sums=('432da1d75eb88e3abd8dd4beb674cca9d853eb2d3d39318f98a8e2cef51c05e529a9a1885a3ef5a51719761ab5323bbcb507738e694c5e36b8bb6397d7f340f7')
+sha512sums=('0978302f7ff1456ad226f8facf5c6459c966f4782239742ac882425dcc83191588c33b30b82ac5e4ab4c3533be6c84a8dd0cef5295e60774bc5fbc774cfb1dc7')
 
 prepare() {
   cd $pkgname-$pkgver


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

2020-11-30 Thread Felix Yan via arch-commits
Date: Monday, November 30, 2020 @ 14:24:47
  Author: felixonmars
Revision: 766567

archrelease: copy trunk to community-any

Added:
  perl-par-dist/repos/community-any/PKGBUILD
(from rev 766566, perl-par-dist/trunk/PKGBUILD)
Deleted:
  perl-par-dist/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-30 14:24:41 UTC (rev 766566)
+++ PKGBUILD2020-11-30 14:24:47 UTC (rev 766567)
@@ -1,31 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: TDY 
-# Contributor: François Charette 
-
-pkgname=perl-par-dist
-pkgver=0.50
-pkgrel=1
-pkgdesc="Perl bindings to create and manipulate PAR distributions"
-arch=('any')
-url="https://search.cpan.org/dist/PAR-Dist/";
-license=('GPL' 'PerlArtistic')
-depends=('perl')
-options=('!emptydirs')
-source=("https://search.cpan.org/CPAN/authors/id/R/RS/RSCHUPP/PAR-Dist-$pkgver.tar.gz";)
-sha512sums=('07048cbda958812c792d202ddde8624a1b3b14db42feb5ac90535439f288873599ef6e59bef8b2812263a3f7a354b4912982c2e053b91355add573549eae9382')
-
-build() {
-  cd "$srcdir/PAR-Dist-$pkgver"
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd "$srcdir/PAR-Dist-$pkgver"
-  make test
-}
-
-package() {
-  cd "$srcdir/PAR-Dist-$pkgver"
-  make install DESTDIR="$pkgdir"
-}

Copied: perl-par-dist/repos/community-any/PKGBUILD (from rev 766566, 
perl-par-dist/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-30 14:24:47 UTC (rev 766567)
@@ -0,0 +1,31 @@
+# Maintainer: Felix Yan 
+# Contributor: TDY 
+# Contributor: François Charette 
+
+pkgname=perl-par-dist
+pkgver=0.51
+pkgrel=1
+pkgdesc="Perl bindings to create and manipulate PAR distributions"
+arch=('any')
+url="https://search.cpan.org/dist/PAR-Dist/";
+license=('GPL' 'PerlArtistic')
+depends=('perl')
+options=('!emptydirs')
+source=("https://search.cpan.org/CPAN/authors/id/R/RS/RSCHUPP/PAR-Dist-$pkgver.tar.gz";)
+sha512sums=('4c06ff54dfa8f3dc4766b60c45337b3cf80b32ec6bcc49d7e5a4786e0533e495f6215b257100fa5aae50f12e01a8b3d7144254d8706019c50ff115915f0fcb41')
+
+build() {
+  cd "$srcdir/PAR-Dist-$pkgver"
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd "$srcdir/PAR-Dist-$pkgver"
+  make test
+}
+
+package() {
+  cd "$srcdir/PAR-Dist-$pkgver"
+  make install DESTDIR="$pkgdir"
+}


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

2020-11-30 Thread Felix Yan via arch-commits
Date: Monday, November 30, 2020 @ 14:24:53
  Author: felixonmars
Revision: 766568

archrelease: copy trunk to community-x86_64

Added:
  uusi/repos/community-x86_64/PKGBUILD
(from rev 766567, uusi/trunk/PKGBUILD)
Deleted:
  uusi/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-30 14:24:47 UTC (rev 766567)
+++ PKGBUILD2020-11-30 14:24:53 UTC (rev 766568)
@@ -1,44 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=uusi
-pkgver=0.2.1.0
-pkgrel=3
-pkgdesc="Remove all version constraints of dependencies in .cabal file"
-url="https://github.com/berberman/uusi";
-license=("MIT")
-arch=('x86_64')
-depends=('ghc-libs' 'haskell-microlens' 'haskell-microlens-th')
-makedepends=('ghc' 'haskell-hunit')
-source=("https://hackage.haskell.org/packages/archive/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz";)
-sha512sums=('432da1d75eb88e3abd8dd4beb674cca9d853eb2d3d39318f98a8e2cef51c05e529a9a1885a3ef5a51719761ab5323bbcb507738e694c5e36b8bb6397d7f340f7')
-
-prepare() {
-  cd $pkgname-$pkgver
-  echo -e "import Distribution.Simple\nmain = defaultMain" > Setup.hs
-  sed -i 's/<3.1/<4/' $pkgname.cabal
-}
-
-build() {
-  cd $pkgname-$pkgver
-
-  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
---prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
---dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
---ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
---ghc-option='-pie'
-
-  runhaskell Setup build $MAKEFLAGS
-}
-
-check() {
-  cd $pkgname-$pkgver
-  runhaskell Setup test
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  runhaskell Setup copy --destdir="$pkgdir"
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
-}

Copied: uusi/repos/community-x86_64/PKGBUILD (from rev 766567, 
uusi/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-30 14:24:53 UTC (rev 766568)
@@ -0,0 +1,44 @@
+# Maintainer: Felix Yan 
+
+pkgname=uusi
+pkgver=0.3.0.0
+pkgrel=1
+pkgdesc="Remove all version constraints of dependencies in .cabal file"
+url="https://github.com/berberman/uusi";
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-microlens' 'haskell-microlens-th')
+makedepends=('ghc' 'haskell-hunit')
+source=("https://hackage.haskell.org/packages/archive/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz";)
+sha512sums=('0978302f7ff1456ad226f8facf5c6459c966f4782239742ac882425dcc83191588c33b30b82ac5e4ab4c3533be6c84a8dd0cef5295e60774bc5fbc774cfb1dc7')
+
+prepare() {
+  cd $pkgname-$pkgver
+  echo -e "import Distribution.Simple\nmain = defaultMain" > Setup.hs
+  sed -i 's/<3.1/<4/' $pkgname.cabal
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  runhaskell Setup build $MAKEFLAGS
+}
+
+check() {
+  cd $pkgname-$pkgver
+  runhaskell Setup test
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  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 deepin-control-center/trunk (PKGBUILD)

2020-11-30 Thread Felix Yan via arch-commits
Date: Monday, November 30, 2020 @ 14:30:37
  Author: felixonmars
Revision: 766569

upgpkg: deepin-control-center 5.3.0.47-1

Modified:
  deepin-control-center/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-30 14:24:53 UTC (rev 766568)
+++ PKGBUILD2020-11-30 14:30:37 UTC (rev 766569)
@@ -3,7 +3,7 @@
 # Contributor: Xu Fasheng 
 
 pkgname=deepin-control-center
-pkgver=5.3.0.46
+pkgver=5.3.0.47
 pkgrel=1
 pkgdesc='New control center for linux deepin'
 arch=('x86_64')
@@ -27,7 +27,7 @@
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/dde-control-center/archive/$pkgver.tar.gz";
 $pkgname-systeminfo-deepin-icon.patch
 $pkgname-no-user-experience.patch)
-sha512sums=('e932aa68a51dd98eec72aeb77b2de288325a89b035c7adbb6612e2490b963b66edaa16af5a2834f18371797f140d76e109f175e56c8db9161449e7eac2a1befb'
+sha512sums=('77e1b3ae847f0cf12510590e9a16a56a3524204ba047ee66bec5bb6b827a98f4461be127c32cdbc720d717516f7ed7a31b75b6d93d5558c521373f7ccc7d6451'
 
'74fd63391e923ca37f4559f30da967ba7f33d4426b60d58d1ece8cd9a154578e8184b1a376a8d7ff3ef81ffce530915f79d0845a2612ae4e06522b96855ab3dd'
 
'99fc7e369680f3a91cb30daaa9015fccf3f2b733522e917fbd94e69b48471dd739536e220d4a9c17a93834d51192832cabf355b633cca27c903f8dd3249f4c5d')
 


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

2020-11-30 Thread Felix Yan via arch-commits
Date: Monday, November 30, 2020 @ 14:30:55
  Author: felixonmars
Revision: 766570

archrelease: copy trunk to community-x86_64

Added:
  deepin-control-center/repos/community-x86_64/PKGBUILD
(from rev 766569, deepin-control-center/trunk/PKGBUILD)
  
deepin-control-center/repos/community-x86_64/deepin-control-center-no-user-experience.patch
(from rev 766569, 
deepin-control-center/trunk/deepin-control-center-no-user-experience.patch)
  
deepin-control-center/repos/community-x86_64/deepin-control-center-systeminfo-deepin-icon.patch
(from rev 766569, 
deepin-control-center/trunk/deepin-control-center-systeminfo-deepin-icon.patch)
Deleted:
  deepin-control-center/repos/community-x86_64/PKGBUILD
  
deepin-control-center/repos/community-x86_64/deepin-control-center-no-user-experience.patch
  
deepin-control-center/repos/community-x86_64/deepin-control-center-systeminfo-deepin-icon.patch

+
 PKGBUILD   |  130 -
 deepin-control-center-no-user-experience.patch |   58 ++--
 deepin-control-center-systeminfo-deepin-icon.patch |  272 +--
 3 files changed, 230 insertions(+), 230 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-30 14:30:37 UTC (rev 766569)
+++ PKGBUILD2020-11-30 14:30:55 UTC (rev 766570)
@@ -1,65 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-control-center
-pkgver=5.3.0.46
-pkgrel=1
-pkgdesc='New control center for linux deepin'
-arch=('x86_64')
-url="https://github.com/linuxdeepin/dde-control-center";
-license=('GPL3')
-depends=('desktop-file-utils' 'dtkwidget' 'deepin-account-faces' 'deepin-api' 
'geoip' 'libpwquality'
- 'geoip-database' 'geoip-database-extra' 'deepin-daemon' 'startdde' 
'networkmanager-qt'
- 'deepin-qt-dbus-factory' 'deepin-qt5integration' 
'deepin-network-utils')
-makedepends=('cmake' 'deepin-dock' 'ninja' 'qt5-tools')
-optdepends=('redshift: automatic color temperature support'
-'networkmanager-openconnect: for OpenConnect support'
-'networkmanager-openvpn: for OpenVPN support'
-'networkmanager-pptp: for PPTP support'
-'networkmanager-strongswan: for StrongSwan support'
-'networkmanager-vpnc: for VPNC support'
-'network-manager-sstp: for SSTP support')
-# Not packaged: network-manager-l2tp
-conflicts=('dde-control-center' 'dde-dock-applets')
-replaces=('dde-control-center' 'dde-dock-applets')
-groups=('deepin')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/dde-control-center/archive/$pkgver.tar.gz";
-$pkgname-systeminfo-deepin-icon.patch
-$pkgname-no-user-experience.patch)
-sha512sums=('e932aa68a51dd98eec72aeb77b2de288325a89b035c7adbb6612e2490b963b66edaa16af5a2834f18371797f140d76e109f175e56c8db9161449e7eac2a1befb'
-
'74fd63391e923ca37f4559f30da967ba7f33d4426b60d58d1ece8cd9a154578e8184b1a376a8d7ff3ef81ffce530915f79d0845a2612ae4e06522b96855ab3dd'
-
'99fc7e369680f3a91cb30daaa9015fccf3f2b733522e917fbd94e69b48471dd739536e220d4a9c17a93834d51192832cabf355b633cca27c903f8dd3249f4c5d')
-
-prepare() {
-  rm 
dde-control-center-$pkgver/src/frame/window/icons/icons/dcc_nav_systeminfo_{42,84}px.svg
-  patch -d dde-control-center-$pkgver -Np1 < 
$pkgname-systeminfo-deepin-icon.patch
-  patch -d dde-control-center-$pkgver -Np1 < $pkgname-no-user-experience.patch
-  mkdir -p build
-
-  cd dde-control-center-$pkgver
-  sed -i '/#include /a #include ' 
src/frame/widgets/basiclistdelegate.cpp 
src/frame/window/modules/update/updatehistorybutton.cpp \
-  
src/frame/window/modules/commoninfo/commonbackgrounditem.cpp 
src/frame/modules/accounts/useroptionitem.cpp \
-  
src/frame/window/modules/sync/pages/avatarwidget.cpp 
src/frame/window/modules/accounts/avataritemdelegate.cpp \
-  
src/frame/modules/accounts/avatarwidget.cpp 
src/frame/window/modules/accounts/accountswidget.cpp \
-  
src/frame/modules/datetime/timezone_dialog/popup_menu.cpp 
src/frame/modules/display/recognizedialog.cpp \
-  
src/frame/window/modules/personalization/roundcolorwidget.cpp 
src/frame/window/modules/unionid/pages/avatarwidget.cpp
-  sed -i '/#include /a #include ' 
src/frame/window/modules/personalization/personalizationgeneral.cpp
-
-  sed -i 's|/bin/deepin-recovery-tool|/usr/bin/deepin-recovery-tool|' 
src/frame/window/modules/systeminfo/backupandrestoreworker.cpp
-
-  # remove after they obey -DDISABLE_SYS_UPDATE properly
-  sed -i '/new UpdateModule/d' src/frame/window/mainwindow.cpp
-}
-
-build() {
-  cd build
-  cmake -GNi

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

2020-11-30 Thread Christian Hesse via arch-commits
Date: Monday, November 30, 2020 @ 15:07:32
  Author: eworm
Revision: 402415

drop libidn2 soname dependency

... this is now dlopen()ed.

Modified:
  systemd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-30 13:38:22 UTC (rev 402414)
+++ PKGBUILD2020-11-30 15:07:32 UTC (rev 402415)
@@ -149,7 +149,7 @@
   license=('GPL2' 'LGPL2.1')
   depends=('acl' 'libacl.so' 'bash' 'cryptsetup' 'libcryptsetup.so' 'dbus'
'iptables' 'kbd' 'kmod' 'libkmod.so' 'hwids' 'libcap' 'libcap.so'
-   'libgcrypt' 'libxcrypt' 'libcrypt.so' 'systemd-libs' 'libidn2' 
'libidn2.so' 'lz4' 'pam'
+   'libgcrypt' 'libxcrypt' 'libcrypt.so' 'systemd-libs' 'libidn2' 
'lz4' 'pam'
'libelf' 'libseccomp' 'libseccomp.so' 'util-linux' 'libblkid.so'
'libmount.so' 'xz' 'pcre2' 'audit' 'libaudit.so' 'libp11-kit'
'libp11-kit.so' 'openssl')


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

2020-11-30 Thread Christian Hesse via arch-commits
Date: Monday, November 30, 2020 @ 15:08:53
  Author: eworm
Revision: 402416

define release mode

Modified:
  systemd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-30 15:07:32 UTC (rev 402415)
+++ PKGBUILD2020-11-30 15:08:53 UTC (rev 402416)
@@ -110,6 +110,7 @@
 
   local _meson_options=(
 -Dversion-tag="${pkgver}-${pkgrel}-arch"
+-Dmode=release
 
 -Dgnu-efi=true
 -Dima=false
@@ -169,7 +170,6 @@
   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


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

2020-11-30 Thread Christian Hesse via arch-commits
Date: Monday, November 30, 2020 @ 15:09:19
  Author: eworm
Revision: 766571

define release mode

Modified:
  lib32-systemd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-30 14:30:55 UTC (rev 766570)
+++ PKGBUILD2020-11-30 15:09:19 UTC (rev 766571)
@@ -71,6 +71,7 @@
 --libdir   /usr/lib32
 
 -Dversion-tag="${pkgver}-${pkgrel}-arch"
+-Dmode=release
 
 -Daudit=false
 -Dblkid=false


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

2020-11-30 Thread Felix Yan via arch-commits
Date: Monday, November 30, 2020 @ 16:23:56
  Author: felixonmars
Revision: 766584

upgpkg: haskell-microlens-th 0.4.3.7-1: rebuild with microlens-th 0.4.3.7

Modified:
  haskell-microlens-th/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-30 16:16:27 UTC (rev 766583)
+++ PKGBUILD2020-11-30 16:23:56 UTC (rev 766584)
@@ -2,8 +2,8 @@
 
 _hkgname=microlens-th
 pkgname=haskell-microlens-th
-pkgver=0.4.3.6
-pkgrel=2
+pkgver=0.4.3.7
+pkgrel=1
 pkgdesc="Automatic generation of record lenses for microlens"
 url="https://github.com/monadfix/microlens";
 license=('BSD')
@@ -11,7 +11,7 @@
 depends=('ghc-libs' 'haskell-microlens' 'haskell-th-abstraction')
 makedepends=('ghc')
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
-sha512sums=('34c454cc8db43dc6e0ac024e0732baaf3822d0a15148364a640af150db56ed569a2730a3c3ab1f58a4147231656bc8e32d6e398e160f4ba57a53ab83492bc47d')
+sha512sums=('a2f6c5bf7c5c4986b09c9d6f23361bf39a4e5e7bee935a2bc16a4a5f859211a57e5a9675574fd232b7b38b661da22257b8b7c6e3731988bc6e9fc952d19ab7cf')
 
 build() {
 cd $_hkgname-$pkgver


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

2020-11-30 Thread Felix Yan via arch-commits
Date: Monday, November 30, 2020 @ 16:24:07
  Author: felixonmars
Revision: 766585

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-microlens-th/repos/community-staging-x86_64/
  haskell-microlens-th/repos/community-staging-x86_64/PKGBUILD
(from rev 766584, haskell-microlens-th/trunk/PKGBUILD)

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

Copied: haskell-microlens-th/repos/community-staging-x86_64/PKGBUILD (from rev 
766584, haskell-microlens-th/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-30 16:24:07 UTC (rev 766585)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+
+_hkgname=microlens-th
+pkgname=haskell-microlens-th
+pkgver=0.4.3.7
+pkgrel=1
+pkgdesc="Automatic generation of record lenses for microlens"
+url="https://github.com/monadfix/microlens";
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-microlens' 'haskell-th-abstraction')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('a2f6c5bf7c5c4986b09c9d6f23361bf39a4e5e7bee935a2bc16a4a5f859211a57e5a9675574fd232b7b38b661da22257b8b7c6e3731988bc6e9fc952d19ab7cf')
+
+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 \
+-finlining
+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-microlens-th/trunk (PKGBUILD)

2020-11-30 Thread Felix Yan via arch-commits
Date: Monday, November 30, 2020 @ 16:26:54
  Author: felixonmars
Revision: 766586

upgpkg: haskell-microlens-th 0.4.3.7-2: rebuild with microlens-th 0.4.3.7

Modified:
  haskell-microlens-th/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-30 16:24:07 UTC (rev 766585)
+++ PKGBUILD2020-11-30 16:26:54 UTC (rev 766586)
@@ -3,7 +3,7 @@
 _hkgname=microlens-th
 pkgname=haskell-microlens-th
 pkgver=0.4.3.7
-pkgrel=1
+pkgrel=2
 pkgdesc="Automatic generation of record lenses for microlens"
 url="https://github.com/monadfix/microlens";
 license=('BSD')


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

2020-11-30 Thread Felix Yan via arch-commits
Date: Monday, November 30, 2020 @ 16:27:05
  Author: felixonmars
Revision: 766587

upgpkg: deepin-movie 1:5.7.6.135-1

Modified:
  deepin-movie/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-30 16:26:54 UTC (rev 766586)
+++ PKGBUILD2020-11-30 16:27:05 UTC (rev 766587)
@@ -2,7 +2,7 @@
 
 pkgname=deepin-movie
 epoch=1
-pkgver=5.7.6.134
+pkgver=5.7.6.135
 pkgrel=1
 pkgdesc='Movie player based on QtAV'
 arch=('x86_64')
@@ -14,7 +14,7 @@
 
source=("https://github.com/linuxdeepin/deepin-movie-reborn/archive/$pkgver/$pkgname-$pkgver.tar.gz";
 
$pkgname-mpv-qthelper.patch::https://github.com/linuxdeepin/deepin-movie-reborn/commit/cc9484fdb63589c3596d2914d180e351e0e0330a.patch
 
$pkgname-libavformat-version-check.patch::https://github.com/linuxdeepin/deepin-movie-reborn/commit/7bff486b84a6c9e8602ef2fb201cfa602d6ca1d8.patch)
-sha512sums=('f7839fc21f3ed09336aea11fe5dacfbb865160a2feba5a014b4b230cc51c09f492d9c73258cfab4276af86e6ed5c30b3cff4b1992fc294d5e36e2a3857bff32f'
+sha512sums=('680466fdb4ade782cd3f1ee26ab6ccd7adcd7738685d678ba1751f42b440382ff47a825246e1cd3ecfff98805757f0b450f73a52c3aa77681a497fbd8b7ff13b'
 
'ed9414601226feb6e93828098efae4ff007dbd40c5ac1c102cdeabb3e138898f22b11ffe6c0052902591667904454795b95dcd9b75a6d1a10c84b70232c78f8d'
 
'157296a3e48ba4b6606a859397f0c24311dead227b301448c94c9eb2dc4408d5d6466ce2a0873636f8ed48d71137e9556fc8103a6764e65ce2392ba042f94fed')
 


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

2020-11-30 Thread Felix Yan via arch-commits
Date: Monday, November 30, 2020 @ 16:27:16
  Author: felixonmars
Revision: 766589

archrelease: copy trunk to community-x86_64

Added:
  deepin-movie/repos/community-x86_64/PKGBUILD
(from rev 766588, deepin-movie/trunk/PKGBUILD)
Deleted:
  deepin-movie/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-30 16:27:05 UTC (rev 766588)
+++ PKGBUILD2020-11-30 16:27:16 UTC (rev 766589)
@@ -1,37 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=deepin-movie
-epoch=1
-pkgver=5.7.6.134
-pkgrel=1
-pkgdesc='Movie player based on QtAV'
-arch=('x86_64')
-url="https://github.com/linuxdeepin/deepin-movie-reborn";
-license=('GPL3')
-depends=('deepin-qt5integration' 'libxtst' 'mpv' 'ffmpegthumbnailer')
-makedepends=('cmake' 'gtest' 'ninja' 'qt5-tools')
-groups=('deepin-extra')
-source=("https://github.com/linuxdeepin/deepin-movie-reborn/archive/$pkgver/$pkgname-$pkgver.tar.gz";
-
$pkgname-mpv-qthelper.patch::https://github.com/linuxdeepin/deepin-movie-reborn/commit/cc9484fdb63589c3596d2914d180e351e0e0330a.patch
-
$pkgname-libavformat-version-check.patch::https://github.com/linuxdeepin/deepin-movie-reborn/commit/7bff486b84a6c9e8602ef2fb201cfa602d6ca1d8.patch)
-sha512sums=('f7839fc21f3ed09336aea11fe5dacfbb865160a2feba5a014b4b230cc51c09f492d9c73258cfab4276af86e6ed5c30b3cff4b1992fc294d5e36e2a3857bff32f'
-
'ed9414601226feb6e93828098efae4ff007dbd40c5ac1c102cdeabb3e138898f22b11ffe6c0052902591667904454795b95dcd9b75a6d1a10c84b70232c78f8d'
-
'157296a3e48ba4b6606a859397f0c24311dead227b301448c94c9eb2dc4408d5d6466ce2a0873636f8ed48d71137e9556fc8103a6764e65ce2392ba042f94fed')
-
-prepare() {
-  cd deepin-movie-reborn-$pkgver
-  patch -p1 -i ../$pkgname-mpv-qthelper.patch
-  patch -p1 -i ../$pkgname-libavformat-version-check.patch
-  sed -i '/#include /a #include ' 
src/widgets/{tip,toolbutton}.h
-}
-
-build() {
-  cd deepin-movie-reborn-$pkgver
-  cmake -GNinja -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib 
-DCMAKE_BUILD_TYPE=Release .
-  ninja
-}
-
-package() {
-  cd deepin-movie-reborn-$pkgver
-  DESTDIR="$pkgdir" ninja install
-}

Copied: deepin-movie/repos/community-x86_64/PKGBUILD (from rev 766588, 
deepin-movie/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-30 16:27:16 UTC (rev 766589)
@@ -0,0 +1,37 @@
+# Maintainer: Felix Yan 
+
+pkgname=deepin-movie
+epoch=1
+pkgver=5.7.6.135
+pkgrel=1
+pkgdesc='Movie player based on QtAV'
+arch=('x86_64')
+url="https://github.com/linuxdeepin/deepin-movie-reborn";
+license=('GPL3')
+depends=('deepin-qt5integration' 'libxtst' 'mpv' 'ffmpegthumbnailer')
+makedepends=('cmake' 'gtest' 'ninja' 'qt5-tools')
+groups=('deepin-extra')
+source=("https://github.com/linuxdeepin/deepin-movie-reborn/archive/$pkgver/$pkgname-$pkgver.tar.gz";
+
$pkgname-mpv-qthelper.patch::https://github.com/linuxdeepin/deepin-movie-reborn/commit/cc9484fdb63589c3596d2914d180e351e0e0330a.patch
+
$pkgname-libavformat-version-check.patch::https://github.com/linuxdeepin/deepin-movie-reborn/commit/7bff486b84a6c9e8602ef2fb201cfa602d6ca1d8.patch)
+sha512sums=('680466fdb4ade782cd3f1ee26ab6ccd7adcd7738685d678ba1751f42b440382ff47a825246e1cd3ecfff98805757f0b450f73a52c3aa77681a497fbd8b7ff13b'
+
'ed9414601226feb6e93828098efae4ff007dbd40c5ac1c102cdeabb3e138898f22b11ffe6c0052902591667904454795b95dcd9b75a6d1a10c84b70232c78f8d'
+
'157296a3e48ba4b6606a859397f0c24311dead227b301448c94c9eb2dc4408d5d6466ce2a0873636f8ed48d71137e9556fc8103a6764e65ce2392ba042f94fed')
+
+prepare() {
+  cd deepin-movie-reborn-$pkgver
+  patch -p1 -i ../$pkgname-mpv-qthelper.patch
+  patch -p1 -i ../$pkgname-libavformat-version-check.patch
+  sed -i '/#include /a #include ' 
src/widgets/{tip,toolbutton}.h
+}
+
+build() {
+  cd deepin-movie-reborn-$pkgver
+  cmake -GNinja -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib 
-DCMAKE_BUILD_TYPE=Release .
+  ninja
+}
+
+package() {
+  cd deepin-movie-reborn-$pkgver
+  DESTDIR="$pkgdir" ninja install
+}


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

2020-11-30 Thread Felix Yan via arch-commits
Date: Monday, November 30, 2020 @ 16:27:20
  Author: felixonmars
Revision: 766590

upgpkg: deepin-file-manager 1:5.2.0.70-1

Modified:
  deepin-file-manager/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-30 16:27:16 UTC (rev 766589)
+++ PKGBUILD2020-11-30 16:27:20 UTC (rev 766590)
@@ -3,7 +3,7 @@
 # Contributor: Xu Fasheng 
 
 pkgname=deepin-file-manager
-pkgver=5.2.0.69
+pkgver=5.2.0.70
 pkgrel=1
 epoch=1
 pkgdesc='Deepin File Manager'
@@ -26,7 +26,7 @@
 conflicts=('deepin-desktop')
 replaces=('deepin-desktop')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/dde-file-manager/archive/$pkgver.tar.gz";)
-sha512sums=('7603d7e8df1c492a9984846edcb1642ccb92967dc8f4bb18f786c22f5a2b30a3e9cf8b906289afff185371c43504cc02eb79de3c0b727fcb16ee5aca21d613c5')
+sha512sums=('a1f138cb0ab9467e27acda96b6eb5e761dd3a629f83d6bcb9c1e9db15e9f22a00d4db4a242c76535e0a99d558cd786ee4f8b39b89f9b865edf7626f9abf2ecf9')
 
 prepare() {
   cd dde-file-manager-$pkgver


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

2020-11-30 Thread Felix Yan via arch-commits
Date: Monday, November 30, 2020 @ 16:27:31
  Author: felixonmars
Revision: 766591

archrelease: copy trunk to community-x86_64

Added:
  deepin-file-manager/repos/community-x86_64/PKGBUILD
(from rev 766590, deepin-file-manager/trunk/PKGBUILD)
Deleted:
  deepin-file-manager/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-30 16:27:20 UTC (rev 766590)
+++ PKGBUILD2020-11-30 16:27:31 UTC (rev 766591)
@@ -1,48 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-file-manager
-pkgver=5.2.0.69
-pkgrel=1
-epoch=1
-pkgdesc='Deepin File Manager'
-arch=('x86_64')
-url="https://github.com/linuxdeepin/dde-file-manager";
-license=('GPL3')
-# startdde: for com.deepin.SessionManager
-depends=('deepin-qt5integration' 'deepin-anything' 'disomaster' 'file' 
'gio-qt' 'libmediainfo'
- 'lucene++' 'avfs' 'polkit-qt5' 'poppler' 'ffmpegthumbnailer' 
'jemalloc' 'kcodecs'
- 'startdde' 'taglib' 'htmlcxx' 'libgsf' 'mimetic' 'boost-libs')
-makedepends=('boost' 'qt5-tools' 'deepin-dock' 'deepin-movie' 
'deepin-gettext-tools')
-optdepends=('deepin-manual: for help menual'
-'deepin-shortcut-viewer: for shortcut display'
-'deepin-screensaver: for screensaver chooser'
-'deepin-movie: for video preview'
-'deepin-terminal: for opening in terminal'
-'deepin-compressor: for compress/decompress')
-groups=('deepin')
-provides=('deepin-desktop')
-conflicts=('deepin-desktop')
-replaces=('deepin-desktop')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/dde-file-manager/archive/$pkgver.tar.gz";)
-sha512sums=('7603d7e8df1c492a9984846edcb1642ccb92967dc8f4bb18f786c22f5a2b30a3e9cf8b906289afff185371c43504cc02eb79de3c0b727fcb16ee5aca21d613c5')
-
-prepare() {
-  cd dde-file-manager-$pkgver
-  sed -i '/#include /a #include ' 
dialogs/dfmtaskwidget.cpp
-  sed -i '/#include /a #include ' 
dde-file-manager-lib/interfaces/dfmglobal.cpp
-  sed -i '/#include /a #include ' 
dde-file-manager-lib/interfaces/{dlistitemdelegate,dfmstyleditemdelegate,diconitemdelegate}.cpp
 dde-file-manager-lib/dialogs/openwithdialog.cpp
-  sed -i 's|systembusconf.path = /etc/dbus-1/system.d|systembusconf.path = 
/usr/share/dbus-1/system.d|' dde-file-manager-daemon/dde-file-manager-daemon.pro
-}
-
-build() {
-  cd dde-file-manager-$pkgver
-  qmake-qt5 PREFIX=/usr filemanager.pro
-  make
-}
-
-package() {
-  cd dde-file-manager-$pkgver
-  make INSTALL_ROOT="$pkgdir" install
-}

Copied: deepin-file-manager/repos/community-x86_64/PKGBUILD (from rev 766590, 
deepin-file-manager/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-30 16:27:31 UTC (rev 766591)
@@ -0,0 +1,48 @@
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-file-manager
+pkgver=5.2.0.70
+pkgrel=1
+epoch=1
+pkgdesc='Deepin File Manager'
+arch=('x86_64')
+url="https://github.com/linuxdeepin/dde-file-manager";
+license=('GPL3')
+# startdde: for com.deepin.SessionManager
+depends=('deepin-qt5integration' 'deepin-anything' 'disomaster' 'file' 
'gio-qt' 'libmediainfo'
+ 'lucene++' 'avfs' 'polkit-qt5' 'poppler' 'ffmpegthumbnailer' 
'jemalloc' 'kcodecs'
+ 'startdde' 'taglib' 'htmlcxx' 'libgsf' 'mimetic' 'boost-libs')
+makedepends=('boost' 'qt5-tools' 'deepin-dock' 'deepin-movie' 
'deepin-gettext-tools')
+optdepends=('deepin-manual: for help menual'
+'deepin-shortcut-viewer: for shortcut display'
+'deepin-screensaver: for screensaver chooser'
+'deepin-movie: for video preview'
+'deepin-terminal: for opening in terminal'
+'deepin-compressor: for compress/decompress')
+groups=('deepin')
+provides=('deepin-desktop')
+conflicts=('deepin-desktop')
+replaces=('deepin-desktop')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/dde-file-manager/archive/$pkgver.tar.gz";)
+sha512sums=('a1f138cb0ab9467e27acda96b6eb5e761dd3a629f83d6bcb9c1e9db15e9f22a00d4db4a242c76535e0a99d558cd786ee4f8b39b89f9b865edf7626f9abf2ecf9')
+
+prepare() {
+  cd dde-file-manager-$pkgver
+  sed -i '/#include /a #include ' 
dialogs/dfmtaskwidget.cpp
+  sed -i '/#include /a #include ' 
dde-file-manager-lib/interfaces/dfmglobal.cpp
+  sed -i '/#include /a #include ' 
dde-file-manager-lib/interfaces/{dlistitemdelegate,dfmstyleditemdelegate,diconitemdelegate}.cpp
 dde-file-manager-lib/dialogs/openwithdialog.cpp
+  sed -i 's|systembusconf.path = /etc/dbus-1/system.d|systembusconf.path = 
/usr/share/dbus-1/system.d|' dde-file-manager-daemon/dde-file-manager-daemon.pro
+}
+
+build() {
+  cd dde-file-manager-$pkgver
+  qmake-qt5 PREFIX=/usr

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

2020-11-30 Thread Felix Yan via arch-commits
Date: Monday, November 30, 2020 @ 16:27:48
  Author: felixonmars
Revision: 766592

upgpkg: uusi 0.3.0.0-2: rebuild with microlens-th 0.4.3.7

Modified:
  uusi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-30 16:27:31 UTC (rev 766591)
+++ PKGBUILD2020-11-30 16:27:48 UTC (rev 766592)
@@ -2,7 +2,7 @@
 
 pkgname=uusi
 pkgver=0.3.0.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Remove all version constraints of dependencies in .cabal file"
 url="https://github.com/berberman/uusi";
 license=("MIT")


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

2020-11-30 Thread Felix Yan via arch-commits
Date: Monday, November 30, 2020 @ 16:27:58
  Author: felixonmars
Revision: 766593

archrelease: copy trunk to community-staging-x86_64

Added:
  uusi/repos/community-staging-x86_64/
  uusi/repos/community-staging-x86_64/PKGBUILD
(from rev 766592, uusi/trunk/PKGBUILD)

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

Copied: uusi/repos/community-staging-x86_64/PKGBUILD (from rev 766592, 
uusi/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-30 16:27:58 UTC (rev 766593)
@@ -0,0 +1,44 @@
+# Maintainer: Felix Yan 
+
+pkgname=uusi
+pkgver=0.3.0.0
+pkgrel=2
+pkgdesc="Remove all version constraints of dependencies in .cabal file"
+url="https://github.com/berberman/uusi";
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-microlens' 'haskell-microlens-th')
+makedepends=('ghc' 'haskell-hunit')
+source=("https://hackage.haskell.org/packages/archive/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz";)
+sha512sums=('0978302f7ff1456ad226f8facf5c6459c966f4782239742ac882425dcc83191588c33b30b82ac5e4ab4c3533be6c84a8dd0cef5295e60774bc5fbc774cfb1dc7')
+
+prepare() {
+  cd $pkgname-$pkgver
+  echo -e "import Distribution.Simple\nmain = defaultMain" > Setup.hs
+  sed -i 's/<3.1/<4/' $pkgname.cabal
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  runhaskell Setup build $MAKEFLAGS
+}
+
+check() {
+  cd $pkgname-$pkgver
+  runhaskell Setup test
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  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-microlens-th/repos/community-staging-x86_64 (2 files)

2020-11-30 Thread Felix Yan via arch-commits
Date: Monday, November 30, 2020 @ 16:27:05
  Author: felixonmars
Revision: 766588

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-microlens-th/repos/community-staging-x86_64/PKGBUILD
(from rev 766586, haskell-microlens-th/trunk/PKGBUILD)
Deleted:
  haskell-microlens-th/repos/community-staging-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-30 16:27:05 UTC (rev 766587)
+++ PKGBUILD2020-11-30 16:27:05 UTC (rev 766588)
@@ -1,43 +0,0 @@
-# Maintainer: Felix Yan 
-
-_hkgname=microlens-th
-pkgname=haskell-microlens-th
-pkgver=0.4.3.7
-pkgrel=1
-pkgdesc="Automatic generation of record lenses for microlens"
-url="https://github.com/monadfix/microlens";
-license=('BSD')
-arch=('x86_64')
-depends=('ghc-libs' 'haskell-microlens' 'haskell-th-abstraction')
-makedepends=('ghc')
-source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
-sha512sums=('a2f6c5bf7c5c4986b09c9d6f23361bf39a4e5e7bee935a2bc16a4a5f859211a57e5a9675574fd232b7b38b661da22257b8b7c6e3731988bc6e9fc952d19ab7cf')
-
-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 \
--finlining
-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
-}

Copied: haskell-microlens-th/repos/community-staging-x86_64/PKGBUILD (from rev 
766586, haskell-microlens-th/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-30 16:27:05 UTC (rev 766588)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+
+_hkgname=microlens-th
+pkgname=haskell-microlens-th
+pkgver=0.4.3.7
+pkgrel=2
+pkgdesc="Automatic generation of record lenses for microlens"
+url="https://github.com/monadfix/microlens";
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-microlens' 'haskell-th-abstraction')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('a2f6c5bf7c5c4986b09c9d6f23361bf39a4e5e7bee935a2bc16a4a5f859211a57e5a9675574fd232b7b38b661da22257b8b7c6e3731988bc6e9fc952d19ab7cf')
+
+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 \
+-finlining
+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 arch-hs/trunk (PKGBUILD)

2020-11-30 Thread Felix Yan via arch-commits
Date: Monday, November 30, 2020 @ 16:30:15
  Author: felixonmars
Revision: 766594

upgpkg: arch-hs 0.4.0.0-13: rebuild with microlens-th 0.4.3.7

Modified:
  arch-hs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-30 16:27:58 UTC (rev 766593)
+++ PKGBUILD2020-11-30 16:30:15 UTC (rev 766594)
@@ -3,7 +3,7 @@
 
 pkgname=arch-hs
 pkgver=0.4.0.0
-pkgrel=12
+pkgrel=13
 pkgdesc="Distribute hackage packages to archlinux"
 arch=('x86_64')
 url="https://github.com/berberman/arch-hs";


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

2020-11-30 Thread Felix Yan via arch-commits
Date: Monday, November 30, 2020 @ 16:32:18
  Author: felixonmars
Revision: 766598

upgpkg: hasktags 0.71.2-107: rebuild with microlens-th 0.4.3.7

Modified:
  hasktags/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-30 16:31:18 UTC (rev 766597)
+++ PKGBUILD2020-11-30 16:32:18 UTC (rev 766598)
@@ -3,7 +3,7 @@
 
 pkgname=hasktags
 pkgver=0.71.2
-pkgrel=106
+pkgrel=107
 pkgdesc="Produces ctags \"tags\" and etags \"TAGS\" files for Haskell programs"
 url="https://github.com/MarcWeber/hasktags";
 license=("BSD")


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

2020-11-30 Thread Felix Yan via arch-commits
Date: Monday, November 30, 2020 @ 16:30:25
  Author: felixonmars
Revision: 766595

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: arch-hs/repos/community-staging-x86_64/PKGBUILD (from rev 766594, 
arch-hs/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-30 16:30:25 UTC (rev 766595)
@@ -0,0 +1,65 @@
+# Maintainer: Felix Yan 
+# Contributor: berberman 
+
+pkgname=arch-hs
+pkgver=0.4.0.0
+pkgrel=13
+pkgdesc="Distribute hackage packages to archlinux"
+arch=('x86_64')
+url="https://github.com/berberman/arch-hs";
+license=('MIT')
+depends=('ghc-libs' 'pacman' 'haskell-aeson' 'haskell-req' 
'haskell-hackage-db' 'haskell-megaparsec'
+ 'haskell-algebraic-graphs' 'haskell-conduit' 'haskell-tar-conduit' 
'haskell-conduit-extra'
+ 'haskell-split' 'haskell-neat-interpolation' 'haskell-microlens' 
'haskell-microlens-th'
+ 'haskell-polysemy' 'haskell-colourista' 
'haskell-optparse-applicative')
+makedepends=('ghc' 'uusi')
+source=("https://hackage.haskell.org/packages/archive/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz";)
+sha512sums=('1357a96f647143754d3140d2598a617c7c0a720a1a1aa923171d84a61927d7e06dfed62e5d2be2544ce88fcb4165238f33720e928a8118c635c809efa23eb546')
+
+_gen_comp(){
+  LD_LIBRARY_PATH="$PWD/dist/build" dist/build/arch-hs${1}/arch-hs${1} 
--bash-completion-script "/usr/bin/arch-hs${1}" > bash${1}
+  LD_LIBRARY_PATH="$PWD/dist/build" dist/build/arch-hs${1}/arch-hs${1} 
--zsh-completion-script  "/usr/bin/arch-hs${1}" > zsh${1}
+  LD_LIBRARY_PATH="$PWD/dist/build" dist/build/arch-hs${1}/arch-hs${1} 
--fish-completion-script "/usr/bin/arch-hs${1}" > fish${1}
+}
+
+_install_comp(){
+  install -D -m644 bash${1} 
"$pkgdir/usr/share/bash-completion/completions/arch-hs${1}"
+  install -D -m644 zsh${1}  "$pkgdir/usr/share/zsh/site-functions/_arch-hs${1}"
+  install -D -m644 bash${1} 
"$pkgdir/usr/share/fish/vendor_completions.d/arch-hs${1}.fish"
+}
+
+prepare() {
+  uusi $pkgname-$pkgver/$pkgname.cabal
+}
+
+build() {
+  cd $pkgname-$pkgver
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie' -falpm
+
+  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
+  
+  _gen_comp
+  _gen_comp "-diff"
+  _gen_comp "-submit"
+}
+
+package() {
+  cd $pkgname-$pkgver
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+  
+  _install_comp
+  _install_comp "-diff"
+  _install_comp "-submit"
+} 


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

2020-11-30 Thread Felix Yan via arch-commits
Date: Monday, November 30, 2020 @ 16:31:08
  Author: felixonmars
Revision: 766596

upgpkg: haskell-microlens-platform 0.4.1-49: rebuild with microlens-th 0.4.3.7

Modified:
  haskell-microlens-platform/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-30 16:30:25 UTC (rev 766595)
+++ PKGBUILD2020-11-30 16:31:08 UTC (rev 766596)
@@ -4,7 +4,7 @@
 _hkgname=microlens-platform
 pkgname=haskell-microlens-platform
 pkgver=0.4.1
-pkgrel=48
+pkgrel=49
 pkgdesc="microlens + all batteries included (best for apps)"
 url="https://github.com/monadfix/microlens";
 license=("BSD")


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

2020-11-30 Thread Felix Yan via arch-commits
Date: Monday, November 30, 2020 @ 16:32:28
  Author: felixonmars
Revision: 766599

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: hasktags/repos/community-staging-x86_64/PKGBUILD (from rev 766598, 
hasktags/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-30 16:32:28 UTC (rev 766599)
@@ -0,0 +1,49 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hasktags
+pkgver=0.71.2
+pkgrel=107
+pkgdesc="Produces ctags \"tags\" and etags \"TAGS\" files for Haskell programs"
+url="https://github.com/MarcWeber/hasktags";
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-json' 'haskell-microlens-platform' 
'haskell-optparse-applicative'
+ 'haskell-utf8-string')
+makedepends=('ghc' 'haskell-hunit')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";)
+sha512sums=('649f8e74202dc08b8c37535c2fb0fefe11c55bc9de300093b20e7b224fa6daccbc938988ef810a479e745b53270215fc847caa6e0b06310a7d1c7493fc37b1ce')
+
+prepare() {
+cd $pkgname-$pkgver
+sed -i -e 's/< *0.4/<1/' -e 's/< *0.10/<1/' $pkgname.cabal
+}
+
+build() {
+cd $pkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-debug --ghc-option='-pie'
+runhaskell Setup build $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 $pkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $pkgname-$pkgver
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-11-30 Thread Felix Yan via arch-commits
Date: Monday, November 30, 2020 @ 16:31:18
  Author: felixonmars
Revision: 766597

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-microlens-platform/repos/community-staging-x86_64/
  haskell-microlens-platform/repos/community-staging-x86_64/PKGBUILD
(from rev 766596, haskell-microlens-platform/trunk/PKGBUILD)

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

Copied: haskell-microlens-platform/repos/community-staging-x86_64/PKGBUILD 
(from rev 766596, haskell-microlens-platform/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-30 16:31:18 UTC (rev 766597)
@@ -0,0 +1,40 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=microlens-platform
+pkgname=haskell-microlens-platform
+pkgver=0.4.1
+pkgrel=49
+pkgdesc="microlens + all batteries included (best for apps)"
+url="https://github.com/monadfix/microlens";
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-hashable" "haskell-microlens" 
"haskell-microlens-ghc"
+ "haskell-microlens-mtl" "haskell-microlens-th"
+ "haskell-unordered-containers" "haskell-vector")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('17e72270286c00a48d0fb7ea045825921fe91cace1a70cb88113a39a2a576e02e4d5f2ceefd748fbd52c2cfb0edcac3fc342d282bf9d10da21e29b520e2eee3b')
+
+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-butcher/trunk (PKGBUILD)

2020-11-30 Thread Felix Yan via arch-commits
Date: Monday, November 30, 2020 @ 16:33:36
  Author: felixonmars
Revision: 766600

upgpkg: haskell-butcher 1.3.3.2-2: rebuild with microlens-th 0.4.3.7

Modified:
  haskell-butcher/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-30 16:32:28 UTC (rev 766599)
+++ PKGBUILD2020-11-30 16:33:36 UTC (rev 766600)
@@ -3,7 +3,7 @@
 _hkgname=butcher
 pkgname=haskell-butcher
 pkgver=1.3.3.2
-pkgrel=1
+pkgrel=2
 pkgdesc="Chops a command or program invocation into digestable pieces."
 url="https://github.com/lspitzner/butcher/";
 license=("BSD")
@@ -24,7 +24,7 @@
 --ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
 --ghc-option='-pie'
 
-  runhaskell Setup build
+  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


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

2020-11-30 Thread Felix Yan via arch-commits
Date: Monday, November 30, 2020 @ 16:36:33
  Author: felixonmars
Revision: 766602

upgpkg: haskell-brittany 0.12.2.0-2: rebuild with microlens-th 0.4.3.7

Modified:
  haskell-brittany/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-30 16:33:47 UTC (rev 766601)
+++ PKGBUILD2020-11-30 16:36:33 UTC (rev 766602)
@@ -3,7 +3,7 @@
 _hkgname=brittany
 pkgname=haskell-brittany
 pkgver=0.12.2.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Haskell source code formatter"
 url="https://github.com/lspitzner/brittany/";
 license=("AGPL")
@@ -36,7 +36,7 @@
 --ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
 --ghc-option='-pie'
 
-  runhaskell Setup build
+  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


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

2020-11-30 Thread Felix Yan via arch-commits
Date: Monday, November 30, 2020 @ 16:37:58
  Author: felixonmars
Revision: 766604

upgpkg: haskell-vty 5.32-5: rebuild with microlens-th 0.4.3.7

Modified:
  haskell-vty/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-30 16:36:45 UTC (rev 766603)
+++ PKGBUILD2020-11-30 16:37:58 UTC (rev 766604)
@@ -4,7 +4,7 @@
 _hkgname=vty
 pkgname=haskell-vty
 pkgver=5.32
-pkgrel=4
+pkgrel=5
 pkgdesc="A simple terminal UI library"
 url="https://github.com/jtdaugherty/vty";
 license=("BSD")


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

2020-11-30 Thread Felix Yan via arch-commits
Date: Monday, November 30, 2020 @ 16:33:47
  Author: felixonmars
Revision: 766601

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-butcher/repos/community-staging-x86_64/PKGBUILD (from rev 
766600, haskell-butcher/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-30 16:33:47 UTC (rev 766601)
@@ -0,0 +1,47 @@
+# Maintainer: Felix Yan 
+
+_hkgname=butcher
+pkgname=haskell-butcher
+pkgver=1.3.3.2
+pkgrel=2
+pkgdesc="Chops a command or program invocation into digestable pieces."
+url="https://github.com/lspitzner/butcher/";
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-bifunctors' 'haskell-deque' 'haskell-extra' 
'haskell-free'
+ 'haskell-microlens' 'haskell-microlens-th' 'haskell-multistate' 
'haskell-unsafe'
+ 'haskell-void')
+makedepends=('ghc' 'haskell-hspec')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz";)
+sha256sums=('1d0f8e8e498b012c4a859671eebf34a6e965e8ed99b3c90d3aad1d8898c40f1b')
+
+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 \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  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 -t "$pkgdir"/usr/share/licenses/$pkgname/
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-11-30 Thread Felix Yan via arch-commits
Date: Monday, November 30, 2020 @ 16:36:45
  Author: felixonmars
Revision: 766603

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-brittany/repos/community-staging-x86_64/
  haskell-brittany/repos/community-staging-x86_64/PKGBUILD
(from rev 766602, haskell-brittany/trunk/PKGBUILD)
  haskell-brittany/repos/community-staging-x86_64/ghc-8.10.patch
(from rev 766602, haskell-brittany/trunk/ghc-8.10.patch)

+
 PKGBUILD   |   59 
 ghc-8.10.patch | 3558 +++
 2 files changed, 3617 insertions(+)

Copied: haskell-brittany/repos/community-staging-x86_64/PKGBUILD (from rev 
766602, haskell-brittany/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-30 16:36:45 UTC (rev 766603)
@@ -0,0 +1,59 @@
+# Maintainer: Felix Yan 
+
+_hkgname=brittany
+pkgname=haskell-brittany
+pkgver=0.12.2.0
+pkgrel=2
+pkgdesc="Haskell source code formatter"
+url="https://github.com/lspitzner/brittany/";
+license=("AGPL")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-butcher' 'haskell-cmdargs' 
'haskell-czipwith'
+ 'haskell-data-tree-print' 'haskell-extra' 'haskell-ghc-exactprint' 
'haskell-ghc-paths'
+ 'haskell-monad-memo' 'haskell-multistate' 'haskell-random' 
'haskell-safe'
+ 'haskell-strict' 'haskell-syb' 'haskell-uniplate' 'haskell-unsafe' 
'haskell-yaml')
+makedepends=('ghc' 'uusi' 'haskell-hspec')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz";
+ghc-8.10.patch)
+sha256sums=('f437edc73106185213abdbfdc3d34a2f449c341cebd738b51ed39d683ca4670f'
+'e0b4617fe2cb67f4ab035fe0ac333d506c4acfd7451b134ec76ee1eca6ee2b64')
+
+prepare() {
+  cd $_hkgname-$pkgver
+  patch -p1 -i ../ghc-8.10.patch
+  uusi -r semigroups:Cabal -u random $_hkgname.cabal
+
+  # Hack to use Cabal's compatibility layer of semigroups
+  sed -i 's/import Data.Semigroup.Generic/import 
Distribution.Compat.Semigroup/' 
src/Language/Haskell/Brittany/Internal/Config/Types.hs
+}
+
+build() {
+  cd $_hkgname-$pkgver
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  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 -t "$pkgdir"/usr/share/licenses/$pkgname/
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}

Copied: haskell-brittany/repos/community-staging-x86_64/ghc-8.10.patch (from 
rev 766602, haskell-brittany/trunk/ghc-8.10.patch)
===
--- community-staging-x86_64/ghc-8.10.patch (rev 0)
+++ community-staging-x86_64/ghc-8.10.patch 2020-11-30 16:36:45 UTC (rev 
766603)
@@ -0,0 +1,3558 @@
+From 17d07edb0a687053fbeb39e0bdf07415ee35a278 Mon Sep 17 00:00:00 2001
+From: jneira 
+Date: Wed, 13 May 2020 10:44:37 +0200
+Subject: [PATCH 02/17] Relax upper bounds to include updated packages
+
+---
+ brittany.cabal | 8 
+ 1 file changed, 4 insertions(+), 4 deletions(-)
+
+diff --git a/brittany.cabal b/brittany.cabal
+index 818e818..590373f 100644
+--- a/brittany.cabal
 b/brittany.cabal
+@@ -91,10 +91,10 @@ library {
+ -fno-warn-redundant-constraints
+   }
+   build-depends:
+-{ base >=4.9 && <4.14
+-, ghc >=8.0.1 && <8.9
++{ base >=4.9 && <4.15
++, ghc >=8.0.1 && <8.11
+ , ghc-paths >=0.1.0.9 && <0.2
+-, ghc-exactprint >=0.5.8 && <0.6.3
++, ghc-exactprint >=0.5.8 && <0.6.4
+ , transformers >=0.5.2.0 && <0.6
+ , containers >=0.5.7.1 && <0.7
+ , mtl >=2.2.1 && <2.3
+@@ -118,7 +118,7 @@ library {
+ , semigroups >=0.18.2 && <0.20
+ , cmdargs >=0.10.14 && <0.11
+ , czipwith >=1.0.1.0 && <1.1
+-, ghc-boot-th >=8.0.1 && <8.9
++, ghc-boot-th >=8.0.1 && <8.11
+ , filepath >=1.4.1.0 && <1.5
+ , random >= 1.1 && <1.2
+ }
+
+From b69a8f983c070564b41b6fdec160af6d8aff730b Mon Sep 17 00:00:00 2001
+From: jneira 
+Date: Wed, 13 May 2020 10:45:14 +0200
+Subject: [PATCH 03/17] Adapt to new GHC modules organization
+
+---
+ .../Haskell/Brittany/Interna

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

2020-11-30 Thread Felix Yan via arch-commits
Date: Monday, November 30, 2020 @ 16:38:08
  Author: felixonmars
Revision: 766605

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-vty/repos/community-staging-x86_64/PKGBUILD (from rev 766604, 
haskell-vty/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-30 16:38:08 UTC (rev 766605)
@@ -0,0 +1,50 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=vty
+pkgname=haskell-vty
+pkgver=5.32
+pkgrel=5
+pkgdesc="A simple terminal UI library"
+url="https://github.com/jtdaugherty/vty";
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-ansi-terminal' 'haskell-blaze-builder' 
'haskell-microlens'
+ 'haskell-microlens-mtl' 'haskell-microlens-th' 'haskell-hashable' 
'haskell-parallel'
+ 'haskell-utf8-string' 'haskell-vector')
+makedepends=('ghc' 'haskell-hunit' 'haskell-quickcheck' 'haskell-smallcheck'
+ 'haskell-quickcheck-assertions' 'haskell-test-framework'
+ 'haskell-test-framework-smallcheck' 
'haskell-test-framework-hunit' 'haskell-random'
+ 'haskell-string-qq')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('bd7a59d3c1336d045b7abab4b4c02ecba5d88617189a0a4ef7bd03609e6590d365fca297db827d709075f56c79b83e5fc020f7d6156b1e98a450fe2dafb06f6e')
+
+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
+}
+
+check() {
+# https://github.com/jtdaugherty/vty/issues/132
+# https://github.com/haskell/cabal/issues/4918
+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-brick/repos (2 files)

2020-11-30 Thread Felix Yan via arch-commits
Date: Monday, November 30, 2020 @ 16:39:46
  Author: felixonmars
Revision: 766607

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-brick/repos/community-staging-x86_64/PKGBUILD (from rev 766606, 
haskell-brick/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-30 16:39:46 UTC (rev 766607)
@@ -0,0 +1,46 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=brick
+pkgname=haskell-brick
+pkgver=0.57.1
+pkgrel=5
+pkgdesc="A declarative terminal user interface library"
+url="https://github.com/jtdaugherty/brick";
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-vty' 'haskell-data-clist' 'haskell-dlist' 
'haskell-microlens'
+ 'haskell-microlens-th' 'haskell-microlens-mtl' 'haskell-config-ini' 
'haskell-vector'
+ 'haskell-contravariant' 'haskell-text-zipper' 'haskell-word-wrap')
+makedepends=('ghc' 'haskell-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('d9dcef9eee604289e7f36c19d128d443384d19b725e5de282f9085c3ff16dde65b1ba689e88749ea350eecf57d7225e7bd554bb84e367900fe0686b07626f9e7')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-demos
+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-brick/trunk (PKGBUILD)

2020-11-30 Thread Felix Yan via arch-commits
Date: Monday, November 30, 2020 @ 16:39:36
  Author: felixonmars
Revision: 766606

upgpkg: haskell-brick 0.57.1-5: rebuild with microlens-th 0.4.3.7

Modified:
  haskell-brick/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-30 16:38:08 UTC (rev 766605)
+++ PKGBUILD2020-11-30 16:39:36 UTC (rev 766606)
@@ -4,7 +4,7 @@
 _hkgname=brick
 pkgname=haskell-brick
 pkgver=0.57.1
-pkgrel=4
+pkgrel=5
 pkgdesc="A declarative terminal user interface library"
 url="https://github.com/jtdaugherty/brick";
 license=("BSD")


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

2020-11-30 Thread Felix Yan via arch-commits
Date: Monday, November 30, 2020 @ 16:41:11
  Author: felixonmars
Revision: 766609

archrelease: copy trunk to community-staging-x86_64

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

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

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


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

2020-11-30 Thread Felix Yan via arch-commits
Date: Monday, November 30, 2020 @ 16:41:01
  Author: felixonmars
Revision: 766608

upgpkg: hledger-ui 1.19.1-34: rebuild with microlens-th 0.4.3.7

Modified:
  hledger-ui/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-30 16:39:46 UTC (rev 766607)
+++ PKGBUILD2020-11-30 16:41:01 UTC (rev 766608)
@@ -3,7 +3,7 @@
 
 pkgname=hledger-ui
 pkgver=1.19.1
-pkgrel=33
+pkgrel=34
 pkgdesc="Curses-style terminal interface for the hledger accounting system"
 url="http://hledger.org";
 license=("GPL")


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

2020-11-30 Thread Felix Yan via arch-commits
Date: Monday, November 30, 2020 @ 16:42:43
  Author: felixonmars
Revision: 766610

upgpkg: taskell 1.10.1-47: rebuild with microlens-th 0.4.3.7

Modified:
  taskell/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-30 16:41:11 UTC (rev 766609)
+++ PKGBUILD2020-11-30 16:42:43 UTC (rev 766610)
@@ -2,7 +2,7 @@
 
 pkgname=taskell
 pkgver=1.10.1
-pkgrel=46
+pkgrel=47
 pkgdesc='A command-line kanban board/task manager'
 license=(BSD)
 arch=(x86_64)


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

2020-11-30 Thread Felix Yan via arch-commits
Date: Monday, November 30, 2020 @ 16:43:59
  Author: felixonmars
Revision: 766612

upgpkg: haskell-summoner-tui 2.0.1.1-58: rebuild with microlens-th 0.4.3.7

Modified:
  haskell-summoner-tui/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-30 16:42:53 UTC (rev 766611)
+++ PKGBUILD2020-11-30 16:43:59 UTC (rev 766612)
@@ -4,7 +4,7 @@
 _hkgname=summoner-tui
 pkgname=haskell-summoner-tui
 pkgver=2.0.1.1
-pkgrel=57
+pkgrel=58
 pkgdesc="Tool for scaffolding fully configured batteries-included 
production-level Haskell projects using TUI."
 url="https://github.com/kowainik/summoner";
 license=('MPL2')


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

2020-11-30 Thread Felix Yan via arch-commits
Date: Monday, November 30, 2020 @ 16:44:08
  Author: felixonmars
Revision: 766613

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-summoner-tui/repos/community-staging-x86_64/
  haskell-summoner-tui/repos/community-staging-x86_64/PKGBUILD
(from rev 766612, haskell-summoner-tui/trunk/PKGBUILD)

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

Copied: haskell-summoner-tui/repos/community-staging-x86_64/PKGBUILD (from rev 
766612, haskell-summoner-tui/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-30 16:44:08 UTC (rev 766613)
@@ -0,0 +1,53 @@
+# Maintainer: Felix Yan 
+# Contributor: berberman 
+
+_hkgname=summoner-tui
+pkgname=haskell-summoner-tui
+pkgver=2.0.1.1
+pkgrel=58
+pkgdesc="Tool for scaffolding fully configured batteries-included 
production-level Haskell projects using TUI."
+url="https://github.com/kowainik/summoner";
+license=('MPL2')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-brick' 'haskell-colourista' 'haskell-microlens' 
'haskell-microlens-th'
+ 'haskell-relude' 'haskell-summoner' 'haskell-validation-selective' 
'haskell-vty')
+makedepends=('ghc' 'uusi')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz";)
+sha256sums=('9f840f25d72c54b4b5ed0c5e6755e52ca71e9961759de6bd0046d567bd1f2c27')
+
+prepare(){
+  cd $_hkgname-$pkgver
+  echo -e "import Distribution.Simple\nmain = defaultMain" > Setup.hs
+  uusi $_hkgname.cabal
+}
+
+build() {
+  cd $_hkgname-$pkgver
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  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 taskell/repos (2 files)

2020-11-30 Thread Felix Yan via arch-commits
Date: Monday, November 30, 2020 @ 16:42:53
  Author: felixonmars
Revision: 766611

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: taskell/repos/community-staging-x86_64/PKGBUILD (from rev 766610, 
taskell/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-30 16:42:53 UTC (rev 766611)
@@ -0,0 +1,48 @@
+# Maintainer: Jelle van der Waa https://hackage.haskell.org/package/$pkgname";
+depends=(ghc-libs haskell-aeson haskell-attoparsec haskell-brick 
haskell-config-ini haskell-file-embed haskell-fold-debounce haskell-http-client 
haskell-http-conduit haskell-http-types haskell-lens haskell-tz haskell-vty 
haskell-classy-prelude)
+makedepends=(ghc uusi haskell-classy-prelude haskell-raw-strings-qq 
haskell-tasty haskell-tasty-discover haskell-tasty-expected-failure 
haskell-tasty-hunit)
+source=(https://hackage.haskell.org/packages/archive/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz)
+sha512sums=('5ef1504f908876aa17dfd817115bc0d1f8056cba4b759ee70b3d869bd778db7ca0123585f107c906b898d5c614091cb05955cb387a03f2abfbe842622e2e4c8e')
+
+prepare() {
+  uusi $pkgname-$pkgver/$pkgname.cabal
+}
+
+build() {
+  cd $pkgname-$pkgver
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--datasubdir=$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+  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 $pkgname-$pkgver
+  runhaskell Setup test
+}
+
+package() {
+  cd $pkgname-$pkgver
+  runghc Setup.hs copy --destdir="$pkgdir"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  # Doc only contains the license
+  rm -rf "$pkgdir/usr/share/doc"
+}
+
+# vim: ts=2 sw=2 et:


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

2020-11-30 Thread Felix Yan via arch-commits
Date: Monday, November 30, 2020 @ 16:45:31
  Author: felixonmars
Revision: 766614

upgpkg: haskell-persistent-sqlite 2.11.0.0-8: rebuild with microlens-th 0.4.3.7

Modified:
  haskell-persistent-sqlite/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-30 16:44:08 UTC (rev 766613)
+++ PKGBUILD2020-11-30 16:45:31 UTC (rev 766614)
@@ -4,7 +4,7 @@
 _hkgname=persistent-sqlite
 pkgname=haskell-persistent-sqlite
 pkgver=2.11.0.0
-pkgrel=7
+pkgrel=8
 pkgdesc="Backend for the persistent library using sqlite3"
 url="https://www.yesodweb.com/book/persistent";
 license=("MIT")


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

2020-11-30 Thread Felix Yan via arch-commits
Date: Monday, November 30, 2020 @ 16:45:41
  Author: felixonmars
Revision: 766615

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-persistent-sqlite/repos/community-staging-x86_64/PKGBUILD (from 
rev 766614, haskell-persistent-sqlite/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-30 16:45:41 UTC (rev 766615)
@@ -0,0 +1,48 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=persistent-sqlite
+pkgname=haskell-persistent-sqlite
+pkgver=2.11.0.0
+pkgrel=8
+pkgdesc="Backend for the persistent library using sqlite3"
+url="https://www.yesodweb.com/book/persistent";
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'sqlite' 'haskell-aeson' 'haskell-conduit' 
'haskell-microlens-th'
+ 'haskell-monad-logger' 'haskell-persistent' 'haskell-resource-pool' 
'haskell-resourcet'
+ 'haskell-unliftio-core' 'haskell-unordered-containers')
+makedepends=('ghc' 'haskell-fast-logger' 'haskell-hspec' 'haskell-hunit'
+ 'haskell-persistent-template' 'haskell-persistent-test' 
'haskell-quickcheck'
+ 'haskell-system-fileio' 'haskell-system-filepath' 
'haskell-temporary')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('2a8ee1e58960e9430c72984430c1c55e5ccb901db02fbe57a8d1e4366ac228fe4f4419f3fb0f9019029a5abb0f7034c831f92045799dd1b905ec809c52f673b6')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-build-sanity-exe -fsystemlib -fuse-pkgconfig
+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-pantry/repos (2 files)

2020-11-30 Thread Felix Yan via arch-commits
Date: Monday, November 30, 2020 @ 16:49:46
  Author: felixonmars
Revision: 766617

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-pantry/repos/community-staging-x86_64/PKGBUILD (from rev 
766616, haskell-pantry/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-30 16:49:46 UTC (rev 766617)
@@ -0,0 +1,58 @@
+# Maintainer: Felix Yan 
+
+_hkgname=pantry
+pkgname=haskell-pantry
+pkgver=0.5.1.4
+pkgrel=14
+pkgdesc="Content addressable Haskell package management"
+url="https://github.com/commercialhaskell/pantry";
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-ansi-terminal' 
'haskell-casa-client'
+ 'haskell-casa-types' 'haskell-conduit' 'haskell-conduit-extra' 
'haskell-cryptonite'
+ 'haskell-cryptonite-conduit' 'haskell-digest' 'haskell-filelock' 
'haskell-generic-deriving'
+ 'haskell-hackage-security' 'haskell-hpack' 'haskell-http-client' 
'haskell-http-client-tls'
+ 'haskell-http-conduit' 'haskell-http-download' 'haskell-http-types' 
'haskell-memory'
+ 'haskell-mono-traversable' 'haskell-network-uri' 'haskell-path' 
'haskell-path-io'
+ 'haskell-persistent' 'haskell-persistent-sqlite' 
'haskell-persistent-template'
+ 'haskell-primitive' 'haskell-resourcet' 'haskell-rio' 
'haskell-rio-orphans'
+ 'haskell-rio-prettyprint' 'haskell-tar-conduit' 'haskell-text-metrics'
+ 'haskell-unix-compat' 'haskell-unliftio' 
'haskell-unordered-containers' 'haskell-vector'
+ 'haskell-yaml' 'haskell-zip-archive')
+makedepends=('ghc' 'haskell-hedgehog' 'haskell-hspec' 'haskell-quickcheck' 
'haskell-raw-strings-qq')
+checkdepends=('git' 'mercurial')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('e8285a3c1228b36898d957e56c726dd2b6d8e8d9283f08fe77c800f2030095a00ce76dde8277654a5dfd7523483f6ccd83beeefa2481c5a1bd56dc660312e239')
+
+prepare() {
+cd $_hkgname-$pkgver
+echo -e "import Distribution.Simple\nmain = defaultMain" > Setup.hs
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+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 ell/trunk (PKGBUILD)

2020-11-30 Thread Andreas Radke via arch-commits
Date: Monday, November 30, 2020 @ 16:51:14
  Author: andyrtr
Revision: 402423

upgpkg: ell 0.35-1: upstream update 0.35

Modified:
  ell/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-30 16:16:26 UTC (rev 402422)
+++ PKGBUILD2020-11-30 16:51:14 UTC (rev 402423)
@@ -2,7 +2,7 @@
 # Contributor: Jameson Pugh 
 
 pkgname=ell
-pkgver=0.33
+pkgver=0.35
 pkgrel=1
 pkgdesc="Embedded Linux library"
 arch=(x86_64)
@@ -13,12 +13,11 @@
 checkdepends=('dbus')
 # https://mirrors.edge.kernel.org/pub/linux/libs/ell/sha256sums.asc
 
source=(https://mirrors.edge.kernel.org/pub/linux/libs/$pkgname/$pkgname-$pkgver.tar.{xz,sign})
-sha256sums=('d9e40e641164150394b74b719b9726fc734f24b2cde679cf5f3be6915c34eded'
+sha256sums=('2bfe9da7781f65f1cb1595a5a068a3ae74d4b68b74f287c6f0c892cfe623913f'
 'SKIP')
 validpgpkeys=('E932D120BC2AEC444E558F0106CA9F5D1DCF2659') # "Marcel Holtmann 
"
 
 build() {
-  #cd "$pkgname"
   cd "$pkgname-$pkgver"
   ./configure --prefix=/usr
   make


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

2020-11-30 Thread Felix Yan via arch-commits
Date: Monday, November 30, 2020 @ 16:49:36
  Author: felixonmars
Revision: 766616

upgpkg: haskell-pantry 0.5.1.4-14: rebuild with microlens-th 0.4.3.7

Modified:
  haskell-pantry/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-30 16:45:41 UTC (rev 766615)
+++ PKGBUILD2020-11-30 16:49:36 UTC (rev 766616)
@@ -3,7 +3,7 @@
 _hkgname=pantry
 pkgname=haskell-pantry
 pkgver=0.5.1.4
-pkgrel=13
+pkgrel=14
 pkgdesc="Content addressable Haskell package management"
 url="https://github.com/commercialhaskell/pantry";
 license=('BSD')


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

2020-11-30 Thread Jan Steffens via arch-commits
Date: Monday, November 30, 2020 @ 16:52:26
  Author: heftig
Revision: 402427

6.9.11.45-1

Modified:
  imagemagick6/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-30 16:52:16 UTC (rev 402426)
+++ PKGBUILD2020-11-30 16:52:26 UTC (rev 402427)
@@ -2,7 +2,7 @@
 
 pkgbase=imagemagick6
 pkgname=(libmagick6)
-pkgver=6.9.11.41
+pkgver=6.9.11.45
 pkgrel=1
 pkgdesc="An image viewing/manipulation program (version 6)"
 url="https://legacy.imagemagick.org/";
@@ -16,7 +16,7 @@
 _tarname=ImageMagick-${pkgver%.*}-${pkgver##*.}
 source=(https://www.imagemagick.org/download/$_tarname.tar.xz{,.asc}
 arch-fonts.diff)
-sha256sums=('80f201dc2fbfc9e413a265eb1fbc4190e54d0153c50d1eaf74bde54e9d932da5'
+sha256sums=('784da2fe10ebc413c9d91eb51a9cf28c948c07875dc8d386dd04dc2cbc1c5f28'
 'SKIP'
 'a85b744c61b1b563743ecb7c7adad999d7ed9a8af816650e3ab9321b2b102e73')
 validpgpkeys=(D8272EF51DA223E4D05B466989AB63D48277377A)  # Lexie Parsimoniae


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

2020-11-30 Thread Jan Steffens via arch-commits
Date: Monday, November 30, 2020 @ 16:52:35
  Author: heftig
Revision: 402428

archrelease: copy trunk to extra-x86_64

Added:
  imagemagick6/repos/extra-x86_64/PKGBUILD
(from rev 402427, imagemagick6/trunk/PKGBUILD)
  imagemagick6/repos/extra-x86_64/arch-fonts.diff
(from rev 402427, imagemagick6/trunk/arch-fonts.diff)
Deleted:
  imagemagick6/repos/extra-x86_64/PKGBUILD
  imagemagick6/repos/extra-x86_64/arch-fonts.diff

-+
 PKGBUILD|  224 +++---
 arch-fonts.diff |  214 +--
 2 files changed, 219 insertions(+), 219 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-30 16:52:26 UTC (rev 402427)
+++ PKGBUILD2020-11-30 16:52:35 UTC (rev 402428)
@@ -1,112 +0,0 @@
-# Maintainer: Eric Bélanger 
-
-pkgbase=imagemagick6
-pkgname=(libmagick6)
-pkgver=6.9.11.41
-pkgrel=1
-pkgdesc="An image viewing/manipulation program (version 6)"
-url="https://legacy.imagemagick.org/";
-arch=(x86_64)
-license=(custom)
-depends=(libltdl lcms2 fontconfig libxext liblqr libraqm libpng)
-makedepends=(ghostscript openexr libwmf librsvg libxml2 openjpeg2 libraw 
opencl-headers libwebp libzip
- chrpath ocl-icd glu ghostpcl ghostxps libheif jbigkit)
-checkdepends=(gsfonts ttf-dejavu)
-_relname=ImageMagick-${pkgver%%.*}
-_tarname=ImageMagick-${pkgver%.*}-${pkgver##*.}
-source=(https://www.imagemagick.org/download/$_tarname.tar.xz{,.asc}
-arch-fonts.diff)
-sha256sums=('80f201dc2fbfc9e413a265eb1fbc4190e54d0153c50d1eaf74bde54e9d932da5'
-'SKIP'
-'a85b744c61b1b563743ecb7c7adad999d7ed9a8af816650e3ab9321b2b102e73')
-validpgpkeys=(D8272EF51DA223E4D05B466989AB63D48277377A)  # Lexie Parsimoniae
-
-prepare() {
-  mkdir -p binpkg/usr/lib/pkgconfig {binpkg,docpkg}/usr/share
-
-  cd $_tarname
-
-  # Fix up typemaps to match our packages, where possible
-  patch -Np1 -i ../arch-fonts.diff
-
-  # Don't run auto(re)conf; assumes use of git
-}
-
-build() {
-  cd $_tarname
-  ./configure \
-PKG_CONFIG="/usr/bin/env PKG_CONFIG_PATH=/usr/lib/$pkgbase/pkgconfig 
pkg-config" \
---prefix=/usr \
---sysconfdir=/etc \
---enable-shared \
---with-dejavu-font-dir=/usr/share/fonts/TTF \
---with-gs-font-dir=/usr/share/fonts/gsfonts \
-PSDelegate=/usr/bin/gs \
-XPSDelegate=/usr/bin/gxps \
-PCLDelegate=/usr/bin/gpcl6 \
---enable-hdri \
---enable-opencl \
---without-gslib \
---with-lqr \
---with-modules \
---with-openexr \
---with-openjp2 \
---with-perl \
---with-perl-options=INSTALLDIRS=vendor \
---with-rsvg \
---with-webp \
---with-wmf \
---with-xml \
---without-autotrace \
---without-djvu \
---without-dps \
---without-fftw \
---without-fpx \
---without-gcc-arch \
---without-gvc
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-check() (
-  cd $_tarname
-  ulimit -n 4096
-  make check || :
-)
-
-package_libmagick6() {
-  pkgdesc="${pkgdesc/)/; library)}"
-  optdepends=('ghostscript: PS/PDF support'
-  'libheif: HEIF support'
-  'libraw: DNG support'
-  'librsvg: SVG support'
-  'libwebp: WEBP support'
-  'libwmf: WMF support'
-  'libxml2: Magick Scripting Language'
-  'ocl-icd: OpenCL support'
-  'openexr: OpenEXR support'
-  'openjpeg2: JPEG2000 support'
-  'pango: Text rendering')
-  
backup=(etc/$_relname/{coder,colors,delegates,log,magic,mime,policy,quantization-table,thresholds,type,type-{dejavu,ghostscript}}.xml)
-  options=('!docs' '!emptydirs' libtool)
-
-  cd $_tarname
-  make DESTDIR="$pkgdir" install pkgconfigdir="/usr/lib/$pkgbase/pkgconfig"
-
-  rm "$pkgdir"/etc/$_relname/type-{apple,urw-base35,windows}.xml
-  rm "$pkgdir"/usr/lib/*.la
-
-  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 LICENSE NOTICE
-
-# Drop tools
-  cd ../binpkg
-  mv "$pkgdir/usr/bin" usr/
-  mv "$pkgdir/usr/lib/perl5" usr/lib/
-  mv "$pkgdir/usr/share/man" usr/share/
-
-# Harden security policy https://bugs.archlinux.org/task/62785
-  sed -e '/<\/policymap>/i \ \ ' -i "$pkgdir"/etc/ImageMagick-6/policy.xml
-
-# Use correct options for inkscape<1.0
-  sed -e 's|--export-file|--export-png|' -i 
"$pkgdir"/etc/ImageMagick-6/delegates.xml
-}

Copied: imagemagick6/repos/extra-x86_64/PKGBUILD (from rev 402427, 
imagemagick6/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-30 16:52:35 UTC (rev 402428)
@@ -0,0 +1,112 @@
+# Maintainer: Eric Bélanger 
+
+pkgbase=imagemagick6
+pkgname=(libmagick6)
+pkgver=6.9.11.45
+pkgrel=1
+pkgdesc="An image viewing/manipulation program (version 6)"
+url="https://legacy.imagemagick.org/";
+arch=(x86_64)
+license=(custom)
+depends=(libltdl lcms2 fontc

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

2020-11-30 Thread Jan Steffens via arch-commits
Date: Monday, November 30, 2020 @ 16:52:10
  Author: heftig
Revision: 402425

3.38.1+56+g8bfb103d1c-1

Modified:
  mutter/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-30 16:51:26 UTC (rev 402424)
+++ PKGBUILD2020-11-30 16:52:10 UTC (rev 402425)
@@ -3,7 +3,7 @@
 # Contributor: Michael Kanis 
 
 pkgname=mutter
-pkgver=3.38.1+44+gbd42c9c23b
+pkgver=3.38.1+56+g8bfb103d1c
 pkgrel=1
 pkgdesc="A window manager for GNOME"
 url="https://gitlab.gnome.org/GNOME/mutter";
@@ -18,7 +18,7 @@
 provides=(libmutter-7.so)
 groups=(gnome)
 install=mutter.install
-_commit=bd42c9c23b6f33bc3827b0ddb149ce2dcfb914ef  # gnome-3-38
+_commit=8bfb103d1c4bb6cc80185eaf133d34e1bf24493e  # gnome-3-38
 source=("git+https://gitlab.gnome.org/GNOME/mutter.git#commit=$_commit";)
 sha256sums=('SKIP')
 


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

2020-11-30 Thread Andreas Radke via arch-commits
Date: Monday, November 30, 2020 @ 16:51:26
  Author: andyrtr
Revision: 402424

archrelease: copy trunk to testing-x86_64

Added:
  ell/repos/testing-x86_64/
  ell/repos/testing-x86_64/PKGBUILD
(from rev 402423, ell/trunk/PKGBUILD)

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

Copied: ell/repos/testing-x86_64/PKGBUILD (from rev 402423, ell/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-11-30 16:51:26 UTC (rev 402424)
@@ -0,0 +1,34 @@
+# Maintainer: AndyRTR 
+# Contributor: Jameson Pugh 
+
+pkgname=ell
+pkgver=0.35
+pkgrel=1
+pkgdesc="Embedded Linux library"
+arch=(x86_64)
+url="https://01.org/ell";
+#url="https://git.kernel.org/pub/scm/libs/ell/ell.git/";
+license=('LGPL2.1')
+depends=('glibc')
+checkdepends=('dbus')
+# https://mirrors.edge.kernel.org/pub/linux/libs/ell/sha256sums.asc
+source=(https://mirrors.edge.kernel.org/pub/linux/libs/$pkgname/$pkgname-$pkgver.tar.{xz,sign})
+sha256sums=('2bfe9da7781f65f1cb1595a5a068a3ae74d4b68b74f287c6f0c892cfe623913f'
+'SKIP')
+validpgpkeys=('E932D120BC2AEC444E558F0106CA9F5D1DCF2659') # "Marcel Holtmann 
"
+
+build() {
+  cd "$pkgname-$pkgver"
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  make -k check
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir/" install
+}


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

2020-11-30 Thread Jan Steffens via arch-commits
Date: Monday, November 30, 2020 @ 16:52:16
  Author: heftig
Revision: 402426

3.38.1+21+g0936821ee-1

Modified:
  gnome-shell/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-30 16:52:10 UTC (rev 402425)
+++ PKGBUILD2020-11-30 16:52:16 UTC (rev 402426)
@@ -3,7 +3,7 @@
 # Contributor: Flamelab https://gitlab.gnome.org/GNOME/gnome-shell.git#commit=$_commit";
 "git+https://gitlab.gnome.org/GNOME/libgnome-volume-control.git";)
 sha256sums=('SKIP'


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

2020-11-30 Thread Felix Yan via arch-commits
Date: Monday, November 30, 2020 @ 16:55:54
  Author: felixonmars
Revision: 766618

upgpkg: stack 2.5.1-36: rebuild with microlens-th 0.4.3.7

Modified:
  stack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-30 16:49:46 UTC (rev 766617)
+++ PKGBUILD2020-11-30 16:55:54 UTC (rev 766618)
@@ -3,7 +3,7 @@
 
 pkgname=stack
 pkgver=2.5.1
-pkgrel=35
+pkgrel=36
 pkgdesc="The Haskell Tool Stack"
 url="https://github.com/commercialhaskell/stack";
 license=("BSD")


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

2020-11-30 Thread Felix Yan via arch-commits
Date: Monday, November 30, 2020 @ 16:56:09
  Author: felixonmars
Revision: 766619

archrelease: copy trunk to community-staging-x86_64

Added:
  stack/repos/community-staging-x86_64/
  stack/repos/community-staging-x86_64/PKGBUILD
(from rev 766618, stack/trunk/PKGBUILD)
  stack/repos/community-staging-x86_64/optparse-applicative-0.16.patch
(from rev 766618, stack/trunk/optparse-applicative-0.16.patch)
  stack/repos/community-staging-x86_64/stack.install
(from rev 766618, stack/trunk/stack.install)

-+
 PKGBUILD|   81 ++
 optparse-applicative-0.16.patch |   25 +++
 stack.install   |4 +
 3 files changed, 110 insertions(+)

Copied: stack/repos/community-staging-x86_64/PKGBUILD (from rev 766618, 
stack/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-30 16:56:09 UTC (rev 766619)
@@ -0,0 +1,81 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=stack
+pkgver=2.5.1
+pkgrel=36
+pkgdesc="The Haskell Tool Stack"
+url="https://github.com/commercialhaskell/stack";
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-annotated-wl-pprint' 
'haskell-ansi-terminal'
+ 'haskell-async' 'haskell-attoparsec' 'haskell-base64-bytestring' 
'haskell-casa-client'
+ 'haskell-casa-types' 'haskell-colour' 'haskell-conduit' 
'haskell-conduit-extra'
+ 'haskell-cryptonite' 'haskell-cryptonite-conduit' 'haskell-echo'
+ 'haskell-extra' 'haskell-file-embed' 'haskell-filelock' 
'haskell-fsnotify'
+ 'haskell-generic-deriving' 'haskell-githash' 
'haskell-hackage-security' 'haskell-hashable'
+ 'haskell-hi-file-parser' 'haskell-hpack' 'haskell-http-client' 
'haskell-http-client-tls'
+ 'haskell-http-conduit' 'haskell-http-download' 'haskell-http-types' 
'haskell-memory'
+ 'haskell-microlens' 'haskell-mintty' 'haskell-mono-traversable' 
'haskell-mustache'
+ 'haskell-neat-interpolation' 'haskell-network-uri' 
'haskell-open-browser'
+ 'haskell-optparse-applicative' 'haskell-optparse-generic' 
'haskell-optparse-simple'
+ 'haskell-pantry' 'haskell-path' 'haskell-path-io' 'haskell-persistent'
+ 'haskell-persistent-sqlite' 'haskell-persistent-template' 
'haskell-primitive'
+ 'haskell-project-template' 'haskell-regex-applicative-text' 
'haskell-retry' 'haskell-rio'
+ 'haskell-rio-prettyprint' 'haskell-split' 'haskell-streaming-commons' 
'haskell-tar'
+ 'haskell-temporary' 'haskell-text-metrics' 'haskell-th-reify-many' 
'haskell-tls'
+ 'haskell-typed-process' 'haskell-unicode-transforms' 
'haskell-unix-compat'
+ 'haskell-unliftio' 'haskell-unordered-containers' 'haskell-vector' 
'haskell-yaml'
+ 'haskell-zip-archive' 'haskell-zlib')
+makedepends=('ghc' 'git' 'haskell-quickcheck' 'haskell-hspec' 
'haskell-raw-strings-qq'
+ 'haskell-smallcheck')
+checkdepends=('cabal-install')
+conflicts=('haskell-stack')
+replaces=('haskell-stack')
+install="stack.install"
+source=("git+https://github.com/commercialhaskell/stack.git#tag=v$pkgver";
+optparse-applicative-0.16.patch)
+sha512sums=('SKIP'
+
'3ed61162edd869d5634e7e8485d784b9a192c97626da817635e6c756ca651454b5b806085aea6d7f8fd54041ae06e1613d9547958a85b777d2dfc35b02c0fbea')
+
+prepare() {
+  cd $pkgname
+  sed -i -e '/semigroups/d' $pkgname.cabal
+  sed -i '1i{-# LANGUAGE DataKinds #-}' src/Stack/Storage/User.hs 
src/Stack/Storage/Project.hs
+  patch -p1 -i ../optparse-applicative-0.16.patch
+}
+
+build() {
+  cd $pkgname
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+  -f-disable-git-info -f-integration-tests -f-static 
-f-hide-dependency-versions -f-supported-build \
+  --ghc-option='-pie'
+  runhaskell Setup build $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 $pkgname
+  # cabal update
+  LD_LIBRARY_PATH="$PWD"/dist/build PATH="$PWD"/dist/build/stack:"$PATH" 
runhaskell Setup test
+  # Integration tests will result in 4 failures on Arch currently
+}
+
+package() {
+  cd $pkgname
+
+  install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+  install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+  runhaskell Setup copy --destdir="${pkgdir}"
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+  rm -f "$p

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

2020-11-30 Thread Felix Yan via arch-commits
Date: Monday, November 30, 2020 @ 16:57:14
  Author: felixonmars
Revision: 766620

upgpkg: haskell-yesod-persistent 1.6.0.5-16: rebuild with microlens-th 0.4.3.7

Modified:
  haskell-yesod-persistent/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-30 16:56:09 UTC (rev 766619)
+++ PKGBUILD2020-11-30 16:57:14 UTC (rev 766620)
@@ -4,7 +4,7 @@
 _hkgname=yesod-persistent
 pkgname=haskell-yesod-persistent
 pkgver=1.6.0.5
-pkgrel=15
+pkgrel=16
 pkgdesc="Some helpers for using Persistent from Yesod."
 url="http://www.yesodweb.com/";
 license=("MIT")


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

2020-11-30 Thread Felix Yan via arch-commits
Date: Monday, November 30, 2020 @ 16:57:24
  Author: felixonmars
Revision: 766621

archrelease: copy trunk to community-staging-x86_64

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

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

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

2020-11-30 Thread Felix Yan via arch-commits
Date: Monday, November 30, 2020 @ 16:59:51
  Author: felixonmars
Revision: 766624

upgpkg: haskell-yesod 1.6.1.0-84: rebuild with microlens-th 0.4.3.7

Modified:
  haskell-yesod/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-30 16:58:50 UTC (rev 766623)
+++ PKGBUILD2020-11-30 16:59:51 UTC (rev 766624)
@@ -4,7 +4,7 @@
 _hkgname=yesod
 pkgname=haskell-yesod
 pkgver=1.6.1.0
-pkgrel=83
+pkgrel=84
 pkgdesc="Creation of type-safe, RESTful web applications."
 url="http://www.yesodweb.com/";
 license=("MIT")


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

2020-11-30 Thread Felix Yan via arch-commits
Date: Monday, November 30, 2020 @ 16:58:50
  Author: felixonmars
Revision: 766623

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-yesod-form/repos/community-staging-x86_64/PKGBUILD (from rev 
766622, haskell-yesod-form/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-30 16:58:50 UTC (rev 766623)
@@ -0,0 +1,47 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-form
+pkgname=haskell-yesod-form
+pkgver=1.6.7
+pkgrel=304
+pkgdesc="Form handling support for Yesod Web Framework"
+url="http://www.yesodweb.com/";
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-attoparsec' 
'haskell-blaze-builder' 'haskell-blaze-html'
+ 'haskell-blaze-markup' 'haskell-byteable' 'haskell-data-default' 
'haskell-email-validate'
+ 'haskell-network-uri' 'haskell-persistent' 'haskell-resourcet' 
'haskell-shakespeare'
+ 'haskell-wai' 'haskell-xss-sanitize' 'haskell-yesod-core' 
'haskell-yesod-persistent')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('a23c2cb67ed0a87afde9e9e903aa789f8fd9c071893a1bebd0ff9dc3dec6e8e03dd08a4a7ef6ef2d438fbf62597ea0181a038bd7bb5631199c9be83d2a8aef0c')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i '/semigroups/d' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fnetwork-uri
+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-yesod/repos (2 files)

2020-11-30 Thread Felix Yan via arch-commits
Date: Monday, November 30, 2020 @ 17:00:01
  Author: felixonmars
Revision: 766625

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-yesod/repos/community-staging-x86_64/PKGBUILD (from rev 766624, 
haskell-yesod/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-30 17:00:01 UTC (rev 766625)
@@ -0,0 +1,47 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod
+pkgname=haskell-yesod
+pkgver=1.6.1.0
+pkgrel=84
+pkgdesc="Creation of type-safe, RESTful web applications."
+url="http://www.yesodweb.com/";
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-conduit' 
'haskell-data-default-class'
+ 'haskell-fast-logger' 'haskell-file-embed' 'haskell-monad-logger' 
'haskell-shakespeare'
+ 'haskell-streaming-commons' 'haskell-unordered-containers' 
'haskell-wai'
+ 'haskell-wai-extra' 'haskell-wai-logger' 'haskell-warp' 'haskell-yaml'
+ 'haskell-yesod-core' 'haskell-yesod-form' 'haskell-yesod-persistent')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('712eed39b64f515cb949186ddb950133cc2daccde6d4a9b0115809e5f4726a957b2809ee785b348971c617b3d173bcd40776b065f5bf1d68b79af12905ada77a')
+
+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-yesod-form/trunk (PKGBUILD)

2020-11-30 Thread Felix Yan via arch-commits
Date: Monday, November 30, 2020 @ 16:58:40
  Author: felixonmars
Revision: 766622

upgpkg: haskell-yesod-form 1.6.7-304: rebuild with microlens-th 0.4.3.7

Modified:
  haskell-yesod-form/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-30 16:57:24 UTC (rev 766621)
+++ PKGBUILD2020-11-30 16:58:40 UTC (rev 766622)
@@ -4,7 +4,7 @@
 _hkgname=yesod-form
 pkgname=haskell-yesod-form
 pkgver=1.6.7
-pkgrel=303
+pkgrel=304
 pkgdesc="Form handling support for Yesod Web Framework"
 url="http://www.yesodweb.com/";
 license=("MIT")


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

2020-11-30 Thread Felix Yan via arch-commits
Date: Monday, November 30, 2020 @ 17:01:34
  Author: felixonmars
Revision: 766627

archrelease: copy trunk to community-staging-x86_64

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

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

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

2020-11-30 Thread Felix Yan via arch-commits
Date: Monday, November 30, 2020 @ 17:03:08
  Author: felixonmars
Revision: 766629

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-yesod-test/repos/community-staging-x86_64/PKGBUILD (from rev 
766628, haskell-yesod-test/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-30 17:03:08 UTC (rev 766629)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+
+_hkgname=yesod-test
+pkgname=haskell-yesod-test
+pkgver=1.6.10
+pkgrel=105
+pkgdesc="Integration testing for WAI/Yesod Applications"
+url="https://www.yesodweb.com";
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-hunit' 'haskell-aeson' 'haskell-attoparsec' 
'haskell-blaze-builder'
+ 'haskell-blaze-html' 'haskell-case-insensitive' 'haskell-conduit'
+ 'haskell-cookie' 'haskell-hspec-core' 'haskell-html-conduit' 
'haskell-http-types'
+ 'haskell-memory' 'haskell-network' 'haskell-pretty-show' 'haskell-wai'
+ 'haskell-wai-extra' 'haskell-xml-conduit' 'haskell-xml-types' 
'haskell-yesod-core')
+makedepends=('ghc' 'haskell-yesod-form' 'haskell-hspec' 'haskell-unliftio' 
'haskell-unliftio-core')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('badbd76b9a345c86f9dcf8b5d6043f173eec60bf6f39bdcb4a60d17d95ad693991a1c7b4061a1e86d61fb9efe3f2f29b3129e6b9ffef4b07d5b563116959b016')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i '/semigroups/d' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build $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-yesod-auth/trunk (PKGBUILD)

2020-11-30 Thread Felix Yan via arch-commits
Date: Monday, November 30, 2020 @ 17:01:24
  Author: felixonmars
Revision: 766626

upgpkg: haskell-yesod-auth 1.6.10.1-18: rebuild with microlens-th 0.4.3.7

Modified:
  haskell-yesod-auth/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-30 17:00:01 UTC (rev 766625)
+++ PKGBUILD2020-11-30 17:01:24 UTC (rev 766626)
@@ -4,7 +4,7 @@
 _hkgname=yesod-auth
 pkgname=haskell-yesod-auth
 pkgver=1.6.10.1
-pkgrel=17
+pkgrel=18
 pkgdesc="Authentication for Yesod."
 url="http://www.yesodweb.com/";
 license=("MIT")


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

2020-11-30 Thread Felix Yan via arch-commits
Date: Monday, November 30, 2020 @ 17:02:57
  Author: felixonmars
Revision: 766628

upgpkg: haskell-yesod-test 1.6.10-105: rebuild with microlens-th 0.4.3.7

Modified:
  haskell-yesod-test/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-30 17:01:34 UTC (rev 766627)
+++ PKGBUILD2020-11-30 17:02:57 UTC (rev 766628)
@@ -3,7 +3,7 @@
 _hkgname=yesod-test
 pkgname=haskell-yesod-test
 pkgver=1.6.10
-pkgrel=104
+pkgrel=105
 pkgdesc="Integration testing for WAI/Yesod Applications"
 url="https://www.yesodweb.com";
 license=('MIT')


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

2020-11-30 Thread Felix Yan via arch-commits
Date: Monday, November 30, 2020 @ 17:04:42
  Author: felixonmars
Revision: 766631

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-yesod-static/repos/community-staging-x86_64/PKGBUILD (from rev 
766630, haskell-yesod-static/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-30 17:04:42 UTC (rev 766631)
@@ -0,0 +1,48 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-static
+pkgname=haskell-yesod-static
+pkgver=1.6.1.0
+pkgrel=104
+pkgdesc="Static file serving subsite for Yesod Web Framework."
+url="http://www.yesodweb.com/";
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-async' 'haskell-attoparsec' 
'haskell-base64-bytestring'
+ 'haskell-blaze-builder' 'haskell-conduit' 'haskell-cryptonite'
+ 'haskell-cryptonite-conduit' 'haskell-css-text' 'haskell-data-default'
+ 'haskell-file-embed' 'haskell-hashable' 'haskell-hjsmin' 
'haskell-http-types'
+ 'haskell-memory' 'haskell-mime-types' 'haskell-rio' 
'haskell-unix-compat'
+ 'haskell-unordered-containers' 'haskell-wai' 'haskell-wai-app-static' 
'haskell-yesod-core')
+makedepends=('ghc' 'haskell-hspec' 'haskell-hunit' 'haskell-wai-extra' 
'haskell-yesod-test')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('66037ec28eac83e374161c1b306a4d20805ecb35ccfc4878e7894d961daaf30d9936c6e209641ff323d7e3dd5626f5a24a12915d4205417c496e272a2e969f6e')
+
+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 tamarin-prover/trunk (PKGBUILD)

2020-11-30 Thread Felix Yan via arch-commits
Date: Monday, November 30, 2020 @ 17:06:30
  Author: felixonmars
Revision: 766632

upgpkg: tamarin-prover 1.6.0-61: rebuild with microlens-th 0.4.3.7

Modified:
  tamarin-prover/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-30 17:04:42 UTC (rev 766631)
+++ PKGBUILD2020-11-30 17:06:30 UTC (rev 766632)
@@ -3,7 +3,7 @@
 
 pkgname=tamarin-prover
 pkgver=1.6.0
-pkgrel=60
+pkgrel=61
 pkgdesc="The Tamarin prover for security protocol analysis"
 url="https://tamarin-prover.github.io";
 license=("GPL")


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

2020-11-30 Thread Felix Yan via arch-commits
Date: Monday, November 30, 2020 @ 17:04:32
  Author: felixonmars
Revision: 766630

upgpkg: haskell-yesod-static 1.6.1.0-104: rebuild with microlens-th 0.4.3.7

Modified:
  haskell-yesod-static/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-30 17:03:08 UTC (rev 766629)
+++ PKGBUILD2020-11-30 17:04:32 UTC (rev 766630)
@@ -4,7 +4,7 @@
 _hkgname=yesod-static
 pkgname=haskell-yesod-static
 pkgver=1.6.1.0
-pkgrel=103
+pkgrel=104
 pkgdesc="Static file serving subsite for Yesod Web Framework."
 url="http://www.yesodweb.com/";
 license=("MIT")


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

2020-11-30 Thread Andreas Radke via arch-commits
Date: Monday, November 30, 2020 @ 17:09:58
  Author: andyrtr
Revision: 402429

upgpkg: pappl 1.0rc1-1: update to latest git commit - 1.0rc1

Modified:
  pappl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-30 16:52:35 UTC (rev 402428)
+++ PKGBUILD2020-11-30 17:09:58 UTC (rev 402429)
@@ -2,8 +2,8 @@
 
 pkgname=pappl
 #https://github.com/michaelrsweet/pappl/commits/master
-_commit=13cdb49a93d98aee4628bf23d8d7d66edf5b911e # master 2020-11-29
-pkgver=1.0b1+43+g13cdb49
+#_commit=0985256fb631ddd9b528795a0635af2b20828ddb # master 2020-11-30 = 1.0rc1
+pkgver=1.0rc1
 pkgrel=1
 pkgdesc="a simple C-based framework/library for developing CUPS Printer 
Applications"
 arch=('x86_64')
@@ -11,16 +11,19 @@
 license=('Apache' 'custom')
 depends=('libcups' 'libjpeg-turbo' 'pam')
 makedepends=('git')
-source=(git+"https://github.com/michaelrsweet/pappl.git#commit=$_commit";)
-md5sums=('SKIP')
+source=(#git+"https://github.com/michaelrsweet/pappl.git#commit=$_commit";
+
https://github.com/michaelrsweet/pappl/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.gz{,.sig})
+sha256sums=('b50bdd54f95cfad4faca2a3984a4d21f54272ff29c7854c673d1f3088a3a4228'
+'SKIP')
+validpgpkeys=('845464660B686AAB36540B6F999559A027815955') # "Michael R Sweet 
"
 
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g' | sed 's/v//'
-}
+#pkgver() {
+#  cd $pkgname
+#  git describe --tags | sed 's/-/+/g' | sed 's/v//'
+#}
 
 build() {
-  cd "$pkgname" #-$pkgver"
+  cd "$pkgname-$pkgver"
 
   # The build system uses only DSOFLAGS but not LDFLAGS to build some 
libraries.
   export DSOFLAGS=${LDFLAGS}
@@ -30,8 +33,8 @@
 }
 
 check() {
-  cd "$pkgname" #-$pkgver"
-#  make check
+  cd "$pkgname-$pkgver"
+  #make check
 
   # there's currently  no real test suite, 
   # the tool is only useful outside the fakeroot envireonment - when packaging 
it crashes:
@@ -43,7 +46,7 @@
 }
 
 package() {
-  cd "$pkgname" #-$pkgver"
+  cd "$pkgname-$pkgver"
   make DESTDIR="$pkgdir/" install
 
   # install the testing tool


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

2020-11-30 Thread Felix Yan via arch-commits
Date: Monday, November 30, 2020 @ 17:08:34
  Author: felixonmars
Revision: 766635

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: hledger-web/repos/community-staging-x86_64/PKGBUILD (from rev 766634, 
hledger-web/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-30 17:08:34 UTC (rev 766635)
@@ -0,0 +1,49 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hledger-web
+pkgver=1.19.1
+pkgrel=60
+pkgdesc="Web-based user interface for the hledger accounting system"
+url="http://hledger.org";
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'hledger' 'haskell-hledger-lib' 'haskell-aeson' 
'haskell-blaze-html'
+ 'haskell-blaze-markup' 'haskell-case-insensitive' 
'haskell-clientsession'
+ 'haskell-cmdargs' 'haskell-conduit' 'haskell-conduit-extra' 
'haskell-data-default'
+ 'haskell-decimal' 'haskell-extra' 'haskell-hjsmin' 
'haskell-http-conduit'
+ 'haskell-http-client' 'haskell-http-types' 'haskell-megaparsec' 
'haskell-network'
+ 'haskell-shakespeare' 'haskell-unix-compat' 
'haskell-unordered-containers'
+ 'haskell-utf8-string' 'haskell-wai' 'haskell-wai-cors' 
'haskell-wai-extra'
+ 'haskell-wai-handler-launch' 'haskell-warp' 'haskell-yesod' 
'haskell-yesod-core'
+ 'haskell-yesod-form' 'haskell-yesod-static')
+makedepends=('ghc' 'haskell-hspec' 'haskell-yesod-test')
+replaces=('hledger-api')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";)
+sha512sums=('adef619601e918962e7b9eb9a4cd4a5e094b2ad245461d1cddcf9cfdb1c8d9f3b5b7ea08adee50c7855cbac28cf8216decc00dd1f3c1d6fc7da91aeecd9ed1be')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-dev -f-library-only -fthreaded
+runhaskell Setup build $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 $pkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-11-30 Thread Andreas Radke via arch-commits
Date: Monday, November 30, 2020 @ 17:10:12
  Author: andyrtr
Revision: 402430

archrelease: copy trunk to testing-x86_64

Added:
  pappl/repos/testing-x86_64/PKGBUILD
(from rev 402429, pappl/trunk/PKGBUILD)
Deleted:
  pappl/repos/testing-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-30 17:09:58 UTC (rev 402429)
+++ PKGBUILD2020-11-30 17:10:12 UTC (rev 402430)
@@ -1,55 +0,0 @@
-# Maintainer: Andreas Radke 
-
-pkgname=pappl
-#https://github.com/michaelrsweet/pappl/commits/master
-_commit=13cdb49a93d98aee4628bf23d8d7d66edf5b911e # master 2020-11-29
-pkgver=1.0b1+43+g13cdb49
-pkgrel=1
-pkgdesc="a simple C-based framework/library for developing CUPS Printer 
Applications"
-arch=('x86_64')
-url="https://www.msweet.org/pappl/";
-license=('Apache' 'custom')
-depends=('libcups' 'libjpeg-turbo' 'pam')
-makedepends=('git')
-source=(git+"https://github.com/michaelrsweet/pappl.git#commit=$_commit";)
-md5sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g' | sed 's/v//'
-}
-
-build() {
-  cd "$pkgname" #-$pkgver"
-
-  # The build system uses only DSOFLAGS but not LDFLAGS to build some 
libraries.
-  export DSOFLAGS=${LDFLAGS}
-
-  ./configure --prefix=/usr
-  make
-}
-
-check() {
-  cd "$pkgname" #-$pkgver"
-#  make check
-
-  # there's currently  no real test suite, 
-  # the tool is only useful outside the fakeroot envireonment - when packaging 
it crashes:
-  # testpappl: client.c:771: avahi_client_get_host_name_fqdn: Assertion 
`client' failed.
-  # /startdir/PKGBUILD: line 43:  1878 Aborted (core dumped) 
./testsuite/testpappl
-
-  # run it later outside fakeroot!
-  #./testsuite/testpappl 
-}
-
-package() {
-  cd "$pkgname" #-$pkgver"
-  make DESTDIR="$pkgdir/" install
-
-  # install the testing tool
-  install -Dm755 testsuite/testpappl -t "$pkgdir"/usr/bin
-  # install docs
-  install -Dm644 doc/* -t "$pkgdir"/usr/share/doc/$pkgname
-  # add license + exception
-  install -m644 -Dt "${pkgdir}/usr/share/licenses/${pkgname}" {LICENSE,NOTICE}
-}

Copied: pappl/repos/testing-x86_64/PKGBUILD (from rev 402429, 
pappl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-30 17:10:12 UTC (rev 402430)
@@ -0,0 +1,58 @@
+# Maintainer: Andreas Radke 
+
+pkgname=pappl
+#https://github.com/michaelrsweet/pappl/commits/master
+#_commit=0985256fb631ddd9b528795a0635af2b20828ddb # master 2020-11-30 = 1.0rc1
+pkgver=1.0rc1
+pkgrel=1
+pkgdesc="a simple C-based framework/library for developing CUPS Printer 
Applications"
+arch=('x86_64')
+url="https://www.msweet.org/pappl/";
+license=('Apache' 'custom')
+depends=('libcups' 'libjpeg-turbo' 'pam')
+makedepends=('git')
+source=(#git+"https://github.com/michaelrsweet/pappl.git#commit=$_commit";
+
https://github.com/michaelrsweet/pappl/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.gz{,.sig})
+sha256sums=('b50bdd54f95cfad4faca2a3984a4d21f54272ff29c7854c673d1f3088a3a4228'
+'SKIP')
+validpgpkeys=('845464660B686AAB36540B6F999559A027815955') # "Michael R Sweet 
"
+
+#pkgver() {
+#  cd $pkgname
+#  git describe --tags | sed 's/-/+/g' | sed 's/v//'
+#}
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  # The build system uses only DSOFLAGS but not LDFLAGS to build some 
libraries.
+  export DSOFLAGS=${LDFLAGS}
+
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  #make check
+
+  # there's currently  no real test suite, 
+  # the tool is only useful outside the fakeroot envireonment - when packaging 
it crashes:
+  # testpappl: client.c:771: avahi_client_get_host_name_fqdn: Assertion 
`client' failed.
+  # /startdir/PKGBUILD: line 43:  1878 Aborted (core dumped) 
./testsuite/testpappl
+
+  # run it later outside fakeroot!
+  #./testsuite/testpappl 
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir/" install
+
+  # install the testing tool
+  install -Dm755 testsuite/testpappl -t "$pkgdir"/usr/bin
+  # install docs
+  install -Dm644 doc/* -t "$pkgdir"/usr/share/doc/$pkgname
+  # add license + exception
+  install -m644 -Dt "${pkgdir}/usr/share/licenses/${pkgname}" {LICENSE,NOTICE}
+}


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

2020-11-30 Thread Felix Yan via arch-commits
Date: Monday, November 30, 2020 @ 17:06:43
  Author: felixonmars
Revision: 766633

archrelease: copy trunk to community-staging-x86_64

Added:
  tamarin-prover/repos/community-staging-x86_64/
  tamarin-prover/repos/community-staging-x86_64/PKGBUILD
(from rev 766632, tamarin-prover/trunk/PKGBUILD)
  tamarin-prover/repos/community-staging-x86_64/maude-3.1.patch
(from rev 766632, tamarin-prover/trunk/maude-3.1.patch)

-+
 PKGBUILD|   58 ++
 maude-3.1.patch |   35 
 2 files changed, 93 insertions(+)

Copied: tamarin-prover/repos/community-staging-x86_64/PKGBUILD (from rev 
766632, tamarin-prover/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-30 17:06:43 UTC (rev 766633)
@@ -0,0 +1,58 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=tamarin-prover
+pkgver=1.6.0
+pkgrel=61
+pkgdesc="The Tamarin prover for security protocol analysis"
+url="https://tamarin-prover.github.io";
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'graphviz' 'maude' 'haskell-hunit' 
'haskell-binary-orphans' 'haskell-binary-instances'
+ 'haskell-blaze-builder' 'haskell-blaze-html' 'haskell-cmdargs' 
'haskell-conduit'
+ 'haskell-fclabels' 'haskell-file-embed' 'haskell-gitrev' 
'haskell-http-types'
+ 'haskell-lifted-base' 'haskell-monad-unlift' 'haskell-resourcet' 
'haskell-safe'
+ 'haskell-shakespeare' 'haskell-threads' 'haskell-wai' 'haskell-warp' 
'haskell-yesod-core'
+ 'haskell-yesod-static' 'haskell-tamarin-prover-utils' 
'haskell-tamarin-prover-term'
+ 'haskell-tamarin-prover-theory' 'haskell-tamarin-prover-sapic')
+optdepends=('ocaml: for sapic support')
+makedepends=('ghc' 'ocaml>=4.11.0')
+source=("tamarin-prover-$pkgver.tar.gz::https://github.com/tamarin-prover/tamarin-prover/archive/$pkgver.tar.gz";
+maude-3.1.patch)
+sha512sums=('7f3569f740d63d715b92a8f073eaecb8b32efe59b910b246977d36bb9e873765440e72feb6e76c7cbafab0495b88cfc666bb1dd12f685627c60d5cbd97b2973e'
+
'1ef5e4c370a0c5f5541d50600604ba7adc566c2f5cf415cdb844842bb10b343edd00aa5aa654f8e55355c80f48a34382c87c3fba4adca0c77e726f407f3815c3')
+
+prepare() {
+cd $pkgname-$pkgver
+patch -p1 -i ../maude-3.1.patch
+sed -i '/cp sapic/d' plugins/sapic/Makefile
+}
+
+build() {
+cd $pkgname-$pkgver
+
+runhaskell Setup configure -O --enable-executable-dynamic --prefix=/usr \
+--docdir="/usr/share/doc/${pkgname}" --datasubdir="$pkgname" \
+-fthreaded -ftest-coverage -f-build-tests --ghc-option='-pie'
+runhaskell Setup build $MAKEFLAGS
+
+cd plugins/sapic
+make -j1
+}
+
+check() {
+cd $pkgname-$pkgver
+LD_LIBRARY_PATH="$PWD"/dist/build dist/build/tamarin-prover/tamarin-prover 
test
+}
+
+package() {
+cd $pkgname-$pkgver
+runhaskell Setup copy --destdir="${pkgdir}"
+
+install -Dm644 etc/filetype.vim 
"$pkgdir"/usr/share/vim/vimfiles/ftdetect/tamarin.vim
+install -Dm644 etc/syntax/spthy.vim 
"$pkgdir"/usr/share/vim/vimfiles/syntax/spthy.vim
+ln -s spthy.vim "$pkgdir"/usr/share/vim/vimfiles/syntax/sapic.vim
+
+cd plugins/sapic
+install -Dm755 sapic "$pkgdir"/usr/bin/sapic
+}

Copied: tamarin-prover/repos/community-staging-x86_64/maude-3.1.patch (from rev 
766632, tamarin-prover/trunk/maude-3.1.patch)
===
--- community-staging-x86_64/maude-3.1.patch(rev 0)
+++ community-staging-x86_64/maude-3.1.patch2020-11-30 17:06:43 UTC (rev 
766633)
@@ -0,0 +1,35 @@
+diff --git a/lib/term/src/Term/Maude/Parser.hs 
b/lib/term/src/Term/Maude/Parser.hs
+index 187c35dc..0a1d3c35 100644
+--- a/lib/term/src/Term/Maude/Parser.hs
 b/lib/term/src/Term/Maude/Parser.hs
+@@ -224,7 +224,7 @@ parseVariantsReply msig reply = flip parseOnly reply $ do
+ <* endOfLine <* string "rewrites: "
+ <* takeWhile1 isDigit <* endOfLine <* endOfInput
+   where
+-parseVariant = string "Variant #" *> takeWhile1 isDigit *> endOfLine *>
++parseVariant = string "Variant " *> optional (char '#') *> takeWhile1 
isDigit *> endOfLine *>
+string "rewrites: " *> takeWhile1 isDigit *> endOfLine *>
+parseReprintedTerm *> manyTill parseEntry endOfLine
+ parseReprintedTerm = choice [ string "TOP" *> pure LSortMsg, parseSort ]
+@@ -235,7 +235,7 @@ parseVariantsReply msig reply = flip parseOnly reply $ do
+ -- | @parseSubstitution l@ parses a single substitution returned by Maude.
+ parseSubstitution :: MaudeSig -> Parser MSubst
+ parseSubstitution msig = do
+-endOfLine *> string "Solution " *> takeWhile1 isDigit *> endOfLine
++endOfLine *> choice [string "Solution ", string "Unifier ", string 
"Matcher "] *> takeWhile1 isDigit *> end

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

2020-11-30 Thread Felix Yan via arch-commits
Date: Monday, November 30, 2020 @ 17:08:24
  Author: felixonmars
Revision: 766634

upgpkg: hledger-web 1.19.1-60: rebuild with microlens-th 0.4.3.7

Modified:
  hledger-web/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-30 17:06:43 UTC (rev 766633)
+++ PKGBUILD2020-11-30 17:08:24 UTC (rev 766634)
@@ -3,7 +3,7 @@
 
 pkgname=hledger-web
 pkgver=1.19.1
-pkgrel=59
+pkgrel=60
 pkgdesc="Web-based user interface for the hledger accounting system"
 url="http://hledger.org";
 license=("GPL")


  1   2   3   4   5   >