[arch-commits] Commit in freemind/repos/community-any (7 files)

2020-06-27 Thread Balló György via arch-commits
Date: Sunday, June 28, 2020 @ 06:58:21
  Author: bgyorgy
Revision: 655095

archrelease: copy trunk to community-any

Added:
  freemind/repos/community-any/PKGBUILD
(from rev 655094, freemind/trunk/PKGBUILD)
  freemind/repos/community-any/freemind.changelog
(from rev 655094, freemind/trunk/freemind.changelog)
  freemind/repos/community-any/freemind.desktop
(from rev 655094, freemind/trunk/freemind.desktop)
Deleted:
  freemind/repos/community-any/PKGBUILD
  freemind/repos/community-any/freemind.changelog
  freemind/repos/community-any/freemind.desktop
  freemind/repos/community-any/freemind.png

+
 PKGBUILD   |   88 ++-
 freemind.changelog |   52 +++---
 freemind.desktop   |   22 ++--
 3 files changed, 83 insertions(+), 79 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-06-28 06:58:17 UTC (rev 655094)
+++ PKGBUILD2020-06-28 06:58:21 UTC (rev 655095)
@@ -1,42 +0,0 @@
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Ray Rashif 
-# Contributor: Corrado Primier 
-# Contributor: Vinay S Shastry 
-
-pkgname=freemind
-pkgver=1.0.1
-pkgrel=4
-pkgdesc="A Java mindmapping tool"
-arch=('any')
-url="http://sourceforge.net/projects/freemind";
-license=('GPL')
-depends=('java-runtime' 'desktop-file-utils' 'libxtst')
-source=(http://downloads.sourceforge.net/$pkgname/$pkgname-bin-max-$pkgver.zip
-$pkgname.png
-$pkgname.desktop)
-sha256sums=('005e815bf5d1867eadcaa89194df9952d986ace9eed0a3058c7ee6255799a60a'
-'39ec1dc88a1081058faef38b5ea48ca8c0b6ee6a6b397a216ce2f7b508b1ad61'
-'eac8db98257fcb8ed9c76ec340af5f3233a4783b8fe1c57ef274b9e7d2b56ed5')
-
-package() {
-  cd "${srcdir}"
-
-  for file in $(find lib plugins -type f); do
-install -Dm644 $file "${pkgdir}"/usr/share/freemind/$file
-  done
-
-  install -Dm755 "${srcdir}"/freemind.sh 
"${pkgdir}"/usr/share/freemind/freemind.sh
-  install -Dm644 "${srcdir}"/patterns.xml "${pkgdir}"/etc/freemind/patterns.xml
-  
-  install -d "${pkgdir}"/usr/share/freemind/accessories
-  install -Dm644 "${srcdir}"/accessories/* 
"${pkgdir}"/usr/share/freemind/accessories/
-  install -Dm644 "${srcdir}"/doc/freemind.mm 
"${pkgdir}"/usr/share/freemind/doc/freemind.mm
-
-# icon and .desktop file
-  install -Dm644 "${srcdir}"/freemind.desktop 
"${pkgdir}"/usr/share/applications/freemind.desktop
-  install -Dm644 "${srcdir}"/freemind.png 
"${pkgdir}"/usr/share/pixmaps/freemind.png
-
-# FS#49620 fix
-  install -d "${pkgdir}"/usr/bin/
-  ln -s /usr/share/freemind/freemind.sh "${pkgdir}"/usr/bin/$pkgname
-}

Copied: freemind/repos/community-any/PKGBUILD (from rev 655094, 
freemind/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-06-28 06:58:21 UTC (rev 655095)
@@ -0,0 +1,46 @@
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Ray Rashif 
+# Contributor: Corrado Primier 
+# Contributor: Vinay S Shastry 
+
+pkgname=freemind
+pkgver=1.0.1
+pkgrel=5
+pkgdesc="A Java mindmapping tool"
+arch=('any')
+url="https://sourceforge.net/projects/freemind";
+license=('GPL')
+depends=('hicolor-icon-theme' 'java-runtime' 'libxtst')
+makedepends=('libicns')
+source=(https://downloads.sourceforge.net/$pkgname/$pkgname-bin-max-$pkgver.zip
+$pkgname.desktop)
+sha256sums=('005e815bf5d1867eadcaa89194df9952d986ace9eed0a3058c7ee6255799a60a'
+'eac8db98257fcb8ed9c76ec340af5f3233a4783b8fe1c57ef274b9e7d2b56ed5')
+
+package() {
+  cd "${srcdir}"
+
+  for file in $(find lib plugins -type f); do
+install -Dm644 $file "${pkgdir}"/usr/share/freemind/$file
+  done
+
+  install -Dm755 "${srcdir}"/freemind.sh 
"${pkgdir}"/usr/share/freemind/freemind.sh
+  install -Dm644 "${srcdir}"/patterns.xml "${pkgdir}"/etc/freemind/patterns.xml
+  
+  install -d "${pkgdir}"/usr/share/freemind/accessories
+  install -Dm644 "${srcdir}"/accessories/* 
"${pkgdir}"/usr/share/freemind/accessories/
+  install -Dm644 "${srcdir}"/doc/freemind.mm 
"${pkgdir}"/usr/share/freemind/doc/freemind.mm
+
+# icon and .desktop file
+  install -Dm644 "${srcdir}"/freemind.desktop 
"${pkgdir}"/usr/share/applications/freemind.desktop
+  bsdtar -xf lib/freemind.jar images/FreeMindWindowIconModern.icns
+  icns2png -x images/FreeMindWindowIconModern.icns -o images/
+  for res in 16 32 128 256 512; do
+install -Dm644 images/FreeMindWindowIconModern_${res}x${res}x32.png \
+  "${pkgdir}"/usr/share/icons/hicolor/${res}x${res}/apps/freemind.png
+  done
+
+# FS#49620 fix
+  install -d "${pkgdir}"/usr/bin/
+  ln -s /usr/share/freemind/freemind.sh "${pkgdir}"/usr/bin/$pkgname
+}

Deleted: freemind.changelog
===
--- freemind.changelog  2020-06-28 06:58:17 UTC (rev 655094)
+++ freemind.changelog  2020-06-28 06:58:21 UTC (rev 655095)
@@ -1,26 +0,0 @@
-

[arch-commits] Commit in freemind/trunk (freemind.png)

2020-06-27 Thread Balló György via arch-commits
Date: Sunday, June 28, 2020 @ 06:58:17
  Author: bgyorgy
Revision: 655094

upgpkg: freemind 1.0.1-5: Use icons shipped by upstream

Deleted:
  freemind/trunk/freemind.png

+
 0 files changed

Deleted: freemind.png
===
(Binary files differ)


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

2020-06-27 Thread Balló György via arch-commits
Date: Sunday, June 28, 2020 @ 06:56:45
  Author: bgyorgy
Revision: 655092

upgpkg: ciano 0.2.2-1: Update to new version

Modified:
  ciano/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-06-28 06:26:46 UTC (rev 655091)
+++ PKGBUILD2020-06-28 06:56:45 UTC (rev 655092)
@@ -1,7 +1,7 @@
 # Maintainer: Balló György 
 
 pkgname=ciano
-pkgver=0.2.1
+pkgver=0.2.2
 pkgrel=1
 pkgdesc="Multimedia file converter focused on simplicity"
 arch=(x86_64)
@@ -9,7 +9,7 @@
 license=(GPL3)
 depends=(ffmpeg granite imagemagick)
 makedepends=(git meson vala)
-_commit=ac33219d9474af34890635375b5d6bbaf9f15937  # tags/0.2.1
+_commit=92f02c23f8809ec48e889cec42d3efd9617f7628  # tags/0.2.2
 source=("git+https://github.com/robertsanseries/ciano#commit=$_commit";)
 sha256sums=('SKIP')
 
@@ -21,7 +21,7 @@
 prepare() {
   cd ciano
   # Use standard icon names
-  sed -i 's/application-add-symbolic/list-add-symbolic/' 
src/widgets/DialogConvertFile.vala
+  sed -i 's/application-add-symbolic/list-add-symbolic/' 
src/Widgets/DialogConvertFile.vala
 }
 
 build() {


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

2020-06-27 Thread Balló György via arch-commits
Date: Sunday, June 28, 2020 @ 06:56:48
  Author: bgyorgy
Revision: 655093

archrelease: copy trunk to community-x86_64

Added:
  ciano/repos/community-x86_64/PKGBUILD
(from rev 655092, ciano/trunk/PKGBUILD)
Deleted:
  ciano/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-06-28 06:56:45 UTC (rev 655092)
+++ PKGBUILD2020-06-28 06:56:48 UTC (rev 655093)
@@ -1,38 +0,0 @@
-# Maintainer: Balló György 
-
-pkgname=ciano
-pkgver=0.2.1
-pkgrel=1
-pkgdesc="Multimedia file converter focused on simplicity"
-arch=(x86_64)
-url="https://robertsanseries.github.io/ciano/";
-license=(GPL3)
-depends=(ffmpeg granite imagemagick)
-makedepends=(git meson vala)
-_commit=ac33219d9474af34890635375b5d6bbaf9f15937  # tags/0.2.1
-source=("git+https://github.com/robertsanseries/ciano#commit=$_commit";)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd ciano
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd ciano
-  # Use standard icon names
-  sed -i 's/application-add-symbolic/list-add-symbolic/' 
src/widgets/DialogConvertFile.vala
-}
-
-build() {
-  arch-meson ciano build
-  ninja -C build
-}
-
-check() {
-  meson test -C build
-}
-
-package() {
-  DESTDIR="$pkgdir" meson install -C build
-}

Copied: ciano/repos/community-x86_64/PKGBUILD (from rev 655092, 
ciano/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-06-28 06:56:48 UTC (rev 655093)
@@ -0,0 +1,38 @@
+# Maintainer: Balló György 
+
+pkgname=ciano
+pkgver=0.2.2
+pkgrel=1
+pkgdesc="Multimedia file converter focused on simplicity"
+arch=(x86_64)
+url="https://robertsanseries.github.io/ciano/";
+license=(GPL3)
+depends=(ffmpeg granite imagemagick)
+makedepends=(git meson vala)
+_commit=92f02c23f8809ec48e889cec42d3efd9617f7628  # tags/0.2.2
+source=("git+https://github.com/robertsanseries/ciano#commit=$_commit";)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd ciano
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd ciano
+  # Use standard icon names
+  sed -i 's/application-add-symbolic/list-add-symbolic/' 
src/Widgets/DialogConvertFile.vala
+}
+
+build() {
+  arch-meson ciano build
+  ninja -C build
+}
+
+check() {
+  meson test -C build
+}
+
+package() {
+  DESTDIR="$pkgdir" meson install -C build
+}


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

2020-06-27 Thread Balló György via arch-commits
Date: Sunday, June 28, 2020 @ 06:26:46
  Author: bgyorgy
Revision: 655091

upgpkg: freemind 1.0.1-5: Use icons shipped by upstream

Modified:
  freemind/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-06-28 04:11:09 UTC (rev 655090)
+++ PKGBUILD2020-06-28 06:26:46 UTC (rev 655091)
@@ -5,17 +5,16 @@
 
 pkgname=freemind
 pkgver=1.0.1
-pkgrel=4
+pkgrel=5
 pkgdesc="A Java mindmapping tool"
 arch=('any')
 url="https://sourceforge.net/projects/freemind";
 license=('GPL')
-depends=('java-runtime' 'desktop-file-utils' 'libxtst')
+depends=('hicolor-icon-theme' 'java-runtime' 'libxtst')
+makedepends=('libicns')
 source=(https://downloads.sourceforge.net/$pkgname/$pkgname-bin-max-$pkgver.zip
-$pkgname.png
 $pkgname.desktop)
 sha256sums=('005e815bf5d1867eadcaa89194df9952d986ace9eed0a3058c7ee6255799a60a'
-'39ec1dc88a1081058faef38b5ea48ca8c0b6ee6a6b397a216ce2f7b508b1ad61'
 'eac8db98257fcb8ed9c76ec340af5f3233a4783b8fe1c57ef274b9e7d2b56ed5')
 
 package() {
@@ -34,7 +33,12 @@
 
 # icon and .desktop file
   install -Dm644 "${srcdir}"/freemind.desktop 
"${pkgdir}"/usr/share/applications/freemind.desktop
-  install -Dm644 "${srcdir}"/freemind.png 
"${pkgdir}"/usr/share/pixmaps/freemind.png
+  bsdtar -xf lib/freemind.jar images/FreeMindWindowIconModern.icns
+  icns2png -x images/FreeMindWindowIconModern.icns -o images/
+  for res in 16 32 128 256 512; do
+install -Dm644 images/FreeMindWindowIconModern_${res}x${res}x32.png \
+  "${pkgdir}"/usr/share/icons/hicolor/${res}x${res}/apps/freemind.png
+  done
 
 # FS#49620 fix
   install -d "${pkgdir}"/usr/bin/


[arch-commits] Commit in gitlab-gitaly/trunk (PKGBUILD gitlab-gitaly.service)

2020-06-27 Thread Anatol Pomozov via arch-commits
Date: Sunday, June 28, 2020 @ 04:11:09
  Author: anatolik
Revision: 655090

Remove systemd service dependnecy to gitlab-puma

There is no hard dependency between these services. And at setup time
gitaly is required while puma cannot be started due to empty database.

https://bbs.archlinux.org/viewtopic.php?id=256792

Modified:
  gitlab-gitaly/trunk/PKGBUILD
  gitlab-gitaly/trunk/gitlab-gitaly.service

---+
 PKGBUILD  |2 +-
 gitlab-gitaly.service |   11 ---
 2 files changed, 1 insertion(+), 12 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-06-27 21:21:34 UTC (rev 655089)
+++ PKGBUILD2020-06-28 04:11:09 UTC (rev 655090)
@@ -20,7 +20,7 @@
 "gitlab-gitaly.service")
 
sha512sums=('f9c5ddf4de13a3e64bbfef367e8b431a3224c3b2a97f11e7abe1037406526c7e319d238dcc16fc7bd5f4f3690f6574eff2956691bde75086fd7c1da52db727da'
 
'6565b3dbed2653c31d5a49043dd8227812d9c8a1f6d716ed65fed5878b9c9bd6def84e8b00ff23ddb37d8bf2f484ecb229dcb1528e8276fff7fbbb1099790850'
-
'e6c31cab200424af118ee9da4def0963a52727f33025fdbdb515c6c1337a9b32f4a377bd925fdd33ffe7b91371ce1d5d70847e07c2b73eac1e85d3f38f5e1261')
+
'7f5cd528c873a5e43e18aa6a88bd7298422c047e0e61cf3208be7d9fcfdfdc8a844b5c439ab6afc2098c5c4c60ed9c3d167c2f87517f1e93b34f39be3d3dad09')
 
 prepare() {
   cd gitaly-$_tag

Modified: gitlab-gitaly.service
===
--- gitlab-gitaly.service   2020-06-27 21:21:34 UTC (rev 655089)
+++ gitlab-gitaly.service   2020-06-28 04:11:09 UTC (rev 655090)
@@ -1,16 +1,5 @@
-#
-#
-# GitLab version: 9.x
-# Contributors  : axil
-# Downloaded from   : 
https://gitlab.com/gitlab-org/gitlab-recipes/tree/master/init/systemd
-#
-
-
 [Unit]
 Description=Gitaly is a Git RPC service for handling all the git calls made by 
GitLab.
-Requires=gitlab-puma.service
-Wants=gitlab-puma.service
-After=gitlab-puma.service
 
 [Service]
 Type=simple


[arch-commits] Commit in deluge/trunk (PKGBUILD fix-ngettext.diff)

2020-06-27 Thread Jan Steffens via arch-commits
Date: Sunday, June 28, 2020 @ 02:24:57
  Author: heftig
Revision: 390533

2.0.4.dev38+g23a48dd01-1

Modified:
  deluge/trunk/PKGBUILD
Deleted:
  deluge/trunk/fix-ngettext.diff

---+
 PKGBUILD  |   13 +
 fix-ngettext.diff |   13 -
 2 files changed, 5 insertions(+), 21 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-06-28 01:56:41 UTC (rev 390532)
+++ PKGBUILD2020-06-28 02:24:57 UTC (rev 390533)
@@ -4,8 +4,8 @@
 
 pkgbase=deluge
 pkgname=(deluge deluge-gtk)
-pkgver=2.0.4.dev23+g2f1c008a2
-pkgrel=3
+pkgver=2.0.4.dev38+g23a48dd01
+pkgrel=1
 pkgdesc="BitTorrent client with multiple user interfaces in a client/server 
model"
 url="https://deluge-torrent.org/";
 arch=(any)
@@ -41,11 +41,9 @@
   libnotify
   git
 )
-_commit=2f1c008a26b50ab3487bd03bcabb39347d441f23  # develop
-source=("git://git.deluge-torrent.org/deluge.git#commit=$_commit"
-fix-ngettext.diff)
-sha256sums=('SKIP'
-'27154397f2b22e55e2ad74f74da2f4f083bce1fcee90f8ba9306e6ef13ce98c0')
+_commit=23a48dd01c86ef01cd1d13371de51247ec9a503b  # develop
+source=("git://git.deluge-torrent.org/deluge.git#commit=$_commit")
+sha256sums=('SKIP')
 
 pkgver() {
   cd deluge
@@ -54,7 +52,6 @@
 
 prepare() {
   cd deluge
-  git apply -3 ../fix-ngettext.diff
 }
 
 build() {

Deleted: fix-ngettext.diff
===
--- fix-ngettext.diff   2020-06-28 01:56:41 UTC (rev 390532)
+++ fix-ngettext.diff   2020-06-28 02:24:57 UTC (rev 390533)
@@ -1,13 +0,0 @@
-diff --git i/deluge/i18n/util.py w/deluge/i18n/util.py
-index bd002f7a2..90568fc5b 100644
 i/deluge/i18n/util.py
-+++ w/deluge/i18n/util.py
-@@ -114,7 +114,7 @@ def setup_translation():
- # Workaround for Python 2 unicode gettext (keyword removed in Py3).
- kwargs = {} if not deluge.common.PY2 else {'unicode': True}
- 
--gettext.install(I18N_DOMAIN, translations_path, names='ngettext', 
**kwargs)
-+gettext.install(I18N_DOMAIN, translations_path, names=['ngettext'], 
**kwargs)
- builtins.__dict__['_n'] = builtins.__dict__['ngettext']
- 
- libintl = None


[arch-commits] Commit in deluge/repos/extra-any (PKGBUILD PKGBUILD fix-ngettext.diff)

2020-06-27 Thread Jan Steffens via arch-commits
Date: Sunday, June 28, 2020 @ 02:25:05
  Author: heftig
Revision: 390534

archrelease: copy trunk to extra-any

Added:
  deluge/repos/extra-any/PKGBUILD
(from rev 390533, deluge/trunk/PKGBUILD)
Deleted:
  deluge/repos/extra-any/PKGBUILD
  deluge/repos/extra-any/fix-ngettext.diff

---+
 PKGBUILD  |  233 +---
 fix-ngettext.diff |   13 --
 2 files changed, 115 insertions(+), 131 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-06-28 02:24:57 UTC (rev 390533)
+++ PKGBUILD2020-06-28 02:25:05 UTC (rev 390534)
@@ -1,118 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Ionut Biru 
-# Contributor: Hugo Doria 
-
-pkgbase=deluge
-pkgname=(deluge deluge-gtk)
-pkgver=2.0.4.dev23+g2f1c008a2
-pkgrel=3
-pkgdesc="BitTorrent client with multiple user interfaces in a client/server 
model"
-url="https://deluge-torrent.org/";
-arch=(any)
-license=(GPL3)
-depends=(
-  # Follows DEPENDS.md
-  'python-twisted>=17.1' python-service-identity python-idna
-  'openssl>=1.0.1'
-  python-pyopenssl
-  'python-rencode>=1.0.2'
-  python-xdg
-  python-six
-  'python-zope-interface>=4.4.2' 
-  python-chardet 
-  python-setproctitle 
-  python-pillow
-  python-dbus
-  python-distro
-  'libtorrent-rasterbar>=1.1.1'
-  python-geoip
-  python-mako
-)
-makedepends=(
-  python-setuptools
-  intltool
-  gtk3
-  python-gobject
-  python-cairo
-  librsvg
-  xdg-utils
-  libappindicator-gtk3
-  #python-pygame
-  libnotify
-  git
-)
-_commit=2f1c008a26b50ab3487bd03bcabb39347d441f23  # develop
-source=("git://git.deluge-torrent.org/deluge.git#commit=$_commit"
-fix-ngettext.diff)
-sha256sums=('SKIP'
-'27154397f2b22e55e2ad74f74da2f4f083bce1fcee90f8ba9306e6ef13ce98c0')
-
-pkgver() {
-  cd deluge
-  git describe --tags | sed 's/^deluge-//;s/dev0-/dev/;s/-/+/g'
-}
-
-prepare() {
-  cd deluge
-  git apply -3 ../fix-ngettext.diff
-}
-
-build() {
-  cd deluge
-  python setup.py build
-}
-
-_pick() {
-  local p="$1" f d; shift
-  for f; do
-d="$srcdir/$p/${f#$pkgdir/}"
-mkdir -p "$(dirname "$d")"
-mv "$f" "$d"
-rmdir -p --ignore-fail-on-non-empty "$(dirname "$f")"
-  done
-}
-
-package_deluge() {
-  cd deluge
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-
-  install -Dt "$pkgdir/usr/lib/systemd/system" \
--m644 packaging/systemd/*.service
-  install -Dt "$pkgdir/usr/lib/systemd/system/deluged.service.d" \
--m644 packaging/systemd/user.conf
-  install -Dt "$pkgdir/usr/lib/systemd/system/deluge-web.service.d" \
--m644 packaging/systemd/user.conf
-
-  echo 'u deluge - "Deluge BitTorrent daemon" /srv/deluge' |
-install -Dm644 /dev/stdin "$pkgdir/usr/lib/sysusers.d/$pkgname.conf"
-  echo 'd /srv/deluge 0770 deluge deluge' |
-install -Dm644 /dev/stdin "$pkgdir/usr/lib/tmpfiles.d/$pkgname.conf"
-
-  cd "$pkgdir"
-
-  _pick gtk usr/bin/deluge-gtk usr/share/man/man1/deluge-gtk.1
-  _pick gtk usr/share/{appdata,applications,icons,pixmaps}
-  _pick gtk usr/lib/python3.8/site-packages/deluge/ui/gtk3
-}
-
-package_deluge-gtk() {
-  pkgdesc="GTK UI for Deluge"
-  depends=(
-"deluge=$pkgver-$pkgrel"
-gtk3
-librsvg
-python-cairo
-python-gobject
-xdg-utils
-  )
-  optdepends=(
-'libappindicator-gtk3: appindicator notifications'
-#'python-pygame: audible notifications'
-'libnotify: desktop notifications'
-  )
-  replaces=('deluge<2.0.4.dev23+g2f1c008a2-2')
-
-  mv gtk/* "$pkgdir"
-}
-
-# vim:set sw=2 et:

Copied: deluge/repos/extra-any/PKGBUILD (from rev 390533, deluge/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-06-28 02:25:05 UTC (rev 390534)
@@ -0,0 +1,115 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Ionut Biru 
+# Contributor: Hugo Doria 
+
+pkgbase=deluge
+pkgname=(deluge deluge-gtk)
+pkgver=2.0.4.dev38+g23a48dd01
+pkgrel=1
+pkgdesc="BitTorrent client with multiple user interfaces in a client/server 
model"
+url="https://deluge-torrent.org/";
+arch=(any)
+license=(GPL3)
+depends=(
+  # Follows DEPENDS.md
+  'python-twisted>=17.1' python-service-identity python-idna
+  'openssl>=1.0.1'
+  python-pyopenssl
+  'python-rencode>=1.0.2'
+  python-xdg
+  python-six
+  'python-zope-interface>=4.4.2' 
+  python-chardet 
+  python-setproctitle 
+  python-pillow
+  python-dbus
+  python-distro
+  'libtorrent-rasterbar>=1.1.1'
+  python-geoip
+  python-mako
+)
+makedepends=(
+  python-setuptools
+  intltool
+  gtk3
+  python-gobject
+  python-cairo
+  librsvg
+  xdg-utils
+  libappindicator-gtk3
+  #python-pygame
+  libnotify
+  git
+)
+_commit=23a48dd01c86ef01cd1d13371de51247ec9a503b  # develop
+source=("git://git.deluge-torrent.org/deluge.git#commit=$_commit")
+sha256sums=('SKIP')
+
+pkgver() {
+  cd deluge
+  git describe --tags | sed 's/^deluge-//;s/dev0-/dev/;s/-/

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

2020-06-27 Thread Jan Steffens via arch-commits
Date: Sunday, June 28, 2020 @ 01:56:31
  Author: heftig
Revision: 390531

6.9.11.22-1

Modified:
  imagemagick6/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-06-27 22:45:35 UTC (rev 390530)
+++ PKGBUILD2020-06-28 01:56:31 UTC (rev 390531)
@@ -2,7 +2,7 @@
 
 pkgbase=imagemagick6
 pkgname=(libmagick6)
-pkgver=6.9.11.20
+pkgver=6.9.11.22
 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=('72101002d7adc42ed6f3e1d44e4847d9008096de4f3bdc38d7db47f7809d7a15'
+sha256sums=('ba653c2ee5e4715a0797ca6a5ce03d14a7ae06939c205b390724626e3fb78ec5'
 'SKIP'
 'a85b744c61b1b563743ecb7c7adad999d7ed9a8af816650e3ab9321b2b102e73')
 validpgpkeys=(D8272EF51DA223E4D05B466989AB63D48277377A)  # Lexie Parsimoniae


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

2020-06-27 Thread Jan Steffens via arch-commits
Date: Sunday, June 28, 2020 @ 01:56:41
  Author: heftig
Revision: 390532

archrelease: copy trunk to extra-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-06-28 01:56:31 UTC (rev 390531)
+++ PKGBUILD2020-06-28 01:56:41 UTC (rev 390532)
@@ -1,111 +0,0 @@
-# Maintainer: Eric Bélanger 
-
-pkgbase=imagemagick6
-pkgname=(libmagick6)
-pkgver=6.9.11.20
-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
- 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=('72101002d7adc42ed6f3e1d44e4847d9008096de4f3bdc38d7db47f7809d7a15'
-'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 \
---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 390531, 
imagemagick6/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-06-28 01:56:41 UTC (rev 390532)
@@ -0,0 +1,111 @@
+# Maintainer: Eric Bélanger 
+
+pkgbase=imagemagick6
+pkgname=(libmagick6)
+pkgver=6.9.11.22
+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 libp

[arch-commits] Commit in black-hole-solver/trunk (PKGBUILD)

2020-06-27 Thread Antonio Rojas via arch-commits
Date: Saturday, June 27, 2020 @ 22:45:26
  Author: arojas
Revision: 390529

Update to 1.8.0

Modified:
  black-hole-solver/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-06-27 22:38:43 UTC (rev 390528)
+++ PKGBUILD2020-06-27 22:45:26 UTC (rev 390529)
@@ -1,8 +1,8 @@
 # Maintainer: Antonio Rojas 
 
 pkgname=black-hole-solver
-pkgver=1.6.0
-pkgrel=2
+pkgver=1.8.0
+pkgrel=1
 pkgdesc="Solvers and statistics for 'Golf' solitaire, 'Black Hole' solitaire, 
'All in a Row' solitaire and related card patience games."
 arch=(x86_64)
 
url="https://www.shlomifish.org/open-source/projects/black-hole-solitaire-solver/";
@@ -10,23 +10,16 @@
 depends=(glibc)
 makedepends=(cmake perl-path-tiny rinutils)
 
source=(https://fc-solve.shlomifish.org/downloads/fc-solve/black-hole-solver-$pkgver.tar.xz)
-sha256sums=('2c72ef77116276324c08e237c2abb940761925433f6283a184d1aeb9428e9341')
+sha256sums=('f73c14272545baa4cba717b61646ec0c610b124e1721288b0a9bff680bb9982c')
 
-prepare() {
-  mkdir -p build
-}
-
 build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
+  cmake -B build -S $pkgname-$pkgver \
 -DCMAKE_INSTALL_PREFIX=/usr \
 -DBUILD_STATIC_LIBRARY=OFF
-  make
+  cmake --build build
 }
 
 package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-  install -Dm644 "$srcdir"/$pkgname-$pkgver/COPYING 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+  DESTDIR="$pkgdir" cmake --install build
+  install -Dm644 $pkgname-$pkgver/COPYING 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 }
-


[arch-commits] Commit in black-hole-solver/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2020-06-27 Thread Antonio Rojas via arch-commits
Date: Saturday, June 27, 2020 @ 22:45:35
  Author: arojas
Revision: 390530

archrelease: copy trunk to extra-x86_64

Added:
  black-hole-solver/repos/extra-x86_64/PKGBUILD
(from rev 390529, black-hole-solver/trunk/PKGBUILD)
Deleted:
  black-hole-solver/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-06-27 22:45:26 UTC (rev 390529)
+++ PKGBUILD2020-06-27 22:45:35 UTC (rev 390530)
@@ -1,32 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=black-hole-solver
-pkgver=1.6.0
-pkgrel=2
-pkgdesc="Solvers and statistics for 'Golf' solitaire, 'Black Hole' solitaire, 
'All in a Row' solitaire and related card patience games."
-arch=(x86_64)
-url="https://www.shlomifish.org/open-source/projects/black-hole-solitaire-solver/";
-license=(MIT)
-depends=(glibc)
-makedepends=(cmake perl-path-tiny rinutils)
-source=(https://fc-solve.shlomifish.org/downloads/fc-solve/black-hole-solver-$pkgver.tar.xz)
-sha256sums=('2c72ef77116276324c08e237c2abb940761925433f6283a184d1aeb9428e9341')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DBUILD_STATIC_LIBRARY=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-  install -Dm644 "$srcdir"/$pkgname-$pkgver/COPYING 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-

Copied: black-hole-solver/repos/extra-x86_64/PKGBUILD (from rev 390529, 
black-hole-solver/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-06-27 22:45:35 UTC (rev 390530)
@@ -0,0 +1,25 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=black-hole-solver
+pkgver=1.8.0
+pkgrel=1
+pkgdesc="Solvers and statistics for 'Golf' solitaire, 'Black Hole' solitaire, 
'All in a Row' solitaire and related card patience games."
+arch=(x86_64)
+url="https://www.shlomifish.org/open-source/projects/black-hole-solitaire-solver/";
+license=(MIT)
+depends=(glibc)
+makedepends=(cmake perl-path-tiny rinutils)
+source=(https://fc-solve.shlomifish.org/downloads/fc-solve/black-hole-solver-$pkgver.tar.xz)
+sha256sums=('f73c14272545baa4cba717b61646ec0c610b124e1721288b0a9bff680bb9982c')
+
+build() {
+  cmake -B build -S $pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DBUILD_STATIC_LIBRARY=OFF
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+  install -Dm644 $pkgname-$pkgver/COPYING 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2020-06-27 Thread Morten Linderud via arch-commits
Date: Saturday, June 27, 2020 @ 21:21:34
  Author: foxboron
Revision: 655089

archrelease: copy trunk to community-x86_64

Added:
  dqlite/repos/community-x86_64/PKGBUILD
(from rev 655088, dqlite/trunk/PKGBUILD)
Deleted:
  dqlite/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-06-27 21:21:22 UTC (rev 655088)
+++ PKGBUILD2020-06-27 21:21:34 UTC (rev 655089)
@@ -1,32 +0,0 @@
-# Maintainer: Morten Linderud 
-# Contributor: Thomas Hipp 
-
-pkgname=dqlite
-pkgver=1.4.4
-pkgrel=1
-pkgdesc="Distributed SQLite"
-arch=('x86_64')
-url="https://github.com/CanonicalLtd/dqlite";
-license=('LGPL3')
-depends=('libuv' 'raft' 'libco' 'sqlite-replication')
-makedepends=('tcl' 'readline' 'zlib')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/canonical/${pkgname}/archive/v${pkgver}.tar.gz";)
-sha256sums=('913c26d20e8638063b703733f83874de40b098afa9687e975350409225676371')
-
-build() {
-   cd "$pkgname-$pkgver"
-   autoreconf -i 
-   PKG_CONFIG_PATH="/usr/lib/sqlite-replication/pkgconfig" ./configure 
--prefix=/usr
-   make LDFLAGS="-Wl,-R/usr/lib/sqlite-replication"
-}
-
-check() {
-   cd "$pkgname-$pkgver"
-   make LDFLAGS="-Wl,-R/usr/lib/sqlite-replication" check || true
-}
-
-package() {
-   cd "$pkgname-$pkgver"
-   make DESTDIR="$pkgdir/" install
-   install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: dqlite/repos/community-x86_64/PKGBUILD (from rev 655088, 
dqlite/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-06-27 21:21:34 UTC (rev 655089)
@@ -0,0 +1,32 @@
+# Maintainer: Morten Linderud 
+# Contributor: Thomas Hipp 
+
+pkgname=dqlite
+pkgver=1.5.0
+pkgrel=1
+pkgdesc="Distributed SQLite"
+arch=('x86_64')
+url="https://github.com/CanonicalLtd/dqlite";
+license=('LGPL3')
+depends=('libuv' 'raft' 'libco' 'sqlite-replication')
+makedepends=('tcl' 'readline' 'zlib')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/canonical/${pkgname}/archive/v${pkgver}.tar.gz";)
+sha256sums=('1ea4a4a70460bce98eb8d473fd64233bfd9897f348276c4b270194e3b95f')
+
+build() {
+   cd "$pkgname-$pkgver"
+   autoreconf -i 
+   PKG_CONFIG_PATH="/usr/lib/sqlite-replication/pkgconfig" ./configure 
--prefix=/usr
+   make LDFLAGS="-Wl,-R/usr/lib/sqlite-replication"
+}
+
+check() {
+   cd "$pkgname-$pkgver"
+   make LDFLAGS="-Wl,-R/usr/lib/sqlite-replication" check || true
+}
+
+package() {
+   cd "$pkgname-$pkgver"
+   make DESTDIR="$pkgdir/" install
+   install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}


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

2020-06-27 Thread Morten Linderud via arch-commits
Date: Saturday, June 27, 2020 @ 21:21:22
  Author: foxboron
Revision: 655088

upgpkg: dqlite 1.5.0-1

Modified:
  dqlite/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-06-27 21:20:06 UTC (rev 655087)
+++ PKGBUILD2020-06-27 21:21:22 UTC (rev 655088)
@@ -2,7 +2,7 @@
 # Contributor: Thomas Hipp 
 
 pkgname=dqlite
-pkgver=1.4.4
+pkgver=1.5.0
 pkgrel=1
 pkgdesc="Distributed SQLite"
 arch=('x86_64')
@@ -11,7 +11,7 @@
 depends=('libuv' 'raft' 'libco' 'sqlite-replication')
 makedepends=('tcl' 'readline' 'zlib')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/canonical/${pkgname}/archive/v${pkgver}.tar.gz";)
-sha256sums=('913c26d20e8638063b703733f83874de40b098afa9687e975350409225676371')
+sha256sums=('1ea4a4a70460bce98eb8d473fd64233bfd9897f348276c4b270194e3b95f')
 
 build() {
cd "$pkgname-$pkgver"


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

2020-06-27 Thread Morten Linderud via arch-commits
Date: Saturday, June 27, 2020 @ 21:19:57
  Author: foxboron
Revision: 655086

upgpkg: toolbox 0.0.91-1

Modified:
  toolbox/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-06-27 20:45:12 UTC (rev 655085)
+++ PKGBUILD2020-06-27 21:19:57 UTC (rev 655086)
@@ -2,7 +2,7 @@
 # Maintainer: Morten Linderud 
 
 pkgname=toolbox
-pkgver=0.0.90
+pkgver=0.0.91
 pkgrel=1
 pkgdesc='Unprivileged development environment'
 arch=(x86_64)
@@ -10,7 +10,7 @@
 license=(APACHE)
 depends=(podman bash)
 makedepends=(go shellcheck go-md2man bash-completion ninja git meson)
-_commit=1e3d25c426920a7f8bf116ca08811ac752763f11 # tags/0.0.90^0
+_commit=387872c6a35dab29f3a58d6b63b8b39ff163c5f9 # tags/0.0.91
 source=("git+$url#commit=$_commit")
 sha256sums=('SKIP')
 


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

2020-06-27 Thread Morten Linderud via arch-commits
Date: Saturday, June 27, 2020 @ 21:20:06
  Author: foxboron
Revision: 655087

archrelease: copy trunk to community-x86_64

Added:
  toolbox/repos/community-x86_64/PKGBUILD
(from rev 655086, toolbox/trunk/PKGBUILD)
Deleted:
  toolbox/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-06-27 21:19:57 UTC (rev 655086)
+++ PKGBUILD2020-06-27 21:20:06 UTC (rev 655087)
@@ -1,34 +0,0 @@
-# Maintainer: Bartłomiej Piotrowski 
-# Maintainer: Morten Linderud 
-
-pkgname=toolbox
-pkgver=0.0.90
-pkgrel=1
-pkgdesc='Unprivileged development environment'
-arch=(x86_64)
-url='https://github.com/containers/toolbox'
-license=(APACHE)
-depends=(podman bash)
-makedepends=(go shellcheck go-md2man bash-completion ninja git meson)
-_commit=1e3d25c426920a7f8bf116ca08811ac752763f11 # tags/0.0.90^0
-source=("git+$url#commit=$_commit")
-sha256sums=('SKIP')
-
-pkgver() {
-  cd toolbox
-  git describe --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
-}
-
-build() {
-  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  arch-meson toolbox build -D profile_dir=/etc/profile.d
-  ninja -C build
-}
-
-package() {
-  DESTDIR="$pkgdir" ninja -C build install
-}

Copied: toolbox/repos/community-x86_64/PKGBUILD (from rev 655086, 
toolbox/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-06-27 21:20:06 UTC (rev 655087)
@@ -0,0 +1,34 @@
+# Maintainer: Bartłomiej Piotrowski 
+# Maintainer: Morten Linderud 
+
+pkgname=toolbox
+pkgver=0.0.91
+pkgrel=1
+pkgdesc='Unprivileged development environment'
+arch=(x86_64)
+url='https://github.com/containers/toolbox'
+license=(APACHE)
+depends=(podman bash)
+makedepends=(go shellcheck go-md2man bash-completion ninja git meson)
+_commit=387872c6a35dab29f3a58d6b63b8b39ff163c5f9 # tags/0.0.91
+source=("git+$url#commit=$_commit")
+sha256sums=('SKIP')
+
+pkgver() {
+  cd toolbox
+  git describe --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
+}
+
+build() {
+  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  arch-meson toolbox build -D profile_dir=/etc/profile.d
+  ninja -C build
+}
+
+package() {
+  DESTDIR="$pkgdir" ninja -C build install
+}


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

2020-06-27 Thread Morten Linderud via arch-commits
Date: Saturday, June 27, 2020 @ 20:45:12
  Author: foxboron
Revision: 655085

archrelease: copy trunk to community-any

Added:
  todoman/repos/community-any/PKGBUILD
(from rev 655084, todoman/trunk/PKGBUILD)
Deleted:
  todoman/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-06-27 20:45:03 UTC (rev 655084)
+++ PKGBUILD2020-06-27 20:45:12 UTC (rev 655085)
@@ -1,61 +0,0 @@
-# Maintainer: David Runge 
-
-pkgname=todoman
-pkgver=3.8.0
-pkgrel=2
-pkgdesc="A simple, standards-based, cli todo (aka: task) manager"
-arch=('any')
-url="https://github.com/pimutils/todoman";
-license=('ISC')
-depends=('python-atomicwrites' 'python-click' 'python-click-log'
-'python-configobj' 'python-dateutil' 'python-humanize' 'python-icalendar'
-'python-parsedatetime' 'python-pyxdg' 'python-setuptools' 'python-tabulate'
-'python-urwid')
-checkdepends=('python-freezegun' 'python-hypothesis' 'python-pytest'
-'python-pytest-runner')
-optdepends=('bash-completion: auto-complete in bash'
-'python-click-repl: REPL command'
-'zsh-completions: auto-complete in zsh')
-source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/${pkgname}/${pkgname}-${pkgver}.tar.gz";)
-sha512sums=('67cb498265fdb802ca0993618ae8e06918d0440d6f1092d155571d85a507f098e9e172e852b82f3854a965d72c57aba749ad964922f274be03181def4a527198')
-
-prepare() {
-  cd "$pkgname-$pkgver"
-  # remove interfering options to pytest
-  sed -e '/addopts/d' -i setup.cfg
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-  python setup.py build
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-  export PYTHONPATH="build:${PYTHONPATH}"
-  # tests require timezone to be set to UTC
-  # https://github.com/pimutils/todoman/issues/404
-  TZ="UTC" pytest -v
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  python setup.py install --skip-build \
---optimize=1 \
---prefix=/usr \
---root="${pkgdir}"
-  # docs
-  install -vDm 644 {AUTHORS,CHANGELOG,CODE_OF_CONDUCT,README}.rst \
--t "${pkgdir}/usr/share/doc/${pkgname}/"
-  # license
-  # wrong name: https://github.com/pimutils/todoman/issues/319
-  install -vDm 644 LICENCE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  # sample config
-  install -vDm 644 "${pkgname}.conf.sample" \
--t "${pkgdir}/usr/share/doc/${pkgname}/examples/"
-  # completions
-  install -vDm 644 contrib/completion/bash/_todo \
-"${pkgdir}/usr/share/bash-completion/completions/todo"
-  install -vDm 644 contrib/completion/zsh/_todo \
-"${pkgdir}/usr/share/zsh/site-functions/_todo"
-}

Copied: todoman/repos/community-any/PKGBUILD (from rev 655084, 
todoman/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-06-27 20:45:12 UTC (rev 655085)
@@ -0,0 +1,67 @@
+# Maintainer: David Runge 
+# Maintainer: Morten Linderud 
+
+pkgname=todoman
+pkgver=3.8.0
+pkgrel=3
+pkgdesc="A simple, standards-based, cli todo (aka: task) manager"
+arch=('any')
+url="https://github.com/pimutils/todoman";
+license=('ISC')
+depends=('python-atomicwrites' 'python-click' 'python-click-log'
+'python-configobj' 'python-dateutil' 'python-humanize' 'python-icalendar'
+'python-parsedatetime' 'python-pyxdg' 'python-setuptools' 'python-tabulate'
+'python-urwid')
+makedepends=('python-sphinx' 'python-sphinx-autorun')
+checkdepends=('python-freezegun' 'python-hypothesis' 'python-pytest'
+'python-pytest-runner')
+optdepends=('bash-completion: auto-complete in bash'
+'python-click-repl: REPL command'
+'zsh-completions: auto-complete in zsh')
+source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/${pkgname}/${pkgname}-${pkgver}.tar.gz";)
+sha512sums=('67cb498265fdb802ca0993618ae8e06918d0440d6f1092d155571d85a507f098e9e172e852b82f3854a965d72c57aba749ad964922f274be03181def4a527198')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+  # remove interfering options to pytest
+  sed -e '/addopts/d' -i setup.cfg
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  python setup.py build
+  PYTHONPATH="$PYTHONPATH:${PWD}" make -C docs man
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  export PYTHONPATH="build:${PYTHONPATH}"
+  # tests require timezone to be set to UTC
+  # https://github.com/pimutils/todoman/issues/404
+  TZ="UTC" pytest -v
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  python setup.py install --skip-build \
+--optimize=1 \
+--prefix=/usr \
+--root="${pkgdir}"
+  # docs
+  install -vDm 644 {AUTHORS,CHANGELOG,CODE_OF_CONDUCT,README}.rst \
+-t "${pkgdir}/usr/share/doc/${pkgname}/"
+  # manpages
+  install -d "$pkgdir/usr/share/man/man1"
+  install -Dm644 docs/build/man/*.1 "$pkgdir/usr/share/man/man1/"
+  # license
+  # wrong name: https://github.com/pimutils/todoman/issues/319
+  install -vDm 644 

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

2020-06-27 Thread Morten Linderud via arch-commits
Date: Saturday, June 27, 2020 @ 20:45:03
  Author: foxboron
Revision: 655084

upgpkg: todoman 3.8.0-3

Added manpage

Modified:
  todoman/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-06-27 20:40:25 UTC (rev 655083)
+++ PKGBUILD2020-06-27 20:45:03 UTC (rev 655084)
@@ -1,8 +1,9 @@
 # Maintainer: David Runge 
+# Maintainer: Morten Linderud 
 
 pkgname=todoman
 pkgver=3.8.0
-pkgrel=2
+pkgrel=3
 pkgdesc="A simple, standards-based, cli todo (aka: task) manager"
 arch=('any')
 url="https://github.com/pimutils/todoman";
@@ -11,6 +12,7 @@
 'python-configobj' 'python-dateutil' 'python-humanize' 'python-icalendar'
 'python-parsedatetime' 'python-pyxdg' 'python-setuptools' 'python-tabulate'
 'python-urwid')
+makedepends=('python-sphinx' 'python-sphinx-autorun')
 checkdepends=('python-freezegun' 'python-hypothesis' 'python-pytest'
 'python-pytest-runner')
 optdepends=('bash-completion: auto-complete in bash'
@@ -28,6 +30,7 @@
 build() {
   cd "$pkgname-$pkgver"
   python setup.py build
+  PYTHONPATH="$PYTHONPATH:${PWD}" make -C docs man
 }
 
 check() {
@@ -47,6 +50,9 @@
   # docs
   install -vDm 644 {AUTHORS,CHANGELOG,CODE_OF_CONDUCT,README}.rst \
 -t "${pkgdir}/usr/share/doc/${pkgname}/"
+  # manpages
+  install -d "$pkgdir/usr/share/man/man1"
+  install -Dm644 docs/build/man/*.1 "$pkgdir/usr/share/man/man1/"
   # license
   # wrong name: https://github.com/pimutils/todoman/issues/319
   install -vDm 644 LICENCE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"


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

2020-06-27 Thread Morten Linderud via arch-commits
Date: Saturday, June 27, 2020 @ 20:40:25
  Author: foxboron
Revision: 655083

archrelease: copy trunk to community-any

Added:
  python-sphinx-autorun/repos/community-any/
  python-sphinx-autorun/repos/community-any/PKGBUILD
(from rev 655082, python-sphinx-autorun/trunk/PKGBUILD)

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

Copied: python-sphinx-autorun/repos/community-any/PKGBUILD (from rev 655082, 
python-sphinx-autorun/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2020-06-27 20:40:25 UTC (rev 655083)
@@ -0,0 +1,31 @@
+# Maintainer: Morten Linderud 
+
+pkgname=python-sphinx-autorun
+_pkgname=sphinx-autorun
+pkgver=1.1.1
+pkgrel=1
+pkgdesc="Sphinx extension to execute the code output it into a document."
+arch=('any')
+url="https://github.com/WhyNotHugo/sphinx-autorun";
+license=('BSD')
+depends=('python')
+makedepends=('git' 'python-setuptools-scm')
+_commit=7a4c2c99a29e5e9e9b0838fac0419d00c5675f8b
+source=("git+https://github.com/WhyNotHugo/sphinx-autorun#commit=${_commit}";)
+sha512sums=('SKIP')
+
+pkgver() {
+  cd "${_pkgname}"
+  git describe --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
+}
+
+build() {
+cd "${_pkgname}"
+python setup.py build
+}
+
+package() {
+cd "${_pkgname}"
+python setup.py install --root="$pkgdir/" --optimize=1 --skip-build
+install -Dm0644 LICENCE "${pkgdir}/usr/share/licenses/${pkgname}/LICENCE"
+}


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

2020-06-27 Thread Morten Linderud via arch-commits
Date: Saturday, June 27, 2020 @ 20:40:18
  Author: foxboron
Revision: 655082

upgpkg: python-sphinx-autorun 1.1.1-1

Added:
  python-sphinx-autorun/trunk/PKGBUILD

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

Added: PKGBUILD
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-06-27 20:40:18 UTC (rev 655082)
@@ -0,0 +1,31 @@
+# Maintainer: Morten Linderud 
+
+pkgname=python-sphinx-autorun
+_pkgname=sphinx-autorun
+pkgver=1.1.1
+pkgrel=1
+pkgdesc="Sphinx extension to execute the code output it into a document."
+arch=('any')
+url="https://github.com/WhyNotHugo/sphinx-autorun";
+license=('BSD')
+depends=('python')
+makedepends=('git' 'python-setuptools-scm')
+_commit=7a4c2c99a29e5e9e9b0838fac0419d00c5675f8b
+source=("git+https://github.com/WhyNotHugo/sphinx-autorun#commit=${_commit}";)
+sha512sums=('SKIP')
+
+pkgver() {
+  cd "${_pkgname}"
+  git describe --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
+}
+
+build() {
+cd "${_pkgname}"
+python setup.py build
+}
+
+package() {
+cd "${_pkgname}"
+python setup.py install --root="$pkgdir/" --optimize=1 --skip-build
+install -Dm0644 LICENCE "${pkgdir}/usr/share/licenses/${pkgname}/LICENCE"
+}


[arch-commits] Commit in (3 files)

2020-06-27 Thread Morten Linderud via arch-commits
Date: Saturday, June 27, 2020 @ 20:40:12
  Author: foxboron
Revision: 655081

addpkg: python-sphinx-autorun 1.1.1-1

Added:
  python-sphinx-autorun/
  python-sphinx-autorun/repos/
  python-sphinx-autorun/trunk/


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

2020-06-27 Thread Morten Linderud via arch-commits
Date: Saturday, June 27, 2020 @ 20:09:48
  Author: foxboron
Revision: 655080

archrelease: copy trunk to community-x86_64

Added:
  podman/repos/community-x86_64/PKGBUILD
(from rev 655079, podman/trunk/PKGBUILD)
Deleted:
  podman/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-06-27 20:09:39 UTC (rev 655079)
+++ PKGBUILD2020-06-27 20:09:48 UTC (rev 655080)
@@ -1,51 +0,0 @@
-# Maintainer: Bartłomiej Piotrowski 
-# Maintainer: Morten Linderud 
-
-pkgbase=podman
-pkgname=(podman podman-docker)
-pkgver=2.0.0
-pkgrel=1
-pkgdesc='Tool and library for running OCI-based containers in pods'
-arch=(x86_64)
-url='https://github.com/containers/libpod'
-license=(Apache)
-depends=(cni-plugins conmon device-mapper iptables libseccomp runc
- slirp4netns libsystemd fuse-overlayfs skopeo)
-makedepends=(go go-md2man git btrfs-progs)
-source=("git+$url#tag=v$pkgver?signed")
-validpgpkeys=('B7DBDCA456F7335E91F1C25CD3624C551D0515C4')
-sha256sums=('SKIP')
-
-pkgver() {
-  cd libpod
-  git describe --tags | sed 's/^v//;s/-/+/g'
-}
-
-build() {
-  export BUILDTAGS='seccomp varlink systemd'
-  export CGO_CFLAGS="$CFLAGS"
-  export CGO_LDFLAGS="$LDFLAGS"
-  export GOFLAGS="-buildmode=pie -trimpath"
-
-  cd libpod
-  make
-}
-
-package_podman() {
-  optdepends+=('podman-docker: for Docker-compatible CLI'
-  'btrfs-progs: support btrfs backend devices'
-  'catatonit: --init flag support'
-  'crun: support for unified cgroupsv2')
-
-  cd libpod
-  make install install.completions DESTDIR="$pkgdir" PREFIX=/usr
-}
-
-package_podman-docker() {
-  pkgdesc='Emulate Docker CLI using podman'
-  depends=(podman)
-  conflicts=(docker)
-
-  cd libpod
-  make install.docker DESTDIR="$pkgdir" PREFIX=/usr
-}

Copied: podman/repos/community-x86_64/PKGBUILD (from rev 655079, 
podman/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-06-27 20:09:48 UTC (rev 655080)
@@ -0,0 +1,51 @@
+# Maintainer: Bartłomiej Piotrowski 
+# Maintainer: Morten Linderud 
+
+pkgbase=podman
+pkgname=(podman podman-docker)
+pkgver=2.0.1
+pkgrel=1
+pkgdesc='Tool and library for running OCI-based containers in pods'
+arch=(x86_64)
+url='https://github.com/containers/libpod'
+license=(Apache)
+depends=(cni-plugins conmon device-mapper iptables libseccomp runc
+ slirp4netns libsystemd fuse-overlayfs skopeo)
+makedepends=(go go-md2man git btrfs-progs)
+source=("git+$url#tag=v$pkgver?signed")
+validpgpkeys=('B7DBDCA456F7335E91F1C25CD3624C551D0515C4')
+sha256sums=('SKIP')
+
+pkgver() {
+  cd libpod
+  git describe --tags | sed 's/^v//;s/-/+/g'
+}
+
+build() {
+  export BUILDTAGS='seccomp varlink systemd'
+  export CGO_CFLAGS="$CFLAGS"
+  export CGO_LDFLAGS="$LDFLAGS"
+  export GOFLAGS="-buildmode=pie -trimpath"
+
+  cd libpod
+  make
+}
+
+package_podman() {
+  optdepends+=('podman-docker: for Docker-compatible CLI'
+  'btrfs-progs: support btrfs backend devices'
+  'catatonit: --init flag support'
+  'crun: support for unified cgroupsv2')
+
+  cd libpod
+  make install install.completions DESTDIR="$pkgdir" PREFIX=/usr
+}
+
+package_podman-docker() {
+  pkgdesc='Emulate Docker CLI using podman'
+  depends=(podman)
+  conflicts=(docker)
+
+  cd libpod
+  make install.docker DESTDIR="$pkgdir" PREFIX=/usr
+}


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

2020-06-27 Thread Morten Linderud via arch-commits
Date: Saturday, June 27, 2020 @ 20:09:39
  Author: foxboron
Revision: 655079

upgpkg: podman 2.0.1-1

Modified:
  podman/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-06-27 20:05:51 UTC (rev 655078)
+++ PKGBUILD2020-06-27 20:09:39 UTC (rev 655079)
@@ -3,7 +3,7 @@
 
 pkgbase=podman
 pkgname=(podman podman-docker)
-pkgver=2.0.0
+pkgver=2.0.1
 pkgrel=1
 pkgdesc='Tool and library for running OCI-based containers in pods'
 arch=(x86_64)


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

2020-06-27 Thread Filipe Laíns via arch-commits
Date: Saturday, June 27, 2020 @ 20:05:45
  Author: ffy00
Revision: 655077

upgpkg: python-simplespectral 1.0.0-5 (add replaces on simplespectral)

Modified:
  python-simplespectral/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-06-27 20:04:41 UTC (rev 655076)
+++ PKGBUILD2020-06-27 20:05:45 UTC (rev 655077)
@@ -4,7 +4,7 @@
 _pkgname=simplespectral
 pkgname=python-$_pkgname
 pkgver=1.0.0
-pkgrel=4
+pkgrel=5
 pkgdesc='Heavily simplified scipy.signal.spectral module'
 arch=('any')
 url='https://github.com/xmikos/simplespectral'
@@ -12,6 +12,7 @@
 depends=('python' 'python-numpy')
 makedepends=('python-setuptools')
 optdepends=('python-scipy: faster FFT calculations with scipy.fftpack library')
+replaces=('simplespectral')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/xmikos/simplespectral/archive/v$pkgver.tar.gz";)
 sha256sums=('4342741f7054c71f7c5fb9d38df49e048e0a4e20eb53cefd247e47937644cad0')
 


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

2020-06-27 Thread Filipe Laíns via arch-commits
Date: Saturday, June 27, 2020 @ 20:05:51
  Author: ffy00
Revision: 655078

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-06-27 20:05:45 UTC (rev 655077)
+++ PKGBUILD2020-06-27 20:05:51 UTC (rev 655078)
@@ -1,30 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Michal Krenek (Mikos) 
-
-_pkgname=simplespectral
-pkgname=python-$_pkgname
-pkgver=1.0.0
-pkgrel=4
-pkgdesc='Heavily simplified scipy.signal.spectral module'
-arch=('any')
-url='https://github.com/xmikos/simplespectral'
-license=('MIT')
-depends=('python' 'python-numpy')
-makedepends=('python-setuptools')
-optdepends=('python-scipy: faster FFT calculations with scipy.fftpack library')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/xmikos/simplespectral/archive/v$pkgver.tar.gz";)
-sha256sums=('4342741f7054c71f7c5fb9d38df49e048e0a4e20eb53cefd247e47937644cad0')
-
-build() {
-  cd $_pkgname-$pkgver
-
-  python setup.py build
-}
-
-package() {
-  cd $_pkgname-$pkgver
-
-  python setup.py install --root="$pkgdir"
-
-  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-simplespectral/repos/community-any/PKGBUILD (from rev 655077, 
python-simplespectral/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-06-27 20:05:51 UTC (rev 655078)
@@ -0,0 +1,31 @@
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: Michal Krenek (Mikos) 
+
+_pkgname=simplespectral
+pkgname=python-$_pkgname
+pkgver=1.0.0
+pkgrel=5
+pkgdesc='Heavily simplified scipy.signal.spectral module'
+arch=('any')
+url='https://github.com/xmikos/simplespectral'
+license=('MIT')
+depends=('python' 'python-numpy')
+makedepends=('python-setuptools')
+optdepends=('python-scipy: faster FFT calculations with scipy.fftpack library')
+replaces=('simplespectral')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/xmikos/simplespectral/archive/v$pkgver.tar.gz";)
+sha256sums=('4342741f7054c71f7c5fb9d38df49e048e0a4e20eb53cefd247e47937644cad0')
+
+build() {
+  cd $_pkgname-$pkgver
+
+  python setup.py build
+}
+
+package() {
+  cd $_pkgname-$pkgver
+
+  python setup.py install --root="$pkgdir"
+
+  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2020-06-27 Thread Filipe Laíns via arch-commits
Date: Saturday, June 27, 2020 @ 20:04:41
  Author: ffy00
Revision: 655076

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-06-27 20:04:29 UTC (rev 655075)
+++ PKGBUILD2020-06-27 20:04:41 UTC (rev 655076)
@@ -1,30 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Michal Krenek (Mikos) 
-
-_pkgname=simplesoapy
-pkgname=python-$_pkgname
-pkgver=1.5.1
-pkgrel=4
-pkgdesc='Simple pythonic wrapper for SoapySDR library'
-arch=('any')
-url='https://github.com/xmikos/simplesoapy'
-license=('MIT')
-depends=('python' 'python-numpy' 'soapysdr')
-makedepends=('python-setuptools')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/xmikos/simplesoapy/archive/v$pkgver.tar.gz";)
-sha256sums=('4006fb23997693266fbeee0b92d7461c3801c677a6dd2931a9539f34f37aa5b2')
-
-build() {
-  cd $_pkgname-$pkgver
-
-  python setup.py build
-}
-
-package() {
-  cd $_pkgname-$pkgver
-
-  python setup.py install --root="$pkgdir"
-
-  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-

Copied: python-simplesoapy/repos/community-any/PKGBUILD (from rev 655075, 
python-simplesoapy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-06-27 20:04:41 UTC (rev 655076)
@@ -0,0 +1,31 @@
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: Michal Krenek (Mikos) 
+
+_pkgname=simplesoapy
+pkgname=python-$_pkgname
+pkgver=1.5.1
+pkgrel=5
+pkgdesc='Simple pythonic wrapper for SoapySDR library'
+arch=('any')
+url='https://github.com/xmikos/simplesoapy'
+license=('MIT')
+depends=('python' 'python-numpy' 'soapysdr')
+makedepends=('python-setuptools')
+replaces=('simplesoapy')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/xmikos/simplesoapy/archive/v$pkgver.tar.gz";)
+sha256sums=('4006fb23997693266fbeee0b92d7461c3801c677a6dd2931a9539f34f37aa5b2')
+
+build() {
+  cd $_pkgname-$pkgver
+
+  python setup.py build
+}
+
+package() {
+  cd $_pkgname-$pkgver
+
+  python setup.py install --root="$pkgdir"
+
+  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+


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

2020-06-27 Thread Filipe Laíns via arch-commits
Date: Saturday, June 27, 2020 @ 20:04:29
  Author: ffy00
Revision: 655075

upgpkg: python-simplesoapy 2.5.1-5 (add replaces on simplesoapy)

Modified:
  python-simplesoapy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-06-27 19:57:22 UTC (rev 655074)
+++ PKGBUILD2020-06-27 20:04:29 UTC (rev 655075)
@@ -4,7 +4,7 @@
 _pkgname=simplesoapy
 pkgname=python-$_pkgname
 pkgver=1.5.1
-pkgrel=4
+pkgrel=5
 pkgdesc='Simple pythonic wrapper for SoapySDR library'
 arch=('any')
 url='https://github.com/xmikos/simplesoapy'
@@ -11,6 +11,7 @@
 license=('MIT')
 depends=('python' 'python-numpy' 'soapysdr')
 makedepends=('python-setuptools')
+replaces=('simplesoapy')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/xmikos/simplesoapy/archive/v$pkgver.tar.gz";)
 sha256sums=('4006fb23997693266fbeee0b92d7461c3801c677a6dd2931a9539f34f37aa5b2')
 


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

2020-06-27 Thread Felix Yan via arch-commits
Date: Saturday, June 27, 2020 @ 19:50:21
  Author: felixonmars
Revision: 655059

archrelease: copy trunk to community-staging-x86_64

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

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

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


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

2020-06-27 Thread Felix Yan via arch-commits
Date: Saturday, June 27, 2020 @ 19:50:05
  Author: felixonmars
Revision: 655058

upgpkg: xmobar 0.34-13: rebuild with warp-tls 3.3.0

Modified:
  xmobar/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-06-27 19:48:38 UTC (rev 655057)
+++ PKGBUILD2020-06-27 19:50:05 UTC (rev 655058)
@@ -5,7 +5,7 @@
 
 pkgname=xmobar
 pkgver=0.34
-pkgrel=12
+pkgrel=13
 pkgdesc='Minimalistic Text Based Status Bar'
 url='https://hackage.haskell.org/package/xmobar'
 license=('BSD')


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

2020-06-27 Thread Felix Yan via arch-commits
Date: Saturday, June 27, 2020 @ 19:48:38
  Author: felixonmars
Revision: 655057

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: taskell/repos/community-staging-x86_64/PKGBUILD (from rev 655056, 
taskell/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-06-27 19:48:38 UTC (rev 655057)
@@ -0,0 +1,44 @@
+# Maintainer: Jelle van der Waa https://hackage.haskell.org/package/$pkgname";
+depends=(ghc-libs haskell-aeson haskell-attoparsec haskell-brick 
haskell-config-ini haskell-file-embed haskell-fold-debounce haskell-http-client 
haskell-http-conduit haskell-http-types haskell-lens haskell-tz haskell-vty 
haskell-classy-prelude)
+makedepends=(ghc)
+source=(https://hackage.haskell.org/packages/archive/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz)
+sha512sums=('4c55922ad9f6c529a8c8ca73602b9f42fa3cda4945fe8edaa554909334445e089db0b7a5ba7f6804bdf618274543fd6598d19802907a0ae661571ed48366376b')
+
+prepare() {
+  cd $pkgname-$pkgver
+  sed -i 's/== *0.50/==0.54/;s/== *5.26/==5.28/;s/< *4/<5/;s/< *2/<3/;s/< 
*1/<2/;s/< *0.7/<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 \
+--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
+}
+
+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 taskell/trunk (PKGBUILD)

2020-06-27 Thread Felix Yan via arch-commits
Date: Saturday, June 27, 2020 @ 19:48:24
  Author: felixonmars
Revision: 655056

upgpkg: taskell 1.9.2.0-125: rebuild with warp-tls 3.3.0

Modified:
  taskell/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-06-27 19:47:12 UTC (rev 655055)
+++ PKGBUILD2020-06-27 19:48:24 UTC (rev 655056)
@@ -2,7 +2,7 @@
 
 pkgname=taskell
 pkgver=1.9.2.0
-pkgrel=124
+pkgrel=125
 pkgdesc='A command-line kanban board/task manager'
 license=(BSD)
 arch=(x86_64)


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

2020-06-27 Thread Felix Yan via arch-commits
Date: Saturday, June 27, 2020 @ 19:47:12
  Author: felixonmars
Revision: 655055

archrelease: copy trunk to community-staging-x86_64

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

---+
 PKGBUILD  |   82 
 stack.install |4 ++
 2 files changed, 86 insertions(+)

Copied: stack/repos/community-staging-x86_64/PKGBUILD (from rev 655054, 
stack/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-06-27 19:47:12 UTC (rev 655055)
@@ -0,0 +1,82 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=stack
+pkgver=2.3.1
+pkgrel=54
+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";
+
stack-pantry-0.5.patch::https://github.com/commercialhaskell/stack/pull/5281.patch)
+sha512sums=('SKIP'
+
'9998e6cdc4b80db3490d66c4392a0e9c44c58fa51371bc68fbade48aea6b21f1172905627ade8132d2733a7e4d942b597d5943a5bd3da302aa6c3be616ecd769')
+
+prepare() {
+  cd $pkgname
+  patch -p1 -i ../stack-pantry-0.5.patch
+  sed -i -e '/semigroups/d' $pkgname.cabal
+
+  sed -i 's/map show errs/map show (toList errs)/' src/Stack/SDist.hs
+}
+
+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 "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+
+  LD_PRELOAD=$(ls "$pkgdir"/usr/lib/libHSstack-*-ghc*.so) 
"${pkgdir}"/usr/bin/stack --bash-completion-script /usr/bin/stack > 
stack_completion_script
+  install -Dm64

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

2020-06-27 Thread Felix Yan via arch-commits
Date: Saturday, June 27, 2020 @ 19:46:55
  Author: felixonmars
Revision: 655054

upgpkg: stack 2.3.1-54: rebuild with warp-tls 3.3.0

Modified:
  stack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-06-27 19:46:11 UTC (rev 655053)
+++ PKGBUILD2020-06-27 19:46:55 UTC (rev 655054)
@@ -3,7 +3,7 @@
 
 pkgname=stack
 pkgver=2.3.1
-pkgrel=53
+pkgrel=54
 pkgdesc="The Haskell Tool Stack"
 url="https://github.com/commercialhaskell/stack";
 license=("BSD")


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

2020-06-27 Thread Jelle van der Waa via arch-commits
Date: Saturday, June 27, 2020 @ 19:45:58
  Author: jelle
Revision: 655052

Remove gcc9 from base-devel

Modified:
  gcc9/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-06-27 19:42:40 UTC (rev 655051)
+++ PKGBUILD2020-06-27 19:45:58 UTC (rev 655052)
@@ -8,7 +8,7 @@
 pkgver=9.3.0
 _majorver=${pkgver:0:1}
 _islver=0.21
-pkgrel=2
+pkgrel=3
 pkgdesc='The GNU Compiler Collection'
 arch=(x86_64)
 license=(GPL LGPL FDL custom)
@@ -150,7 +150,6 @@
 package_gcc9() {
   pkgdesc="The GNU Compiler Collection - C and C++ frontends (9.x.x)"
   depends=("${pkgbase}-libs=$pkgver-$pkgrel" 'binutils>=2.28' libmpc)
-  groups=('base-devel')
   options+=(staticlibs)
 
   cd gcc-build


[arch-commits] Commit in gcc9/repos/community-testing-x86_64 (8 files)

2020-06-27 Thread Jelle van der Waa via arch-commits
Date: Saturday, June 27, 2020 @ 19:46:11
  Author: jelle
Revision: 655053

archrelease: copy trunk to community-testing-x86_64

Added:
  gcc9/repos/community-testing-x86_64/PKGBUILD
(from rev 655052, gcc9/trunk/PKGBUILD)
  gcc9/repos/community-testing-x86_64/c89
(from rev 655052, gcc9/trunk/c89)
  gcc9/repos/community-testing-x86_64/c99
(from rev 655052, gcc9/trunk/c99)
  gcc9/repos/community-testing-x86_64/fs64270.patch
(from rev 655052, gcc9/trunk/fs64270.patch)
Deleted:
  gcc9/repos/community-testing-x86_64/PKGBUILD
  gcc9/repos/community-testing-x86_64/c89
  gcc9/repos/community-testing-x86_64/c99
  gcc9/repos/community-testing-x86_64/fs64270.patch

---+
 PKGBUILD  |  449 +++-
 c89   |   20 +-
 c99   |   20 +-
 fs64270.patch |   76 -
 4 files changed, 282 insertions(+), 283 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-06-27 19:45:58 UTC (rev 655052)
+++ PKGBUILD2020-06-27 19:46:11 UTC (rev 655053)
@@ -1,225 +0,0 @@
-# Maintainer:  Konstantin Gizdov 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Allan McRae 
-# Contributor: Daniel Kozak 
-
-pkgbase=gcc9
-pkgname=(${pkgbase} ${pkgbase}-libs ${pkgbase}-fortran)
-pkgver=9.3.0
-_majorver=${pkgver:0:1}
-_islver=0.21
-pkgrel=2
-pkgdesc='The GNU Compiler Collection'
-arch=(x86_64)
-license=(GPL LGPL FDL custom)
-url='https://gcc.gnu.org'
-makedepends=(binutils libmpc doxygen python git)
-checkdepends=(dejagnu inetutils)
-options=(!emptydirs)
-_libdir=usr/lib/gcc/$CHOST/${pkgver%%+*}
-# _commit=6957d3e4eef1f4243eb23ff62aea06139ef4415a
-# source=(git://gcc.gnu.org/git/gcc.git#commit=$_commit
-source=(https://ftp.gnu.org/gnu/gcc/gcc-$pkgver/gcc-$pkgver.tar.xz{,.sig}
-http://isl.gforge.inria.fr/isl-${_islver}.tar.xz
-c89 c99
-fs64270.patch)
-validpgpkeys=(F3691687D867B81B51CE07D9BBE43771487328A9  # 
bpiotrow...@archlinux.org
-  86CFFCA918CF3AF47147588051E8B148AC34  # 
evange...@foutrelis.com
-  13975A70E63C361C73AE69EF6EEB81F8981C74C7  # 
richard.guent...@gmail.com
-  33C235A34C46AA3FFB293709A328C3A2C3C45C06) # Jakub Jelinek 

-sha256sums=('71e197867611f6054aa1119b13a0c0abac12834765fe2d81f35ac57f84f742d1'
-'SKIP'
-'777058852a3db9500954361e294881214f6ecd4b594c00da5eee974cd6a54960'
-'de48736f6e4153f03d0a5d38ceb6c6fdb7f054e8f47ddd6af0a3dbf14f27b931'
-'2513c6d9984dd0a2058557bf00f06d8d5181734e41dcfe07be7ed86f2959622a'
-'f45160f699501568ae9e81127562395dd95b5b4a8e4d55a1615fbb00f9e4deb2')
-
-prepare() {
-  [[ ! -d gcc ]] && ln -s gcc-${pkgver/+/-} gcc
-  cd gcc
-
-  # link isl for in-tree build
-  ln -s ../isl-${_islver} isl
-
-  # Do not run fixincludes
-  sed -i 's@\./fixinc\.sh@-c true@' gcc/Makefile.in
-
-  # Arch Linux installs x86_64 libraries /lib
-  sed -i '/m64=/s/lib64/lib/' gcc/config/i386/t-linux64
-
-  # hack! - some configure tests for header files using "$CPP $CPPFLAGS"
-  sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" {libiberty,gcc}/configure
-
-  # Turn off SSP for nostdlib|nodefaultlibs|ffreestanding
-  # https://bugs.archlinux.org/task/64270
-  patch -p1 -i "$srcdir/fs64270.patch"
-
-  mkdir -p "$srcdir/gcc-build"
-}
-
-build() {
-  cd gcc-build
-
-  # using -pipe causes spurious test-suite failures
-  # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48565
-  CFLAGS=${CFLAGS/-pipe/}
-  CXXFLAGS=${CXXFLAGS/-pipe/}
-
-  "$srcdir/gcc/configure" --prefix=/usr \
-  --libdir=/usr/lib \
-  --libexecdir=/usr/lib \
-  --mandir=/usr/share/man \
-  --infodir=/usr/share/info \
-  --with-pkgversion="Arch Linux $pkgver-$pkgrel" \
-  --with-bugurl=https://bugs.archlinux.org/ \
-  --enable-languages=c,c++,fortran,lto \
-  --enable-shared \
-  --enable-threads=posix \
-  --with-system-zlib \
-  --with-isl \
-  --enable-__cxa_atexit \
-  --disable-libunwind-exceptions \
-  --enable-clocale=gnu \
-  --disable-libstdcxx-pch \
-  --disable-libssp \
-  --enable-gnu-unique-object \
-  --enable-linker-build-id \
-  --enable-lto \
-  --enable-plugin \
-  --enable-install-libiberty \
-  --with-linker-hash-style=gnu \
-  --enable-gnu-indirect-function \
-  --disable-werror \
-  --enable-checking=release \
-  --enable-default-pie \
-  --enable-default-ssp \
-  --enable-cet=auto \
-  --program-suffix=-${_majorver} \
-  --enable-version-specific-runtime-libs \
-  --disable-multilib
-  make
-
-  # make documentation
-  make -C $CHOST/libstdc++-v3/doc doc-man-doxygen
-}
-
-check() {
-  cd gcc-build
-
-  # disable libphobos test to avoid segfaults and other unfunny ways to waste 
my time  
-  sed -i '/maybe-check-target-libphobos \\/d' Makefile 
-
-  # do not abort on error as some are "expected"
-  make -k check || true
-  "$srcdir/gcc/contrib/te

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

2020-06-27 Thread Felix Yan via arch-commits
Date: Saturday, June 27, 2020 @ 19:42:40
  Author: felixonmars
Revision: 655051

archrelease: copy trunk to community-staging-x86_64

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

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

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


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

2020-06-27 Thread Felix Yan via arch-commits
Date: Saturday, June 27, 2020 @ 19:42:26
  Author: felixonmars
Revision: 655050

upgpkg: hoogle 5.0.17.15-80: rebuild with warp-tls 3.3.0

Modified:
  hoogle/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-06-27 19:41:07 UTC (rev 655049)
+++ PKGBUILD2020-06-27 19:42:26 UTC (rev 655050)
@@ -3,7 +3,7 @@
 
 pkgname=hoogle
 pkgver=5.0.17.15
-pkgrel=79
+pkgrel=80
 pkgdesc="Haskell API Search"
 url="https://www.haskell.org/hoogle/";
 license=("BSD")


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

2020-06-27 Thread Felix Yan via arch-commits
Date: Saturday, June 27, 2020 @ 19:41:07
  Author: felixonmars
Revision: 655049

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 655048, hledger-web/trunk/PKGBUILD)

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

Copied: hledger-web/repos/community-staging-x86_64/PKGBUILD (from rev 655048, 
hledger-web/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-06-27 19:41:07 UTC (rev 655049)
@@ -0,0 +1,54 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hledger-web
+pkgver=1.18.1
+pkgrel=9
+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=('19eab0c6c6cb59d9e3fbe6b65ccd8d38d6f8eca3aa9fdcc2ed3b6bf3836a48a2092c812ba1da43a87cb06e2debe490bd759bf2adfa00d522b22fd77783798cbd')
+
+prepare() {
+cd $pkgname-$pkgver
+sed -i -e '/semigroups/d' $pkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-dev -f-library-only -fthreaded
+runhaskell Setup build $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 hledger-web/trunk (PKGBUILD)

2020-06-27 Thread Felix Yan via arch-commits
Date: Saturday, June 27, 2020 @ 19:40:53
  Author: felixonmars
Revision: 655048

upgpkg: hledger-web 1.18.1-9: rebuild with warp-tls 3.3.0

Modified:
  hledger-web/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-06-27 19:39:33 UTC (rev 655047)
+++ PKGBUILD2020-06-27 19:40:53 UTC (rev 655048)
@@ -3,7 +3,7 @@
 
 pkgname=hledger-web
 pkgver=1.18.1
-pkgrel=8
+pkgrel=9
 pkgdesc="Web-based user interface for the hledger accounting system"
 url="http://hledger.org";
 license=("GPL")


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

2020-06-27 Thread Felix Yan via arch-commits
Date: Saturday, June 27, 2020 @ 19:39:33
  Author: felixonmars
Revision: 655047

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 655046, haskell-yesod-auth/trunk/PKGBUILD)

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

Copied: haskell-yesod-auth/repos/community-staging-x86_64/PKGBUILD (from rev 
655046, haskell-yesod-auth/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-06-27 19:39:33 UTC (rev 655047)
@@ -0,0 +1,47 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-auth
+pkgname=haskell-yesod-auth
+pkgver=1.6.10
+pkgrel=68
+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=('0361d49d625ca01db2fbe063c7a4b314ab29f363295b839210fddb15118929ff619fa0256c4ffe45f06df388166597c1c64a07be8de9019b630e71632d301eb7')
+
+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-auth/trunk (PKGBUILD)

2020-06-27 Thread Felix Yan via arch-commits
Date: Saturday, June 27, 2020 @ 19:39:20
  Author: felixonmars
Revision: 655046

upgpkg: haskell-yesod-auth 1.6.10-68: rebuild with warp-tls 3.3.0

Modified:
  haskell-yesod-auth/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-06-27 19:38:13 UTC (rev 655045)
+++ PKGBUILD2020-06-27 19:39:20 UTC (rev 655046)
@@ -4,7 +4,7 @@
 _hkgname=yesod-auth
 pkgname=haskell-yesod-auth
 pkgver=1.6.10
-pkgrel=67
+pkgrel=68
 pkgdesc="Authentication for Yesod."
 url="http://www.yesodweb.com/";
 license=("MIT")


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

2020-06-27 Thread Felix Yan via arch-commits
Date: Saturday, June 27, 2020 @ 19:38:13
  Author: felixonmars
Revision: 655045

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 655044, haskell-pantry/trunk/PKGBUILD)

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

Copied: haskell-pantry/repos/community-staging-x86_64/PKGBUILD (from rev 
655044, haskell-pantry/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-06-27 19:38:13 UTC (rev 655045)
@@ -0,0 +1,58 @@
+# Maintainer: Felix Yan 
+
+_hkgname=pantry
+pkgname=haskell-pantry
+pkgver=0.5.1.0
+pkgrel=6
+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=('2f04d0f59816f56b3167b0e8d0346bf3d83422a1096979a392f2dd7df27a9a7ae160ab4f456ea68fd4f09fbf3ce029c7ab3603bcebca084e815b03e0fd6910fd')
+
+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 haskell-pantry/trunk (PKGBUILD)

2020-06-27 Thread Felix Yan via arch-commits
Date: Saturday, June 27, 2020 @ 19:38:00
  Author: felixonmars
Revision: 655044

upgpkg: haskell-pantry 0.5.1.0-6: rebuild with warp-tls 3.3.0

Modified:
  haskell-pantry/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-06-27 19:34:17 UTC (rev 655043)
+++ PKGBUILD2020-06-27 19:38:00 UTC (rev 655044)
@@ -3,7 +3,7 @@
 _hkgname=pantry
 pkgname=haskell-pantry
 pkgver=0.5.1.0
-pkgrel=5
+pkgrel=6
 pkgdesc="Content addressable Haskell package management"
 url="https://github.com/commercialhaskell/pantry";
 license=('BSD')


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

2020-06-27 Thread Felix Yan via arch-commits
Date: Saturday, June 27, 2020 @ 19:34:17
  Author: felixonmars
Revision: 655043

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-http-download/repos/community-staging-x86_64/PKGBUILD (from rev 
655042, haskell-http-download/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-06-27 19:34:17 UTC (rev 655043)
@@ -0,0 +1,50 @@
+# Maintainer: Felix Yan 
+
+_hkgname=http-download
+pkgname=haskell-http-download
+pkgver=0.2.0.0
+pkgrel=84
+pkgdesc="Verified downloads with retries"
+url="https://github.com/commercialhaskell/http-download";
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-base64-bytestring' 'haskell-conduit' 
'haskell-conduit-extra'
+ 'haskell-cryptonite' 'haskell-cryptonite-conduit'
+ 'haskell-http-client' 'haskell-http-conduit' 'haskell-http-types' 
'haskell-memory'
+ 'haskell-path' 'haskell-path-io' 'haskell-retry' 'haskell-rio' 
'haskell-rio-prettyprint')
+makedepends=('ghc' 'haskell-hspec' 'haskell-hspec-discover')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('b31caa48c1ea2a01f1301ca63b2e0c135cd0d3d392b92518c7d70d89fd83da7fd95cffa3cb374900a45fb2da8d17f748de0de72fb4beb8ad11e203676f9864ae')
+
+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 haskell-http-download/trunk (PKGBUILD)

2020-06-27 Thread Felix Yan via arch-commits
Date: Saturday, June 27, 2020 @ 19:34:03
  Author: felixonmars
Revision: 655042

upgpkg: haskell-http-download 0.2.0.0-84: rebuild with warp-tls 3.3.0

Modified:
  haskell-http-download/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-06-27 19:33:08 UTC (rev 655041)
+++ PKGBUILD2020-06-27 19:34:03 UTC (rev 655042)
@@ -3,7 +3,7 @@
 _hkgname=http-download
 pkgname=haskell-http-download
 pkgver=0.2.0.0
-pkgrel=83
+pkgrel=84
 pkgdesc="Verified downloads with retries"
 url="https://github.com/commercialhaskell/http-download";
 license=('MIT')


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

2020-06-27 Thread Felix Yan via arch-commits
Date: Saturday, June 27, 2020 @ 19:33:08
  Author: felixonmars
Revision: 655041

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-hakyll/repos/community-staging-x86_64/PKGBUILD (from rev 
655040, haskell-hakyll/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-06-27 19:33:08 UTC (rev 655041)
@@ -0,0 +1,56 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hakyll
+pkgname=haskell-hakyll
+pkgver=4.13.3.0
+pkgrel=88
+pkgdesc="A static website compiler library"
+url="https://jaspervdj.be/hakyll";
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-blaze-html' 'haskell-blaze-markup' 
'haskell-cryptonite'
+ 'haskell-data-default' 'haskell-file-embed' 'haskell-fsnotify' 
'haskell-http-conduit'
+ 'haskell-http-types' 'haskell-lrucache' 'haskell-memory' 
'haskell-network-uri'
+ 'haskell-optparse-applicative' 'pandoc' 'pandoc-citeproc' 
'haskell-random'
+ 'haskell-regex-tdfa' 'haskell-resourcet' 'haskell-scientific' 
'haskell-tagsoup'
+ 'haskell-time-locale-compat' 'haskell-unordered-containers' 
'haskell-vector'
+ 'haskell-wai' 'haskell-wai-app-static' 'haskell-warp' 'haskell-yaml')
+makedepends=('ghc' 'haskell-quickcheck' 'haskell-tasty' 'haskell-tasty-hunit'
+ 'haskell-tasty-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('104b0ab5092d2f0b7017ff8beae2bbe2fdcbfe37fe9d2cf3165227856e2ab3e13d25f0b4827aab450b5ded447763044580a63a41762e3523f29eb1e647666918')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i 's/< *2.1/<3/;s/< *1.3/<2/;s/< *0.0.12/<1/;s/< *0.27/<1/' 
$_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --datasubdir="$pkgname" 
--enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fcheckexternal -fwatchserver -fpreviewserver -fusepandoc
+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
+LC_CTYPE=en_US.UTF-8 runhaskell Setup test || warning 
"https://github.com/jaspervdj/hakyll/issues/682";
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-06-27 Thread Felix Yan via arch-commits
Date: Saturday, June 27, 2020 @ 19:32:55
  Author: felixonmars
Revision: 655040

upgpkg: haskell-hakyll 4.13.3.0-88: rebuild with warp-tls 3.3.0

Modified:
  haskell-hakyll/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-06-27 19:31:27 UTC (rev 655039)
+++ PKGBUILD2020-06-27 19:32:55 UTC (rev 655040)
@@ -4,7 +4,7 @@
 _hkgname=hakyll
 pkgname=haskell-hakyll
 pkgver=4.13.3.0
-pkgrel=87
+pkgrel=88
 pkgdesc="A static website compiler library"
 url="https://jaspervdj.be/hakyll";
 license=("BSD")


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

2020-06-27 Thread Felix Yan via arch-commits
Date: Saturday, June 27, 2020 @ 19:31:27
  Author: felixonmars
Revision: 655039

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-casa-client/repos/community-staging-x86_64/
  haskell-casa-client/repos/community-staging-x86_64/PKGBUILD
(from rev 655038, haskell-casa-client/trunk/PKGBUILD)

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

Copied: haskell-casa-client/repos/community-staging-x86_64/PKGBUILD (from rev 
655038, haskell-casa-client/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-06-27 19:31:27 UTC (rev 655039)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+
+_hkgname=casa-client
+pkgname=haskell-casa-client
+pkgver=0.0.1
+pkgrel=62
+pkgdesc="Content Addressable Storage Archive client"
+url="https://github.com/fpco/casa";
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-attoparsec' 
'haskell-base16-bytestring'
+ 'haskell-casa-types' 'haskell-conduit' 'haskell-conduit-extra' 
'haskell-cryptonite'
+ 'haskell-http-conduit' 'haskell-http-types' 'haskell-memory'
+ 'haskell-network-uri' 'haskell-resourcet' 'haskell-th-lift' 
'haskell-unliftio-core'
+ 'haskell-unordered-containers')
+makedepends=('ghc')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('2df03a0b1c2e01f2d24728e96fe446a25b630f5495c4e9995bcbde1ee9da530df1c6b40dde954cfaf6de2af6036fa6cfda7d9957b22106316557cc57d64114fa')
+
+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 haskell-casa-client/trunk (PKGBUILD)

2020-06-27 Thread Felix Yan via arch-commits
Date: Saturday, June 27, 2020 @ 19:31:11
  Author: felixonmars
Revision: 655038

upgpkg: haskell-casa-client 0.0.1-62: rebuild with warp-tls 3.3.0

Modified:
  haskell-casa-client/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-06-27 19:30:23 UTC (rev 655037)
+++ PKGBUILD2020-06-27 19:31:11 UTC (rev 655038)
@@ -3,7 +3,7 @@
 _hkgname=casa-client
 pkgname=haskell-casa-client
 pkgver=0.0.1
-pkgrel=61
+pkgrel=62
 pkgdesc="Content Addressable Storage Archive client"
 url="https://github.com/fpco/casa";
 license=('MIT')


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

2020-06-27 Thread Felix Yan via arch-commits
Date: Saturday, June 27, 2020 @ 19:30:23
  Author: felixonmars
Revision: 655037

archrelease: copy trunk to community-staging-x86_64

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

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

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


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

2020-06-27 Thread Felix Yan via arch-commits
Date: Saturday, June 27, 2020 @ 19:30:10
  Author: felixonmars
Revision: 655036

upgpkg: git-annex 8.20200617-15: rebuild with warp-tls 3.3.0

Modified:
  git-annex/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-06-27 19:27:02 UTC (rev 655035)
+++ PKGBUILD2020-06-27 19:30:10 UTC (rev 655036)
@@ -3,7 +3,7 @@
 
 pkgname=git-annex
 pkgver=8.20200617
-pkgrel=14
+pkgrel=15
 pkgdesc="Manage files with git, without checking their contents into git"
 url="https://git-annex.branchable.com/";
 license=("AGPL3")


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

2020-06-27 Thread Felix Yan via arch-commits
Date: Saturday, June 27, 2020 @ 19:26:47
  Author: felixonmars
Revision: 655034

upgpkg: lib32-libjpeg-turbo 2.0.5-1

Modified:
  lib32-libjpeg-turbo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-06-27 19:26:08 UTC (rev 655033)
+++ PKGBUILD2020-06-27 19:26:47 UTC (rev 655034)
@@ -3,7 +3,7 @@
 
 _pkgbasename=libjpeg-turbo
 pkgname=lib32-$_pkgbasename
-pkgver=2.0.4
+pkgver=2.0.5
 pkgrel=1
 pkgdesc="libjpeg derivative with accelerated baseline JPEG compression and 
decompression (32-bit)"
 arch=('x86_64')
@@ -16,7 +16,7 @@
 replaces=('lib32-libjpeg' 'lib32-turbojpeg')
 validpgpkeys=('7D6293CC6378786E1B5C496885C7044E033FDE16')
 
source=(https://sourceforge.net/projects/$_pkgbasename/files/$pkgver/$_pkgbasename-$pkgver.tar.gz{,.sig})
-sha512sums=('708c2e7418d9ed5abca313e2ff5a08f8176d79cad2127573cda6036583c201973db4cfb0eafc0fc8f57ecc7b000d2b4af95980de54de5a0aed45969e993a5bf9'
+sha512sums=('5bf9ecf069b43783ff24365febf36dda69ccb92d6397efec6069b2b4f359bfd7b87934a6ce4311873220fccc73acabdacef5ce0604b79209eb1912e8ba478555'
 'SKIP')
 
 build() {


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

2020-06-27 Thread Felix Yan via arch-commits
Date: Saturday, June 27, 2020 @ 19:27:02
  Author: felixonmars
Revision: 655035

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-libjpeg-turbo/repos/multilib-x86_64/PKGBUILD
(from rev 655034, lib32-libjpeg-turbo/trunk/PKGBUILD)
Deleted:
  lib32-libjpeg-turbo/repos/multilib-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-06-27 19:26:47 UTC (rev 655034)
+++ PKGBUILD2020-06-27 19:27:02 UTC (rev 655035)
@@ -1,53 +0,0 @@
-# Maintainer: Allan McRae 
-# Contributor: Simone Sclavi 'Ito' 
-
-_pkgbasename=libjpeg-turbo
-pkgname=lib32-$_pkgbasename
-pkgver=2.0.4
-pkgrel=1
-pkgdesc="libjpeg derivative with accelerated baseline JPEG compression and 
decompression (32-bit)"
-arch=('x86_64')
-url="https://libjpeg-turbo.org/";
-license=('custom')
-depends=('lib32-glibc' $_pkgbasename)
-makedepends=('nasm' 'cmake')
-provides=('lib32-libjpeg=8.2.2' 'lib32-turbojpeg')
-conflicts=('lib32-libjpeg' 'lib32-turbojpeg')
-replaces=('lib32-libjpeg' 'lib32-turbojpeg')
-validpgpkeys=('7D6293CC6378786E1B5C496885C7044E033FDE16')
-source=(https://sourceforge.net/projects/$_pkgbasename/files/$pkgver/$_pkgbasename-$pkgver.tar.gz{,.sig})
-sha512sums=('708c2e7418d9ed5abca313e2ff5a08f8176d79cad2127573cda6036583c201973db4cfb0eafc0fc8f57ecc7b000d2b4af95980de54de5a0aed45969e993a5bf9'
-'SKIP')
-
-build() {
-  cd "$_pkgbasename-$pkgver"
-
-  export CC="gcc -m32"
-  export CXX="g++ -m32"
-  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
-
-  cmake -DWITH_JPEG8=1 \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=/usr/lib32 \
-.
-
-  make
-}
-
-check() {
-  cd "$_pkgbasename-$pkgver"
-  make test
-}
-
-package() {
-  cd "$_pkgbasename-$pkgver"
-
-  make DESTDIR="$pkgdir/" docdir=/usr/share/doc/libjpeg-turbo \
-exampledir=/usr/share/doc/libjpeg-turbo install
-
-  rm -rf "${pkgdir}"/usr/{include,share,bin,sbin}
-
-  mkdir -p "$pkgdir/usr/share/licenses"
-  ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname"
-  install -Dm 644 ChangeLog.md -t"${pkgdir}/usr/share/doc/${pkgname}"
-}

Copied: lib32-libjpeg-turbo/repos/multilib-x86_64/PKGBUILD (from rev 655034, 
lib32-libjpeg-turbo/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-06-27 19:27:02 UTC (rev 655035)
@@ -0,0 +1,53 @@
+# Maintainer: Allan McRae 
+# Contributor: Simone Sclavi 'Ito' 
+
+_pkgbasename=libjpeg-turbo
+pkgname=lib32-$_pkgbasename
+pkgver=2.0.5
+pkgrel=1
+pkgdesc="libjpeg derivative with accelerated baseline JPEG compression and 
decompression (32-bit)"
+arch=('x86_64')
+url="https://libjpeg-turbo.org/";
+license=('custom')
+depends=('lib32-glibc' $_pkgbasename)
+makedepends=('nasm' 'cmake')
+provides=('lib32-libjpeg=8.2.2' 'lib32-turbojpeg')
+conflicts=('lib32-libjpeg' 'lib32-turbojpeg')
+replaces=('lib32-libjpeg' 'lib32-turbojpeg')
+validpgpkeys=('7D6293CC6378786E1B5C496885C7044E033FDE16')
+source=(https://sourceforge.net/projects/$_pkgbasename/files/$pkgver/$_pkgbasename-$pkgver.tar.gz{,.sig})
+sha512sums=('5bf9ecf069b43783ff24365febf36dda69ccb92d6397efec6069b2b4f359bfd7b87934a6ce4311873220fccc73acabdacef5ce0604b79209eb1912e8ba478555'
+'SKIP')
+
+build() {
+  cd "$_pkgbasename-$pkgver"
+
+  export CC="gcc -m32"
+  export CXX="g++ -m32"
+  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
+
+  cmake -DWITH_JPEG8=1 \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=/usr/lib32 \
+.
+
+  make
+}
+
+check() {
+  cd "$_pkgbasename-$pkgver"
+  make test
+}
+
+package() {
+  cd "$_pkgbasename-$pkgver"
+
+  make DESTDIR="$pkgdir/" docdir=/usr/share/doc/libjpeg-turbo \
+exampledir=/usr/share/doc/libjpeg-turbo install
+
+  rm -rf "${pkgdir}"/usr/{include,share,bin,sbin}
+
+  mkdir -p "$pkgdir/usr/share/licenses"
+  ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname"
+  install -Dm 644 ChangeLog.md -t"${pkgdir}/usr/share/doc/${pkgname}"
+}


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

2020-06-27 Thread Felix Yan via arch-commits
Date: Saturday, June 27, 2020 @ 19:26:08
  Author: felixonmars
Revision: 655033

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-aws/repos/community-staging-x86_64/PKGBUILD (from rev 655032, 
haskell-aws/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-06-27 19:26:08 UTC (rev 655033)
@@ -0,0 +1,58 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=aws
+pkgname=haskell-aws
+pkgver=0.22
+pkgrel=74
+pkgdesc="Amazon Web Services (AWS) for Haskell"
+url="https://github.com/aristidb/aws";
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-attoparsec' 
'haskell-base16-bytestring'
+ 'haskell-base64-bytestring' 'haskell-blaze-builder' 'haskell-byteable'
+ 'haskell-case-insensitive' 'haskell-cereal' 'haskell-conduit' 
'haskell-conduit-extra'
+ 'haskell-cryptonite' 'haskell-data-default' 'haskell-http-conduit'
+ 'haskell-http-client-tls' 'haskell-http-types' 'haskell-lifted-base' 
'haskell-memory'
+ 'haskell-monad-control' 'haskell-network' 'haskell-network-bsd' 
'haskell-old-locale'
+ 'haskell-resourcet' 'haskell-safe' 'haskell-scientific' 
'haskell-tagged'
+ 'haskell-unordered-containers' 'haskell-utf8-string' 'haskell-vector' 
'haskell-xml-conduit')
+makedepends=('ghc' 'haskell-quickcheck' 'haskell-errors' 'haskell-http-client'
+ 'haskell-http-client-tls' 'haskell-quickcheck-instances' 
'haskell-tasty'
+ 'haskell-tasty-hunit' 'haskell-tasty-quickcheck' 
'haskell-transformers-base')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('e7ff376c47a7ca7a65c8f10f19e591d4a4b4d2cfa333b4727f88f0b170d7acb0aff402617f2d617c522fe5d16ce92b249a23f1fb0a8bfe5bbefaef2931b786bd')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i 's/== *1.0/== 1.1/;s/< *0.7/<1/' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-examples
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test || warning "Requires AWS credentials to 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-aws/trunk (PKGBUILD)

2020-06-27 Thread Felix Yan via arch-commits
Date: Saturday, June 27, 2020 @ 19:25:54
  Author: felixonmars
Revision: 655032

upgpkg: haskell-aws 0.22-74: rebuild with warp-tls 3.3.0

Modified:
  haskell-aws/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-06-27 19:23:47 UTC (rev 655031)
+++ PKGBUILD2020-06-27 19:25:54 UTC (rev 655032)
@@ -4,7 +4,7 @@
 _hkgname=aws
 pkgname=haskell-aws
 pkgver=0.22
-pkgrel=73
+pkgrel=74
 pkgdesc="Amazon Web Services (AWS) for Haskell"
 url="https://github.com/aristidb/aws";
 license=("BSD")


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

2020-06-27 Thread Felix Yan via arch-commits
Date: Saturday, June 27, 2020 @ 19:23:14
  Author: felixonmars
Revision: 655029

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-06-27 19:22:57 UTC (rev 655028)
+++ PKGBUILD2020-06-27 19:23:14 UTC (rev 655029)
@@ -1,34 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=rime-cantonese
-pkgver=0.0.0.20200627
-_commit=20672dd7ca8320081e55718f2503504dc8bbea13
-pkgrel=1
-pkgdesc="Cantonese input for rime"
-arch=('x86_64')
-url="https://github.com/rime/rime-cantonese";
-license=('LGPL')
-# dependency for reverse lookup
-depends=('rime-cangjie' 'rime-emoji' '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=('86d840e2b06b1dfda18505e644be565a8f1b7d5a9faf9cb1a1b9af68026f3c6c8c886413150d0cc51686689cad6c7791b0108cd4cf17f66895ec36b0ddf3210f')
-
-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/
-}

Copied: rime-cantonese/repos/community-x86_64/PKGBUILD (from rev 655028, 
rime-cantonese/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-06-27 19:23:14 UTC (rev 655029)
@@ -0,0 +1,34 @@
+# Maintainer: Felix Yan 
+
+pkgname=rime-cantonese
+pkgver=0.0.0.20200627.1
+_commit=98f840aecf8ae8dce688e7329601374599c094d8
+pkgrel=1
+pkgdesc="Cantonese input for rime"
+arch=('x86_64')
+url="https://github.com/rime/rime-cantonese";
+license=('LGPL')
+# dependency for reverse lookup
+depends=('rime-cangjie' 'rime-emoji' '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=('f415e288ba6446eeaea038ff925e5ed546e1ce2c58aeb197e09671b0f3c4d5c70895e4c4d16328c84eaef34b3e275e123e3c6368f6a29b765fe428b44c5ee233')
+
+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/
+}


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

2020-06-27 Thread Felix Yan via arch-commits
Date: Saturday, June 27, 2020 @ 19:23:32
  Author: felixonmars
Revision: 655030

upgpkg: haskell-authenticate 1.3.5-142: rebuild with warp-tls 3.3.0

Modified:
  haskell-authenticate/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-06-27 19:23:14 UTC (rev 655029)
+++ PKGBUILD2020-06-27 19:23:32 UTC (rev 655030)
@@ -4,7 +4,7 @@
 _hkgname=authenticate
 pkgname=haskell-authenticate
 pkgver=1.3.5
-pkgrel=141
+pkgrel=142
 pkgdesc="Authentication methods for Haskell web applications."
 url="https://github.com/yesodweb/authenticate";
 license=("MIT")


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

2020-06-27 Thread Felix Yan via arch-commits
Date: Saturday, June 27, 2020 @ 19:23:47
  Author: felixonmars
Revision: 655031

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-authenticate/repos/community-staging-x86_64/PKGBUILD (from rev 
655030, haskell-authenticate/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-06-27 19:23:47 UTC (rev 655031)
@@ -0,0 +1,42 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=authenticate
+pkgname=haskell-authenticate
+pkgver=1.3.5
+pkgrel=142
+pkgdesc="Authentication methods for Haskell web applications."
+url="https://github.com/yesodweb/authenticate";
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-attoparsec' 
'haskell-blaze-builder'
+ 'haskell-case-insensitive' 'haskell-conduit' 'haskell-html-conduit' 
'haskell-http-conduit'
+ 'haskell-http-types' 'haskell-network-uri' 'haskell-resourcet'
+ 'haskell-unordered-containers' 'haskell-xml-conduit')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('12962fcf71c732a7e709e7069d46691917b9ee9f2af6aab5556b76a4556b6ffc39e52082a4fcdbe501c2cbc7cc496b1164b6a9f2c3883597fcdd0a8298d4ac1a')
+
+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-http-conduit/repos (2 files)

2020-06-27 Thread Felix Yan via arch-commits
Date: Saturday, June 27, 2020 @ 19:22:48
  Author: felixonmars
Revision: 655027

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-http-conduit/repos/community-staging-x86_64/PKGBUILD (from rev 
655026, haskell-http-conduit/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-06-27 19:22:48 UTC (rev 655027)
@@ -0,0 +1,57 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http-conduit
+pkgname=haskell-http-conduit
+pkgver=2.3.7.3
+pkgrel=152
+pkgdesc="HTTP client package with conduit interface and HTTPS support"
+url="https://www.yesodweb.com/book/http-conduit";
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-attoparsec' 'haskell-conduit' 
'haskell-conduit-extra'
+ 'haskell-http-client' 'haskell-http-client-tls' 'haskell-http-types' 
'haskell-resourcet'
+ 'haskell-unliftio-core')
+makedepends=('ghc' 'haskell-blaze-builder' 'haskell-case-insensitive' 
'haskell-connection'
+ 'haskell-cookie' 'haskell-data-default-class' 'haskell-hunit' 
'haskell-hspec'
+ 'haskell-lifted-base' 'haskell-network' 
'haskell-streaming-commons' 'haskell-temporary'
+ 'haskell-unliftio' 'haskell-utf8-string' 'haskell-wai' 
'haskell-wai-conduit'
+ 'haskell-warp' 'haskell-warp-tls')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";
+
$pkgname-http-client-0.7.patch::https://github.com/snoyberg/http-client/commit/a09b8ac914f57f9782cc4230cb0528fc63ac54ab.patch)
+sha512sums=('0b3733ce031299ee3b93ca44d45a913e384dbfcd43efe5c65076efb5ff8266058ecb07e90f699ebb54d2d37f4a299be79717c3988e72cce631d417ba21ed4d08'
+
'292d33d8dd7591500eba2c1e2ee4a5733a10977c7d715fe3b3c1875fb1a2d482a604cbc4c70a35da1a82bd4acc57c4f33cf51c0ea1038f3cb1c75ecc7989696f')
+
+prepare() {
+cd $_hkgname-$pkgver
+patch -p2 -i ../$pkgname-http-client-0.7.patch
+sed -i 's/< *0.7/<1/' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build $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 || warning "Tests failed"
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-06-27 Thread Felix Yan via arch-commits
Date: Saturday, June 27, 2020 @ 19:22:57
  Author: felixonmars
Revision: 655028

upgpkg: rime-cantonese 0.0.0.20200627.1-1

Modified:
  rime-cantonese/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-06-27 19:22:48 UTC (rev 655027)
+++ PKGBUILD2020-06-27 19:22:57 UTC (rev 655028)
@@ -1,8 +1,8 @@
 # Maintainer: Felix Yan 
 
 pkgname=rime-cantonese
-pkgver=0.0.0.20200627
-_commit=20672dd7ca8320081e55718f2503504dc8bbea13
+pkgver=0.0.0.20200627.1
+_commit=98f840aecf8ae8dce688e7329601374599c094d8
 pkgrel=1
 pkgdesc="Cantonese input for rime"
 arch=('x86_64')
@@ -12,7 +12,7 @@
 depends=('rime-cangjie' 'rime-emoji' '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=('86d840e2b06b1dfda18505e644be565a8f1b7d5a9faf9cb1a1b9af68026f3c6c8c886413150d0cc51686689cad6c7791b0108cd4cf17f66895ec36b0ddf3210f')
+sha512sums=('f415e288ba6446eeaea038ff925e5ed546e1ce2c58aeb197e09671b0f3c4d5c70895e4c4d16328c84eaef34b3e275e123e3c6368f6a29b765fe428b44c5ee233')
 
 prepare() {
   cd $pkgname-$_commit


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

2020-06-27 Thread Felix Yan via arch-commits
Date: Saturday, June 27, 2020 @ 19:22:35
  Author: felixonmars
Revision: 655026

upgpkg: haskell-http-conduit 2.3.7.3-152: rebuild with warp-tls 3.3.0

Modified:
  haskell-http-conduit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-06-27 19:21:24 UTC (rev 655025)
+++ PKGBUILD2020-06-27 19:22:35 UTC (rev 655026)
@@ -4,7 +4,7 @@
 _hkgname=http-conduit
 pkgname=haskell-http-conduit
 pkgver=2.3.7.3
-pkgrel=151
+pkgrel=152
 pkgdesc="HTTP client package with conduit interface and HTTPS support"
 url="https://www.yesodweb.com/book/http-conduit";
 license=("BSD")


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

2020-06-27 Thread Felix Yan via arch-commits
Date: Saturday, June 27, 2020 @ 19:21:24
  Author: felixonmars
Revision: 655025

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-warp-tls/repos/community-staging-x86_64/PKGBUILD (from rev 
655024, haskell-warp-tls/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-06-27 19:21:24 UTC (rev 655025)
@@ -0,0 +1,40 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=warp-tls
+pkgname=haskell-warp-tls
+pkgver=3.3.0
+pkgrel=1
+pkgdesc="HTTP over TLS support for Warp via the TLS package"
+url="https://github.com/yesodweb/wai";
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-cryptonite" "haskell-data-default-class" 
"haskell-network"
+ "haskell-streaming-commons" "haskell-tls" 
"haskell-tls-session-manager" "haskell-wai"
+ "haskell-warp")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('238f698b3f18b9cc681bbb7fb4e6e086dacc32f74c31452bbb35381abf6cc4866d9feca44394733773bef4cb16e2f36a829c7c931a9ef3f2d7a4b4b857e8f242')
+
+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-warp-tls/trunk (PKGBUILD)

2020-06-27 Thread Felix Yan via arch-commits
Date: Saturday, June 27, 2020 @ 19:21:03
  Author: felixonmars
Revision: 655024

upgpkg: haskell-warp-tls 3.3.0-1: rebuild with warp-tls 3.3.0

Modified:
  haskell-warp-tls/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-06-27 19:16:45 UTC (rev 655023)
+++ PKGBUILD2020-06-27 19:21:03 UTC (rev 655024)
@@ -3,8 +3,8 @@
 
 _hkgname=warp-tls
 pkgname=haskell-warp-tls
-pkgver=3.2.12
-pkgrel=21
+pkgver=3.3.0
+pkgrel=1
 pkgdesc="HTTP over TLS support for Warp via the TLS package"
 url="https://github.com/yesodweb/wai";
 license=("MIT")
@@ -14,7 +14,7 @@
  "haskell-warp")
 makedepends=('ghc')
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
-sha512sums=('c1fa08c71088e914bcb7e978fa0fedcff9900351cf8f2b59bbba8b35e56b605ba3bd36d6162459397f38a0cdcedd5e48472f3d7d1b1357d0b0c3c2fa75ba')
+sha512sums=('238f698b3f18b9cc681bbb7fb4e6e086dacc32f74c31452bbb35381abf6cc4866d9feca44394733773bef4cb16e2f36a829c7c931a9ef3f2d7a4b4b857e8f242')
 
 build() {
 cd $_hkgname-$pkgver


[arch-commits] Commit in imagemagick/repos/extra-x86_64 (6 files)

2020-06-27 Thread Antonio Rojas via arch-commits
Date: Saturday, June 27, 2020 @ 18:59:28
  Author: arojas
Revision: 390527

archrelease: copy trunk to extra-x86_64

Added:
  imagemagick/repos/extra-x86_64/PKGBUILD
(from rev 390526, imagemagick/trunk/PKGBUILD)
  imagemagick/repos/extra-x86_64/arch-fonts.diff
(from rev 390526, imagemagick/trunk/arch-fonts.diff)
  imagemagick/repos/extra-x86_64/imagemagick-inkscape-1.0.patch
(from rev 390526, imagemagick/trunk/imagemagick-inkscape-1.0.patch)
Deleted:
  imagemagick/repos/extra-x86_64/PKGBUILD
  imagemagick/repos/extra-x86_64/arch-fonts.diff
  imagemagick/repos/extra-x86_64/imagemagick-inkscape-1.0.patch

+
 PKGBUILD   |  248 +++
 arch-fonts.diff|  214 -
 imagemagick-inkscape-1.0.patch |   26 ++--
 3 files changed, 244 insertions(+), 244 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-06-27 18:59:15 UTC (rev 390526)
+++ PKGBUILD2020-06-27 18:59:28 UTC (rev 390527)
@@ -1,124 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: Eric Bélanger 
-
-pkgbase=imagemagick
-pkgname=(imagemagick imagemagick-doc)
-pkgver=7.0.10.21
-pkgrel=1
-pkgdesc="An image viewing/manipulation program"
-url="https://www.imagemagick.org/";
-arch=(x86_64)
-license=(custom)
-makedepends=(ghostscript openexr libwmf librsvg libxml2 openjpeg2 libraw 
opencl-headers libwebp
- chrpath ocl-icd glu ghostpcl ghostxps libheif jbigkit lcms2 
libxext liblqr libraqm libpng djvulibre)
-checkdepends=(gsfonts ttf-dejavu)
-_relname=ImageMagick-${pkgver%%.*}
-_tarname=ImageMagick-${pkgver%.*}-${pkgver##*.}
-source=(https://imagemagick.org/download/$_tarname.tar.xz{,.asc}
-arch-fonts.diff
-imagemagick-inkscape-1.0.patch)
-sha256sums=('f904c18990fcad0b04540246ed5f2ea0e04de3892421c18d7e9b2342ad5dad9e'
-'SKIP'
-'a85b744c61b1b563743ecb7c7adad999d7ed9a8af816650e3ab9321b2b102e73'
-'dd856b0d7b5b98535d2bc61dfa995f4162677486c1eac14b384668a28a60af30')
-validpgpkeys=(D8272EF51DA223E4D05B466989AB63D48277377A)  # Lexie Parsimoniae
-
-shopt -s extglob
-
-prepare() {
-  mkdir -p docpkg/usr/share
-
-  cd $_tarname
-
-  # Fix up typemaps to match our packages, where possible
-  patch -p1 -i ../arch-fonts.diff
-
-  # Use correct parameter for inkscape 1.0
-  patch -p1 -i ../imagemagick-inkscape-1.0.patch
-}
-
-build() {
-  cd $_tarname
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---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-djvu \
---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-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_imagemagick() {
-  depends=(libltdl lcms2 fontconfig libxext liblqr libraqm libpng libxml2)
-  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'
-  'djvulibre: DJVU support'
-  'pango: Text rendering'
-  'imagemagick-doc: manual and API docs')
-  options=(!emptydirs libtool)
-  
backup=(etc/$_relname/{colors,delegates,log,mime,policy,quantization-table,thresholds,type,type-{dejavu,ghostscript}}.xml)
-  conflicts=(imagemagick6)
-  provides=(libmagick)
-  replaces=(imagemagick6 libmagick)
-
-  cd $_tarname
-  make DESTDIR="$pkgdir" install
-
-  find "$pkgdir/usr/lib/perl5" -name '*.so' -exec chrpath -d {} +
-  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
-
-# Split docs
-  mv "$pkgdir/usr/share/doc" "$srcdir/docpkg/usr/share/"
-
-# Harden security policy https://bugs.archlinux.org/task/62785
-  sed -e '/<\/policymap>/i \ \ ' -i "$pkgdir"/etc/ImageMagick-7/policy.xml
-}
-
-package_imagemagick-doc() {
-  pkgdesc+=" (manual and API docs)"
-
-  mv docpkg/* "$pkgdir"
-
-  cd $_tarname
-  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 LICENSE NOTICE
-}

Copied: imagemagick/repos/extra-x86_64/PKGBUILD (fr

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

2020-06-27 Thread Antonio Rojas via arch-commits
Date: Saturday, June 27, 2020 @ 18:59:15
  Author: arojas
Revision: 390526

Update to 7.0.10.22

Modified:
  imagemagick/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-06-27 17:07:15 UTC (rev 390525)
+++ PKGBUILD2020-06-27 18:59:15 UTC (rev 390526)
@@ -3,7 +3,7 @@
 
 pkgbase=imagemagick
 pkgname=(imagemagick imagemagick-doc)
-pkgver=7.0.10.21
+pkgver=7.0.10.22
 pkgrel=1
 pkgdesc="An image viewing/manipulation program"
 url="https://www.imagemagick.org/";
@@ -17,7 +17,7 @@
 source=(https://imagemagick.org/download/$_tarname.tar.xz{,.asc}
 arch-fonts.diff
 imagemagick-inkscape-1.0.patch)
-sha256sums=('f904c18990fcad0b04540246ed5f2ea0e04de3892421c18d7e9b2342ad5dad9e'
+sha256sums=('df948e5a12e81de1083754744bb42f5445dcdbf6d895bddf111503be239bd547'
 'SKIP'
 'a85b744c61b1b563743ecb7c7adad999d7ed9a8af816650e3ab9321b2b102e73'
 'dd856b0d7b5b98535d2bc61dfa995f4162677486c1eac14b384668a28a60af30')


[arch-commits] Commit in python-tox-current-env/repos (2 files)

2020-06-27 Thread Filipe Laíns via arch-commits
Date: Saturday, June 27, 2020 @ 18:13:12
  Author: ffy00
Revision: 655014

archrelease: copy trunk to community-any

Added:
  python-tox-current-env/repos/community-any/
  python-tox-current-env/repos/community-any/PKGBUILD
(from rev 655013, python-tox-current-env/trunk/PKGBUILD)

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

Copied: python-tox-current-env/repos/community-any/PKGBUILD (from rev 655013, 
python-tox-current-env/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2020-06-27 18:13:12 UTC (rev 655014)
@@ -0,0 +1,30 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+_pkgname=tox-current-env
+pkgname=python-$_pkgname
+pkgver=0.0.2
+pkgrel=1
+pkgdesc='tox plugin to run tests in current Python environment'
+arch=('any')
+url='https://github.com/fedora-python/tox-current-env'
+license=('MIT')
+depends=('python' 'python-tox')
+makedepends=('python-setuptools')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha512sums=('ce50e716d56dcf3eff60e3e57b7141b2ec49fd4cf63accd3320ea80a05f7e4db1c6865433764acb4e2948b275c43242b893780473e69fcec86f93faef6e6d9db')
+
+build() {
+  cd $_pkgname-$pkgver
+
+  python setup.py build
+}
+
+package() {
+  cd $_pkgname-$pkgver
+
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+
+  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in python-tox-current-env/trunk (PKGBUILD)

2020-06-27 Thread Filipe Laíns via arch-commits
Date: Saturday, June 27, 2020 @ 18:13:02
  Author: ffy00
Revision: 655013

upgpkg: python-tox-current-env 0.0.2-1

Added:
  python-tox-current-env/trunk/PKGBUILD

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

Added: PKGBUILD
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-06-27 18:13:02 UTC (rev 655013)
@@ -0,0 +1,30 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+_pkgname=tox-current-env
+pkgname=python-$_pkgname
+pkgver=0.0.2
+pkgrel=1
+pkgdesc='tox plugin to run tests in current Python environment'
+arch=('any')
+url='https://github.com/fedora-python/tox-current-env'
+license=('MIT')
+depends=('python' 'python-tox')
+makedepends=('python-setuptools')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha512sums=('ce50e716d56dcf3eff60e3e57b7141b2ec49fd4cf63accd3320ea80a05f7e4db1c6865433764acb4e2948b275c43242b893780473e69fcec86f93faef6e6d9db')
+
+build() {
+  cd $_pkgname-$pkgver
+
+  python setup.py build
+}
+
+package() {
+  cd $_pkgname-$pkgver
+
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+
+  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in (3 files)

2020-06-27 Thread Filipe Laíns via arch-commits
Date: Saturday, June 27, 2020 @ 18:09:51
  Author: ffy00
Revision: 655012

add root structure

Added:
  python-tox-current-env/
  python-tox-current-env/repos/
  python-tox-current-env/trunk/


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

2020-06-27 Thread Felix Yan via arch-commits
Date: Saturday, June 27, 2020 @ 17:17:56
  Author: felixonmars
Revision: 655011

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: shellcheck/repos/community-staging-x86_64/PKGBUILD (from rev 655010, 
shellcheck/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-06-27 17:17:56 UTC (rev 655011)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=ShellCheck
+pkgname=shellcheck
+pkgver=0.7.1
+pkgrel=77
+pkgdesc="Shell script analysis tool"
+url="https://www.shellcheck.net";
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-diff' 'haskell-quickcheck' 
'haskell-regex-tdfa')
+makedepends=('ghc' 'pandoc')
+source=("$_hkgname-$pkgver.tar.gz::https://github.com/koalaman/shellcheck/archive/v$pkgver.tar.gz";)
+sha512sums=('95ca827f50035e352eabfbee9eb1791278f7c18c10c3a6c2656c5b9e87396b7b6c088f4cefa3d6f954ac6c2765ea50e232985b9f3eeea2dbe77c17473cc4a437')
+
+prepare() {
+cd $pkgname-$pkgver
+echo -e "import Distribution.Simple\nmain = defaultMain" > Setup.hs
+}
+
+build() {
+cd $pkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+--ghc-option='-pie'
+runhaskell Setup build $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
+
+./manpage
+}
+
+check() {
+cd $pkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $pkgname-$pkgver
+
+install -D -m644 ${pkgname}.1   "${pkgdir}/usr/share/man/man1/${pkgname}.1"
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-06-27 Thread Anatol Pomozov via arch-commits
Date: Saturday, June 27, 2020 @ 17:17:42
  Author: anatolik
Revision: 655009

archrelease: copy trunk to community-testing-any

Added:
  libopencm3/repos/community-testing-any/
  
libopencm3/repos/community-testing-any/0001-Revert-Drop-install-target-and-documentation.patch
(from rev 655008, 
libopencm3/trunk/0001-Revert-Drop-install-target-and-documentation.patch)
  libopencm3/repos/community-testing-any/PKGBUILD
(from rev 655008, libopencm3/trunk/PKGBUILD)

-+
 0001-Revert-Drop-install-target-and-documentation.patch |   54 ++
 PKGBUILD|   42 ++
 2 files changed, 96 insertions(+)

Copied: 
libopencm3/repos/community-testing-any/0001-Revert-Drop-install-target-and-documentation.patch
 (from rev 655008, 
libopencm3/trunk/0001-Revert-Drop-install-target-and-documentation.patch)
===
--- 
community-testing-any/0001-Revert-Drop-install-target-and-documentation.patch   
(rev 0)
+++ 
community-testing-any/0001-Revert-Drop-install-target-and-documentation.patch   
2020-06-27 17:17:42 UTC (rev 655009)
@@ -0,0 +1,54 @@
+commit 368ee7b4fc58c3e537300b058d3440ba8d371ce0
+Author: Anatol Pomozov 
+Date:   Sun Jan 10 18:58:44 2016 -0800
+
+Revert "Drop "install" target and documentation."
+
+This reverts commit 7c1cd2e5cd3f3d1193ee375b46cfd8afaccb89f7.
+
+diff --git a/Makefile b/Makefile
+index f8fff0b2..ae4af411 100644
+--- a/Makefile
 b/Makefile
+@@ -22,6 +22,13 @@ PREFIX  ?= arm-none-eabi-
+ STYLECHECK  := scripts/checkpatch.pl
+ STYLECHECKFLAGS := --no-tree -f --terse --mailback
+ 
++DESTDIR   ?= /usr/local
++
++INCDIR:= $(DESTDIR)/$(PREFIX)/include
++LIBDIR:= $(DESTDIR)/$(PREFIX)/lib
++SHAREDIR  := $(DESTDIR)/$(PREFIX)/share/libopencm3/scripts
++INSTALL   := install
++
+ TARGETS ?=stm32/f0 stm32/f1 stm32/f2 stm32/f3 stm32/f4 stm32/f7 \
+   stm32/l0 stm32/l1 stm32/l4 \
+   stm32/g0 stm32/g4 \
+@@ -76,6 +83,21 @@ lib: $(LIB_DIRS)
+   done;
+   $(Q)[ -f .stamp_failure_tld ] && cat .stamp_failure_tld && exit 1 || 
true;
+ 
++install: lib
++  @printf "  INSTALL headers\n"
++  $(Q)$(INSTALL) -d $(INCDIR)/libopencm3
++  $(Q)$(INSTALL) -d $(INCDIR)/libopencmsis
++  $(Q)$(INSTALL) -d $(LIBDIR)
++  $(Q)$(INSTALL) -d $(SHAREDIR)
++  $(Q)cp -r include/libopencm3/* $(INCDIR)/libopencm3
++  $(Q)cp -r include/libopencmsis/* $(INCDIR)/libopencmsis
++  @printf "  INSTALL libs\n"
++  $(Q)$(INSTALL) -m 0644 lib/*.a $(LIBDIR)
++  @printf "  INSTALL ldscripts\n"
++  $(Q)$(INSTALL) -m 0644 lib/*.ld $(LIBDIR)
++  $(Q)$(INSTALL) -m 0644 lib/efm32/*/*.ld $(LIBDIR)
++
++
+ html doc:
+   $(Q)$(MAKE) -C doc html TARGETS="$(TARGETS)"
+ 
+@@ -121,4 +143,4 @@ genlinktests.clean:
+   fi;
+ 
+ 
+-.PHONY: build lib $(LIB_DIRS) doc clean generatedheaders cleanheaders 
stylecheck genlinktests genlinktests.clean
++.PHONY: build lib $(LIB_DIRS) install doc clean generatedheaders cleanheaders 
stylecheck genlinktests genlinktests.clean

Copied: libopencm3/repos/community-testing-any/PKGBUILD (from rev 655008, 
libopencm3/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2020-06-27 17:17:42 UTC (rev 655009)
@@ -0,0 +1,42 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+pkgname=libopencm3
+_commit=90753950bbe10e87b8caabfb0bd6e1d195bb24b8
+pkgver=r2639.90753950
+pkgrel=1
+pkgdesc='Open Source firmware library for various ARM Cortex microcontrollers'
+arch=('any')
+url='http://www.libopencm3.org'
+license=('GPL')
+depends=('arm-none-eabi-newlib')
+makedepends=('git' 'arm-none-eabi-gcc' 'python-yaml')
+options=(!strip staticlibs !buildflags)
+source=("git://github.com/libopencm3/libopencm3.git#commit=$_commit"
+'0001-Revert-Drop-install-target-and-documentation.patch')
+sha512sums=('SKIP'
+
'133e599bf8ea66e64225cf16873672ef86a66821ba3d735d7bae5cd356205d4b2f850121e93647c644be0a840764b71bfaa19b25ac8b59d678a45604b8a56540')
+
+pkgver() {
+  cd $pkgname
+
+  printf 'r%s.%s' $(git rev-list --count HEAD) $(git rev-parse --short HEAD)
+}
+
+prepare() {
+  cd $pkgname
+
+  patch -p1 < ../0001-Revert-Drop-install-target-and-documentation.patch
+}
+
+build() {
+  cd $pkgname
+
+  make
+}
+
+package() {
+  cd $pkgname
+
+  make DESTDIR="$pkgdir" PREFIX=/usr/arm-none-eabi install
+}
+


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

2020-06-27 Thread Felix Yan via arch-commits
Date: Saturday, June 27, 2020 @ 17:17:42
  Author: felixonmars
Revision: 655010

upgpkg: shellcheck 0.7.1-77: rebuild with hslua 1.1.2

Modified:
  shellcheck/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-06-27 17:17:42 UTC (rev 655009)
+++ PKGBUILD2020-06-27 17:17:42 UTC (rev 655010)
@@ -4,7 +4,7 @@
 _hkgname=ShellCheck
 pkgname=shellcheck
 pkgver=0.7.1
-pkgrel=76
+pkgrel=77
 pkgdesc="Shell script analysis tool"
 url="https://www.shellcheck.net";
 license=("GPL")


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

2020-06-27 Thread Anatol Pomozov via arch-commits
Date: Saturday, June 27, 2020 @ 17:16:14
  Author: anatolik
Revision: 655008

upgpkg: libopencm3 r2639.90753950-1

Modified:
  libopencm3/trunk/0001-Revert-Drop-install-target-and-documentation.patch
  libopencm3/trunk/PKGBUILD

-+
 0001-Revert-Drop-install-target-and-documentation.patch |   31 --
 PKGBUILD|8 +--
 2 files changed, 23 insertions(+), 16 deletions(-)

Modified: 0001-Revert-Drop-install-target-and-documentation.patch
===
--- 0001-Revert-Drop-install-target-and-documentation.patch 2020-06-27 
17:14:16 UTC (rev 655007)
+++ 0001-Revert-Drop-install-target-and-documentation.patch 2020-06-27 
17:16:14 UTC (rev 655008)
@@ -1,8 +1,16 @@
+commit 368ee7b4fc58c3e537300b058d3440ba8d371ce0
+Author: Anatol Pomozov 
+Date:   Sun Jan 10 18:58:44 2016 -0800
+
+Revert "Drop "install" target and documentation."
+
+This reverts commit 7c1cd2e5cd3f3d1193ee375b46cfd8afaccb89f7.
+
 diff --git a/Makefile b/Makefile
-index 6929769d..ca06efd7 100644
+index f8fff0b2..ae4af411 100644
 --- a/Makefile
 +++ b/Makefile
-@@ -23,6 +23,13 @@ PREFIX  ?= arm-none-eabi
+@@ -22,6 +22,13 @@ PREFIX  ?= arm-none-eabi-
  STYLECHECK  := scripts/checkpatch.pl
  STYLECHECKFLAGS := --no-tree -f --terse --mailback
  
@@ -13,12 +21,12 @@
 +SHAREDIR  := $(DESTDIR)/$(PREFIX)/share/libopencm3/scripts
 +INSTALL   := install
 +
- space:=
- space+=
- SRCLIBDIR:= $(subst $(space),\$(space),$(realpath lib))
-@@ -70,6 +77,22 @@ $(LIB_DIRS): $(IRQ_DEFN_FILES:=.genhdr)
- lib: $(LIB_DIRS)
-   $(Q)true
+ TARGETS ?=stm32/f0 stm32/f1 stm32/f2 stm32/f3 stm32/f4 stm32/f7 \
+   stm32/l0 stm32/l1 stm32/l4 \
+   stm32/g0 stm32/g4 \
+@@ -76,6 +83,21 @@ lib: $(LIB_DIRS)
+   done;
+   $(Q)[ -f .stamp_failure_tld ] && cat .stamp_failure_tld && exit 1 || 
true;
  
 +install: lib
 +  @printf "  INSTALL headers\n"
@@ -32,14 +40,13 @@
 +  $(Q)$(INSTALL) -m 0644 lib/*.a $(LIBDIR)
 +  @printf "  INSTALL ldscripts\n"
 +  $(Q)$(INSTALL) -m 0644 lib/*.ld $(LIBDIR)
-+  $(Q)$(INSTALL) -m 0644 lib/*/*.ld $(LIBDIR)
-+  $(Q)$(INSTALL) -m 0644 lib/*/*/*.ld $(LIBDIR)
++  $(Q)$(INSTALL) -m 0644 lib/efm32/*/*.ld $(LIBDIR)
 +
 +
  html doc:
-   $(Q)$(MAKE) -C doc html
+   $(Q)$(MAKE) -C doc html TARGETS="$(TARGETS)"
  
-@@ -114,4 +137,4 @@ genlinktests.clean:
+@@ -121,4 +143,4 @@ genlinktests.clean:
fi;
  
  

Modified: PKGBUILD
===
--- PKGBUILD2020-06-27 17:14:16 UTC (rev 655007)
+++ PKGBUILD2020-06-27 17:16:14 UTC (rev 655008)
@@ -1,9 +1,9 @@
 # Maintainer: Filipe Laíns (FFY00) 
 
 pkgname=libopencm3
-_commit=38b45c87861e5461283609f3aa2df31b141faae6
-pkgver=r2548.38b45c87
-pkgrel=2
+_commit=90753950bbe10e87b8caabfb0bd6e1d195bb24b8
+pkgver=r2639.90753950
+pkgrel=1
 pkgdesc='Open Source firmware library for various ARM Cortex microcontrollers'
 arch=('any')
 url='http://www.libopencm3.org'
@@ -14,7 +14,7 @@
 source=("git://github.com/libopencm3/libopencm3.git#commit=$_commit"
 '0001-Revert-Drop-install-target-and-documentation.patch')
 sha512sums=('SKIP'
-
'80780290b3de985cee7c950317aa6a2f7d2d920f6520a8b0d2af0df5623be01ccd0d883ac3dc52ae711c4049208906643ec9b391b2e0294fe4d3650fca343c77')
+
'133e599bf8ea66e64225cf16873672ef86a66821ba3d735d7bae5cd356205d4b2f850121e93647c644be0a840764b71bfaa19b25ac8b59d678a45604b8a56540')
 
 pkgver() {
   cd $pkgname


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

2020-06-27 Thread Felix Yan via arch-commits
Date: Saturday, June 27, 2020 @ 17:14:16
  Author: felixonmars
Revision: 655007

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: pandoc-crossref/repos/community-staging-x86_64/PKGBUILD (from rev 
655006, pandoc-crossref/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-06-27 17:14:16 UTC (rev 655007)
@@ -0,0 +1,46 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc-crossref
+pkgver=0.3.6.3
+pkgrel=45
+pkgdesc="Pandoc filter for cross-references"
+url="https://hackage.haskell.org/package/${pkgname}";
+license=("GPL2")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-data-default' 'haskell-data-accessor' 
'haskell-data-accessor-template'
+ 'haskell-data-accessor-transformers' 'haskell-gitrev' 
'haskell-open-browser'
+ 'haskell-optparse-applicative' 'pandoc' 'haskell-pandoc-types' 
'haskell-roman-numerals'
+ 'haskell-syb' 'haskell-utility-ht')
+makedepends=('ghc' 'haskell-hspec')
+conflicts=('haskell-pandoc-crossref')
+replaces=('haskell-pandoc-crossref')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/lierdakil/pandoc-crossref/archive/v$pkgver.tar.gz";)
+sha512sums=('dbe9a3b8b1b48e00d6f35a523f31c999890669ea3c16c848b4f68f8b89ba2713ce8ed8da36ff70da882d6b8e33c9953b93943457255efb8f474b8e7cf586264f')
+
+build() {
+cd $pkgname-$pkgver
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests 
--datasubdir="$pkgname" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+   -f-enable_flaky_tests
+runhaskell Setup build $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}"
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-06-27 Thread Felix Yan via arch-commits
Date: Saturday, June 27, 2020 @ 17:14:02
  Author: felixonmars
Revision: 655006

upgpkg: pandoc-crossref 0.3.6.3-45: rebuild with hslua 1.1.2

Modified:
  pandoc-crossref/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-06-27 17:12:32 UTC (rev 655005)
+++ PKGBUILD2020-06-27 17:14:02 UTC (rev 655006)
@@ -3,7 +3,7 @@
 
 pkgname=pandoc-crossref
 pkgver=0.3.6.3
-pkgrel=44
+pkgrel=45
 pkgdesc="Pandoc filter for cross-references"
 url="https://hackage.haskell.org/package/${pkgname}";
 license=("GPL2")


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

2020-06-27 Thread Felix Yan via arch-commits
Date: Saturday, June 27, 2020 @ 17:12:32
  Author: felixonmars
Revision: 655005

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-hakyll/repos/community-staging-x86_64/PKGBUILD (from rev 
655004, haskell-hakyll/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-06-27 17:12:32 UTC (rev 655005)
@@ -0,0 +1,56 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hakyll
+pkgname=haskell-hakyll
+pkgver=4.13.3.0
+pkgrel=87
+pkgdesc="A static website compiler library"
+url="https://jaspervdj.be/hakyll";
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-blaze-html' 'haskell-blaze-markup' 
'haskell-cryptonite'
+ 'haskell-data-default' 'haskell-file-embed' 'haskell-fsnotify' 
'haskell-http-conduit'
+ 'haskell-http-types' 'haskell-lrucache' 'haskell-memory' 
'haskell-network-uri'
+ 'haskell-optparse-applicative' 'pandoc' 'pandoc-citeproc' 
'haskell-random'
+ 'haskell-regex-tdfa' 'haskell-resourcet' 'haskell-scientific' 
'haskell-tagsoup'
+ 'haskell-time-locale-compat' 'haskell-unordered-containers' 
'haskell-vector'
+ 'haskell-wai' 'haskell-wai-app-static' 'haskell-warp' 'haskell-yaml')
+makedepends=('ghc' 'haskell-quickcheck' 'haskell-tasty' 'haskell-tasty-hunit'
+ 'haskell-tasty-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('104b0ab5092d2f0b7017ff8beae2bbe2fdcbfe37fe9d2cf3165227856e2ab3e13d25f0b4827aab450b5ded447763044580a63a41762e3523f29eb1e647666918')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i 's/< *2.1/<3/;s/< *1.3/<2/;s/< *0.0.12/<1/;s/< *0.27/<1/' 
$_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --datasubdir="$pkgname" 
--enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fcheckexternal -fwatchserver -fpreviewserver -fusepandoc
+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
+LC_CTYPE=en_US.UTF-8 runhaskell Setup test || warning 
"https://github.com/jaspervdj/hakyll/issues/682";
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-06-27 Thread Felix Yan via arch-commits
Date: Saturday, June 27, 2020 @ 17:12:17
  Author: felixonmars
Revision: 655004

upgpkg: haskell-hakyll 4.13.3.0-87: rebuild with hslua 1.1.2

Modified:
  haskell-hakyll/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-06-27 17:10:39 UTC (rev 655003)
+++ PKGBUILD2020-06-27 17:12:17 UTC (rev 655004)
@@ -4,7 +4,7 @@
 _hkgname=hakyll
 pkgname=haskell-hakyll
 pkgver=4.13.3.0
-pkgrel=86
+pkgrel=87
 pkgdesc="A static website compiler library"
 url="https://jaspervdj.be/hakyll";
 license=("BSD")


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

2020-06-27 Thread Felix Yan via arch-commits
Date: Saturday, June 27, 2020 @ 17:10:39
  Author: felixonmars
Revision: 655003

archrelease: copy trunk to community-staging-x86_64

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

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

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


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

2020-06-27 Thread Felix Yan via arch-commits
Date: Saturday, June 27, 2020 @ 17:10:24
  Author: felixonmars
Revision: 655002

upgpkg: pandoc-citeproc 0.17.0.1-7: rebuild with hslua 1.1.2

Modified:
  pandoc-citeproc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-06-27 17:07:14 UTC (rev 655001)
+++ PKGBUILD2020-06-27 17:10:24 UTC (rev 655002)
@@ -3,7 +3,7 @@
 
 pkgname=pandoc-citeproc
 pkgver=0.17.0.1
-pkgrel=6
+pkgrel=7
 pkgdesc="Supports using pandoc with citeproc"
 url="https://hackage.haskell.org/package/$pkgname";
 license=("BSD")


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

2020-06-27 Thread Jan Steffens via arch-commits
Date: Saturday, June 27, 2020 @ 17:07:14
  Author: heftig
Revision: 655001

archrelease: copy trunk to multilib-testing-x86_64

Added:
  lib32-nss/repos/multilib-testing-x86_64/
  lib32-nss/repos/multilib-testing-x86_64/PKGBUILD
(from rev 655000, lib32-nss/trunk/PKGBUILD)
  lib32-nss/repos/multilib-testing-x86_64/no-plt.diff
(from rev 655000, lib32-nss/trunk/no-plt.diff)

-+
 PKGBUILD|   64 ++
 no-plt.diff |   48 +++
 2 files changed, 112 insertions(+)

Copied: lib32-nss/repos/multilib-testing-x86_64/PKGBUILD (from rev 655000, 
lib32-nss/trunk/PKGBUILD)
===
--- multilib-testing-x86_64/PKGBUILD(rev 0)
+++ multilib-testing-x86_64/PKGBUILD2020-06-27 17:07:14 UTC (rev 655001)
@@ -0,0 +1,64 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Daniel Wallace 
+# Contributor: kfgz 
+# Contributor: Ionut Biru 
+
+pkgname=lib32-nss
+pkgver=3.54
+pkgrel=1
+pkgdesc="Network Security Services (32-bit)"
+url="https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS";
+arch=(x86_64)
+license=(MPL GPL)
+depends=(lib32-nspr lib32-sqlite lib32-zlib 'lib32-p11-kit>=0.23.19')
+makedepends=(perl python gyp)
+source=("https://ftp.mozilla.org/pub/security/nss/releases/NSS_${pkgver//./_}_RTM/src/nss-${pkgver}.tar.gz";
+no-plt.diff)
+sha256sums=('dab18bbfcf5e347934cda664df75ce9fd912a5772686c40d3c805e53c08d6e43'
+'ea8e1b871c0f1dd29cdea1b1a2e7f47bf4713e2ae7b947ec832dba7dfcc67daa')
+
+prepare() {
+  cd nss-$pkgver
+
+  # https://bugzilla.mozilla.org/show_bug.cgi?id=1382942
+  patch -Np2 -i ../no-plt.diff
+}
+
+build() {
+  cd nss-$pkgver/nss
+  ./build.sh \
+--target ia32 \
+--opt \
+--system-sqlite \
+--system-nspr \
+--enable-libpkix \
+--disable-tests
+}
+
+package() {
+  depends+=(nss)
+
+  cd nss-$pkgver
+
+  local libdir=/usr/lib32 nsprver="$(i686-pc-linux-gnu-pkg-config --modversion 
nspr)"
+  sed nss/pkg/pkg-config/nss.pc.in \
+-e "s,%libdir%,$libdir,g" \
+-e "s,%prefix%,/usr,g" \
+-e "s,%exec_prefix%,/usr/bin,g" \
+-e "s,%includedir%,/usr/include/nss,g" \
+-e "s,%NSPR_VERSION%,$nsprver,g" \
+-e "s,%NSS_VERSION%,$pkgver,g" |
+install -Dm644 /dev/stdin "$pkgdir$libdir/pkgconfig/nss.pc"
+
+  ln -s nss.pc "$pkgdir$libdir/pkgconfig/mozilla-nss.pc"
+
+  install -Dt "$pkgdir$libdir" dist/Release/lib/*.so
+  install -Dt "$pkgdir$libdir" -m644 dist/Release/lib/*.chk
+
+
+  # Replace built-in trust with p11-kit connection
+  ln -s pkcs11/p11-kit-trust.so "$pkgdir$libdir/p11-kit-trust.so"
+  ln -sf p11-kit-trust.so "$pkgdir$libdir/libnssckbi.so"
+}
+
+# vim:set sw=2 et:

Copied: lib32-nss/repos/multilib-testing-x86_64/no-plt.diff (from rev 655000, 
lib32-nss/trunk/no-plt.diff)
===
--- multilib-testing-x86_64/no-plt.diff (rev 0)
+++ multilib-testing-x86_64/no-plt.diff 2020-06-27 17:07:14 UTC (rev 655001)
@@ -0,0 +1,48 @@
+diff --git i/security/nss/lib/freebl/mpi/mpi_x86.s 
w/security/nss/lib/freebl/mpi/mpi_x86.s
+index 8f7e2130c3264754..b3ca1ce5b41b3771 100644
+--- i/security/nss/lib/freebl/mpi/mpi_x86.s
 w/security/nss/lib/freebl/mpi/mpi_x86.s
+@@ -22,22 +22,41 @@ is_sse: .long  -1
+ #
+ .ifndef NO_PIC
+ .macro GET   var,reg
+-movl   \var@GOTOFF(%ebx),\reg
++call   thunk.ax
++addl   $_GLOBAL_OFFSET_TABLE_, %eax
++movl   \var@GOTOFF(%eax),\reg
+ .endm
+ .macro PUT   reg,var
+-movl   \reg,\var@GOTOFF(%ebx)
++call   thunk.dx
++addl   $_GLOBAL_OFFSET_TABLE_, %edx
++movl   \reg,\var@GOTOFF(%edx)
+ .endm
+ .else
+ .macro GET   var,reg
+ movl   \var,\reg
+ .endm
+ .macro PUT   reg,var
+ movl   \reg,\var
+ .endm
+ .endif
+ 
+ .text
+ 
++.ifndef NO_PIC
++.globlthunk.ax
++.hidden   thunk.ax
++.type thunk.ax, @function
++thunk.ax:
++   movl   (%esp),%eax
++   ret
++
++.globlthunk.dx
++.hidden   thunk.dx
++.type thunk.dx, @function
++thunk.dx:
++   movl   (%esp),%edx
++   ret
++.endif
+ 
+  #  ebp - 36: caller's esi
+  #  ebp - 32: caller's edi


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

2020-06-27 Thread Jan Steffens via arch-commits
Date: Saturday, June 27, 2020 @ 17:07:15
  Author: heftig
Revision: 390525

archrelease: copy trunk to testing-x86_64

Added:
  nss/repos/testing-x86_64/
  nss/repos/testing-x86_64/PKGBUILD
(from rev 390524, nss/trunk/PKGBUILD)
  nss/repos/testing-x86_64/bundle.sh
(from rev 390524, nss/trunk/bundle.sh)
  nss/repos/testing-x86_64/certdata2pem.py
(from rev 390524, nss/trunk/certdata2pem.py)

-+
 PKGBUILD|   98 
 bundle.sh   |   22 ++
 certdata2pem.py |  413 ++
 3 files changed, 533 insertions(+)

Copied: nss/repos/testing-x86_64/PKGBUILD (from rev 390524, nss/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-06-27 17:07:15 UTC (rev 390525)
@@ -0,0 +1,98 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgbase=nss
+pkgname=(nss ca-certificates-mozilla)
+pkgver=3.54
+pkgrel=1
+pkgdesc="Network Security Services"
+url="https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS";
+arch=(x86_64)
+license=(MPL GPL)
+depends=(nspr sqlite zlib sh 'p11-kit>=0.23.19')
+makedepends=(perl python gyp)
+source=("https://ftp.mozilla.org/pub/security/nss/releases/NSS_${pkgver//./_}_RTM/src/nss-${pkgver}.tar.gz";
+certdata2pem.py bundle.sh)
+sha256sums=('dab18bbfcf5e347934cda664df75ce9fd912a5772686c40d3c805e53c08d6e43'
+'d2a1579dae05fd16175fac27ef08b54731ecefdf414085c610179afcf62b096c'
+'3bfadf722da6773bdabdd25bdf78158648043d1b7e57615574f189a88ca865dd')
+
+prepare() {
+  mkdir certs
+
+  cd nss-$pkgver
+  ln -sr nss/lib/ckfw/builtins/certdata.txt ../certs/
+  ln -sr nss/lib/ckfw/builtins/nssckbi.h ../certs/
+}
+
+build() {
+  cd certs
+  ../certdata2pem.py
+
+  cd ..
+  ./bundle.sh
+
+  cd nss-$pkgver/nss
+  ./build.sh \
+--target x64 \
+--opt \
+--system-sqlite \
+--system-nspr \
+--enable-libpkix \
+--disable-tests
+}
+
+package_nss() {
+  cd nss-$pkgver
+
+  local libdir=/usr/lib nsprver="$(pkg-config --modversion nspr)"
+  sed nss/pkg/pkg-config/nss.pc.in \
+-e "s,%libdir%,$libdir,g" \
+-e "s,%prefix%,/usr,g" \
+-e "s,%exec_prefix%,/usr/bin,g" \
+-e "s,%includedir%,/usr/include/nss,g" \
+-e "s,%NSPR_VERSION%,$nsprver,g" \
+-e "s,%NSS_VERSION%,$pkgver,g" |
+install -Dm644 /dev/stdin "$pkgdir$libdir/pkgconfig/nss.pc"
+
+  ln -s nss.pc "$pkgdir$libdir/pkgconfig/mozilla-nss.pc"
+
+  install -Dt "$pkgdir$libdir" dist/Release/lib/*.so
+  install -Dt "$pkgdir$libdir" -m644 dist/Release/lib/*.chk
+
+  local vmajor vminor vpatch
+  { read vmajor; read vminor; read vpatch; } \
+< <(awk '/#define.*NSS_V(MAJOR|MINOR|PATCH)/ {print $3}' nss/lib/nss/nss.h)
+
+  sed nss/pkg/pkg-config/nss-config.in \
+-e "s,@libdir@,$libdir,g" \
+-e "s,@prefix@,/usr/bin,g" \
+-e "s,@exec_prefix@,/usr/bin,g" \
+-e "s,@includedir@,/usr/include/nss,g" \
+-e "s,@MOD_MAJOR_VERSION@,$vmajor,g" \
+-e "s,@MOD_MINOR_VERSION@,$vminor,g" \
+-e "s,@MOD_PATCH_VERSION@,$vpatch,g" |
+install -D /dev/stdin "$pkgdir/usr/bin/nss-config"
+
+  install -Dt "$pkgdir/usr/bin" \
+dist/Release/bin/{*util,shlibsign,signtool,signver,ssltap}
+
+  install -Dt "$pkgdir/usr/include/nss" -m644 dist/public/nss/*.h
+
+  install -Dt "$pkgdir/usr/share/man/man1" -m644 \
+nss/doc/nroff/{*util,signtool,signver,ssltap}.1
+
+  # Replace built-in trust with p11-kit connection
+  ln -s pkcs11/p11-kit-trust.so "$pkgdir$libdir/p11-kit-trust.so"
+  ln -sf p11-kit-trust.so "$pkgdir$libdir/libnssckbi.so"
+}
+
+package_ca-certificates-mozilla() {
+  pkgdesc="Mozilla's set of trusted CA certificates"
+  depends=('ca-certificates-utils>=20181109-3')
+
+  install -Dm644 ca-bundle.trust.p11-kit \
+"$pkgdir/usr/share/ca-certificates/trust-source/mozilla.trust.p11-kit"
+}
+
+# vim:set sw=2 et:

Copied: nss/repos/testing-x86_64/bundle.sh (from rev 390524, 
nss/trunk/bundle.sh)
===
--- testing-x86_64/bundle.sh(rev 0)
+++ testing-x86_64/bundle.sh2020-06-27 17:07:15 UTC (rev 390525)
@@ -0,0 +1,22 @@
+#!/bin/sh
+# From Fedora's ca-certificates.spec
+
+(
+  cat < ca-bundle.trust.p11-kit
+
+for p in certs/*.tmp-p11-kit; do 
+  cat "$p" >> ca-bundle.trust.p11-kit
+done

Copied: nss/repos/testing-x86_64/certdata2pem.py (from rev 390524, 
nss/trunk/certdata2pem.py)
===
--- testing-x86_64/certdata2pem.py  (rev 0)
+++ testing-x86_64/certdata2pem.py  2020-06-27 17:07:15 UTC (rev 390525)
@@ -0,0 +1,413 @@
+#!/usr/bin/python
+# vim:set et sw=4:
+#
+# certdata2pem.py - splits certdata.txt into multiple files
+#
+# Copyright (C) 2009 Philipp Kern 
+# Copyright (C) 2013 Kai Engert 
+#
+# This program is free software; you can red

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

2020-06-27 Thread Jan Steffens via arch-commits
Date: Saturday, June 27, 2020 @ 17:06:49
  Author: heftig
Revision: 390524

3.54-1

Modified:
  nss/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-06-27 16:56:19 UTC (rev 390523)
+++ PKGBUILD2020-06-27 17:06:49 UTC (rev 390524)
@@ -3,7 +3,7 @@
 
 pkgbase=nss
 pkgname=(nss ca-certificates-mozilla)
-pkgver=3.53.1
+pkgver=3.54
 pkgrel=1
 pkgdesc="Network Security Services"
 url="https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS";
@@ -13,7 +13,7 @@
 makedepends=(perl python gyp)
 
source=("https://ftp.mozilla.org/pub/security/nss/releases/NSS_${pkgver//./_}_RTM/src/nss-${pkgver}.tar.gz";
 certdata2pem.py bundle.sh)
-sha256sums=('2dccde67079b25c4e95ac3121f11b2819c37cf8c48ca263a45d8f83f7a315316'
+sha256sums=('dab18bbfcf5e347934cda664df75ce9fd912a5772686c40d3c805e53c08d6e43'
 'd2a1579dae05fd16175fac27ef08b54731ecefdf414085c610179afcf62b096c'
 '3bfadf722da6773bdabdd25bdf78158648043d1b7e57615574f189a88ca865dd')
 


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

2020-06-27 Thread Felix Yan via arch-commits
Date: Saturday, June 27, 2020 @ 17:06:47
  Author: felixonmars
Revision: 654999

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: pandoc/repos/community-staging-x86_64/PKGBUILD (from rev 654998, 
pandoc/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-06-27 17:06:47 UTC (rev 654999)
@@ -0,0 +1,75 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc
+pkgver=2.9.2.1
+pkgrel=98
+pkgdesc='Conversion between markup formats'
+url='https://pandoc.org'
+license=('GPL')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-http' 'haskell-juicypixels' 'haskell-sha' 
'haskell-aeson'
+ 'haskell-aeson-pretty' 'haskell-attoparsec'
+ 'haskell-base64-bytestring' 'haskell-blaze-html' 
'haskell-blaze-markup'
+ 'haskell-case-insensitive' 'haskell-cmark-gfm' 'haskell-data-default' 
'haskell-doclayout'
+ 'haskell-doctemplates' 'haskell-emojis' 'haskell-glob'
+ 'haskell-haddock-library' 'haskell-ipynb' 'haskell-jira-wiki-markup' 
'haskell-skylighting'
+ 'haskell-skylighting-core' 'haskell-hslua' 
'haskell-hslua-module-system'
+ 'haskell-hslua-module-text' 'haskell-http-client' 'haskell-syb' 
'haskell-hsyaml'
+ 'haskell-http-client-tls' 'haskell-http-types' 'haskell-safe' 
'haskell-split'
+ 'haskell-texmath' 'haskell-network' 'haskell-pandoc-types' 
'haskell-random'
+ 'haskell-scientific' 'haskell-tagsoup' 'haskell-temporary' 
'haskell-text-conversions'
+ 'haskell-network-uri' 'haskell-unicode-transforms' 
'haskell-unordered-containers'
+ 'haskell-zip-archive' 'haskell-vector' 'haskell-xml' 'haskell-zlib')
+optdepends=('pandoc-citeproc: for citation rendering with pandoc-citeproc 
filter'
+'pandoc-crossref: for numbering figures, equations, tables and 
cross-references to them with pandoc-crossref filter'
+'texlive-core: for pdf output')
+conflicts=('haskell-pandoc')
+replaces=('haskell-pandoc')
+makedepends=('ghc' 'haskell-diff' 'haskell-tasty' 'haskell-tasty-hunit' 
'haskell-tasty-lua'
+ 'haskell-tasty-quickcheck' 'haskell-tasty-golden' 
'haskell-quickcheck'
+ 'haskell-executable-path')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";
+
pandoc-revert-noprelude.patch::https://github.com/jgm/pandoc/commit/a9ef15bbd574bf09827c2c25ef1cd3efaf288f7c.patch
+
pandoc-skylighting-0.8.4.patch::https://github.com/jgm/pandoc/commit/46179d5b3e84b5c709e09924cbda524230ebd3fe.patch)
+sha512sums=('35ac491a7e0a2f6d8fe0f2c2ffe265748b13920904e974f88c92b3f82edb2f1c03e28ebef1bc344ead13d566117a5e50707a68edc49f95159157f974210b23b2'
+
'ca91b56003c02cd10cc9a073f63eac6e3d4371ebec80bb85500ea67e8aa0ac8938fb5487651ad72e6f964b9d5266c1578e649323e3390037fb87b443850eb4e1'
+
'3c057b1bb41cf2346e4fb63c50d3edb745eb598ef5d69c63bc0de0dcfa8e55fce0e4d19d5ce4872ca5fede10ee0f3621fb350d7e162fe63a8d0e1dea8b796e5b')
+
+prepare() {
+cd "${srcdir}/$pkgname-${pkgver}"
+patch -p1 -i ../pandoc-revert-noprelude.patch
+patch -p1 -i ../pandoc-skylighting-0.8.4.patch || :
+sed -i 's/< 1.1/< 1.2/;s/< *2.14/<3/;s/< *1.3/<2/;s/< *1.5/<2/;s/< 
*0.7/<1/;s/< *1.2/<2/;s/< *1.9/<2/' $pkgname.cabal
+
+# TODO: find a better solution
+sed -i "s|let env' = dynlibEnv ++ |let env' = dynlibEnv ++ 
[(\"LD_LIBRARY_PATH\", \"$PWD/dist/build\")] ++ |" test/Tests/Command.hs
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgbase}" 
--datasubdir="$pkgname" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-trypandoc -f-embed_data_files -f-static
+runhaskell Setup build $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 "${srcdir}/${pkgname}-${pkgver}"
+LC_CTYPE=en_US.UTF-8 runhaskell Setup test || warning "Tests failed"
+}
+
+package() {
+cd "${srcdir}/${pkgbase}-${pkgver}"
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm "${pkgdir}/usr/share/doc/${pkgname}/COP

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

2020-06-27 Thread Jan Steffens via arch-commits
Date: Saturday, June 27, 2020 @ 17:06:50
  Author: heftig
Revision: 655000

3.54-1

Modified:
  lib32-nss/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-06-27 17:06:47 UTC (rev 654999)
+++ PKGBUILD2020-06-27 17:06:50 UTC (rev 655000)
@@ -4,7 +4,7 @@
 # Contributor: Ionut Biru 
 
 pkgname=lib32-nss
-pkgver=3.53.1
+pkgver=3.54
 pkgrel=1
 pkgdesc="Network Security Services (32-bit)"
 url="https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS";
@@ -14,7 +14,7 @@
 makedepends=(perl python gyp)
 
source=("https://ftp.mozilla.org/pub/security/nss/releases/NSS_${pkgver//./_}_RTM/src/nss-${pkgver}.tar.gz";
 no-plt.diff)
-sha256sums=('2dccde67079b25c4e95ac3121f11b2819c37cf8c48ca263a45d8f83f7a315316'
+sha256sums=('dab18bbfcf5e347934cda664df75ce9fd912a5772686c40d3c805e53c08d6e43'
 'ea8e1b871c0f1dd29cdea1b1a2e7f47bf4713e2ae7b947ec832dba7dfcc67daa')
 
 prepare() {


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

2020-06-27 Thread Felix Yan via arch-commits
Date: Saturday, June 27, 2020 @ 17:06:32
  Author: felixonmars
Revision: 654998

upgpkg: pandoc 2.9.2.1-98: rebuild with hslua 1.1.2

Modified:
  pandoc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-06-27 16:56:10 UTC (rev 654997)
+++ PKGBUILD2020-06-27 17:06:32 UTC (rev 654998)
@@ -3,7 +3,7 @@
 
 pkgname=pandoc
 pkgver=2.9.2.1
-pkgrel=97
+pkgrel=98
 pkgdesc='Conversion between markup formats'
 url='https://pandoc.org'
 license=('GPL')


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

2020-06-27 Thread Felix Yan via arch-commits
Date: Saturday, June 27, 2020 @ 16:56:19
  Author: felixonmars
Revision: 390523

fix license (FS#67118)

Modified:
  intel-tbb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-06-27 16:15:13 UTC (rev 390522)
+++ PKGBUILD2020-06-27 16:56:19 UTC (rev 390523)
@@ -10,7 +10,7 @@
 pkgdesc='High level abstract threading library'
 arch=(x86_64)
 url='https://www.threadingbuildingblocks.org/'
-license=(GPL)
+license=(Apache)
 depends=(gcc-libs)
 makedepends=(cmake inetutils)
 
source=($pkgname-$pkgver.tar.gz::https://github.com/intel/tbb/archive/v$pkgver.tar.gz)


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

2020-06-27 Thread Felix Yan via arch-commits
Date: Saturday, June 27, 2020 @ 16:56:10
  Author: felixonmars
Revision: 654997

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-tasty-lua/repos/community-staging-x86_64/PKGBUILD (from rev 
654996, haskell-tasty-lua/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-06-27 16:56:10 UTC (rev 654997)
@@ -0,0 +1,47 @@
+# Maintainer: Felix Yan 
+
+_hkgname=tasty-lua
+pkgname=haskell-tasty-lua
+pkgver=0.2.2
+pkgrel=21
+pkgdesc="Write tests in Lua, integrate into tasty."
+url="https://github.com/hslua/tasty-lua";
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-file-embed' 'haskell-hslua' 'haskell-tasty')
+makedepends=('ghc' 'haskell-tasty-hunit')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('d0407fa44d794747506652ec924801559e9d5314550c3045a3f263dc6c4747cea559d77b835a4fe24909627664c11fef0e08341923c92e821968b8ec273aa9b3')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i 's/< *1.3/<2/' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-06-27 Thread Felix Yan via arch-commits
Date: Saturday, June 27, 2020 @ 16:55:51
  Author: felixonmars
Revision: 654996

upgpkg: haskell-tasty-lua 0.2.2-21: rebuild with hslua 1.1.2

Modified:
  haskell-tasty-lua/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-06-27 16:54:19 UTC (rev 654995)
+++ PKGBUILD2020-06-27 16:55:51 UTC (rev 654996)
@@ -3,7 +3,7 @@
 _hkgname=tasty-lua
 pkgname=haskell-tasty-lua
 pkgver=0.2.2
-pkgrel=20
+pkgrel=21
 pkgdesc="Write tests in Lua, integrate into tasty."
 url="https://github.com/hslua/tasty-lua";
 license=('MIT')


[arch-commits] Commit in haskell-hslua-module-text/trunk (PKGBUILD)

2020-06-27 Thread Felix Yan via arch-commits
Date: Saturday, June 27, 2020 @ 16:54:05
  Author: felixonmars
Revision: 654994

upgpkg: haskell-hslua-module-text 0.2.1-54: rebuild with hslua 1.1.2

Modified:
  haskell-hslua-module-text/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-06-27 16:53:29 UTC (rev 654993)
+++ PKGBUILD2020-06-27 16:54:05 UTC (rev 654994)
@@ -4,7 +4,7 @@
 _hkgname=hslua-module-text
 pkgname=haskell-hslua-module-text
 pkgver=0.2.1
-pkgrel=53
+pkgrel=54
 pkgdesc="Lua module for text"
 url="https://github.com/hslua/hslua-module-text";
 license=("MIT")


[arch-commits] Commit in haskell-hslua-module-text/repos (2 files)

2020-06-27 Thread Felix Yan via arch-commits
Date: Saturday, June 27, 2020 @ 16:54:19
  Author: felixonmars
Revision: 654995

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-hslua-module-text/repos/community-staging-x86_64/
  haskell-hslua-module-text/repos/community-staging-x86_64/PKGBUILD
(from rev 654994, haskell-hslua-module-text/trunk/PKGBUILD)

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

Copied: haskell-hslua-module-text/repos/community-staging-x86_64/PKGBUILD (from 
rev 654994, haskell-hslua-module-text/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-06-27 16:54:19 UTC (rev 654995)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hslua-module-text
+pkgname=haskell-hslua-module-text
+pkgver=0.2.1
+pkgrel=54
+pkgdesc="Lua module for text"
+url="https://github.com/hslua/hslua-module-text";
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-hslua')
+makedepends=('ghc' 'haskell-tasty' 'haskell-tasty-hunit')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('e2da17ec688c00968537e49c18d71a3e365a57bb0c8cb2639b2052d04771686ee695186726569e82f72723c78841bccdc0de33d0302e943e67f3432bd5fb9d13')
+
+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-hslua-module-system/repos (2 files)

2020-06-27 Thread Felix Yan via arch-commits
Date: Saturday, June 27, 2020 @ 16:53:29
  Author: felixonmars
Revision: 654993

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-hslua-module-system/repos/community-staging-x86_64/
  haskell-hslua-module-system/repos/community-staging-x86_64/PKGBUILD
(from rev 654992, haskell-hslua-module-system/trunk/PKGBUILD)

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

Copied: haskell-hslua-module-system/repos/community-staging-x86_64/PKGBUILD 
(from rev 654992, haskell-hslua-module-system/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-06-27 16:53:29 UTC (rev 654993)
@@ -0,0 +1,42 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hslua-module-system
+pkgname=haskell-hslua-module-system
+pkgver=0.2.1
+pkgrel=45
+pkgdesc="Lua module wrapper around Haskell's System module"
+url="https://github.com/hslua/hslua-module-system";
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-hslua' 'haskell-temporary')
+makedepends=('ghc' 'haskell-tasty' 'haskell-tasty-hunit')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('296d2ee41760d8ee6025562c408f16e78468a9ca53910982fd346a9cf7b8c6df3340fd2d0a7f6ff5fc41c98f0724a733f0ed8bd64cdd18acfb65aa044cd4a99b')
+
+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 js68/trunk (PKGBUILD)

2020-06-27 Thread Jan Steffens via arch-commits
Date: Saturday, June 27, 2020 @ 16:13:09
  Author: heftig
Revision: 390521

68.9.0-1

Modified:
  js68/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-06-27 16:00:48 UTC (rev 390520)
+++ PKGBUILD2020-06-27 16:13:09 UTC (rev 390521)
@@ -1,7 +1,7 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
+# Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgname=js68
-pkgver=68.8.0
+pkgver=68.9.0
 pkgrel=1
 pkgdesc="JavaScript interpreter and libraries - Version 68"
 arch=(x86_64)
@@ -12,7 +12,7 @@
 checkdepends=(mercurial git)
 _relver=${pkgver}esr
 
source=(https://archive.mozilla.org/pub/firefox/releases/$_relver/source/firefox-$_relver.source.tar.xz{,.asc})
-sha256sums=('fa5b2266d225878d4b35694678f79fd7e7a6d3c62759a40326129bd90f63e842'
+sha256sums=('935105e1a8a97d64daffb372690e2b566b5f07641f01470929dbbc82d20d4407'
 'SKIP')
 validpgpkeys=('14F26682D0916CDD81E37B6D61B7B526D98F0353') # Mozilla Software 
Releases 
 


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

2020-06-27 Thread Felix Yan via arch-commits
Date: Saturday, June 27, 2020 @ 05:19:31
  Author: felixonmars
Revision: 654496

upgpkg: haskell-texmath 0.12.0.2-39: rebuild with ChasingBottoms 1.3.1.9

Modified:
  haskell-texmath/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-06-27 05:17:11 UTC (rev 654495)
+++ PKGBUILD2020-06-27 05:19:31 UTC (rev 654496)
@@ -4,7 +4,7 @@
 _hkgname=texmath
 pkgname=haskell-texmath
 pkgver=0.12.0.2
-pkgrel=38
+pkgrel=39
 pkgdesc="Conversion between formats used to represent mathematics."
 url="https://github.com/jgm/texmath";
 license=("GPL2")


[arch-commits] Commit in haskell-hslua-module-system/trunk (PKGBUILD)

2020-06-27 Thread Felix Yan via arch-commits
Date: Saturday, June 27, 2020 @ 16:53:15
  Author: felixonmars
Revision: 654992

upgpkg: haskell-hslua-module-system 0.2.1-45: rebuild with hslua 1.1.2

Modified:
  haskell-hslua-module-system/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-06-27 16:52:37 UTC (rev 654991)
+++ PKGBUILD2020-06-27 16:53:15 UTC (rev 654992)
@@ -3,7 +3,7 @@
 _hkgname=hslua-module-system
 pkgname=haskell-hslua-module-system
 pkgver=0.2.1
-pkgrel=44
+pkgrel=45
 pkgdesc="Lua module wrapper around Haskell's System module"
 url="https://github.com/hslua/hslua-module-system";
 license=('MIT')


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

2020-06-27 Thread Maxim Baz via arch-commits
Date: Saturday, June 27, 2020 @ 12:21:41
  Author: maximbaz
Revision: 654926

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-06-27 12:21:37 UTC (rev 654925)
+++ PKGBUILD2020-06-27 12:21:41 UTC (rev 654926)
@@ -1,39 +0,0 @@
-# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
-
-_id=browserp...@maximbaz.com
-_name=browserpass-extension
-pkgname=browserpass-firefox
-pkgver=3.4.1
-pkgrel=1
-pkgdesc="Firefox extension for Browserpass, browser extension for zx2c4's pass 
(password manager)"
-arch=('any')
-url="https://github.com/browserpass/${_name}";
-license=('ISC')
-depends=('browserpass')
-source=("${pkgname}-${pkgver}.zip::${url}/releases/download/${pkgver}/${pkgname}-${pkgver}.zip"
-
"${pkgname}-${pkgver}.zip.asc::${url}/releases/download/${pkgver}/${pkgname}-${pkgver}.zip.asc"
-
"https://raw.githubusercontent.com/browserpass/browserpass-extension/master/LICENSE";)
-noextract=("${pkgname}-${pkgver}.zip")
-sha256sums=('99164d7aeb851e05d325b1824f4008d89a415daf5371885d01234971f5ec5901'
-'SKIP'
-'f9fc49e2b3977f857bf3cbfbeb193bab8b2e17545978c162409d5270e6e0405a')
-validpgpkeys=('EB4F9E5A60D32232BB52150C12C87A28FEAC6B20')
-
-prepare() {
-mkdir -p "${pkgname}-${pkgver}"
-bsdtar -vxf "${pkgname}-${pkgver}.zip" -C "${pkgname}-${pkgver}"
-}
-
-package() {
-
_dest="${pkgdir}/usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/${_id}"
-install -dm755 "${_dest}"
-cp -a "${pkgname}-${pkgver}"/* "${_dest}"
-
-# Install host json from browserpass package
-install -dm755 "${pkgdir}/usr/lib/mozilla/native-messaging-hosts/"
-ln -sf 
"/usr/lib/browserpass/hosts/firefox/com.github.browserpass.native.json" 
"${pkgdir}/usr/lib/mozilla/native-messaging-hosts/"
-
-install -Dm644 -t "${pkgdir}/usr/share/licenses/${pkgname}/" LICENSE
-}
-
-# vim:set ts=4 sw=4 et:

Copied: browserpass-firefox/repos/community-any/PKGBUILD (from rev 654925, 
browserpass-firefox/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-06-27 12:21:41 UTC (rev 654926)
@@ -0,0 +1,39 @@
+# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
+
+_id=browserp...@maximbaz.com
+_name=browserpass-extension
+pkgname=browserpass-firefox
+pkgver=3.5.0
+pkgrel=1
+pkgdesc="Firefox extension for Browserpass, browser extension for zx2c4's pass 
(password manager)"
+arch=('any')
+url="https://github.com/browserpass/${_name}";
+license=('ISC')
+depends=('browserpass')
+source=("${pkgname}-${pkgver}.zip::${url}/releases/download/${pkgver}/${pkgname}-${pkgver}.zip"
+
"${pkgname}-${pkgver}.zip.asc::${url}/releases/download/${pkgver}/${pkgname}-${pkgver}.zip.asc"
+
"https://raw.githubusercontent.com/browserpass/browserpass-extension/master/LICENSE";)
+noextract=("${pkgname}-${pkgver}.zip")
+sha256sums=('23dca2cd555f715ecc4ea6e49f82cfc74ac1001caa4339e3b45293fe2ea14bfe'
+'SKIP'
+'f9fc49e2b3977f857bf3cbfbeb193bab8b2e17545978c162409d5270e6e0405a')
+validpgpkeys=('EB4F9E5A60D32232BB52150C12C87A28FEAC6B20')
+
+prepare() {
+mkdir -p "${pkgname}-${pkgver}"
+bsdtar -vxf "${pkgname}-${pkgver}.zip" -C "${pkgname}-${pkgver}"
+}
+
+package() {
+
_dest="${pkgdir}/usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/${_id}"
+install -dm755 "${_dest}"
+cp -a "${pkgname}-${pkgver}"/* "${_dest}"
+
+# Install host json from browserpass package
+install -dm755 "${pkgdir}/usr/lib/mozilla/native-messaging-hosts/"
+ln -sf 
"/usr/lib/browserpass/hosts/firefox/com.github.browserpass.native.json" 
"${pkgdir}/usr/lib/mozilla/native-messaging-hosts/"
+
+install -Dm644 -t "${pkgdir}/usr/share/licenses/${pkgname}/" LICENSE
+}
+
+# vim:set ts=4 sw=4 et:


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

2020-06-27 Thread Felix Yan via arch-commits
Date: Saturday, June 27, 2020 @ 16:52:37
  Author: felixonmars
Revision: 654991

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-hslua/repos/community-staging-x86_64/PKGBUILD (from rev 654990, 
haskell-hslua/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-06-27 16:52:37 UTC (rev 654991)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hslua
+pkgname=haskell-hslua
+pkgver=1.1.2
+pkgrel=1
+pkgdesc="A Lua language interpreter embedding in Haskell"
+url="https://hackage.haskell.org/package/${_hkgname}";
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'lua')
+makedepends=('ghc' 'haskell-quickcheck' 'haskell-quickcheck-instances' 
'haskell-tasty'
+ 'haskell-tasty-expected-failure' 'haskell-tasty-hunit' 
'haskell-tasty-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('886a9d555a034b8fe74d5184457dad9e1bc9bd75662760a0415a75222bd64c556043ce6f98bc11dc1d27c34212f87ad3ce2271d5ff8125c1b5a89263cdf987eb')
+
+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 \
+-fsystem-lua -fpkg-config
+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-hslua/trunk (PKGBUILD)

2020-06-27 Thread Felix Yan via arch-commits
Date: Saturday, June 27, 2020 @ 16:52:22
  Author: felixonmars
Revision: 654990

upgpkg: haskell-hslua 1.1.2-1: rebuild with hslua 1.1.2

Modified:
  haskell-hslua/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-06-27 16:51:10 UTC (rev 654989)
+++ PKGBUILD2020-06-27 16:52:22 UTC (rev 654990)
@@ -3,8 +3,8 @@
 
 _hkgname=hslua
 pkgname=haskell-hslua
-pkgver=1.1.1
-pkgrel=5
+pkgver=1.1.2
+pkgrel=1
 pkgdesc="A Lua language interpreter embedding in Haskell"
 url="https://hackage.haskell.org/package/${_hkgname}";
 license=("MIT")
@@ -13,7 +13,7 @@
 makedepends=('ghc' 'haskell-quickcheck' 'haskell-quickcheck-instances' 
'haskell-tasty'
  'haskell-tasty-expected-failure' 'haskell-tasty-hunit' 
'haskell-tasty-quickcheck')
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
-sha512sums=('9a677cfae5da666a7db3b3512b98f9b5af44d279f1a163239e0dda50ac7020059794e9e61541245bbbf5319031df79c1156b215cf920b095f3081139ea9e92e6')
+sha512sums=('886a9d555a034b8fe74d5184457dad9e1bc9bd75662760a0415a75222bd64c556043ce6f98bc11dc1d27c34212f87ad3ce2271d5ff8125c1b5a89263cdf987eb')
 
 build() {
 cd $_hkgname-$pkgver


[arch-commits] Commit in deepin-icon-theme/repos/community-any (PKGBUILD PKGBUILD)

2020-06-27 Thread Felix Yan via arch-commits
Date: Saturday, June 27, 2020 @ 16:51:10
  Author: felixonmars
Revision: 654989

archrelease: copy trunk to community-any

Added:
  deepin-icon-theme/repos/community-any/PKGBUILD
(from rev 654988, deepin-icon-theme/trunk/PKGBUILD)
Deleted:
  deepin-icon-theme/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-06-27 16:50:39 UTC (rev 654988)
+++ PKGBUILD2020-06-27 16:51:10 UTC (rev 654989)
@@ -1,35 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-icon-theme
-pkgver=2020.06.11
-pkgrel=1
-pkgdesc="Deepin Icons"
-arch=('any')
-url="https://github.com/linuxdeepin/deepin-icon-theme";
-license=('GPL3')
-depends=('papirus-icon-theme')
-replaces=('deepin-cursor-theme')
-conflicts=('deepin-cursor-theme')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-icon-theme/archive/$pkgver.tar.gz";
-
$pkgname-fix-installation.patch::https://github.com/linuxdeepin/deepin-icon-theme/pull/23.patch)
-sha512sums=('3fa43c125b1f6a31148bcfa3eae6a872473f14a6b26cba2f1f45ac9d1937c060ef975cf14f137e5bb7a731b1187735aab82e26d1c838fdd92e0ca8562fec1bcc'
-
'de3365adc47d824ae8f527db7b68f568d623bf5f96ab3f511146594aee57db8fd587dc6d2c5639283f620f6f19fa8dd5b789c703dfa7eaf571bd766e397cba23')
-
-prepare() {
-  patch -d $pkgname-$pkgver -p1 < $pkgname-fix-installation.patch
-  sed -i 's/deepin/bloom/g' $pkgname-$pkgver/tools/hicolor.links
-}
-
-build() {
-  cd $pkgname-$pkgver
-  make hicolor-links
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-
-  cp -a ./Sea ./usr/share/icons/hicolor "$pkgdir"/usr/share/icons/
-}

Copied: deepin-icon-theme/repos/community-any/PKGBUILD (from rev 654988, 
deepin-icon-theme/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-06-27 16:51:10 UTC (rev 654989)
@@ -0,0 +1,36 @@
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-icon-theme
+pkgver=2020.06.27
+pkgrel=1
+pkgdesc="Deepin Icons"
+arch=('any')
+url="https://github.com/linuxdeepin/deepin-icon-theme";
+license=('GPL3')
+depends=('papirus-icon-theme')
+replaces=('deepin-cursor-theme')
+conflicts=('deepin-cursor-theme')
+groups=('deepin')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-icon-theme/archive/$pkgver.tar.gz";
+
$pkgname-fix-installation.patch::https://github.com/linuxdeepin/deepin-icon-theme/pull/23.patch)
+sha512sums=('e0eaf17b3aa33a0fc986cc1c63adcbfdbdec2b00282ad0a0a8248f4f627053991ff8ab1fecd646c3b4e7213b1d2296fd9a94f2de49008dc827c44a8e1f1eb67d'
+
'de3365adc47d824ae8f527db7b68f568d623bf5f96ab3f511146594aee57db8fd587dc6d2c5639283f620f6f19fa8dd5b789c703dfa7eaf571bd766e397cba23')
+
+prepare() {
+  patch -d $pkgname-$pkgver -p1 < $pkgname-fix-installation.patch
+  sed -i 's/deepin/bloom/g' $pkgname-$pkgver/tools/hicolor.links
+}
+
+build() {
+  cd $pkgname-$pkgver
+  make hicolor-links
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+
+  cp -a ./Sea ./usr/share/icons/hicolor "$pkgdir"/usr/share/icons/
+}


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

2020-06-27 Thread Felix Yan via arch-commits
Date: Saturday, June 27, 2020 @ 16:50:39
  Author: felixonmars
Revision: 654988

upgpkg: deepin-icon-theme 2020.06.27-1

Modified:
  deepin-icon-theme/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-06-27 16:47:16 UTC (rev 654987)
+++ PKGBUILD2020-06-27 16:50:39 UTC (rev 654988)
@@ -3,7 +3,7 @@
 # Contributor: Xu Fasheng 
 
 pkgname=deepin-icon-theme
-pkgver=2020.06.11
+pkgver=2020.06.27
 pkgrel=1
 pkgdesc="Deepin Icons"
 arch=('any')
@@ -12,9 +12,10 @@
 depends=('papirus-icon-theme')
 replaces=('deepin-cursor-theme')
 conflicts=('deepin-cursor-theme')
+groups=('deepin')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-icon-theme/archive/$pkgver.tar.gz";
 
$pkgname-fix-installation.patch::https://github.com/linuxdeepin/deepin-icon-theme/pull/23.patch)
-sha512sums=('3fa43c125b1f6a31148bcfa3eae6a872473f14a6b26cba2f1f45ac9d1937c060ef975cf14f137e5bb7a731b1187735aab82e26d1c838fdd92e0ca8562fec1bcc'
+sha512sums=('e0eaf17b3aa33a0fc986cc1c63adcbfdbdec2b00282ad0a0a8248f4f627053991ff8ab1fecd646c3b4e7213b1d2296fd9a94f2de49008dc827c44a8e1f1eb67d'
 
'de3365adc47d824ae8f527db7b68f568d623bf5f96ab3f511146594aee57db8fd587dc6d2c5639283f620f6f19fa8dd5b789c703dfa7eaf571bd766e397cba23')
 
 prepare() {


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

2020-06-27 Thread Morten Linderud via arch-commits
Date: Saturday, June 27, 2020 @ 16:47:07
  Author: foxboron
Revision: 654986

upgpkg: fuse-overlayfs 1.1.1-1

Modified:
  fuse-overlayfs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-06-27 16:29:42 UTC (rev 654985)
+++ PKGBUILD2020-06-27 16:47:07 UTC (rev 654986)
@@ -3,7 +3,7 @@
 
 pkgdesc='FUSE implementation of overlayfs'
 pkgname=fuse-overlayfs
-pkgver=1.1.0
+pkgver=1.1.1
 pkgrel=1
 arch=(x86_64)
 url=https://github.com/containers/fuse-overlayfs
@@ -10,8 +10,9 @@
 license=(GPL3)
 depends=(fuse3)
 makedepends=(git)
-_commit=116d326fffe8fdfb770ff8235f762126eef12d82 # 1.1.0
-source=("git+https://github.com/containers/fuse-overlayfs.git#commit=$_commit?signed";)
+_commit=a7dd94374bab5d064975a974de961bcb4785b97d # 1.1.1
+#source=("git+https://github.com/containers/fuse-overlayfs.git#commit=$_commit?signed";)
+source=("git+https://github.com/containers/fuse-overlayfs.git#tag=v$pkgver?signed";)
 validpgpkeys=('AC404C1C0BF735C63FF4D562263D6DF2E163E1EA')
 sha512sums=('SKIP')
 


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

2020-06-27 Thread Morten Linderud via arch-commits
Date: Saturday, June 27, 2020 @ 16:47:16
  Author: foxboron
Revision: 654987

archrelease: copy trunk to community-x86_64

Added:
  fuse-overlayfs/repos/community-x86_64/PKGBUILD
(from rev 654986, fuse-overlayfs/trunk/PKGBUILD)
Deleted:
  fuse-overlayfs/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-06-27 16:47:07 UTC (rev 654986)
+++ PKGBUILD2020-06-27 16:47:16 UTC (rev 654987)
@@ -1,35 +0,0 @@
-# Maintainer: Morten Linderud 
-# Contributor: Adrian Perez de Castro 
-
-pkgdesc='FUSE implementation of overlayfs'
-pkgname=fuse-overlayfs
-pkgver=1.1.0
-pkgrel=1
-arch=(x86_64)
-url=https://github.com/containers/fuse-overlayfs
-license=(GPL3)
-depends=(fuse3)
-makedepends=(git)
-_commit=116d326fffe8fdfb770ff8235f762126eef12d82 # 1.1.0
-source=("git+https://github.com/containers/fuse-overlayfs.git#commit=$_commit?signed";)
-validpgpkeys=('AC404C1C0BF735C63FF4D562263D6DF2E163E1EA')
-sha512sums=('SKIP')
-
-build () {
-   cd "${pkgname}"
-   autoreconf -fis
-   ./configure \
-   --prefix=/usr \
-   --sbindir=/usr/bin
-   make
-}
-
-check(){
-   cd "${pkgname}"
-   make check
-}
-
-package (){
-   cd "${pkgname}"
-   make DESTDIR="${pkgdir}" install
-}

Copied: fuse-overlayfs/repos/community-x86_64/PKGBUILD (from rev 654986, 
fuse-overlayfs/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-06-27 16:47:16 UTC (rev 654987)
@@ -0,0 +1,36 @@
+# Maintainer: Morten Linderud 
+# Contributor: Adrian Perez de Castro 
+
+pkgdesc='FUSE implementation of overlayfs'
+pkgname=fuse-overlayfs
+pkgver=1.1.1
+pkgrel=1
+arch=(x86_64)
+url=https://github.com/containers/fuse-overlayfs
+license=(GPL3)
+depends=(fuse3)
+makedepends=(git)
+_commit=a7dd94374bab5d064975a974de961bcb4785b97d # 1.1.1
+#source=("git+https://github.com/containers/fuse-overlayfs.git#commit=$_commit?signed";)
+source=("git+https://github.com/containers/fuse-overlayfs.git#tag=v$pkgver?signed";)
+validpgpkeys=('AC404C1C0BF735C63FF4D562263D6DF2E163E1EA')
+sha512sums=('SKIP')
+
+build () {
+   cd "${pkgname}"
+   autoreconf -fis
+   ./configure \
+   --prefix=/usr \
+   --sbindir=/usr/bin
+   make
+}
+
+check(){
+   cd "${pkgname}"
+   make check
+}
+
+package (){
+   cd "${pkgname}"
+   make DESTDIR="${pkgdir}" install
+}


  1   2   3   4   5   6   7   >