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

2020-12-13 Thread Jiachen Yang via arch-commits
Date: Monday, December 14, 2020 @ 07:11:54
  Author: farseerfc
Revision: 774841

archrelease: copy trunk to community-x86_64

Added:
  fcitx-mozc/repos/community-x86_64/PKGBUILD
(from rev 774840, fcitx-mozc/trunk/PKGBUILD)
Deleted:
  fcitx-mozc/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  284 ++---
 1 file changed, 142 insertions(+), 142 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-12-14 07:11:26 UTC (rev 774840)
+++ PKGBUILD2020-12-14 07:11:54 UTC (rev 774841)
@@ -1,142 +0,0 @@
-# $Id$
-# Maintainer: Jiachen Yang 
-# Contributor: Felix Yan 
-# Contributor: ponsfoot 
-# Contributor: UTUMI Hirosi 
-
-## Mozc compile option
-_bldtype=Debug
-_mozc_commit=a79768d
-_japanese_usage_dictionary_commit=a4a6677
-_breakpad_commit=78180df
-_gtest_commit=fbef071
-_gyp_commit=caa6002
-_jsoncpp_commit=8954092
-_protobuf_commit=87f1d9e
-_zinnia_commit=581faa8
-_abseil_cpp_commit=a479881
-
-
-
-_zipcode_rel=201810
-
-_pkgbase=mozc
-pkgname=fcitx-mozc
-pkgdesc="Fcitx Module of A Japanese Input Method for Chromium OS, Windows, Mac 
and Linux (the Open Source Edition of Google Japanese Input)"
-pkgver=2.25.4150.102
-pkgrel=2
-arch=('x86_64')
-url="https://github.com/google/mozc;
-license=('custom')
-depends=('qt5-base' 'fcitx')
-makedepends=('pkg-config' 'python' 'curl' 'gtk2' 'mesa' 'subversion' 'ninja' 
'git' 'clang' 'python-six')
-replaces=('mozc-fcitx')
-conflicts=('mozc' 'mozc-server' 'mozc-utils-gui' 'mozc-fcitx' 'fcitx5-mozc')
-source=(git+https://github.com/fcitx/mozc.git#commit=${_mozc_commit}
-
https://downloads.sourceforge.net/pnsft-aur/x-ken-all-${_zipcode_rel}.zip
-
https://downloads.sourceforge.net/pnsft-aur/jigyosyo-${_zipcode_rel}.zip
-https://download.fcitx-im.org/fcitx-mozc/fcitx-mozc-icon.tar.gz
-
git+https://chromium.googlesource.com/breakpad/breakpad#commit=${_breakpad_commit}
-git+https://github.com/google/googletest.git#commit=${_gtest_commit}
-
git+https://chromium.googlesource.com/external/gyp#commit=${_gyp_commit}
-
git+https://github.com/hiroyuki-komatsu/japanese-usage-dictionary.git#commit=${_japanese_usage_dictionary_commit}
-
git+https://github.com/open-source-parsers/jsoncpp.git#commit=${_jsoncpp_commit}
-git+https://github.com/google/protobuf.git#commit=${_protobuf_commit}
-git+https://github.com/taku910/zinnia.git#commit=${_zinnia_commit}
-
git+https://github.com/abseil/abseil-cpp.git#commit=${_abseil_cpp_commit}
-   )
-sha512sums=('SKIP'
-
'59d0a5e62c698ebc64008f1fb2ed68ebbbd7798d9d95f2e4852261fb09d53e9f8c102f385ed8f2001e3da6c2a0a50d64f1f20e70671948b492f972c487655efe'
-
'daf41f63bd1afc0937beb12aa007ead8a239fabc3af2237e4adf75238b0e0e520f6051f5a98d413a541f901e17a1488eb3fad6d0bba1f1561987365236d64146'
-
'5507c637e5a65c44ccf6e32118b6d16647ece865171b9a77dd3c78e6790fbd97e6b219e68d2e27750e22074eb536bccf8d553c295d939066b72994b86b2f251a'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP')
-validpgpkeys=('2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9')  # Weng Xuetian
-
-prepare() {
-  cd "$srcdir/mozc"
-  git submodule init
-  git config submodule.src/third_party/breakpad.url "$srcdir/breakpad"
-  git config submodule.src/third_party/gtest.url "$srcdir/googletest"
-  git config submodule.src/third_party/gyp.url "$srcdir/gyp"
-  git config submodule.src/third_party/japanese_usage_dictionary.url 
"$srcdir/japanese-usage-dictionary"
-  git config submodule.src/third_party/jsoncpp.url "$srcdir/jsoncpp"
-  git config submodule.src/third_party/protobuf.url "$srcdir/protobuf"
-  git config submodule.src/third_party/zinnia.url "$srcdir/zinnia"
-  git config submodule.src/third_party/abseil-cpp.url "$srcdir/abseil-cpp"
-  git submodule update
-
-  cd src
-  # Generate zip code seed
-  echo "Generating zip code seed..."
-  PYTHONPATH="$PWD:$PYTHONPATH" python dictionary/gen_zip_code_seed.py 
--zip_code="${srcdir}/x-ken-all.csv" --jigyosyo="${srcdir}/JIGYOSYO.CSV" >> 
data/dictionary_oss/dictionary09.txt
-  echo "Done."
-
-  # disable fcitx5 target
-  rm unix/fcitx5/fcitx5.gyp
-  
-  # fix mozc icon for kimpanel
-  sed -i "s|PREFIX|/usr|" unix/fcitx/mozc.conf
-
-  ## use libstdc++ instead of libc++
-  sed "/stdlib=libc++/d;/-lc++/d" -i gyp/common.gypi
-}
-
-build() {
-  # Fix compatibility with google-glog 0.3.3 (symbol conflict)
-  CFLAGS="${CFLAGS} -fvisibility=hidden"
-  CXXFLAGS="${CXXFLAGS} -fvisibility=hidden"
-
-  cd mozc/src
-
-  _targets="server/server.gyp:mozc_server gui/gui.gyp:mozc_tool 
unix/fcitx/fcitx.gyp:fcitx-mozc"
-
-  QTDIR=/usr GYP_DEFINES="document_dir=/usr/share/licenses/$pkgname 
use_libzinnia=1" python build_mozc.py gyp
-  python build_mozc.py build -c $_bldtype $_targets
-
-  # Extract license part of 

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

2020-12-13 Thread Jiachen Yang via arch-commits
Date: Monday, December 14, 2020 @ 07:11:26
  Author: farseerfc
Revision: 774840

upgpkg: fcitx-mozc 2.26.4206.102.e7a97d0-1: fcitx-mozc 2.26.4206

Modified:
  fcitx-mozc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-14 07:04:56 UTC (rev 774839)
+++ PKGBUILD2020-12-14 07:11:26 UTC (rev 774840)
@@ -1,4 +1,3 @@
-# $Id$
 # Maintainer: Jiachen Yang 
 # Contributor: Felix Yan 
 # Contributor: ponsfoot 
@@ -6,25 +5,23 @@
 
 ## Mozc compile option
 _bldtype=Debug
-_mozc_commit=a79768d
-_japanese_usage_dictionary_commit=a4a6677
-_breakpad_commit=78180df
-_gtest_commit=fbef071
+_mozc_commit=e7a97d0
+
+_abseil_cpp_commit=0f3bb46
+_breakpad_commit=216cea7
+_gtest_commit=703bd9c
 _gyp_commit=caa6002
-_jsoncpp_commit=8954092
-_protobuf_commit=87f1d9e
-_zinnia_commit=581faa8
-_abseil_cpp_commit=a479881
+_japanese_usage_dictionary_commit=e5b3425
+_jsoncpp_commit=11086dd
+_protobuf_commit=fde7cf7
 
+_zipcode_rel=202011
 
-
-_zipcode_rel=201810
-
 _pkgbase=mozc
 pkgname=fcitx-mozc
 pkgdesc="Fcitx Module of A Japanese Input Method for Chromium OS, Windows, Mac 
and Linux (the Open Source Edition of Google Japanese Input)"
-pkgver=2.25.4150.102
-pkgrel=2
+pkgver=2.26.4206.102.e7a97d0
+pkgrel=1
 arch=('x86_64')
 url="https://github.com/google/mozc;
 license=('custom')
@@ -33,9 +30,9 @@
 replaces=('mozc-fcitx')
 conflicts=('mozc' 'mozc-server' 'mozc-utils-gui' 'mozc-fcitx' 'fcitx5-mozc')
 source=(git+https://github.com/fcitx/mozc.git#commit=${_mozc_commit}
-
https://downloads.sourceforge.net/pnsft-aur/x-ken-all-${_zipcode_rel}.zip
-
https://downloads.sourceforge.net/pnsft-aur/jigyosyo-${_zipcode_rel}.zip
-https://download.fcitx-im.org/fcitx-mozc/fcitx-mozc-icon.tar.gz
+
https://osdn.net/projects/ponsfoot-aur/storage/mozc/jigyosyo-${_zipcode_rel}.zip
+
https://osdn.net/projects/ponsfoot-aur/storage/mozc/x-ken-all-${_zipcode_rel}.zip
+   https://download.fcitx-im.org/fcitx-mozc/fcitx-mozc-icon.tar.gz
 
git+https://chromium.googlesource.com/breakpad/breakpad#commit=${_breakpad_commit}
 git+https://github.com/google/googletest.git#commit=${_gtest_commit}
 
git+https://chromium.googlesource.com/external/gyp#commit=${_gyp_commit}
@@ -42,12 +39,11 @@
 
git+https://github.com/hiroyuki-komatsu/japanese-usage-dictionary.git#commit=${_japanese_usage_dictionary_commit}
 
git+https://github.com/open-source-parsers/jsoncpp.git#commit=${_jsoncpp_commit}
 git+https://github.com/google/protobuf.git#commit=${_protobuf_commit}
-git+https://github.com/taku910/zinnia.git#commit=${_zinnia_commit}
 
git+https://github.com/abseil/abseil-cpp.git#commit=${_abseil_cpp_commit}
)
 sha512sums=('SKIP'
-
'59d0a5e62c698ebc64008f1fb2ed68ebbbd7798d9d95f2e4852261fb09d53e9f8c102f385ed8f2001e3da6c2a0a50d64f1f20e70671948b492f972c487655efe'
-
'daf41f63bd1afc0937beb12aa007ead8a239fabc3af2237e4adf75238b0e0e520f6051f5a98d413a541f901e17a1488eb3fad6d0bba1f1561987365236d64146'
+
'0ef2d0abd9744900f9a50f941cf1f9b47640f3643c14a1be1761bcf0bd1053cb93560203c25280f58fccbd8ec98b9ca2e21c5d5a59844bbbffc9c988dfcf7bed'
+
'8a35672b4a525d8e4f3303bd83c6bf6075cd4f10e703bf656a4c9328f18a8783c3049b749092e6e8be57eaddce4f889e9dacae9b3b72ba7bb9240a0f5a93fd34'
 
'5507c637e5a65c44ccf6e32118b6d16647ece865171b9a77dd3c78e6790fbd97e6b219e68d2e27750e22074eb536bccf8d553c295d939066b72994b86b2f251a'
 'SKIP'
 'SKIP'
@@ -55,10 +51,17 @@
 'SKIP'
 'SKIP'
 'SKIP'
-'SKIP'
 'SKIP')
 validpgpkeys=('2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9')  # Weng Xuetian
 
+pkgver(){
+  cd mozc
+  # change pkgver is OK because we fixed commit
+  # parse major.minor.buildid from version template, revision is fixed to 102 
for Linux
+  _bzr_ver=$(sed 's/ //g;$ a echo $MAJOR.$MINOR.$BUILD.102' 
src/data/version/mozc_version_template.bzl | source /dev/stdin)
+  printf "%s.%s" "${_bzr_ver}" "${_mozc_commit}"
+}
+
 prepare() {
   cd "$srcdir/mozc"
   git submodule init
@@ -68,7 +71,6 @@
   git config submodule.src/third_party/japanese_usage_dictionary.url 
"$srcdir/japanese-usage-dictionary"
   git config submodule.src/third_party/jsoncpp.url "$srcdir/jsoncpp"
   git config submodule.src/third_party/protobuf.url "$srcdir/protobuf"
-  git config submodule.src/third_party/zinnia.url "$srcdir/zinnia"
   git config submodule.src/third_party/abseil-cpp.url "$srcdir/abseil-cpp"
   git submodule update
 
@@ -81,9 +83,6 @@
   # disable fcitx5 target
   rm unix/fcitx5/fcitx5.gyp
   
-  # fix mozc icon for kimpanel
-  sed -i "s|PREFIX|/usr|" unix/fcitx/mozc.conf
-
   ## use libstdc++ instead of libc++
   sed "/stdlib=libc++/d;/-lc++/d" -i gyp/common.gypi
 }
@@ 

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

2020-12-13 Thread Jiachen Yang via arch-commits
Date: Monday, December 14, 2020 @ 07:04:56
  Author: farseerfc
Revision: 774839

archrelease: copy trunk to community-x86_64

Added:
  fcitx5-mozc/repos/community-x86_64/PKGBUILD
(from rev 774838, fcitx5-mozc/trunk/PKGBUILD)
Deleted:
  fcitx5-mozc/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  255 +
 1 file changed, 123 insertions(+), 132 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-12-14 07:04:23 UTC (rev 774838)
+++ PKGBUILD2020-12-14 07:04:56 UTC (rev 774839)
@@ -1,132 +0,0 @@
-# $Id$
-# Maintainer: Jiachen Yang 
-# Contributor: Felix Yan 
-# Contributor: ponsfoot 
-# Contributor: UTUMI Hirosi 
-
-## Mozc compile option
-_bldtype=Debug
-_mozc_commit=a79768d
-_japanese_usage_dictionary_commit=a4a6677
-_breakpad_commit=78180df
-_gtest_commit=fbef071
-_gyp_commit=caa6002
-_jsoncpp_commit=8954092
-_protobuf_commit=87f1d9e
-_zinnia_commit=581faa8
-_abseil_cpp_commit=a479881
-
-
-
-_zipcode_rel=201810
-
-_pkgbase=mozc
-pkgname=fcitx5-mozc
-pkgdesc="Fcitx5 Module of A Japanese Input Method for Chromium OS, Windows, 
Mac and Linux (the Open Source Edition of Google Japanese Input)"
-pkgver=2.25.4150.102+0.0.0.20201110
-pkgrel=1
-arch=('x86_64')
-url="https://github.com/google/mozc;
-license=('custom')
-depends=('qt5-base' 'fcitx5')
-makedepends=('pkg-config' 'python' 'curl' 'gtk2' 'mesa' 'subversion' 'ninja' 
'git' 'clang' 'python-six')
-replaces=('mozc-fcitx')
-conflicts=('mozc' 'mozc-server' 'mozc-utils-gui' 'mozc-fcitx' 'fcitx-mozc')
-source=(git+https://github.com/fcitx/mozc.git#commit=${_mozc_commit}
-
https://downloads.sourceforge.net/pnsft-aur/x-ken-all-${_zipcode_rel}.zip
-
https://downloads.sourceforge.net/pnsft-aur/jigyosyo-${_zipcode_rel}.zip
-https://download.fcitx-im.org/fcitx-mozc/fcitx-mozc-icon.tar.gz
-
git+https://chromium.googlesource.com/breakpad/breakpad#commit=${_breakpad_commit}
-git+https://github.com/google/googletest.git#commit=${_gtest_commit}
-
git+https://chromium.googlesource.com/external/gyp#commit=${_gyp_commit}
-
git+https://github.com/hiroyuki-komatsu/japanese-usage-dictionary.git#commit=${_japanese_usage_dictionary_commit}
-
git+https://github.com/open-source-parsers/jsoncpp.git#commit=${_jsoncpp_commit}
-git+https://github.com/google/protobuf.git#commit=${_protobuf_commit}
-git+https://github.com/taku910/zinnia.git#commit=${_zinnia_commit}
-
git+https://github.com/abseil/abseil-cpp.git#commit=${_abseil_cpp_commit}
-   )
-sha512sums=('SKIP'
-
'59d0a5e62c698ebc64008f1fb2ed68ebbbd7798d9d95f2e4852261fb09d53e9f8c102f385ed8f2001e3da6c2a0a50d64f1f20e70671948b492f972c487655efe'
-
'daf41f63bd1afc0937beb12aa007ead8a239fabc3af2237e4adf75238b0e0e520f6051f5a98d413a541f901e17a1488eb3fad6d0bba1f1561987365236d64146'
-
'5507c637e5a65c44ccf6e32118b6d16647ece865171b9a77dd3c78e6790fbd97e6b219e68d2e27750e22074eb536bccf8d553c295d939066b72994b86b2f251a'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP')
-validpgpkeys=('2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9')  # Weng Xuetian
-
-prepare() {
-  cd "$srcdir/mozc"
-  git submodule init
-  git config submodule.src/third_party/breakpad.url "$srcdir/breakpad"
-  git config submodule.src/third_party/gtest.url "$srcdir/googletest"
-  git config submodule.src/third_party/gyp.url "$srcdir/gyp"
-  git config submodule.src/third_party/japanese_usage_dictionary.url 
"$srcdir/japanese-usage-dictionary"
-  git config submodule.src/third_party/jsoncpp.url "$srcdir/jsoncpp"
-  git config submodule.src/third_party/protobuf.url "$srcdir/protobuf"
-  git config submodule.src/third_party/zinnia.url "$srcdir/zinnia"
-  git config submodule.src/third_party/abseil-cpp.url "$srcdir/abseil-cpp"
-  git submodule update
-
-  cd src
-  # Generate zip code seed
-  echo "Generating zip code seed..."
-  PYTHONPATH="$PWD:$PYTHONPATH" python dictionary/gen_zip_code_seed.py 
--zip_code="${srcdir}/x-ken-all.csv" --jigyosyo="${srcdir}/JIGYOSYO.CSV" >> 
data/dictionary_oss/dictionary09.txt
-  echo "Done."
-
-  # disable fcitx4 target
-  rm unix/fcitx/fcitx.gyp
-  
-  # fix mozc icon for kimpanel
-  sed -i "s|PREFIX|/usr|" unix/fcitx5/mozc.conf
-
-  ## use libstdc++ instead of libc++
-  sed "/stdlib=libc++/d;/-lc++/d" -i gyp/common.gypi
-}
-
-build() {
-  # Fix compatibility with google-glog 0.3.3 (symbol conflict)
-  CFLAGS="${CFLAGS} -fvisibility=hidden"
-  CXXFLAGS="${CXXFLAGS} -fvisibility=hidden"
-
-  cd mozc/src
-
-  _targets="server/server.gyp:mozc_server gui/gui.gyp:mozc_tool 
unix/fcitx5/fcitx5.gyp:fcitx5-mozc"
-
-  QTDIR=/usr GYP_DEFINES="document_dir=/usr/share/licenses/$pkgname 
use_libzinnia=1" python build_mozc.py gyp
-  python build_mozc.py build -c $_bldtype $_targets
-
-  # 

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

2020-12-13 Thread Jiachen Yang via arch-commits
Date: Monday, December 14, 2020 @ 07:04:23
  Author: farseerfc
Revision: 774838

upgpkg: fcitx5-mozc 2.26.4206.102.e7a97d0-1: fcitx5-mozc 2.26.4206

Modified:
  fcitx5-mozc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-14 05:11:20 UTC (rev 774837)
+++ PKGBUILD2020-12-14 07:04:23 UTC (rev 774838)
@@ -1,4 +1,3 @@
-# $Id$
 # Maintainer: Jiachen Yang 
 # Contributor: Felix Yan 
 # Contributor: ponsfoot 
@@ -5,25 +4,23 @@
 # Contributor: UTUMI Hirosi 
 
 ## Mozc compile option
-_bldtype=Debug
-_mozc_commit=a79768d
-_japanese_usage_dictionary_commit=a4a6677
-_breakpad_commit=78180df
-_gtest_commit=fbef071
+_bldtype=Release
+_mozc_commit=e7a97d0
+
+_abseil_cpp_commit=0f3bb46
+_breakpad_commit=216cea7
+_gtest_commit=703bd9c
 _gyp_commit=caa6002
-_jsoncpp_commit=8954092
-_protobuf_commit=87f1d9e
-_zinnia_commit=581faa8
-_abseil_cpp_commit=a479881
+_japanese_usage_dictionary_commit=e5b3425
+_jsoncpp_commit=11086dd
+_protobuf_commit=fde7cf7
 
+_zipcode_rel=202011
 
-
-_zipcode_rel=201810
-
 _pkgbase=mozc
 pkgname=fcitx5-mozc
 pkgdesc="Fcitx5 Module of A Japanese Input Method for Chromium OS, Windows, 
Mac and Linux (the Open Source Edition of Google Japanese Input)"
-pkgver=2.25.4150.102+0.0.0.20201110
+pkgver=2.26.4206.102.e7a97d0
 pkgrel=1
 arch=('x86_64')
 url="https://github.com/google/mozc;
@@ -33,9 +30,8 @@
 replaces=('mozc-fcitx')
 conflicts=('mozc' 'mozc-server' 'mozc-utils-gui' 'mozc-fcitx' 'fcitx-mozc')
 source=(git+https://github.com/fcitx/mozc.git#commit=${_mozc_commit}
-
https://downloads.sourceforge.net/pnsft-aur/x-ken-all-${_zipcode_rel}.zip
-
https://downloads.sourceforge.net/pnsft-aur/jigyosyo-${_zipcode_rel}.zip
-https://download.fcitx-im.org/fcitx-mozc/fcitx-mozc-icon.tar.gz
+
https://osdn.net/projects/ponsfoot-aur/storage/mozc/jigyosyo-${_zipcode_rel}.zip
+
https://osdn.net/projects/ponsfoot-aur/storage/mozc/x-ken-all-${_zipcode_rel}.zip
 
git+https://chromium.googlesource.com/breakpad/breakpad#commit=${_breakpad_commit}
 git+https://github.com/google/googletest.git#commit=${_gtest_commit}
 
git+https://chromium.googlesource.com/external/gyp#commit=${_gyp_commit}
@@ -42,13 +38,11 @@
 
git+https://github.com/hiroyuki-komatsu/japanese-usage-dictionary.git#commit=${_japanese_usage_dictionary_commit}
 
git+https://github.com/open-source-parsers/jsoncpp.git#commit=${_jsoncpp_commit}
 git+https://github.com/google/protobuf.git#commit=${_protobuf_commit}
-git+https://github.com/taku910/zinnia.git#commit=${_zinnia_commit}
 
git+https://github.com/abseil/abseil-cpp.git#commit=${_abseil_cpp_commit}
)
 sha512sums=('SKIP'
-
'59d0a5e62c698ebc64008f1fb2ed68ebbbd7798d9d95f2e4852261fb09d53e9f8c102f385ed8f2001e3da6c2a0a50d64f1f20e70671948b492f972c487655efe'
-
'daf41f63bd1afc0937beb12aa007ead8a239fabc3af2237e4adf75238b0e0e520f6051f5a98d413a541f901e17a1488eb3fad6d0bba1f1561987365236d64146'
-
'5507c637e5a65c44ccf6e32118b6d16647ece865171b9a77dd3c78e6790fbd97e6b219e68d2e27750e22074eb536bccf8d553c295d939066b72994b86b2f251a'
+
'0ef2d0abd9744900f9a50f941cf1f9b47640f3643c14a1be1761bcf0bd1053cb93560203c25280f58fccbd8ec98b9ca2e21c5d5a59844bbbffc9c988dfcf7bed'
+
'8a35672b4a525d8e4f3303bd83c6bf6075cd4f10e703bf656a4c9328f18a8783c3049b749092e6e8be57eaddce4f889e9dacae9b3b72ba7bb9240a0f5a93fd34'
 'SKIP'
 'SKIP'
 'SKIP'
@@ -55,10 +49,17 @@
 'SKIP'
 'SKIP'
 'SKIP'
-'SKIP'
 'SKIP')
 validpgpkeys=('2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9')  # Weng Xuetian
 
+pkgver(){
+  cd mozc
+  # change pkgver is OK because we fixed commit
+  # parse major.minor.buildid from version template, revision is fixed to 102 
for Linux
+  _bzr_ver=$(sed 's/ //g;$ a echo $MAJOR.$MINOR.$BUILD.102' 
src/data/version/mozc_version_template.bzl | source /dev/stdin)
+  printf "%s.%s" "${_bzr_ver}" "${_mozc_commit}"
+}
+
 prepare() {
   cd "$srcdir/mozc"
   git submodule init
@@ -68,10 +69,12 @@
   git config submodule.src/third_party/japanese_usage_dictionary.url 
"$srcdir/japanese-usage-dictionary"
   git config submodule.src/third_party/jsoncpp.url "$srcdir/jsoncpp"
   git config submodule.src/third_party/protobuf.url "$srcdir/protobuf"
-  git config submodule.src/third_party/zinnia.url "$srcdir/zinnia"
   git config submodule.src/third_party/abseil-cpp.url "$srcdir/abseil-cpp"
   git submodule update
 
+  ## fix icon install
+  sed 
's|32x32/apps/fcitx-mozc-alpha-full.png|48x48/apps/fcitx-mozc-alpha-full.png|' 
-i scripts/install_fcitx5_icons
+
   cd src
   # Generate zip code seed
   echo "Generating zip code seed..."
@@ -107,6 +110,7 @@
 package() {
   cd mozc/src
 

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

2020-12-13 Thread Daniel M. Capella via arch-commits
Date: Monday, December 14, 2020 @ 05:11:20
  Author: polyzen
Revision: 774837

archrelease: copy trunk to community-any

Added:
  yamllint/repos/community-any/PKGBUILD
(from rev 774836, yamllint/trunk/PKGBUILD)
Deleted:
  yamllint/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-12-14 05:10:54 UTC (rev 774836)
+++ PKGBUILD2020-12-14 05:11:20 UTC (rev 774837)
@@ -1,30 +0,0 @@
-# Maintainer: Daniel M. Capella 
-
-pkgname=yamllint
-pkgver=1.25.0
-pkgrel=3
-pkgdesc='Linter for YAML files'
-arch=('any')
-url=https://github.com/adrienverge/yamllint
-license=('GPL3')
-depends=('python-pathspec' 'python-setuptools' 'python-yaml')
-checkdepends=('python-nose')
-source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz;)
-sha256sums=('b1549cbe5b47b6ba67bdeea31720f5c51431a4d0c076c1557952d841f7223519')
-
-build() {
-  cd $pkgname-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd $pkgname-$pkgver
-  python -m unittest discover tests
-}
-
-package() {
-  cd $pkgname-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}
-
-# vim:set sw=2 et:

Copied: yamllint/repos/community-any/PKGBUILD (from rev 774836, 
yamllint/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-12-14 05:11:20 UTC (rev 774837)
@@ -0,0 +1,31 @@
+# Maintainer: Daniel M. Capella 
+
+pkgname=yamllint
+pkgver=1.25.0
+pkgrel=4
+pkgdesc='Linter for YAML files'
+arch=('any')
+url=https://github.com/adrienverge/yamllint
+license=('GPL3')
+depends=('python-pathspec' 'python-setuptools' 'python-yaml')
+checkdepends=('python-nose')
+source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz;)
+sha256sums=('b1549cbe5b47b6ba67bdeea31720f5c51431a4d0c076c1557952d841f7223519')
+
+build() {
+  cd $pkgname-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd $pkgname-$pkgver
+  python -m unittest discover tests
+}
+
+package() {
+  cd $pkgname-$pkgver
+  export PYTHONHASHSEED=0
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}
+
+# vim:set sw=2 et:


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

2020-12-13 Thread Daniel M. Capella via arch-commits
Date: Monday, December 14, 2020 @ 05:10:54
  Author: polyzen
Revision: 774836

archrelease: copy trunk to community-any

Added:
  urlwatch/repos/community-any/PKGBUILD
(from rev 774835, urlwatch/trunk/PKGBUILD)
Deleted:
  urlwatch/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-12-14 05:10:26 UTC (rev 774835)
+++ PKGBUILD2020-12-14 05:10:54 UTC (rev 774836)
@@ -1,53 +0,0 @@
-# Maintainer: Daniel M. Capella 
-# Contributor: Balló György 
-# Contributor: Maxim Baz <$pkgname at maximbaz dot com>
-# Contributor: Skydrome 
-# Contributor: Allan McRae 
-
-pkgname=urlwatch
-pkgver=2.21
-pkgrel=5
-pkgdesc='Tool for monitoring webpages for updates'
-arch=('any')
-url=https://thp.io/2008/urlwatch/
-license=('BSD')
-depends=('python-appdirs' 'python-cssselect' 'python-keyring' 'python-lxml'
- 'python-minidb' 'python-requests' 'python-setuptools' 'python-yaml')
-optdepends=('lynx: for one of the html2text filter methods'
-'python-beautifulsoup4: for the beautify filter and one of the 
html2text filter methods'
-'python-cssbeautifier: for the beautify filter'
-'python-html2text: for one of the html2text filter methods'
-'python-jsbeautifier: for the beautify filter'
-'python-pdftotext: for the pdf2text filter'
-'python-pytesseract: for the ocr filter')
-checkdepends=('python-docutils' 'python-pycodestyle' 'python-pytesseract'
-  'python-pytest')
-source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz;
-
'https://github.com/thp/urlwatch/commit/af522e4f763e76faa80db7c796806f1ea6661cc6.patch')
-sha256sums=('c259e0169cc99114b54470d08a8312473159dfdbed1d712d1a222fd8a9d7291a'
-'b968b2a781f888e709dd6d7ac0292da81abff7ab741fe702450bf6be5c710df4')
-b2sums=('9e0f39e51e413355974ce886e019eb86dd07fb9a75c02c5c711ccdbba573c2e6b218cf11b42c714172ad00288ea0219a079fd9b8016d33c29f087537d160e80d'
-
'28717a102aadbdfd8051ee78c4b25b02647d0bd3dce0c8039950ad30716de3e38bd5c1f021ee90401547720bca629717d161c3854cc01ee4d19ce7335797bea8')
-
-prepare() {
-  cd $pkgname-$pkgver
-  patch --forward --strip=1 
--input=../af522e4f763e76faa80db7c796806f1ea6661cc6.patch
-}
-
-build() {
-  cd $pkgname-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd $pkgname-$pkgver
-  pytest -k 'not test_pep8_conformance'
-}
-
-package() {
-  cd $pkgname-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-  install -Dm644 -t "$pkgdir"/usr/share/licenses/$pkgname COPYING
-}
-
-# vim:set ts=2 sw=2 et:

Copied: urlwatch/repos/community-any/PKGBUILD (from rev 774835, 
urlwatch/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-12-14 05:10:54 UTC (rev 774836)
@@ -0,0 +1,54 @@
+# Maintainer: Daniel M. Capella 
+# Contributor: Balló György 
+# Contributor: Maxim Baz <$pkgname at maximbaz dot com>
+# Contributor: Skydrome 
+# Contributor: Allan McRae 
+
+pkgname=urlwatch
+pkgver=2.21
+pkgrel=6
+pkgdesc='Tool for monitoring webpages for updates'
+arch=('any')
+url=https://thp.io/2008/urlwatch/
+license=('BSD')
+depends=('python-appdirs' 'python-cssselect' 'python-keyring' 'python-lxml'
+ 'python-minidb' 'python-requests' 'python-setuptools' 'python-yaml')
+optdepends=('lynx: for one of the html2text filter methods'
+'python-beautifulsoup4: for the beautify filter and one of the 
html2text filter methods'
+'python-cssbeautifier: for the beautify filter'
+'python-html2text: for one of the html2text filter methods'
+'python-jsbeautifier: for the beautify filter'
+'python-pdftotext: for the pdf2text filter'
+'python-pytesseract: for the ocr filter')
+checkdepends=('python-docutils' 'python-pycodestyle' 'python-pytesseract'
+  'python-pytest')
+source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz;
+
'https://github.com/thp/urlwatch/commit/af522e4f763e76faa80db7c796806f1ea6661cc6.patch')
+sha256sums=('c259e0169cc99114b54470d08a8312473159dfdbed1d712d1a222fd8a9d7291a'
+'b968b2a781f888e709dd6d7ac0292da81abff7ab741fe702450bf6be5c710df4')
+b2sums=('9e0f39e51e413355974ce886e019eb86dd07fb9a75c02c5c711ccdbba573c2e6b218cf11b42c714172ad00288ea0219a079fd9b8016d33c29f087537d160e80d'
+
'28717a102aadbdfd8051ee78c4b25b02647d0bd3dce0c8039950ad30716de3e38bd5c1f021ee90401547720bca629717d161c3854cc01ee4d19ce7335797bea8')
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch --forward --strip=1 
--input=../af522e4f763e76faa80db7c796806f1ea6661cc6.patch
+}
+
+build() {
+  cd $pkgname-$pkgver
+  python setup.py 

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

2020-12-13 Thread Daniel M. Capella via arch-commits
Date: Monday, December 14, 2020 @ 05:10:26
  Author: polyzen
Revision: 774835

archrelease: copy trunk to community-any

Added:
  rofimoji/repos/community-any/PKGBUILD
(from rev 774834, rofimoji/trunk/PKGBUILD)
  rofimoji/repos/community-any/rofimoji.install
(from rev 774834, rofimoji/trunk/rofimoji.install)
Deleted:
  rofimoji/repos/community-any/PKGBUILD
  rofimoji/repos/community-any/rofimoji.install

--+
 PKGBUILD |   63 ++---
 rofimoji.install |   12 +-
 2 files changed, 38 insertions(+), 37 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-12-14 05:09:56 UTC (rev 774834)
+++ PKGBUILD2020-12-14 05:10:26 UTC (rev 774835)
@@ -1,31 +0,0 @@
-# Maintainer: Daniel M. Capella 
-
-pkgname=rofimoji
-pkgver=4.3.0
-pkgrel=3
-pkgdesc='Character picker for rofi'
-arch=('any')
-url=https://github.com/fdw/rofimoji
-license=('MIT')
-depends=('emoji-font' 'python-configargparse' 'python-xdg' 'rofi')
-makedepends=('python-pip' 'python-setuptools' 'python-wheel')
-optdepends=('wl-copy: for the Wayland clipboarder'
-'wtype: for the Wayland typer'
-'xclip: for one of the X.Org clipboarders'
-'xsel: for one of the X.Org clipboarders'
-'xdotool: for the X.Org typer')
-install=$pkgname.install
-source=("$url/archive/$pkgver/rofimoji-$pkgver.tar.gz")
-b2sums=('b432dab44de5046dc26bd95d583102bec9373da6891a2d44131e6fc391c9bf980530d33f25fce66917496cb772c66ba840de87c61443cf12198b52cd32f6b694')
-
-build() {
-  cd rofimoji-$pkgver
-  python setup.py bdist_wheel
-}
-
-package() {
-  cd rofimoji-$pkgver
-  PIP_CONFIG_FILE=/dev/null pip install --isolated --root="$pkgdir" 
--ignore-installed --no-deps dist/*.whl
-}
-
-# vim:set ts=2 sw=2 et:

Copied: rofimoji/repos/community-any/PKGBUILD (from rev 774834, 
rofimoji/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-12-14 05:10:26 UTC (rev 774835)
@@ -0,0 +1,32 @@
+# Maintainer: Daniel M. Capella 
+
+pkgname=rofimoji
+pkgver=4.3.0
+pkgrel=4
+pkgdesc='Character picker for rofi'
+arch=('any')
+url=https://github.com/fdw/rofimoji
+license=('MIT')
+depends=('emoji-font' 'python-configargparse' 'python-xdg' 'rofi')
+makedepends=('python-pip' 'python-setuptools' 'python-wheel')
+optdepends=('wl-copy: for the Wayland clipboarder'
+'wtype: for the Wayland typer'
+'xclip: for one of the X.Org clipboarders'
+'xsel: for one of the X.Org clipboarders'
+'xdotool: for the X.Org typer')
+install=$pkgname.install
+source=("$url/archive/$pkgver/rofimoji-$pkgver.tar.gz")
+b2sums=('b432dab44de5046dc26bd95d583102bec9373da6891a2d44131e6fc391c9bf980530d33f25fce66917496cb772c66ba840de87c61443cf12198b52cd32f6b694')
+
+build() {
+  cd rofimoji-$pkgver
+  python setup.py bdist_wheel
+}
+
+package() {
+  cd rofimoji-$pkgver
+  export PYTHONHASHSEED=0
+  PIP_CONFIG_FILE=/dev/null pip install --isolated --root="$pkgdir" 
--ignore-installed --no-deps dist/*.whl
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: rofimoji.install
===
--- rofimoji.install2020-12-14 05:09:56 UTC (rev 774834)
+++ rofimoji.install2020-12-14 05:10:26 UTC (rev 774835)
@@ -1,6 +0,0 @@
-post_install() {
-  cat << EOF
-rofimoji requires that you have an appropriate "clipboarder" and "typer"
-installed for your display server.
-EOF
-}

Copied: rofimoji/repos/community-any/rofimoji.install (from rev 774834, 
rofimoji/trunk/rofimoji.install)
===
--- rofimoji.install(rev 0)
+++ rofimoji.install2020-12-14 05:10:26 UTC (rev 774835)
@@ -0,0 +1,6 @@
+post_install() {
+  cat << EOF
+rofimoji requires that you have an appropriate "clipboarder" and "typer"
+installed for your display server.
+EOF
+}


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

2020-12-13 Thread Daniel M. Capella via arch-commits
Date: Monday, December 14, 2020 @ 05:09:56
  Author: polyzen
Revision: 774834

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-12-14 05:09:17 UTC (rev 774833)
+++ PKGBUILD2020-12-14 05:09:56 UTC (rev 774834)
@@ -1,56 +0,0 @@
-# Maintainer: Johannes Löthberg 
-# Maintainer: Daniel M. Capella 
-# Contributor: Sébastien Luttringer
-# Contributor: Angel Velasquez 
-# Contributor: Fabio Volpe 
-
-pkgname=python-sphinx
-pkgver=3.3.1
-pkgrel=2
-pkgdesc='Python documentation generator'
-arch=('any')
-url=http://www.sphinx-doc.org/
-license=('BSD')
-depends=('python-babel'
- 'python-docutils'
- 'python-imagesize'
- 'python-jinja'
- 'python-pygments'
- 'python-requests'
- 'python-setuptools'
- 'python-snowballstemmer'
- 'python-sphinx-alabaster-theme'
- 
'python-sphinxcontrib-'{{apple,dev,html}help,jsmath,qthelp,serializinghtml})
-checkdepends=('cython'
-  'imagemagick' 'librsvg'
-  'python-html5lib'
-  'python-pytest'
-  'texlive-fontsextra' 'texlive-latexextra')
-optdepends=('imagemagick: for ext.imgconverter'
-'texlive-latexextra: for generation of PDF documentation')
-source=("https://pypi.org/packages/source/S/Sphinx/Sphinx-$pkgver.tar.gz"{,.asc})
-sha256sums=('1e8d592225447104d1172be415bc2972bd1357e3e12fdc76edf2261105db4300'
-'SKIP')
-b2sums=('4eb9d8c9dccfd83690252ad6be05a3e69006e1e801bb0b37b77fb6ccf998f3a2fd99a90eba890cfb2baa5545ac0c2734fcd72d602fc2d1091e6754337f241b34'
-'SKIP')
-validpgpkeys=('8A11B79A5D0D749A66F0A030102C2C17498D6B9E'  # Takeshi KOMIYA
-  'E9BEABB07E7B9CC3F56E62C91425F8CE5EBA0E07') # Takayuki 
Shimizukawa
-
-build() {
-  cd Sphinx-$pkgver
-  make build
-}
-
-check() {
-  cd Sphinx-$pkgver
-  LC_ALL="en_US.UTF-8" make test
-  rm -r tests
-}
-
-package() {
-  cd Sphinx-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-  install -Dm644 -t "$pkgdir"/usr/share/licenses/$pkgname LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-sphinx/repos/community-any/PKGBUILD (from rev 774833, 
python-sphinx/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-12-14 05:09:56 UTC (rev 774834)
@@ -0,0 +1,57 @@
+# Maintainer: Johannes Löthberg 
+# Maintainer: Daniel M. Capella 
+# Contributor: Sébastien Luttringer
+# Contributor: Angel Velasquez 
+# Contributor: Fabio Volpe 
+
+pkgname=python-sphinx
+pkgver=3.3.1
+pkgrel=3
+pkgdesc='Python documentation generator'
+arch=('any')
+url=http://www.sphinx-doc.org/
+license=('BSD')
+depends=('python-babel'
+ 'python-docutils'
+ 'python-imagesize'
+ 'python-jinja'
+ 'python-pygments'
+ 'python-requests'
+ 'python-setuptools'
+ 'python-snowballstemmer'
+ 'python-sphinx-alabaster-theme'
+ 
'python-sphinxcontrib-'{{apple,dev,html}help,jsmath,qthelp,serializinghtml})
+checkdepends=('cython'
+  'imagemagick' 'librsvg'
+  'python-html5lib'
+  'python-pytest'
+  'texlive-fontsextra' 'texlive-latexextra')
+optdepends=('imagemagick: for ext.imgconverter'
+'texlive-latexextra: for generation of PDF documentation')
+source=("https://pypi.org/packages/source/S/Sphinx/Sphinx-$pkgver.tar.gz"{,.asc})
+sha256sums=('1e8d592225447104d1172be415bc2972bd1357e3e12fdc76edf2261105db4300'
+'SKIP')
+b2sums=('4eb9d8c9dccfd83690252ad6be05a3e69006e1e801bb0b37b77fb6ccf998f3a2fd99a90eba890cfb2baa5545ac0c2734fcd72d602fc2d1091e6754337f241b34'
+'SKIP')
+validpgpkeys=('8A11B79A5D0D749A66F0A030102C2C17498D6B9E'  # Takeshi KOMIYA
+  'E9BEABB07E7B9CC3F56E62C91425F8CE5EBA0E07') # Takayuki 
Shimizukawa
+
+build() {
+  cd Sphinx-$pkgver
+  make build
+}
+
+check() {
+  cd Sphinx-$pkgver
+  LC_ALL="en_US.UTF-8" make test
+  rm -r tests
+}
+
+package() {
+  cd Sphinx-$pkgver
+  export PYTHONHASHSEED=0
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm644 -t "$pkgdir"/usr/share/licenses/$pkgname LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


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

2020-12-13 Thread Daniel M. Capella via arch-commits
Date: Monday, December 14, 2020 @ 05:09:17
  Author: polyzen
Revision: 774833

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-12-14 05:08:51 UTC (rev 774832)
+++ PKGBUILD2020-12-14 05:09:17 UTC (rev 774833)
@@ -1,33 +0,0 @@
-# Maintainer: Daniel M. Capella 
-# Contributor: Christoph Brill 
-
-_name=pytesseract
-pkgname=python-pytesseract
-pkgver=0.3.6
-pkgrel=3
-pkgdesc='Python wrapper for Google Tesseract'
-arch=('any')
-url=https://github.com/madmaze/pytesseract
-license=('Apache')
-depends=('python-pillow' 'python-setuptools' 'tesseract')
-checkdepends=('python-pytest' 'tesseract-data-eng' 'tesseract-data-fra')
-source=("$url/archive/v.$pkgver/$_name-v.$pkgver.tar.gz")
-sha512sums=('002777ce3c9609455aca36e0e17f19ead32c5d48b8bc04081b63aa1520104572ecdf975a85fbf010e29bd6eb66db810f1b88ee8e852de274dc9fdea96acf80bf')
-
-build() {
-  cd $_name-v.$pkgver
-  python setup.py build
-}
-
-check() {
-  cd $_name-v.$pkgver
-  mkdir -p temp
-  local sitepackages=$(python -c "import site; 
print(site.getsitepackages()[0])")
-  python setup.py install --skip-build --root=temp
-  PATH="$PWD/temp/usr/bin:$PATH" PYTHONPATH="$PWD/temp/$sitepackages" pytest 
-k 'not test_image_to_data_common_output[dict]' # 
https://github.com/madmaze/pytesseract/issues/298
-}
-
-package() {
-  cd $_name-v.$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}

Copied: python-pytesseract/repos/community-any/PKGBUILD (from rev 774832, 
python-pytesseract/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-12-14 05:09:17 UTC (rev 774833)
@@ -0,0 +1,34 @@
+# Maintainer: Daniel M. Capella 
+# Contributor: Christoph Brill 
+
+_name=pytesseract
+pkgname=python-pytesseract
+pkgver=0.3.6
+pkgrel=4
+pkgdesc='Python wrapper for Google Tesseract'
+arch=('any')
+url=https://github.com/madmaze/pytesseract
+license=('Apache')
+depends=('python-pillow' 'python-setuptools' 'tesseract')
+checkdepends=('python-pytest' 'tesseract-data-eng' 'tesseract-data-fra')
+source=("$url/archive/v.$pkgver/$_name-v.$pkgver.tar.gz")
+sha512sums=('002777ce3c9609455aca36e0e17f19ead32c5d48b8bc04081b63aa1520104572ecdf975a85fbf010e29bd6eb66db810f1b88ee8e852de274dc9fdea96acf80bf')
+
+build() {
+  cd $_name-v.$pkgver
+  python setup.py build
+}
+
+check() {
+  cd $_name-v.$pkgver
+  mkdir -p temp
+  local sitepackages=$(python -c "import site; 
print(site.getsitepackages()[0])")
+  python setup.py install --skip-build --root=temp
+  PATH="$PWD/temp/usr/bin:$PATH" PYTHONPATH="$PWD/temp/$sitepackages" pytest 
-k 'not test_image_to_data_common_output[dict]' # 
https://github.com/madmaze/pytesseract/issues/298
+}
+
+package() {
+  cd $_name-v.$pkgver
+  export PYTHONHASHSEED=0
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}


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

2020-12-13 Thread Daniel M. Capella via arch-commits
Date: Monday, December 14, 2020 @ 05:08:51
  Author: polyzen
Revision: 774832

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-12-14 05:08:22 UTC (rev 774831)
+++ PKGBUILD2020-12-14 05:08:51 UTC (rev 774832)
@@ -1,32 +0,0 @@
-# Maintainer: Daniel M. Capella 
-# Contributor:  Chris Severance aur.severach aATt spamgourmet dott com
-
-_name=pathspec
-pkgname=python-pathspec
-pkgver=0.8.1
-pkgrel=3
-pkgdesc='Utility library for gitignore style pattern matching of file paths'
-arch=('any')
-url=https://github.com/cpburnz/python-path-specification
-license=('MPL2')
-depends=('python')
-makedepends=('python-setuptools')
-source=("https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz;)
-sha256sums=('86379d6b86d75816baba717e64b1a3a3469deb93bb76d613c9ce79edc5cb68fd')
-
-build() {
-  cd $_name-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd $_name-$pkgver
-  python -m unittest discover pathspec/tests
-}
-
-package() {
-  cd $_name-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-pathspec/repos/community-any/PKGBUILD (from rev 774831, 
python-pathspec/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-12-14 05:08:51 UTC (rev 774832)
@@ -0,0 +1,33 @@
+# Maintainer: Daniel M. Capella 
+# Contributor:  Chris Severance aur.severach aATt spamgourmet dott com
+
+_name=pathspec
+pkgname=python-pathspec
+pkgver=0.8.1
+pkgrel=4
+pkgdesc='Utility library for gitignore style pattern matching of file paths'
+arch=('any')
+url=https://github.com/cpburnz/python-path-specification
+license=('MPL2')
+depends=('python')
+makedepends=('python-setuptools')
+source=("https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz;)
+sha256sums=('86379d6b86d75816baba717e64b1a3a3469deb93bb76d613c9ce79edc5cb68fd')
+
+build() {
+  cd $_name-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd $_name-$pkgver
+  python -m unittest discover pathspec/tests
+}
+
+package() {
+  cd $_name-$pkgver
+  export PYTHONHASHSEED=0
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}
+
+# vim:set ts=2 sw=2 et:


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

2020-12-13 Thread Daniel M. Capella via arch-commits
Date: Monday, December 14, 2020 @ 05:08:22
  Author: polyzen
Revision: 774831

archrelease: copy trunk to community-any

Added:
  python-flake8-black/repos/community-any/PKGBUILD
(from rev 774830, python-flake8-black/trunk/PKGBUILD)
Deleted:
  python-flake8-black/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-12-14 05:07:48 UTC (rev 774830)
+++ PKGBUILD2020-12-14 05:08:22 UTC (rev 774831)
@@ -1,33 +0,0 @@
-# Maintainer: George Rawlinson 
-
-_name=flake8-black
-pkgname=python-flake8-black
-pkgver=0.2.1
-pkgrel=3
-pkgdesc='Flake8 plugin to call black as a code style validator'
-arch=('any')
-url=https://github.com/peterjc/flake8-black
-license=('MIT')
-depends=('flake8' 'python-black' 'python-setuptools')
-source=("$url/archive/v$pkgver/$_name-v$pkgver.tar.gz")
-b2sums=('46cf95349f683d3c4f411425c1e6e70dc0a0036036eccb736362b9888b4b0cb4c6d215fdb78bf59bbe8d9f3edca24959121c628426570dc1917f6ef9ad5ffbca')
-
-build() {
-  cd $_name-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd $_name-$pkgver
-  mkdir -p temp
-  local sitepackages=$(python -c "import site; 
print(site.getsitepackages()[0])")
-  python setup.py install --skip-build --root=temp
-  cd tests
-  PATH="${PWD%/tests}/temp/usr/bin:$PATH" 
PYTHONPATH="${PWD%/tests}/temp/$sitepackages" ./run_tests.sh
-}
-
-package() {
-  cd $_name-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-  install -Dm644 -t "$pkgdir"/usr/share/licenses/$pkgname LICENSE.rst
-}

Copied: python-flake8-black/repos/community-any/PKGBUILD (from rev 774830, 
python-flake8-black/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-12-14 05:08:22 UTC (rev 774831)
@@ -0,0 +1,34 @@
+# Maintainer: George Rawlinson 
+
+_name=flake8-black
+pkgname=python-flake8-black
+pkgver=0.2.1
+pkgrel=4
+pkgdesc='Flake8 plugin to call black as a code style validator'
+arch=('any')
+url=https://github.com/peterjc/flake8-black
+license=('MIT')
+depends=('flake8' 'python-black' 'python-setuptools')
+source=("$url/archive/v$pkgver/$_name-v$pkgver.tar.gz")
+b2sums=('46cf95349f683d3c4f411425c1e6e70dc0a0036036eccb736362b9888b4b0cb4c6d215fdb78bf59bbe8d9f3edca24959121c628426570dc1917f6ef9ad5ffbca')
+
+build() {
+  cd $_name-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd $_name-$pkgver
+  mkdir -p temp
+  local sitepackages=$(python -c "import site; 
print(site.getsitepackages()[0])")
+  python setup.py install --skip-build --root=temp
+  cd tests
+  PATH="${PWD%/tests}/temp/usr/bin:$PATH" 
PYTHONPATH="${PWD%/tests}/temp/$sitepackages" ./run_tests.sh
+}
+
+package() {
+  cd $_name-$pkgver
+  export PYTHONHASHSEED=0
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm644 -t "$pkgdir"/usr/share/licenses/$pkgname LICENSE.rst
+}


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

2020-12-13 Thread Daniel M. Capella via arch-commits
Date: Monday, December 14, 2020 @ 05:07:48
  Author: polyzen
Revision: 774830

archrelease: copy trunk to community-x86_64

Added:
  python-dulwich/repos/community-x86_64/PKGBUILD
(from rev 774829, python-dulwich/trunk/PKGBUILD)
Deleted:
  python-dulwich/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-12-14 05:07:10 UTC (rev 774829)
+++ PKGBUILD2020-12-14 05:07:48 UTC (rev 774830)
@@ -1,33 +0,0 @@
-# Maintainer: Daniel M. Capella 
-# Contributor: Timothée Ravier 
-
-_name=dulwich
-pkgname=python-dulwich
-pkgver=0.20.14
-pkgrel=1
-pkgdesc='Pure-Python implementation of the Git file formats and protocols'
-arch=('x86_64')
-url=https://www.dulwich.io
-license=('GPL')
-depends=('python-certifi' 'python-setuptools' 'python-urllib3')
-checkdepends=('python-mock')
-source=("https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz;)
-sha256sums=('21d6ee82708f7c67ce3fdcaf1f1407e524f7f4f7411a410a972faa2176baec0d')
-b2sums=('be3658fd12021d2d8294fa92d99fe8bbf0a04de0f97d71f4c5683580169faa19fce2c731b240a1a61b95517e9b4371a8bcaedef7748e94512b09bcd9e6ae31ad')
-
-build() {
-  cd $_name-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd $_name-$pkgver
-  python -m unittest dulwich.tests.test_suite
-}
-
-package() {
-  cd $_name-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-dulwich/repos/community-x86_64/PKGBUILD (from rev 774829, 
python-dulwich/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-12-14 05:07:48 UTC (rev 774830)
@@ -0,0 +1,34 @@
+# Maintainer: Daniel M. Capella 
+# Contributor: Timothée Ravier 
+
+_name=dulwich
+pkgname=python-dulwich
+pkgver=0.20.14
+pkgrel=2
+pkgdesc='Pure-Python implementation of the Git file formats and protocols'
+arch=('x86_64')
+url=https://www.dulwich.io
+license=('GPL')
+depends=('python-certifi' 'python-setuptools' 'python-urllib3')
+checkdepends=('python-mock')
+source=("https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz;)
+sha256sums=('21d6ee82708f7c67ce3fdcaf1f1407e524f7f4f7411a410a972faa2176baec0d')
+b2sums=('be3658fd12021d2d8294fa92d99fe8bbf0a04de0f97d71f4c5683580169faa19fce2c731b240a1a61b95517e9b4371a8bcaedef7748e94512b09bcd9e6ae31ad')
+
+build() {
+  cd $_name-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd $_name-$pkgver
+  python -m unittest dulwich.tests.test_suite
+}
+
+package() {
+  cd $_name-$pkgver
+  export PYTHONHASHSEED=0
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}
+
+# vim:set ts=2 sw=2 et:


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

2020-12-13 Thread Daniel M. Capella via arch-commits
Date: Monday, December 14, 2020 @ 05:07:10
  Author: polyzen
Revision: 774829

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-12-14 05:06:38 UTC (rev 774828)
+++ PKGBUILD2020-12-14 05:07:10 UTC (rev 774829)
@@ -1,45 +0,0 @@
-# Maintainer: Felix Yan 
-# Maintainer: Daniel M. Capella 
-
-pkgname=('python-jsbeautifier' 'python-cssbeautifier')
-pkgbase=python-jsbeautifier
-pkgver=1.13.0
-pkgrel=3
-arch=('any')
-license=('MIT')
-url='https://github.com/beautify-web/js-beautify'
-depends=('python-setuptools' 'python-six' 'python-editorconfig')
-source=("https://github.com/beautify-web/js-beautify/archive/v$pkgver/js-beautify-v$pkgver.tar.gz;)
-sha512sums=('a60a71f8ef1b3751ab32fa5884bc07d46f2f02ce06d3527e15ef4d709eae625677b31a69990e56da859ad6c72aefe41992155cfaaeea8590dd505003ccfd7979')
-
-prepare() {
-  cd js-beautify-$pkgver
-  cp -a python python-css
-}
-
-build() {
-  cd js-beautify-$pkgver/python
-  python setup-js.py build
-  cd ../python-css
-  python setup-css.py build
-}
-
-check() {
-  cd js-beautify-$pkgver
-  python python/js-beautify-test.py
-}
-
-package_python-jsbeautifier() {
-  pkgdesc='JavaScript unobfuscator and beautifier'
-  cd js-beautify-$pkgver/python
-  python setup-js.py install --root="$pkgdir" --optimize=1 --skip-build
-  install -D -m644 -t "$pkgdir"/usr/share/licenses/"${pkgname[0]}" ../LICENSE
-}
-
-package_python-cssbeautifier() {
-  pkgdesc='CSS unobfuscator and beautifier'
-  depends+=('python-jsbeautifier')
-  cd js-beautify-$pkgver/python-css
-  python setup-css.py install --root="$pkgdir" --optimize=1 --skip-build
-  install -D -m644 -t "$pkgdir"/usr/share/licenses/"${pkgname[1]}" ../LICENSE
-}

Copied: python-jsbeautifier/repos/community-any/PKGBUILD (from rev 774828, 
python-jsbeautifier/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-12-14 05:07:10 UTC (rev 774829)
@@ -0,0 +1,47 @@
+# Maintainer: Felix Yan 
+# Maintainer: Daniel M. Capella 
+
+pkgname=('python-jsbeautifier' 'python-cssbeautifier')
+pkgbase=python-jsbeautifier
+pkgver=1.13.0
+pkgrel=4
+arch=('any')
+license=('MIT')
+url='https://github.com/beautify-web/js-beautify'
+depends=('python-setuptools' 'python-six' 'python-editorconfig')
+source=("https://github.com/beautify-web/js-beautify/archive/v$pkgver/js-beautify-v$pkgver.tar.gz;)
+sha512sums=('a60a71f8ef1b3751ab32fa5884bc07d46f2f02ce06d3527e15ef4d709eae625677b31a69990e56da859ad6c72aefe41992155cfaaeea8590dd505003ccfd7979')
+
+prepare() {
+  cd js-beautify-$pkgver
+  cp -a python python-css
+}
+
+build() {
+  cd js-beautify-$pkgver/python
+  python setup-js.py build
+  cd ../python-css
+  python setup-css.py build
+}
+
+check() {
+  cd js-beautify-$pkgver
+  python python/js-beautify-test.py
+}
+
+package_python-jsbeautifier() {
+  pkgdesc='JavaScript unobfuscator and beautifier'
+  cd js-beautify-$pkgver/python
+  export PYTHONHASHSEED=0
+  python setup-js.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -D -m644 -t "$pkgdir"/usr/share/licenses/"${pkgname[0]}" ../LICENSE
+}
+
+package_python-cssbeautifier() {
+  pkgdesc='CSS unobfuscator and beautifier'
+  depends+=('python-jsbeautifier')
+  cd js-beautify-$pkgver/python-css
+  export PYTHONHASHSEED=0
+  python setup-css.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -D -m644 -t "$pkgdir"/usr/share/licenses/"${pkgname[1]}" ../LICENSE
+}


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

2020-12-13 Thread Daniel M. Capella via arch-commits
Date: Monday, December 14, 2020 @ 05:06:38
  Author: polyzen
Revision: 774828

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-12-14 05:06:03 UTC (rev 774827)
+++ PKGBUILD2020-12-14 05:06:38 UTC (rev 774828)
@@ -1,41 +0,0 @@
-# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
-# Maintainer: Daniel M. Capella 
-# Contributor: James Zhu 
-
-pkgname=python-black
-pkgver=20.8b1
-pkgrel=4
-pkgdesc='Uncompromising Python code formatter'
-arch=('any')
-url=https://github.com/psf/black
-license=('MIT')
-depends=('python' 'python-appdirs' 'python-click' 'python-mypy_extensions'
- 'python-pathspec' 'python-regex' 'python-setuptools' 'python-toml'
- 'python-typed-ast' 'python-typing_extensions')
-checkdepends=('python-aiohttp' 'python-aiohttp-cors')
-optdepends=('python-aiohttp: for the blackd HTTP server'
-'python-aiohttp-cors: for the blackd HTTP server'
-'python-colorama: for colored diffs')
-source=("https://files.pythonhosted.org/packages/source/b/black/black-$pkgver.tar.gz;)
-sha256sums=('1c02557aa099101b9d21496f8a914e9edef70336404eeeac8edba836fbea')
-
-build() {
-  cd "black-$pkgver"
-  python setup.py build
-}
-
-check() {
-  cd "black-$pkgver"
-  mkdir -p temp
-  local sitepackages=$(python -c "import site; 
print(site.getsitepackages()[0])")
-  python setup.py install --skip-build --root=temp
-  PATH="$PWD/temp/usr/bin:$PATH" PYTHONPATH="$PWD/temp/$sitepackages" python 
-m unittest tests/test_black.py
-}
-
-package() {
-  cd "black-$pkgver"
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-  install -Dm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-black/repos/community-any/PKGBUILD (from rev 774827, 
python-black/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-12-14 05:06:38 UTC (rev 774828)
@@ -0,0 +1,42 @@
+# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
+# Maintainer: Daniel M. Capella 
+# Contributor: James Zhu 
+
+pkgname=python-black
+pkgver=20.8b1
+pkgrel=5
+pkgdesc='Uncompromising Python code formatter'
+arch=('any')
+url=https://github.com/psf/black
+license=('MIT')
+depends=('python' 'python-appdirs' 'python-click' 'python-mypy_extensions'
+ 'python-pathspec' 'python-regex' 'python-setuptools' 'python-toml'
+ 'python-typed-ast' 'python-typing_extensions')
+checkdepends=('python-aiohttp' 'python-aiohttp-cors')
+optdepends=('python-aiohttp: for the blackd HTTP server'
+'python-aiohttp-cors: for the blackd HTTP server'
+'python-colorama: for colored diffs')
+source=("https://files.pythonhosted.org/packages/source/b/black/black-$pkgver.tar.gz;)
+sha256sums=('1c02557aa099101b9d21496f8a914e9edef70336404eeeac8edba836fbea')
+
+build() {
+  cd "black-$pkgver"
+  python setup.py build
+}
+
+check() {
+  cd "black-$pkgver"
+  mkdir -p temp
+  local sitepackages=$(python -c "import site; 
print(site.getsitepackages()[0])")
+  python setup.py install --skip-build --root=temp
+  PATH="$PWD/temp/usr/bin:$PATH" PYTHONPATH="$PWD/temp/$sitepackages" python 
-m unittest tests/test_black.py
+}
+
+package() {
+  cd "black-$pkgver"
+  export PYTHONHASHSEED=0
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in jedi-language-server/repos/community-any (PKGBUILD PKGBUILD)

2020-12-13 Thread Daniel M. Capella via arch-commits
Date: Monday, December 14, 2020 @ 05:06:03
  Author: polyzen
Revision: 774827

archrelease: copy trunk to community-any

Added:
  jedi-language-server/repos/community-any/PKGBUILD
(from rev 774826, jedi-language-server/trunk/PKGBUILD)
Deleted:
  jedi-language-server/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-12-14 05:05:20 UTC (rev 774826)
+++ PKGBUILD2020-12-14 05:06:03 UTC (rev 774827)
@@ -1,26 +0,0 @@
-# Maintainer: Daniel M. Capella 
-
-pkgname=jedi-language-server
-pkgver=0.21.0
-pkgrel=3
-pkgdesc='Language server for Jedi'
-arch=('any')
-url=https://github.com/pappasam/jedi-language-server
-license=('MIT')
-depends=('python-click' 'python-jedi' 'python-pygls')
-makedepends=('python-pip' 'python-poetry')
-source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz;)
-sha256sums=('bb9d5e5c0aadf69cc441263685c83c12e67b6ed6f546dbd92dbed417123d8a47')
-b2sums=('73d3b3fecca4d7df7eb9dafd0bc9618844754c3ba8cbeeb402bab6e342f223ee4de49593dc27e3c1c1bd0a329f49f54e2c17bd5a98750c4f756cba9bca074a3f')
-
-build() {
-  cd $pkgname-$pkgver
-  poetry build --format wheel
-}
-
-package() {
-  cd $pkgname-$pkgver
-  PIP_CONFIG_FILE=/dev/null pip install --isolated --root="$pkgdir" 
--ignore-installed --no-deps dist/*.whl
-}
-
-# vim:set ts=2 sw=2 et:

Copied: jedi-language-server/repos/community-any/PKGBUILD (from rev 774826, 
jedi-language-server/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-12-14 05:06:03 UTC (rev 774827)
@@ -0,0 +1,27 @@
+# Maintainer: Daniel M. Capella 
+
+pkgname=jedi-language-server
+pkgver=0.21.0
+pkgrel=4
+pkgdesc='Language server for Jedi'
+arch=('any')
+url=https://github.com/pappasam/jedi-language-server
+license=('MIT')
+depends=('python-click' 'python-jedi' 'python-pygls')
+makedepends=('python-pip' 'python-poetry')
+source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz;)
+sha256sums=('bb9d5e5c0aadf69cc441263685c83c12e67b6ed6f546dbd92dbed417123d8a47')
+b2sums=('73d3b3fecca4d7df7eb9dafd0bc9618844754c3ba8cbeeb402bab6e342f223ee4de49593dc27e3c1c1bd0a329f49f54e2c17bd5a98750c4f756cba9bca074a3f')
+
+build() {
+  cd $pkgname-$pkgver
+  poetry build --format wheel
+}
+
+package() {
+  cd $pkgname-$pkgver
+  export PYTHONHASHSEED=0
+  PIP_CONFIG_FILE=/dev/null pip install --isolated --root="$pkgdir" 
--ignore-installed --no-deps dist/*.whl
+}
+
+# vim:set ts=2 sw=2 et:


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

2020-12-13 Thread Daniel M. Capella via arch-commits
Date: Monday, December 14, 2020 @ 05:05:20
  Author: polyzen
Revision: 774826

archrelease: copy trunk to community-any

Added:
  ipython/repos/community-any/PKGBUILD
(from rev 774825, ipython/trunk/PKGBUILD)
Deleted:
  ipython/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-12-14 05:04:51 UTC (rev 774825)
+++ PKGBUILD2020-12-14 05:05:20 UTC (rev 774826)
@@ -1,43 +0,0 @@
-# Maintainer: Kyle Keen 
-# Contributor: PepeSmith
-# Contributor: Aron Asor 
-# Contributor: Chris Brannon 
-# Contributor: Douglas Soares de Andrade 
-
-pkgname=ipython
-pkgver=7.19.0
-pkgrel=3
-pkgdesc="An enhanced Interactive Python shell."
-arch=('any')
-url="https://ipython.org;
-license=('BSD')
-depends=('python' 'python-traitlets' 'python-pexpect' 'sqlite'
- 'python-setuptools' 'python-pickleshare' 'python-prompt_toolkit'
- 'python-jedi' 'python-pygments' 'python-backcall')
-optdepends=("python-nose: for IPython's test suite")
-
-# new optional thing: ipyparallel
-
-source=("ipython-$pkgver.tgz::https://github.com/ipython/ipython/archive/$pkgver.tar.gz;
-
"https://www.packal.org/sites/default/files/public/styles/icon_large/public/workflow-files/nkeimipynbworkflow/icon/icon.png;)
-md5sums=('b9c48f7fc3158ddf4215a12627115447'
- '2901d65f1b1fe354e72850085cd1c072')
-
-# confirm that an update does not break sage?
-
-package() {
-  cd "ipython-$pkgver"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
-  install -Dm644 docs/source/about/license_and_copyright.rst 
"$pkgdir/usr/share/licenses/ipython/LICENSE"
-
-  cd "examples/IPython Kernel"
-  # FS#45120
-  sed -i 's/gnome-netstatus-idle/ipython/' *.desktop
-  install -Dm644 ipython.desktop 
"$pkgdir/usr/share/applications/ipython.desktop"
-  #install -Dm644 ipython-qtconsole.desktop 
"$pkgdir/usr/share/applications/ipython-qtconsole.desktop"
-  # FS#47046
-  install -Dm644 "$srcdir/icon.png" "$pkgdir/usr/share/pixmaps/ipython.png"
-
-  #cd $srcdir/ipython-$pkgver/IPython/qt/console/resources/icon/
-  #install -Dm644 IPythonConsole.svg 
"$pkgdir/usr/share/icons/hicolor/scalable/apps/ipython.svg"
-}

Copied: ipython/repos/community-any/PKGBUILD (from rev 774825, 
ipython/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-12-14 05:05:20 UTC (rev 774826)
@@ -0,0 +1,44 @@
+# Maintainer: Kyle Keen 
+# Contributor: PepeSmith
+# Contributor: Aron Asor 
+# Contributor: Chris Brannon 
+# Contributor: Douglas Soares de Andrade 
+
+pkgname=ipython
+pkgver=7.19.0
+pkgrel=4
+pkgdesc="An enhanced Interactive Python shell."
+arch=('any')
+url="https://ipython.org;
+license=('BSD')
+depends=('python' 'python-traitlets' 'python-pexpect' 'sqlite'
+ 'python-setuptools' 'python-pickleshare' 'python-prompt_toolkit'
+ 'python-jedi' 'python-pygments' 'python-backcall')
+optdepends=("python-nose: for IPython's test suite")
+
+# new optional thing: ipyparallel
+
+source=("ipython-$pkgver.tgz::https://github.com/ipython/ipython/archive/$pkgver.tar.gz;
+
"https://www.packal.org/sites/default/files/public/styles/icon_large/public/workflow-files/nkeimipynbworkflow/icon/icon.png;)
+md5sums=('b9c48f7fc3158ddf4215a12627115447'
+ '2901d65f1b1fe354e72850085cd1c072')
+
+# confirm that an update does not break sage?
+
+package() {
+  cd "ipython-$pkgver"
+  export PYTHONHASHSEED=0
+  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
+  install -Dm644 docs/source/about/license_and_copyright.rst 
"$pkgdir/usr/share/licenses/ipython/LICENSE"
+
+  cd "examples/IPython Kernel"
+  # FS#45120
+  sed -i 's/gnome-netstatus-idle/ipython/' *.desktop
+  install -Dm644 ipython.desktop 
"$pkgdir/usr/share/applications/ipython.desktop"
+  #install -Dm644 ipython-qtconsole.desktop 
"$pkgdir/usr/share/applications/ipython-qtconsole.desktop"
+  # FS#47046
+  install -Dm644 "$srcdir/icon.png" "$pkgdir/usr/share/pixmaps/ipython.png"
+
+  #cd $srcdir/ipython-$pkgver/IPython/qt/console/resources/icon/
+  #install -Dm644 IPythonConsole.svg 
"$pkgdir/usr/share/icons/hicolor/scalable/apps/ipython.svg"
+}


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

2020-12-13 Thread Daniel M. Capella via arch-commits
Date: Monday, December 14, 2020 @ 05:04:51
  Author: polyzen
Revision: 774825

archrelease: copy trunk to community-any

Added:
  borgmatic/repos/community-any/PKGBUILD
(from rev 774824, borgmatic/trunk/PKGBUILD)
Deleted:
  borgmatic/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-12-14 05:04:13 UTC (rev 774824)
+++ PKGBUILD2020-12-14 05:04:51 UTC (rev 774825)
@@ -1,39 +0,0 @@
-# Maintainer: Daniel M. Capella 
-# Contributor: Kr1ss $(echo \|sed s/\+/./g\;s/\-/@/)
-# Contributor: Alexander Görtz 
-# Contributor: Dan Beste 
-# Contributor: Julien Nicoulaud 
-# Contributor: stef204 
-
-pkgname=borgmatic
-pkgver=1.5.12
-pkgrel=3
-pkgdesc='Simple, configuration-driven backup software for servers and 
workstations'
-arch=('any')
-url=https://torsion.org/borgmatic
-license=('GPL3')
-depends=('borg' 'python-colorama' 'python-pykwalify' 'python-requests'
- 'python-ruamel-yaml' 'python-setuptools')
-optdepends=('python-llfuse: for mount action')
-source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz;)
-sha256sums=('5cb6c126f351987f16f529ce8c5ef351b6b3458142316e9210edb028dff65536')
-b2sums=('d71537eed019b10c3257d4b068c31aff63919e0cdb068b49c2ed92d2e97d37b8735f30b1225fb453e79372aeab49817e9200770aac4cc0f80c0bac14e84678d1')
-
-prepare() {
-  cd $pkgname-$pkgver
-  sed -i 's,root/.local,usr,
-  /SystemCallFilter/a SystemCallErrorNumber=EPERM' 
sample/systemd/$pkgname.service
-}
-
-build() {
-  cd $pkgname-$pkgver
-  python setup.py build
-}
-
-package() {
-  cd $pkgname-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-  install -Dm644 -t "$pkgdir"/usr/lib/systemd/system sample/systemd/*
-}
-
-# vim: ts=2 sw=2 et:

Copied: borgmatic/repos/community-any/PKGBUILD (from rev 774824, 
borgmatic/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-12-14 05:04:51 UTC (rev 774825)
@@ -0,0 +1,40 @@
+# Maintainer: Daniel M. Capella 
+# Contributor: Kr1ss $(echo \|sed s/\+/./g\;s/\-/@/)
+# Contributor: Alexander Görtz 
+# Contributor: Dan Beste 
+# Contributor: Julien Nicoulaud 
+# Contributor: stef204 
+
+pkgname=borgmatic
+pkgver=1.5.12
+pkgrel=4
+pkgdesc='Simple, configuration-driven backup software for servers and 
workstations'
+arch=('any')
+url=https://torsion.org/borgmatic
+license=('GPL3')
+depends=('borg' 'python-colorama' 'python-pykwalify' 'python-requests'
+ 'python-ruamel-yaml' 'python-setuptools')
+optdepends=('python-llfuse: for mount action')
+source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz;)
+sha256sums=('5cb6c126f351987f16f529ce8c5ef351b6b3458142316e9210edb028dff65536')
+b2sums=('d71537eed019b10c3257d4b068c31aff63919e0cdb068b49c2ed92d2e97d37b8735f30b1225fb453e79372aeab49817e9200770aac4cc0f80c0bac14e84678d1')
+
+prepare() {
+  cd $pkgname-$pkgver
+  sed -i 's,root/.local,usr,
+  /SystemCallFilter/a SystemCallErrorNumber=EPERM' 
sample/systemd/$pkgname.service
+}
+
+build() {
+  cd $pkgname-$pkgver
+  python setup.py build
+}
+
+package() {
+  cd $pkgname-$pkgver
+  export PYTHONHASHSEED=0
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm644 -t "$pkgdir"/usr/lib/systemd/system sample/systemd/*
+}
+
+# vim: ts=2 sw=2 et:


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

2020-12-13 Thread Daniel M. Capella via arch-commits
Date: Monday, December 14, 2020 @ 05:04:13
  Author: polyzen
Revision: 774824

archrelease: copy trunk to community-any

Added:
  afew/repos/community-any/PKGBUILD
(from rev 774823, afew/trunk/PKGBUILD)
Deleted:
  afew/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-12-14 05:03:20 UTC (rev 774823)
+++ PKGBUILD2020-12-14 05:04:13 UTC (rev 774824)
@@ -1,37 +0,0 @@
-# Maintainer: Daniel M. Capella 
-# Contributor: Lucas Hoffmann
-# Contributor: Giancarlo Razzolini 
-# Contributor: Kazuo Teramoto 
-
-pkgname=afew
-pkgver=3.0.1
-pkgrel=2
-pkgdesc='Initial tagging script for notmuch mail'
-arch=(any)
-url=https://github.com/afewmail/afew
-license=('custom:BSD')
-depends=('notmuch' 'python-chardet' 'python-dkim' 'python-setuptools')
-makedepends=('python-setuptools-scm' 'python-sphinx')
-checkdepends=('python-freezegun')
-source=("https://files.pythonhosted.org/packages/source/a/afew/afew-$pkgver.tar.gz;)
-sha256sums=('ce857fe1a3bc0982c1dac81aef66cacc148e4f9db06da720f869392af1c2ee72')
-
-build() {
-  cd afew-$pkgver
-  python setup.py build
-  python setup.py build_sphinx -b man
-}
-
-check() {
-  cd afew-$pkgver
-  python -m unittest discover afew/tests
-}
-
-package() {
-  cd afew-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-  install -Dm644 -t "$pkgdir"/usr/share/man/man1 build/sphinx/man/afew.1
-  install -Dm644 -t "$pkgdir"/usr/share/licenses/afew LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: afew/repos/community-any/PKGBUILD (from rev 774823, afew/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-12-14 05:04:13 UTC (rev 774824)
@@ -0,0 +1,38 @@
+# Maintainer: Daniel M. Capella 
+# Contributor: Lucas Hoffmann
+# Contributor: Giancarlo Razzolini 
+# Contributor: Kazuo Teramoto 
+
+pkgname=afew
+pkgver=3.0.1
+pkgrel=3
+pkgdesc='Initial tagging script for notmuch mail'
+arch=(any)
+url=https://github.com/afewmail/afew
+license=('custom:BSD')
+depends=('notmuch' 'python-chardet' 'python-dkim' 'python-setuptools')
+makedepends=('python-setuptools-scm' 'python-sphinx')
+checkdepends=('python-freezegun')
+source=("https://files.pythonhosted.org/packages/source/a/afew/afew-$pkgver.tar.gz;)
+sha256sums=('ce857fe1a3bc0982c1dac81aef66cacc148e4f9db06da720f869392af1c2ee72')
+
+build() {
+  cd afew-$pkgver
+  python setup.py build
+  python setup.py build_sphinx -b man
+}
+
+check() {
+  cd afew-$pkgver
+  python -m unittest discover afew/tests
+}
+
+package() {
+  cd afew-$pkgver
+  export PYTHONHASHSEED=0
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm644 -t "$pkgdir"/usr/share/man/man1 build/sphinx/man/afew.1
+  install -Dm644 -t "$pkgdir"/usr/share/licenses/afew LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in (14 files)

2020-12-13 Thread Daniel M. Capella via arch-commits
Date: Monday, December 14, 2020 @ 05:03:20
  Author: polyzen
Revision: 774823

Reproducible bytecode

Modified:
  afew/trunk/PKGBUILD
  borgmatic/trunk/PKGBUILD
  ipython/trunk/PKGBUILD
  jedi-language-server/trunk/PKGBUILD
  python-black/trunk/PKGBUILD
  python-dulwich/trunk/PKGBUILD
  python-flake8-black/trunk/PKGBUILD
  python-jsbeautifier/trunk/PKGBUILD
  python-pathspec/trunk/PKGBUILD
  python-pytesseract/trunk/PKGBUILD
  python-sphinx/trunk/PKGBUILD
  rofimoji/trunk/PKGBUILD
  urlwatch/trunk/PKGBUILD
  yamllint/trunk/PKGBUILD

-+
 afew/trunk/PKGBUILD |3 ++-
 borgmatic/trunk/PKGBUILD|3 ++-
 ipython/trunk/PKGBUILD  |3 ++-
 jedi-language-server/trunk/PKGBUILD |3 ++-
 python-black/trunk/PKGBUILD |3 ++-
 python-dulwich/trunk/PKGBUILD   |3 ++-
 python-flake8-black/trunk/PKGBUILD  |3 ++-
 python-jsbeautifier/trunk/PKGBUILD  |4 +++-
 python-pathspec/trunk/PKGBUILD  |3 ++-
 python-pytesseract/trunk/PKGBUILD   |3 ++-
 python-sphinx/trunk/PKGBUILD|3 ++-
 rofimoji/trunk/PKGBUILD |3 ++-
 urlwatch/trunk/PKGBUILD |3 ++-
 yamllint/trunk/PKGBUILD |3 ++-
 14 files changed, 29 insertions(+), 14 deletions(-)

Modified: afew/trunk/PKGBUILD
===
--- afew/trunk/PKGBUILD 2020-12-14 04:30:34 UTC (rev 774822)
+++ afew/trunk/PKGBUILD 2020-12-14 05:03:20 UTC (rev 774823)
@@ -5,7 +5,7 @@
 
 pkgname=afew
 pkgver=3.0.1
-pkgrel=2
+pkgrel=3
 pkgdesc='Initial tagging script for notmuch mail'
 arch=(any)
 url=https://github.com/afewmail/afew
@@ -29,6 +29,7 @@
 
 package() {
   cd afew-$pkgver
+  export PYTHONHASHSEED=0
   python setup.py install --root="$pkgdir" --optimize=1 --skip-build
   install -Dm644 -t "$pkgdir"/usr/share/man/man1 build/sphinx/man/afew.1
   install -Dm644 -t "$pkgdir"/usr/share/licenses/afew LICENSE

Modified: borgmatic/trunk/PKGBUILD
===
--- borgmatic/trunk/PKGBUILD2020-12-14 04:30:34 UTC (rev 774822)
+++ borgmatic/trunk/PKGBUILD2020-12-14 05:03:20 UTC (rev 774823)
@@ -7,7 +7,7 @@
 
 pkgname=borgmatic
 pkgver=1.5.12
-pkgrel=3
+pkgrel=4
 pkgdesc='Simple, configuration-driven backup software for servers and 
workstations'
 arch=('any')
 url=https://torsion.org/borgmatic
@@ -32,6 +32,7 @@
 
 package() {
   cd $pkgname-$pkgver
+  export PYTHONHASHSEED=0
   python setup.py install --root="$pkgdir" --optimize=1 --skip-build
   install -Dm644 -t "$pkgdir"/usr/lib/systemd/system sample/systemd/*
 }

Modified: ipython/trunk/PKGBUILD
===
--- ipython/trunk/PKGBUILD  2020-12-14 04:30:34 UTC (rev 774822)
+++ ipython/trunk/PKGBUILD  2020-12-14 05:03:20 UTC (rev 774823)
@@ -6,7 +6,7 @@
 
 pkgname=ipython
 pkgver=7.19.0
-pkgrel=3
+pkgrel=4
 pkgdesc="An enhanced Interactive Python shell."
 arch=('any')
 url="https://ipython.org;
@@ -27,6 +27,7 @@
 
 package() {
   cd "ipython-$pkgver"
+  export PYTHONHASHSEED=0
   python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
   install -Dm644 docs/source/about/license_and_copyright.rst 
"$pkgdir/usr/share/licenses/ipython/LICENSE"
 

Modified: jedi-language-server/trunk/PKGBUILD
===
--- jedi-language-server/trunk/PKGBUILD 2020-12-14 04:30:34 UTC (rev 774822)
+++ jedi-language-server/trunk/PKGBUILD 2020-12-14 05:03:20 UTC (rev 774823)
@@ -2,7 +2,7 @@
 
 pkgname=jedi-language-server
 pkgver=0.21.0
-pkgrel=3
+pkgrel=4
 pkgdesc='Language server for Jedi'
 arch=('any')
 url=https://github.com/pappasam/jedi-language-server
@@ -20,6 +20,7 @@
 
 package() {
   cd $pkgname-$pkgver
+  export PYTHONHASHSEED=0
   PIP_CONFIG_FILE=/dev/null pip install --isolated --root="$pkgdir" 
--ignore-installed --no-deps dist/*.whl
 }
 

Modified: python-black/trunk/PKGBUILD
===
--- python-black/trunk/PKGBUILD 2020-12-14 04:30:34 UTC (rev 774822)
+++ python-black/trunk/PKGBUILD 2020-12-14 05:03:20 UTC (rev 774823)
@@ -4,7 +4,7 @@
 
 pkgname=python-black
 pkgver=20.8b1
-pkgrel=4
+pkgrel=5
 pkgdesc='Uncompromising Python code formatter'
 arch=('any')
 url=https://github.com/psf/black
@@ -34,6 +34,7 @@
 
 package() {
   cd "black-$pkgver"
+  export PYTHONHASHSEED=0
   python setup.py install --root="$pkgdir" --optimize=1 --skip-build
   install -Dm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE
 }

Modified: python-dulwich/trunk/PKGBUILD
===
--- python-dulwich/trunk/PKGBUILD   2020-12-14 04:30:34 UTC (rev 774822)
+++ python-dulwich/trunk/PKGBUILD   2020-12-14 05:03:20 UTC (rev 774823)
@@ -4,7 +4,7 @@
 _name=dulwich
 pkgname=python-dulwich
 pkgver=0.20.14
-pkgrel=1
+pkgrel=2
 pkgdesc='Pure-Python 

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

2020-12-13 Thread Felix Yan via arch-commits
Date: Monday, December 14, 2020 @ 04:30:34
  Author: felixonmars
Revision: 774822

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-snap-core/repos/community-staging-x86_64/PKGBUILD (from rev 
774821, haskell-snap-core/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-12-14 04:30:34 UTC (rev 774822)
@@ -0,0 +1,55 @@
+# Maintainer: Felix Yan 
+
+_hkgname=snap-core
+pkgname=haskell-snap-core
+pkgver=1.0.4.2
+pkgrel=81
+pkgdesc="A Haskell Web Framework (core interfaces and types)"
+url="https://github.com/snapframework/snap-core;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-old-locale' 'haskell-hunit' 'haskell-attoparsec'
+ 'haskell-case-insensitive' 'haskell-lifted-base' 'haskell-io-streams' 
'haskell-hashable'
+ 'haskell-monad-control' 'haskell-random' 'haskell-readable' 
'haskell-regex-posix'
+ 'haskell-transformers-base' 'haskell-unix-compat' 
'haskell-unordered-containers'
+ 'haskell-vector' 'haskell-network' 'haskell-network-uri')
+makedepends=('ghc' 'haskell-quickcheck' 'haskell-parallel' 
'haskell-test-framework'
+ 'haskell-test-framework-hunit' 
'haskell-test-framework-quickcheck2' 'haskell-zlib')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz
+
snap-core-fix-random-1.2.patch::https://github.com/snapframework/snap-core/pull/299.patch)
+sha512sums=('42e710ac58a7d3cf58f9fdeca6c9c4880a94765ee0dc42fbcdaf68a6c2c337e1715f8b89863c7f911232af493bf5622b647d4c962237f211f97d731572fd94f5'
+
'4c00e8bcf390c5e7367afe4879e34b5c5db8801080b63598cbfbda2cf73d4fc2180844383c8eabe814809d5a5a2d15c5f4da32a3ecea94a554d9dbedd858f501')
+
+prepare() {
+cd $_hkgname-$pkgver
+patch -p1 -i ../snap-core-fix-random-1.2.patch
+sed -i -e '/bytestring-builder/d' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-12-13 Thread Felix Yan via arch-commits
Date: Monday, December 14, 2020 @ 04:30:24
  Author: felixonmars
Revision: 774821

upgpkg: haskell-snap-core 1.0.4.2-81: rebuild with base-orphans 0.8.5

Modified:
  haskell-snap-core/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-14 04:28:05 UTC (rev 774820)
+++ PKGBUILD2020-12-14 04:30:24 UTC (rev 774821)
@@ -3,7 +3,7 @@
 _hkgname=snap-core
 pkgname=haskell-snap-core
 pkgver=1.0.4.2
-pkgrel=80
+pkgrel=81
 pkgdesc="A Haskell Web Framework (core interfaces and types)"
 url="https://github.com/snapframework/snap-core;
 license=('BSD')


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

2020-12-13 Thread Felix Yan via arch-commits
Date: Monday, December 14, 2020 @ 04:28:05
  Author: felixonmars
Revision: 774820

archrelease: copy trunk to community-staging-x86_64

Added:
  agda/repos/community-staging-x86_64/
  agda/repos/community-staging-x86_64/PKGBUILD
(from rev 774819, agda/trunk/PKGBUILD)

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

Copied: agda/repos/community-staging-x86_64/PKGBUILD (from rev 774819, 
agda/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-12-14 04:28:05 UTC (rev 774820)
@@ -0,0 +1,55 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=Agda
+pkgname=agda
+pkgver=2.6.1.2
+pkgrel=15
+pkgdesc="A dependently typed functional programming language and proof 
assistant"
+url="https://wiki.portal.chalmers.se/agda/;
+license=("custom")
+arch=('x86_64')
+depends=('ghc-libs' 'ghc' 'haskell-aeson' 'haskell-async' 'haskell-blaze-html' 
'haskell-boxes'
+ 'haskell-cpphs' 'haskell-data-hash' 'haskell-edit-distance' 
'haskell-equivalence'
+ 'haskell-geniplate-mirror' 'haskell-gitrev' 'haskell-hashable'
+ 'haskell-hashtables' 'haskell-ieee754' 'haskell-murmur-hash' 
'haskell-regex-tdfa'
+ 'haskell-split' 'haskell-strict' 'haskell-unordered-containers' 
'haskell-uri-encode'
+ 'haskell-zlib')
+optdepends=('agda-stdlib: for standard library')
+makedepends=('alex' 'happy' 'ghc' 'haskell-filemanip')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha512sums=('5ab35d9b581ed918481dd25619739dfa43ea3d86b9522989fe8c83b3aa8749bee81fb12e7cd6b4270c4890a3719386c62b220163324407a1201273d1dfe9d615')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i '/fno-warn-overlapping-patterns/a \, "-dynamic"' 
src/full/Agda/Compiler/MAlonzo/Compiler.hs
+}
+
+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" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fcpphs -f-debug -f-enable-cluster-counting
+LC_CTYPE=en_US.UTF-8 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"
+LD_LIBRARY_PATH="$PWD/dist/build" runhaskell Setup copy 
--destdir="${pkgdir}"
+
+# Symlink to avoid writing to this place when agda-lib is present
+install -dm755 "$pkgdir"/usr/share/agda/lib/_build/$pkgver/agda
+ln -s ../../../prim "$pkgdir"/usr/share/agda/lib/_build/$pkgver/agda/
+
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-12-13 Thread Felix Yan via arch-commits
Date: Monday, December 14, 2020 @ 04:27:53
  Author: felixonmars
Revision: 774819

upgpkg: agda 2.6.1.2-15: rebuild with base-orphans 0.8.5

Modified:
  agda/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-14 03:59:14 UTC (rev 774818)
+++ PKGBUILD2020-12-14 04:27:53 UTC (rev 774819)
@@ -4,7 +4,7 @@
 _hkgname=Agda
 pkgname=agda
 pkgver=2.6.1.2
-pkgrel=14
+pkgrel=15
 pkgdesc="A dependently typed functional programming language and proof 
assistant"
 url="https://wiki.portal.chalmers.se/agda/;
 license=("custom")


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

2020-12-13 Thread Jiachen Yang via arch-commits
Date: Monday, December 14, 2020 @ 03:59:14
  Author: farseerfc
Revision: 774818

archrelease: copy trunk to community-any

Added:
  plantuml/repos/community-any/PKGBUILD
(from rev 774817, plantuml/trunk/PKGBUILD)
  plantuml/repos/community-any/plantuml.run
(from rev 774817, plantuml/trunk/plantuml.run)
Deleted:
  plantuml/repos/community-any/PKGBUILD
  plantuml/repos/community-any/plantuml.run

--+
 PKGBUILD |   78 -
 plantuml.run |4 +-
 2 files changed, 41 insertions(+), 41 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-12-14 03:58:31 UTC (rev 774817)
+++ PKGBUILD2020-12-14 03:59:14 UTC (rev 774818)
@@ -1,39 +0,0 @@
-# Maintainer: Jiachen YANG 
-# AUR Contributor: juantascon 
-# Contributor : Jingbei Li 
-
-pkgname=plantuml
-pkgver=1.2020.19
-pkgrel=1
-pkgdesc="Component that allows to quickly write uml diagrams"
-arch=(any)
-url="https://plantuml.com/;
-license=('GPL')
-depends=("java-runtime>=8" "bash")
-makedepends=("apache-ant" "java-environment>=8")
-source=("https://downloads.sourceforge.net/project/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz;
-"$pkgname.run")
-sha256sums=('47db5d645b19f2662d41909ab6359734613fc0341207f8e60da161d1c5714249'
-'a3fb528f4c719cfd0ff6154c60fd54ce341011d132caf950cc30af4989f6aac8')
-optdepends=('plantuml-ascii-math: allow use AsciiMath or JLaTeXMath notation'
-'ditaa: allow use ditaa notation'
-'graphviz: allow use Graphviz/DOT notation')
-
-prepare(){
-  cd "$srcdir/$pkgname-$pkgver"
-sed 's/target="1.6"/target="1.7"/g' -i build.xml
-}
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  # assume ant defaults to UTF8 encoding.
-  ant dist
-}
-
-package() {
-  depends+=("java-runtime")
-  install -m 755 -D "$pkgname.run" "$pkgdir/usr/bin/$pkgname"
-
-  cd "$srcdir/$pkgname-$pkgver"
-  install -m 644 -D "$pkgname.jar" 
"$pkgdir/usr/share/java/$pkgname/$pkgname.jar"
-}

Copied: plantuml/repos/community-any/PKGBUILD (from rev 774817, 
plantuml/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-12-14 03:59:14 UTC (rev 774818)
@@ -0,0 +1,39 @@
+# Maintainer: Jiachen YANG 
+# AUR Contributor: juantascon 
+# Contributor : Jingbei Li 
+
+pkgname=plantuml
+pkgver=1.2020.23
+pkgrel=1
+pkgdesc="Component that allows to quickly write uml diagrams"
+arch=(any)
+url="https://plantuml.com/;
+license=('GPL')
+depends=("java-runtime>=8" "bash")
+makedepends=("apache-ant" "java-environment>=8")
+source=("https://downloads.sourceforge.net/project/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz;
+"$pkgname.run")
+sha256sums=('f5ced8356402cd4a0126f79ae7e9a32090b2d12eb808d3db2b3c0519c42d0a58'
+'a3fb528f4c719cfd0ff6154c60fd54ce341011d132caf950cc30af4989f6aac8')
+optdepends=('plantuml-ascii-math: allow use AsciiMath or JLaTeXMath notation'
+'ditaa: allow use ditaa notation'
+'graphviz: allow use Graphviz/DOT notation')
+
+prepare(){
+  cd "$srcdir/$pkgname-$pkgver"
+sed 's/target="1.6"/target="1.7"/g' -i build.xml
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  # assume ant defaults to UTF8 encoding.
+  ant dist
+}
+
+package() {
+  depends+=("java-runtime")
+  install -m 755 -D "$pkgname.run" "$pkgdir/usr/bin/$pkgname"
+
+  cd "$srcdir/$pkgname-$pkgver"
+  install -m 644 -D "$pkgname.jar" 
"$pkgdir/usr/share/java/$pkgname/$pkgname.jar"
+}

Deleted: plantuml.run
===
--- plantuml.run2020-12-14 03:58:31 UTC (rev 774817)
+++ plantuml.run2020-12-14 03:59:14 UTC (rev 774818)
@@ -1,2 +0,0 @@
-#!/bin/sh
-exec /usr/bin/java -jar '/usr/share/java/plantuml/plantuml.jar' "$@"

Copied: plantuml/repos/community-any/plantuml.run (from rev 774817, 
plantuml/trunk/plantuml.run)
===
--- plantuml.run(rev 0)
+++ plantuml.run2020-12-14 03:59:14 UTC (rev 774818)
@@ -0,0 +1,2 @@
+#!/bin/sh
+exec /usr/bin/java -jar '/usr/share/java/plantuml/plantuml.jar' "$@"


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

2020-12-13 Thread Jiachen Yang via arch-commits
Date: Monday, December 14, 2020 @ 03:58:31
  Author: farseerfc
Revision: 774817

upgpkg: plantuml 1.2020.23-1: plantuml 1.2020.23

Modified:
  plantuml/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-14 03:53:58 UTC (rev 774816)
+++ PKGBUILD2020-12-14 03:58:31 UTC (rev 774817)
@@ -3,7 +3,7 @@
 # Contributor : Jingbei Li 
 
 pkgname=plantuml
-pkgver=1.2020.19
+pkgver=1.2020.23
 pkgrel=1
 pkgdesc="Component that allows to quickly write uml diagrams"
 arch=(any)
@@ -13,7 +13,7 @@
 makedepends=("apache-ant" "java-environment>=8")
 
source=("https://downloads.sourceforge.net/project/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz;
 "$pkgname.run")
-sha256sums=('47db5d645b19f2662d41909ab6359734613fc0341207f8e60da161d1c5714249'
+sha256sums=('f5ced8356402cd4a0126f79ae7e9a32090b2d12eb808d3db2b3c0519c42d0a58'
 'a3fb528f4c719cfd0ff6154c60fd54ce341011d132caf950cc30af4989f6aac8')
 optdepends=('plantuml-ascii-math: allow use AsciiMath or JLaTeXMath notation'
 'ditaa: allow use ditaa notation'


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

2020-12-13 Thread Felix Yan via arch-commits
Date: Monday, December 14, 2020 @ 03:53:58
  Author: felixonmars
Revision: 774816

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-uri-encode/repos/community-staging-x86_64/
  haskell-uri-encode/repos/community-staging-x86_64/PKGBUILD
(from rev 774815, haskell-uri-encode/trunk/PKGBUILD)

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

Copied: haskell-uri-encode/repos/community-staging-x86_64/PKGBUILD (from rev 
774815, haskell-uri-encode/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-12-14 03:53:58 UTC (rev 774816)
@@ -0,0 +1,39 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=uri-encode
+pkgname=haskell-uri-encode
+pkgver=1.5.0.7
+pkgrel=28
+pkgdesc="Unicode aware uri-encoding"
+url="https://github.com/silkapp/uri-encode;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-network-uri' 'haskell-utf8-string')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('da8d816a2c9586bd09762b914a6c4da2c3688fd1d1b31aa34bfae0291db9e0f639c4c7e7bdfa2adcd4f44c39860697a8c6f4f1955cde6c4db74269bbc7308661')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-tools -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-uri-encode/trunk (PKGBUILD)

2020-12-13 Thread Felix Yan via arch-commits
Date: Monday, December 14, 2020 @ 03:53:48
  Author: felixonmars
Revision: 774815

upgpkg: haskell-uri-encode 1.5.0.7-28: rebuild with base-orphans 0.8.5

Modified:
  haskell-uri-encode/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-14 03:52:57 UTC (rev 774814)
+++ PKGBUILD2020-12-14 03:53:48 UTC (rev 774815)
@@ -4,7 +4,7 @@
 _hkgname=uri-encode
 pkgname=haskell-uri-encode
 pkgver=1.5.0.7
-pkgrel=27
+pkgrel=28
 pkgdesc="Unicode aware uri-encoding"
 url="https://github.com/silkapp/uri-encode;
 license=("BSD")


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

2020-12-13 Thread Felix Yan via arch-commits
Date: Monday, December 14, 2020 @ 03:52:57
  Author: felixonmars
Revision: 774814

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-httpd-shed/repos/community-staging-x86_64/
  haskell-httpd-shed/repos/community-staging-x86_64/PKGBUILD
(from rev 774813, haskell-httpd-shed/trunk/PKGBUILD)

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

Copied: haskell-httpd-shed/repos/community-staging-x86_64/PKGBUILD (from rev 
774813, haskell-httpd-shed/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-12-14 03:52:57 UTC (rev 774814)
@@ -0,0 +1,44 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=httpd-shed
+pkgname=haskell-httpd-shed
+pkgver=0.4.1.1
+pkgrel=268
+pkgdesc="A simple web-server with an interact style API"
+url="https://github.com/andygill/httpd-shed/;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-network' 'haskell-network-bsd' 
'haskell-network-uri')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('b168fd18f4d476fc6d903d8dc17a1831645049dc6ae57e977b97453f69c98dc3a288e2c8d0298283bc2b8dd0d4e994fcec27058bb36b9ee0d4d4aac2b9de3b97')
+
+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 \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-buildexamples -fnetwork-uri -fnetwork-bsd
+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-httpd-shed/trunk (PKGBUILD)

2020-12-13 Thread Felix Yan via arch-commits
Date: Monday, December 14, 2020 @ 03:52:47
  Author: felixonmars
Revision: 774813

upgpkg: haskell-httpd-shed 0.4.1.1-268: rebuild with base-orphans 0.8.5

Modified:
  haskell-httpd-shed/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-14 03:51:51 UTC (rev 774812)
+++ PKGBUILD2020-12-14 03:52:47 UTC (rev 774813)
@@ -4,7 +4,7 @@
 _hkgname=httpd-shed
 pkgname=haskell-httpd-shed
 pkgver=0.4.1.1
-pkgrel=267
+pkgrel=268
 pkgdesc="A simple web-server with an interact style API"
 url="https://github.com/andygill/httpd-shed/;
 license=("BSD")


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

2020-12-13 Thread Felix Yan via arch-commits
Date: Monday, December 14, 2020 @ 03:51:51
  Author: felixonmars
Revision: 774812

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: git-repair/repos/community-staging-x86_64/PKGBUILD (from rev 774811, 
git-repair/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-12-14 03:51:51 UTC (rev 774812)
@@ -0,0 +1,33 @@
+# Maintainer: Felix Yan 
+
+pkgname=git-repair
+pkgver=1.20200504
+pkgrel=113
+pkgdesc="Repairs a damaged git repository"
+url="https://git-repair.branchable.com/;
+license=("AGPL3")
+arch=('x86_64')
+depends=('git' 'ghc-libs' 'haskell-async' 'haskell-attoparsec' 
'haskell-data-default'
+ 'haskell-filepath-bytestring' 'haskell-hslogger' 'haskell-ifelse'
+ 'haskell-network' 'haskell-network-uri' 
'haskell-optparse-applicative' 'haskell-quickcheck'
+ 'haskell-split' 'haskell-unix-compat' 'haskell-utf8-string')
+makedepends=('ghc')
+source=("$pkgname::git://git-repair.branchable.com/#tag=$pkgver")
+sha512sums=('SKIP')
+
+build() {
+  cd git-repair
+
+  runhaskell Setup configure -O --prefix=/usr --enable-executable-dynamic 
--disable-library-vanilla \
+--docdir="/usr/share/doc/$pkgname" --ghc-option='-pie'
+  runhaskell Setup build $MAKEFLAGS
+}
+
+package() {
+  cd git-repair
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -Dm644 git-repair.1 "$pkgdir"/usr/share/man/man1/git-repair.1
+
+  rm "$pkgdir"/usr/share/doc/git-repair/COPYRIGHT
+  rmdir "$pkgdir"/usr/share/doc/git-repair "$pkgdir"/usr/share/doc
+}


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

2020-12-13 Thread Felix Yan via arch-commits
Date: Monday, December 14, 2020 @ 03:51:39
  Author: felixonmars
Revision: 774811

upgpkg: git-repair 1.20200504-113: rebuild with base-orphans 0.8.5

Modified:
  git-repair/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-14 03:50:33 UTC (rev 774810)
+++ PKGBUILD2020-12-14 03:51:39 UTC (rev 774811)
@@ -2,7 +2,7 @@
 
 pkgname=git-repair
 pkgver=1.20200504
-pkgrel=112
+pkgrel=113
 pkgdesc="Repairs a damaged git repository"
 url="https://git-repair.branchable.com/;
 license=("AGPL3")


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

2020-12-13 Thread Felix Yan via arch-commits
Date: Monday, December 14, 2020 @ 03:50:33
  Author: felixonmars
Revision: 774810

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-jose/repos/community-staging-x86_64/PKGBUILD (from rev 774809, 
haskell-jose/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-12-14 03:50:33 UTC (rev 774810)
@@ -0,0 +1,40 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=jose
+pkgname=haskell-jose
+pkgver=0.8.4
+pkgrel=39
+pkgdesc="Javascript Object Signing and Encryption and JSON Web Token library"
+url="https://github.com/frasertweedale/hs-jose;
+license=("Apache")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-attoparsec' 'haskell-base64-bytestring' 
'haskell-concise'
+ 'haskell-cryptonite' 'haskell-lens' 'haskell-memory' 
'haskell-monad-time'
+ 'haskell-safe' 'haskell-aeson' 'haskell-unordered-containers' 
'haskell-network-uri'
+ 'haskell-quickcheck' 'haskell-quickcheck-instances' 'haskell-x509' 
'haskell-vector')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('4141e8f48b97b0d801fab576c3098b95dc1cc9b7c98815cff6bd62324aa2c6d5a4648734d14a00ef08aa36c523befdc6cb7dfdadb9d92d0dce2b434ef8165882')
+
+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"
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-12-13 Thread Felix Yan via arch-commits
Date: Monday, December 14, 2020 @ 03:50:23
  Author: felixonmars
Revision: 774809

upgpkg: haskell-jose 0.8.4-39: rebuild with base-orphans 0.8.5

Modified:
  haskell-jose/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-14 03:49:09 UTC (rev 774808)
+++ PKGBUILD2020-12-14 03:50:23 UTC (rev 774809)
@@ -4,7 +4,7 @@
 _hkgname=jose
 pkgname=haskell-jose
 pkgver=0.8.4
-pkgrel=38
+pkgrel=39
 pkgdesc="Javascript Object Signing and Encryption and JSON Web Token library"
 url="https://github.com/frasertweedale/hs-jose;
 license=("Apache")


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

2020-12-13 Thread Felix Yan via arch-commits
Date: Monday, December 14, 2020 @ 03:49:09
  Author: felixonmars
Revision: 774808

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-hopenpgp/repos/community-staging-x86_64/PKGBUILD (from rev 
774807, haskell-hopenpgp/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-12-14 03:49:09 UTC (rev 774808)
@@ -0,0 +1,46 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hOpenPGP
+pkgname=haskell-hopenpgp
+pkgver=2.9.5
+pkgrel=20
+pkgdesc="Native Haskell implementation of OpenPGP (RFC4880)"
+url="http://floss.scru.org/hOpenPGP/;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-asn1-encoding' 
'haskell-attoparsec'
+ 'haskell-base16-bytestring' 'haskell-bifunctors' 'haskell-bz2' 
'haskell-binary-conduit'
+ 'haskell-conduit' 'haskell-conduit-extra' 'haskell-cryptonite'
+ 'haskell-crypto-cipher-types' 'haskell-errors' 'haskell-hashable'
+ 'haskell-incremental-parser' 'haskell-ixset-typed' 'haskell-lens' 
'haskell-memory'
+ 'haskell-monad-loops' 'haskell-nettle' 'haskell-network-uri'
+ 'haskell-openpgp-asciiarmor' 'haskell-prettyprinter' 
'haskell-resourcet' 'haskell-split'
+ 'haskell-time-locale-compat' 'haskell-unliftio-core' 
'haskell-unordered-containers'
+ 'haskell-zlib')
+makedepends=('ghc')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('7e0ecc73054c5315093e7f64f92bc7c62a7f9ff1b2c985595db427a063460b3fc692343079676631987c9a651212d1d739289f9b1e2ecb1c086b2c9bd5a4ba0e')
+
+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-hopenpgp/trunk (PKGBUILD)

2020-12-13 Thread Felix Yan via arch-commits
Date: Monday, December 14, 2020 @ 03:48:59
  Author: felixonmars
Revision: 774807

upgpkg: haskell-hopenpgp 2.9.5-20: rebuild with base-orphans 0.8.5

Modified:
  haskell-hopenpgp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-14 03:46:36 UTC (rev 774806)
+++ PKGBUILD2020-12-14 03:48:59 UTC (rev 774807)
@@ -3,7 +3,7 @@
 _hkgname=hOpenPGP
 pkgname=haskell-hopenpgp
 pkgver=2.9.5
-pkgrel=19
+pkgrel=20
 pkgdesc="Native Haskell implementation of OpenPGP (RFC4880)"
 url="http://floss.scru.org/hOpenPGP/;
 license=('MIT')


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

2020-12-13 Thread Felix Yan via arch-commits
Date: Monday, December 14, 2020 @ 03:46:36
  Author: felixonmars
Revision: 774806

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-network-uri/repos/community-staging-x86_64/
  haskell-network-uri/repos/community-staging-x86_64/PKGBUILD
(from rev 774805, haskell-network-uri/trunk/PKGBUILD)

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

Copied: haskell-network-uri/repos/community-staging-x86_64/PKGBUILD (from rev 
774805, haskell-network-uri/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-12-14 03:46:36 UTC (rev 774806)
@@ -0,0 +1,49 @@
+# Maintainer: Jelle van der Waa 
+
+_hkgname=network-uri
+pkgname=haskell-network-uri
+pkgver=2.6.3.0
+pkgrel=197
+pkgdesc="A library for client-side HTTP"
+url="https://hackage.haskell.org/package/${_hkgname};
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'sh')
+makedepends=('ghc' 'haskell-criterion' 'haskell-hunit' 'haskell-test-framework'
+ 'haskell-test-framework-hunit' 
'haskell-test-framework-quickcheck2')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('15091367e4543de1e2af0d81973b8e456e2c5f5295dcd7a91b91f46c2e07a6a655c6ab4c0837ce7566b21b43bca3569c1b27bb7f437572b09d00e678c7b512f0')
+
+build() {
+cd $_hkgname-$pkgver
+
+if (( CHECKFUNC )); then
+_opts=('--enable-tests')
+else
+_opts=('--disable-tests')
+fi
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname "${_opts[@]}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-12-13 Thread Felix Yan via arch-commits
Date: Monday, December 14, 2020 @ 03:46:26
  Author: felixonmars
Revision: 774805

upgpkg: haskell-network-uri 2.6.3.0-197: rebuild with base-orphans 0.8.5

Modified:
  haskell-network-uri/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-14 03:44:12 UTC (rev 774804)
+++ PKGBUILD2020-12-14 03:46:26 UTC (rev 774805)
@@ -3,7 +3,7 @@
 _hkgname=network-uri
 pkgname=haskell-network-uri
 pkgver=2.6.3.0
-pkgrel=196
+pkgrel=197
 pkgdesc="A library for client-side HTTP"
 url="https://hackage.haskell.org/package/${_hkgname};
 license=('BSD')


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

2020-12-13 Thread Felix Yan via arch-commits
Date: Monday, December 14, 2020 @ 03:44:12
  Author: felixonmars
Revision: 774804

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-criterion/repos/community-staging-x86_64/PKGBUILD (from rev 
774803, haskell-criterion/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-12-14 03:44:12 UTC (rev 774804)
@@ -0,0 +1,50 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=criterion
+pkgname=haskell-criterion
+pkgver=1.5.9.0
+pkgrel=5
+pkgdesc="Robust, reliable performance measurement and analysis"
+url="http://www.serpentine.com/criterion;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-ansi-wl-pprint' 
'haskell-base-compat-batteries'
+ 'haskell-binary-orphans' 'haskell-cassava' 'haskell-code-page'
+ 'haskell-criterion-measurement' 'haskell-glob' 'haskell-js-chart'
+ 'haskell-microstache' 'haskell-mwc-random' 
'haskell-optparse-applicative'
+ 'haskell-statistics' 'haskell-transformers-compat' 'haskell-vector'
+ 'haskell-vector-algorithms')
+makedepends=('ghc' 'haskell-base-compat' 'haskell-hunit' 'haskell-quickcheck' 
'haskell-tasty'
+ 'haskell-tasty-hunit' 'haskell-tasty-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('ba8550073977ac829d35e327bc976a6a914694d2e9eb29f25c40811ec4064249dba746ac7a3df1b21532ca64c62375d9b35c201c7e259801f21ccde883647ca8')
+
+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 \
+-f-fast -f-embed-data-files
+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-criterion/trunk (PKGBUILD)

2020-12-13 Thread Felix Yan via arch-commits
Date: Monday, December 14, 2020 @ 03:44:02
  Author: felixonmars
Revision: 774803

upgpkg: haskell-criterion 1.5.9.0-5: rebuild with base-orphans 0.8.5

Modified:
  haskell-criterion/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-14 03:40:05 UTC (rev 774802)
+++ PKGBUILD2020-12-14 03:44:02 UTC (rev 774803)
@@ -4,7 +4,7 @@
 _hkgname=criterion
 pkgname=haskell-criterion
 pkgver=1.5.9.0
-pkgrel=4
+pkgrel=5
 pkgdesc="Robust, reliable performance measurement and analysis"
 url="http://www.serpentine.com/criterion;
 license=("BSD")


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

2020-12-13 Thread Felix Yan via arch-commits
Date: Monday, December 14, 2020 @ 03:40:05
  Author: felixonmars
Revision: 774802

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-statistics/repos/community-staging-x86_64/PKGBUILD (from rev 
774801, haskell-statistics/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-12-14 03:40:05 UTC (rev 774802)
@@ -0,0 +1,48 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=statistics
+pkgname=haskell-statistics
+pkgver=0.15.2.0
+pkgrel=79
+pkgdesc="A library of statistical types, data, and functions"
+url="https://github.com/bos/statistics;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-async' 'haskell-base-orphans' 
'haskell-data-default-class'
+ 'haskell-dense-linear-algebra' 'haskell-math-functions' 
'haskell-monad-par'
+ 'haskell-mwc-random' 'haskell-primitive' 'haskell-vector' 
'haskell-vector-algorithms'
+ 'haskell-vector-binary-instances' 'haskell-vector-th-unbox')
+makedepends=('ghc' 'haskell-hunit' 'haskell-quickcheck' 'haskell-erf' 
'haskell-ieee754'
+ '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=('7afa3e3edb15e02ff59c72601175d25f1a8baeaa1dd8561322e8e26781dbfbfcc03b2ade773269bab027d7399375f01595145fd2e2f252f3e73abc87f9baed41')
+
+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 || echo "Tests failed"
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-12-13 Thread Felix Yan via arch-commits
Date: Monday, December 14, 2020 @ 03:39:44
  Author: felixonmars
Revision: 774801

upgpkg: haskell-statistics 0.15.2.0-79: rebuild with base-orphans 0.8.5

Modified:
  haskell-statistics/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-14 03:37:22 UTC (rev 774800)
+++ PKGBUILD2020-12-14 03:39:44 UTC (rev 774801)
@@ -4,7 +4,7 @@
 _hkgname=statistics
 pkgname=haskell-statistics
 pkgver=0.15.2.0
-pkgrel=78
+pkgrel=79
 pkgdesc="A library of statistical types, data, and functions"
 url="https://github.com/bos/statistics;
 license=("BSD")


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

2020-12-13 Thread Felix Yan via arch-commits
Date: Monday, December 14, 2020 @ 03:37:22
  Author: felixonmars
Revision: 774800

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 774799, 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 774799, haskell-hslua-module-system/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-12-14 03:37:22 UTC (rev 774800)
@@ -0,0 +1,42 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hslua-module-system
+pkgname=haskell-hslua-module-system
+pkgver=0.2.2.1
+pkgrel=18
+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' 'haskell-tasty-lua')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('66cf57b8c80605bdfa5145fc61dbe59b66dd67a82a8365006b80e2ab74a71fff0fdf0ffa690daab66e82b8ad086adbcd622a6844b2107c0b9719b8cdabdf542b')
+
+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/trunk (PKGBUILD)

2020-12-13 Thread Felix Yan via arch-commits
Date: Monday, December 14, 2020 @ 03:37:13
  Author: felixonmars
Revision: 774799

upgpkg: haskell-hslua-module-system 0.2.2.1-18: rebuild with base-orphans 0.8.5

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

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-14 03:36:32 UTC (rev 774798)
+++ PKGBUILD2020-12-14 03:37:13 UTC (rev 774799)
@@ -3,7 +3,7 @@
 _hkgname=hslua-module-system
 pkgname=haskell-hslua-module-system
 pkgver=0.2.2.1
-pkgrel=17
+pkgrel=18
 pkgdesc="Lua module wrapper around Haskell's System module"
 url="https://github.com/hslua/hslua-module-system;
 license=('MIT')


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

2020-12-13 Thread Felix Yan via arch-commits
Date: Monday, December 14, 2020 @ 03:36:22
  Author: felixonmars
Revision: 774797

upgpkg: haskell-hslua-module-text 0.3.0.1-6: rebuild with base-orphans 0.8.5

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

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-14 03:35:37 UTC (rev 774796)
+++ PKGBUILD2020-12-14 03:36:22 UTC (rev 774797)
@@ -4,7 +4,7 @@
 _hkgname=hslua-module-text
 pkgname=haskell-hslua-module-text
 pkgver=0.3.0.1
-pkgrel=5
+pkgrel=6
 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-12-13 Thread Felix Yan via arch-commits
Date: Monday, December 14, 2020 @ 03:36:32
  Author: felixonmars
Revision: 774798

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 774797, 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 774797, haskell-hslua-module-text/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-12-14 03:36:32 UTC (rev 774798)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hslua-module-text
+pkgname=haskell-hslua-module-text
+pkgver=0.3.0.1
+pkgrel=6
+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' 'haskell-tasty-lua')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('15ba5e97261e9fa0bb4053575a0dd368048141a401200c32bb53a969cc741d2bd2d04890fef5c488fb6f476438d28e4d5ab9fea4a62aecdee285e8f1a1adecc4')
+
+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/repos (2 files)

2020-12-13 Thread Felix Yan via arch-commits
Date: Monday, December 14, 2020 @ 03:35:37
  Author: felixonmars
Revision: 774796

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 774795, haskell-tasty-lua/trunk/PKGBUILD)

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

Copied: haskell-tasty-lua/repos/community-staging-x86_64/PKGBUILD (from rev 
774795, haskell-tasty-lua/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-12-14 03:35:37 UTC (rev 774796)
@@ -0,0 +1,42 @@
+# Maintainer: Felix Yan 
+
+_hkgname=tasty-lua
+pkgname=haskell-tasty-lua
+pkgver=0.2.3.1
+pkgrel=18
+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=('7c97f001ee2659ec48a8810505fc820607be9969151fe082157a33a308617b68be83a792b7ff1da3d492d14490fdc1b71a7d9bda2643be760a78f46fb5e98ad7')
+
+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-12-13 Thread Felix Yan via arch-commits
Date: Monday, December 14, 2020 @ 03:35:26
  Author: felixonmars
Revision: 774795

upgpkg: haskell-tasty-lua 0.2.3.1-18: rebuild with base-orphans 0.8.5

Modified:
  haskell-tasty-lua/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-14 03:34:43 UTC (rev 774794)
+++ PKGBUILD2020-12-14 03:35:26 UTC (rev 774795)
@@ -3,7 +3,7 @@
 _hkgname=tasty-lua
 pkgname=haskell-tasty-lua
 pkgver=0.2.3.1
-pkgrel=17
+pkgrel=18
 pkgdesc="Write tests in Lua, integrate into tasty."
 url="https://github.com/hslua/tasty-lua;
 license=('MIT')


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

2020-12-13 Thread Felix Yan via arch-commits
Date: Monday, December 14, 2020 @ 03:34:43
  Author: felixonmars
Revision: 774794

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 774793, haskell-hslua/trunk/PKGBUILD)

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

Copied: haskell-hslua/repos/community-staging-x86_64/PKGBUILD (from rev 774793, 
haskell-hslua/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-12-14 03:34:43 UTC (rev 774794)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hslua
+pkgname=haskell-hslua
+pkgver=1.3.0
+pkgrel=3
+pkgdesc="A Lua language interpreter embedding in Haskell"
+url="https://hackage.haskell.org/package/${_hkgname};
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'lua53')
+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=('ee8325992415a9c057111053ce8ec025560d7687abb1f49608f29f26d66717ec4335d9d56f55666bb598caa0d630672029ad2df9b1dab6ce4b2c79890f787302')
+
+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-12-13 Thread Felix Yan via arch-commits
Date: Monday, December 14, 2020 @ 03:34:33
  Author: felixonmars
Revision: 774793

upgpkg: haskell-hslua 1.3.0-3: rebuild with base-orphans 0.8.5

Modified:
  haskell-hslua/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-14 03:33:26 UTC (rev 774792)
+++ PKGBUILD2020-12-14 03:34:33 UTC (rev 774793)
@@ -4,7 +4,7 @@
 _hkgname=hslua
 pkgname=haskell-hslua
 pkgver=1.3.0
-pkgrel=2
+pkgrel=3
 pkgdesc="A Lua language interpreter embedding in Haskell"
 url="https://hackage.haskell.org/package/${_hkgname};
 license=("MIT")


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

2020-12-13 Thread Felix Yan via arch-commits
Date: Monday, December 14, 2020 @ 03:33:26
  Author: felixonmars
Revision: 774792

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-hasql-transaction/repos/community-staging-x86_64/
  haskell-hasql-transaction/repos/community-staging-x86_64/PKGBUILD
(from rev 774791, haskell-hasql-transaction/trunk/PKGBUILD)

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

Copied: haskell-hasql-transaction/repos/community-staging-x86_64/PKGBUILD (from 
rev 774791, haskell-hasql-transaction/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-12-14 03:33:26 UTC (rev 774792)
@@ -0,0 +1,53 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hasql-transaction
+pkgname=haskell-hasql-transaction
+pkgver=1.0.0.1
+pkgrel=117
+pkgdesc="A composable abstraction over the retryable transactions for Hasql"
+url="https://github.com/nikita-volkov/hasql-transaction;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-bytestring-tree-builder' 'haskell-contravariant'
+ 'haskell-contravariant-extras' 'haskell-hasql')
+makedepends=('ghc' 'haskell-async' 'haskell-rebase')
+checkdepends=('postgresql' 'pifpaf')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('fe02484c8ae0f6a6b64f399a2061138f9a9390cb19693df9592fb58c07c7330f819b1181f973b4e6bf6b800d57ecb80dc901900e5d3ad1eb4c801bb3cf2f45c5')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i 's/5432/9824/' conflicts-test/Main.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
+
+eval $(pifpaf run postgresql --host 127.0.0.1)
+createuser -s postgres
+runhaskell Setup test
+pifpaf_stop
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-12-13 Thread Felix Yan via arch-commits
Date: Monday, December 14, 2020 @ 03:33:14
  Author: felixonmars
Revision: 774791

upgpkg: haskell-hasql-transaction 1.0.0.1-117: rebuild with base-orphans 0.8.5

Modified:
  haskell-hasql-transaction/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-14 03:32:15 UTC (rev 774790)
+++ PKGBUILD2020-12-14 03:33:14 UTC (rev 774791)
@@ -3,7 +3,7 @@
 _hkgname=hasql-transaction
 pkgname=haskell-hasql-transaction
 pkgver=1.0.0.1
-pkgrel=116
+pkgrel=117
 pkgdesc="A composable abstraction over the retryable transactions for Hasql"
 url="https://github.com/nikita-volkov/hasql-transaction;
 license=('MIT')


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

2020-12-13 Thread Felix Yan via arch-commits
Date: Monday, December 14, 2020 @ 03:32:15
  Author: felixonmars
Revision: 774790

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-hasql-pool/repos/community-staging-x86_64/
  haskell-hasql-pool/repos/community-staging-x86_64/PKGBUILD
(from rev 774789, haskell-hasql-pool/trunk/PKGBUILD)

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

Copied: haskell-hasql-pool/repos/community-staging-x86_64/PKGBUILD (from rev 
774789, haskell-hasql-pool/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-12-14 03:32:15 UTC (rev 774790)
@@ -0,0 +1,53 @@
+# Maintainer: Felix Yan 
+# Contributor: Thomas Dziedzic 
+
+_hkgname=hasql-pool
+pkgname=haskell-hasql-pool
+pkgver=0.5.2
+pkgrel=96
+pkgdesc="A pool of connections for Hasql"
+url="https://github.com/nikita-volkov/hasql-pool;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-base-prelude' 'haskell-hasql' 
'haskell-resource-pool')
+makedepends=('ghc' 'haskell-hspec')
+checkdepends=('pifpaf' 'postgresql')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('5609f05134a259826e17a7391d3324f1d2b474cd83082e4f67175086da1e481a1a75b336932a97371b32e7427e869498bb87af3f7c6246225698e8ceef1aa372')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i 's/5432/9824/' test/Main.hs
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --disable-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
+
+eval $(pifpaf run postgresql --host 127.0.0.1)
+createuser -s postgres
+#runhaskell Setup test
+pifpaf_stop
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-12-13 Thread Felix Yan via arch-commits
Date: Monday, December 14, 2020 @ 03:32:01
  Author: felixonmars
Revision: 774789

upgpkg: haskell-hasql-pool 0.5.2-96: rebuild with base-orphans 0.8.5

Modified:
  haskell-hasql-pool/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-14 03:30:52 UTC (rev 774788)
+++ PKGBUILD2020-12-14 03:32:01 UTC (rev 774789)
@@ -4,7 +4,7 @@
 _hkgname=hasql-pool
 pkgname=haskell-hasql-pool
 pkgver=0.5.2
-pkgrel=95
+pkgrel=96
 pkgdesc="A pool of connections for Hasql"
 url="https://github.com/nikita-volkov/hasql-pool;
 license=('MIT')


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

2020-12-13 Thread Felix Yan via arch-commits
Date: Monday, December 14, 2020 @ 03:30:52
  Author: felixonmars
Revision: 774788

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-hasql/repos/community-staging-x86_64/PKGBUILD (from rev 774787, 
haskell-hasql/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-12-14 03:30:52 UTC (rev 774788)
@@ -0,0 +1,59 @@
+# Maintainer: Felix Yan 
+# Contributor: Thomas Dziedzic 
+
+_hkgname=hasql
+pkgname=haskell-hasql
+pkgver=1.4.4.2
+pkgrel=74
+pkgdesc="An efficient PostgreSQL driver and a flexible mapping API"
+url="https://github.com/nikita-volkov/hasql;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-attoparsec' 'haskell-base-prelude' 
'haskell-bytestring-strict-builder'
+ 'haskell-contravariant' 'haskell-contravariant-extras' 
'haskell-dlist' 'haskell-hashable'
+ 'haskell-hashtables' 'haskell-loch-th' 'haskell-placeholders' 
'haskell-postgresql-binary'
+ 'haskell-postgresql-libpq' 'haskell-profunctors' 
'haskell-text-builder' 'haskell-vector')
+makedepends=('ghc' 'haskell-bug' 'haskell-tasty' 'haskell-tasty-quickcheck' 
'haskell-tasty-hunit'
+ 'haskell-quickcheck-instances' 'haskell-quickcheck' 
'haskell-rebase' 'haskell-rerebase')
+checkdepends=('postgresql' 'pifpaf')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('86330d4fa35431c4982206a2694a4b8fd3f55c0a2ffa9753a73692b662f280e90d2b677b052c99c6732eea9ffbf9b7cedf1ee4ade31081c0bb26f5b5219118a6')
+
+prepare() {
+cd $_hkgname-$pkgver
+
+# Do not use default postgres port
+sed -i 's/5432/9824/' tasty/Main/*.hs threads-test/*.hs profiling/*.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
+
+eval $(pifpaf run postgresql --host 127.0.0.1)
+createuser -s postgres
+runhaskell Setup test
+pifpaf_stop
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-12-13 Thread Felix Yan via arch-commits
Date: Monday, December 14, 2020 @ 03:30:40
  Author: felixonmars
Revision: 774787

upgpkg: haskell-hasql 1.4.4.2-74: rebuild with base-orphans 0.8.5

Modified:
  haskell-hasql/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-14 03:29:03 UTC (rev 774786)
+++ PKGBUILD2020-12-14 03:30:40 UTC (rev 774787)
@@ -4,7 +4,7 @@
 _hkgname=hasql
 pkgname=haskell-hasql
 pkgver=1.4.4.2
-pkgrel=73
+pkgrel=74
 pkgdesc="An efficient PostgreSQL driver and a flexible mapping API"
 url="https://github.com/nikita-volkov/hasql;
 license=('MIT')


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

2020-12-13 Thread Felix Yan via arch-commits
Date: Monday, December 14, 2020 @ 03:28:24
  Author: felixonmars
Revision: 774785

upgpkg: haskell-postgresql-binary 0.12.3.2-4: rebuild with base-orphans 0.8.5

Modified:
  haskell-postgresql-binary/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-14 03:26:36 UTC (rev 774784)
+++ PKGBUILD2020-12-14 03:28:24 UTC (rev 774785)
@@ -4,7 +4,7 @@
 _hkgname=postgresql-binary
 pkgname=haskell-postgresql-binary
 pkgver=0.12.3.2
-pkgrel=3
+pkgrel=4
 pkgdesc="Encoders and decoders for the PostgreSQL's binary format"
 url="https://github.com/nikita-volkov/postgresql-binary;
 license=("MIT")


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

2020-12-13 Thread Felix Yan via arch-commits
Date: Monday, December 14, 2020 @ 03:29:03
  Author: felixonmars
Revision: 774786

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-postgresql-binary/repos/community-staging-x86_64/PKGBUILD (from 
rev 774785, haskell-postgresql-binary/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-12-14 03:29:03 UTC (rev 774786)
@@ -0,0 +1,59 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=postgresql-binary
+pkgname=haskell-postgresql-binary
+pkgver=0.12.3.2
+pkgrel=4
+pkgdesc="Encoders and decoders for the PostgreSQL's binary format"
+url="https://github.com/nikita-volkov/postgresql-binary;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-base-prelude' 
'haskell-binary-parser'
+ 'haskell-bytestring-strict-builder' 'haskell-loch-th' 
'haskell-network-ip'
+ 'haskell-placeholders' 'haskell-scientific' 
'haskell-unordered-containers'
+ 'haskell-uuid' 'haskell-vector')
+makedepends=('ghc' 'haskell-postgresql-libpq' 'haskell-tasty' 
'haskell-tasty-quickcheck'
+ 'haskell-tasty-hunit' 'haskell-quickcheck' 
'haskell-quickcheck-instances'
+ 'haskell-json-ast' 'haskell-conversion' 
'haskell-conversion-bytestring'
+ 'haskell-conversion-text' 'haskell-rerebase' 'pifpaf' 
'postgresql')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('d1c5d7f6d684e3c118e284b3724e61173bd882b818f829447dff7ff44f4e8f7f2fc35449683729acde88502465cb2bceb941c22486edf64feed097eaf70d')
+
+prepare() {
+cd $_hkgname-$pkgver
+# Do not use default postgres port
+sed -i 's/5432/9824/' tasty/Main/DB.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
+
+eval $(pifpaf run postgresql --host 127.0.0.1)
+createuser -s postgres
+runhaskell Setup test
+pifpaf_stop
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


[arch-commits] Commit in haskell-bytestring-strict-builder/repos (2 files)

2020-12-13 Thread Felix Yan via arch-commits
Date: Monday, December 14, 2020 @ 03:26:36
  Author: felixonmars
Revision: 774784

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-bytestring-strict-builder/repos/community-staging-x86_64/
  haskell-bytestring-strict-builder/repos/community-staging-x86_64/PKGBUILD
(from rev 774783, haskell-bytestring-strict-builder/trunk/PKGBUILD)

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

Copied: 
haskell-bytestring-strict-builder/repos/community-staging-x86_64/PKGBUILD (from 
rev 774783, haskell-bytestring-strict-builder/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-12-14 03:26:36 UTC (rev 774784)
@@ -0,0 +1,48 @@
+# Maintainer: Felix Yan 
+
+_hkgname=bytestring-strict-builder
+pkgname=haskell-bytestring-strict-builder
+pkgver=0.4.5.3
+pkgrel=136
+pkgdesc="An efficient strict bytestring builder"
+url="https://github.com/nikita-volkov/bytestring-strict-builder;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-base-prelude')
+makedepends=('ghc' 'haskell-quickcheck' 'haskell-tasty' 
'haskell-tasty-quickcheck'
+ 'haskell-tasty-hunit' 'haskell-quickcheck-instances' 
'haskell-rerebase')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('3527960d2c6db8acfb9273130d169558f769826c9f7c68dfd04c22d1172700dd42eef6c81dae8e8ee1ba93ca471ef7a3572da4d155eeaa9f44b065412537fda8')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -e '/semigroups/d' -i $_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-bytestring-strict-builder/trunk (PKGBUILD)

2020-12-13 Thread Felix Yan via arch-commits
Date: Monday, December 14, 2020 @ 03:26:26
  Author: felixonmars
Revision: 774783

upgpkg: haskell-bytestring-strict-builder 0.4.5.3-136: rebuild with 
base-orphans 0.8.5

Modified:
  haskell-bytestring-strict-builder/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-14 03:25:35 UTC (rev 774782)
+++ PKGBUILD2020-12-14 03:26:26 UTC (rev 774783)
@@ -3,7 +3,7 @@
 _hkgname=bytestring-strict-builder
 pkgname=haskell-bytestring-strict-builder
 pkgver=0.4.5.3
-pkgrel=135
+pkgrel=136
 pkgdesc="An efficient strict bytestring builder"
 url="https://github.com/nikita-volkov/bytestring-strict-builder;
 license=('MIT')


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

2020-12-13 Thread Daurnimator via arch-commits
Date: Monday, December 14, 2020 @ 03:25:22
  Author: daurnimator
Revision: 774780

archrelease: copy trunk to community-x86_64

Added:
  zig/repos/community-x86_64/PKGBUILD
(from rev 774779, zig/trunk/PKGBUILD)
  zig/repos/community-x86_64/resolve_DNS.patch
(from rev 774779, zig/trunk/resolve_DNS.patch)
Deleted:
  zig/repos/community-x86_64/PKGBUILD
  zig/repos/community-x86_64/resolve_DNS.patch

---+
 PKGBUILD  |  102 ++--
 resolve_DNS.patch |   46 +++
 2 files changed, 74 insertions(+), 74 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-12-14 03:24:10 UTC (rev 774779)
+++ PKGBUILD2020-12-14 03:25:22 UTC (rev 774780)
@@ -1,51 +0,0 @@
-# Maintainer: Daurnimator 
-# Contributor: Marc Tiehuis 
-
-pkgname=zig
-pkgver=0.7.0
-pkgrel=1
-pkgdesc='a general-purpose programming language and toolchain for maintaining 
robust, optimal, and reusable software'
-arch=('x86_64')
-url='https://ziglang.org/'
-license=('MIT')
-depends=('clang' 'llvm-libs' 'lld')
-makedepends=('cmake' 'llvm')
-source=("https://ziglang.org/download/$pkgver/zig-$pkgver.tar.xz;
-"resolve_DNS.patch")
-sha256sums=('0efd2cf6c3b05723db80e9cf193bc55150bba84ca41f855a90f53fc756445f83'
-'c2b7e709dcc229f0e58e2529db900bcfb9a1cfb73da765c5c76ab1e6d0a333cc')
-
-prepare() {
-cd "$pkgname-$pkgver"
-# https://github.com/ziglang/zig/issues/6898
-patch -p1 < ../resolve_DNS.patch
-}
-
-build() {
-cd "$pkgname-$pkgver"
-
-mkdir -p build
-cd build
-# The zig CMakeLists uses build type Debug if not set
-# override it back to None so makepkg env vars are respected
-cmake \
--DCMAKE_BUILD_TYPE=None \
--DCMAKE_INSTALL_PREFIX=/usr \
--DZIG_PREFER_CLANG_CPP_DYLIB=ON \
-..
-make
-}
-
-check() {
-cd "$pkgname-$pkgver/build"
-
-./zig build test
-}
-
-package() {
-cd "$pkgname-$pkgver"
-
-install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-
-make -C build DESTDIR="$pkgdir" install
-}

Copied: zig/repos/community-x86_64/PKGBUILD (from rev 774779, 
zig/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-12-14 03:25:22 UTC (rev 774780)
@@ -0,0 +1,51 @@
+# Maintainer: Daurnimator 
+# Contributor: Marc Tiehuis 
+
+pkgname=zig
+pkgver=0.7.1
+pkgrel=1
+pkgdesc='a general-purpose programming language and toolchain for maintaining 
robust, optimal, and reusable software'
+arch=('x86_64')
+url='https://ziglang.org/'
+license=('MIT')
+depends=('clang' 'llvm-libs' 'lld')
+makedepends=('cmake' 'llvm')
+source=("https://ziglang.org/download/$pkgver/zig-$pkgver.tar.xz;
+"resolve_DNS.patch")
+sha256sums=('2db3b944ab368d955b48743d9f7c963b8f96de1a441ba5a35e197237cc6dae44'
+'c2b7e709dcc229f0e58e2529db900bcfb9a1cfb73da765c5c76ab1e6d0a333cc')
+
+prepare() {
+cd "$pkgname-$pkgver"
+# https://github.com/ziglang/zig/issues/6898
+patch -p1 < ../resolve_DNS.patch
+}
+
+build() {
+cd "$pkgname-$pkgver"
+
+mkdir -p build
+cd build
+# The zig CMakeLists uses build type Debug if not set
+# override it back to None so makepkg env vars are respected
+cmake \
+-DCMAKE_BUILD_TYPE=None \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DZIG_PREFER_CLANG_CPP_DYLIB=ON \
+..
+make
+}
+
+check() {
+cd "$pkgname-$pkgver/build"
+
+./zig build test
+}
+
+package() {
+cd "$pkgname-$pkgver"
+
+install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+make -C build DESTDIR="$pkgdir" install
+}

Deleted: resolve_DNS.patch
===
--- resolve_DNS.patch   2020-12-14 03:24:10 UTC (rev 774779)
+++ resolve_DNS.patch   2020-12-14 03:25:22 UTC (rev 774780)
@@ -1,23 +0,0 @@
-diff --git a/lib/std/net/test.zig b/lib/std/net/test.zig
-index 9f40bb5a3..15dd8c920 100644
 a/lib/std/net/test.zig
-+++ b/lib/std/net/test.zig
-@@ -106,18 +106,6 @@ test "resolve DNS" {
- }
- }
- 
--// Resolve localhost, this should not fail.
--{
--const localhost_v4 = try net.Address.parseIp("127.0.0.1", 80);
--const localhost_v6 = try net.Address.parseIp("::2", 80);
--
--const result = try net.getAddressList(testing.allocator, "localhost", 
80);
--defer result.deinit();
--for (result.addrs) |addr| {
--if (addr.eql(localhost_v4) or addr.eql(localhost_v6)) break;
--} else @panic("unexpected address for localhost");
--}
--
- {
- // The tests are required to work even when there is no Internet 
connection,
- // so some of these errors we must accept and skip the test.

Copied: zig/repos/community-x86_64/resolve_DNS.patch (from rev 774779, 
zig/trunk/resolve_DNS.patch)

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

2020-12-13 Thread Felix Yan via arch-commits
Date: Monday, December 14, 2020 @ 03:25:35
  Author: felixonmars
Revision: 774782

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-brittany/repos/community-staging-x86_64/PKGBUILD (from rev 
774781, haskell-brittany/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-12-14 03:25:35 UTC (rev 774782)
@@ -0,0 +1,59 @@
+# Maintainer: Felix Yan 
+
+_hkgname=brittany
+pkgname=haskell-brittany
+pkgver=0.12.2.0
+pkgrel=6
+pkgdesc="Haskell source code formatter"
+url="https://github.com/lspitzner/brittany/;
+license=("AGPL")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-butcher' 'haskell-cmdargs' 
'haskell-czipwith'
+ 'haskell-data-tree-print' 'haskell-extra' 'haskell-ghc-exactprint' 
'haskell-ghc-paths'
+ 'haskell-monad-memo' 'haskell-multistate' 'haskell-random' 
'haskell-safe'
+ 'haskell-strict' 'haskell-syb' 'haskell-uniplate' 'haskell-unsafe' 
'haskell-yaml')
+makedepends=('ghc' 'uusi' 'haskell-hspec')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;
+ghc-8.10.patch)
+sha256sums=('f437edc73106185213abdbfdc3d34a2f449c341cebd738b51ed39d683ca4670f'
+'e0b4617fe2cb67f4ab035fe0ac333d506c4acfd7451b134ec76ee1eca6ee2b64')
+
+prepare() {
+  cd $_hkgname-$pkgver
+  patch -p1 -i ../ghc-8.10.patch
+  uusi -r semigroups:Cabal -u random $_hkgname.cabal
+
+  # Hack to use Cabal's compatibility layer of semigroups
+  sed -i 's/import Data.Semigroup.Generic/import 
Distribution.Compat.Semigroup/' 
src/Language/Haskell/Brittany/Internal/Config/Types.hs
+}
+
+build() {
+  cd $_hkgname-$pkgver
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  runhaskell Setup build $MAKEFLAGS
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd $_hkgname-$pkgver
+  runhaskell Setup test
+}
+
+package() {
+  cd $_hkgname-$pkgver
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}

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

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

2020-12-13 Thread Felix Yan via arch-commits
Date: Monday, December 14, 2020 @ 03:25:23
  Author: felixonmars
Revision: 774781

upgpkg: haskell-brittany 0.12.2.0-6: rebuild with base-orphans 0.8.5

Modified:
  haskell-brittany/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-14 03:25:22 UTC (rev 774780)
+++ PKGBUILD2020-12-14 03:25:23 UTC (rev 774781)
@@ -3,7 +3,7 @@
 _hkgname=brittany
 pkgname=haskell-brittany
 pkgver=0.12.2.0
-pkgrel=5
+pkgrel=6
 pkgdesc="Haskell source code formatter"
 url="https://github.com/lspitzner/brittany/;
 license=("AGPL")


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

2020-12-13 Thread Daurnimator via arch-commits
Date: Monday, December 14, 2020 @ 03:24:10
  Author: daurnimator
Revision: 774779

upgpkg: zig 0.7.1-1

Modified:
  zig/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-14 03:20:59 UTC (rev 774778)
+++ PKGBUILD2020-12-14 03:24:10 UTC (rev 774779)
@@ -2,7 +2,7 @@
 # Contributor: Marc Tiehuis 
 
 pkgname=zig
-pkgver=0.7.0
+pkgver=0.7.1
 pkgrel=1
 pkgdesc='a general-purpose programming language and toolchain for maintaining 
robust, optimal, and reusable software'
 arch=('x86_64')
@@ -12,7 +12,7 @@
 makedepends=('cmake' 'llvm')
 source=("https://ziglang.org/download/$pkgver/zig-$pkgver.tar.xz;
 "resolve_DNS.patch")
-sha256sums=('0efd2cf6c3b05723db80e9cf193bc55150bba84ca41f855a90f53fc756445f83'
+sha256sums=('2db3b944ab368d955b48743d9f7c963b8f96de1a441ba5a35e197237cc6dae44'
 'c2b7e709dcc229f0e58e2529db900bcfb9a1cfb73da765c5c76ab1e6d0a333cc')
 
 prepare() {


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

2020-12-13 Thread Felix Yan via arch-commits
Date: Monday, December 14, 2020 @ 03:20:59
  Author: felixonmars
Revision: 774778

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-butcher/repos/community-staging-x86_64/PKGBUILD (from rev 
774777, haskell-butcher/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-12-14 03:20:59 UTC (rev 774778)
@@ -0,0 +1,47 @@
+# Maintainer: Felix Yan 
+
+_hkgname=butcher
+pkgname=haskell-butcher
+pkgver=1.3.3.2
+pkgrel=5
+pkgdesc="Chops a command or program invocation into digestable pieces."
+url="https://github.com/lspitzner/butcher/;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-bifunctors' 'haskell-deque' 'haskell-extra' 
'haskell-free'
+ 'haskell-microlens' 'haskell-microlens-th' 'haskell-multistate' 
'haskell-unsafe'
+ 'haskell-void')
+makedepends=('ghc' 'haskell-hspec')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha256sums=('1d0f8e8e498b012c4a859671eebf34a6e965e8ed99b3c90d3aad1d8898c40f1b')
+
+build() {
+  cd $_hkgname-$pkgver
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  runhaskell Setup build $MAKEFLAGS
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd $_hkgname-$pkgver
+  runhaskell Setup test
+}
+
+package() {
+  cd $_hkgname-$pkgver
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-12-13 Thread Felix Yan via arch-commits
Date: Monday, December 14, 2020 @ 03:20:49
  Author: felixonmars
Revision: 774777

upgpkg: haskell-butcher 1.3.3.2-5: rebuild with base-orphans 0.8.5

Modified:
  haskell-butcher/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-14 03:17:29 UTC (rev 774776)
+++ PKGBUILD2020-12-14 03:20:49 UTC (rev 774777)
@@ -3,7 +3,7 @@
 _hkgname=butcher
 pkgname=haskell-butcher
 pkgver=1.3.3.2
-pkgrel=4
+pkgrel=5
 pkgdesc="Chops a command or program invocation into digestable pieces."
 url="https://github.com/lspitzner/butcher/;
 license=("BSD")


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

2020-12-13 Thread Felix Yan via arch-commits
Date: Monday, December 14, 2020 @ 03:17:29
  Author: felixonmars
Revision: 774776

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-deque/repos/community-staging-x86_64/PKGBUILD (from rev 774775, 
haskell-deque/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-12-14 03:17:29 UTC (rev 774776)
@@ -0,0 +1,46 @@
+# Maintainer: Felix Yan 
+
+_hkgname=deque
+pkgname=haskell-deque
+pkgver=0.4.3
+pkgrel=4
+pkgdesc="Double-ended queues"
+url="https://github.com/nikita-volkov/deque;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-hashable' 'haskell-strict-list')
+makedepends=('ghc' 'haskell-quickcheck' 'haskell-quickcheck-instances' 
'haskell-rerebase'
+ 'haskell-tasty' 'haskell-tasty-hunit' 'haskell-tasty-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha256sums=('b76a0e7d8a5f3b12ca8cf5a583f3e8e4333c7860f56b1e921a3fdfe959e557a5')
+
+build() {
+  cd $_hkgname-$pkgver
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  runhaskell Setup build $MAKEFLAGS
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd $_hkgname-$pkgver
+  runhaskell Setup test
+}
+
+package() {
+  cd $_hkgname-$pkgver
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-12-13 Thread Felix Yan via arch-commits
Date: Monday, December 14, 2020 @ 03:17:19
  Author: felixonmars
Revision: 774775

upgpkg: haskell-deque 0.4.3-4: rebuild with base-orphans 0.8.5

Modified:
  haskell-deque/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-14 03:14:50 UTC (rev 774774)
+++ PKGBUILD2020-12-14 03:17:19 UTC (rev 774775)
@@ -3,7 +3,7 @@
 _hkgname=deque
 pkgname=haskell-deque
 pkgver=0.4.3
-pkgrel=3
+pkgrel=4
 pkgdesc="Double-ended queues"
 url="https://github.com/nikita-volkov/deque;
 license=("MIT")


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

2020-12-13 Thread Felix Yan via arch-commits
Date: Monday, December 14, 2020 @ 03:14:50
  Author: felixonmars
Revision: 774774

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-strict-list/repos/community-staging-x86_64/
  haskell-strict-list/repos/community-staging-x86_64/PKGBUILD
(from rev 774773, haskell-strict-list/trunk/PKGBUILD)

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

Copied: haskell-strict-list/repos/community-staging-x86_64/PKGBUILD (from rev 
774773, haskell-strict-list/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-12-14 03:14:50 UTC (rev 774774)
@@ -0,0 +1,46 @@
+# Maintainer: Felix Yan 
+
+_hkgname=strict-list
+pkgname=haskell-strict-list
+pkgver=0.1.5
+pkgrel=26
+pkgdesc="Strict linked list"
+url="https://github.com/nikita-volkov/strict-list;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-hashable' 'haskell-semigroupoids')
+makedepends=('ghc' 'haskell-quickcheck' 'haskell-quickcheck-instances' 
'haskell-rerebase'
+ 'haskell-tasty' 'haskell-tasty-hunit' 'haskell-tasty-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha256sums=('ba7338766ba5fbb4069b748e5bdce12866379c32f1ab1c6015d45dbd1010bb1a')
+
+build() {
+  cd $_hkgname-$pkgver
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  runhaskell Setup build $MAKEFLAGS
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd $_hkgname-$pkgver
+  runhaskell Setup test
+}
+
+package() {
+  cd $_hkgname-$pkgver
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-12-13 Thread Felix Yan via arch-commits
Date: Monday, December 14, 2020 @ 03:14:38
  Author: felixonmars
Revision: 774773

upgpkg: haskell-strict-list 0.1.5-26: rebuild with base-orphans 0.8.5

Modified:
  haskell-strict-list/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-14 03:13:43 UTC (rev 774772)
+++ PKGBUILD2020-12-14 03:14:38 UTC (rev 774773)
@@ -3,7 +3,7 @@
 _hkgname=strict-list
 pkgname=haskell-strict-list
 pkgver=0.1.5
-pkgrel=25
+pkgrel=26
 pkgdesc="Strict linked list"
 url="https://github.com/nikita-volkov/strict-list;
 license=("MIT")


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

2020-12-13 Thread Felix Yan via arch-commits
Date: Monday, December 14, 2020 @ 03:13:43
  Author: felixonmars
Revision: 774772

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-neat-interpolation/repos/community-staging-x86_64/
  haskell-neat-interpolation/repos/community-staging-x86_64/PKGBUILD
(from rev 774771, haskell-neat-interpolation/trunk/PKGBUILD)

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

Copied: haskell-neat-interpolation/repos/community-staging-x86_64/PKGBUILD 
(from rev 774771, haskell-neat-interpolation/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-12-14 03:13:43 UTC (rev 774772)
@@ -0,0 +1,44 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=neat-interpolation
+pkgname=haskell-neat-interpolation
+pkgver=0.5.1.2
+pkgrel=38
+pkgdesc="A quasiquoter for neat and simple multiline text interpolation"
+url="https://github.com/nikita-volkov/neat-interpolation;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-megaparsec')
+makedepends=('ghc' 'haskell-quickcheck' 'haskell-quickcheck-instances' 
'haskell-rerebase'
+ 'haskell-tasty' 'haskell-tasty-hunit' 'haskell-tasty-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('147bfca831dccc4646cce7c91635d3885049c67c93c3da83a774eaf1c7f485fba14e695efa173fd3a125380c13d70fe3ca017c2179e161d8e53d60278bb0b7a8')
+
+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-neat-interpolation/trunk (PKGBUILD)

2020-12-13 Thread Felix Yan via arch-commits
Date: Monday, December 14, 2020 @ 03:13:30
  Author: felixonmars
Revision: 774771

upgpkg: haskell-neat-interpolation 0.5.1.2-38: rebuild with base-orphans 0.8.5

Modified:
  haskell-neat-interpolation/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-14 03:12:16 UTC (rev 774770)
+++ PKGBUILD2020-12-14 03:13:30 UTC (rev 774771)
@@ -4,7 +4,7 @@
 _hkgname=neat-interpolation
 pkgname=haskell-neat-interpolation
 pkgver=0.5.1.2
-pkgrel=37
+pkgrel=38
 pkgdesc="A quasiquoter for neat and simple multiline text interpolation"
 url="https://github.com/nikita-volkov/neat-interpolation;
 license=("MIT")


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

2020-12-13 Thread Felix Yan via arch-commits
Date: Monday, December 14, 2020 @ 03:12:16
  Author: felixonmars
Revision: 774770

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-text-builder/repos/community-staging-x86_64/
  haskell-text-builder/repos/community-staging-x86_64/PKGBUILD
(from rev 774769, haskell-text-builder/trunk/PKGBUILD)

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

Copied: haskell-text-builder/repos/community-staging-x86_64/PKGBUILD (from rev 
774769, haskell-text-builder/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-12-14 03:12:16 UTC (rev 774770)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+
+_hkgname=text-builder
+pkgname=haskell-text-builder
+pkgver=0.6.6.1
+pkgrel=113
+pkgdesc="An efficient strict text builder"
+url="https://github.com/nikita-volkov/text-builder;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-base-prelude' 'haskell-deferred-folds')
+makedepends=('ghc' 'haskell-quickcheck' 'haskell-quickcheck-instances' 
'haskell-rerebase'
+ 'haskell-tasty' 'haskell-tasty-hunit' 'haskell-tasty-quickcheck')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('c98381114426ca93b4f4bf6899265a0c62ee683080acf3896e6f6592cefc4a2df00460908755a55be8b33af7840ccd378e48c52f4379f8dd4bc3411928c5c067')
+
+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-text-builder/trunk (PKGBUILD)

2020-12-13 Thread Felix Yan via arch-commits
Date: Monday, December 14, 2020 @ 03:12:02
  Author: felixonmars
Revision: 774769

upgpkg: haskell-text-builder 0.6.6.1-113: rebuild with base-orphans 0.8.5

Modified:
  haskell-text-builder/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-14 03:11:06 UTC (rev 774768)
+++ PKGBUILD2020-12-14 03:12:02 UTC (rev 774769)
@@ -3,7 +3,7 @@
 _hkgname=text-builder
 pkgname=haskell-text-builder
 pkgver=0.6.6.1
-pkgrel=112
+pkgrel=113
 pkgdesc="An efficient strict text builder"
 url="https://github.com/nikita-volkov/text-builder;
 license=('MIT')


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

2020-12-13 Thread Felix Yan via arch-commits
Date: Monday, December 14, 2020 @ 03:10:54
  Author: felixonmars
Revision: 774767

upgpkg: haskell-deferred-folds 0.9.14-2: rebuild with base-orphans 0.8.5

Modified:
  haskell-deferred-folds/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-14 03:10:01 UTC (rev 774766)
+++ PKGBUILD2020-12-14 03:10:54 UTC (rev 774767)
@@ -3,7 +3,7 @@
 _hkgname=deferred-folds
 pkgname=haskell-deferred-folds
 pkgver=0.9.14
-pkgrel=1
+pkgrel=2
 pkgdesc="Abstractions over deferred folds"
 url="https://github.com/metrix-ai/deferred-folds;
 license=('MIT')


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

2020-12-13 Thread Felix Yan via arch-commits
Date: Monday, December 14, 2020 @ 03:11:06
  Author: felixonmars
Revision: 774768

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-deferred-folds/repos/community-staging-x86_64/
  haskell-deferred-folds/repos/community-staging-x86_64/PKGBUILD
(from rev 774767, haskell-deferred-folds/trunk/PKGBUILD)

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

Copied: haskell-deferred-folds/repos/community-staging-x86_64/PKGBUILD (from 
rev 774767, haskell-deferred-folds/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-12-14 03:11:06 UTC (rev 774768)
@@ -0,0 +1,44 @@
+# Maintainer: Felix Yan 
+
+_hkgname=deferred-folds
+pkgname=haskell-deferred-folds
+pkgver=0.9.14
+pkgrel=2
+pkgdesc="Abstractions over deferred folds"
+url="https://github.com/metrix-ai/deferred-folds;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-foldl' 'haskell-hashable' 'haskell-primitive'
+ 'haskell-unordered-containers' 'haskell-vector')
+makedepends=('ghc' 'haskell-quickcheck' 'haskell-quickcheck-instances' 
'haskell-rerebase'
+ 'haskell-tasty' 'haskell-tasty-hunit' 'haskell-tasty-quickcheck')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('a56d4123b495d9c69b4210c640a817fde5d095fb062c8643d3a4f04d98a053d2493a9bd73683ecafe2d18922930b63c82c62ce1649c00e0b797593f4fa6bfa54')
+
+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-binary-parser/repos (2 files)

2020-12-13 Thread Felix Yan via arch-commits
Date: Monday, December 14, 2020 @ 03:10:01
  Author: felixonmars
Revision: 774766

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-binary-parser/repos/community-staging-x86_64/PKGBUILD (from rev 
774765, haskell-binary-parser/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-12-14 03:10:01 UTC (rev 774766)
@@ -0,0 +1,44 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=binary-parser
+pkgname=haskell-binary-parser
+pkgver=0.5.6
+pkgrel=65
+pkgdesc="A highly-efficient but limited parser API specialised for bytestrings"
+url="https://github.com/nikita-volkov/binary-parser;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs')
+makedepends=('ghc' 'haskell-quickcheck' 'haskell-quickcheck-instances' 
'haskell-rerebase'
+ 'haskell-tasty' 'haskell-tasty-hunit' 'haskell-tasty-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('e218ac9f38f85f143acaed4ecd8d347e1442807e07159c097fef84b48fbb2c08b4f0f1915c5dd5692b4bf779ba3ccdfbf6f48665f0447a1b4cf44c76c638011e')
+
+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-binary-parser/trunk (PKGBUILD)

2020-12-13 Thread Felix Yan via arch-commits
Date: Monday, December 14, 2020 @ 03:09:51
  Author: felixonmars
Revision: 774765

upgpkg: haskell-binary-parser 0.5.6-65: rebuild with base-orphans 0.8.5

Modified:
  haskell-binary-parser/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-14 03:09:00 UTC (rev 774764)
+++ PKGBUILD2020-12-14 03:09:51 UTC (rev 774765)
@@ -4,7 +4,7 @@
 _hkgname=binary-parser
 pkgname=haskell-binary-parser
 pkgver=0.5.6
-pkgrel=64
+pkgrel=65
 pkgdesc="A highly-efficient but limited parser API specialised for bytestrings"
 url="https://github.com/nikita-volkov/binary-parser;
 license=("MIT")


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

2020-12-13 Thread Felix Yan via arch-commits
Date: Monday, December 14, 2020 @ 03:09:00
  Author: felixonmars
Revision: 774764

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-rerebase/repos/community-staging-x86_64/PKGBUILD (from rev 
774763, haskell-rerebase/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-12-14 03:09:00 UTC (rev 774764)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=rerebase
+pkgname=haskell-rerebase
+pkgver=1.10.0.1
+pkgrel=13
+pkgdesc='Reexports from "base" with a bunch of other standard libraries'
+url="https://github.com/nikita-volkov/rerebase;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-rebase')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('c67be90100855a24d2a3d392129374001281baca08f8d925e09d9e1bdfc73aafeffae4c05cbbb6ebd7a381cdb198b618cee4defcfc133e0ac39fd605047550d6')
+
+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-rerebase/trunk (PKGBUILD)

2020-12-13 Thread Felix Yan via arch-commits
Date: Monday, December 14, 2020 @ 03:08:50
  Author: felixonmars
Revision: 774763

upgpkg: haskell-rerebase 1.10.0.1-13: rebuild with base-orphans 0.8.5

Modified:
  haskell-rerebase/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-14 03:08:00 UTC (rev 774762)
+++ PKGBUILD2020-12-14 03:08:50 UTC (rev 774763)
@@ -4,7 +4,7 @@
 _hkgname=rerebase
 pkgname=haskell-rerebase
 pkgver=1.10.0.1
-pkgrel=12
+pkgrel=13
 pkgdesc='Reexports from "base" with a bunch of other standard libraries'
 url="https://github.com/nikita-volkov/rerebase;
 license=("MIT")


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

2020-12-13 Thread Felix Yan via arch-commits
Date: Monday, December 14, 2020 @ 03:08:00
  Author: felixonmars
Revision: 774762

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-rebase/repos/community-staging-x86_64/PKGBUILD (from rev 
774761, haskell-rebase/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-12-14 03:08:00 UTC (rev 774762)
@@ -0,0 +1,42 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=rebase
+pkgname=haskell-rebase
+pkgver=1.10.0.1
+pkgrel=13
+pkgdesc='A more progressive alternative to the "base" package'
+url="https://github.com/nikita-volkov/rebase;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-bifunctors' 'haskell-contravariant' 
'haskell-contravariant-extras'
+ 'haskell-comonad' 'haskell-dlist' 'haskell-either' 'haskell-hashable' 
'haskell-hashable-time'
+ 'haskell-profunctors' 'haskell-scientific' 'haskell-selective' 
'haskell-semigroupoids'
+ 'haskell-unordered-containers' 'haskell-uuid' 'haskell-vector' 
'haskell-vector-instances'
+ 'haskell-void')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('85ae218cc303f98594f39f94cc0fbc530d5962298c9d184dde7337f9d62ae98cc04910d7d68df60cd188be4eb4df18a2e87d2fcb849e34174965e5e69b9eef4a')
+
+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-rebase/trunk (PKGBUILD)

2020-12-13 Thread Felix Yan via arch-commits
Date: Monday, December 14, 2020 @ 03:07:50
  Author: felixonmars
Revision: 774761

upgpkg: haskell-rebase 1.10.0.1-13: rebuild with base-orphans 0.8.5

Modified:
  haskell-rebase/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-14 03:07:02 UTC (rev 774760)
+++ PKGBUILD2020-12-14 03:07:50 UTC (rev 774761)
@@ -4,7 +4,7 @@
 _hkgname=rebase
 pkgname=haskell-rebase
 pkgver=1.10.0.1
-pkgrel=12
+pkgrel=13
 pkgdesc='A more progressive alternative to the "base" package'
 url="https://github.com/nikita-volkov/rebase;
 license=("MIT")


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

2020-12-13 Thread Felix Yan via arch-commits
Date: Monday, December 14, 2020 @ 03:07:02
  Author: felixonmars
Revision: 774760

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-selective/repos/community-staging-x86_64/PKGBUILD (from rev 
774759, haskell-selective/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-12-14 03:07:02 UTC (rev 774760)
@@ -0,0 +1,48 @@
+# Maintainer: Felix Yan 
+
+_hkgname=selective
+pkgname=haskell-selective
+pkgver=0.4.1.1
+pkgrel=31
+pkgdesc="Selective applicative functors"
+url="https://github.com/snowleopard/selective;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs')
+makedepends=('ghc' 'haskell-quickcheck' 'haskell-tasty' 
'haskell-tasty-expected-failure'
+ 'haskell-tasty-quickcheck')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('5f40ebb4c0b516ced83cdf91e7c138f3f802c6ce6307467d60cd01bf9e76e4aa74d53ae59c1a39fde781f4f83f33df7b72eea2a635b5931e57ddef8012ce5a4f')
+
+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-selective/trunk (PKGBUILD)

2020-12-13 Thread Felix Yan via arch-commits
Date: Monday, December 14, 2020 @ 03:06:51
  Author: felixonmars
Revision: 774759

upgpkg: haskell-selective 0.4.1.1-31: rebuild with base-orphans 0.8.5

Modified:
  haskell-selective/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-14 03:05:51 UTC (rev 774758)
+++ PKGBUILD2020-12-14 03:06:51 UTC (rev 774759)
@@ -3,7 +3,7 @@
 _hkgname=selective
 pkgname=haskell-selective
 pkgver=0.4.1.1
-pkgrel=30
+pkgrel=31
 pkgdesc="Selective applicative functors"
 url="https://github.com/snowleopard/selective;
 license=('MIT')


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

2020-12-13 Thread Felix Yan via arch-commits
Date: Monday, December 14, 2020 @ 03:05:51
  Author: felixonmars
Revision: 774758

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-lukko/repos/community-staging-x86_64/PKGBUILD (from rev 774757, 
haskell-lukko/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-12-14 03:05:51 UTC (rev 774758)
@@ -0,0 +1,48 @@
+# Maintainer: Felix Yan 
+
+_hkgname=lukko
+pkgname=haskell-lukko
+pkgver=0.1.1.2
+pkgrel=38
+pkgdesc="Access to platform dependent file locking APIs"
+url="https://github.com/phadej/lukko;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs')
+makedepends=('ghc' 'haskell-async' 'haskell-singleton-bool' 'haskell-tasty'
+ 'haskell-tasty-expected-failure' 'haskell-tasty-hunit' 
'haskell-temporary')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('fe3a6687b741491ebaeace29c8d4d01307fad43f0e649c087fef24ec227eb231541fa1500e1685c814eb2a1ea472546033e837ce84fa64df79f00b19f8abebb6')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i 's/1.2.3/1.3/;s/\^>=0.11.1.2/>=0.11/' $_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-lukko/trunk (PKGBUILD)

2020-12-13 Thread Felix Yan via arch-commits
Date: Monday, December 14, 2020 @ 03:05:41
  Author: felixonmars
Revision: 774757

upgpkg: haskell-lukko 0.1.1.2-38: rebuild with base-orphans 0.8.5

Modified:
  haskell-lukko/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-14 03:04:58 UTC (rev 774756)
+++ PKGBUILD2020-12-14 03:05:41 UTC (rev 774757)
@@ -3,7 +3,7 @@
 _hkgname=lukko
 pkgname=haskell-lukko
 pkgver=0.1.1.2
-pkgrel=37
+pkgrel=38
 pkgdesc="Access to platform dependent file locking APIs"
 url="https://github.com/phadej/lukko;
 license=('BSD')


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

2020-12-13 Thread Felix Yan via arch-commits
Date: Monday, December 14, 2020 @ 03:04:58
  Author: felixonmars
Revision: 774756

archrelease: copy trunk to community-staging-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-12-14 03:04:46 UTC (rev 774755)
+++ PKGBUILD2020-12-14 03:04:58 UTC (rev 774756)
@@ -1,54 +0,0 @@
-# Maintainer: Felix Yan 
-
-_hkgname=tasty-hedgehog
-pkgname=haskell-tasty-hedgehog
-pkgver=1.0.0.2
-pkgrel=109
-pkgdesc="Integration for tasty and hedgehog"
-url="https://github.com/qfpl/tasty-hedgehog;
-license=('BSD')
-arch=('x86_64')
-depends=('ghc-libs' 'haskell-hedgehog' 'haskell-tagged' 'haskell-tasty')
-makedepends=('ghc')
-checkdepends=('haskell-tasty-expected-failure')
-source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
-sha512sums=('56ac4db27b97bc6902633ec398bdbae28f6121d818a29fde62ddea4a4619af0fe7b058b55479414a627119a0014f2c84d6b795c86e9e36d21fd25bf1033a9c4b')
-
-prepare() {
-cd $_hkgname-$pkgver
-sed -i 's/< *4.14/<5/;s/< *1.3/<2/;s/< *1.0.3/<2/;s/< *0.12/<1/' 
$_hkgname.cabal
-}
-
-build() {
-cd $_hkgname-$pkgver
-
-if (( CHECKFUNC )); then
-_opts=('--enable-tests')
-else
-_opts=('--disable-tests')
-fi
-
-runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
---prefix=/usr --docdir=/usr/share/doc/$pkgname "${_opts[@]}" \
---dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
-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 "LICENCE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENCE"
-rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENCE"
-}

Copied: haskell-tasty-hedgehog/repos/community-staging-x86_64/PKGBUILD (from 
rev 774755, haskell-tasty-hedgehog/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-12-14 03:04:58 UTC (rev 774756)
@@ -0,0 +1,54 @@
+# Maintainer: Felix Yan 
+
+_hkgname=tasty-hedgehog
+pkgname=haskell-tasty-hedgehog
+pkgver=1.0.0.2
+pkgrel=110
+pkgdesc="Integration for tasty and hedgehog"
+url="https://github.com/qfpl/tasty-hedgehog;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-hedgehog' 'haskell-tagged' 'haskell-tasty')
+makedepends=('ghc')
+checkdepends=('haskell-tasty-expected-failure')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('56ac4db27b97bc6902633ec398bdbae28f6121d818a29fde62ddea4a4619af0fe7b058b55479414a627119a0014f2c84d6b795c86e9e36d21fd25bf1033a9c4b')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i 's/< *4.14/<5/;s/< *1.3/<2/;s/< *1.0.3/<2/;s/< *0.12/<1/' 
$_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+if (( CHECKFUNC )); then
+_opts=('--enable-tests')
+else
+_opts=('--disable-tests')
+fi
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname "${_opts[@]}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+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 "LICENCE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENCE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENCE"
+}


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

2020-12-13 Thread Felix Yan via arch-commits
Date: Monday, December 14, 2020 @ 03:04:46
  Author: felixonmars
Revision: 774755

upgpkg: haskell-tasty-hedgehog 1.0.0.2-110: rebuild with base-orphans 0.8.5

Modified:
  haskell-tasty-hedgehog/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-14 03:04:03 UTC (rev 774754)
+++ PKGBUILD2020-12-14 03:04:46 UTC (rev 774755)
@@ -3,7 +3,7 @@
 _hkgname=tasty-hedgehog
 pkgname=haskell-tasty-hedgehog
 pkgver=1.0.0.2
-pkgrel=109
+pkgrel=110
 pkgdesc="Integration for tasty and hedgehog"
 url="https://github.com/qfpl/tasty-hedgehog;
 license=('BSD')


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

2020-12-13 Thread Felix Yan via arch-commits
Date: Monday, December 14, 2020 @ 03:04:03
  Author: felixonmars
Revision: 774754

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-hedgehog/repos/community-staging-x86_64/PKGBUILD
(from rev 774753, haskell-hedgehog/trunk/PKGBUILD)
Deleted:
  haskell-hedgehog/repos/community-staging-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-12-14 03:03:51 UTC (rev 774753)
+++ PKGBUILD2020-12-14 03:04:03 UTC (rev 774754)
@@ -1,51 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Arch Haskell Team 
-
-_hkgname=hedgehog
-pkgname=haskell-hedgehog
-pkgver=1.0.3
-pkgrel=59
-pkgdesc="A modern property-based testing system"
-url="https://hedgehog.qa;
-license=("BSD")
-arch=('x86_64')
-depends=('ghc-libs' 'haskell-ansi-terminal' 'haskell-async' 
'haskell-concurrent-output'
- 'haskell-erf' 'haskell-lifted-async' 'haskell-mmorph'
- 'haskell-monad-control' 'haskell-pretty-show' 'haskell-primitive' 
'haskell-random'
- 'haskell-resourcet' 'haskell-transformers-base' 
'haskell-wl-pprint-annotated')
-makedepends=('ghc')
-source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha512sums=('c04955a1189c85ec8c66ecdd97ea4bdd8a4587a7f999c38bd5e5ab4d51469a075f4f33c73f5a75fd74572c9c87ec32fea21e67fc66f61b7d3f5d30286f5b5536')
-
-prepare() {
-cd $_hkgname-$pkgver
-sed -i -e '/semigroups/d;/fail/d;s/< *1.2/<2/;s/< *0.11/<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
-}
-
-package() {
-cd $_hkgname-$pkgver
-
-install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
-install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
-runhaskell Setup copy --destdir="$pkgdir"
-install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
-}

Copied: haskell-hedgehog/repos/community-staging-x86_64/PKGBUILD (from rev 
774753, haskell-hedgehog/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-12-14 03:04:03 UTC (rev 774754)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hedgehog
+pkgname=haskell-hedgehog
+pkgver=1.0.3
+pkgrel=60
+pkgdesc="A modern property-based testing system"
+url="https://hedgehog.qa;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-ansi-terminal' 'haskell-async' 
'haskell-concurrent-output'
+ 'haskell-erf' 'haskell-lifted-async' 'haskell-mmorph'
+ 'haskell-monad-control' 'haskell-pretty-show' 'haskell-primitive' 
'haskell-random'
+ 'haskell-resourcet' 'haskell-transformers-base' 
'haskell-wl-pprint-annotated')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('c04955a1189c85ec8c66ecdd97ea4bdd8a4587a7f999c38bd5e5ab4d51469a075f4f33c73f5a75fd74572c9c87ec32fea21e67fc66f61b7d3f5d30286f5b5536')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i -e '/semigroups/d;/fail/d;s/< *1.2/<2/;s/< *0.11/<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
+}
+
+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 

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

2020-12-13 Thread Felix Yan via arch-commits
Date: Monday, December 14, 2020 @ 03:03:51
  Author: felixonmars
Revision: 774753

upgpkg: haskell-hedgehog 1.0.3-60: rebuild with base-orphans 0.8.5

Modified:
  haskell-hedgehog/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-14 03:02:40 UTC (rev 774752)
+++ PKGBUILD2020-12-14 03:03:51 UTC (rev 774753)
@@ -4,7 +4,7 @@
 _hkgname=hedgehog
 pkgname=haskell-hedgehog
 pkgver=1.0.3
-pkgrel=59
+pkgrel=60
 pkgdesc="A modern property-based testing system"
 url="https://hedgehog.qa;
 license=("BSD")


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

2020-12-13 Thread Felix Yan via arch-commits
Date: Monday, December 14, 2020 @ 03:02:40
  Author: felixonmars
Revision: 774752

archrelease: copy trunk to community-staging-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-12-14 03:02:28 UTC (rev 774751)
+++ PKGBUILD2020-12-14 03:02:40 UTC (rev 774752)
@@ -1,51 +0,0 @@
-# Maintainer: Felix Yan 
-
-_hkgname=lifted-async
-pkgname=haskell-lifted-async
-pkgver=0.10.1.2
-pkgrel=55
-pkgdesc="Run lifted IO operations asynchronously and wait for their results"
-url="https://github.com/maoe/lifted-async;
-license=('BSD')
-arch=('x86_64')
-depends=('ghc-libs' 'haskell-async' 'haskell-constraints' 'haskell-lifted-base'
- 'haskell-monad-control' 'haskell-transformers-base')
-makedepends=('ghc')
-checkdepends=('haskell-hunit' 'haskell-tasty' 'haskell-tasty-expected-failure'
-  'haskell-tasty-hunit' 'haskell-tasty-th')
-source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
-sha512sums=('9efbf87786193a90112558ebd09101f30997c6d2f73313c3ae53519c625c8aff47b7979620ea3461378379cae13a4ff74a6933425783b1ccd422db303056228f')
-
-build() {
-cd $_hkgname-$pkgver
-
-if (( CHECKFUNC )); then
-_opts=('--enable-tests')
-else
-_opts=('--disable-tests')
-fi
-
-runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
---prefix=/usr --docdir=/usr/share/doc/$pkgname "${_opts[@]}" \
---dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
-runhaskell Setup build $MAKEFLAGS
-runhaskell Setup register --gen-script
-runhaskell Setup unregister --gen-script
-sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
-sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
-}
-
-check() {
-cd $_hkgname-$pkgver
-runhaskell Setup test
-}
-
-package() {
-cd $_hkgname-$pkgver
-
-install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
-install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
-runhaskell Setup copy --destdir="$pkgdir"
-install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
-}

Copied: haskell-lifted-async/repos/community-staging-x86_64/PKGBUILD (from rev 
774751, haskell-lifted-async/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-12-14 03:02:40 UTC (rev 774752)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+
+_hkgname=lifted-async
+pkgname=haskell-lifted-async
+pkgver=0.10.1.2
+pkgrel=56
+pkgdesc="Run lifted IO operations asynchronously and wait for their results"
+url="https://github.com/maoe/lifted-async;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-async' 'haskell-constraints' 'haskell-lifted-base'
+ 'haskell-monad-control' 'haskell-transformers-base')
+makedepends=('ghc')
+checkdepends=('haskell-hunit' 'haskell-tasty' 'haskell-tasty-expected-failure'
+  'haskell-tasty-hunit' 'haskell-tasty-th')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('9efbf87786193a90112558ebd09101f30997c6d2f73313c3ae53519c625c8aff47b7979620ea3461378379cae13a4ff74a6933425783b1ccd422db303056228f')
+
+build() {
+cd $_hkgname-$pkgver
+
+if (( CHECKFUNC )); then
+_opts=('--enable-tests')
+else
+_opts=('--disable-tests')
+fi
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname "${_opts[@]}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-12-13 Thread Felix Yan via arch-commits
Date: Monday, December 14, 2020 @ 03:02:28
  Author: felixonmars
Revision: 774751

upgpkg: haskell-lifted-async 0.10.1.2-56: rebuild with base-orphans 0.8.5

Modified:
  haskell-lifted-async/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-14 03:01:41 UTC (rev 774750)
+++ PKGBUILD2020-12-14 03:02:28 UTC (rev 774751)
@@ -3,7 +3,7 @@
 _hkgname=lifted-async
 pkgname=haskell-lifted-async
 pkgver=0.10.1.2
-pkgrel=55
+pkgrel=56
 pkgdesc="Run lifted IO operations asynchronously and wait for their results"
 url="https://github.com/maoe/lifted-async;
 license=('BSD')


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

2020-12-13 Thread Felix Yan via arch-commits
Date: Monday, December 14, 2020 @ 03:01:28
  Author: felixonmars
Revision: 774749

upgpkg: haskell-tasty-expected-failure 0.12.1-44: rebuild with base-orphans 
0.8.5

Modified:
  haskell-tasty-expected-failure/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-14 03:00:29 UTC (rev 774748)
+++ PKGBUILD2020-12-14 03:01:28 UTC (rev 774749)
@@ -4,7 +4,7 @@
 _hkgname=tasty-expected-failure
 pkgname=haskell-tasty-expected-failure
 pkgver=0.12.1
-pkgrel=43
+pkgrel=44
 pkgdesc="Mark tasty tests as failure expected"
 url="https://github.com/nomeata/tasty-expected-failure;
 license=("MIT")


[arch-commits] Commit in haskell-tasty-expected-failure/repos/community-staging-x86_64 (2 files)

2020-12-13 Thread Felix Yan via arch-commits
Date: Monday, December 14, 2020 @ 03:01:41
  Author: felixonmars
Revision: 774750

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-tasty-expected-failure/repos/community-staging-x86_64/PKGBUILD
(from rev 774749, haskell-tasty-expected-failure/trunk/PKGBUILD)
Deleted:
  haskell-tasty-expected-failure/repos/community-staging-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-12-14 03:01:28 UTC (rev 774749)
+++ PKGBUILD2020-12-14 03:01:41 UTC (rev 774750)
@@ -1,57 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Arch Haskell Team 
-
-_hkgname=tasty-expected-failure
-pkgname=haskell-tasty-expected-failure
-pkgver=0.12.1
-pkgrel=43
-pkgdesc="Mark tasty tests as failure expected"
-url="https://github.com/nomeata/tasty-expected-failure;
-license=("MIT")
-arch=('x86_64')
-depends=('ghc-libs' 'haskell-tagged' 'haskell-tasty' 
'haskell-unbounded-delays')
-makedepends=('ghc')
-checkdepends=('haskell-hedgehog' 'haskell-tasty-golden' 
'haskell-tasty-hedgehog'
-  'haskell-tasty-hunit')
-source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha512sums=('95aab402489e21b78a13f3a8ea49df0cb14ae4f20cc4e31662a7e8179d468c5a66caa9c135f3b111253ca8fa196dddb2c041a9e233882d73003b39572331dd73')
-
-prepare() {
-cd $_hkgname-$pkgver
-# https://github.com/nomeata/tasty-expected-failure/issues/21
-sed -i 's/2000/1/' Test/Tasty/ExpectedFailure.hs
-}
-
-build() {
-cd $_hkgname-$pkgver
-
-if (( CHECKFUNC )); then
-_opts=('--enable-tests')
-else
-_opts=('--disable-tests')
-fi
-
-runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
---prefix=/usr --docdir=/usr/share/doc/$pkgname "${_opts[@]}" \
---dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
-runhaskell Setup build $MAKEFLAGS
-runhaskell Setup register --gen-script
-runhaskell Setup unregister --gen-script
-sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
-sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
-}
-
-check() {
-cd $_hkgname-$pkgver
-runhaskell Setup test
-}
-
-package() {
-cd $_hkgname-$pkgver
-
-install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
-install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
-runhaskell Setup copy --destdir="$pkgdir"
-install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
-}

Copied: haskell-tasty-expected-failure/repos/community-staging-x86_64/PKGBUILD 
(from rev 774749, haskell-tasty-expected-failure/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-12-14 03:01:41 UTC (rev 774750)
@@ -0,0 +1,57 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=tasty-expected-failure
+pkgname=haskell-tasty-expected-failure
+pkgver=0.12.1
+pkgrel=44
+pkgdesc="Mark tasty tests as failure expected"
+url="https://github.com/nomeata/tasty-expected-failure;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-tagged' 'haskell-tasty' 
'haskell-unbounded-delays')
+makedepends=('ghc')
+checkdepends=('haskell-hedgehog' 'haskell-tasty-golden' 
'haskell-tasty-hedgehog'
+  'haskell-tasty-hunit')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('95aab402489e21b78a13f3a8ea49df0cb14ae4f20cc4e31662a7e8179d468c5a66caa9c135f3b111253ca8fa196dddb2c041a9e233882d73003b39572331dd73')
+
+prepare() {
+cd $_hkgname-$pkgver
+# https://github.com/nomeata/tasty-expected-failure/issues/21
+sed -i 's/2000/1/' Test/Tasty/ExpectedFailure.hs
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+if (( CHECKFUNC )); then
+_opts=('--enable-tests')
+else
+_opts=('--disable-tests')
+fi
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname "${_opts[@]}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install 

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

2020-12-13 Thread Felix Yan via arch-commits
Date: Monday, December 14, 2020 @ 03:00:29
  Author: felixonmars
Revision: 774748

archrelease: copy trunk to community-staging-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-12-14 03:00:17 UTC (rev 774747)
+++ PKGBUILD2020-12-14 03:00:29 UTC (rev 774748)
@@ -1,54 +0,0 @@
-# Maintainer: Felix Yan 
-
-_hkgname=tasty-hedgehog
-pkgname=haskell-tasty-hedgehog
-pkgver=1.0.0.2
-pkgrel=108
-pkgdesc="Integration for tasty and hedgehog"
-url="https://github.com/qfpl/tasty-hedgehog;
-license=('BSD')
-arch=('x86_64')
-depends=('ghc-libs' 'haskell-hedgehog' 'haskell-tagged' 'haskell-tasty')
-makedepends=('ghc')
-checkdepends=('haskell-tasty-expected-failure')
-source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
-sha512sums=('56ac4db27b97bc6902633ec398bdbae28f6121d818a29fde62ddea4a4619af0fe7b058b55479414a627119a0014f2c84d6b795c86e9e36d21fd25bf1033a9c4b')
-
-prepare() {
-cd $_hkgname-$pkgver
-sed -i 's/< *4.14/<5/;s/< *1.3/<2/;s/< *1.0.3/<2/;s/< *0.12/<1/' 
$_hkgname.cabal
-}
-
-build() {
-cd $_hkgname-$pkgver
-
-if (( CHECKFUNC )); then
-_opts=('--enable-tests')
-else
-_opts=('--disable-tests')
-fi
-
-runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
---prefix=/usr --docdir=/usr/share/doc/$pkgname "${_opts[@]}" \
---dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
-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 "LICENCE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENCE"
-rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENCE"
-}

Copied: haskell-tasty-hedgehog/repos/community-staging-x86_64/PKGBUILD (from 
rev 774747, haskell-tasty-hedgehog/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-12-14 03:00:29 UTC (rev 774748)
@@ -0,0 +1,54 @@
+# Maintainer: Felix Yan 
+
+_hkgname=tasty-hedgehog
+pkgname=haskell-tasty-hedgehog
+pkgver=1.0.0.2
+pkgrel=109
+pkgdesc="Integration for tasty and hedgehog"
+url="https://github.com/qfpl/tasty-hedgehog;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-hedgehog' 'haskell-tagged' 'haskell-tasty')
+makedepends=('ghc')
+checkdepends=('haskell-tasty-expected-failure')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('56ac4db27b97bc6902633ec398bdbae28f6121d818a29fde62ddea4a4619af0fe7b058b55479414a627119a0014f2c84d6b795c86e9e36d21fd25bf1033a9c4b')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i 's/< *4.14/<5/;s/< *1.3/<2/;s/< *1.0.3/<2/;s/< *0.12/<1/' 
$_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+if (( CHECKFUNC )); then
+_opts=('--enable-tests')
+else
+_opts=('--disable-tests')
+fi
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname "${_opts[@]}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+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 "LICENCE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENCE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENCE"
+}


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

2020-12-13 Thread Felix Yan via arch-commits
Date: Monday, December 14, 2020 @ 03:00:17
  Author: felixonmars
Revision: 774747

upgpkg: haskell-tasty-hedgehog 1.0.0.2-109: rebuild with base-orphans 0.8.5

Modified:
  haskell-tasty-hedgehog/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-14 02:46:23 UTC (rev 774746)
+++ PKGBUILD2020-12-14 03:00:17 UTC (rev 774747)
@@ -3,7 +3,7 @@
 _hkgname=tasty-hedgehog
 pkgname=haskell-tasty-hedgehog
 pkgver=1.0.0.2
-pkgrel=108
+pkgrel=109
 pkgdesc="Integration for tasty and hedgehog"
 url="https://github.com/qfpl/tasty-hedgehog;
 license=('BSD')


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

2020-12-13 Thread Filipe Laíns via arch-commits
Date: Monday, December 14, 2020 @ 02:46:23
  Author: ffy00
Revision: 774746

archrelease: copy trunk to community-any

Added:
  python-importlib-metadata/repos/community-any/PKGBUILD
(from rev 774745, python-importlib-metadata/trunk/PKGBUILD)
Deleted:
  python-importlib-metadata/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-12-14 02:46:08 UTC (rev 774745)
+++ PKGBUILD2020-12-14 02:46:23 UTC (rev 774746)
@@ -1,33 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=python-importlib-metadata
-pkgver=3.2.0
-pkgrel=1
-pkgdesc="Read metadata from Python packages"
-url="https://importlib-metadata.readthedocs.io;
-license=('Apache')
-arch=('any')
-depends=('python-zipp')
-makedepends=('python-setuptools-scm')
-checkdepends=('python-pip' 'python-pytest-runner' 'python-importlib_resources'
-  'python-wheel' 'python-pyfakefs' 'python-tests')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/python/importlib_metadata/archive/v$pkgver.tar.gz;)
-sha512sums=('ca41ff9690628e3483da3024e96c4118282e970c98ce8572854fdd1f1d14464590742d3cf7219c5014fd7b05861f6dcb3800d6313c7c5a047b2ff605d06f73cd')
-
-export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
-
-build() {
-  cd importlib_metadata-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd importlib_metadata-$pkgver
-  python setup.py pytest
-}
-
-package_python-importlib-metadata() {
-  cd importlib_metadata-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-}
-

Copied: python-importlib-metadata/repos/community-any/PKGBUILD (from rev 
774745, python-importlib-metadata/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-12-14 02:46:23 UTC (rev 774746)
@@ -0,0 +1,33 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-importlib-metadata
+pkgver=3.3.0
+pkgrel=1
+pkgdesc="Read metadata from Python packages"
+url="https://importlib-metadata.readthedocs.io;
+license=('Apache')
+arch=('any')
+depends=('python-zipp')
+makedepends=('python-setuptools-scm')
+checkdepends=('python-pip' 'python-pytest-runner' 'python-importlib_resources'
+  'python-wheel' 'python-pyfakefs' 'python-tests')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/python/importlib_metadata/archive/v$pkgver.tar.gz;)
+sha512sums=('965099dc835fd76ed35041071bdd0233dc773468506cdbdee595289292dbf5cb76232f98663dbf11ab5ac4bf6cc8f484a7e6fb7343a899488deaf1f3098b57ca')
+
+export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
+
+build() {
+  cd importlib_metadata-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd importlib_metadata-$pkgver
+  python setup.py pytest
+}
+
+package_python-importlib-metadata() {
+  cd importlib_metadata-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}
+


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

2020-12-13 Thread Filipe Laíns via arch-commits
Date: Monday, December 14, 2020 @ 02:46:08
  Author: ffy00
Revision: 774745

upgpkg: python-importlib-metadata 3.3.0-1

Modified:
  python-importlib-metadata/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-14 02:34:29 UTC (rev 774744)
+++ PKGBUILD2020-12-14 02:46:08 UTC (rev 774745)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=python-importlib-metadata
-pkgver=3.2.0
+pkgver=3.3.0
 pkgrel=1
 pkgdesc="Read metadata from Python packages"
 url="https://importlib-metadata.readthedocs.io;
@@ -12,7 +12,7 @@
 checkdepends=('python-pip' 'python-pytest-runner' 'python-importlib_resources'
   'python-wheel' 'python-pyfakefs' 'python-tests')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/python/importlib_metadata/archive/v$pkgver.tar.gz;)
-sha512sums=('ca41ff9690628e3483da3024e96c4118282e970c98ce8572854fdd1f1d14464590742d3cf7219c5014fd7b05861f6dcb3800d6313c7c5a047b2ff605d06f73cd')
+sha512sums=('965099dc835fd76ed35041071bdd0233dc773468506cdbdee595289292dbf5cb76232f98663dbf11ab5ac4bf6cc8f484a7e6fb7343a899488deaf1f3098b57ca')
 
 export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
 


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

2020-12-13 Thread Filipe Laíns via arch-commits
Date: Monday, December 14, 2020 @ 02:34:29
  Author: ffy00
Revision: 774744

archrelease: copy trunk to community-x86_64

Added:
  code/repos/community-x86_64/PKGBUILD
(from rev 774743, code/trunk/PKGBUILD)
  code/repos/community-x86_64/code-liveshare.diff
(from rev 774743, code/trunk/code-liveshare.diff)
  code/repos/community-x86_64/code.js
(from rev 774743, code/trunk/code.js)
  code/repos/community-x86_64/code.sh
(from rev 774743, code/trunk/code.sh)
  code/repos/community-x86_64/product_json.diff
(from rev 774743, code/trunk/product_json.diff)
Deleted:
  code/repos/community-x86_64/PKGBUILD
  code/repos/community-x86_64/code-liveshare.diff
  code/repos/community-x86_64/code.js
  code/repos/community-x86_64/code.sh
  code/repos/community-x86_64/product_json.diff

-+
 PKGBUILD|  310 +-
 code-liveshare.diff |   24 +--
 code.js |   58 -
 code.sh |6 
 product_json.diff   |   44 +++
 5 files changed, 221 insertions(+), 221 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-12-14 02:34:16 UTC (rev 774743)
+++ PKGBUILD2020-12-14 02:34:29 UTC (rev 774744)
@@ -1,155 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Michael Hansen 
-# Contributor: Francisco Magalhães 
-
-pkgname=code
-pkgdesc='The Open Source build of Visual Studio Code (vscode) editor'
-# Important: Remember to check 
https://github.com/microsoft/vscode/wiki/How-to-Contribute#prerequisites for 
target node version
-# NodeJS versioning cheatsheet:
-#   - carbon: 8
-#   - dubnium: 10
-#   - ?: 11 (not in repos)
-#   - erbium: 12
-# Important: Remember to check 
https://github.com/microsoft/vscode/blob/master/.yarnrc (choose correct tag) 
for target electron version
-_electron=electron9
-pkgver=1.51.1
-pkgrel=1
-arch=('x86_64')
-url='https://github.com/microsoft/vscode'
-license=('MIT')
-depends=($_electron 'libsecret' 'libx11' 'libxkbfile' 'ripgrep')
-optdepends=('bash-completion: Bash completions'
-'zsh-completions: ZSH completitons'
-'x11-ssh-askpass: SSH authentication')
-makedepends=('git' 'gulp' 'npm' 'python2' 'yarn' 'nodejs-lts-erbium')
-provides=('vscode')
-source=("$pkgname::git+$url.git#tag=$pkgver"
-'code.js'
-'code.sh'
-'product_json.diff')
-sha512sums=('SKIP'
-
'814c9554427183cd893a33cd2cbe91f6e0ea71921ef0717c86217b1d3058d265f9ff7a9ace3e7b76f122e60b7686475cf4d999e581a1845face3033afb9f745f'
-
'0e75ee88274cbaf48c59ef6f363f6b8ac2ea83f8b17a61155008db773b709a1f0233754fa63a136ec0417313ba90a7eb17db000ec22a38ca8840d8ba6c47cab1'
-
'b1aa0d7c5b3e3e8ba1172822d75ea38e90efc431b270e0b4ca9e45bf9c0be0f60922c8618969ef071b5b6dbd9ac9f030294f1bf49bcc28c187b46d113dca63a7')
-
-# Even though we don't officially support other archs, let's
-# allow the user to use this PKGBUILD to compile the package
-# for his architecture
-case "$CARCH" in
-  i686)
-_vscode_arch=ia32
-;;
-  x86_64)
-_vscode_arch=x64
-;;
-  armv7h)
-_vscode_arch=arm
-;;
-  *)
-# Needed for mksrcinfo
-_vscode_arch=DUMMY
-;;
-esac
-
-prepare() {
-  cd $pkgname
-
-  # Change electron binary name to the target electron
-  sed -i "s|exec electron |exec $_electron |" ../code.sh
-
-  # This patch no longer contains proprietary modifications.
-  # See https://github.com/Microsoft/vscode/issues/31168 for details.
-  patch -p0 < ../product_json.diff
-
-  # Set the commit and build date
-  local _commit=$(git rev-parse HEAD)
-  local _datestamp=$(date -u -Is | sed 's/\+00:00/Z/')
-  sed -e "s/@COMMIT@/$_commit/" -e "s/@DATE@/$_datestamp/" -i product.json
-
-  # Build native modules for system electron
-  local _target=$(https://github.com/mapbox/node-sqlite3/issues/1044
-  mkdir -p path
-  ln -sf /usr/bin/python2 path/python
-  export PATH="$PWD/path:$PATH"
-
-  cd $pkgname
-
-  yarn install --arch=$_vscode_arch
-
-  # The default memory limit may be too low for current versions of node
-  # to successfully build vscode. Change it if this number still doesn't
-  # work for your system.
-  mem_limit="--max_old_space_size=6144"
-
-  if ! /usr/bin/node $mem_limit /usr/bin/gulp vscode-linux-$_vscode_arch-min
-  then
-  echo
-  echo "*** NOTE: If the build failed due to running out of file handles 
(EMFILE),"
-  echo "*** you will need to raise your max open file limit."
-  echo "*** You can check this for more information on how to increase 
this limit:"
-  echo "***
https://ro-che.info/articles/2017-03-26-increase-open-files-limit;
-  exit 1
-  fi
-}
-
-package() {
-  # Install resource files
-  install -dm 755 "$pkgdir"/usr/lib/$pkgname
-  cp -r --no-preserve=ownership --preserve=mode 
VSCode-linux-$_vscode_arch/resources/app/* "$pkgdir"/usr/lib/$pkgname/
-
-  # Replace statically included binary with system copy
-  ln -sf 

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

2020-12-13 Thread Filipe Laíns via arch-commits
Date: Monday, December 14, 2020 @ 02:34:16
  Author: ffy00
Revision: 774743

upgpkg: code 1.52.0-1

Modified:
  code/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-14 01:50:34 UTC (rev 774742)
+++ PKGBUILD2020-12-14 02:34:16 UTC (rev 774743)
@@ -12,7 +12,7 @@
 #   - erbium: 12
 # Important: Remember to check 
https://github.com/microsoft/vscode/blob/master/.yarnrc (choose correct tag) 
for target electron version
 _electron=electron9
-pkgver=1.51.1
+pkgver=1.52.0
 pkgrel=1
 arch=('x86_64')
 url='https://github.com/microsoft/vscode'


[arch-commits] Commit in re2/repos (staging-x86_64 staging-x86_64/PKGBUILD)

2020-12-13 Thread Evangelos Foutras via arch-commits
Date: Monday, December 14, 2020 @ 02:05:06
  Author: foutrelis
Revision: 404299

archrelease: copy trunk to staging-x86_64

Added:
  re2/repos/staging-x86_64/
  re2/repos/staging-x86_64/PKGBUILD
(from rev 404298, re2/trunk/PKGBUILD)

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

Copied: re2/repos/staging-x86_64/PKGBUILD (from rev 404298, re2/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2020-12-14 02:05:06 UTC (rev 404299)
@@ -0,0 +1,33 @@
+# Maintainer: Evangelos Foutras 
+# Contributor: Anatol Pomozov 
+# Contributor: Gustavo Alvarez 
+# Contributor: Alexandre Bique 
+
+pkgname=re2
+_re2ver=2020-11-01
+pkgver=${_re2ver//-}
+pkgrel=1
+epoch=1
+pkgdesc="Fast, safe, thread-friendly regular expression engine"
+arch=('x86_64')
+url="https://github.com/google/re2;
+license=('BSD')
+depends=('gcc-libs')
+source=(re2-$pkgver.tar.gz::https://github.com/google/re2/archive/$_re2ver.tar.gz)
+sha256sums=('8903cc66c9d34c72e2bc91722288ebc7e3ec37787ecfef44d204b2d6281954d7')
+
+build() {
+  cd $pkgname-$_re2ver
+  make
+}
+
+check() {
+  cd $pkgname-$_re2ver
+  make test
+}
+
+package() {
+  cd $pkgname-$_re2ver
+  make prefix=/usr DESTDIR="$pkgdir" install
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


  1   2   3   4   5   6   7   8   9   10   >