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

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 05:49:24
  Author: felixonmars
Revision: 394957

upgpkg: python-sphinx 1.8.1-1

Modified:
  python-sphinx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-17 05:22:30 UTC (rev 394956)
+++ PKGBUILD2018-10-17 05:49:24 UTC (rev 394957)
@@ -5,7 +5,7 @@
 
 pkgbase=python-sphinx
 pkgname=('python-sphinx' 'python2-sphinx')
-pkgver=1.8.0
+pkgver=1.8.1
 pkgrel=1
 
 arch=('any')
@@ -54,8 +54,8 @@
 
 validpgpkeys=('8A11B79A5D0D749A66F0A030102C2C17498D6B9E'
   'E9BEABB07E7B9CC3F56E62C91425F8CE5EBA0E07')
-md5sums=('69ae297eda64540cb0d19ea08eccba65'
- 'SKIP')
+sha512sums=('971a478ccd0f77e7e9bf8548a31805140d2d757f237493e63a3046309683b1f6ae4f943f0b66cc8e00c3917a40c1c8e4cd2ec5133ff7ca565584b058bab5e677'
+'SKIP')
 
 prepare() {
   # souce duplication is required because makefile modify source code


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

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 05:49:37
  Author: felixonmars
Revision: 394958

archrelease: copy trunk to community-testing-any

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

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

Copied: python-sphinx/repos/community-testing-any/PKGBUILD (from rev 394957, 
python-sphinx/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2018-10-17 05:49:37 UTC (rev 394958)
@@ -0,0 +1,149 @@
+# Maintainer: Johannes Löthberg 
+# Contributor: Sébastien Luttringer
+# Contributor: Angel Velasquez 
+# Contributor: Fabio Volpe 
+
+pkgbase=python-sphinx
+pkgname=('python-sphinx' 'python2-sphinx')
+pkgver=1.8.1
+pkgrel=1
+
+arch=('any')
+url='http://www.sphinx-doc.org/'
+license=('BSD')
+
+makedepends=(
+  'python-setuptools'
+  'python-docutils'
+  'python-jinja'
+  'python-pygments'
+  'python-six'
+  'python-imagesize'
+  'python-sphinxcontrib-websupport'
+  'python-sqlalchemy'
+  'python-whoosh'
+  'python2-setuptools'
+  'python2-docutils'
+  'python2-jinja'
+  'python2-pygments'
+  'python2-six'
+  'python2-imagesize'
+  'python2-sphinxcontrib-websupport'
+  'python2-sqlalchemy'
+  'python2-whoosh'
+  'python2-typing'
+)
+
+checkdepends=(
+  'texlive-latexextra'
+  'python-nose' 'python2-nose'
+  'python-snowballstemmer' 'python2-snowballstemmer'
+  'python-babel' 'python2-babel'
+  'python-sphinx-alabaster-theme' 'python2-sphinx-alabaster-theme'
+  'python-sphinx_rtd_theme' 'python2-sphinx_rtd_theme'
+  'python-mock' 'python2-mock'
+  'python-html5lib' 'python2-html5lib'
+  'python-requests' 'python2-requests'
+  'python2-pytest' 'python-pytest'
+  'python2-enum34'
+  'python-sphinxcontrib-websupport' 'python2-sphinxcontrib-websupport'
+  'imagemagick' 'librsvg'
+)
+
+source=("https://pypi.org/packages/source/S/Sphinx/Sphinx-$pkgver.tar.gz"{,.asc})
+
+validpgpkeys=('8A11B79A5D0D749A66F0A030102C2C17498D6B9E'
+  'E9BEABB07E7B9CC3F56E62C91425F8CE5EBA0E07')
+sha512sums=('971a478ccd0f77e7e9bf8548a31805140d2d757f237493e63a3046309683b1f6ae4f943f0b66cc8e00c3917a40c1c8e4cd2ec5133ff7ca565584b058bab5e677'
+'SKIP')
+
+prepare() {
+  # souce duplication is required because makefile modify source code
+  # setyp.py --build tricks don't works well
+  cp -a Sphinx-$pkgver Sphinx-${pkgver}2
+  # change python2 interpreter
+  find Sphinx-${pkgver}2 -type f -exec \
+sed -i '1s,^#! \?/usr/bin/\(env \|\)python$,#!/usr/bin/python2,' {} \;
+  # change sphinx-binaries name in source code
+  find Sphinx-${pkgver}2 -type f -name '*.py' -exec \
+sed -ri 's,(sphinx-(:?build|apidoc|autogen|quickstart)),\12,' {} \;
+}
+
+build() {
+  msg2 'Python 3 version'
+  cd "$srcdir"/Sphinx-$pkgver
+  make PYTHON=python3 build
+
+  msg2 'Python 2 version'
+  cd "$srcdir"/Sphinx-${pkgver}2
+  make PYTHON=python2 build
+}
+
+#check() {
+#  msg2 'Python 3 version'
+#  cd "$srcdir"/Sphinx-$pkgver
+#  LC_ALL="en_US.UTF-8" make PYTHON=python3 test
+#  rm -r tests
+#
+#  msg2 'Python 2 version'
+#  cd "$srcdir"/Sphinx-${pkgver}2
+#  LC_ALL="en_US.UTF-8" make PYTHON=python2 test
+#  rm -r tests
+#}
+
+package_python-sphinx() {
+  pkgdesc='Python3 documentation generator'
+  depends=(
+'python-setuptools'
+'python-jinja'
+'python-pygments'
+'python-docutils'
+'python-sphinx_rtd_theme'
+'python-sphinx-alabaster-theme'
+'python-babel'
+'python-snowballstemmer'
+'python-six'
+'python-imagesize'
+'python-requests'
+'python-sphinxcontrib-websupport'
+'python-sqlalchemy'
+'python-whoosh'
+  )
+  optdepends=('texlive-latexextra: for generation of PDF documentation'
+  'imagemagick: ext.imageconverter')
+
+  cd Sphinx-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+
+  install -Dm644 "$srcdir"/Sphinx-$pkgver/LICENSE 
"$pkgdir"/usr/share/licenses/python-sphinx/LICENSE
+}
+
+package_python2-sphinx() {
+  pkgdesc='Python2 documentation generator'
+  depends=(
+'python2-setuptools'
+'python2-jinja'
+'python2-pygments'
+'python2-docutils'
+'python2-sphinx_rtd_theme'
+'python2-sphinx-alabaster-theme'
+'python2-babel'
+'python2-snowballstemmer'
+'python2-six'
+'python2-imagesize'
+'python2-requests'
+'python2-sphinxcontrib-websupport'
+'python2-sqlalchemy'
+'python2-whoosh'
+'python2-typing'
+  )
+  optdepends=('texlive-latexextra: for generation of PDF documentation'
+  'imagemagick: ext.imageconverter')
+
+  cd Sphinx-${pkgver}2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+
+  install -Dm644 "$srcdir"/Sphinx-$pkgver/LICENSE 
"$pkgdir"/usr/share/licenses/python2-sphinx/LICENSE
+}
+
+# vim:set ts=2 sw=2 

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

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 05:28:13
  Author: felixonmars
Revision: 336790

archrelease: copy trunk to testing-x86_64

Added:
  nvidia-lts/repos/testing-x86_64/
  nvidia-lts/repos/testing-x86_64/PKGBUILD
(from rev 336789, nvidia-lts/trunk/PKGBUILD)

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

Copied: nvidia-lts/repos/testing-x86_64/PKGBUILD (from rev 336789, 
nvidia-lts/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2018-10-17 05:28:13 UTC (rev 336790)
@@ -0,0 +1,42 @@
+# Maintainer: Eric Bélanger 
+
+pkgname=nvidia-lts
+pkgver=410.66
+_extramodules=extramodules-4.14-lts
+pkgrel=1
+epoch=1
+arch=('x86_64')
+url="http://www.nvidia.com/;
+makedepends=("nvidia-utils=${pkgver}" 'linux-lts' 'linux-lts-headers>=4.14.74')
+provides=('nvidia')
+license=('custom')
+options=('!strip')
+_pkg="NVIDIA-Linux-x86_64-${pkgver}"
+source=("http://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/${_pkg}.run;)
+sha512sums=('1773ea5150822735cf02808df68cd2f9ff8b502633632a7748b4bff387daec44527f1bfb0508938c9eee7fb12ac070b99b3f5a903e592bf6d9c6461f4f7a7e9e')
+
+prepare() {
+sh "${_pkg}.run" --extract-only
+cd "${_pkg}"
+}
+
+build() {
+_kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+cd "${_pkg}"/kernel
+make SYSSRC=/usr/lib/modules/"${_kernver}/build" module
+}
+
+package() {
+pkgdesc="NVIDIA drivers for linux-lts"
+depends=('linux-lts>=4.14.74' "nvidia-utils=${pkgver}" 'libgl')
+
+install -Dt "${pkgdir}/usr/lib/modules/${_extramodules}" -m644 \
+  "${srcdir}/${_pkg}/kernel"/nvidia{,-modeset,-drm,-uvm}.ko
+
+find "${pkgdir}" -name '*.ko' -exec gzip -n {} +
+
+echo "blacklist nouveau" |
+  install -Dm644 /dev/stdin "${pkgdir}/usr/lib/modprobe.d/${pkgname}.conf"
+
+install -Dt "${pkgdir}/usr/share/licenses/${pkgname}" -m644 
"${srcdir}/${_pkg}/LICENSE"
+}


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

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 05:27:24
  Author: felixonmars
Revision: 336788

archrelease: copy trunk to testing-x86_64

Added:
  nvidia/repos/testing-x86_64/
  nvidia/repos/testing-x86_64/PKGBUILD
(from rev 336787, nvidia/trunk/PKGBUILD)
  nvidia/repos/testing-x86_64/kernel-4.16.patch
(from rev 336787, nvidia/trunk/kernel-4.16.patch)

---+
 PKGBUILD  |   86 
 kernel-4.16.patch |   33 +++
 2 files changed, 119 insertions(+)

Copied: nvidia/repos/testing-x86_64/PKGBUILD (from rev 336787, 
nvidia/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2018-10-17 05:27:24 UTC (rev 336788)
@@ -0,0 +1,86 @@
+# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Felix Yan 
+# Contributor: Thomas Baechler 
+
+pkgbase=nvidia
+pkgname=(nvidia nvidia-dkms)
+pkgver=410.66
+_extramodules=extramodules-ARCH
+pkgrel=1
+pkgdesc="NVIDIA drivers for linux"
+arch=('x86_64')
+url="http://www.nvidia.com/;
+makedepends=("nvidia-utils=${pkgver}" 'libglvnd' 'linux' 'linux-headers>=4.18' 
'linux-headers<4.19')
+license=('custom')
+options=('!strip')
+_pkg="NVIDIA-Linux-x86_64-${pkgver}"
+source=("http://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/${_pkg}.run;
+kernel-4.16.patch)
+sha512sums=('1773ea5150822735cf02808df68cd2f9ff8b502633632a7748b4bff387daec44527f1bfb0508938c9eee7fb12ac070b99b3f5a903e592bf6d9c6461f4f7a7e9e'
+
'ad1185d998adbf89abf7aea300e5b3bbabe2296016f42592fbc232a6c3983f233df1103d37f35a041f12cc1c722d3edce813a4a1b215784a49c7f0e3e652b5af')
+
+prepare() {
+sh "${_pkg}.run" --extract-only
+cd "${_pkg}"
+
+# Restore phys_to_dma support (still needed for 396.18)
+# https://bugs.archlinux.org/task/58074
+patch -Np1 -i ../kernel-4.16.patch
+
+cp -a kernel kernel-dkms
+cd kernel-dkms
+sed -i "s/__VERSION_STRING/${pkgver}/" dkms.conf
+sed -i 's/__JOBS/`nproc`/' dkms.conf
+sed -i 's/__DKMS_MODULES//' dkms.conf
+sed -i '$iBUILT_MODULE_NAME[0]="nvidia"\
+DEST_MODULE_LOCATION[0]="/kernel/drivers/video"\
+BUILT_MODULE_NAME[1]="nvidia-uvm"\
+DEST_MODULE_LOCATION[1]="/kernel/drivers/video"\
+BUILT_MODULE_NAME[2]="nvidia-modeset"\
+DEST_MODULE_LOCATION[2]="/kernel/drivers/video"\
+BUILT_MODULE_NAME[3]="nvidia-drm"\
+DEST_MODULE_LOCATION[3]="/kernel/drivers/video"' dkms.conf
+
+# Gift for linux-rt guys
+sed -i 's/NV_EXCLUDE_BUILD_MODULES/IGNORE_PREEMPT_RT_PRESENCE=1 
NV_EXCLUDE_BUILD_MODULES/' dkms.conf
+}
+
+build() {
+_kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+cd "${_pkg}"/kernel
+make SYSSRC=/usr/lib/modules/"${_kernver}/build" module
+}
+
+package_nvidia() {
+pkgdesc="NVIDIA drivers for linux"
+depends=('linux>=4.18' 'linux<4.19' "nvidia-utils=${pkgver}" 'libglvnd')
+
+install -Dt "${pkgdir}/usr/lib/modules/${_extramodules}" -m644 \
+  "${srcdir}/${_pkg}/kernel"/nvidia{,-modeset,-drm,-uvm}.ko
+
+find "${pkgdir}" -name '*.ko' -exec gzip -n {} +
+
+echo "blacklist nouveau" |
+install -Dm644 /dev/stdin 
"${pkgdir}/usr/lib/modprobe.d/${pkgname}.conf"
+
+install -Dt "${pkgdir}/usr/share/licenses/${pkgname}" -m644 
"${srcdir}/${_pkg}/LICENSE"
+}
+
+package_nvidia-dkms() {
+pkgdesc="NVIDIA driver sources for linux"
+depends=('dkms' "nvidia-utils=$pkgver" 'libglvnd')
+optdepends=('linux-headers: Build the module for Arch kernel'
+'linux-lts-headers: Build the module for LTS Arch kernel')
+provides=("nvidia=$pkgver")
+conflicts+=('nvidia')
+
+cd ${_pkg}
+
+install -dm 755 "${pkgdir}"/usr/src
+cp -dr --no-preserve='ownership' kernel-dkms 
"${pkgdir}/usr/src/nvidia-${pkgver}"
+
+echo "blacklist nouveau" |
+install -Dm644 /dev/stdin 
"${pkgdir}/usr/lib/modprobe.d/${pkgname}.conf"
+
+install -Dt "${pkgdir}/usr/share/licenses/${pkgname}" -m644 
"${srcdir}/${_pkg}/LICENSE"
+}

Copied: nvidia/repos/testing-x86_64/kernel-4.16.patch (from rev 336787, 
nvidia/trunk/kernel-4.16.patch)
===
--- testing-x86_64/kernel-4.16.patch(rev 0)
+++ testing-x86_64/kernel-4.16.patch2018-10-17 05:27:24 UTC (rev 336788)
@@ -0,0 +1,33 @@
+diff --git a/kernel/common/inc/nv-linux.h b/kernel/common/inc/nv-linux.h
+index 10fc418..22ef968 100644
+--- a/kernel/common/inc/nv-linux.h
 b/kernel/common/inc/nv-linux.h
+@@ -175,7 +175,11 @@ static inline uid_t __kuid_val(kuid_t uid)
+ 
+ #if defined(NV_VM_INSERT_PAGE_PRESENT)
+ #include 
++#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 16, 0)
+ #include 
++#else
++#include 
++#endif
+ #endif
+ 
+ #if defined(CONFIG_SWIOTLB) && defined(NVCPU_AARCH64)
+diff --git a/kernel/conftest.sh b/kernel/conftest.sh
+index b23dbb4..42dc576 100755
+--- a/kernel/conftest.sh
 b/kernel/conftest.sh
+@@ -1906,7 

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

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 05:28:00
  Author: felixonmars
Revision: 336789

upgpkg: nvidia-lts 1:410.66-1

Modified:
  nvidia-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-17 05:27:24 UTC (rev 336788)
+++ PKGBUILD2018-10-17 05:28:00 UTC (rev 336789)
@@ -1,9 +1,9 @@
 # Maintainer: Eric Bélanger 
 
 pkgname=nvidia-lts
-pkgver=410.57
+pkgver=410.66
 _extramodules=extramodules-4.14-lts
-pkgrel=2
+pkgrel=1
 epoch=1
 arch=('x86_64')
 url="http://www.nvidia.com/;
@@ -13,7 +13,7 @@
 options=('!strip')
 _pkg="NVIDIA-Linux-x86_64-${pkgver}"
 
source=("http://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/${_pkg}.run;)
-sha512sums=('2ba6b4b7829410152e0fa57772969ca59f134995ef93d08c12cc6a7a97e081c1d718600a25f541444ce66603ed84b99e66b0ced6fb773ca40f98cd5dc1348d79')
+sha512sums=('1773ea5150822735cf02808df68cd2f9ff8b502633632a7748b4bff387daec44527f1bfb0508938c9eee7fb12ac070b99b3f5a903e592bf6d9c6461f4f7a7e9e')
 
 prepare() {
 sh "${_pkg}.run" --extract-only


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

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 05:27:11
  Author: felixonmars
Revision: 336787

upgpkg: nvidia 410.66-1

Modified:
  nvidia/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-17 05:21:16 UTC (rev 336786)
+++ PKGBUILD2018-10-17 05:27:11 UTC (rev 336787)
@@ -4,9 +4,9 @@
 
 pkgbase=nvidia
 pkgname=(nvidia nvidia-dkms)
-pkgver=410.57
+pkgver=410.66
 _extramodules=extramodules-ARCH
-pkgrel=6
+pkgrel=1
 pkgdesc="NVIDIA drivers for linux"
 arch=('x86_64')
 url="http://www.nvidia.com/;
@@ -16,8 +16,8 @@
 _pkg="NVIDIA-Linux-x86_64-${pkgver}"
 
source=("http://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/${_pkg}.run;
 kernel-4.16.patch)
-sha256sums=('5c3c2e1fef0615c0002946c586c815a77676f4683304cc17d5bf323e7626a320'
-'622ac792ec200b2239cb663c0010392118b78c9904973d82cd261165c16d6385')
+sha512sums=('1773ea5150822735cf02808df68cd2f9ff8b502633632a7748b4bff387daec44527f1bfb0508938c9eee7fb12ac070b99b3f5a903e592bf6d9c6461f4f7a7e9e'
+
'ad1185d998adbf89abf7aea300e5b3bbabe2296016f42592fbc232a6c3983f233df1103d37f35a041f12cc1c722d3edce813a4a1b215784a49c7f0e3e652b5af')
 
 prepare() {
 sh "${_pkg}.run" --extract-only


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

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 05:22:30
  Author: felixonmars
Revision: 394956

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-yesod-static/repos/community-staging-x86_64/PKGBUILD (from rev 
394955, haskell-yesod-static/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-10-17 05:22:30 UTC (rev 394956)
@@ -0,0 +1,44 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-static
+pkgname=haskell-yesod-static
+pkgver=1.6.0
+pkgrel=115
+pkgdesc="Static file serving subsite for Yesod Web Framework."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-async' 'haskell-attoparsec' 
'haskell-base64-bytestring'
+ 'haskell-blaze-builder' 'haskell-byteable' 'haskell-conduit' 
'haskell-cryptonite'
+ 'haskell-cryptonite-conduit' 'haskell-memory' 'haskell-css-text' 
'haskell-data-default'
+ 'haskell-exceptions' 'haskell-file-embed' 'haskell-hashable' 
'haskell-hjsmin'
+ 'haskell-http-types' 'haskell-mime-types' 'haskell-old-time' 
'haskell-resourcet'
+ 'haskell-unix-compat' 'haskell-unordered-containers' 'haskell-wai' 
'haskell-wai-app-static'
+ 'haskell-yesod-core')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('85352eb6ec0f4d7682a0d000f158446ed0370d7a63f9cca8976e5972d10ca427e45e8307c1169bfbcc25ba7fa62e1906651a9e8c7d6937ac4ea6f25412b5cea5')
+
+build() {
+cd "${srcdir}/${_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
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 05:22:16
  Author: felixonmars
Revision: 394955

upgpkg: haskell-yesod-static 1.6.0-115

rebuild with ghc 8.6.1

Modified:
  haskell-yesod-static/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-17 05:21:12 UTC (rev 394954)
+++ PKGBUILD2018-10-17 05:22:16 UTC (rev 394955)
@@ -4,7 +4,7 @@
 _hkgname=yesod-static
 pkgname=haskell-yesod-static
 pkgver=1.6.0
-pkgrel=114
+pkgrel=115
 pkgdesc="Static file serving subsite for Yesod Web Framework."
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 05:21:12
  Author: felixonmars
Revision: 394954

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-yesod-auth/repos/community-staging-x86_64/PKGBUILD (from rev 
394953, haskell-yesod-auth/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-10-17 05:21:12 UTC (rev 394954)
@@ -0,0 +1,47 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-auth
+pkgname=haskell-yesod-auth
+pkgver=1.6.4.1
+pkgrel=37
+pkgdesc="Authentication for Yesod."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-authenticate' 
'haskell-base16-bytestring'
+ 'haskell-base64-bytestring' 'haskell-blaze-builder' 
'haskell-blaze-html'
+ 'haskell-blaze-markup' 'haskell-conduit' 'haskell-conduit-extra' 
'haskell-cryptonite'
+ 'haskell-data-default' 'haskell-email-validate' 'haskell-file-embed' 
'haskell-http-client'
+ 'haskell-http-client-tls' 'haskell-http-conduit' 'haskell-http-types' 
'haskell-memory'
+ 'haskell-network-uri' 'haskell-nonce' 'haskell-persistent' 
'haskell-random' 'haskell-safe'
+ 'haskell-shakespeare' 'haskell-unliftio' 'haskell-unliftio-core'
+ 'haskell-unordered-containers' 'haskell-wai' 'haskell-yesod-core' 
'haskell-yesod-form'
+ 'haskell-yesod-persistent')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('d70974047374a9ab95bf811eca27c45391f0987083e77a17c832cf6d2ebdf0b0c2042a4dbe838db83a4aff3c576aa02c20554afb0338249898894f910dfd5c1f')
+
+build() {
+cd "${srcdir}/${_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
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_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 nvidia-utils/repos (5 files)

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 05:21:16
  Author: felixonmars
Revision: 336786

archrelease: copy trunk to testing-x86_64

Added:
  nvidia-utils/repos/testing-x86_64/
  nvidia-utils/repos/testing-x86_64/PKGBUILD
(from rev 336785, nvidia-utils/trunk/PKGBUILD)
  nvidia-utils/repos/testing-x86_64/nvidia-drm-outputclass.conf
(from rev 336785, nvidia-utils/trunk/nvidia-drm-outputclass.conf)
  nvidia-utils/repos/testing-x86_64/nvidia-utils.install
(from rev 336785, nvidia-utils/trunk/nvidia-utils.install)
  nvidia-utils/repos/testing-x86_64/nvidia-utils.sysusers
(from rev 336785, nvidia-utils/trunk/nvidia-utils.sysusers)

-+
 PKGBUILD|  175 ++
 nvidia-drm-outputclass.conf |   15 +++
 nvidia-utils.install|7 +
 nvidia-utils.sysusers   |1 
 4 files changed, 198 insertions(+)

Copied: nvidia-utils/repos/testing-x86_64/PKGBUILD (from rev 336785, 
nvidia-utils/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2018-10-17 05:21:16 UTC (rev 336786)
@@ -0,0 +1,175 @@
+# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Thomas Baechler 
+# Contributor: James Rayner 
+
+pkgbase=nvidia-utils
+pkgname=('nvidia-utils' 'opencl-nvidia')
+pkgver=410.66
+pkgrel=1
+arch=('x86_64')
+url="http://www.nvidia.com/;
+license=('custom')
+options=('!strip')
+_pkg="NVIDIA-Linux-x86_64-${pkgver}"
+source=('nvidia-drm-outputclass.conf'
+'nvidia-utils.sysusers'
+
"https://download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/${_pkg}.run;)
+sha512sums=('c49d246a519731bfab9d22afa5c2dd2d366db06d80182738b84881e93cd697c783f16ee04819275c05597bb063451a5d6102fbc562cd078d2a374533a23cea48'
+
'4b3ad73f5076ba90fe0b3a2e712ac9cde76f469cd8070280f960c3ce7dc502d1927f525ae18d008075c8f08ea432f7be0a6c3a7a6b49c361126dcf42f97ec499'
+
'1773ea5150822735cf02808df68cd2f9ff8b502633632a7748b4bff387daec44527f1bfb0508938c9eee7fb12ac070b99b3f5a903e592bf6d9c6461f4f7a7e9e')
+
+
+create_links() {
+# create soname links
+find "$pkgdir" -type f -name '*.so*' ! -path '*xorg/*' -print0 | while 
read -d $'\0' _lib; do
+_soname=$(dirname "${_lib}")/$(readelf -d "${_lib}" | grep -Po 
'SONAME.*: \[\K[^]]*' || true)
+_base=$(echo ${_soname} | sed -r 's/(.*).so.*/\1.so/')
+[[ -e "${_soname}" ]] || ln -s $(basename "${_lib}") "${_soname}"
+[[ -e "${_base}" ]] || ln -s $(basename "${_soname}") "${_base}"
+done
+}
+
+prepare() {
+sh "${_pkg}.run" --extract-only
+cd "${_pkg}"
+bsdtar -xf nvidia-persistenced-init.tar.bz2
+
+sed -i 's/__NV_VK_ICD__/libGLX_nvidia.so.0/' nvidia_icd.json.template
+}
+
+package_opencl-nvidia() {
+pkgdesc="OpenCL implemention for NVIDIA"
+depends=('zlib')
+optdepends=('opencl-headers: headers necessary for OpenCL development')
+provides=('opencl-driver')
+cd "${_pkg}"
+
+# OpenCL
+install -D -m644 nvidia.icd "${pkgdir}/etc/OpenCL/vendors/nvidia.icd"
+install -D -m755 "libnvidia-compiler.so.${pkgver}" 
"${pkgdir}/usr/lib/libnvidia-compiler.so.${pkgver}"
+install -D -m755 "libnvidia-opencl.so.${pkgver}" 
"${pkgdir}/usr/lib/libnvidia-opencl.so.${pkgver}"
+
+create_links
+
+mkdir -p "${pkgdir}/usr/share/licenses"
+ln -s nvidia "${pkgdir}/usr/share/licenses/opencl-nvidia"
+}
+
+package_nvidia-utils() {
+pkgdesc="NVIDIA drivers utilities"
+depends=('xorg-server' 'libglvnd' 'egl-wayland')
+optdepends=('nvidia-settings: configuration tool'
+'xorg-server-devel: nvidia-xconfig'
+'opencl-nvidia: OpenCL support')
+conflicts=('nvidia-libgl')
+provides=('vulkan-driver' 'opengl-driver' 'nvidia-libgl')
+replaces=('nvidia-libgl')
+install="${pkgname}.install"
+
+cd "${_pkg}"
+
+# X driver
+install -D -m755 nvidia_drv.so 
"${pkgdir}/usr/lib/xorg/modules/drivers/nvidia_drv.so"
+
+# GLX extension module for X
+install -D -m755 "libglxserver_nvidia.so.${pkgver}" 
"${pkgdir}/usr/lib/nvidia/xorg/libglxserver_nvidia.so.${pkgver}"
+# Ensure that X finds glx
+ln -s "libglxserver_nvidia.so.${pkgver}" 
"${pkgdir}/usr/lib/nvidia/xorg/libglxserver_nvidia.so.1"
+ln -s "libglxserver_nvidia.so.${pkgver}" 
"${pkgdir}/usr/lib/nvidia/xorg/libglxserver_nvidia.so"
+
+# X wrapped software rendering
+install -D -m755 "libnvidia-wfb.so.${pkgver}" 
"${pkgdir}/usr/lib/libnvidia-wfb.so.${pkgver}"
+
+install -D -m755 "libGLX_nvidia.so.${pkgver}" 
"${pkgdir}/usr/lib/libGLX_nvidia.so.${pkgver}"
+
+# OpenGL libraries
+install -D -m755 "libEGL_nvidia.so.${pkgver}" 
"${pkgdir}/usr/lib/libEGL_nvidia.so.${pkgver}"
+install -D -m755 "libGLESv1_CM_nvidia.so.${pkgver}" 
"${pkgdir}/usr/lib/libGLESv1_CM_nvidia.so.${pkgver}"
+install -D -m755 "libGLESv2_nvidia.so.${pkgver}" 

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

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 05:20:56
  Author: felixonmars
Revision: 336785

upgpkg: nvidia-utils 410.66-1

Modified:
  nvidia-utils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-17 05:20:02 UTC (rev 336784)
+++ PKGBUILD2018-10-17 05:20:56 UTC (rev 336785)
@@ -4,8 +4,8 @@
 
 pkgbase=nvidia-utils
 pkgname=('nvidia-utils' 'opencl-nvidia')
-pkgver=410.57
-pkgrel=3
+pkgver=410.66
+pkgrel=1
 arch=('x86_64')
 url="http://www.nvidia.com/;
 license=('custom')
@@ -16,7 +16,7 @@
 
"https://download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/${_pkg}.run;)
 
sha512sums=('c49d246a519731bfab9d22afa5c2dd2d366db06d80182738b84881e93cd697c783f16ee04819275c05597bb063451a5d6102fbc562cd078d2a374533a23cea48'
 
'4b3ad73f5076ba90fe0b3a2e712ac9cde76f469cd8070280f960c3ce7dc502d1927f525ae18d008075c8f08ea432f7be0a6c3a7a6b49c361126dcf42f97ec499'
-
'2ba6b4b7829410152e0fa57772969ca59f134995ef93d08c12cc6a7a97e081c1d718600a25f541444ce66603ed84b99e66b0ced6fb773ca40f98cd5dc1348d79')
+
'1773ea5150822735cf02808df68cd2f9ff8b502633632a7748b4bff387daec44527f1bfb0508938c9eee7fb12ac070b99b3f5a903e592bf6d9c6461f4f7a7e9e')
 
 
 create_links() {


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

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 05:20:57
  Author: felixonmars
Revision: 394953

upgpkg: haskell-yesod-auth 1.6.4.1-37

rebuild with ghc 8.6.1

Modified:
  haskell-yesod-auth/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-17 05:20:35 UTC (rev 394952)
+++ PKGBUILD2018-10-17 05:20:57 UTC (rev 394953)
@@ -4,7 +4,7 @@
 _hkgname=yesod-auth
 pkgname=haskell-yesod-auth
 pkgver=1.6.4.1
-pkgrel=36
+pkgrel=37
 pkgdesc="Authentication for Yesod."
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 05:20:02
  Author: felixonmars
Revision: 336784

archrelease: copy trunk to testing-x86_64

Added:
  nvidia-settings/repos/testing-x86_64/
  nvidia-settings/repos/testing-x86_64/PKGBUILD
(from rev 336783, nvidia-settings/trunk/PKGBUILD)
  nvidia-settings/repos/testing-x86_64/libxnvctrl_so.patch
(from rev 336783, nvidia-settings/trunk/libxnvctrl_so.patch)

-+
 PKGBUILD|   62 ++
 libxnvctrl_so.patch |   67 ++
 2 files changed, 129 insertions(+)

Copied: nvidia-settings/repos/testing-x86_64/PKGBUILD (from rev 336783, 
nvidia-settings/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2018-10-17 05:20:02 UTC (rev 336784)
@@ -0,0 +1,62 @@
+# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Felix Yan 
+# Maintainer: Levente Polyak 
+
+pkgbase=nvidia-settings
+pkgname=('nvidia-settings' 'libxnvctrl')
+pkgver=410.66
+pkgrel=1
+pkgdesc='Tool for configuring the NVIDIA graphics driver'
+url='https://github.com/NVIDIA/nvidia-settings'
+arch=('x86_64')
+license=('GPL2')
+makedepends=('git' 'inetutils' 'gtk2' 'jansson' 'gtk3' 'libxv' 'libvdpau' 
'nvidia-utils' 'libxext')
+options=('staticlibs')
+source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/NVIDIA/nvidia-settings/archive/${pkgver}.tar.gz
+libxnvctrl_so.patch)
+sha512sums=('897b2cf86cbcf8bc9f5109aec52926e174fb915aeda66d3834e786c747c5b4720ff36539f0d366884d9ac223841997a0bc81c6516c98f99e9dd616d8014befe2'
+
'f69f5dc84fe624579a3c9ce877f4ae4e34c2184877576afbea07b8abdd7ff01e470517f2b77cd11a904518cbcb83fb388ca1d0006f0ef2854723920c9cf8')
+
+prepare() {
+  export PREFIX=/usr
+  export NV_USE_BUNDLED_LIBJANSSON=0
+  cd ${pkgbase}-${pkgver}
+  patch -p1 < "${srcdir}/libxnvctrl_so.patch"
+}
+
+build() {
+  cd ${pkgbase}-${pkgver}
+  make
+  make -C src/libXNVCtrl
+}
+
+package_nvidia-settings() {
+  depends=('jansson' 'gtk3' 'libxv' 'libvdpau' 'nvidia-utils' 'libxnvctrl')
+
+  cd ${pkgbase}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  install -D -m644 doc/nvidia-settings.desktop 
"${pkgdir}/usr/share/applications/nvidia-settings.desktop"
+  install -D -m644 doc/nvidia-settings.png 
"${pkgdir}/usr/share/pixmaps/nvidia-settings.png"
+  sed -e 's:__UTILS_PATH__:/usr/bin:' -e 
's:__PIXMAP_PATH__:/usr/share/pixmaps:' -i 
"${pkgdir}/usr/share/applications/nvidia-settings.desktop"
+
+  rm "$pkgdir/usr/lib/libnvidia-gtk2.so.$pkgver"
+}
+
+package_libxnvctrl() {
+  depends=('libxext')
+  pkgdesc='NVIDIA NV-CONTROL X extension'
+
+  cd ${pkgbase}-${pkgver}
+  install -Dm 644 doc/{NV-CONTROL-API.txt,FRAMELOCK.txt} -t 
"${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 samples/{Makefile,README,*.c,*.h,*.mk} -t 
"${pkgdir}/usr/share/doc/${pkgname}/samples"
+
+  cd src/libXNVCtrl
+  install -Dm 644 *.h -t "${pkgdir}/usr/include/NVCtrl"
+  install -Dm 644 libXNVCtrl.a -t "${pkgdir}/usr/lib"
+  install -Dm 755 libXNVCtrl.so.0.0.0 -t "${pkgdir}/usr/lib"
+  ln -s libXNVCtrl.so.0.0.0 "${pkgdir}/usr/lib/libXNVCtrl.so.0"
+  ln -s libXNVCtrl.so.0 "${pkgdir}/usr/lib/libXNVCtrl.so"
+}
+
+# vim: ts=2 sw=2 et:

Copied: nvidia-settings/repos/testing-x86_64/libxnvctrl_so.patch (from rev 
336783, nvidia-settings/trunk/libxnvctrl_so.patch)
===
--- testing-x86_64/libxnvctrl_so.patch  (rev 0)
+++ testing-x86_64/libxnvctrl_so.patch  2018-10-17 05:20:02 UTC (rev 336784)
@@ -0,0 +1,67 @@
+--- a/src/Makefile
 b/src/Makefile
+@@ -106,6 +106,8 @@
+ XNVCTRL_DIR ?= libXNVCtrl
+ XNVCTRL_MAKEFILE?= Makefile
+ XNVCTRL_ARCHIVE ?= $(XNVCTRL_DIR)/libXNVCtrl.a
++XNVCTRL_SHARED  ?= $(XNVCTRL_DIR)/libXNVCtrl.so.0
++XNVCTRL_LIB ?= $(XNVCTRL_SHARED)
+ XCONFIG_PARSER_DIR  ?= XF86Config-parser
+ COMMON_UTILS_DIR?= common-utils
+ COMMON_UNIX_DIR ?= common-unix
+@@ -280,15 +282,18 @@
+   $(MKDIR) $(BINDIR)
+   $(INSTALL) $(INSTALL_BIN_ARGS) $< $(BINDIR)/$(notdir $<)
+ 
++$(XNVCTRL_ARCHIVE) $(XNVCTRL_SHARED):
++  $(MAKE) -C $(XNVCTRL_DIR)
++
+ $(eval $(call DEBUG_INFO_RULES, $(NVIDIA_SETTINGS)))
+-$(NVIDIA_SETTINGS).unstripped: $(OBJS) $(XNVCTRL_ARCHIVE)
++$(NVIDIA_SETTINGS).unstripped: $(OBJS) $(XNVCTRL_LIB)
+   $(call quiet_cmd,LINK) $(CFLAGS) $(LDFLAGS) $(BIN_LDFLAGS) \
+-  -rdynamic -o $@ $(OBJS) $(XNVCTRL_ARCHIVE) $(LIBS)
++  -rdynamic -o $@ $(OBJS) $(XNVCTRL_LIB) $(LIBS)
+ 
+ $(eval $(call DEBUG_INFO_RULES, $(GTK2LIB)))
+ $(GTK2LIB).unstripped: $(GTK2_OBJS) $(XCP_OBJS) $(IMAGE_OBJS) $(VERSION_MK)
+   $(call quiet_cmd,LINK) -shared $(CFLAGS) $(LDFLAGS) $(BIN_LDFLAGS) \
+-  $(XNVCTRL_ARCHIVE) $(LIBS) $(GTK2_LIBS) \
++  $(XNVCTRL_LIB) $(LIBS) $(GTK2_LIBS) \
+   

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

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 05:20:35
  Author: felixonmars
Revision: 394952

archrelease: copy trunk to multilib-testing-x86_64

Added:
  lib32-nvidia-utils/repos/multilib-testing-x86_64/
  lib32-nvidia-utils/repos/multilib-testing-x86_64/PKGBUILD
(from rev 394951, lib32-nvidia-utils/trunk/PKGBUILD)

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

Copied: lib32-nvidia-utils/repos/multilib-testing-x86_64/PKGBUILD (from rev 
394951, lib32-nvidia-utils/trunk/PKGBUILD)
===
--- multilib-testing-x86_64/PKGBUILD(rev 0)
+++ multilib-testing-x86_64/PKGBUILD2018-10-17 05:20:35 UTC (rev 394952)
@@ -0,0 +1,102 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Thomas Baechler 
+# Contributor: James Rayner 
+
+_pkgbasename=nvidia-utils
+pkgbase=lib32-$_pkgbasename
+pkgname=('lib32-nvidia-utils' 'lib32-opencl-nvidia')
+pkgver=410.66
+pkgrel=1
+arch=('x86_64')
+url="http://www.nvidia.com/;
+#makedepends=('nvidia-libgl')  # To avoid conflict during installation in the 
build chroot
+license=('custom')
+options=('!strip')
+_pkg="NVIDIA-Linux-x86_64-${pkgver}"
+source=("https://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/${_pkg}.run;)
+sha512sums=('1773ea5150822735cf02808df68cd2f9ff8b502633632a7748b4bff387daec44527f1bfb0508938c9eee7fb12ac070b99b3f5a903e592bf6d9c6461f4f7a7e9e')
+
+create_links() {
+# create soname links
+for _lib in $(find "${pkgdir}" -name '*.so*' | grep -v 'xorg/'); do
+_soname=$(dirname "${_lib}")/$(readelf -d "${_lib}" | grep -Po 
'SONAME.*: \[\K[^]]*' || true)
+_base=$(echo ${_soname} | sed -r 's/(.*).so.*/\1.so/')
+[[ -e "${_soname}" ]] || ln -s $(basename "${_lib}") "${_soname}"
+[[ -e "${_base}" ]] || ln -s $(basename "${_soname}") "${_base}"
+done
+}
+
+build() {
+sh ${_pkg}.run --extract-only
+}
+
+package_lib32-opencl-nvidia() {
+pkgdesc="OpenCL implemention for NVIDIA (32-bit)"
+depends=('lib32-zlib' 'lib32-gcc-libs')
+optdepends=('opencl-headers: headers necessary for OpenCL development')
+provides=('lib32-opencl-driver')
+
+cd "${_pkg}"/32
+
+# OpenCL
+install -D -m755 "libnvidia-compiler.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvidia-compiler.so.${pkgver}"
+install -D -m755 "libnvidia-opencl.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvidia-opencl.so.${pkgver}"
+
+create_links
+
+mkdir -p "${pkgdir}/usr/share/licenses"
+ln -s $_pkgbasename "${pkgdir}/usr/share/licenses/lib32-opencl-nvidia"
+}
+
+package_lib32-nvidia-utils() {
+pkgdesc="NVIDIA drivers utilities (32-bit)"
+depends=('lib32-zlib' 'lib32-gcc-libs' 'lib32-libglvnd' 'nvidia-utils')
+optdepends=('lib32-opencl-nvidia')
+conflicts=('lib32-nvidia-libgl')
+provides=('lib32-vulkan-driver' 'lib32-opengl-driver' 'lib32-nvidia-libgl')
+replaces=('lib32-nvidia-libgl')
+
+cd "${_pkg}"/32
+
+install -D -m755 "libGLX_nvidia.so.${pkgver}" 
"${pkgdir}/usr/lib32/libGLX_nvidia.so.${pkgver}"
+
+# OpenGL libraries
+install -D -m755 "libEGL_nvidia.so.${pkgver}" 
"${pkgdir}/usr/lib32/libEGL_nvidia.so.${pkgver}"
+install -D -m755 "libGLESv1_CM_nvidia.so.${pkgver}" 
"${pkgdir}/usr/lib32/libGLESv1_CM_nvidia.so.${pkgver}"
+install -D -m755 "libGLESv2_nvidia.so.${pkgver}" 
"${pkgdir}/usr/lib32/libGLESv2_nvidia.so.${pkgver}"
+
+# OpenGL core library
+install -D -m755 "libnvidia-glcore.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvidia-glcore.so.${pkgver}"
+install -D -m755 "libnvidia-eglcore.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvidia-eglcore.so.${pkgver}"
+install -D -m755 "libnvidia-glsi.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvidia-glsi.so.${pkgver}"
+
+# misc
+install -D -m755 "libnvidia-ifr.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvidia-ifr.so.${pkgver}"
+install -D -m755 "libnvidia-fbc.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvidia-fbc.so.${pkgver}"
+install -D -m755 "libnvidia-encode.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvidia-encode.so.${pkgver}"
+install -D -m755 "libnvidia-ml.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvidia-ml.so.${pkgver}"
+install -D -m755 "libnvidia-glvkspirv.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvidia-glvkspirv.so.${pkgver}"
+
+# VDPAU
+install -D -m755 "libvdpau_nvidia.so.${pkgver}" 
"${pkgdir}/usr/lib32/vdpau/libvdpau_nvidia.so.${pkgver}"
+
+# nvidia-tls library
+install -D -m755 "libnvidia-tls.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvidia-tls.so.${pkgver}"
+install -D -m755 "tls/libnvidia-tls.so.${pkgver}" 
"${pkgdir}/usr/lib32/tls/libnvidia-tls.so.${pkgver}"
+
+# CUDA
+install -D -m755 "libcuda.so.${pkgver}" 
"${pkgdir}/usr/lib32/libcuda.so.${pkgver}"
+install -D -m755 "libnvcuvid.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvcuvid.so.${pkgver}"
+
+# PTX JIT Compiler (Parallel Thread Execution (PTX) is a pseudo-assembly 

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

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 05:20:21
  Author: felixonmars
Revision: 394951

upgpkg: lib32-nvidia-utils 410.66-1

Modified:
  lib32-nvidia-utils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-17 05:19:42 UTC (rev 394950)
+++ PKGBUILD2018-10-17 05:20:21 UTC (rev 394951)
@@ -5,7 +5,7 @@
 _pkgbasename=nvidia-utils
 pkgbase=lib32-$_pkgbasename
 pkgname=('lib32-nvidia-utils' 'lib32-opencl-nvidia')
-pkgver=410.57
+pkgver=410.66
 pkgrel=1
 arch=('x86_64')
 url="http://www.nvidia.com/;
@@ -14,7 +14,7 @@
 options=('!strip')
 _pkg="NVIDIA-Linux-x86_64-${pkgver}"
 
source=("https://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/${_pkg}.run;)
-sha512sums=('2ba6b4b7829410152e0fa57772969ca59f134995ef93d08c12cc6a7a97e081c1d718600a25f541444ce66603ed84b99e66b0ced6fb773ca40f98cd5dc1348d79')
+sha512sums=('1773ea5150822735cf02808df68cd2f9ff8b502633632a7748b4bff387daec44527f1bfb0508938c9eee7fb12ac070b99b3f5a903e592bf6d9c6461f4f7a7e9e')
 
 create_links() {
 # create soname links


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

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 05:19:26
  Author: felixonmars
Revision: 394949

upgpkg: haskell-yesod 1.6.0-146

rebuild with ghc 8.6.1

Modified:
  haskell-yesod/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-17 05:18:34 UTC (rev 394948)
+++ PKGBUILD2018-10-17 05:19:26 UTC (rev 394949)
@@ -4,7 +4,7 @@
 _hkgname=yesod
 pkgname=haskell-yesod
 pkgver=1.6.0
-pkgrel=145
+pkgrel=146
 pkgdesc="Creation of type-safe, RESTful web applications."
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 05:19:49
  Author: felixonmars
Revision: 336783

upgpkg: nvidia-settings 410.66-1

Modified:
  nvidia-settings/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-17 04:53:38 UTC (rev 336782)
+++ PKGBUILD2018-10-17 05:19:49 UTC (rev 336783)
@@ -4,8 +4,8 @@
 
 pkgbase=nvidia-settings
 pkgname=('nvidia-settings' 'libxnvctrl')
-pkgver=410.57
-pkgrel=2
+pkgver=410.66
+pkgrel=1
 pkgdesc='Tool for configuring the NVIDIA graphics driver'
 url='https://github.com/NVIDIA/nvidia-settings'
 arch=('x86_64')
@@ -14,7 +14,7 @@
 options=('staticlibs')
 
source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/NVIDIA/nvidia-settings/archive/${pkgver}.tar.gz
 libxnvctrl_so.patch)
-sha512sums=('0f01e75960956261d74396ef942a6c173b171256e26491117a369d7a990e6b7fd7d2433c226269c048dac1eab5bc76f408f6fdec56efe97ad3c2f895303f692c'
+sha512sums=('897b2cf86cbcf8bc9f5109aec52926e174fb915aeda66d3834e786c747c5b4720ff36539f0d366884d9ac223841997a0bc81c6516c98f99e9dd616d8014befe2'
 
'f69f5dc84fe624579a3c9ce877f4ae4e34c2184877576afbea07b8abdd7ff01e470517f2b77cd11a904518cbcb83fb388ca1d0006f0ef2854723920c9cf8')
 
 prepare() {


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

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 05:19:42
  Author: felixonmars
Revision: 394950

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-yesod/repos/community-staging-x86_64/PKGBUILD (from rev 394949, 
haskell-yesod/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-10-17 05:19:42 UTC (rev 394950)
@@ -0,0 +1,48 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod
+pkgname=haskell-yesod
+pkgver=1.6.0
+pkgrel=146
+pkgdesc="Creation of type-safe, RESTful web applications."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-blaze-html' 'haskell-blaze-markup'
+ 'haskell-data-default-class' 'haskell-fast-logger' 
'haskell-monad-logger'
+ 'haskell-resourcet' 'haskell-shakespeare' 'haskell-streaming-commons'
+ 'haskell-unordered-containers' 'haskell-wai' 'haskell-wai-extra' 
'haskell-wai-logger'
+ 'haskell-warp' 'haskell-yaml' 'haskell-yesod-core' 
'haskell-yesod-form'
+ 'haskell-yesod-persistent')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('36caa5ee5c27a2355aff9e5dc210100661670717e251bb42bac48c02cd6979c38ae7b5fda1dd2e264aefb7b5b3808f7ccc9e511fd38b6de7090e16c7a91e1b15')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i '/semigroups/d' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 05:18:20
  Author: felixonmars
Revision: 394947

upgpkg: haskell-yesod-form 1.6.2-74

rebuild with ghc 8.6.1

Modified:
  haskell-yesod-form/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-17 05:17:02 UTC (rev 394946)
+++ PKGBUILD2018-10-17 05:18:20 UTC (rev 394947)
@@ -4,7 +4,7 @@
 _hkgname=yesod-form
 pkgname=haskell-yesod-form
 pkgver=1.6.2
-pkgrel=73
+pkgrel=74
 pkgdesc="Form handling support for Yesod Web Framework"
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 05:18:34
  Author: felixonmars
Revision: 394948

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-yesod-form/repos/community-staging-x86_64/PKGBUILD (from rev 
394947, haskell-yesod-form/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-10-17 05:18:34 UTC (rev 394948)
@@ -0,0 +1,47 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-form
+pkgname=haskell-yesod-form
+pkgver=1.6.2
+pkgrel=74
+pkgdesc="Form handling support for Yesod Web Framework"
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-attoparsec' 
'haskell-blaze-builder' 'haskell-blaze-html'
+ 'haskell-blaze-markup' 'haskell-byteable' 'haskell-data-default' 
'haskell-email-validate'
+ 'haskell-network-uri' 'haskell-persistent' 'haskell-resourcet' 
'haskell-shakespeare'
+ 'haskell-wai' 'haskell-xss-sanitize' 'haskell-yesod-core' 
'haskell-yesod-persistent')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('2859cdecd06a60db5ada2acbf2fcfef2157068a3193d92870a7bf59d815f63b80bd2c9440dd7e305551372420b757040be9d3bffa1285a23c4b67f2fef34fd97')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i '/semigroups/d' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fnetwork-uri
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh   
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 05:17:02
  Author: felixonmars
Revision: 394946

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-yesod-persistent/repos/community-staging-x86_64/PKGBUILD (from 
rev 394945, haskell-yesod-persistent/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-10-17 05:17:02 UTC (rev 394946)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-persistent
+pkgname=haskell-yesod-persistent
+pkgver=1.6.0.1
+pkgrel=2
+pkgdesc="Some helpers for using Persistent from Yesod."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-blaze-builder" "haskell-conduit" 
"haskell-persistent"
+ "haskell-persistent-template" "haskell-resource-pool" 
"haskell-resourcet"
+ "haskell-yesod-core")
+makedepends=('ghc' 'haskell-hspec' 'haskell-wai-extra' 
'haskell-persistent-sqlite')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('da12967cef7660581eeea16c5f4a28675fdc1fd697b265e9eee9c462e26385870e894653eada6a02532655693d3b72f202fde445949d44324ebfab40c7f6b52d')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+runhaskell Setup test
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 05:16:47
  Author: felixonmars
Revision: 394945

upgpkg: haskell-yesod-persistent 1.6.0.1-2

rebuild with ghc 8.6.1

Modified:
  haskell-yesod-persistent/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-17 05:15:56 UTC (rev 394944)
+++ PKGBUILD2018-10-17 05:16:47 UTC (rev 394945)
@@ -4,7 +4,7 @@
 _hkgname=yesod-persistent
 pkgname=haskell-yesod-persistent
 pkgver=1.6.0.1
-pkgrel=1
+pkgrel=2
 pkgdesc="Some helpers for using Persistent from Yesod."
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 05:15:41
  Author: felixonmars
Revision: 394943

upgpkg: haskell-yesod-default 1.2.0-415

rebuild with ghc 8.6.1

Modified:
  haskell-yesod-default/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-17 05:14:50 UTC (rev 394942)
+++ PKGBUILD2018-10-17 05:15:41 UTC (rev 394943)
@@ -4,7 +4,7 @@
 _hkgname=yesod-default
 pkgname=haskell-yesod-default
 pkgver=1.2.0
-pkgrel=414
+pkgrel=415
 pkgdesc="Default config and main functions for your yesod application 
(deprecated)"
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 05:15:56
  Author: felixonmars
Revision: 394944

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-yesod-default/repos/community-staging-x86_64/PKGBUILD (from rev 
394943, haskell-yesod-default/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-10-17 05:15:56 UTC (rev 394944)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-default
+pkgname=haskell-yesod-default
+pkgver=1.2.0
+pkgrel=415
+pkgdesc="Default config and main functions for your yesod application 
(deprecated)"
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-yesod-core")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('f39ae1953a95c1919a9dd214d93bf81078b1dcbbac737dc9bb7339dbad9dda96')
+
+build() {
+cd "${srcdir}/${_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
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 05:14:35
  Author: felixonmars
Revision: 394941

upgpkg: haskell-yesod-core 1.6.8-4

rebuild with ghc 8.6.1

Modified:
  haskell-yesod-core/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-17 05:13:34 UTC (rev 394940)
+++ PKGBUILD2018-10-17 05:14:35 UTC (rev 394941)
@@ -4,7 +4,7 @@
 _hkgname=yesod-core
 pkgname=haskell-yesod-core
 pkgver=1.6.8
-pkgrel=3
+pkgrel=4
 pkgdesc="Creation of type-safe, RESTful web applications."
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 05:14:50
  Author: felixonmars
Revision: 394942

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-yesod-core/repos/community-staging-x86_64/PKGBUILD (from rev 
394941, haskell-yesod-core/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-10-17 05:14:50 UTC (rev 394942)
@@ -0,0 +1,50 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-core
+pkgname=haskell-yesod-core
+pkgver=1.6.8
+pkgrel=4
+pkgdesc="Creation of type-safe, RESTful web applications."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-auto-update' 'haskell-blaze-html'
+ 'haskell-blaze-markup' 'haskell-byteable' 'haskell-case-insensitive' 
'haskell-cereal'
+ 'haskell-clientsession' 'haskell-conduit' 'haskell-conduit-extra' 
'haskell-cookie'
+ 'haskell-fast-logger' 'haskell-http-types'
+ 'haskell-monad-logger' 'haskell-old-locale' 'haskell-path-pieces' 
'haskell-primitive'
+ 'haskell-random' 'haskell-resourcet' 'haskell-rio' 
'haskell-shakespeare'
+ 'haskell-unix-compat' 'haskell-unliftio' 
'haskell-unordered-containers' 'haskell-vector'
+ 'haskell-wai' 'haskell-wai-extra' 'haskell-wai-logger' 'haskell-warp' 
'haskell-word8')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('d6340c2e218df36986b493c0764d9ad8ef66314648d98a6232b6bdbaef4179a1ab4896032c19fb9cd6097420e7b4d604ccfb86accd76a5dd576bd5e6f78b3caa')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i '/semigroups/d' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


[arch-commits] Commit in python-softlayer/repos/community-any (3 files)

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 05:13:34
  Author: felixonmars
Revision: 394940

archrelease: copy trunk to community-any

Added:
  python-softlayer/repos/community-any/PKGBUILD
(from rev 394939, python-softlayer/trunk/PKGBUILD)
Deleted:
  python-softlayer/repos/community-any/PKGBUILD
  python-softlayer/repos/community-any/click-7.patch

---+
 PKGBUILD  |   78 +++
 click-7.patch |  138 
 2 files changed, 38 insertions(+), 178 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-10-17 05:13:19 UTC (rev 394939)
+++ PKGBUILD2018-10-17 05:13:34 UTC (rev 394940)
@@ -1,40 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=python-softlayer
-pkgver=5.5.3
-pkgrel=1
-pkgdesc="A library for SoftLayer's API"
-arch=('any')
-license=('MIT')
-url='https://github.com/softlayer/softlayer-python'
-depends=('python-six' 'python-ptable' 'python-click' 'python-requests' 
'python-prompt_toolkit'
- 'python-pygments' 'python-urllib3')
-makedepends=('python-setuptools')
-checkdepends=('python-pytest-runner' 'python-mock' 'python-testtools')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/softlayer/softlayer-python/archive/v$pkgver.tar.gz;
-click-7.patch)
-sha512sums=('65844c940c7f32366b616cf7e29410bb7a488727d011f21e2e0b6e687f27555164a4c133635d2c65368333d586bfd49d0de9afb07f932ddf0386d27872854b21'
-
'54395d5469fd63e5bbfd455f4e9945d4d3fe3dc5b4ff483734ba872485489fd7b883ba09602bd05ec8153d20a0d358e551877a7853670a362fdd694937f3f7ae')
-
-prepare() {
-  cd softlayer-python-$pkgver
-  patch -p1 -i ../click-7.patch
-}
-
-build() {
-  cd softlayer-python-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd softlayer-python-$pkgver
-  python setup.py pytest --addopts '-k "not test_edit_perms_on_bad"'
-}
-
-package() {
-  cd softlayer-python-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-softlayer/repos/community-any/PKGBUILD (from rev 394939, 
python-softlayer/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-10-17 05:13:34 UTC (rev 394940)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-softlayer
+pkgver=5.6.0
+pkgrel=1
+pkgdesc="A library for SoftLayer's API"
+arch=('any')
+license=('MIT')
+url='https://github.com/softlayer/softlayer-python'
+depends=('python-six' 'python-ptable' 'python-click' 'python-requests' 
'python-prompt_toolkit'
+ 'python-pygments' 'python-urllib3')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest-runner' 'python-mock' 'python-testtools')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/softlayer/softlayer-python/archive/v$pkgver.tar.gz;)
+sha512sums=('5a905e0c21eab73b6c44ba3f7d9c783ca5cdc621d44072277ffe638589ff421e7273d733a8c3d4e15205aef990df375dc79ce2669597a9087d6740ea6e6e0aca')
+
+prepare() {
+  cd softlayer-python-$pkgver
+  sed -i 's/==/>=/' setup.py
+}
+
+build() {
+  cd softlayer-python-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd softlayer-python-$pkgver
+  python setup.py pytest --addopts '-k "not test_edit_perms_on_bad"'
+}
+
+package() {
+  cd softlayer-python-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: click-7.patch
===
--- click-7.patch   2018-10-17 05:13:19 UTC (rev 394939)
+++ click-7.patch   2018-10-17 05:13:34 UTC (rev 394940)
@@ -1,138 +0,0 @@
-commit 6f58b94b8ded045161b12cf1fd488ca87553d3cc
-Author: Felix Yan 
-Date:   Wed Oct 10 06:11:47 2018 +0800
-
-Update to use click 7
-
-diff --git a/SoftLayer/CLI/core.py b/SoftLayer/CLI/core.py
-index a02bf65a..a05ffaa5 100644
 a/SoftLayer/CLI/core.py
-+++ b/SoftLayer/CLI/core.py
-@@ -137,7 +137,7 @@ def cli(env,
- 
- @cli.resultcallback()
- @environment.pass_env
--def output_diagnostics(env, verbose=0, **kwargs):
-+def output_diagnostics(env, result, verbose=0, **kwargs):
- """Output diagnostic information."""
- 
- if verbose > 0:
-diff --git a/SoftLayer/CLI/vpn/ipsec/subnet/add.py 
b/SoftLayer/CLI/vpn/ipsec/subnet/add.py
-index 438dfc5f..08d0bc5e 100644
 a/SoftLayer/CLI/vpn/ipsec/subnet/add.py
-+++ b/SoftLayer/CLI/vpn/ipsec/subnet/add.py
-@@ -18,14 +18,14 @@ from SoftLayer.CLI.exceptions import CLIHalt
-   type=int,
-   help='Subnet identifier to add')
- @click.option('-t',
--  '--type',
-   '--subnet-type',
-+  '--type',
-   required=True,
-   type=click.Choice(['internal', 'remote', 'service']),
-   help='Subnet type to add')
- 

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

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 05:13:06
  Author: felixonmars
Revision: 394937

upgpkg: haskell-dav 1.3.2-143

rebuild with ghc 8.6.1

Modified:
  haskell-dav/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-17 05:12:16 UTC (rev 394936)
+++ PKGBUILD2018-10-17 05:13:06 UTC (rev 394937)
@@ -4,7 +4,7 @@
 _hkgname=DAV
 pkgname=haskell-dav
 pkgver=1.3.2
-pkgrel=142
+pkgrel=143
 pkgdesc="RFC 4918 WebDAV support"
 url="http://floss.scru.org/hDAV;
 license=("GPL3")


[arch-commits] Commit in python-softlayer/trunk (PKGBUILD click-7.patch)

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 05:13:17
  Author: felixonmars
Revision: 394938

upgpkg: python-softlayer 5.6.0-1

Modified:
  python-softlayer/trunk/PKGBUILD
Deleted:
  python-softlayer/trunk/click-7.patch

---+
 PKGBUILD  |   10 +---
 click-7.patch |  138 
 2 files changed, 4 insertions(+), 144 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-10-17 05:13:06 UTC (rev 394937)
+++ PKGBUILD2018-10-17 05:13:17 UTC (rev 394938)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=python-softlayer
-pkgver=5.5.3
+pkgver=5.6.0
 pkgrel=1
 pkgdesc="A library for SoftLayer's API"
 arch=('any')
@@ -11,14 +11,12 @@
  'python-pygments' 'python-urllib3')
 makedepends=('python-setuptools')
 checkdepends=('python-pytest-runner' 'python-mock' 'python-testtools')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/softlayer/softlayer-python/archive/v$pkgver.tar.gz;
-click-7.patch)
-sha512sums=('65844c940c7f32366b616cf7e29410bb7a488727d011f21e2e0b6e687f27555164a4c133635d2c65368333d586bfd49d0de9afb07f932ddf0386d27872854b21'
-
'54395d5469fd63e5bbfd455f4e9945d4d3fe3dc5b4ff483734ba872485489fd7b883ba09602bd05ec8153d20a0d358e551877a7853670a362fdd694937f3f7ae')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/softlayer/softlayer-python/archive/v$pkgver.tar.gz;)
+sha512sums=('5a905e0c21eab73b6c44ba3f7d9c783ca5cdc621d44072277ffe638589ff421e7273d733a8c3d4e15205aef990df375dc79ce2669597a9087d6740ea6e6e0aca')
 
 prepare() {
   cd softlayer-python-$pkgver
-  patch -p1 -i ../click-7.patch
+  sed -i 's/==/>=/' setup.py
 }
 
 build() {

Deleted: click-7.patch
===
--- click-7.patch   2018-10-17 05:13:06 UTC (rev 394937)
+++ click-7.patch   2018-10-17 05:13:17 UTC (rev 394938)
@@ -1,138 +0,0 @@
-commit 6f58b94b8ded045161b12cf1fd488ca87553d3cc
-Author: Felix Yan 
-Date:   Wed Oct 10 06:11:47 2018 +0800
-
-Update to use click 7
-
-diff --git a/SoftLayer/CLI/core.py b/SoftLayer/CLI/core.py
-index a02bf65a..a05ffaa5 100644
 a/SoftLayer/CLI/core.py
-+++ b/SoftLayer/CLI/core.py
-@@ -137,7 +137,7 @@ def cli(env,
- 
- @cli.resultcallback()
- @environment.pass_env
--def output_diagnostics(env, verbose=0, **kwargs):
-+def output_diagnostics(env, result, verbose=0, **kwargs):
- """Output diagnostic information."""
- 
- if verbose > 0:
-diff --git a/SoftLayer/CLI/vpn/ipsec/subnet/add.py 
b/SoftLayer/CLI/vpn/ipsec/subnet/add.py
-index 438dfc5f..08d0bc5e 100644
 a/SoftLayer/CLI/vpn/ipsec/subnet/add.py
-+++ b/SoftLayer/CLI/vpn/ipsec/subnet/add.py
-@@ -18,14 +18,14 @@ from SoftLayer.CLI.exceptions import CLIHalt
-   type=int,
-   help='Subnet identifier to add')
- @click.option('-t',
--  '--type',
-   '--subnet-type',
-+  '--type',
-   required=True,
-   type=click.Choice(['internal', 'remote', 'service']),
-   help='Subnet type to add')
- @click.option('-n',
--  '--network',
-   '--network-identifier',
-+  '--network',
-   default=None,
-   type=NetworkParamType(),
-   help='Subnet network identifier to create')
-diff --git a/SoftLayer/CLI/vpn/ipsec/subnet/remove.py 
b/SoftLayer/CLI/vpn/ipsec/subnet/remove.py
-index 2d8b34d9..41d450a3 100644
 a/SoftLayer/CLI/vpn/ipsec/subnet/remove.py
-+++ b/SoftLayer/CLI/vpn/ipsec/subnet/remove.py
-@@ -16,8 +16,8 @@ from SoftLayer.CLI.exceptions import CLIHalt
-   type=int,
-   help='Subnet identifier to remove')
- @click.option('-t',
--  '--type',
-   '--subnet-type',
-+  '--type',
-   required=True,
-   type=click.Choice(['internal', 'remote', 'service']),
-   help='Subnet type to add')
-diff --git a/SoftLayer/CLI/vpn/ipsec/update.py 
b/SoftLayer/CLI/vpn/ipsec/update.py
-index 68e09b0a..4056f3b8 100644
 a/SoftLayer/CLI/vpn/ipsec/update.py
-+++ b/SoftLayer/CLI/vpn/ipsec/update.py
-@@ -20,48 +20,48 @@ from SoftLayer.CLI.exceptions import CLIHalt
- @click.option('--preshared-key',
-   default=None,
-   help='Preshared key value')
--@click.option('--p1-auth',
--  '--phase1-auth',
-+@click.option('--phase1-auth',
-+  '--p1-auth',
-   default=None,
-   type=click.Choice(['MD5', 'SHA1', 'SHA256']),
-   help='Phase 1 authentication value')
--@click.option('--p1-crypto',
--  '--phase1-crypto',
-+@click.option('--phase1-crypto',
-+  '--p1-crypto',
-   default=None,
-   type=click.Choice(['DES', '3DES', 'AES128', 'AES192', 
'AES256']),
-   help='Phase 1 encryption value')
--@click.option('--p1-dh',
--  '--phase1-dh',

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

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 05:13:19
  Author: felixonmars
Revision: 394939

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-dav/repos/community-staging-x86_64/PKGBUILD (from rev 394937, 
haskell-dav/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-10-17 05:13:19 UTC (rev 394939)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=DAV
+pkgname=haskell-dav
+pkgver=1.3.2
+pkgrel=143
+pkgdesc="RFC 4918 WebDAV support"
+url="http://floss.scru.org/hDAV;
+license=("GPL3")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-case-insensitive" "haskell-data-default" 
"haskell-exceptions"
+ "haskell-haskeline" "haskell-http-client" "haskell-http-client-tls" 
"haskell-http-types"
+ "haskell-lens" "haskell-network" "haskell-network-uri"
+ "haskell-optparse-applicative" "haskell-transformers-base" 
"haskell-transformers-compat"
+ "haskell-utf8-string" "haskell-xml-conduit" "haskell-xml-hamlet")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('8dd729c09f7b415dda13948bbd533606a7ccf45eb933fd6e984539f76defa8f938e6ec0c954c0955630182ee014fd611bd8a4e8a70fc863253d9a3f6a229c497')
+
+build() {
+cd "${srcdir}/${_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 -f-mtl-compat
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_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-xml-hamlet/repos (2 files)

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 05:12:16
  Author: felixonmars
Revision: 394936

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-xml-hamlet/repos/community-staging-x86_64/
  haskell-xml-hamlet/repos/community-staging-x86_64/PKGBUILD
(from rev 394935, haskell-xml-hamlet/trunk/PKGBUILD)

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

Copied: haskell-xml-hamlet/repos/community-staging-x86_64/PKGBUILD (from rev 
394935, haskell-xml-hamlet/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-10-17 05:12:16 UTC (rev 394936)
@@ -0,0 +1,39 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=xml-hamlet
+pkgname=haskell-xml-hamlet
+pkgver=0.5.0
+pkgrel=71
+pkgdesc="Hamlet-style quasiquoter for XML content"
+url="http://www.yesodweb.com/;
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-shakespeare"
+ "haskell-xml-conduit")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('6ab50b237e13f5d41f311fe30477c5ecef43af7400e6994652b384b8b91a0007facd7051d2651dac6836356fad6a764dfc2793338b7c0a8c20e83009a0a673ce')
+
+build() {
+cd "${srcdir}/${_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
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_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-xml-hamlet/trunk (PKGBUILD)

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 05:12:01
  Author: felixonmars
Revision: 394935

upgpkg: haskell-xml-hamlet 0.5.0-71

rebuild with ghc 8.6.1

Modified:
  haskell-xml-hamlet/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-17 05:11:07 UTC (rev 394934)
+++ PKGBUILD2018-10-17 05:12:01 UTC (rev 394935)
@@ -4,7 +4,7 @@
 _hkgname=xml-hamlet
 pkgname=haskell-xml-hamlet
 pkgver=0.5.0
-pkgrel=70
+pkgrel=71
 pkgdesc="Hamlet-style quasiquoter for XML content"
 url="http://www.yesodweb.com/;
 license=("custom:BSD3")


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

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 05:11:07
  Author: felixonmars
Revision: 394934

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-authenticate/repos/community-staging-x86_64/PKGBUILD (from rev 
394933, haskell-authenticate/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-10-17 05:11:07 UTC (rev 394934)
@@ -0,0 +1,42 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=authenticate
+pkgname=haskell-authenticate
+pkgver=1.3.4
+pkgrel=195
+pkgdesc="Authentication methods for Haskell web applications."
+url="https://github.com/yesodweb/authenticate;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-attoparsec' 
'haskell-blaze-builder'
+ 'haskell-case-insensitive' 'haskell-conduit' 'haskell-http-conduit' 
'haskell-http-types'
+ 'haskell-network-uri' 'haskell-resourcet' 'haskell-tagstream-conduit'
+ 'haskell-unordered-containers' 'haskell-xml-conduit')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('a6e5a9f4c20ca2bb980958c0cc6273492a6488a3f7c1954170bb8b40e46a4c2f7b607c961506e11ddc5421289c907148c1bc70b855bd16664bc1153ef7865571')
+
+build() {
+cd "${srcdir}/${_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
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 05:10:56
  Author: felixonmars
Revision: 394933

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-10-17 05:10:51 UTC (rev 394932)
+++ PKGBUILD2018-10-17 05:10:56 UTC (rev 394933)
@@ -1,67 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Daniel Wallace 
-# Contributor: Limao Luo 
-
-pkgbase=python-pbr
-pkgname=(python-pbr python2-pbr)
-pkgver=4.3.0
-pkgrel=1
-pkgdesc="Python Build Reasonableness"
-arch=('any')
-url='https://pypi.python.org/pypi/pbr'
-license=('Apache')
-makedepends=('python2-setuptools' 'python-setuptools' 'git')
-checkdepends=('python-stestr' 'python2-stestr' 'python-testscenarios' 
'python2-testscenarios'
-  'python-testresources' 'python2-testresources' 
'python-testrepository'
-  'python2-testrepository' 'python-mock' 'python2-mock'
-  'python-virtualenv' 'python2-virtualenv' 'python-wheel' 
'python2-wheel'
-  'python-sphinx' 'python2-sphinx')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/openstack-dev/pbr/archive/$pkgver.tar.gz;)
-sha512sums=('e3a01dd910b503fd8a5e72aa4282263d2474421400c8c102d0d1a4b57c4ee1bd742469a4ed40d1022ce396672ca0dca798a2906d04b02f9de5c168bb1c4da0c5')
-
-prepare() {
-  # Fix for new wheel
-  sed -e 's/wheel.install/wheel.wheelfile/' \
-  -e 's/wheel_file.zipfile/wheel_file/' \
-  -i pbr-$pkgver/pbr/tests/test_packaging.py
-
-  cp -a pbr-$pkgver{,-py2}
-
-  find pbr-$pkgver-py2 -name \*.py -exec sed -i '1s/python$/&2/' {} +
-
-  export PBR_VERSION=$pkgver
-}
-
-build() {
-  cd "$srcdir"/pbr-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/pbr-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/pbr-$pkgver
-  stestr run
-
-  cd "$srcdir"/pbr-$pkgver-py2
-  PYTHON=python2 stestr2 run
-}
-
-package_python-pbr() {
-  depends=('python-setuptools')
-
-  cd pbr-$pkgver
-  python setup.py install -O1 --root="$pkgdir"
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-pbr() {
-  depends=('python2-setuptools')
-
-  cd pbr-$pkgver-py2
-  python2 setup.py install -O1 --root="$pkgdir"
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-  
-  mv "$pkgdir"/usr/bin/pbr{,2}
-}

Copied: python-pbr/repos/community-any/PKGBUILD (from rev 394931, 
python-pbr/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-10-17 05:10:56 UTC (rev 394933)
@@ -0,0 +1,67 @@
+# Maintainer: Felix Yan 
+# Contributor: Daniel Wallace 
+# Contributor: Limao Luo 
+
+pkgbase=python-pbr
+pkgname=(python-pbr python2-pbr)
+pkgver=5.0.0
+pkgrel=1
+pkgdesc="Python Build Reasonableness"
+arch=('any')
+url='https://pypi.python.org/pypi/pbr'
+license=('Apache')
+makedepends=('python2-setuptools' 'python-setuptools' 'git')
+checkdepends=('python-stestr' 'python2-stestr' 'python-testscenarios' 
'python2-testscenarios'
+  'python-testresources' 'python2-testresources' 
'python-testrepository'
+  'python2-testrepository' 'python-mock' 'python2-mock'
+  'python-virtualenv' 'python2-virtualenv' 'python-wheel' 
'python2-wheel'
+  'python-sphinx' 'python2-sphinx')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/openstack-dev/pbr/archive/$pkgver.tar.gz;)
+sha512sums=('a85cd077aa058edccede7ce9653cb1039cae4f5eb09c01a4d1d185de3038839b105c85d738d5a56e66eb37af376e1596842b9bf4f4ff610dc66c56a07406f6ea')
+
+prepare() {
+  # Fix for new wheel
+  sed -e 's/wheel.install/wheel.wheelfile/' \
+  -e 's/wheel_file.zipfile/wheel_file/' \
+  -i pbr-$pkgver/pbr/tests/test_packaging.py
+
+  cp -a pbr-$pkgver{,-py2}
+
+  find pbr-$pkgver-py2 -name \*.py -exec sed -i '1s/python$/&2/' {} +
+
+  export PBR_VERSION=$pkgver
+}
+
+build() {
+  cd "$srcdir"/pbr-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/pbr-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/pbr-$pkgver
+  stestr run
+
+  cd "$srcdir"/pbr-$pkgver-py2
+  PYTHON=python2 stestr2 run
+}
+
+package_python-pbr() {
+  depends=('python-setuptools')
+
+  cd pbr-$pkgver
+  python setup.py install -O1 --root="$pkgdir"
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-pbr() {
+  depends=('python2-setuptools')
+
+  cd pbr-$pkgver-py2
+  python2 setup.py install -O1 --root="$pkgdir"
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+  
+  mv "$pkgdir"/usr/bin/pbr{,2}
+}


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

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 05:10:51
  Author: felixonmars
Revision: 394932

upgpkg: haskell-authenticate 1.3.4-195

rebuild with ghc 8.6.1

Modified:
  haskell-authenticate/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-17 05:10:40 UTC (rev 394931)
+++ PKGBUILD2018-10-17 05:10:51 UTC (rev 394932)
@@ -4,7 +4,7 @@
 _hkgname=authenticate
 pkgname=haskell-authenticate
 pkgver=1.3.4
-pkgrel=194
+pkgrel=195
 pkgdesc="Authentication methods for Haskell web applications."
 url="https://github.com/yesodweb/authenticate;
 license=("MIT")


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

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 05:10:40
  Author: felixonmars
Revision: 394931

upgpkg: python-pbr 5.0.0-1

Modified:
  python-pbr/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-17 05:10:01 UTC (rev 394930)
+++ PKGBUILD2018-10-17 05:10:40 UTC (rev 394931)
@@ -4,7 +4,7 @@
 
 pkgbase=python-pbr
 pkgname=(python-pbr python2-pbr)
-pkgver=4.3.0
+pkgver=5.0.0
 pkgrel=1
 pkgdesc="Python Build Reasonableness"
 arch=('any')
@@ -17,7 +17,7 @@
   'python-virtualenv' 'python2-virtualenv' 'python-wheel' 
'python2-wheel'
   'python-sphinx' 'python2-sphinx')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/openstack-dev/pbr/archive/$pkgver.tar.gz;)
-sha512sums=('e3a01dd910b503fd8a5e72aa4282263d2474421400c8c102d0d1a4b57c4ee1bd742469a4ed40d1022ce396672ca0dca798a2906d04b02f9de5c168bb1c4da0c5')
+sha512sums=('a85cd077aa058edccede7ce9653cb1039cae4f5eb09c01a4d1d185de3038839b105c85d738d5a56e66eb37af376e1596842b9bf4f4ff610dc66c56a07406f6ea')
 
 prepare() {
   # Fix for new wheel


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

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 05:10:01
  Author: felixonmars
Revision: 394930

archrelease: copy trunk to community-any

Added:
  python-oslo-config/repos/community-any/PKGBUILD
(from rev 394928, python-oslo-config/trunk/PKGBUILD)
Deleted:
  python-oslo-config/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-10-17 05:09:57 UTC (rev 394929)
+++ PKGBUILD2018-10-17 05:10:01 UTC (rev 394930)
@@ -1,66 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Daniel Wallace 
-
-pkgbase=python-oslo-config
-pkgname=(python-oslo-config python2-oslo-config)
-pkgver=6.6.0
-pkgrel=2
-pkgdesc="parsing command line arguments and .ini style configuration files"
-arch=('any')
-url="https://pypi.python.org/pypi/oslo.config/$pkgver;
-license=('Apache')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-netaddr' 
'python2-netaddr'
- 'python-stevedore' 'python2-stevedore' 'python-debtcollector' 
'python2-debtcollector'
- 'python-oslo-i18n' 'python2-oslo-i18n' 'python-rfc3986' 
'python2-rfc3986'
- 'python-yaml' 'python2-yaml' 'python2-enum34')
-checkdepends=('python-oslotest' 'python2-oslotest' 'python-sphinx' 
'python2-sphinx'
-  'python-testrepository' 'python2-testrepository' 
'python-requests-mock'
-  'python2-requests-mock' 'python-oslo-log' 'python2-oslo-log')
-options=('!emptydirs')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/openstack/oslo.config/archive/$pkgver.tar.gz;)
-sha512sums=('1bdb8fed7933a9a6313c5ec41d47b94f372fe8dffa558b70633b6a2a80b08812e27aa92b6ec002847ca96f5e6bba27d1a91f10471cab50268fd37c5e597bfa04')
-
-prepare() {
-  sed -i '/argparse/d' oslo.config-$pkgver/requirements.txt
-
-  cp -a oslo.config-$pkgver{,-py2}
-  find oslo.config-$pkgver-py2 -name \*.py -exec sed -i '1s/python$/&2/' {} +
-
-  export PBR_VERSION=$pkgver
-}
-
-build() {
-  cd "$srcdir"/oslo.config-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/oslo.config-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/oslo.config-$pkgver
-  python setup.py testr
-
-  cd "$srcdir"/oslo.config-$pkgver-py2
-  PYTHON=python2 python2 setup.py testr
-}
-
-package_python-oslo-config() {
-  depends=('python-six' 'python-netaddr' 'python-stevedore' 
'python-debtcollector'
-   'python-oslo-i18n' 'python-rfc3986' 'python-yaml')
-
-  cd "$srcdir"/oslo.config-$pkgver
-  python setup.py install --root="$pkgdir/" --optimize=1
-}
-
-package_python2-oslo-config() {
-  depends=('python2-six' 'python2-netaddr' 'python2-stevedore' 
'python2-debtcollector'
-   'python2-oslo-i18n' 'python2-rfc3986' 'python2-yaml' 
'python2-enum34')
-
-  cd "$srcdir"/oslo.config-$pkgver-py2
-  python2 setup.py install --root="$pkgdir/" --optimize=1
-  mv "$pkgdir"/usr/bin/oslo-config-generator{,2}
-  mv "$pkgdir"/usr/bin/oslo-config-validator{,2}
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-oslo-config/repos/community-any/PKGBUILD (from rev 394928, 
python-oslo-config/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-10-17 05:10:01 UTC (rev 394930)
@@ -0,0 +1,66 @@
+# Maintainer: Felix Yan 
+# Contributor: Daniel Wallace 
+
+pkgbase=python-oslo-config
+pkgname=(python-oslo-config python2-oslo-config)
+pkgver=6.6.1
+pkgrel=1
+pkgdesc="parsing command line arguments and .ini style configuration files"
+arch=('any')
+url="https://pypi.python.org/pypi/oslo.config/$pkgver;
+license=('Apache')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-netaddr' 
'python2-netaddr'
+ 'python-stevedore' 'python2-stevedore' 'python-debtcollector' 
'python2-debtcollector'
+ 'python-oslo-i18n' 'python2-oslo-i18n' 'python-rfc3986' 
'python2-rfc3986'
+ 'python-yaml' 'python2-yaml' 'python2-enum34')
+checkdepends=('python-oslotest' 'python2-oslotest' 'python-sphinx' 
'python2-sphinx'
+  'python-testrepository' 'python2-testrepository' 
'python-requests-mock'
+  'python2-requests-mock' 'python-oslo-log' 'python2-oslo-log')
+options=('!emptydirs')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/openstack/oslo.config/archive/$pkgver.tar.gz;)
+sha512sums=('280d9e23f5e16a8838b816b9a832936a28def00f0d36fa28df714c531ce9b22057f0b3f56bfb0760e00ad39f2579eb26e9f2998ad52c5275258e123c589ca3d8')
+
+prepare() {
+  sed -i '/argparse/d' oslo.config-$pkgver/requirements.txt
+
+  cp -a oslo.config-$pkgver{,-py2}
+  find oslo.config-$pkgver-py2 -name \*.py -exec sed -i '1s/python$/&2/' {} +
+
+  export PBR_VERSION=$pkgver
+}
+
+build() {
+  cd "$srcdir"/oslo.config-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/oslo.config-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd 

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

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 05:09:57
  Author: felixonmars
Revision: 394929

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-tagstream-conduit/repos/community-staging-x86_64/PKGBUILD (from 
rev 394928, haskell-tagstream-conduit/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-10-17 05:09:57 UTC (rev 394929)
@@ -0,0 +1,40 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=tagstream-conduit
+pkgname=haskell-tagstream-conduit
+pkgver=0.5.5.3
+pkgrel=217
+pkgdesc="Streamlined html tag parser"
+url="https://github.com/yihuang/tagstream-conduit;
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-attoparsec" "haskell-blaze-builder" 
"haskell-case-insensitive"
+ "haskell-conduit" "haskell-conduit-extra" "haskell-data-default" 
"haskell-resourcet"
+ "haskell-xml-conduit")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('84625975df6c6c315011ebfd63d551b22c00927fa9add390d9e723bc104d4a7881743aaf6bceae0ff42efc6056a314baddb594fd5e39333ea7ff6cbcf154')
+
+build() {
+cd "${srcdir}/${_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
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 05:09:44
  Author: felixonmars
Revision: 394928

upgpkg: python-oslo-config 6.6.1-1

Modified:
  python-oslo-config/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-17 05:09:39 UTC (rev 394927)
+++ PKGBUILD2018-10-17 05:09:44 UTC (rev 394928)
@@ -3,8 +3,8 @@
 
 pkgbase=python-oslo-config
 pkgname=(python-oslo-config python2-oslo-config)
-pkgver=6.6.0
-pkgrel=2
+pkgver=6.6.1
+pkgrel=1
 pkgdesc="parsing command line arguments and .ini style configuration files"
 arch=('any')
 url="https://pypi.python.org/pypi/oslo.config/$pkgver;
@@ -18,7 +18,7 @@
   'python2-requests-mock' 'python-oslo-log' 'python2-oslo-log')
 options=('!emptydirs')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/openstack/oslo.config/archive/$pkgver.tar.gz;)
-sha512sums=('1bdb8fed7933a9a6313c5ec41d47b94f372fe8dffa558b70633b6a2a80b08812e27aa92b6ec002847ca96f5e6bba27d1a91f10471cab50268fd37c5e597bfa04')
+sha512sums=('280d9e23f5e16a8838b816b9a832936a28def00f0d36fa28df714c531ce9b22057f0b3f56bfb0760e00ad39f2579eb26e9f2998ad52c5275258e123c589ca3d8')
 
 prepare() {
   sed -i '/argparse/d' oslo.config-$pkgver/requirements.txt


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

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 05:09:32
  Author: felixonmars
Revision: 394926

archrelease: copy trunk to community-x86_64

Added:
  python-ruamel-yaml/repos/community-x86_64/PKGBUILD
(from rev 394925, python-ruamel-yaml/trunk/PKGBUILD)
Deleted:
  python-ruamel-yaml/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-10-17 05:08:56 UTC (rev 394925)
+++ PKGBUILD2018-10-17 05:09:32 UTC (rev 394926)
@@ -1,22 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Samuel Littley 
-# Contributor: rnons 
-
-pkgname=python-ruamel-yaml
-pkgver=0.15.72
-pkgrel=1
-pkgdesc="YAML parser/emitter that supports roundtrip preservation of comments, 
seq/map flow style, and map key order"
-arch=('x86_64')
-url="https://bitbucket.org/ruamel/yaml;
-license=("MIT")
-makedepends=('python-pip' 'python-wheel')
-source=("https://pypi.io/packages/source/r/ruamel.yaml/ruamel.yaml-$pkgver.tar.gz;)
-sha512sums=('d5bb6f07ac319da8fd5bd20b5967c256717604e3bc5bf73e660c287dc15eed74169ec20dfee67ef73ee2a32a7f839ec19e7cab30d666bf171475eb32ecba5ea8')
-
-package() {
-  depends=('python')
-
-  cd ruamel.yaml-$pkgver
-  LC_CTYPE=en_US.UTF-8 pip install . --root="$pkgdir"
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-ruamel-yaml/repos/community-x86_64/PKGBUILD (from rev 394925, 
python-ruamel-yaml/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-10-17 05:09:32 UTC (rev 394926)
@@ -0,0 +1,22 @@
+# Maintainer: Felix Yan 
+# Contributor: Samuel Littley 
+# Contributor: rnons 
+
+pkgname=python-ruamel-yaml
+pkgver=0.15.73
+pkgrel=1
+pkgdesc="YAML parser/emitter that supports roundtrip preservation of comments, 
seq/map flow style, and map key order"
+arch=('x86_64')
+url="https://bitbucket.org/ruamel/yaml;
+license=("MIT")
+makedepends=('python-pip' 'python-wheel')
+source=("https://pypi.io/packages/source/r/ruamel.yaml/ruamel.yaml-$pkgver.tar.gz;)
+sha512sums=('12ad8433ff1e76733a5d31313a3e4acc2a8844c175161187c44cbde0756e82152d602f9cee7a4b2d5de552fa86c2c24abc82a52798e44e3be1786dabbb1b1a96')
+
+package() {
+  depends=('python')
+
+  cd ruamel.yaml-$pkgver
+  LC_CTYPE=en_US.UTF-8 pip install . --root="$pkgdir"
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 05:09:39
  Author: felixonmars
Revision: 394927

upgpkg: haskell-tagstream-conduit 0.5.5.3-217

rebuild with ghc 8.6.1

Modified:
  haskell-tagstream-conduit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-17 05:09:32 UTC (rev 394926)
+++ PKGBUILD2018-10-17 05:09:39 UTC (rev 394927)
@@ -4,7 +4,7 @@
 _hkgname=tagstream-conduit
 pkgname=haskell-tagstream-conduit
 pkgver=0.5.5.3
-pkgrel=216
+pkgrel=217
 pkgdesc="Streamlined html tag parser"
 url="https://github.com/yihuang/tagstream-conduit;
 license=("custom:BSD3")


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

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 05:08:56
  Author: felixonmars
Revision: 394925

upgpkg: python-ruamel-yaml 0.15.73-1

Modified:
  python-ruamel-yaml/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-17 05:08:51 UTC (rev 394924)
+++ PKGBUILD2018-10-17 05:08:56 UTC (rev 394925)
@@ -3,7 +3,7 @@
 # Contributor: rnons 
 
 pkgname=python-ruamel-yaml
-pkgver=0.15.72
+pkgver=0.15.73
 pkgrel=1
 pkgdesc="YAML parser/emitter that supports roundtrip preservation of comments, 
seq/map flow style, and map key order"
 arch=('x86_64')
@@ -11,7 +11,7 @@
 license=("MIT")
 makedepends=('python-pip' 'python-wheel')
 
source=("https://pypi.io/packages/source/r/ruamel.yaml/ruamel.yaml-$pkgver.tar.gz;)
-sha512sums=('d5bb6f07ac319da8fd5bd20b5967c256717604e3bc5bf73e660c287dc15eed74169ec20dfee67ef73ee2a32a7f839ec19e7cab30d666bf171475eb32ecba5ea8')
+sha512sums=('12ad8433ff1e76733a5d31313a3e4acc2a8844c175161187c44cbde0756e82152d602f9cee7a4b2d5de552fa86c2c24abc82a52798e44e3be1786dabbb1b1a96')
 
 package() {
   depends=('python')


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

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 05:08:51
  Author: felixonmars
Revision: 394924

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-html-conduit/repos/community-staging-x86_64/PKGBUILD (from rev 
394923, haskell-html-conduit/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-10-17 05:08:51 UTC (rev 394924)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+
+_hkgname=html-conduit
+pkgname=haskell-html-conduit
+pkgver=1.3.1
+pkgrel=51
+pkgdesc="Parse HTML documents using xml-conduit datatypes"
+url="https://github.com/snoyberg/xml;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-resourcet' 'haskell-conduit' 'haskell-xml-conduit'
+ 'haskell-attoparsec' 'haskell-conduit-extra' 'haskell-xml-types')
+makedepends=('ghc' 'haskell-hspec' 'haskell-hunit')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('2f6e77f7894459f724ffd1357545eedafcd820160de7bff71f775cc38189ddd78df735c0349ac0ebbf22def2f915e62df795ef32ea1652dc72cd0fa811d76dbf')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd "${srcdir}/${_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-html-conduit/trunk (PKGBUILD)

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 05:08:35
  Author: felixonmars
Revision: 394923

upgpkg: haskell-html-conduit 1.3.1-51

rebuild with ghc 8.6.1

Modified:
  haskell-html-conduit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-17 05:07:51 UTC (rev 394922)
+++ PKGBUILD2018-10-17 05:08:35 UTC (rev 394923)
@@ -3,7 +3,7 @@
 _hkgname=html-conduit
 pkgname=haskell-html-conduit
 pkgver=1.3.1
-pkgrel=50
+pkgrel=51
 pkgdesc="Parse HTML documents using xml-conduit datatypes"
 url="https://github.com/snoyberg/xml;
 license=('MIT')


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

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 05:07:51
  Author: felixonmars
Revision: 394922

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-feed/repos/community-staging-x86_64/PKGBUILD (from rev 394921, 
haskell-feed/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-10-17 05:07:51 UTC (rev 394922)
@@ -0,0 +1,46 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=feed
+pkgname=haskell-feed
+pkgver=1.0.0.0
+pkgrel=123
+pkgdesc="Interfacing with RSS (v 0.9x, 2.x, 1.0) + Atom feeds."
+url="https://github.com/bergmark/feed;
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-base-compat' 'haskell-old-locale' 
'haskell-old-time' 'haskell-safe'
+ 'haskell-time-locale-compat' 'haskell-utf8-string' 'haskell-xml-types'
+ 'haskell-xml-conduit')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('dfda1387e2af46fa703634ae3988c243c59bf0c00eefe5ed193c51d5c18131221fa20cfb83404e7c227a2962e4d621186579f7c2d9353d19c01d9277de13ae4d')
+
+prepare() {
+sed -e 's/, xml-conduit >= 1.3 && < 1.6/, xml-conduit >= 1.3/' \
+-e 's/<.*4.11/<5/' -e 's/==.*0.9./==0.10./' \
+-i $_hkgname-$pkgver/$_hkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${_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
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_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-feed/trunk (PKGBUILD)

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 05:07:37
  Author: felixonmars
Revision: 394921

upgpkg: haskell-feed 1.0.0.0-123

rebuild with ghc 8.6.1

Modified:
  haskell-feed/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-17 05:06:43 UTC (rev 394920)
+++ PKGBUILD2018-10-17 05:07:37 UTC (rev 394921)
@@ -4,7 +4,7 @@
 _hkgname=feed
 pkgname=haskell-feed
 pkgver=1.0.0.0
-pkgrel=122
+pkgrel=123
 pkgdesc="Interfacing with RSS (v 0.9x, 2.x, 1.0) + Atom feeds."
 url="https://github.com/bergmark/feed;
 license=("custom:BSD3")


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

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 05:06:43
  Author: felixonmars
Revision: 394920

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-aws/repos/community-staging-x86_64/PKGBUILD (from rev 394919, 
haskell-aws/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-10-17 05:06:43 UTC (rev 394920)
@@ -0,0 +1,53 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=aws
+pkgname=haskell-aws
+pkgver=0.20
+pkgrel=103
+pkgdesc="Amazon Web Services (AWS) for Haskell"
+url="https://github.com/aristidb/aws;
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-attoparsec' 
'haskell-base16-bytestring'
+ 'haskell-base64-bytestring' 'haskell-blaze-builder' 'haskell-byteable'
+ 'haskell-case-insensitive' 'haskell-cereal' 'haskell-conduit' 
'haskell-conduit-extra'
+ 'haskell-cryptonite' 'haskell-data-default' 'haskell-exceptions' 
'haskell-http-conduit'
+ 'haskell-http-types' 'haskell-lifted-base' 'haskell-memory' 
'haskell-monad-control'
+ 'haskell-network' 'haskell-old-locale' 'haskell-resourcet' 
'haskell-safe'
+ 'haskell-scientific' 'haskell-tagged' 'haskell-unordered-containers'
+ 'haskell-utf8-string' 'haskell-vector' 'haskell-xml-conduit')
+makedepends=('ghc' 'haskell-quickcheck' 'haskell-errors' 'haskell-http-client'
+ 'haskell-http-client-tls' 'haskell-quickcheck-instances' 
'haskell-tasty'
+ 'haskell-tasty-hunit' 'haskell-tasty-quickcheck' 
'haskell-transformers-base')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('b6c9b78c1918fc01057ac3c9f57c98d0d796a228b2efce7f4b8763e6ba86fdad0e29637359a1f2f830adb19cdaade20c4eb08bbe9259bbc79da718771ac5f821')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-examples
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test || warning "Requires AWS credentials to test"
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 05:06:30
  Author: felixonmars
Revision: 394919

upgpkg: haskell-aws 0.20-103

rebuild with ghc 8.6.1

Modified:
  haskell-aws/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-17 05:04:15 UTC (rev 394918)
+++ PKGBUILD2018-10-17 05:06:30 UTC (rev 394919)
@@ -4,7 +4,7 @@
 _hkgname=aws
 pkgname=haskell-aws
 pkgver=0.20
-pkgrel=102
+pkgrel=103
 pkgdesc="Amazon Web Services (AWS) for Haskell"
 url="https://github.com/aristidb/aws;
 license=("custom:BSD3")


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

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 05:04:15
  Author: felixonmars
Revision: 394918

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-xml-conduit/repos/community-staging-x86_64/PKGBUILD (from rev 
394917, haskell-xml-conduit/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-10-17 05:04:15 UTC (rev 394918)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=xml-conduit
+pkgname=haskell-xml-conduit
+pkgver=1.8.0.1
+pkgrel=13
+pkgdesc="Pure-Haskell utilities for dealing with XML with the conduit package."
+url="https://github.com/snoyberg/xml;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-attoparsec' 'haskell-blaze-markup' 
'haskell-conduit'
+ 'haskell-conduit-extra' 'haskell-data-default-class'
+ 'haskell-resourcet' 'haskell-blaze-html' 'haskell-xml-types')
+makedepends=('ghc' 'haskell-doctest' 'haskell-hspec' 'haskell-hunit')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('9b83ca0be187deea99d9434ac28b70c955796f3cce9ffefc7db2d05c94231f23e4e9c0453675fd3d9496493bbd5f83dcccdba0319e7f1a77e131a20a671a754d')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 05:04:01
  Author: felixonmars
Revision: 394917

upgpkg: haskell-xml-conduit 1.8.0.1-13

rebuild with ghc 8.6.1

Modified:
  haskell-xml-conduit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-17 05:02:54 UTC (rev 394916)
+++ PKGBUILD2018-10-17 05:04:01 UTC (rev 394917)
@@ -4,7 +4,7 @@
 _hkgname=xml-conduit
 pkgname=haskell-xml-conduit
 pkgver=1.8.0.1
-pkgrel=12
+pkgrel=13
 pkgdesc="Pure-Haskell utilities for dealing with XML with the conduit package."
 url="https://github.com/snoyberg/xml;
 license=("MIT")


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

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 05:02:54
  Author: felixonmars
Revision: 394916

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-wai-websockets/repos/community-staging-x86_64/
  haskell-wai-websockets/repos/community-staging-x86_64/PKGBUILD
(from rev 394915, haskell-wai-websockets/trunk/PKGBUILD)

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

Copied: haskell-wai-websockets/repos/community-staging-x86_64/PKGBUILD (from 
rev 394915, haskell-wai-websockets/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-10-17 05:02:54 UTC (rev 394916)
@@ -0,0 +1,40 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=wai-websockets
+pkgname=haskell-wai-websockets
+pkgver=3.0.1.2
+pkgrel=52
+pkgdesc="Provide a bridge between WAI and the websockets package."
+url="https://github.com/yesodweb/wai;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-case-insensitive' 'haskell-http-types' 
'haskell-network' 'haskell-wai'
+ 'haskell-websockets')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('c3415d1a36ca2f063fb1ae0ff7d3d9d271d8ff2c6099a754baed45f1c36f24cf1fa346e8e6403499cbeb329bcdf89326a9ed95f8e60111b4a879f5e51967ecc0')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-example
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_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-websockets/repos (2 files)

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 05:02:07
  Author: felixonmars
Revision: 394914

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-websockets/repos/community-staging-x86_64/PKGBUILD (from rev 
394913, haskell-websockets/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-10-17 05:02:07 UTC (rev 394914)
@@ -0,0 +1,53 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=websockets
+pkgname=haskell-websockets
+pkgver=0.12.5.2
+pkgrel=5
+pkgdesc="A sensible and clean way to write WebSocket-capable servers in 
Haskell."
+url="https://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-attoparsec' 'haskell-base64-bytestring' 
'haskell-case-insensitive'
+ 'haskell-entropy' 'haskell-network' 'haskell-random' 'haskell-sha'
+ 'haskell-streaming-commons')
+makedepends=('ghc' '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=('895fab7f59f30525a4be4784de7101eaf12475c73a7cceecb8528d3da9cf01f5b85654cf69b037ec56a63050bb807464ae71b36f7233e4c07645f16fea0cb6d3')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i '/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 \
+-f-Example
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+# Tests hang: https://github.com/jaspervdj/websockets/issues/180
+# 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-websockets/trunk (PKGBUILD)

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 05:01:53
  Author: felixonmars
Revision: 394913

upgpkg: haskell-websockets 0.12.5.2-5

rebuild with ghc 8.6.1

Modified:
  haskell-websockets/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-17 05:01:04 UTC (rev 394912)
+++ PKGBUILD2018-10-17 05:01:53 UTC (rev 394913)
@@ -4,7 +4,7 @@
 _hkgname=websockets
 pkgname=haskell-websockets
 pkgver=0.12.5.2
-pkgrel=4
+pkgrel=5
 pkgdesc="A sensible and clean way to write WebSocket-capable servers in 
Haskell."
 url="https://hackage.haskell.org/package/${_hkgname};
 license=("custom:BSD3")


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

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 05:02:40
  Author: felixonmars
Revision: 394915

upgpkg: haskell-wai-websockets 3.0.1.2-52

rebuild with ghc 8.6.1

Modified:
  haskell-wai-websockets/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-17 05:02:07 UTC (rev 394914)
+++ PKGBUILD2018-10-17 05:02:40 UTC (rev 394915)
@@ -4,7 +4,7 @@
 _hkgname=wai-websockets
 pkgname=haskell-wai-websockets
 pkgver=3.0.1.2
-pkgrel=51
+pkgrel=52
 pkgdesc="Provide a bridge between WAI and the websockets package."
 url="https://github.com/yesodweb/wai;
 license=("MIT")


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

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 05:01:04
  Author: felixonmars
Revision: 394912

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-http-conduit/repos/community-staging-x86_64/PKGBUILD (from rev 
394911, haskell-http-conduit/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-10-17 05:01:04 UTC (rev 394912)
@@ -0,0 +1,48 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http-conduit
+pkgname=haskell-http-conduit
+pkgver=2.3.2
+pkgrel=67
+pkgdesc="HTTP client package with conduit interface and HTTPS support"
+url="http://www.yesodweb.com/book/http-conduit;
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-conduit' 'haskell-conduit-extra' 
'haskell-http-client'
+ 'haskell-http-client-tls' 'haskell-http-types' 'haskell-resourcet' 
'haskell-unliftio-core')
+makedepends=('ghc' 'haskell-blaze-builder' 'haskell-case-insensitive' 
'haskell-connection'
+ 'haskell-cookie' 'haskell-data-default-class' 'haskell-hunit' 
'haskell-hspec'
+ 'haskell-lifted-base' 'haskell-network' 
'haskell-streaming-commons' 'haskell-temporary'
+ 'haskell-unliftio' 'haskell-utf8-string' 'haskell-wai' 
'haskell-wai-conduit'
+ 'haskell-warp' 'haskell-warp-tls')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('5c62f8f43c27645ad8b938ab9cfc6654f1c191dabe38f547a9dfd0b82964de514e8f89fc14a94319aa6bd6d6f223f6aa81001ee1c519c141acb9516b505bf03b')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 05:00:50
  Author: felixonmars
Revision: 394911

upgpkg: haskell-http-conduit 2.3.2-67

rebuild with ghc 8.6.1

Modified:
  haskell-http-conduit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-17 04:59:52 UTC (rev 394910)
+++ PKGBUILD2018-10-17 05:00:50 UTC (rev 394911)
@@ -4,7 +4,7 @@
 _hkgname=http-conduit
 pkgname=haskell-http-conduit
 pkgver=2.3.2
-pkgrel=66
+pkgrel=67
 pkgdesc="HTTP client package with conduit interface and HTTPS support"
 url="http://www.yesodweb.com/book/http-conduit;
 license=("custom:BSD3")


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

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 04:59:52
  Author: felixonmars
Revision: 394910

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-warp-tls/repos/community-staging-x86_64/PKGBUILD (from rev 
394909, haskell-warp-tls/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-10-17 04:59:52 UTC (rev 394910)
@@ -0,0 +1,40 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=warp-tls
+pkgname=haskell-warp-tls
+pkgver=3.2.4.3
+pkgrel=102
+pkgdesc="HTTP over TLS support for Warp via the TLS package"
+url="https://github.com/yesodweb/wai;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-cryptonite" "haskell-data-default-class" 
"haskell-network"
+ "haskell-streaming-commons" "haskell-tls" 
"haskell-tls-session-manager" "haskell-wai"
+ "haskell-warp")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('bed1a501d7885b1a37768b59d73916c36aa554e71ad89608a11224f7c4b7e016cd65652f6bb0da153bcdc3e4a089f03850546b02ed5ace808e8a8a8fc74b4028')
+
+build() {
+cd "${srcdir}/${_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
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 04:59:38
  Author: felixonmars
Revision: 394909

upgpkg: haskell-warp-tls 3.2.4.3-102

rebuild with ghc 8.6.1

Modified:
  haskell-warp-tls/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-17 04:59:02 UTC (rev 394908)
+++ PKGBUILD2018-10-17 04:59:38 UTC (rev 394909)
@@ -4,7 +4,7 @@
 _hkgname=warp-tls
 pkgname=haskell-warp-tls
 pkgver=3.2.4.3
-pkgrel=101
+pkgrel=102
 pkgdesc="HTTP over TLS support for Warp via the TLS package"
 url="https://github.com/yesodweb/wai;
 license=("MIT")


[arch-commits] Commit in haskell-wai-handler-launch/repos (2 files)

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 04:59:02
  Author: felixonmars
Revision: 394908

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-wai-handler-launch/repos/community-staging-x86_64/
  haskell-wai-handler-launch/repos/community-staging-x86_64/PKGBUILD
(from rev 394907, haskell-wai-handler-launch/trunk/PKGBUILD)

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

Copied: haskell-wai-handler-launch/repos/community-staging-x86_64/PKGBUILD 
(from rev 394907, haskell-wai-handler-launch/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-10-17 04:59:02 UTC (rev 394908)
@@ -0,0 +1,39 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=wai-handler-launch
+pkgname=haskell-wai-handler-launch
+pkgver=3.0.2.4
+pkgrel=86
+pkgdesc="Launch a web app in the default browser."
+url="https://github.com/yesodweb/wai;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-wai' 'haskell-warp' 'haskell-http-types' 
'haskell-streaming-commons'
+ 'haskell-async')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('77a8047201687a56d19c70f70e4fcac9c81c2a4f0ec9bbccad8730de5d74582f52c79c62feb73ebcb4c870435cb1393c2d5fba90c9c952eff8ff3a675eab73fb')
+
+build() {
+cd "${srcdir}/${_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
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_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-wai-handler-launch/trunk (PKGBUILD)

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 04:58:45
  Author: felixonmars
Revision: 394907

upgpkg: haskell-wai-handler-launch 3.0.2.4-86

rebuild with ghc 8.6.1

Modified:
  haskell-wai-handler-launch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-17 04:57:50 UTC (rev 394906)
+++ PKGBUILD2018-10-17 04:58:45 UTC (rev 394907)
@@ -4,7 +4,7 @@
 _hkgname=wai-handler-launch
 pkgname=haskell-wai-handler-launch
 pkgver=3.0.2.4
-pkgrel=85
+pkgrel=86
 pkgdesc="Launch a web app in the default browser."
 url="https://github.com/yesodweb/wai;
 license=("MIT")


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

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 04:57:15
  Author: felixonmars
Revision: 394904

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-shake/repos/community-staging-x86_64/PKGBUILD (from rev 394903, 
haskell-shake/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-10-17 04:57:15 UTC (rev 394904)
@@ -0,0 +1,56 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=shake
+pkgname=haskell-shake
+pkgver=0.17
+pkgrel=1
+pkgdesc="Build system library, like Make, but more accurate dependencies."
+url="http://shakebuild.com;
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-extra' 'haskell-hashable' 'haskell-heaps' 
'haskell-js-flot'
+ 'haskell-js-jquery' 'haskell-primitive' 'haskell-random' 
'haskell-unordered-containers'
+ 'haskell-utf8-string')
+makedepends=('ghc' 'haskell-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('b945be917dd25120b51e45afa91d6b0f2bda1f6371cf6dc7b475c05cbe733b2b91e2acc4aa9785dbb821f0811632189ad940726b56be542f74b19db637e919a3')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i 's/ghc --make/ghc -dynamic --make/' src/Test/Command.hs
+sed -e 's/runhaskell Setup.hs configure/runhaskell Setup.hs configure 
--enable-executable-dynamic --disable-library-vanilla/' \
+-e 's/ghc -fno-code/ghc -dynamic -fno-code/' \
+-i src/Test/Docs.hs
+sed -i 's/cmd "ghc" flags/cmd "ghc" "-dynamic" flags/' src/Test/Self.hs 
src/Test/SelfMake.hs
+sed -i 's/ghc --make/ghc -dynamic --make/' docs/manual/build.sh
+}
+
+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-portable -f-cloud
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 04:57:50
  Author: felixonmars
Revision: 394906

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-servant-server/repos/community-staging-x86_64/
  haskell-servant-server/repos/community-staging-x86_64/PKGBUILD
(from rev 394905, haskell-servant-server/trunk/PKGBUILD)

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

Copied: haskell-servant-server/repos/community-staging-x86_64/PKGBUILD (from 
rev 394905, haskell-servant-server/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-10-17 04:57:50 UTC (rev 394906)
@@ -0,0 +1,56 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=servant-server
+pkgname=haskell-servant-server
+pkgver=0.13.0.1
+pkgrel=110
+pkgdesc="A family of combinators for defining webservices APIs and serving 
them"
+url="http://haskell-servant.readthedocs.org/;
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-base-compat' 'haskell-aeson' 'haskell-attoparsec'
+ 'haskell-base64-bytestring' 'haskell-exceptions' 
'haskell-http-api-data'
+ 'haskell-http-media' 'haskell-http-types' 'haskell-network-uri' 
'haskell-monad-control'
+ 'haskell-network' 'haskell-safe' 'haskell-servant' 'haskell-split'
+ 'haskell-string-conversions' 'haskell-system-filepath' 
'haskell-resourcet' 'haskell-tagged'
+ 'haskell-transformers-base' 'haskell-transformers-compat' 
'haskell-wai'
+ 'haskell-wai-app-static' 'haskell-warp' 'haskell-word8')
+makedepends=('ghc' 'haskell-cabal-doctest' 'haskell-doctest' 'haskell-hspec' 
'haskell-hspec-wai'
+ 'haskell-should-not-typecheck' 'haskell-quickcheck' 
'haskell-wai-extra'
+ 'haskell-temporary')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('45e6b8eb9b60efc1bfe046d3e7c93eac4a7c8f9a9f199dd13bcde16a4ba11ad63e3a31c05f056ed1e8266e45307f37982ab9723bb2721978881312521f264d1d')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i -e 's/<.*2.7/<3/' -e 's/<.*0.16/<1/' -e 's/<.*1.4/<2/' -e 's/< 
*4.12/<5/' -e 's/< *0.6/<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
+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-servant-server/trunk (PKGBUILD)

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 04:57:37
  Author: felixonmars
Revision: 394905

upgpkg: haskell-servant-server 0.13.0.1-110

Modified:
  haskell-servant-server/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-17 04:57:15 UTC (rev 394904)
+++ PKGBUILD2018-10-17 04:57:37 UTC (rev 394905)
@@ -4,7 +4,7 @@
 _hkgname=servant-server
 pkgname=haskell-servant-server
 pkgver=0.13.0.1
-pkgrel=109
+pkgrel=110
 pkgdesc="A family of combinators for defining webservices APIs and serving 
them"
 url="http://haskell-servant.readthedocs.org/;
 license=("custom:BSD3")
@@ -24,7 +24,7 @@
 
 prepare() {
 cd $_hkgname-$pkgver
-sed -i -e 's/<.*2.7/<3/' -e 's/<.*0.16/<1/' -e 's/<.*1.4/<2/' 
$_hkgname.cabal
+sed -i -e 's/<.*2.7/<3/' -e 's/<.*0.16/<1/' -e 's/<.*1.4/<2/' -e 's/< 
*4.12/<5/' -e 's/< *0.6/<1/' $_hkgname.cabal
 }
 
 build() {


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

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 04:56:57
  Author: felixonmars
Revision: 394903

upgpkg: haskell-shake 0.17-1

Modified:
  haskell-shake/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-17 04:56:49 UTC (rev 394902)
+++ PKGBUILD2018-10-17 04:56:57 UTC (rev 394903)
@@ -3,17 +3,18 @@
 
 _hkgname=shake
 pkgname=haskell-shake
-pkgver=0.16.4
-pkgrel=108
+pkgver=0.17
+pkgrel=1
 pkgdesc="Build system library, like Make, but more accurate dependencies."
 url="http://shakebuild.com;
 license=("custom:BSD3")
 arch=('x86_64')
-depends=('ghc-libs' 'haskell-extra' 'haskell-hashable' 'haskell-js-flot' 
'haskell-js-jquery'
- 'haskell-primitive' 'haskell-random' 'haskell-unordered-containers' 
'haskell-utf8-string')
+depends=('ghc-libs' 'haskell-extra' 'haskell-hashable' 'haskell-heaps' 
'haskell-js-flot'
+ 'haskell-js-jquery' 'haskell-primitive' 'haskell-random' 
'haskell-unordered-containers'
+ 'haskell-utf8-string')
 makedepends=('ghc' 'haskell-quickcheck')
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha512sums=('4a517a3730836d5e31c700e455f738d7798460525efdb25499b52fd579dfaaad9d3758fa924b720e1a6c803419eeefdbcc52cec5d60cb5917ae6334454935246')
+sha512sums=('b945be917dd25120b51e45afa91d6b0f2bda1f6371cf6dc7b475c05cbe733b2b91e2acc4aa9785dbb821f0811632189ad940726b56be542f74b19db637e919a3')
 
 prepare() {
 cd $_hkgname-$pkgver
@@ -21,7 +22,7 @@
 sed -e 's/runhaskell Setup.hs configure/runhaskell Setup.hs configure 
--enable-executable-dynamic --disable-library-vanilla/' \
 -e 's/ghc -fno-code/ghc -dynamic -fno-code/' \
 -i src/Test/Docs.hs
-sed -i 's/cmd "ghc" flags/cmd "ghc" "-dynamic" flags/' src/Test/Self.hs
+sed -i 's/cmd "ghc" flags/cmd "ghc" "-dynamic" flags/' src/Test/Self.hs 
src/Test/SelfMake.hs
 sed -i 's/ghc --make/ghc -dynamic --make/' docs/manual/build.sh
 }
 
@@ -31,7 +32,7 @@
 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-portable
+-f-portable -f-cloud
 runhaskell Setup build
 runhaskell Setup register --gen-script
 runhaskell Setup unregister --gen-script


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

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 04:56:49
  Author: felixonmars
Revision: 394902

archrelease: copy trunk to community-testing-any

Added:
  python-pytest/repos/community-testing-any/
  python-pytest/repos/community-testing-any/PKGBUILD
(from rev 394901, python-pytest/trunk/PKGBUILD)

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

Copied: python-pytest/repos/community-testing-any/PKGBUILD (from rev 394901, 
python-pytest/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2018-10-17 04:56:49 UTC (rev 394902)
@@ -0,0 +1,64 @@
+# Maintainer: Felix Yan 
+# Contributor: Felix Kaiser 
+
+pkgbase=python-pytest
+pkgname=('python-pytest' 'python2-pytest')
+pkgver=3.9.1
+pkgrel=1
+pkgdesc="Simple powerful testing with Python"
+arch=('any')
+license=('MIT')
+url="http://pytest.org/;
+makedepends=('python-setuptools-scm' 'python2-setuptools-scm' 'python-py' 
'python2-py' 'python-pluggy'
+ 'python2-pluggy' 'python-attrs' 'python2-attrs' 
'python-more-itertools'
+ 'python2-more-itertools' 'python-atomicwrites' 
'python2-atomicwrites'
+ 'python2-funcsigs' 'python2-pathlib2')
+checkdepends=('lsof' 'python-nose' 'python2-nose' 'python-mock' 'python2-mock' 
'python-tox'
+  'python2-tox' 'python-yaml' 'python2-yaml' 'python-pytest-xdist'
+  'python2-pytest-xdist' 'python-twisted' 'python2-twisted' 
'python-requests'
+  'python2-requests' 'python-hypothesis' 'python2-hypothesis')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/pytest-dev/pytest/archive/$pkgver.tar.gz;)
+sha512sums=('22c2d69795df1653f58423b48565bb2083f497828707bdf20e57cfea14941c5480baf3283159cb7fe7b5ded966d5a2fb86a9281e64d1c1815b3abc36094052f8')
+
+prepare() {
+  cp -a pytest-$pkgver{,-py2}
+
+  export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
+}
+
+build() {
+  cd "$srcdir"/pytest-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/pytest-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/pytest-$pkgver
+  PYTHONPATH="$PWD"/build/lib python src/pytest.py
+
+  cd "$srcdir"/pytest-$pkgver-py2
+  PYTHONPATH="$PWD"/build/lib python2 src/pytest.py
+}
+
+package_python-pytest() {
+  depends=('python-py' 'python-setuptools' 'python-pluggy' 'python-attrs' 
'python-more-itertools'
+   'python-atomicwrites')
+
+  cd pytest-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-pytest() {
+  depends=('python2-py' 'python2-setuptools' 'python2-pluggy' 'python2-attrs'
+   'python2-more-itertools' 'python2-atomicwrites' 'python2-funcsigs' 
'python2-pathlib2')
+
+  cd pytest-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+
+  mv "$pkgdir"/usr/bin/py.test{,2}
+  mv "$pkgdir"/usr/bin/pytest{,2}
+}


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

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 04:56:35
  Author: felixonmars
Revision: 394901

upgpkg: python-pytest 3.9.1-1

Modified:
  python-pytest/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-17 04:52:22 UTC (rev 394900)
+++ PKGBUILD2018-10-17 04:56:35 UTC (rev 394901)
@@ -3,7 +3,7 @@
 
 pkgbase=python-pytest
 pkgname=('python-pytest' 'python2-pytest')
-pkgver=3.8.2
+pkgver=3.9.1
 pkgrel=1
 pkgdesc="Simple powerful testing with Python"
 arch=('any')
@@ -18,7 +18,7 @@
   'python2-pytest-xdist' 'python-twisted' 'python2-twisted' 
'python-requests'
   'python2-requests' 'python-hypothesis' 'python2-hypothesis')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/pytest-dev/pytest/archive/$pkgver.tar.gz;)
-sha512sums=('2a05fa9a2ff90b2add49d145038e143db0681378f8972bd6cb47b97a9bc30f38caa01ed2ac33cbcd0038a07b7978ecc09461b7e89534bc9726f2658307fd30f9')
+sha512sums=('22c2d69795df1653f58423b48565bb2083f497828707bdf20e57cfea14941c5480baf3283159cb7fe7b5ded966d5a2fb86a9281e64d1c1815b3abc36094052f8')
 
 prepare() {
   cp -a pytest-$pkgver{,-py2}


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

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 04:53:38
  Author: felixonmars
Revision: 336782

archrelease: copy trunk to testing-any

Added:
  python-urllib3/repos/testing-any/
  python-urllib3/repos/testing-any/LICENSE
(from rev 336781, python-urllib3/trunk/LICENSE)
  python-urllib3/repos/testing-any/PKGBUILD
(from rev 336781, python-urllib3/trunk/PKGBUILD)

--+
 LICENSE  |   32 ++
 PKGBUILD |   74 +
 2 files changed, 106 insertions(+)

Copied: python-urllib3/repos/testing-any/LICENSE (from rev 336781, 
python-urllib3/trunk/LICENSE)
===
--- testing-any/LICENSE (rev 0)
+++ testing-any/LICENSE 2018-10-17 04:53:38 UTC (rev 336782)
@@ -0,0 +1,32 @@
+Note from the ArchLinux Packager:
+The urllib3 source doesn't come with a license file.  Its homepage
+does provide a link to the text of the MIT license, so I copied
+the following text to a file when building the package.
+
+--CUT--
+Open Source Initiative OSI - The MIT License:Licensing
+
+
+[OSI Approved License]
+
+The MIT License
+
+Copyright (c)  
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.

Copied: python-urllib3/repos/testing-any/PKGBUILD (from rev 336781, 
python-urllib3/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2018-10-17 04:53:38 UTC (rev 336782)
@@ -0,0 +1,74 @@
+# Maintainer: Felix Yan 
+# Contributor: Patrice Peterson 
+# Contributor: Chris Brannon 
+# Contributor: BorgHunter 
+
+pkgbase=python-urllib3
+pkgname=(python-urllib3 python2-urllib3 python-urllib3-doc)
+pkgver=1.24
+pkgrel=1
+pkgdesc="HTTP library with thread-safe connection pooling and file post 
support"
+arch=("any")
+url="https://github.com/shazow/urllib3;
+license=("MIT")
+makedepends=('python-setuptools' 'python2-setuptools' 'python2-sphinx' 
'python-ndg-httpsclient'
+ 'python2-ndg-httpsclient' 'python-pyasn1' 'python2-pyasn1' 
'python-pyopenssl'
+ 'python2-pyopenssl' 'python-pysocks' 'python2-pysocks' 
'python-mock' 'python2-mock')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'python-tornado' 
'python2-tornado'
+  'python-nose' 'python2-nose' 'python-psutil' 'python2-psutil'
+  'python-gcp-devrel-py-tools' 'python2-gcp-devrel-py-tools')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/shazow/urllib3/archive/$pkgver.tar.gz;)
+sha512sums=('43fce3898c38fa1971f13d31f267b9fa22e7f142d80ca437e5443e61f3aed8e252f682573497743fd1bafabaae57383b5333fc2031484620a69eff068f239a58')
+
+prepare() {
+  cp -a urllib3-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/urllib3-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/urllib3-$pkgver-py2
+  python2 setup.py build
+
+  # Build with Python 2 since autodoc produces errors on Python 3
+  cd "$srcdir"/urllib3-$pkgver/docs
+  make SPHINXBUILD=sphinx-build2 html
+}
+
+check() {
+  # Tests do not support Tornado 5
+
+  cd "$srcdir"/urllib3-$pkgver
+  python setup.py pytest || warning "Tests failed"
+
+  cd "$srcdir"/urllib3-$pkgver-py2
+  python2 setup.py pytest || warning "Tests failed"
+}
+
+package_python-urllib3() {
+  depends=('python')
+  optdepends=('python-pysocks: SOCKS support')
+
+  cd urllib3-$pkgver
+  python setup.py install --root="$pkgdir"
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
+}
+
+package_python2-urllib3() {
+  depends=('python2')
+  optdepends=('python2-pysocks: SOCKS support')
+
+  cd urllib3-$pkgver-py2
+  python2 setup.py install --root="$pkgdir"
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
+}
+
+package_python-urllib3-doc() {
+  pkgdesc="urllib3 Documentation"
+
+  cd urllib3-$pkgver/docs
+  install -d "$pkgdir"/usr/share/doc
+  cp -r _build/html "$pkgdir"/usr/share/doc/python-urllib3
+  

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

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 04:53:24
  Author: felixonmars
Revision: 336781

upgpkg: python-urllib3 1.24-1

Modified:
  python-urllib3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-17 04:48:46 UTC (rev 336780)
+++ PKGBUILD2018-10-17 04:53:24 UTC (rev 336781)
@@ -5,8 +5,8 @@
 
 pkgbase=python-urllib3
 pkgname=(python-urllib3 python2-urllib3 python-urllib3-doc)
-pkgver=1.23
-pkgrel=2
+pkgver=1.24
+pkgrel=1
 pkgdesc="HTTP library with thread-safe connection pooling and file post 
support"
 arch=("any")
 url="https://github.com/shazow/urllib3;
@@ -18,7 +18,7 @@
   'python-nose' 'python2-nose' 'python-psutil' 'python2-psutil'
   'python-gcp-devrel-py-tools' 'python2-gcp-devrel-py-tools')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/shazow/urllib3/archive/$pkgver.tar.gz;)
-sha512sums=('1d9eccdd2f939a1029fb6e49c45409b3a493f38b5880bba45a6e8a8088c0478190807b1fe7341b22abe363809ef41c5367de831de9618bcc62f34cb9f0cbc7af')
+sha512sums=('43fce3898c38fa1971f13d31f267b9fa22e7f142d80ca437e5443e61f3aed8e252f682573497743fd1bafabaae57383b5333fc2031484620a69eff068f239a58')
 
 prepare() {
   cp -a urllib3-$pkgver{,-py2}


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

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 04:52:07
  Author: felixonmars
Revision: 394899

upgpkg: haskell-hjsonschema 1.9.0-110

rebuild with ghc 8.6.1

Modified:
  haskell-hjsonschema/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-17 04:50:41 UTC (rev 394898)
+++ PKGBUILD2018-10-17 04:52:07 UTC (rev 394899)
@@ -4,7 +4,7 @@
 _hkgname=hjsonschema
 pkgname=haskell-hjsonschema
 pkgver=1.9.0
-pkgrel=109
+pkgrel=110
 pkgdesc="JSON Schema library"
 url="https://github.com/seagreen/hjsonschema;
 license=("MIT")


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

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 04:52:22
  Author: felixonmars
Revision: 394900

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-hjsonschema/repos/community-staging-x86_64/PKGBUILD (from rev 
394899, haskell-hjsonschema/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-10-17 04:52:22 UTC (rev 394900)
@@ -0,0 +1,46 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hjsonschema
+pkgname=haskell-hjsonschema
+pkgver=1.9.0
+pkgrel=110
+pkgdesc="JSON Schema library"
+url="https://github.com/seagreen/hjsonschema;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-file-embed' 'haskell-hashable' 
'haskell-hjsonpointer'
+ 'haskell-http-client' 'haskell-http-client-tls' 'haskell-http-types' 
'haskell-pcre-heavy'
+ 'haskell-profunctors' 'haskell-protolude' 'haskell-quickcheck' 
'haskell-safe-exceptions'
+ 'haskell-scientific' 'haskell-unordered-containers' 'haskell-vector')
+makedepends=('ghc' 'haskell-hspec' 'haskell-wai-app-static' 'haskell-warp')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('c71f4f23453abbb7e5c3b8a04e9fd2bea560e03ccf590fbad3739f609fe0e4e5292acfe94204b2d52d30f8fda8cc1c94edac41d5095f6be1c4cf8c05ec08e273')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test || warning "json-schema.org is NXDOMAIN as of 
2018-06-03"
+}
+
+package() {
+cd "${srcdir}/${_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 "MIT-LICENSE.txt" 
"${pkgdir}/usr/share/licenses/${pkgname}/MIT-LICENSE.txt"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/MIT-LICENSE.txt"
+}


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

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 04:50:41
  Author: felixonmars
Revision: 394898

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-wai-app-static/repos/community-staging-x86_64/
  haskell-wai-app-static/repos/community-staging-x86_64/PKGBUILD
(from rev 394897, haskell-wai-app-static/trunk/PKGBUILD)

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

Copied: haskell-wai-app-static/repos/community-staging-x86_64/PKGBUILD (from 
rev 394897, haskell-wai-app-static/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-10-17 04:50:41 UTC (rev 394898)
@@ -0,0 +1,48 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=wai-app-static
+pkgname=haskell-wai-app-static
+pkgver=3.1.6.2
+pkgrel=126
+pkgdesc="WAI application for static serving"
+url="http://www.yesodweb.com/book/web-application-interface;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-blaze-html' 'haskell-blaze-markup' 
'haskell-cryptonite'
+ 'haskell-file-embed' 'haskell-http-date' 'haskell-http-types' 
'haskell-memory'
+ 'haskell-mime-types' 'haskell-old-locale' 
'haskell-optparse-applicative'
+ 'haskell-unix-compat' 'haskell-unordered-containers' 'haskell-wai' 
'haskell-wai-extra'
+ 'haskell-warp' 'haskell-zlib')
+makedepends=('ghc' 'haskell-hspec' 'haskell-mockery' 'haskell-network' 
'haskell-temporary')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('20c79810096f12d3901af3474a5ef4fe2385e639f97f2de803b09902d115321e3be7544cc3741b52b75a2710a0141bc19cb611fd4e6248ec60d11b522b9cb59c')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-print
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 04:50:27
  Author: felixonmars
Revision: 394897

upgpkg: haskell-wai-app-static 3.1.6.2-126

rebuild with ghc 8.6.1

Modified:
  haskell-wai-app-static/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-17 04:44:56 UTC (rev 394896)
+++ PKGBUILD2018-10-17 04:50:27 UTC (rev 394897)
@@ -4,7 +4,7 @@
 _hkgname=wai-app-static
 pkgname=haskell-wai-app-static
 pkgver=3.1.6.2
-pkgrel=125
+pkgrel=126
 pkgdesc="WAI application for static serving"
 url="http://www.yesodweb.com/book/web-application-interface;
 license=("MIT")


[arch-commits] Commit in chromium/trunk (4 files)

2018-10-16 Thread Evangelos Foutras via arch-commits
Date: Wednesday, October 17, 2018 @ 04:48:35
  Author: foutrelis
Revision: 336779

upgpkg: chromium 70.0.3538.67-1

New upstream release.

Added:
  chromium/trunk/include-stdint.h-in-pdfium_mem_buffer_file_write.h.patch
Modified:
  chromium/trunk/PKGBUILD
Deleted:
  chromium/trunk/fix-cfi-icall-failure-with-use_system_libjpeg-true.patch
  chromium/trunk/only-disable-cfi-icall-when-use_system_libjpeg-true.patch

---+
 PKGBUILD  |   21 ++--
 fix-cfi-icall-failure-with-use_system_libjpeg-true.patch  |   52 
 include-stdint.h-in-pdfium_mem_buffer_file_write.h.patch  |   30 ++
 only-disable-cfi-icall-when-use_system_libjpeg-true.patch |   34 ---
 4 files changed, 42 insertions(+), 95 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-10-17 04:08:44 UTC (rev 336778)
+++ PKGBUILD2018-10-17 04:48:35 UTC (rev 336779)
@@ -4,7 +4,7 @@
 # Contributor: Daniel J Griffiths 
 
 pkgname=chromium
-pkgver=69.0.3497.100
+pkgver=70.0.3538.67
 pkgrel=1
 _launcher_ver=6
 pkgdesc="A web browser built for speed, simplicity, and security"
@@ -23,15 +23,13 @@
 install=chromium.install
 
source=(https://commondatastorage.googleapis.com/chromium-browser-official/$pkgname-$pkgver.tar.xz
 
chromium-launcher-$_launcher_ver.tar.gz::https://github.com/foutrelis/chromium-launcher/archive/v$_launcher_ver.tar.gz
-fix-cfi-icall-failure-with-use_system_libjpeg-true.patch
-only-disable-cfi-icall-when-use_system_libjpeg-true.patch
+include-stdint.h-in-pdfium_mem_buffer_file_write.h.patch
 chromium-widevine-r2.patch
 chromium-system-icu.patch
 chromium-skia-harmony.patch)
-sha256sums=('e3391560e73e25fb4afc3f2dd5616607e2dbfc58aa88251a2c5d6b7096fe9e35'
+sha256sums=('e956c2031f634300ada8c09e0777f0c560f4798963f144edaaec8d43e1e30e37'
 '04917e3cd4307d8e31bfb0027a5dce6d086edb10ff8a716024fbb8bb0c7dccf1'
-'97b421bc60a4abdf37de2d88a51b973e9f68fb44d1eccd464adfb3d9f5d71478'
-'9cae9ded6497afd15ad72d963897425ab6c7f28941bb3c3948e7996610a0d180'
+'cd1e87bf3618b7897c5caf7b0f4213cfa5ce917acb0613ecd2ab3f830f0cbfbb'
 '02c69bb3954087db599def7f5b6d65cf8f7cf2ed81dfbdaa4bb7b51863b4df15'
 'c4f2d1bed9034c02b8806f00c2e8165df24de467803855904bff709ceaf11af5'
 'feca54ab09ac0fc9d0626770a6b899a6ac5a12173c7d0c1005bc3964ec83e7b3')
@@ -78,10 +76,15 @@
   sed -i 's/OFFICIAL_BUILD/GOOGLE_CHROME_BUILD/' \
 tools/generate_shim_headers/generate_shim_headers.py
 
-  # https://crbug.com/866290
-  patch -Np1 -i ../fix-cfi-icall-failure-with-use_system_libjpeg-true.patch
-  patch -Np1 -i ../only-disable-cfi-icall-when-use_system_libjpeg-true.patch
+  # https://crbug.com/893950
+  sed -i -e 's/\/malloc/' -e 's/\/free/' \
+third_party/blink/renderer/core/xml/*.cc \
+third_party/blink/renderer/core/xml/parser/xml_document_parser.cc \
+third_party/libxml/chromium/libxml_utils.cc
 
+  # https://crbug.com/879900
+  patch -Np1 -i ../include-stdint.h-in-pdfium_mem_buffer_file_write.h.patch
+
   # https://crbug.com/skia/6663#c10
   patch -Np4 -i ../chromium-skia-harmony.patch
 

Deleted: fix-cfi-icall-failure-with-use_system_libjpeg-true.patch
===
--- fix-cfi-icall-failure-with-use_system_libjpeg-true.patch2018-10-17 
04:08:44 UTC (rev 336778)
+++ fix-cfi-icall-failure-with-use_system_libjpeg-true.patch2018-10-17 
04:48:35 UTC (rev 336779)
@@ -1,52 +0,0 @@
-From db82db1b609f30d144d45477f55697818bcd363c Mon Sep 17 00:00:00 2001
-From: Vlad Tsyrklevich 
-Date: Tue, 31 Jul 2018 01:03:22 +
-Subject: [PATCH] Fix cfi-icall failure with use_system_libjpeg=true
-
-JPEGImageReader::AllocateSampleArray() can call the function pointer
-(*info_.mem->alloc_sarray) which can be set by the systems non-CFI
-enabled libjpeg DSO when chromium is built with use_system_libjpeg=true.
-Disable cfi-icall for that method.
-
-Bug: 866290
-Change-Id: I6d9bbf08c514d6d5f48ad34c3802c63419ed1223
-Reviewed-on: https://chromium-review.googlesource.com/1155927
-Reviewed-by: Kentaro Hara 
-Commit-Queue: Vlad Tsyrklevich 
-Cr-Commit-Position: refs/heads/master@{#579270}

- .../renderer/platform/image-decoders/jpeg/jpeg_image_decoder.cc | 2 +-
- third_party/blink/renderer/platform/wtf/compiler.h  | 2 ++
- 2 files changed, 3 insertions(+), 1 deletion(-)
-
-diff --git 
a/third_party/blink/renderer/platform/image-decoders/jpeg/jpeg_image_decoder.cc 
b/third_party/blink/renderer/platform/image-decoders/jpeg/jpeg_image_decoder.cc
-index a1e440f6eed5..fd4e72ba053c 100644
 
a/third_party/blink/renderer/platform/image-decoders/jpeg/jpeg_image_decoder.cc
-+++ 
b/third_party/blink/renderer/platform/image-decoders/jpeg/jpeg_image_decoder.cc
-@@ -643,7 +643,7 @@ class JPEGImageReader final {
-   

[arch-commits] Commit in chromium/repos/extra-x86_64 (13 files)

2018-10-16 Thread Evangelos Foutras via arch-commits
Date: Wednesday, October 17, 2018 @ 04:48:46
  Author: foutrelis
Revision: 336780

archrelease: copy trunk to extra-x86_64

Added:
  chromium/repos/extra-x86_64/PKGBUILD
(from rev 336779, chromium/trunk/PKGBUILD)
  chromium/repos/extra-x86_64/chromium-skia-harmony.patch
(from rev 336779, chromium/trunk/chromium-skia-harmony.patch)
  chromium/repos/extra-x86_64/chromium-system-icu.patch
(from rev 336779, chromium/trunk/chromium-system-icu.patch)
  chromium/repos/extra-x86_64/chromium-widevine-r2.patch
(from rev 336779, chromium/trunk/chromium-widevine-r2.patch)
  chromium/repos/extra-x86_64/chromium.install
(from rev 336779, chromium/trunk/chromium.install)
  
chromium/repos/extra-x86_64/include-stdint.h-in-pdfium_mem_buffer_file_write.h.patch
(from rev 336779, 
chromium/trunk/include-stdint.h-in-pdfium_mem_buffer_file_write.h.patch)
Deleted:
  chromium/repos/extra-x86_64/PKGBUILD
  chromium/repos/extra-x86_64/chromium-skia-harmony.patch
  chromium/repos/extra-x86_64/chromium-system-icu.patch
  chromium/repos/extra-x86_64/chromium-widevine-r2.patch
  chromium/repos/extra-x86_64/chromium.install
  
chromium/repos/extra-x86_64/fix-cfi-icall-failure-with-use_system_libjpeg-true.patch
  
chromium/repos/extra-x86_64/only-disable-cfi-icall-when-use_system_libjpeg-true.patch

---+
 PKGBUILD  |  448 +---
 chromium-skia-harmony.patch   |  154 ++--
 chromium-system-icu.patch |   38 -
 chromium-widevine-r2.patch|   78 +-
 chromium.install  |   32 
 fix-cfi-icall-failure-with-use_system_libjpeg-true.patch  |   52 -
 include-stdint.h-in-pdfium_mem_buffer_file_write.h.patch  |   30 
 only-disable-cfi-icall-when-use_system_libjpeg-true.patch |   34 
 8 files changed, 403 insertions(+), 463 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-10-17 04:48:35 UTC (rev 336779)
+++ PKGBUILD2018-10-17 04:48:46 UTC (rev 336780)
@@ -1,226 +0,0 @@
-# Maintainer: Evangelos Foutras 
-# Contributor: Pierre Schmitz 
-# Contributor: Jan "heftig" Steffens 
-# Contributor: Daniel J Griffiths 
-
-pkgname=chromium
-pkgver=69.0.3497.100
-pkgrel=1
-_launcher_ver=6
-pkgdesc="A web browser built for speed, simplicity, and security"
-arch=('x86_64')
-url="https://www.chromium.org/Home;
-license=('BSD')
-depends=('gtk3' 'nss' 'alsa-lib' 'xdg-utils' 'libxss' 'libcups' 'libgcrypt'
- 'ttf-font' 'systemd' 'dbus' 'libpulse' 'pciutils' 'json-glib'
- 'desktop-file-utils' 'hicolor-icon-theme')
-makedepends=('python' 'python2' 'gperf' 'yasm' 'mesa' 'ninja' 'nodejs' 'git'
- 'clang' 'lld' 'gn')
-optdepends=('pepper-flash: support for Flash content'
-'kdialog: needed for file dialogs in KDE'
-'gnome-keyring: for storing passwords in GNOME keyring'
-'kwallet: for storing passwords in KWallet')
-install=chromium.install
-source=(https://commondatastorage.googleapis.com/chromium-browser-official/$pkgname-$pkgver.tar.xz
-
chromium-launcher-$_launcher_ver.tar.gz::https://github.com/foutrelis/chromium-launcher/archive/v$_launcher_ver.tar.gz
-fix-cfi-icall-failure-with-use_system_libjpeg-true.patch
-only-disable-cfi-icall-when-use_system_libjpeg-true.patch
-chromium-widevine-r2.patch
-chromium-system-icu.patch
-chromium-skia-harmony.patch)
-sha256sums=('e3391560e73e25fb4afc3f2dd5616607e2dbfc58aa88251a2c5d6b7096fe9e35'
-'04917e3cd4307d8e31bfb0027a5dce6d086edb10ff8a716024fbb8bb0c7dccf1'
-'97b421bc60a4abdf37de2d88a51b973e9f68fb44d1eccd464adfb3d9f5d71478'
-'9cae9ded6497afd15ad72d963897425ab6c7f28941bb3c3948e7996610a0d180'
-'02c69bb3954087db599def7f5b6d65cf8f7cf2ed81dfbdaa4bb7b51863b4df15'
-'c4f2d1bed9034c02b8806f00c2e8165df24de467803855904bff709ceaf11af5'
-'feca54ab09ac0fc9d0626770a6b899a6ac5a12173c7d0c1005bc3964ec83e7b3')
-
-# Possible replacements are listed in build/linux/unbundle/replace_gn_files.py
-# Keys are the names in the above script; values are the dependencies in Arch
-declare -gA _system_libs=(
-  [ffmpeg]=ffmpeg
-  [flac]=flac
-  [fontconfig]=fontconfig
-  [freetype]=freetype2
-  [harfbuzz-ng]=harfbuzz
-  [icu]=icu
-  [libdrm]=
-  [libjpeg]=libjpeg
-  #[libpng]=libpng# https://crbug.com/752403#c10
-  #[libvpx]=libvpx# needs unreleased libvpx
-  [libwebp]=libwebp
-  [libxml]=libxml2
-  [libxslt]=libxslt
-  [opus]=opus
-  [re2]=re2
-  [snappy]=snappy
-  [yasm]=
-  [zlib]=minizip
-)
-_unwanted_bundled_libs=(
-  ${!_system_libs[@]}
-  ${_system_libs[libjpeg]+libjpeg_turbo}
-)
-depends+=(${_system_libs[@]})
-
-# Google API keys (see https://www.chromium.org/developers/how-tos/api-keys)
-# Note: These are for Arch 

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

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 04:44:41
  Author: felixonmars
Revision: 394895

upgpkg: python-hypothesis 3.78.0-1

Modified:
  python-hypothesis/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-17 04:39:50 UTC (rev 394894)
+++ PKGBUILD2018-10-17 04:44:41 UTC (rev 394895)
@@ -2,7 +2,7 @@
 
 pkgbase=python-hypothesis
 pkgname=('python-hypothesis' 'python2-hypothesis')
-pkgver=3.77.0
+pkgver=3.78.0
 pkgrel=1
 pkgdesc="Advanced Quickcheck style testing library for Python"
 arch=('any')
@@ -16,7 +16,7 @@
   'python2-pytest-xdist' 'python-mock' 'python2-mock' 
'python-pandas' 'python2-pandas'
   'python-dpcontracts' 'python2-dpcontracts')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-$pkgver.tar.gz;)
-sha512sums=('eb182123948d6acd59efa1d64535ddd5e7b10b3b32ae98c8b85ee9092ab83dfeb3386e86760958b794101b626b11ffd6972a974527796116b80178c60f4ee15b')
+sha512sums=('5f3319043dc9316e30a7f356a483bc997171319ab175bbf757a8ed6dbb30f35117b374011187f522e25ff3711ac495b379a47c76b3b1fb90c556b57246b7a044')
 
 prepare() {
   mv hypothesis-hypothesis-python-$pkgver hypothesis-$pkgver


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

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 04:44:56
  Author: felixonmars
Revision: 394896

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-10-17 04:44:41 UTC (rev 394895)
+++ PKGBUILD2018-10-17 04:44:56 UTC (rev 394896)
@@ -1,78 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgbase=python-hypothesis
-pkgname=('python-hypothesis' 'python2-hypothesis')
-pkgver=3.77.0
-pkgrel=1
-pkgdesc="Advanced Quickcheck style testing library for Python"
-arch=('any')
-license=('MPL')
-url="https://hypothesis.readthedocs.org;
-makedepends=('python-setuptools' 'python2-setuptools' 'python-attrs' 
'python2-attrs'
- 'python-coverage' 'python2-coverage' 'python2-enum34')
-checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'flake8' 
'python2-flake8' 'python-pytz'
-  'python2-pytz' 'python-numpy' 'python2-numpy' 'python-faker' 
'python2-faker'
-  'python-flaky' 'python2-flaky' 'python-django' 'python2-django' 
'python-pytest-xdist'
-  'python2-pytest-xdist' 'python-mock' 'python2-mock' 
'python-pandas' 'python2-pandas'
-  'python-dpcontracts' 'python2-dpcontracts')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-$pkgver.tar.gz;)
-sha512sums=('eb182123948d6acd59efa1d64535ddd5e7b10b3b32ae98c8b85ee9092ab83dfeb3386e86760958b794101b626b11ffd6972a974527796116b80178c60f4ee15b')
-
-prepare() {
-  mv hypothesis-hypothesis-python-$pkgver hypothesis-$pkgver
-
-  sed -i "/FutureWarning/a \filterwarnings('ignore', 
category=DeprecationWarning, module='pandas.core')" 
hypothesis-$pkgver/hypothesis-python/tests/common/setup.py
-
-  cp -a hypothesis-$pkgver{,-py2}
-
-  rm -r hypothesis-$pkgver/hypothesis-python/tests/py2
-  rm -r hypothesis-$pkgver-py2/hypothesis-python/tests/py3
-
-  export LC_CTYPE=en_US.UTF-8
-}
-
-build() {
-  cd "$srcdir"/hypothesis-$pkgver/hypothesis-python
-  python setup.py build
-
-  cd "$srcdir"/hypothesis-$pkgver-py2/hypothesis-python
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/hypothesis-$pkgver/hypothesis-python
-  mv tests/django ../
-  python setup.py pytest --addopts -n16
-  mv ../django tests/
-  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python -m tests.django.manage test 
tests.django || warning "Tests failed"
-
-  cd "$srcdir"/hypothesis-$pkgver-py2/hypothesis-python
-  mv tests/django ../
-  python2 setup.py pytest --addopts -n16
-  mv ../django tests/
-  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python2 -m tests.django.manage test 
tests.django
-}
-
-package_python-hypothesis() {
-  depends=('python-attrs' 'python-coverage')
-  optdepends=('python-pytz: for datetime and django module'
-  'python-faker: for fakefactory and django module'
-  'python-django: for django module'
-  'python-numpy: for numpy module'
-  'python-pytest: for pytest module')
-
-  cd hypothesis-$pkgver/hypothesis-python
-  python setup.py install --root="$pkgdir" --optimize=1
-}
-
-package_python2-hypothesis() {
-  depends=('python2-attrs' 'python2-coverage' 'python2-enum34')
-  optdepends=('python2-pytz: for datetime and django module'
-  'python2-faker: for fakefactory and django module'
-  'python2-django: for django module'
-  'python2-numpy: for numpy module'
-  'python2-pytest: for pytest module')
-
-  cd hypothesis-$pkgver-py2/hypothesis-python
-  python2 setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python-hypothesis/repos/community-any/PKGBUILD (from rev 394895, 
python-hypothesis/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-10-17 04:44:56 UTC (rev 394896)
@@ -0,0 +1,78 @@
+# Maintainer: Felix Yan 
+
+pkgbase=python-hypothesis
+pkgname=('python-hypothesis' 'python2-hypothesis')
+pkgver=3.78.0
+pkgrel=1
+pkgdesc="Advanced Quickcheck style testing library for Python"
+arch=('any')
+license=('MPL')
+url="https://hypothesis.readthedocs.org;
+makedepends=('python-setuptools' 'python2-setuptools' 'python-attrs' 
'python2-attrs'
+ 'python-coverage' 'python2-coverage' 'python2-enum34')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'flake8' 
'python2-flake8' 'python-pytz'
+  'python2-pytz' 'python-numpy' 'python2-numpy' 'python-faker' 
'python2-faker'
+  'python-flaky' 'python2-flaky' 'python-django' 'python2-django' 
'python-pytest-xdist'
+  'python2-pytest-xdist' 'python-mock' 'python2-mock' 
'python-pandas' 

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

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 04:39:50
  Author: felixonmars
Revision: 394894

archrelease: copy trunk to community-any

Added:
  python-zope-annotation/repos/community-any/PKGBUILD
(from rev 394893, python-zope-annotation/trunk/PKGBUILD)
Deleted:
  python-zope-annotation/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-10-17 04:39:21 UTC (rev 394893)
+++ PKGBUILD2018-10-17 04:39:50 UTC (rev 394894)
@@ -1,57 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgbase=python-zope-annotation
-pkgname=('python-zope-annotation' 'python2-zope-annotation')
-pkgver=4.6.0
-pkgrel=2
-pkgdesc="Object annotation mechanism"
-arch=('any')
-url="https://github.com/zopefoundation/zope.annotation;
-license=('ZPL')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-zope-interface'
- 'python2-zope-interface' 'python-zope-component' 
'python2-zope-component'
- 'python-zope-location' 'python2-zope-location' 'python-zope-proxy'
- 'python2-zope-proxy')
-checkdepends=('python-zope-configuration' 'python2-zope-configuration' 
'python-zope-testing'
-  'python2-zope-testing' 'python-zope-testrunner' 
'python2-zope-testrunner')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/zopefoundation/zope.annotation/archive/$pkgver.tar.gz;)
-sha512sums=('d366e37ccebe646c3260f6341503689f97b170de6e0aa127f93c437ec22deb15a7ae3f6e13f8fb1b667f87a1ed4ffb7f38cd6ce4e91406a0c8ccc0e356ef0795')
-
-prepare() {
-  cp -a zope.annotation-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir"/zope.annotation-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/zope.annotation-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/zope.annotation-$pkgver
-  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python -m zope.testrunner 
--test-path=src || warning "Tests failed"
-
-  cd "$srcdir"/zope.annotation-$pkgver-py2
-  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python2 -m zope.testrunner 
--test-path=src
-}
-
-package_python-zope-annotation() {
-  depends=('python-setuptools' 'python-zope-interface' 'python-zope-component'
-   'python-zope-location' 'python-zope-proxy')
-
-  cd "$srcdir"/zope.annotation-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-}
-
-package_python2-zope-annotation() {
-  depends=('python2-setuptools' 'python2-zope-interface' 
'python2-zope-component'
-   'python2-zope-location' 'python2-zope-proxy')
-
-  cd "$srcdir"/zope.annotation-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-zope-annotation/repos/community-any/PKGBUILD (from rev 394893, 
python-zope-annotation/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-10-17 04:39:50 UTC (rev 394894)
@@ -0,0 +1,56 @@
+# Maintainer: Felix Yan 
+
+pkgbase=python-zope-annotation
+pkgname=('python-zope-annotation' 'python2-zope-annotation')
+pkgver=4.7.0
+pkgrel=1
+pkgdesc="Object annotation mechanism"
+arch=('any')
+url="https://github.com/zopefoundation/zope.annotation;
+license=('ZPL')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-zope-interface'
+ 'python2-zope-interface' 'python-zope-component' 
'python2-zope-component'
+ 'python-zope-location' 'python2-zope-location' 'python-zope-proxy'
+ 'python2-zope-proxy')
+checkdepends=('python-zope-configuration' 'python2-zope-configuration' 
'python-zope-testing'
+  'python2-zope-testing' 'python-zope-testrunner' 
'python2-zope-testrunner')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/zopefoundation/zope.annotation/archive/$pkgver.tar.gz;)
+sha512sums=('e9fb4bafb1e144967c2aab56d55f1b86b355ce59d740388339a7d38956b66b3d01c1cb4f80903721722e94fd87824b5760b0772b1109b08bd40864a6249e4ef3')
+
+prepare() {
+  cp -a zope.annotation-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/zope.annotation-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/zope.annotation-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/zope.annotation-$pkgver
+  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python -m zope.testrunner 
--test-path=src || warning "Tests failed"
+
+  cd "$srcdir"/zope.annotation-$pkgver-py2
+  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python2 -m zope.testrunner 
--test-path=src
+}
+
+package_python-zope-annotation() {
+  depends=('python-setuptools' 'python-zope-interface' 'python-zope-component'
+   'python-zope-location' 'python-zope-proxy')
+
+  cd "$srcdir"/zope.annotation-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}
+
+package_python2-zope-annotation() {
+  depends=('python2-setuptools' 'python2-zope-interface' 
'python2-zope-component'
+

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

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 04:39:21
  Author: felixonmars
Revision: 394893

upgpkg: python-zope-annotation 4.7.0-1

Modified:
  python-zope-annotation/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-17 04:34:57 UTC (rev 394892)
+++ PKGBUILD2018-10-17 04:39:21 UTC (rev 394893)
@@ -2,8 +2,8 @@
 
 pkgbase=python-zope-annotation
 pkgname=('python-zope-annotation' 'python2-zope-annotation')
-pkgver=4.6.0
-pkgrel=2
+pkgver=4.7.0
+pkgrel=1
 pkgdesc="Object annotation mechanism"
 arch=('any')
 url="https://github.com/zopefoundation/zope.annotation;
@@ -15,7 +15,7 @@
 checkdepends=('python-zope-configuration' 'python2-zope-configuration' 
'python-zope-testing'
   'python2-zope-testing' 'python-zope-testrunner' 
'python2-zope-testrunner')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/zopefoundation/zope.annotation/archive/$pkgver.tar.gz;)
-sha512sums=('d366e37ccebe646c3260f6341503689f97b170de6e0aa127f93c437ec22deb15a7ae3f6e13f8fb1b667f87a1ed4ffb7f38cd6ce4e91406a0c8ccc0e356ef0795')
+sha512sums=('e9fb4bafb1e144967c2aab56d55f1b86b355ce59d740388339a7d38956b66b3d01c1cb4f80903721722e94fd87824b5760b0772b1109b08bd40864a6249e4ef3')
 
 prepare() {
   cp -a zope.annotation-$pkgver{,-py2}


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

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 04:34:57
  Author: felixonmars
Revision: 394892

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-heaps/repos/community-staging-x86_64/PKGBUILD (from rev 394891, 
haskell-heaps/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-10-17 04:34:57 UTC (rev 394892)
@@ -0,0 +1,47 @@
+# Maintainer: Felix Yan 
+
+_hkgname=heaps
+pkgname=haskell-heaps
+pkgver=0.3.6
+pkgrel=1
+pkgdesc="Asymptotically optimal Brodal/Okasaki heaps"
+url="https://github.com/ekmett/heaps;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs')
+makedepends=('ghc' 'haskell-cabal-doctest' 'haskell-doctest')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('e6145d45be01e85fef86921ffbe3c808f7f7cbb3ef2f74747756ff0f937ae9242f98755e701301de5584b0004d19c7eb54c46c5b6dc266a4bc2b9e5fefa2d52f')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i 's/< *0.14/<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
+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 (4 files)

2018-10-16 Thread Felix Yan via arch-commits
Date: Wednesday, October 17, 2018 @ 04:34:25
  Author: felixonmars
Revision: 394891

addpkg: haskell-heaps 0.3.6-1

Added:
  haskell-heaps/
  haskell-heaps/repos/
  haskell-heaps/trunk/
  haskell-heaps/trunk/PKGBUILD

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

Added: haskell-heaps/trunk/PKGBUILD
===
--- haskell-heaps/trunk/PKGBUILD(rev 0)
+++ haskell-heaps/trunk/PKGBUILD2018-10-17 04:34:25 UTC (rev 394891)
@@ -0,0 +1,47 @@
+# Maintainer: Felix Yan 
+
+_hkgname=heaps
+pkgname=haskell-heaps
+pkgver=0.3.6
+pkgrel=1
+pkgdesc="Asymptotically optimal Brodal/Okasaki heaps"
+url="https://github.com/ekmett/heaps;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs')
+makedepends=('ghc' 'haskell-cabal-doctest' 'haskell-doctest')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('e6145d45be01e85fef86921ffbe3c808f7f7cbb3ef2f74747756ff0f937ae9242f98755e701301de5584b0004d19c7eb54c46c5b6dc266a4bc2b9e5fefa2d52f')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i 's/< *0.14/<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
+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 netbeans/repos/community-any (4 files)

2018-10-16 Thread Santiago Torres-Arias via arch-commits
Date: Wednesday, October 17, 2018 @ 04:12:16
  Author: sangy
Revision: 394890

archrelease: copy trunk to community-any

Added:
  netbeans/repos/community-any/PKGBUILD
(from rev 394889, netbeans/trunk/PKGBUILD)
  netbeans/repos/community-any/netbeans.clusters
(from rev 394889, netbeans/trunk/netbeans.clusters)
Deleted:
  netbeans/repos/community-any/PKGBUILD
  netbeans/repos/community-any/netbeans.clusters

---+
 PKGBUILD  |  122 ++--
 netbeans.clusters |   88 ++---
 2 files changed, 105 insertions(+), 105 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-10-17 04:10:52 UTC (rev 394889)
+++ PKGBUILD2018-10-17 04:12:16 UTC (rev 394890)
@@ -1,61 +0,0 @@
-# Maintainer: Alexander F Rødseth 
-# Contributor: Timm Preetz 
-# Contributor: Daniel J Griffiths 
-# Contributor: Ben Wolsieffer 
-
-pkgname=netbeans
-pkgver=9.0
-pkgrel=1
-pkgdesc='IDE for Java, HTML5, PHP, Groovy, C and C++'
-arch=('any')
-url='http://netbeans.apache.org/'
-license=('Apache2')
-# classpath is not needed, see FS#38567 (Oracle JDK does not need atk either)
-depends=('java-environment' 'ttf-font' 'jdk10-openjdk')
-makedepends=('ant' 'java-environment' 'jdk8-openjdk')
-optdepends=('php: for developing programs in php'
-'groovy: for developing programs in groovy'
-'lib32-glibc')
-source=("https://www.apache.org/dist/incubator/netbeans/incubating-netbeans-java/incubating-9.0/incubating-${pkgname}-java-${pkgver}-source.zip"{,.asc}
-   "netbeans.clusters")
-
-sha256sums=('cc4cdaf3e1a6c80227410a6e54414e2109516d11a7150b7b9660061135bbc8db'
-'SKIP'
-'a7849ee0f21acef34a7bbd1216e8f822aba38284e3138ea04532224ad6f227c2')
-validpgpkeys=("1A83C352499305B6682E3D95CF7BA0AB1CCF4647")
-
-build() {
-  # full cluster configuration is not available at this time
-  #ant -quiet -Dcluster.config=full
-  export JAVA_HOME=/usr/lib/jvm/java-8-openjdk/
-  ant -quiet -Dnbjdk.home=/usr/lib/jvm/java-8-openjdk 
-Djava.home=/usr/lib/jvm/java-8-openjdk
-}
-
-check() {
-  cd "${srcdir}"
-  ant -quiet test -Djavac.compilerargs=-nowarn 
-Dbuild.compiler.deprecation=false -Dtest.includes=NoTestsJustBuild
-}
-
-package() {
-
-  # load script
-  install -Dm755 "nbbuild/${pkgname}/bin/${pkgname}" "$pkgdir/usr/bin/$pkgname"
-
-  # Resources for platform config
-  mkdir -vp "${pkgdir}/usr/lib/${pkgname}"
-  cp -r 
"nbbuild/${pkgname}/"{java,harness,javafx,profiler,nb,ide,extide,apisupport,websvccommon,platform}
 "$pkgdir/usr/lib/${pkgname}"
-
-  # copy cluster configuration
-  install -Dm644 "${srcdir}/nbbuild/netbeans/etc/netbeans."* -t 
"${pkgdir}/usr/etc/"
-  install -Dm644 "netbeans.clusters" -t "${pkgdir}/usr/etc/"
-
-  # Desktop shortcut and icon
-  install -Dm644 "nbbuild/packaging/snap/gui/$pkgname.desktop" \
-"$pkgdir/usr/share/applications/$pkgname.desktop"
-  sed -i "s/Icon=.*/Icon=\/usr\/share\/pixmaps\/${pkgname}.png/" 
"${pkgdir}/usr/share/applications/${pkgname}.desktop"
-  install -Dm644 "ide.branding/release/${pkgname}.png" 
"$pkgdir/usr/share/pixmaps/$pkgname.png"
-
-}
-
-# getver: netbeans.org
-# vim:set ts=2 sw=2 et:

Copied: netbeans/repos/community-any/PKGBUILD (from rev 394889, 
netbeans/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-10-17 04:12:16 UTC (rev 394890)
@@ -0,0 +1,61 @@
+# Maintainer: Alexander F Rødseth 
+# Contributor: Timm Preetz 
+# Contributor: Daniel J Griffiths 
+# Contributor: Ben Wolsieffer 
+
+pkgname=netbeans
+pkgver=9.0
+pkgrel=1
+pkgdesc='IDE for Java, HTML5, PHP, Groovy, C and C++'
+arch=('any')
+url='http://netbeans.apache.org/'
+license=('Apache2')
+# classpath is not needed, see FS#38567 (Oracle JDK does not need atk either)
+depends=('java-environment' 'ttf-font' 'jdk10-openjdk')
+makedepends=('ant' 'java-environment' 'jdk8-openjdk')
+optdepends=('php: for developing programs in php'
+'groovy: for developing programs in groovy'
+'lib32-glibc')
+source=("https://www.apache.org/dist/incubator/netbeans/incubating-netbeans-java/incubating-9.0/incubating-${pkgname}-java-${pkgver}-source.zip"{,.asc}
+   "netbeans.clusters")
+
+sha256sums=('cc4cdaf3e1a6c80227410a6e54414e2109516d11a7150b7b9660061135bbc8db'
+'SKIP'
+'a7849ee0f21acef34a7bbd1216e8f822aba38284e3138ea04532224ad6f227c2')
+validpgpkeys=("1A83C352499305B6682E3D95CF7BA0AB1CCF4647")
+
+build() {
+  # full cluster configuration is not available at this time
+  #ant -quiet -Dcluster.config=full
+  export JAVA_HOME=/usr/lib/jvm/java-8-openjdk/
+  ant -quiet -Dnbjdk.home=/usr/lib/jvm/java-8-openjdk 
-Djava.home=/usr/lib/jvm/java-8-openjdk
+}
+
+check() {
+  cd "${srcdir}"
+  ant -quiet test -Djavac.compilerargs=-nowarn 
-Dbuild.compiler.deprecation=false -Dtest.includes=NoTestsJustBuild
+}

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

2018-10-16 Thread Santiago Torres-Arias via arch-commits
Date: Wednesday, October 17, 2018 @ 04:10:52
  Author: sangy
Revision: 394889

archrelease: copy trunk to community-any

Added:
  netbeans/repos/community-any/PKGBUILD
(from rev 394888, netbeans/trunk/PKGBUILD)
  netbeans/repos/community-any/netbeans.clusters
(from rev 394888, netbeans/trunk/netbeans.clusters)
Deleted:
  netbeans/repos/community-any/PKGBUILD
  netbeans/repos/community-any/netbeans.clusters

---+
 PKGBUILD  |  122 ++--
 netbeans.clusters |   88 ++---
 2 files changed, 105 insertions(+), 105 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-10-17 04:09:44 UTC (rev 394888)
+++ PKGBUILD2018-10-17 04:10:52 UTC (rev 394889)
@@ -1,61 +0,0 @@
-# Maintainer: Alexander F Rødseth 
-# Contributor: Timm Preetz 
-# Contributor: Daniel J Griffiths 
-# Contributor: Ben Wolsieffer 
-
-pkgname=netbeans
-pkgver=9.0
-pkgrel=1
-pkgdesc='IDE for Java, HTML5, PHP, Groovy, C and C++'
-arch=('any')
-url='http://netbeans.apache.org/'
-license=('Apache2')
-# classpath is not needed, see FS#38567 (Oracle JDK does not need atk either)
-depends=('java-environment' 'ttf-font' 'jdk10-openjdk')
-makedepends=('ant' 'java-environment' 'jdk8-openjdk')
-optdepends=('php: for developing programs in php'
-'groovy: for developing programs in groovy'
-'lib32-glibc')
-source=("https://www.apache.org/dist/incubator/netbeans/incubating-netbeans-java/incubating-9.0/incubating-${pkgname}-java-${pkgver}-source.zip"{,.asc}
-   "netbeans.clusters")
-
-sha256sums=('cc4cdaf3e1a6c80227410a6e54414e2109516d11a7150b7b9660061135bbc8db'
-'SKIP'
-'a7849ee0f21acef34a7bbd1216e8f822aba38284e3138ea04532224ad6f227c2')
-validpgpkeys=("1A83C352499305B6682E3D95CF7BA0AB1CCF4647")
-
-build() {
-  # full cluster configuration is not available at this time
-  #ant -quiet -Dcluster.config=full
-  export JAVA_HOME=/usr/lib/jvm/java-8-openjdk/
-  ant -quiet -Dnbjdk.home=/usr/lib/jvm/java-8-openjdk 
-Djava.home=/usr/lib/jvm/java-8-openjdk
-}
-
-check() {
-  cd "${srcdir}"
-  ant -quiet test -Djavac.compilerargs=-nowarn 
-Dbuild.compiler.deprecation=false -Dtest.includes=NoTestsJustBuild
-}
-
-package() {
-
-  # load script
-  install -Dm755 "nbbuild/${pkgname}/bin/${pkgname}" "$pkgdir/usr/bin/$pkgname"
-
-  # Resources for platform config
-  mkdir -vp "${pkgdir}/usr/lib/${pkgname}"
-  cp -r 
"nbbuild/${pkgname}/"{java,harness,javafx,profiler,nb,ide,extide,apisupport,websvccommon,platform}
 "$pkgdir/usr/lib/${pkgname}"
-
-  # copy cluster configuration
-  install -Dm644 "${srcdir}/nbbuild/netbeans/etc/netbeans."* -t 
"${pkgdir}/usr/etc/"
-  install -Dm644 "netbeans.clusters" -t "${pkgdir}/usr/etc/"
-
-  # Desktop shortcut and icon
-  install -Dm644 "nbbuild/packaging/snap/gui/$pkgname.desktop" \
-"$pkgdir/usr/share/applications/$pkgname.desktop"
-  sed -i "s/Icon=.*/Icon=\/usr\/share\/pixmaps\/${pkgname}.png/" 
"${pkgdir}/usr/share/applications/${pkgname}.desktop"
-  install -Dm644 "ide.branding/release/${pkgname}.png" 
"$pkgdir/usr/share/pixmaps/$pkgname.png"
-
-}
-
-# getver: netbeans.org
-# vim:set ts=2 sw=2 et:

Copied: netbeans/repos/community-any/PKGBUILD (from rev 394888, 
netbeans/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-10-17 04:10:52 UTC (rev 394889)
@@ -0,0 +1,61 @@
+# Maintainer: Alexander F Rødseth 
+# Contributor: Timm Preetz 
+# Contributor: Daniel J Griffiths 
+# Contributor: Ben Wolsieffer 
+
+pkgname=netbeans
+pkgver=9.0
+pkgrel=1
+pkgdesc='IDE for Java, HTML5, PHP, Groovy, C and C++'
+arch=('any')
+url='http://netbeans.apache.org/'
+license=('Apache2')
+# classpath is not needed, see FS#38567 (Oracle JDK does not need atk either)
+depends=('java-environment' 'ttf-font' 'jdk10-openjdk')
+makedepends=('ant' 'java-environment' 'jdk8-openjdk')
+optdepends=('php: for developing programs in php'
+'groovy: for developing programs in groovy'
+'lib32-glibc')
+source=("https://www.apache.org/dist/incubator/netbeans/incubating-netbeans-java/incubating-9.0/incubating-${pkgname}-java-${pkgver}-source.zip"{,.asc}
+   "netbeans.clusters")
+
+sha256sums=('cc4cdaf3e1a6c80227410a6e54414e2109516d11a7150b7b9660061135bbc8db'
+'SKIP'
+'a7849ee0f21acef34a7bbd1216e8f822aba38284e3138ea04532224ad6f227c2')
+validpgpkeys=("1A83C352499305B6682E3D95CF7BA0AB1CCF4647")
+
+build() {
+  # full cluster configuration is not available at this time
+  #ant -quiet -Dcluster.config=full
+  export JAVA_HOME=/usr/lib/jvm/java-8-openjdk/
+  ant -quiet -Dnbjdk.home=/usr/lib/jvm/java-8-openjdk 
-Djava.home=/usr/lib/jvm/java-8-openjdk
+}
+
+check() {
+  cd "${srcdir}"
+  ant -quiet test -Djavac.compilerargs=-nowarn 
-Dbuild.compiler.deprecation=false -Dtest.includes=NoTestsJustBuild
+}

[arch-commits] Commit in netbeans/repos/community-any (3 files)

2018-10-16 Thread Santiago Torres-Arias via arch-commits
Date: Wednesday, October 17, 2018 @ 04:09:44
  Author: sangy
Revision: 394888

archrelease: copy trunk to community-any

Added:
  netbeans/repos/community-any/PKGBUILD
(from rev 394887, netbeans/trunk/PKGBUILD)
  netbeans/repos/community-any/netbeans.clusters
(from rev 394887, netbeans/trunk/netbeans.clusters)
Deleted:
  netbeans/repos/community-any/PKGBUILD

---+
 PKGBUILD  |  117 +++-
 netbeans.clusters |   44 +++
 2 files changed, 105 insertions(+), 56 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-10-17 04:09:23 UTC (rev 394887)
+++ PKGBUILD2018-10-17 04:09:44 UTC (rev 394888)
@@ -1,56 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-# Contributor: Timm Preetz 
-# Contributor: Daniel J Griffiths 
-# Contributor: Ben Wolsieffer 
-
-pkgname=netbeans
-pkgver=8.2
-# Get the subver from https://netbeans.org/downloads/zip.html
-_subver=201609300101
-pkgrel=1
-pkgdesc='IDE for Java, HTML5, PHP, Groovy, C and C++'
-arch=('any')
-url='http://netbeans.org/'
-license=('CDDL')
-# classpath is not needed, see FS#38567 (Oracle JDK does not need atk either)
-depends=('java-environment' 'ttf-font' 'libxtst' 'giflib' 'atk')
-backup=('usr/share/netbeans/etc/netbeans.conf')
-makedepends=('gendesk' 'setconf')
-optdepends=('php: for developing programs in php'
-'groovy: for developing programs in groovy'
-'lib32-glibc')
-options=('!strip')
-# http://dlc-cdn.sun.com/netbeans/8.1/final/zip/
-source=("http://download.netbeans.org/netbeans/$pkgver/final/zip/netbeans-$pkgver-$_subver.zip;
-
'https://cdn.rawgit.com/ComFreek/chocolatey-packages/779f5c96f817ed1fa0d76fd90841873dc6c0ba74/icons/netbeans.png')
-sha256sums=('ad9888334b9a6c1f1138dcb2eccc8ce4921463e871e46def4ecc617538160948'
-'048112cc3be78f41bf6eca8f664f3e92e97fc68df904ce87a7e0156a18d80c7e')
-
-prepare() {
-  gendesk -f -n --pkgname "$pkgname" --pkgdesc "$pkgdesc" \
---custom "StartupWMClass=NetBeans IDE $pkgver" --name "NetBeans" \
---exec 'netbeans %f' --startupnotify true
-  setconf "$pkgname/bin/$pkgname" basedir "/usr/share/$pkgname"
-}
-
-package() {
-  mkdir -p "$pkgdir/usr/"{bin,share/applications}
-
-  # Binary file
-  install -Dm755 "$pkgname/bin/$pkgname" "$pkgdir/usr/bin/$pkgname"
-
-  # Resources
-  cp -r "$pkgname" "$pkgdir/usr/share/"
-
-  # Desktop shortcut and icon
-  install -Dm644 "$pkgname.desktop" \
-"$pkgdir/usr/share/applications/$pkgname.desktop"
-  install -Dm644 "$pkgname.png" "$pkgdir/usr/share/pixmaps/$pkgname.png"
-
-  # Cleanup of directory that contains the binary file and .exe-files
-  rm -r "$pkgdir/usr/share/$pkgname/bin"
-}
-
-# getver: netbeans.org
-# vim:set ts=2 sw=2 et:

Copied: netbeans/repos/community-any/PKGBUILD (from rev 394887, 
netbeans/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-10-17 04:09:44 UTC (rev 394888)
@@ -0,0 +1,61 @@
+# Maintainer: Alexander F Rødseth 
+# Contributor: Timm Preetz 
+# Contributor: Daniel J Griffiths 
+# Contributor: Ben Wolsieffer 
+
+pkgname=netbeans
+pkgver=9.0
+pkgrel=1
+pkgdesc='IDE for Java, HTML5, PHP, Groovy, C and C++'
+arch=('any')
+url='http://netbeans.apache.org/'
+license=('Apache2')
+# classpath is not needed, see FS#38567 (Oracle JDK does not need atk either)
+depends=('java-environment' 'ttf-font' 'jdk10-openjdk')
+makedepends=('ant' 'java-environment' 'jdk8-openjdk')
+optdepends=('php: for developing programs in php'
+'groovy: for developing programs in groovy'
+'lib32-glibc')
+source=("https://www.apache.org/dist/incubator/netbeans/incubating-netbeans-java/incubating-9.0/incubating-${pkgname}-java-${pkgver}-source.zip"{,.asc}
+   "netbeans.clusters")
+
+sha256sums=('cc4cdaf3e1a6c80227410a6e54414e2109516d11a7150b7b9660061135bbc8db'
+'SKIP'
+'a7849ee0f21acef34a7bbd1216e8f822aba38284e3138ea04532224ad6f227c2')
+validpgpkeys=("1A83C352499305B6682E3D95CF7BA0AB1CCF4647")
+
+build() {
+  # full cluster configuration is not available at this time
+  #ant -quiet -Dcluster.config=full
+  export JAVA_HOME=/usr/lib/jvm/java-8-openjdk/
+  ant -quiet -Dnbjdk.home=/usr/lib/jvm/java-8-openjdk 
-Djava.home=/usr/lib/jvm/java-8-openjdk
+}
+
+check() {
+  cd "${srcdir}"
+  ant -quiet test -Djavac.compilerargs=-nowarn 
-Dbuild.compiler.deprecation=false -Dtest.includes=NoTestsJustBuild
+}
+
+package() {
+
+  # load script
+  install -Dm755 "nbbuild/${pkgname}/bin/${pkgname}" "$pkgdir/usr/bin/$pkgname"
+
+  # Resources for platform config
+  mkdir -vp "${pkgdir}/usr/lib/${pkgname}"
+  cp -r 
"nbbuild/${pkgname}/"{java,harness,javafx,profiler,nb,ide,extide,apisupport,websvccommon,platform}
 "$pkgdir/usr/lib/${pkgname}"
+
+  # copy cluster configuration
+  install -Dm644 "${srcdir}/nbbuild/netbeans/etc/netbeans."* 

[arch-commits] Commit in netbeans/trunk (PKGBUILD netbeans.clusters)

2018-10-16 Thread Santiago Torres-Arias via arch-commits
Date: Wednesday, October 17, 2018 @ 04:09:23
  Author: sangy
Revision: 394887

upgpkg: netbeans 9.0-1

upgpkg: netbeans 9.0

Added:
  netbeans/trunk/netbeans.clusters
Modified:
  netbeans/trunk/PKGBUILD

---+
 PKGBUILD  |   62 
 netbeans.clusters |   44 
 2 files changed, 78 insertions(+), 28 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-10-17 01:45:55 UTC (rev 394886)
+++ PKGBUILD2018-10-17 04:09:23 UTC (rev 394887)
@@ -4,51 +4,57 @@
 # Contributor: Ben Wolsieffer 
 
 pkgname=netbeans
-pkgver=8.2
-# Get the subver from https://netbeans.org/downloads/zip.html
-_subver=201609300101
+pkgver=9.0
 pkgrel=1
 pkgdesc='IDE for Java, HTML5, PHP, Groovy, C and C++'
 arch=('any')
-url='http://netbeans.org/'
-license=('CDDL')
+url='http://netbeans.apache.org/'
+license=('Apache2')
 # classpath is not needed, see FS#38567 (Oracle JDK does not need atk either)
-depends=('java-environment' 'ttf-font' 'libxtst' 'giflib' 'atk')
-backup=('usr/share/netbeans/etc/netbeans.conf')
-makedepends=('gendesk' 'setconf')
+depends=('java-environment' 'ttf-font' 'jdk10-openjdk')
+makedepends=('ant' 'java-environment' 'jdk8-openjdk')
 optdepends=('php: for developing programs in php'
 'groovy: for developing programs in groovy'
 'lib32-glibc')
-options=('!strip')
-# http://dlc-cdn.sun.com/netbeans/8.1/final/zip/
-source=("http://download.netbeans.org/netbeans/$pkgver/final/zip/netbeans-$pkgver-$_subver.zip;
-
'https://cdn.rawgit.com/ComFreek/chocolatey-packages/779f5c96f817ed1fa0d76fd90841873dc6c0ba74/icons/netbeans.png')
-sha256sums=('ad9888334b9a6c1f1138dcb2eccc8ce4921463e871e46def4ecc617538160948'
-'048112cc3be78f41bf6eca8f664f3e92e97fc68df904ce87a7e0156a18d80c7e')
+source=("https://www.apache.org/dist/incubator/netbeans/incubating-netbeans-java/incubating-9.0/incubating-${pkgname}-java-${pkgver}-source.zip"{,.asc}
+   "netbeans.clusters")
 
-prepare() {
-  gendesk -f -n --pkgname "$pkgname" --pkgdesc "$pkgdesc" \
---custom "StartupWMClass=NetBeans IDE $pkgver" --name "NetBeans" \
---exec 'netbeans %f' --startupnotify true
-  setconf "$pkgname/bin/$pkgname" basedir "/usr/share/$pkgname"
+sha256sums=('cc4cdaf3e1a6c80227410a6e54414e2109516d11a7150b7b9660061135bbc8db'
+'SKIP'
+'a7849ee0f21acef34a7bbd1216e8f822aba38284e3138ea04532224ad6f227c2')
+validpgpkeys=("1A83C352499305B6682E3D95CF7BA0AB1CCF4647")
+
+build() {
+  # full cluster configuration is not available at this time
+  #ant -quiet -Dcluster.config=full
+  export JAVA_HOME=/usr/lib/jvm/java-8-openjdk/
+  ant -quiet -Dnbjdk.home=/usr/lib/jvm/java-8-openjdk 
-Djava.home=/usr/lib/jvm/java-8-openjdk
 }
 
+check() {
+  cd "${srcdir}"
+  ant -quiet test -Djavac.compilerargs=-nowarn 
-Dbuild.compiler.deprecation=false -Dtest.includes=NoTestsJustBuild
+}
+
 package() {
-  mkdir -p "$pkgdir/usr/"{bin,share/applications}
 
-  # Binary file
-  install -Dm755 "$pkgname/bin/$pkgname" "$pkgdir/usr/bin/$pkgname"
+  # load script
+  install -Dm755 "nbbuild/${pkgname}/bin/${pkgname}" "$pkgdir/usr/bin/$pkgname"
 
-  # Resources
-  cp -r "$pkgname" "$pkgdir/usr/share/"
+  # Resources for platform config
+  mkdir -vp "${pkgdir}/usr/lib/${pkgname}"
+  cp -r 
"nbbuild/${pkgname}/"{java,harness,javafx,profiler,nb,ide,extide,apisupport,websvccommon,platform}
 "$pkgdir/usr/lib/${pkgname}"
 
+  # copy cluster configuration
+  install -Dm644 "${srcdir}/nbbuild/netbeans/etc/netbeans."* -t 
"${pkgdir}/usr/etc/"
+  install -Dm644 "netbeans.clusters" -t "${pkgdir}/usr/etc/"
+
   # Desktop shortcut and icon
-  install -Dm644 "$pkgname.desktop" \
+  install -Dm644 "nbbuild/packaging/snap/gui/$pkgname.desktop" \
 "$pkgdir/usr/share/applications/$pkgname.desktop"
-  install -Dm644 "$pkgname.png" "$pkgdir/usr/share/pixmaps/$pkgname.png"
+  sed -i "s/Icon=.*/Icon=\/usr\/share\/pixmaps\/${pkgname}.png/" 
"${pkgdir}/usr/share/applications/${pkgname}.desktop"
+  install -Dm644 "ide.branding/release/${pkgname}.png" 
"$pkgdir/usr/share/pixmaps/$pkgname.png"
 
-  # Cleanup of directory that contains the binary file and .exe-files
-  rm -r "$pkgdir/usr/share/$pkgname/bin"
 }
 
 # getver: netbeans.org

Added: netbeans.clusters
===
--- netbeans.clusters   (rev 0)
+++ netbeans.clusters   2018-10-17 04:09:23 UTC (rev 394887)
@@ -0,0 +1,44 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   

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

2018-10-16 Thread Anatol Pomozov via arch-commits
Date: Wednesday, October 17, 2018 @ 04:08:44
  Author: anatolik
Revision: 336778

archrelease: copy trunk to testing-x86_64

Added:
  alsa-lib/repos/testing-x86_64/
  alsa-lib/repos/testing-x86_64/PKGBUILD
(from rev 336777, alsa-lib/trunk/PKGBUILD)

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

Copied: alsa-lib/repos/testing-x86_64/PKGBUILD (from rev 336777, 
alsa-lib/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2018-10-17 04:08:44 UTC (rev 336778)
@@ -0,0 +1,25 @@
+# Contributor: judd 
+
+pkgname=alsa-lib
+pkgver=1.1.7
+pkgrel=1
+pkgdesc="An alternative implementation of Linux sound support"
+arch=('x86_64')
+url="http://www.alsa-project.org;
+depends=('glibc')
+optdepends=('python2: for python smixer plugin')
+makedepends=('python2')
+license=('LGPL')
+source=(ftp://ftp.alsa-project.org/pub/lib/$pkgname-$pkgver.tar.bz2)
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  ./configure --without-debug --prefix=/usr --with-pythonlibs="-lpthread -lm 
-ldl -lpython2.7" --with-pythonincludes=-I/usr/include/python2.7
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}
+md5sums=('51ca1283e27e7dc10207ccce33919cf2')


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

2018-10-16 Thread Anatol Pomozov via arch-commits
Date: Wednesday, October 17, 2018 @ 04:08:08
  Author: anatolik
Revision: 336777

upgpkg: alsa-lib 1.1.7-1

Modified:
  alsa-lib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-16 21:09:21 UTC (rev 336776)
+++ PKGBUILD2018-10-17 04:08:08 UTC (rev 336777)
@@ -1,7 +1,7 @@
 # Contributor: judd 
 
 pkgname=alsa-lib
-pkgver=1.1.6
+pkgver=1.1.7
 pkgrel=1
 pkgdesc="An alternative implementation of Linux sound support"
 arch=('x86_64')
@@ -22,4 +22,4 @@
   cd "$srcdir/$pkgname-$pkgver"
   make DESTDIR="$pkgdir" install
 }
-md5sums=('2f981a8f7897c59ec2ddc44916d33788')
+md5sums=('51ca1283e27e7dc10207ccce33919cf2')


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

2018-10-16 Thread Brad Fanella via arch-commits
Date: Wednesday, October 17, 2018 @ 01:45:55
  Author: cesura
Revision: 394886

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-10-17 01:45:23 UTC (rev 394885)
+++ PKGBUILD2018-10-17 01:45:55 UTC (rev 394886)
@@ -1,27 +0,0 @@
-# Maintainer: Brad Fanella 
-# Contributor: Martin Wimpress 
-
-pkgname=mate-icon-theme
-pkgver=1.20.1
-pkgrel=1
-pkgdesc="MATE icon theme"
-url="http://mate-desktop.org;
-arch=('any')
-license=('LGPL')
-options=('!emptydirs')
-makedepends=('icon-naming-utils' 'intltool')
-groups=('mate')
-source=("http://pub.mate-desktop.org/releases/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
-sha256sums=('6a6fb81be131c5a9cc2b3e39868e07458e8d619f55039d89d2d3caf079e5f4f7')
-
-build() {
-cd ${pkgname}-${pkgver}
-./configure \
---prefix=/usr
-make
-}
-
-package() {
-cd ${pkgname}-${pkgver}
-make DESTDIR="${pkgdir}" install
-}

Copied: mate-icon-theme/repos/community-any/PKGBUILD (from rev 394885, 
mate-icon-theme/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-10-17 01:45:55 UTC (rev 394886)
@@ -0,0 +1,27 @@
+# Maintainer: Brad Fanella 
+# Contributor: Martin Wimpress 
+
+pkgname=mate-icon-theme
+pkgver=1.20.2
+pkgrel=1
+pkgdesc="MATE icon theme"
+url="http://mate-desktop.org;
+arch=('any')
+license=('LGPL')
+options=('!emptydirs')
+makedepends=('icon-naming-utils' 'intltool')
+groups=('mate')
+source=("http://pub.mate-desktop.org/releases/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
+sha256sums=('d69acb308c563399ac560e60783c22a7808e81967e036d48c5df44071a006cda')
+
+build() {
+cd ${pkgname}-${pkgver}
+./configure \
+--prefix=/usr
+make
+}
+
+package() {
+cd ${pkgname}-${pkgver}
+make DESTDIR="${pkgdir}" install
+}


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

2018-10-16 Thread Brad Fanella via arch-commits
Date: Wednesday, October 17, 2018 @ 01:45:23
  Author: cesura
Revision: 394885

upgpkg: mate-icon-theme 1.20.2-1

Updated to version 1.20.2

Modified:
  mate-icon-theme/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-17 01:41:20 UTC (rev 394884)
+++ PKGBUILD2018-10-17 01:45:23 UTC (rev 394885)
@@ -2,7 +2,7 @@
 # Contributor: Martin Wimpress 
 
 pkgname=mate-icon-theme
-pkgver=1.20.1
+pkgver=1.20.2
 pkgrel=1
 pkgdesc="MATE icon theme"
 url="http://mate-desktop.org;
@@ -12,7 +12,7 @@
 makedepends=('icon-naming-utils' 'intltool')
 groups=('mate')
 
source=("http://pub.mate-desktop.org/releases/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
-sha256sums=('6a6fb81be131c5a9cc2b3e39868e07458e8d619f55039d89d2d3caf079e5f4f7')
+sha256sums=('d69acb308c563399ac560e60783c22a7808e81967e036d48c5df44071a006cda')
 
 build() {
 cd ${pkgname}-${pkgver}


[arch-commits] Commit in xfce4-whiskermenu-plugin/repos/community-x86_64 (2 files)

2018-10-16 Thread Brad Fanella via arch-commits
Date: Wednesday, October 17, 2018 @ 01:41:20
  Author: cesura
Revision: 394884

archrelease: copy trunk to community-x86_64

Added:
  xfce4-whiskermenu-plugin/repos/community-x86_64/PKGBUILD
(from rev 394883, xfce4-whiskermenu-plugin/trunk/PKGBUILD)
Deleted:
  xfce4-whiskermenu-plugin/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-10-17 01:40:42 UTC (rev 394883)
+++ PKGBUILD2018-10-17 01:41:20 UTC (rev 394884)
@@ -1,31 +0,0 @@
-# Maintainer: Brad Fanella 
-# Contributor: Alexander F Rødseth 
-# Contributor: Graeme Gott 
-
-pkgname=xfce4-whiskermenu-plugin
-pkgver=2.2.1
-pkgrel=1
-pkgdesc='Menu for Xfce4'
-arch=('x86_64')
-url='https://gottcode.org/xfce4-whiskermenu-plugin/'
-groups=('xfce4-goodies')
-license=('GPL2')
-depends=('garcon' 'xfce4-panel' 'gtk3>=3.22')
-makedepends=('cmake' 'ninja')
-source=("http://archive.be.xfce.org/src/panel-plugins/xfce4-whiskermenu-plugin/${pkgver%.*}/xfce4-whiskermenu-plugin-$pkgver.tar.bz2;)
 # no https available
-sha256sums=('b5f8efcc94cb26e4394ae599ac5955d745f3c11c39605036709ede5454f302b9')
-
-build() {
-   mkdir -p build
-   cd build
-   cmake "$srcdir/$pkgname-$pkgver" \
-   -DCMAKE_BUILD_TYPE=Release \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DCMAKE_INSTALL_LIBDIR=lib \
-   -GNinja
-   ninja
-}
-
-package() {
-   DESTDIR="$pkgdir" ninja -C build install
-}

Copied: xfce4-whiskermenu-plugin/repos/community-x86_64/PKGBUILD (from rev 
394883, xfce4-whiskermenu-plugin/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-10-17 01:41:20 UTC (rev 394884)
@@ -0,0 +1,31 @@
+# Maintainer: Brad Fanella 
+# Contributor: Alexander F Rødseth 
+# Contributor: Graeme Gott 
+
+pkgname=xfce4-whiskermenu-plugin
+pkgver=2.3.0
+pkgrel=1
+pkgdesc='Menu for Xfce4'
+arch=('x86_64')
+url='https://gottcode.org/xfce4-whiskermenu-plugin/'
+groups=('xfce4-goodies')
+license=('GPL2')
+depends=('garcon' 'xfce4-panel' 'gtk3>=3.22')
+makedepends=('cmake' 'ninja')
+source=("http://archive.be.xfce.org/src/panel-plugins/xfce4-whiskermenu-plugin/${pkgver%.*}/xfce4-whiskermenu-plugin-$pkgver.tar.bz2;)
 # no https available
+sha256sums=('7e569bb0dff7e3db3d964e23323f54c6de7249741c6a0e33a0fa501d83040b16')
+
+build() {
+   mkdir -p build
+   cd build
+   cmake "$srcdir/$pkgname-$pkgver" \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_INSTALL_LIBDIR=lib \
+   -GNinja
+   ninja
+}
+
+package() {
+   DESTDIR="$pkgdir" ninja -C build install
+}


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

2018-10-16 Thread Brad Fanella via arch-commits
Date: Wednesday, October 17, 2018 @ 01:40:42
  Author: cesura
Revision: 394883

upgpkg: xfce4-whiskermenu-plugin 2.3.0-1

Updated to version 2.3.0

Modified:
  xfce4-whiskermenu-plugin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-17 01:16:58 UTC (rev 394882)
+++ PKGBUILD2018-10-17 01:40:42 UTC (rev 394883)
@@ -3,7 +3,7 @@
 # Contributor: Graeme Gott 
 
 pkgname=xfce4-whiskermenu-plugin
-pkgver=2.2.1
+pkgver=2.3.0
 pkgrel=1
 pkgdesc='Menu for Xfce4'
 arch=('x86_64')
@@ -13,7 +13,7 @@
 depends=('garcon' 'xfce4-panel' 'gtk3>=3.22')
 makedepends=('cmake' 'ninja')
 
source=("http://archive.be.xfce.org/src/panel-plugins/xfce4-whiskermenu-plugin/${pkgver%.*}/xfce4-whiskermenu-plugin-$pkgver.tar.bz2;)
 # no https available
-sha256sums=('b5f8efcc94cb26e4394ae599ac5955d745f3c11c39605036709ede5454f302b9')
+sha256sums=('7e569bb0dff7e3db3d964e23323f54c6de7249741c6a0e33a0fa501d83040b16')
 
 build() {
mkdir -p build


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

2018-10-16 Thread Eli Schwartz via arch-commits
Date: Wednesday, October 17, 2018 @ 01:16:58
  Author: eschwartz
Revision: 394882

archrelease: copy trunk to community-x86_64

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

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

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

Copied: cinnamon-settings-daemon/repos/community-x86_64/PKGBUILD (from rev 
394881, cinnamon-settings-daemon/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-10-17 01:16:58 UTC (rev 394882)
@@ -0,0 +1,47 @@
+# Maintainer: Eli Schwartz 
+# Contributor: Alexandre Filgueira (faidoc) 
+# Contributor: Jan Alexander Steffens (heftig) 
+
+pkgname=cinnamon-settings-daemon
+pkgver=3.8.7
+pkgrel=1
+pkgdesc="The Cinnamon Settings daemon"
+arch=('x86_64')
+url="https://github.com/linuxmint/${pkgname};
+license=('GPL')
+depends=('cinnamon-desktop' 'colord' 'dbus-glib' 'libcanberra-pulse' 'libcups'
+ 'libgnomekbd' 'libgudev' 'libnotify' 'librsvg' 'libwacom' 'nss' 
'polkit'
+ 'pulseaudio-alsa' 'upower')
+optdepends=('cinnamon-translations: i18n')
+makedepends=('autoconf-archive' 'intltool' 'python' 'xf86-input-wacom')
+options=('!emptydirs')
+source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
+sha256sums=('d1b716f2bf956b2a57dcd4a3bf907618f2a50be5d799945cf107f0ee56102263')
+
+prepare() {
+cd "${srcdir}"/${pkgname}-${pkgver}
+
+autoreconf -fi
+}
+
+build() {
+cd "${srcdir}"/${pkgname}-${pkgver}
+
+./configure --prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--libexecdir="/usr/lib/${pkgname}" \
+--enable-systemd \
+--enable-polkit
+
+#https://bugzilla.gnome.org/show_bug.cgi?id=656231
+sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+make
+}
+
+package() {
+cd "${srcdir}"/${pkgname}-${pkgver}
+
+make DESTDIR="$pkgdir" install
+}


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

2018-10-16 Thread Eli Schwartz via arch-commits
Date: Wednesday, October 17, 2018 @ 01:16:33
  Author: eschwartz
Revision: 394881

upgpkg: cinnamon-settings-daemon 3.8.7-1

upstream release

Modified:
  cinnamon-settings-daemon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-17 01:16:17 UTC (rev 394880)
+++ PKGBUILD2018-10-17 01:16:33 UTC (rev 394881)
@@ -3,7 +3,7 @@
 # Contributor: Jan Alexander Steffens (heftig) 
 
 pkgname=cinnamon-settings-daemon
-pkgver=3.8.6
+pkgver=3.8.7
 pkgrel=1
 pkgdesc="The Cinnamon Settings daemon"
 arch=('x86_64')
@@ -16,7 +16,7 @@
 makedepends=('autoconf-archive' 'intltool' 'python' 'xf86-input-wacom')
 options=('!emptydirs')
 source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha256sums=('87587fea63ae4b583ec401658a3101b7ec9372a1c5686ae895c21d58eff586ef')
+sha256sums=('d1b716f2bf956b2a57dcd4a3bf907618f2a50be5d799945cf107f0ee56102263')
 
 prepare() {
 cd "${srcdir}"/${pkgname}-${pkgver}


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

2018-10-16 Thread Eli Schwartz via arch-commits
Date: Wednesday, October 17, 2018 @ 01:16:17
  Author: eschwartz
Revision: 394880

archrelease: copy trunk to community-x86_64

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

--+
 PKGBUILD |   91 ++---
 cinnamon-screensaver.pam |   12 ++---
 2 files changed, 51 insertions(+), 52 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-10-17 01:15:57 UTC (rev 394879)
+++ PKGBUILD2018-10-17 01:16:17 UTC (rev 394880)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Eli Schwartz 
-# Contributor: Alexandre Filgueira 
-# Based on gnome-screensaver package:
-# Jan Alexander Steffens (heftig) 
-# Jan de Groot 
-
-pkgname=cinnamon-screensaver
-pkgver=3.8.2
-pkgrel=2
-pkgdesc="Screensaver designed to integrate well with the Cinnamon desktop."
-arch=('x86_64')
-url="https://github.com/linuxmint/${pkgname};
-license=('GPL')
-depends=('accountsservice' 'cinnamon-desktop' 'dbus-glib' 'libgnomekbd'
- 'python-cairo' 'python-gobject' 'python-setproctitle' 'python-xapp' 
'xapps' 'webkit2gtk')
-optdepends=('cinnamon-translations: i18n')
-makedepends=('gobject-introspection' 'intltool')
-backup=('etc/pam.d/cinnamon-screensaver')
-source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz"
-"cinnamon-screensaver.pam")
-sha512sums=('7a05392857d7a259913a2c71f59784877916ee1791b31046fc393bf92220541a23d5a09847eda71b25cb437839705c3a9355abb05b7751779bdd0dc5e428ca9b'
-
'bbda5b733a1b84345e960e463692cc34475176b49c0c55ed49a5eaef46a496e6acda8467d94ebaa8a7a1e23199b94d7685f9b8af048c429df8fccd31cf172e45')
-
-prepare() {
-cd "${srcdir}"/${pkgname}-${pkgver}
-
-autoreconf -fi
-}
-
-build() {
-cd "${srcdir}"/${pkgname}-${pkgver}
-
-./configure --prefix=/usr \
---sysconfdir=/etc \
---libexecdir=/usr/lib/cinnamon-screensaver \
---localstatedir=/var
-make
-}
-
-package() {
-cd "${srcdir}"/${pkgname}-${pkgver}
-
-make DESTDIR="${pkgdir}" install
-install -Dm644 ../cinnamon-screensaver.pam 
"${pkgdir}"/etc/pam.d/cinnamon-screensaver
-}

Copied: cinnamon-screensaver/repos/community-x86_64/PKGBUILD (from rev 394879, 
cinnamon-screensaver/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-10-17 01:16:17 UTC (rev 394880)
@@ -0,0 +1,45 @@
+# Maintainer: Eli Schwartz 
+# Contributor: Alexandre Filgueira 
+# Based on gnome-screensaver package:
+# Jan Alexander Steffens (heftig) 
+# Jan de Groot 
+
+pkgname=cinnamon-screensaver
+pkgver=3.8.3
+pkgrel=1
+pkgdesc="Screensaver designed to integrate well with the Cinnamon desktop."
+arch=('x86_64')
+url="https://github.com/linuxmint/${pkgname};
+license=('GPL')
+depends=('accountsservice' 'cinnamon-desktop' 'dbus-glib' 'libgnomekbd'
+ 'python-cairo' 'python-gobject' 'python-setproctitle' 'python-xapp' 
'xapps' 'webkit2gtk')
+optdepends=('cinnamon-translations: i18n')
+makedepends=('gobject-introspection' 'intltool')
+backup=('etc/pam.d/cinnamon-screensaver')
+source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz"
+"cinnamon-screensaver.pam")
+sha512sums=('1b00927f1ecf49910364576bbc86a37c8cead5928c132b0e233b2e489ead1b8e48385745969ff97c4d717989452ea26c3a5f69a555ca1061529f777a39adbe42'
+
'bbda5b733a1b84345e960e463692cc34475176b49c0c55ed49a5eaef46a496e6acda8467d94ebaa8a7a1e23199b94d7685f9b8af048c429df8fccd31cf172e45')
+
+prepare() {
+cd "${srcdir}"/${pkgname}-${pkgver}
+
+autoreconf -fi
+}
+
+build() {
+cd "${srcdir}"/${pkgname}-${pkgver}
+
+./configure --prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib/cinnamon-screensaver \
+--localstatedir=/var
+make
+}
+
+package() {
+cd "${srcdir}"/${pkgname}-${pkgver}
+
+make DESTDIR="${pkgdir}" install
+install -Dm644 ../cinnamon-screensaver.pam 
"${pkgdir}"/etc/pam.d/cinnamon-screensaver
+}

Deleted: cinnamon-screensaver.pam
===
--- cinnamon-screensaver.pam2018-10-17 01:15:57 UTC (rev 394879)
+++ cinnamon-screensaver.pam2018-10-17 01:16:17 UTC (rev 394880)
@@ -1,6 +0,0 @@
-#%PAM-1.0
-auth   include system-auth
-auth   optional pam_gnome_keyring.so
-accountinclude system-auth
-password   include system-auth
-sessioninclude system-auth
\ No newline at end of file

Copied: 

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

2018-10-16 Thread Eli Schwartz via arch-commits
Date: Wednesday, October 17, 2018 @ 01:15:57
  Author: eschwartz
Revision: 394879

upgpkg: cinnamon-screensaver 3.8.3-1

upstream release

Modified:
  cinnamon-screensaver/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-17 00:17:18 UTC (rev 394878)
+++ PKGBUILD2018-10-17 01:15:57 UTC (rev 394879)
@@ -5,8 +5,8 @@
 # Jan de Groot 
 
 pkgname=cinnamon-screensaver
-pkgver=3.8.2
-pkgrel=2
+pkgver=3.8.3
+pkgrel=1
 pkgdesc="Screensaver designed to integrate well with the Cinnamon desktop."
 arch=('x86_64')
 url="https://github.com/linuxmint/${pkgname};
@@ -18,7 +18,7 @@
 backup=('etc/pam.d/cinnamon-screensaver')
 source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz"
 "cinnamon-screensaver.pam")
-sha512sums=('7a05392857d7a259913a2c71f59784877916ee1791b31046fc393bf92220541a23d5a09847eda71b25cb437839705c3a9355abb05b7751779bdd0dc5e428ca9b'
+sha512sums=('1b00927f1ecf49910364576bbc86a37c8cead5928c132b0e233b2e489ead1b8e48385745969ff97c4d717989452ea26c3a5f69a555ca1061529f777a39adbe42'
 
'bbda5b733a1b84345e960e463692cc34475176b49c0c55ed49a5eaef46a496e6acda8467d94ebaa8a7a1e23199b94d7685f9b8af048c429df8fccd31cf172e45')
 
 prepare() {


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

2018-10-16 Thread Eli Schwartz via arch-commits
Date: Wednesday, October 17, 2018 @ 00:17:18
  Author: eschwartz
Revision: 394878

archrelease: copy trunk to community-any

Added:
  sx/repos/community-any/PKGBUILD
(from rev 394877, sx/trunk/PKGBUILD)
Deleted:
  sx/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-10-17 00:16:56 UTC (rev 394877)
+++ PKGBUILD2018-10-17 00:17:18 UTC (rev 394878)
@@ -1,20 +0,0 @@
-# $Id$
-# Maintainer: Eli Schwartz 
-
-pkgname=sx
-pkgver=2.0
-pkgrel=1
-pkgdesc="Simple alternative to startx(1) for starting an Xorg server."
-arch=('any')
-url="https://github.com/Earnestly/sx;
-license=('MIT')
-depends=('xorg-server' 'xorg-xauth')
-source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha256sums=('c525c8f3605399705b13ca73db37b724b0dc91307486a0a74dd3be7ba14b5f8f')
-
-package() {
-cd "${srcdir}"/${pkgname}-${pkgver}
-
-make PREFIX=/usr DESTDIR="${pkgdir}" install
-install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: sx/repos/community-any/PKGBUILD (from rev 394877, sx/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-10-17 00:17:18 UTC (rev 394878)
@@ -0,0 +1,19 @@
+# Maintainer: Eli Schwartz 
+
+pkgname=sx
+pkgver=2.1
+pkgrel=1
+pkgdesc="Simple alternative to startx(1) for starting an Xorg server."
+arch=('any')
+url="https://github.com/Earnestly/sx;
+license=('MIT')
+depends=('xorg-server' 'xorg-xauth')
+source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
+sha256sums=('55a713f4f026c3844eb0a1079d373051259271929c7766416d11bc537dea3c77')
+
+package() {
+cd "${srcdir}"/${pkgname}-${pkgver}
+
+make PREFIX=/usr DESTDIR="${pkgdir}" install
+install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}


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

2018-10-16 Thread Eli Schwartz via arch-commits
Date: Wednesday, October 17, 2018 @ 00:16:56
  Author: eschwartz
Revision: 394877

upgpkg: sx 2.1-1

minor documentation update

Modified:
  sx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-16 23:08:40 UTC (rev 394876)
+++ PKGBUILD2018-10-17 00:16:56 UTC (rev 394877)
@@ -1,7 +1,7 @@
 # Maintainer: Eli Schwartz 
 
 pkgname=sx
-pkgver=2.0
+pkgver=2.1
 pkgrel=1
 pkgdesc="Simple alternative to startx(1) for starting an Xorg server."
 arch=('any')
@@ -9,7 +9,7 @@
 license=('MIT')
 depends=('xorg-server' 'xorg-xauth')
 source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha256sums=('c525c8f3605399705b13ca73db37b724b0dc91307486a0a74dd3be7ba14b5f8f')
+sha256sums=('55a713f4f026c3844eb0a1079d373051259271929c7766416d11bc537dea3c77')
 
 package() {
 cd "${srcdir}"/${pkgname}-${pkgver}


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

2018-10-16 Thread Levente Polyak via arch-commits
Date: Tuesday, October 16, 2018 @ 23:08:40
  Author: anthraxx
Revision: 394876

archrelease: copy trunk to community-any

Added:
  flyspray/repos/community-any/PKGBUILD
(from rev 394875, flyspray/trunk/PKGBUILD)
Deleted:
  flyspray/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-10-16 23:08:11 UTC (rev 394875)
+++ PKGBUILD2018-10-16 23:08:40 UTC (rev 394876)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-
-pkgname=flyspray
-pkgver=1.0rc6
-pkgrel=1
-pkgdesc="A PHP web-based bug tracker"
-arch=('any')
-url="http://www.flyspray.org/;
-license=('GPL')
-depends=('php')
-makedepends=('unzip')
-backup=('etc/webapps/flyspray/.htaccess')
-options=('!strip')
-noextract=(flyspray-$pkgver.zip)
-source=("$pkgname-$pkgver.tar.gz::https://github.com/Flyspray/flyspray/archive/v${pkgver/rc/-rc}.tar.gz;)
-sha256sums=('41d2cb35bc5bdbac8d47d4cf3865775c9f65beb57559cdb79ac59461c7692081')
-
-package() {
-  _instdir="$pkgdir"/usr/share/webapps/flyspray
-  mkdir -p ${_instdir} "$pkgdir"/etc/webapps/flyspray
-  cd ${_instdir}
-  cp -ra "$srcdir"/flyspray-${pkgver/rc/-rc}/* .
-  echo "deny from all" > "$pkgdir"/etc/webapps/flyspray/.htaccess
-  ln -s /etc/webapps/flyspray/.htaccess .htaccess
-}

Copied: flyspray/repos/community-any/PKGBUILD (from rev 394875, 
flyspray/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-10-16 23:08:40 UTC (rev 394876)
@@ -0,0 +1,26 @@
+# Maintainer: Levente Polyak 
+# Contributor: Sergej Pupykin 
+
+pkgname=flyspray
+pkgver=1.0rc7
+pkgrel=1
+pkgdesc='Lightweight, web-based bug tracking system written in PHP'
+url='https://www.flyspray.org/'
+arch=('any')
+license=('LGPL2.1')
+depends=('php')
+backup=('etc/webapps/flyspray/.htaccess')
+options=('!strip')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/Flyspray/flyspray/archive/v${pkgver/rc/-rc}.tar.gz)
+sha256sums=('b04c4ff059f9a0449279758d196d7843bc99fad2365c930ed9d06e6b55eee9e2')
+
+package() {
+  _instdir="${pkgdir}"/usr/share/webapps/flyspray
+  mkdir -p "${_instdir}" "${pkgdir}"/etc/webapps/flyspray
+  cd "${_instdir}"
+  cp -ra "${srcdir}"/flyspray-${pkgver/rc/-rc}/* .
+  echo "deny from all" > "${pkgdir}"/etc/webapps/flyspray/.htaccess
+  ln -s /etc/webapps/flyspray/.htaccess .htaccess
+}
+
+# vim: ts=2 sw=2 et:


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

2018-10-16 Thread Levente Polyak via arch-commits
Date: Tuesday, October 16, 2018 @ 23:08:11
  Author: anthraxx
Revision: 394875

upgpkg: flyspray 1.0rc7-1

Modified:
  flyspray/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-16 22:35:33 UTC (rev 394874)
+++ PKGBUILD2018-10-16 23:08:11 UTC (rev 394875)
@@ -1,25 +1,26 @@
-# Maintainer: Sergej Pupykin 
+# Maintainer: Levente Polyak 
+# Contributor: Sergej Pupykin 
 
 pkgname=flyspray
-pkgver=1.0rc6
+pkgver=1.0rc7
 pkgrel=1
-pkgdesc="A PHP web-based bug tracker"
+pkgdesc='Lightweight, web-based bug tracking system written in PHP'
+url='https://www.flyspray.org/'
 arch=('any')
-url="http://www.flyspray.org/;
-license=('GPL')
+license=('LGPL2.1')
 depends=('php')
-makedepends=('unzip')
 backup=('etc/webapps/flyspray/.htaccess')
 options=('!strip')
-noextract=(flyspray-$pkgver.zip)
-source=("$pkgname-$pkgver.tar.gz::https://github.com/Flyspray/flyspray/archive/v${pkgver/rc/-rc}.tar.gz;)
-sha256sums=('41d2cb35bc5bdbac8d47d4cf3865775c9f65beb57559cdb79ac59461c7692081')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/Flyspray/flyspray/archive/v${pkgver/rc/-rc}.tar.gz)
+sha256sums=('b04c4ff059f9a0449279758d196d7843bc99fad2365c930ed9d06e6b55eee9e2')
 
 package() {
-  _instdir="$pkgdir"/usr/share/webapps/flyspray
-  mkdir -p ${_instdir} "$pkgdir"/etc/webapps/flyspray
-  cd ${_instdir}
-  cp -ra "$srcdir"/flyspray-${pkgver/rc/-rc}/* .
-  echo "deny from all" > "$pkgdir"/etc/webapps/flyspray/.htaccess
+  _instdir="${pkgdir}"/usr/share/webapps/flyspray
+  mkdir -p "${_instdir}" "${pkgdir}"/etc/webapps/flyspray
+  cd "${_instdir}"
+  cp -ra "${srcdir}"/flyspray-${pkgver/rc/-rc}/* .
+  echo "deny from all" > "${pkgdir}"/etc/webapps/flyspray/.htaccess
   ln -s /etc/webapps/flyspray/.htaccess .htaccess
 }
+
+# vim: ts=2 sw=2 et:


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

2018-10-16 Thread Levente Polyak via arch-commits
Date: Tuesday, October 16, 2018 @ 22:35:33
  Author: anthraxx
Revision: 394874

archrelease: copy trunk to community-x86_64

Added:
  radare2-cutter/repos/community-x86_64/PKGBUILD
(from rev 394873, radare2-cutter/trunk/PKGBUILD)
Deleted:
  radare2-cutter/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-10-16 22:35:27 UTC (rev 394873)
+++ PKGBUILD2018-10-16 22:35:33 UTC (rev 394874)
@@ -1,43 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Aaron McDaniel (mcd1992) <'aur' at the domain 'fgthou.se'>
-
-pkgname=radare2-cutter
-_gitcommit=d510897ad10fdddc5198465ba1c1d80b590cb04a
-pkgver=1.7.1
-pkgrel=1
-pkgdesc='Qt and C++ GUI for radare2 reverse engineering framework'
-url='https://github.com/radareorg/cutter'
-arch=('x86_64')
-license=('GPL3')
-depends=('radare2' 'capstone' 'qt5-base' 'qt5-svg' 'qt5-webengine' 'icu' 
'python')
-makedepends=('git' 'cmake')
-source=(${pkgname}::"git+https://github.com/radareorg/cutter#commit=${_gitcommit};)
-sha512sums=('SKIP')
-
-pkgver() {
-  cd ${pkgname}
-  # remove 'v' prefix on tags; prefix revision with 'r'; replace all '-' with 
'.'
-  git describe --always --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
-}
-
-prepare() {
-  cd ${pkgname}
-  install -d build
-}
-
-build() {
-  cd ${pkgname}/build
-  qmake ../src/Cutter.pro
-  make
-}
-
-package() {
-  cd ${pkgname}
-  install -Dm 755 build/Cutter -t "${pkgdir}/usr/bin"
-  install -Dm 644 src/Cutter.desktop -t "${pkgdir}/usr/share/applications"
-  install -Dm 644 src/img/cutter.svg -t 
"${pkgdir}/usr/share/icons/hicolor/scalable/apps"
-  install -d "${pkgdir}/usr/share/doc/${pkgname}"
-  cp -a docs/* "${pkgdir}/usr/share/doc/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: radare2-cutter/repos/community-x86_64/PKGBUILD (from rev 394873, 
radare2-cutter/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-10-16 22:35:33 UTC (rev 394874)
@@ -0,0 +1,43 @@
+# Maintainer: Levente Polyak 
+# Contributor: Aaron McDaniel (mcd1992) <'aur' at the domain 'fgthou.se'>
+
+pkgname=radare2-cutter
+_gitcommit=705735c150fe17fc0d5bea7c9fe5b2522081ed4e
+pkgver=1.7.2.r20.g705735c
+pkgrel=1
+pkgdesc='Qt and C++ GUI for radare2 reverse engineering framework'
+url='https://github.com/radareorg/cutter'
+arch=('x86_64')
+license=('GPL3')
+depends=('radare2' 'capstone' 'qt5-base' 'qt5-svg' 'qt5-webengine' 'icu' 
'python')
+makedepends=('git' 'cmake')
+source=(${pkgname}::"git+https://github.com/radareorg/cutter#commit=${_gitcommit};)
+sha512sums=('SKIP')
+
+pkgver() {
+  cd ${pkgname}
+  # remove 'v' prefix on tags; prefix revision with 'r'; replace all '-' with 
'.'
+  git describe --always --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
+}
+
+prepare() {
+  cd ${pkgname}
+  install -d build
+}
+
+build() {
+  cd ${pkgname}/build
+  qmake ../src/Cutter.pro
+  make
+}
+
+package() {
+  cd ${pkgname}
+  install -Dm 755 build/Cutter -t "${pkgdir}/usr/bin"
+  install -Dm 644 src/Cutter.desktop -t "${pkgdir}/usr/share/applications"
+  install -Dm 644 src/img/cutter.svg -t 
"${pkgdir}/usr/share/icons/hicolor/scalable/apps"
+  install -d "${pkgdir}/usr/share/doc/${pkgname}"
+  cp -a docs/* "${pkgdir}/usr/share/doc/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:


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

2018-10-16 Thread Levente Polyak via arch-commits
Date: Tuesday, October 16, 2018 @ 22:35:27
  Author: anthraxx
Revision: 394873

upgpkg: radare2-cutter 1.7.2.r20.g705735c-1

Modified:
  radare2-cutter/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-16 22:18:46 UTC (rev 394872)
+++ PKGBUILD2018-10-16 22:35:27 UTC (rev 394873)
@@ -2,8 +2,8 @@
 # Contributor: Aaron McDaniel (mcd1992) <'aur' at the domain 'fgthou.se'>
 
 pkgname=radare2-cutter
-_gitcommit=d510897ad10fdddc5198465ba1c1d80b590cb04a
-pkgver=1.7.1
+_gitcommit=705735c150fe17fc0d5bea7c9fe5b2522081ed4e
+pkgver=1.7.2.r20.g705735c
 pkgrel=1
 pkgdesc='Qt and C++ GUI for radare2 reverse engineering framework'
 url='https://github.com/radareorg/cutter'


  1   2   3   4   5   6   >