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

2018-08-30 Thread David Runge via arch-commits
Date: Thursday, August 30, 2018 @ 23:54:47
  Author: dvzrv
Revision: 375798

upgpkg: clthreads 2.4.2-1

Upgrading to 2.4.2. Removing use of Makefile install target as it's too broken 
and installing things manually.

Modified:
  clthreads/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-30 23:41:02 UTC (rev 375797)
+++ PKGBUILD2018-08-30 23:54:47 UTC (rev 375798)
@@ -7,8 +7,8 @@
 # Contributor: Philipp Überbacher 
 
 pkgname=clthreads
-pkgver=2.4.0
-pkgrel=4
+pkgver=2.4.2
+pkgrel=1
 pkgdesc="C++ wrapper library around the POSIX threads API"
 arch=('x86_64')
 url="https://kokkinizita.linuxaudio.org/linuxaudio/;
@@ -15,16 +15,27 @@
 license=('LGPL')
 depends=('gcc-libs')
 source=("${url}downloads/${pkgname}-${pkgver}.tar.bz2")
-sha512sums=('c307d9611e0530469b36367f05721e6676d7bb186be97d38b851e66d9f670663ceceedf065823b27ac5864725d52cc2f462fd8d96f1398a202e30d82910ec58b')
+sha512sums=('a91de7a287c2cb9b2ce17e4c158db79bbaeccb278510d11e6c05fcbe9295c26b4d0231fa97800b265decd1d0886b7425f7b5d4cbcb18758be540356408e72131')
 
+prepare() {
+  cd "${pkgname}-${pkgver}/source"
+  # remove optimization
+  # remove local call to ldconfig
+  sed -e '/native/d' \
+  -e '/ldconfig/d' \
+  -i Makefile
+}
+
 build() {
-  cd "${pkgname}-${pkgver}"
+  cd "${pkgname}-${pkgver}/source"
   make
 }
 
 package(){
-  cd "${pkgname}-${pkgver}"
-  # mandatory fix for broken Makefile behavior (upstream fix is requested)
-  install -d "${pkgdir}/usr/include"
-  make PREFIX="${pkgdir}/usr" LIBDIR=lib install
+  cd "${pkgname}-${pkgver}/source"
+  # install header, shared object and symlink manually, as Makefile is broken
+  install -vDm 644 "${pkgname}.h" -t "${pkgdir}/usr/include/"
+  install -vDm 755 "lib${pkgname}.so.${pkgver}" -t "${pkgdir}/usr/lib/"
+  ln -sv "lib${pkgname}.so.${pkgver}" "${pkgdir}/usr/lib/lib${pkgname}.so"
+  install -vDm 644 ../AUTHORS -t "${pkgdir}/usr/share/doc/${pkgname}"
 }


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

2018-08-30 Thread David Runge via arch-commits
Date: Thursday, August 30, 2018 @ 23:54:53
  Author: dvzrv
Revision: 375799

archrelease: copy trunk to community-testing-x86_64

Added:
  clthreads/repos/community-testing-x86_64/
  clthreads/repos/community-testing-x86_64/PKGBUILD
(from rev 375798, clthreads/trunk/PKGBUILD)

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

Copied: clthreads/repos/community-testing-x86_64/PKGBUILD (from rev 375798, 
clthreads/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2018-08-30 23:54:53 UTC (rev 375799)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: David Runge 
+# Contributor: speps 
+# Contributor: Christoph Zeiler 
+# Contributor: Tom K 
+# Contributor: Shinlun Hsieh 
+# Contributor: Philipp Überbacher 
+
+pkgname=clthreads
+pkgver=2.4.2
+pkgrel=1
+pkgdesc="C++ wrapper library around the POSIX threads API"
+arch=('x86_64')
+url="https://kokkinizita.linuxaudio.org/linuxaudio/;
+license=('LGPL')
+depends=('gcc-libs')
+source=("${url}downloads/${pkgname}-${pkgver}.tar.bz2")
+sha512sums=('a91de7a287c2cb9b2ce17e4c158db79bbaeccb278510d11e6c05fcbe9295c26b4d0231fa97800b265decd1d0886b7425f7b5d4cbcb18758be540356408e72131')
+
+prepare() {
+  cd "${pkgname}-${pkgver}/source"
+  # remove optimization
+  # remove local call to ldconfig
+  sed -e '/native/d' \
+  -e '/ldconfig/d' \
+  -i Makefile
+}
+
+build() {
+  cd "${pkgname}-${pkgver}/source"
+  make
+}
+
+package(){
+  cd "${pkgname}-${pkgver}/source"
+  # install header, shared object and symlink manually, as Makefile is broken
+  install -vDm 644 "${pkgname}.h" -t "${pkgdir}/usr/include/"
+  install -vDm 755 "lib${pkgname}.so.${pkgver}" -t "${pkgdir}/usr/lib/"
+  ln -sv "lib${pkgname}.so.${pkgver}" "${pkgdir}/usr/lib/lib${pkgname}.so"
+  install -vDm 644 ../AUTHORS -t "${pkgdir}/usr/share/doc/${pkgname}"
+}


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

2018-08-30 Thread Anatol Pomozov via arch-commits
Date: Thursday, August 30, 2018 @ 23:41:02
  Author: anatolik
Revision: 375797

archrelease: copy trunk to community-any

Added:
  ruby-rspec/repos/community-any/PKGBUILD
(from rev 375796, ruby-rspec/trunk/PKGBUILD)
Deleted:
  ruby-rspec/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-08-30 23:40:33 UTC (rev 375796)
+++ PKGBUILD2018-08-30 23:41:02 UTC (rev 375797)
@@ -1,26 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Artem Vorotnikov 
-
-_gemname=rspec
-pkgname=ruby-${_gemname}
-pkgver=3.7.0
-pkgrel=2
-pkgdesc='RSpec meta-gem that depends on the other components'
-url='https://github.com/rspec/rspec'
-arch=('any')
-license=('MIT')
-depends=('ruby-rspec-core' 'ruby-rspec-expectations' 'ruby-rspec-mocks')
-options=('!emptydirs')
-source=(https://rubygems.org/downloads/${_gemname}-${pkgver}.gem)
-noextract=(${_gemname}-${pkgver}.gem)
-sha512sums=('5c10a878e9697030783c987ee9a6244b36cf85a2a3fb8c28bf9771900a3259da4f19c7f159180b5ff9140ab715b38b5d90cd5e0014ac1862f478c32a95e7edfd')
-
-package() {
-  local _gemdir="$(ruby -e'puts Gem.default_dir')"
-  gem install --ignore-dependencies --no-user-install -i "${pkgdir}${_gemdir}" 
-n "${pkgdir}/usr/bin" ${_gemname}-${pkgver}.gem
-  install -Dm 644 "${pkgdir}${_gemdir}/gems/${_gemname}-${pkgver}/LICENSE.md" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  install -Dm 644 "${pkgdir}${_gemdir}/gems/${_gemname}-${pkgver}/README.md" 
"${pkgdir}/usr/share/doc/${pkgname}/README"
-  rm "${pkgdir}/${_gemdir}/cache/${_gemname}-${pkgver}.gem"
-}
-
-# vim: ts=2 sw=2 et:

Copied: ruby-rspec/repos/community-any/PKGBUILD (from rev 375796, 
ruby-rspec/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-08-30 23:41:02 UTC (rev 375797)
@@ -0,0 +1,26 @@
+# Maintainer: Levente Polyak 
+# Contributor: Artem Vorotnikov 
+
+_gemname=rspec
+pkgname=ruby-${_gemname}
+pkgver=3.8.0
+pkgrel=1
+pkgdesc='RSpec meta-gem that depends on the other components'
+url='https://github.com/rspec/rspec'
+arch=('any')
+license=('MIT')
+depends=('ruby-rspec-core' 'ruby-rspec-expectations' 'ruby-rspec-mocks')
+options=('!emptydirs')
+source=(https://rubygems.org/downloads/${_gemname}-${pkgver}.gem)
+noextract=(${_gemname}-${pkgver}.gem)
+sha512sums=('aa3ecee499240a26866797c00461c7e63915bb84a9a29afce75bd4e7864027588bafde05b108aa7b6d988c1a123265587db807567a8e0f3d03527b0f2d8329ba')
+
+package() {
+  local _gemdir="$(ruby -e'puts Gem.default_dir')"
+  gem install --ignore-dependencies --no-user-install -i "${pkgdir}${_gemdir}" 
-n "${pkgdir}/usr/bin" ${_gemname}-${pkgver}.gem
+  install -Dm 644 "${pkgdir}${_gemdir}/gems/${_gemname}-${pkgver}/LICENSE.md" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -Dm 644 "${pkgdir}${_gemdir}/gems/${_gemname}-${pkgver}/README.md" 
"${pkgdir}/usr/share/doc/${pkgname}/README"
+  rm "${pkgdir}/${_gemdir}/cache/${_gemname}-${pkgver}.gem"
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in ruby-rspec-core/repos/community-any (PKGBUILD PKGBUILD)

2018-08-30 Thread Anatol Pomozov via arch-commits
Date: Thursday, August 30, 2018 @ 23:40:06
  Author: anatolik
Revision: 375795

archrelease: copy trunk to community-any

Added:
  ruby-rspec-core/repos/community-any/PKGBUILD
(from rev 375794, ruby-rspec-core/trunk/PKGBUILD)
Deleted:
  ruby-rspec-core/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-08-30 23:39:32 UTC (rev 375794)
+++ PKGBUILD2018-08-30 23:40:06 UTC (rev 375795)
@@ -1,26 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Artem Vorotnikov 
-
-_gemname=rspec-core
-pkgname=ruby-${_gemname}
-pkgver=3.7.1
-pkgrel=1
-pkgdesc='RSpec runner and formatters'
-url='https://github.com/rspec/rspec-core'
-arch=('any')
-license=('MIT')
-depends=('ruby-rspec-support')
-options=('!emptydirs')
-source=(https://rubygems.org/downloads/${_gemname}-${pkgver}.gem)
-noextract=(${_gemname}-${pkgver}.gem)
-sha512sums=('86e091642e35d41a82a20e314cd71fe23e1de1bd6008d9fed82b5078616aa1815e5a1f049a996283d90d8b638e3b0e004ecd9136f0b85d60b1636929f39fa511')
-
-package() {
-  local _gemdir="$(gem environment gemdir)"
-  gem install --ignore-dependencies --no-user-install -i "${pkgdir}${_gemdir}" 
-n "${pkgdir}/usr/bin" ${_gemname}-${pkgver}.gem
-  install -Dm 644 "${pkgdir}${_gemdir}/gems/${_gemname}-${pkgver}/LICENSE.md" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  install -Dm 644 "${pkgdir}${_gemdir}/gems/${_gemname}-${pkgver}/README.md" 
"${pkgdir}/usr/share/doc/${pkgname}/README"
-  rm "${pkgdir}/${_gemdir}/cache/${_gemname}-${pkgver}.gem"
-}
-
-# vim: ts=2 sw=2 et:

Copied: ruby-rspec-core/repos/community-any/PKGBUILD (from rev 375794, 
ruby-rspec-core/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-08-30 23:40:06 UTC (rev 375795)
@@ -0,0 +1,26 @@
+# Maintainer: Levente Polyak 
+# Contributor: Artem Vorotnikov 
+
+_gemname=rspec-core
+pkgname=ruby-${_gemname}
+pkgver=3.8.0
+pkgrel=1
+pkgdesc='RSpec runner and formatters'
+url='https://github.com/rspec/rspec-core'
+arch=('any')
+license=('MIT')
+depends=('ruby-rspec-support')
+options=('!emptydirs')
+source=(https://rubygems.org/downloads/${_gemname}-${pkgver}.gem)
+noextract=(${_gemname}-${pkgver}.gem)
+sha512sums=('c3163b4bc8463c9b6ac86921fb315d000b944f7b825f489ebc264473aa3ee8a61eb7bec92b7b528da40a051a83ef14d341790087d21746b1da142981f5d16ab0')
+
+package() {
+  local _gemdir="$(gem environment gemdir)"
+  gem install --ignore-dependencies --no-user-install -i "${pkgdir}${_gemdir}" 
-n "${pkgdir}/usr/bin" ${_gemname}-${pkgver}.gem
+  install -Dm 644 "${pkgdir}${_gemdir}/gems/${_gemname}-${pkgver}/LICENSE.md" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -Dm 644 "${pkgdir}${_gemdir}/gems/${_gemname}-${pkgver}/README.md" 
"${pkgdir}/usr/share/doc/${pkgname}/README"
+  rm "${pkgdir}/${_gemdir}/cache/${_gemname}-${pkgver}.gem"
+}
+
+# vim: ts=2 sw=2 et:


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

2018-08-30 Thread Anatol Pomozov via arch-commits
Date: Thursday, August 30, 2018 @ 23:40:33
  Author: anatolik
Revision: 375796

upgpkg: ruby-rspec 3.8.0-1

Modified:
  ruby-rspec/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-30 23:40:06 UTC (rev 375795)
+++ PKGBUILD2018-08-30 23:40:33 UTC (rev 375796)
@@ -3,8 +3,8 @@
 
 _gemname=rspec
 pkgname=ruby-${_gemname}
-pkgver=3.7.0
-pkgrel=2
+pkgver=3.8.0
+pkgrel=1
 pkgdesc='RSpec meta-gem that depends on the other components'
 url='https://github.com/rspec/rspec'
 arch=('any')
@@ -13,7 +13,7 @@
 options=('!emptydirs')
 source=(https://rubygems.org/downloads/${_gemname}-${pkgver}.gem)
 noextract=(${_gemname}-${pkgver}.gem)
-sha512sums=('5c10a878e9697030783c987ee9a6244b36cf85a2a3fb8c28bf9771900a3259da4f19c7f159180b5ff9140ab715b38b5d90cd5e0014ac1862f478c32a95e7edfd')
+sha512sums=('aa3ecee499240a26866797c00461c7e63915bb84a9a29afce75bd4e7864027588bafde05b108aa7b6d988c1a123265587db807567a8e0f3d03527b0f2d8329ba')
 
 package() {
   local _gemdir="$(ruby -e'puts Gem.default_dir')"


[arch-commits] Commit in ruby-rspec-core/trunk (PKGBUILD)

2018-08-30 Thread Anatol Pomozov via arch-commits
Date: Thursday, August 30, 2018 @ 23:39:32
  Author: anatolik
Revision: 375794

upgpkg: ruby-rspec-core 3.8.0-1

Modified:
  ruby-rspec-core/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-30 23:39:21 UTC (rev 375793)
+++ PKGBUILD2018-08-30 23:39:32 UTC (rev 375794)
@@ -3,7 +3,7 @@
 
 _gemname=rspec-core
 pkgname=ruby-${_gemname}
-pkgver=3.7.1
+pkgver=3.8.0
 pkgrel=1
 pkgdesc='RSpec runner and formatters'
 url='https://github.com/rspec/rspec-core'
@@ -13,7 +13,7 @@
 options=('!emptydirs')
 source=(https://rubygems.org/downloads/${_gemname}-${pkgver}.gem)
 noextract=(${_gemname}-${pkgver}.gem)
-sha512sums=('86e091642e35d41a82a20e314cd71fe23e1de1bd6008d9fed82b5078616aa1815e5a1f049a996283d90d8b638e3b0e004ecd9136f0b85d60b1636929f39fa511')
+sha512sums=('c3163b4bc8463c9b6ac86921fb315d000b944f7b825f489ebc264473aa3ee8a61eb7bec92b7b528da40a051a83ef14d341790087d21746b1da142981f5d16ab0')
 
 package() {
   local _gemdir="$(gem environment gemdir)"


[arch-commits] Commit in ruby-rspec-expectations/repos/community-any (2 files)

2018-08-30 Thread Anatol Pomozov via arch-commits
Date: Thursday, August 30, 2018 @ 23:39:21
  Author: anatolik
Revision: 375793

archrelease: copy trunk to community-any

Added:
  ruby-rspec-expectations/repos/community-any/PKGBUILD
(from rev 375792, ruby-rspec-expectations/trunk/PKGBUILD)
Deleted:
  ruby-rspec-expectations/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-08-30 23:38:52 UTC (rev 375792)
+++ PKGBUILD2018-08-30 23:39:21 UTC (rev 375793)
@@ -1,26 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Artem Vorotnikov 
-
-_gemname=rspec-expectations
-pkgname=ruby-${_gemname}
-pkgver=3.7.0
-pkgrel=2
-pkgdesc='Provides a readable API to express expected outcomes of a code 
example'
-url='https://github.com/rspec/rspec-expectations'
-arch=('any')
-license=('MIT')
-depends=('ruby-rspec-support' 'ruby-diff-lcs')
-options=('!emptydirs')
-source=(https://rubygems.org/downloads/${_gemname}-${pkgver}.gem)
-noextract=(${_gemname}-${pkgver}.gem)
-sha512sums=('011575f87fb26ea3dd04ebff30f94c6686f07508c3adfd5b1fe6cde12758bd05773b685e45d4596f860b85de74da14ea80072ac09932aa0ab30e06304a24')
-
-package() {
-  local _gemdir="$(ruby -e'puts Gem.default_dir')"
-  gem install --ignore-dependencies --no-user-install -i "${pkgdir}${_gemdir}" 
-n "${pkgdir}/usr/bin" ${_gemname}-${pkgver}.gem
-  install -Dm 644 "${pkgdir}${_gemdir}/gems/${_gemname}-${pkgver}/LICENSE.md" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  install -Dm 644 "${pkgdir}${_gemdir}/gems/${_gemname}-${pkgver}/README.md" 
"${pkgdir}/usr/share/doc/${pkgname}/README"
-  rm "${pkgdir}/${_gemdir}/cache/${_gemname}-${pkgver}.gem"
-}
-
-# vim: ts=2 sw=2 et:

Copied: ruby-rspec-expectations/repos/community-any/PKGBUILD (from rev 375792, 
ruby-rspec-expectations/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-08-30 23:39:21 UTC (rev 375793)
@@ -0,0 +1,26 @@
+# Maintainer: Levente Polyak 
+# Contributor: Artem Vorotnikov 
+
+_gemname=rspec-expectations
+pkgname=ruby-${_gemname}
+pkgver=3.8.1
+pkgrel=1
+pkgdesc='Provides a readable API to express expected outcomes of a code 
example'
+url='https://github.com/rspec/rspec-expectations'
+arch=('any')
+license=('MIT')
+depends=('ruby-rspec-support' 'ruby-diff-lcs')
+options=('!emptydirs')
+source=(https://rubygems.org/downloads/${_gemname}-${pkgver}.gem)
+noextract=(${_gemname}-${pkgver}.gem)
+sha512sums=('38964a6e98eb6be70ef097747956a441c5792fec7792c52a3a4801b7a567d4a4a70fc9de4c5f9c4254d9cfd9b5d8d21db7515e1ce0bc5018dfc565b380df6777')
+
+package() {
+  local _gemdir="$(ruby -e'puts Gem.default_dir')"
+  gem install --ignore-dependencies --no-user-install -i "${pkgdir}${_gemdir}" 
-n "${pkgdir}/usr/bin" ${_gemname}-${pkgver}.gem
+  install -Dm 644 "${pkgdir}${_gemdir}/gems/${_gemname}-${pkgver}/LICENSE.md" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -Dm 644 "${pkgdir}${_gemdir}/gems/${_gemname}-${pkgver}/README.md" 
"${pkgdir}/usr/share/doc/${pkgname}/README"
+  rm "${pkgdir}/${_gemdir}/cache/${_gemname}-${pkgver}.gem"
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in ruby-rspec-expectations/trunk (PKGBUILD)

2018-08-30 Thread Anatol Pomozov via arch-commits
Date: Thursday, August 30, 2018 @ 23:38:52
  Author: anatolik
Revision: 375792

upgpkg: ruby-rspec-expectations 3.8.1-1

Modified:
  ruby-rspec-expectations/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-30 23:38:36 UTC (rev 375791)
+++ PKGBUILD2018-08-30 23:38:52 UTC (rev 375792)
@@ -3,8 +3,8 @@
 
 _gemname=rspec-expectations
 pkgname=ruby-${_gemname}
-pkgver=3.7.0
-pkgrel=2
+pkgver=3.8.1
+pkgrel=1
 pkgdesc='Provides a readable API to express expected outcomes of a code 
example'
 url='https://github.com/rspec/rspec-expectations'
 arch=('any')
@@ -13,7 +13,7 @@
 options=('!emptydirs')
 source=(https://rubygems.org/downloads/${_gemname}-${pkgver}.gem)
 noextract=(${_gemname}-${pkgver}.gem)
-sha512sums=('011575f87fb26ea3dd04ebff30f94c6686f07508c3adfd5b1fe6cde12758bd05773b685e45d4596f860b85de74da14ea80072ac09932aa0ab30e06304a24')
+sha512sums=('38964a6e98eb6be70ef097747956a441c5792fec7792c52a3a4801b7a567d4a4a70fc9de4c5f9c4254d9cfd9b5d8d21db7515e1ce0bc5018dfc565b380df6777')
 
 package() {
   local _gemdir="$(ruby -e'puts Gem.default_dir')"


[arch-commits] Commit in ruby-rspec-support/repos/community-any (PKGBUILD PKGBUILD)

2018-08-30 Thread Anatol Pomozov via arch-commits
Date: Thursday, August 30, 2018 @ 23:38:36
  Author: anatolik
Revision: 375791

archrelease: copy trunk to community-any

Added:
  ruby-rspec-support/repos/community-any/PKGBUILD
(from rev 375790, ruby-rspec-support/trunk/PKGBUILD)
Deleted:
  ruby-rspec-support/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-08-30 23:38:05 UTC (rev 375790)
+++ PKGBUILD2018-08-30 23:38:36 UTC (rev 375791)
@@ -1,26 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Artem Vorotnikov 
-
-_gemname=rspec-support
-pkgname=ruby-${_gemname}
-pkgver=3.7.1
-pkgrel=1
-pkgdesc='Common code needed by the other RSpec gems. Not intended for direct 
use'
-url='https://github.com/rspec/rspec-support'
-arch=('any')
-license=('MIT')
-depends=('ruby' 'ruby-rdoc')
-options=('!emptydirs')
-source=(https://rubygems.org/downloads/${_gemname}-${pkgver}.gem)
-noextract=(${_gemname}-${pkgver}.gem)
-sha512sums=('0f4c70d446d3dd0890adface47d14a138409c2b6e2ec207b7ecef87ff6baeeab14f1f905c52e1b0104854faaef3f28ab468667fe3072227333f48d73e44ad9a4')
-
-package() {
-  local _gemdir="$(gem env gemdir)"
-  gem install --ignore-dependencies --no-user-install -i "${pkgdir}${_gemdir}" 
-n "${pkgdir}/usr/bin" ${_gemname}-${pkgver}.gem
-  install -Dm 644 "${pkgdir}${_gemdir}/gems/${_gemname}-${pkgver}/LICENSE.md" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  install -Dm 644 "${pkgdir}${_gemdir}/gems/${_gemname}-${pkgver}/README.md" 
"${pkgdir}/usr/share/doc/${pkgname}/README"
-  rm "${pkgdir}/${_gemdir}/cache/${_gemname}-${pkgver}.gem"
-}
-
-# vim: ts=2 sw=2 et:

Copied: ruby-rspec-support/repos/community-any/PKGBUILD (from rev 375790, 
ruby-rspec-support/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-08-30 23:38:36 UTC (rev 375791)
@@ -0,0 +1,26 @@
+# Maintainer: Levente Polyak 
+# Contributor: Artem Vorotnikov 
+
+_gemname=rspec-support
+pkgname=ruby-${_gemname}
+pkgver=3.8.0
+pkgrel=1
+pkgdesc='Common code needed by the other RSpec gems. Not intended for direct 
use'
+url='https://github.com/rspec/rspec-support'
+arch=('any')
+license=('MIT')
+depends=('ruby' 'ruby-rdoc')
+options=('!emptydirs')
+source=(https://rubygems.org/downloads/${_gemname}-${pkgver}.gem)
+noextract=(${_gemname}-${pkgver}.gem)
+sha512sums=('b508ade0607a7628eb281fd4347d70eb43759d4a92e694588d8e0dc276f64caf522f4bc6d18c8e3e5cfd8317f9f96473f7322452590f12877c1a05c5f736b4c5')
+
+package() {
+  local _gemdir="$(gem env gemdir)"
+  gem install --ignore-dependencies --no-user-install -i "${pkgdir}${_gemdir}" 
-n "${pkgdir}/usr/bin" ${_gemname}-${pkgver}.gem
+  install -Dm 644 "${pkgdir}${_gemdir}/gems/${_gemname}-${pkgver}/LICENSE.md" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -Dm 644 "${pkgdir}${_gemdir}/gems/${_gemname}-${pkgver}/README.md" 
"${pkgdir}/usr/share/doc/${pkgname}/README"
+  rm "${pkgdir}/${_gemdir}/cache/${_gemname}-${pkgver}.gem"
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in ruby-rspec-support/trunk (PKGBUILD)

2018-08-30 Thread Anatol Pomozov via arch-commits
Date: Thursday, August 30, 2018 @ 23:38:05
  Author: anatolik
Revision: 375790

upgpkg: ruby-rspec-support 3.8.0-1

Modified:
  ruby-rspec-support/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-30 21:55:21 UTC (rev 375789)
+++ PKGBUILD2018-08-30 23:38:05 UTC (rev 375790)
@@ -3,7 +3,7 @@
 
 _gemname=rspec-support
 pkgname=ruby-${_gemname}
-pkgver=3.7.1
+pkgver=3.8.0
 pkgrel=1
 pkgdesc='Common code needed by the other RSpec gems. Not intended for direct 
use'
 url='https://github.com/rspec/rspec-support'
@@ -13,7 +13,7 @@
 options=('!emptydirs')
 source=(https://rubygems.org/downloads/${_gemname}-${pkgver}.gem)
 noextract=(${_gemname}-${pkgver}.gem)
-sha512sums=('0f4c70d446d3dd0890adface47d14a138409c2b6e2ec207b7ecef87ff6baeeab14f1f905c52e1b0104854faaef3f28ab468667fe3072227333f48d73e44ad9a4')
+sha512sums=('b508ade0607a7628eb281fd4347d70eb43759d4a92e694588d8e0dc276f64caf522f4bc6d18c8e3e5cfd8317f9f96473f7322452590f12877c1a05c5f736b4c5')
 
 package() {
   local _gemdir="$(gem env gemdir)"


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

2018-08-30 Thread Antonio Rojas via arch-commits
Date: Thursday, August 30, 2018 @ 22:41:24
  Author: arojas
Revision: 333151

archrelease: copy trunk to extra-x86_64

Added:
  kdiff3/repos/extra-x86_64/PKGBUILD
(from rev 333150, kdiff3/trunk/PKGBUILD)
Deleted:
  kdiff3/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-08-30 22:41:00 UTC (rev 333150)
+++ PKGBUILD2018-08-30 22:41:24 UTC (rev 333151)
@@ -1,31 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Maintainer: Eric Bélanger 
-
-pkgname=kdiff3
-pkgver=0.9.98.git20180821
-pkgrel=1
-_commit=6febacced6f69bfd9c1a77762d01ce975d1b6203
-pkgdesc="A KDE file comparator/merge tool"
-arch=(x86_64)
-url="https://kdiff3.sourceforge.net/;
-license=(GPL)
-depends=(kparts hicolor-icon-theme)
-makedepends=(extra-cmake-modules kdoctools git)
-source=(git://git.kde.org/kdiff3#commit=$_commit)
-sha256sums=('SKIP')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: kdiff3/repos/extra-x86_64/PKGBUILD (from rev 333150, 
kdiff3/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-08-30 22:41:24 UTC (rev 333151)
@@ -0,0 +1,31 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Eric Bélanger 
+
+pkgname=kdiff3
+pkgver=0.9.98.git20180830
+pkgrel=1
+_commit=3edcd8f9ddf407ea04aa88e027ce59cbdc0eb683
+pkgdesc="A KDE file comparator/merge tool"
+arch=(x86_64)
+url="https://kdiff3.sourceforge.net/;
+license=(GPL)
+depends=(kparts hicolor-icon-theme)
+makedepends=(extra-cmake-modules kdoctools git)
+source=(git://git.kde.org/kdiff3#commit=$_commit)
+sha256sums=('SKIP')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


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

2018-08-30 Thread Antonio Rojas via arch-commits
Date: Thursday, August 30, 2018 @ 22:41:00
  Author: arojas
Revision: 333150

New snapshot

Modified:
  kdiff3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-30 22:16:15 UTC (rev 333149)
+++ PKGBUILD2018-08-30 22:41:00 UTC (rev 333150)
@@ -2,9 +2,9 @@
 # Maintainer: Eric Bélanger 
 
 pkgname=kdiff3
-pkgver=0.9.98.git20180821
+pkgver=0.9.98.git20180830
 pkgrel=1
-_commit=6febacced6f69bfd9c1a77762d01ce975d1b6203
+_commit=3edcd8f9ddf407ea04aa88e027ce59cbdc0eb683
 pkgdesc="A KDE file comparator/merge tool"
 arch=(x86_64)
 url="https://kdiff3.sourceforge.net/;


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

2018-08-30 Thread Jan Steffens via arch-commits
Date: Thursday, August 30, 2018 @ 22:16:15
  Author: heftig
Revision: 333149

archrelease: copy trunk to testing-x86_64

Added:
  dbus/repos/testing-x86_64/
  dbus/repos/testing-x86_64/PKGBUILD
(from rev 333148, dbus/trunk/PKGBUILD)

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

Copied: dbus/repos/testing-x86_64/PKGBUILD (from rev 333148, 
dbus/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2018-08-30 22:16:15 UTC (rev 333149)
@@ -0,0 +1,86 @@
+# Maintainer: Jan de Groot 
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Tom Gundersen 
+# Contributor: Link Dupont 
+
+pkgbase=dbus
+pkgname=(dbus dbus-docs)
+pkgver=1.12.10
+pkgrel=2
+pkgdesc="Freedesktop.org message bus system"
+url="https://wiki.freedesktop.org/www/Software/dbus/;
+arch=(x86_64)
+license=(GPL custom)
+depends=(libsystemd expat)
+makedepends=(systemd xmlto docbook-xsl python yelp-tools doxygen git 
autoconf-archive graphviz)
+_commit=f98e784bb6f18b4c28feca6a6e9d12b7bf021a00  # tags/dbus-1.12.10^0
+source=("git+https://anongit.freedesktop.org/git/dbus/dbus#commit=$_commit;)
+sha256sums=('SKIP')
+validpgpkeys=('DA98F25C0871C49A59EAFF2C4DE8FF2A63C7CC90'  # Simon McVittie 

+  '3C8672A0F49637FE064AC30F52A43A1E4B77B059') # Simon McVittie 

+
+pkgver() {
+  cd dbus
+  git describe --tags | sed 's/^dbus-//;s/-/+/g'
+}
+
+prepare() {
+  cd dbus
+
+  # Reduce docs size
+  printf '%s\n' >>Doxyfile.in \
+HAVE_DOT=yes DOT_IMAGE_FORMAT=svg INTERACTIVE_SVG=yes
+
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd dbus
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var \
+runstatedir=/run \
+--libexecdir=/usr/lib/dbus-1.0 \
+--with-system-socket=/run/dbus/system_bus_socket \
+--with-dbus-session-bus-connect-address=unix:runtime=yes \
+--with-dbus-user=dbus \
+--enable-user-session \
+--disable-static \
+--without-x
+  make
+}
+
+check() {
+  make -C dbus check
+}
+
+package_dbus() {
+  provides=(libdbus)
+  conflicts=(libdbus)
+  replaces=(libdbus)
+
+  DESTDIR="$pkgdir" make -C dbus install
+
+  rm -r "$pkgdir/var/run"
+
+  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 dbus/COPYING
+
+  # We have a pre-assigned uid (81)
+  echo 'u dbus 81 "System Message Bus"' |
+install -Dm644 /dev/stdin "$pkgdir/usr/lib/sysusers.d/dbus.conf"
+
+  # Split docs
+  mv "$pkgdir/usr/share/doc" "$srcdir"
+}
+
+package_dbus-docs() {
+  pkgdesc+=" (documentation)"
+  depends=()
+
+  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 dbus/COPYING
+
+  mv doc "$pkgdir/usr/share"
+}
+
+# vim:set sw=2 et:


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

2018-08-30 Thread Jan Steffens via arch-commits
Date: Thursday, August 30, 2018 @ 22:15:24
  Author: heftig
Revision: 333148

1.12.10-2: Disable X11 autolaunching accidentally reintroduced with 1.12.0-1, 
other minor fixes

Modified:
  dbus/trunk/PKGBUILD   (contents, properties)

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-30 20:54:07 UTC (rev 333147)
+++ PKGBUILD2018-08-30 22:15:24 UTC (rev 333148)
@@ -1,4 +1,3 @@
-# $Id$
 # Maintainer: Jan de Groot 
 # Maintainer: Jan Alexander Steffens (heftig) 
 # Contributor: Tom Gundersen 
@@ -7,7 +6,7 @@
 pkgbase=dbus
 pkgname=(dbus dbus-docs)
 pkgver=1.12.10
-pkgrel=1
+pkgrel=2
 pkgdesc="Freedesktop.org message bus system"
 url="https://wiki.freedesktop.org/www/Software/dbus/;
 arch=(x86_64)
@@ -21,12 +20,12 @@
   '3C8672A0F49637FE064AC30F52A43A1E4B77B059') # Simon McVittie 

 
 pkgver() {
-  cd $pkgbase
+  cd dbus
   git describe --tags | sed 's/^dbus-//;s/-/+/g'
 }
 
 prepare() {
-  cd $pkgbase
+  cd dbus
 
   # Reduce docs size
   printf '%s\n' >>Doxyfile.in \
@@ -36,22 +35,24 @@
 }
 
 build() {
-  cd $pkgbase
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
-  --libexecdir=/usr/lib/dbus-1.0 --with-dbus-user=dbus \
-  --with-system-pid-file=/run/dbus/pid \
-  --with-system-socket=/run/dbus/system_bus_socket \
-  --with-console-auth-dir=/run/console/ \
-  --enable-inotify --disable-static \
-  --disable-verbose-mode --disable-asserts \
-  --with-systemdsystemunitdir=/usr/lib/systemd/system \
-  --enable-systemd --enable-user-session
+  cd dbus
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var \
+runstatedir=/run \
+--libexecdir=/usr/lib/dbus-1.0 \
+--with-system-socket=/run/dbus/system_bus_socket \
+--with-dbus-session-bus-connect-address=unix:runtime=yes \
+--with-dbus-user=dbus \
+--enable-user-session \
+--disable-static \
+--without-x
   make
 }
 
 check() {
-  cd $pkgbase
-  make check
+  make -C dbus check
 }
 
 package_dbus() {
@@ -59,13 +60,11 @@
   conflicts=(libdbus)
   replaces=(libdbus)
 
-  cd $pkgbase
+  DESTDIR="$pkgdir" make -C dbus install
 
-  make DESTDIR="$pkgdir" install
-
   rm -r "$pkgdir/var/run"
 
-  install -Dt "$pkgdir/usr/share/licenses/$pkgbase" -m644 COPYING
+  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 dbus/COPYING
 
   # We have a pre-assigned uid (81)
   echo 'u dbus 81 "System Message Bus"' |
@@ -77,10 +76,11 @@
 
 package_dbus-docs() {
   pkgdesc+=" (documentation)"
-  depends=(dbus)
+  depends=()
 
-  install -d "$pkgdir/usr/share/licenses"
-  ln -s dbus "$pkgdir/usr/share/licenses/dbus-docs"
+  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 dbus/COPYING
 
   mv doc "$pkgdir/usr/share"
 }
+
+# vim:set sw=2 et:


Property changes on: dbus/trunk/PKGBUILD
___
Deleted: svn:keywords
## -1 +0,0 ##
-Id
\ No newline at end of property


[arch-commits] Commit in three.js/repos/community-any (PKGBUILD PKGBUILD)

2018-08-30 Thread Antonio Rojas via arch-commits
Date: Thursday, August 30, 2018 @ 21:55:21
  Author: arojas
Revision: 375789

archrelease: copy trunk to community-any

Added:
  three.js/repos/community-any/PKGBUILD
(from rev 375788, three.js/trunk/PKGBUILD)
Deleted:
  three.js/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-08-30 21:54:53 UTC (rev 375788)
+++ PKGBUILD2018-08-30 21:55:21 UTC (rev 375789)
@@ -1,21 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=three.js
-pkgver=r95
-pkgrel=1
-pkgdesc='A JavaScript 3D Library which makes WebGL simpler'
-url='https://threejs.org/'
-arch=(any)
-license=(MIT)
-depends=()
-source=("$pkgname-$pkgver.tar.gz::https://github.com/mrdoob/three.js/archive/$pkgver.tar.gz;)
-sha256sums=('58060f8521a5ccd657f58fea55b481a71d1ee76692c4be35867933a177d8ca8c')
-
-package() {
-  cd $pkgname-$pkgver
-  mkdir -p "$pkgdir"/usr/share/threejs
-  install -Dm644 build/*.js "$pkgdir"/usr/share/threejs/
-# Needed by sagemath
-  install -Dm644 examples/js/controls/OrbitControls.js 
"$pkgdir"/usr/share/threejs/
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: three.js/repos/community-any/PKGBUILD (from rev 375788, 
three.js/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-08-30 21:55:21 UTC (rev 375789)
@@ -0,0 +1,21 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=three.js
+pkgver=r96
+pkgrel=1
+pkgdesc='A JavaScript 3D Library which makes WebGL simpler'
+url='https://threejs.org/'
+arch=(any)
+license=(MIT)
+depends=()
+source=("$pkgname-$pkgver.tar.gz::https://github.com/mrdoob/three.js/archive/$pkgver.tar.gz;)
+sha256sums=('98433c62ce553c5932659dcb7bba8219e253b3f463a519c9e38021717e850d08')
+
+package() {
+  cd $pkgname-$pkgver
+  mkdir -p "$pkgdir"/usr/share/threejs
+  install -Dm644 build/*.js "$pkgdir"/usr/share/threejs/
+# Needed by sagemath
+  install -Dm644 examples/js/controls/OrbitControls.js 
"$pkgdir"/usr/share/threejs/
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


[arch-commits] Commit in three.js/trunk (PKGBUILD)

2018-08-30 Thread Antonio Rojas via arch-commits
Date: Thursday, August 30, 2018 @ 21:54:53
  Author: arojas
Revision: 375788

Update to r96

Modified:
  three.js/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-30 21:37:25 UTC (rev 375787)
+++ PKGBUILD2018-08-30 21:54:53 UTC (rev 375788)
@@ -1,7 +1,7 @@
 # Maintainer: Antonio Rojas 
 
 pkgname=three.js
-pkgver=r95
+pkgver=r96
 pkgrel=1
 pkgdesc='A JavaScript 3D Library which makes WebGL simpler'
 url='https://threejs.org/'
@@ -9,7 +9,7 @@
 license=(MIT)
 depends=()
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/mrdoob/three.js/archive/$pkgver.tar.gz;)
-sha256sums=('58060f8521a5ccd657f58fea55b481a71d1ee76692c4be35867933a177d8ca8c')
+sha256sums=('98433c62ce553c5932659dcb7bba8219e253b3f463a519c9e38021717e850d08')
 
 package() {
   cd $pkgname-$pkgver


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

2018-08-30 Thread Filipe Laíns via arch-commits
Date: Thursday, August 30, 2018 @ 21:37:25
  Author: ffy00
Revision: 375787

archrelease: copy trunk to community-x86_64

Added:
  sdrangel/repos/community-x86_64/PKGBUILD
(from rev 375786, sdrangel/trunk/PKGBUILD)
Deleted:
  sdrangel/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-08-30 21:37:21 UTC (rev 375786)
+++ PKGBUILD2018-08-30 21:37:25 UTC (rev 375787)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Michal Krenek (Mikos) 
-
-pkgname=sdrangel
-pkgver=4.0.5
-pkgrel=3
-pkgdesc="Qt5/OpenGL SDR and signal analyzer frontend."
-arch=('x86_64')
-url="https://github.com/f4exb/sdrangel;
-license=('GPL3')
-depends=('pkg-config' 'log4cpp' 'opencv'
-   'qt5-base>=5.9' 'qt5-tools' 'qt5-multimedia' # QT5
-   'fftw' 'lz4' 'nanomsg' 'ffmpeg>=3.1'
-   'cm256cc' 'dsdcc>=1.8.3'
-   'pulseaudio')
-makedepends=('cmake' 'ffmpeg' 'airspy' 'bladerf' 'hackrf' 'limesuite' 
'rtl-sdr' 'boost')
-optdepends=('ffmpeg: DATV demodulator'
-   'libmirisdr4: SDRPlay support'
-   'rtl-sdr: RTLSDR support'
-   'hackrf: HackRF support'
-   'libad9361-iio: PlutoSDR support'
-   'limesuite: LimeSDR support'
-   'bladerf: BladeRF support'
-   'airspy: AirSPY support')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha512sums=('4248aed4b127bc125e1b6caaeb715976467764514e9b9652d4f4621a950aa82da68eb0e87996b48690e6040cbf7ce0c5dab3a015c950d8e19a78c0e73a06be27')
-
-build() {
-  mkdir -p $pkgname-$pkgver/build
-  cd $pkgname-$pkgver/build
-
-  cmake .. \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIBDSDCC_INCLUDE_DIR=/usr/include/dsdcc \
--DCM256CC_INCLUDE_DIR=/usr/include/cm256cc
-
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver/build
-
-  make DESTDIR="$pkgdir" install
-}

Copied: sdrangel/repos/community-x86_64/PKGBUILD (from rev 375786, 
sdrangel/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-08-30 21:37:25 UTC (rev 375787)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: Michal Krenek (Mikos) 
+
+pkgname=sdrangel
+pkgver=4.0.7
+pkgrel=1
+pkgdesc="Qt5/OpenGL SDR and signal analyzer frontend."
+arch=('x86_64')
+url="https://github.com/f4exb/sdrangel;
+license=('GPL3')
+depends=('pkg-config' 'log4cpp' 'opencv'
+   'qt5-base>=5.9' 'qt5-tools' 'qt5-multimedia' # QT5
+   'fftw' 'lz4' 'nanomsg' 'ffmpeg>=3.1'
+   'cm256cc' 'dsdcc>=1.8.3'
+   'pulseaudio')
+makedepends=('cmake' 'ffmpeg' 'airspy' 'bladerf' 'hackrf' 'limesuite' 
'rtl-sdr' 'boost')
+optdepends=('ffmpeg: DATV demodulator'
+   'libmirisdr4: SDRPlay support'
+   'rtl-sdr: RTLSDR support'
+   'hackrf: HackRF support'
+   'libad9361-iio: PlutoSDR support'
+   'limesuite: LimeSDR support'
+   'bladerf: BladeRF support'
+   'airspy: AirSPY support')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha512sums=('677a240bdb2ff0138a6ba951394a43bf008935e4c705ce702922e639862f217e5f6cf6ec0bc6ba73646364c87aea905135665cf1eade411561e9d9fe21659596')
+
+build() {
+  mkdir -p $pkgname-$pkgver/build
+  cd $pkgname-$pkgver/build
+
+  cmake .. \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIBDSDCC_INCLUDE_DIR=/usr/include/dsdcc \
+-DCM256CC_INCLUDE_DIR=/usr/include/cm256cc
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver/build
+
+  make DESTDIR="$pkgdir" install
+}


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

2018-08-30 Thread Filipe Laíns via arch-commits
Date: Thursday, August 30, 2018 @ 21:37:21
  Author: ffy00
Revision: 375786

upgpkg: sdrangel 4.0.7-1

Modified:
  sdrangel/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-30 21:11:35 UTC (rev 375785)
+++ PKGBUILD2018-08-30 21:37:21 UTC (rev 375786)
@@ -3,8 +3,8 @@
 # Contributor: Michal Krenek (Mikos) 
 
 pkgname=sdrangel
-pkgver=4.0.5
-pkgrel=3
+pkgver=4.0.7
+pkgrel=1
 pkgdesc="Qt5/OpenGL SDR and signal analyzer frontend."
 arch=('x86_64')
 url="https://github.com/f4exb/sdrangel;
@@ -24,7 +24,7 @@
'bladerf: BladeRF support'
'airspy: AirSPY support')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha512sums=('4248aed4b127bc125e1b6caaeb715976467764514e9b9652d4f4621a950aa82da68eb0e87996b48690e6040cbf7ce0c5dab3a015c950d8e19a78c0e73a06be27')
+sha512sums=('677a240bdb2ff0138a6ba951394a43bf008935e4c705ce702922e639862f217e5f6cf6ec0bc6ba73646364c87aea905135665cf1eade411561e9d9fe21659596')
 
 build() {
   mkdir -p $pkgname-$pkgver/build


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

2018-08-30 Thread David Runge via arch-commits
Date: Thursday, August 30, 2018 @ 21:11:35
  Author: dvzrv
Revision: 375785

archrelease: copy trunk to community-testing-x86_64

Added:
  capnproto/repos/community-testing-x86_64/PKGBUILD
(from rev 375784, capnproto/trunk/PKGBUILD)
Deleted:
  capnproto/repos/community-testing-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-08-30 21:11:27 UTC (rev 375784)
+++ PKGBUILD2018-08-30 21:11:35 UTC (rev 375785)
@@ -1,32 +0,0 @@
-# Maintainer: David Runge 
-# Contributors: Dave Reisner 
-#   Matthias Blaicher 
-#   Severen Redwood 
-
-pkgname=capnproto
-pkgver=0.7.0
-pkgrel=1
-pkgdesc="Cap'n Proto serialization/RPC system"
-arch=('x86_64')
-url='https://capnproto.org/'
-license=('MIT')
-depends=('openssl')
-provides=('capnproto')
-source=("https://capnproto.org/${pkgname}-c++-${pkgver}.tar.gz;)
-sha512sums=('9f8fb5753155798fcf9377a87f984a54d9fc5157c41aa11cd94108a773ca22d6e6952657e2d8079c9806f7de06f316c94957329fa52dbab6207aaa3b52348f04')
-
-build() {
-  cd "${pkgname}-c++-${pkgver}"
-  ./configure --prefix='/usr'
-  make
-}
-
-package() {
-  cd "${pkgname}-c++-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-
-  install -vDm 644 LICENSE.txt \
-"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: capnproto/repos/community-testing-x86_64/PKGBUILD (from rev 375784, 
capnproto/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-08-30 21:11:35 UTC (rev 375785)
@@ -0,0 +1,33 @@
+# Maintainer: David Runge 
+# Contributors: Dave Reisner 
+#   Matthias Blaicher 
+#   Severen Redwood 
+
+pkgname=capnproto
+pkgver=0.7.0
+pkgrel=2
+pkgdesc="Cap'n Proto serialization/RPC system"
+arch=('x86_64')
+url='https://capnproto.org/'
+license=('MIT')
+depends=('openssl')
+provides=('capnproto')
+source=("https://capnproto.org/${pkgname}-c++-${pkgver}.tar.gz;)
+sha512sums=('9f8fb5753155798fcf9377a87f984a54d9fc5157c41aa11cd94108a773ca22d6e6952657e2d8079c9806f7de06f316c94957329fa52dbab6207aaa3b52348f04')
+
+build() {
+  cd "${pkgname}-c++-${pkgver}"
+  export CXXFLAGS+=" -std=c++14"
+  ./configure --prefix='/usr'
+  make
+}
+
+package() {
+  cd "${pkgname}-c++-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+
+  install -vDm 644 LICENSE.txt \
+"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:


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

2018-08-30 Thread David Runge via arch-commits
Date: Thursday, August 30, 2018 @ 21:11:27
  Author: dvzrv
Revision: 375784

upgpkg: capnproto 0.7.0-2

Rebuilding using C++14 for sonic-visualiser.

Modified:
  capnproto/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-30 20:43:50 UTC (rev 375783)
+++ PKGBUILD2018-08-30 21:11:27 UTC (rev 375784)
@@ -5,7 +5,7 @@
 
 pkgname=capnproto
 pkgver=0.7.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Cap'n Proto serialization/RPC system"
 arch=('x86_64')
 url='https://capnproto.org/'
@@ -17,6 +17,7 @@
 
 build() {
   cd "${pkgname}-c++-${pkgver}"
+  export CXXFLAGS+=" -std=c++14"
   ./configure --prefix='/usr'
   make
 }


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

2018-08-30 Thread Antonio Rojas via arch-commits
Date: Thursday, August 30, 2018 @ 20:54:07
  Author: arojas
Revision: 333147

Update checksums (cgit update)

Modified:
  qt5-webengine/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-30 20:19:39 UTC (rev 333146)
+++ PKGBUILD2018-08-30 20:54:07 UTC (rev 333147)
@@ -22,8 +22,8 @@
 sha256sums=('389d9f42ca393ac11ec8932ce9771766dec91a4c761ffb685cc429c2a760d48c'
 'feca54ab09ac0fc9d0626770a6b899a6ac5a12173c7d0c1005bc3964ec83e7b3'
 '4a831d89fb0d6a6ced23115ced71e60513ce279fba4bd493178842647948f510'
-'6baeb241165a1fd94ada95b27924ba55f74761b1b9d406d73ebcce4b139abf60'
-'1f3eff42911e2ad6e6db8b2c5d4b230031c577e3396f37b1e73c33bcef16f6bb')
+'3c02da6ae5ab5642331d7285fbc4b8a04422c8a570111f4c7a30d48f716f9110'
+'ae44b99210676ccb7484bd64e369025bd48f62932841f24169952e9835911378')
 
 prepare() {
   mkdir -p build


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

2018-08-30 Thread David Runge via arch-commits
Date: Thursday, August 30, 2018 @ 20:43:50
  Author: dvzrv
Revision: 375783

archrelease: copy trunk to community-testing-x86_64

Added:
  capnproto/repos/community-testing-x86_64/
  capnproto/repos/community-testing-x86_64/PKGBUILD
(from rev 375782, capnproto/trunk/PKGBUILD)

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

Copied: capnproto/repos/community-testing-x86_64/PKGBUILD (from rev 375782, 
capnproto/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2018-08-30 20:43:50 UTC (rev 375783)
@@ -0,0 +1,32 @@
+# Maintainer: David Runge 
+# Contributors: Dave Reisner 
+#   Matthias Blaicher 
+#   Severen Redwood 
+
+pkgname=capnproto
+pkgver=0.7.0
+pkgrel=1
+pkgdesc="Cap'n Proto serialization/RPC system"
+arch=('x86_64')
+url='https://capnproto.org/'
+license=('MIT')
+depends=('openssl')
+provides=('capnproto')
+source=("https://capnproto.org/${pkgname}-c++-${pkgver}.tar.gz;)
+sha512sums=('9f8fb5753155798fcf9377a87f984a54d9fc5157c41aa11cd94108a773ca22d6e6952657e2d8079c9806f7de06f316c94957329fa52dbab6207aaa3b52348f04')
+
+build() {
+  cd "${pkgname}-c++-${pkgver}"
+  ./configure --prefix='/usr'
+  make
+}
+
+package() {
+  cd "${pkgname}-c++-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+
+  install -vDm 644 LICENSE.txt \
+"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:


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

2018-08-30 Thread David Runge via arch-commits
Date: Thursday, August 30, 2018 @ 20:43:33
  Author: dvzrv
Revision: 375782

upgpkg: capnproto 0.7.0-1

Upgrading to 0.7.0. Adding openssl as a required dependency.

Modified:
  capnproto/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-30 20:38:05 UTC (rev 375781)
+++ PKGBUILD2018-08-30 20:43:33 UTC (rev 375782)
@@ -4,16 +4,16 @@
 #   Severen Redwood 
 
 pkgname=capnproto
-pkgver=0.6.1
-pkgrel=4
+pkgver=0.7.0
+pkgrel=1
 pkgdesc="Cap'n Proto serialization/RPC system"
 arch=('x86_64')
 url='https://capnproto.org/'
 license=('MIT')
-depends=('gcc-libs')
+depends=('openssl')
 provides=('capnproto')
 source=("https://capnproto.org/${pkgname}-c++-${pkgver}.tar.gz;)
-sha512sums=('cd35aec18175b28149cf39ccbf360f8023d2762d04c0d6fdfbd7789ca26eac6228dfec6a414f48ff78aec4aad4c3d9d5f143a6a59dd86c16f653fc538e64b58e')
+sha512sums=('9f8fb5753155798fcf9377a87f984a54d9fc5157c41aa11cd94108a773ca22d6e6952657e2d8079c9806f7de06f316c94957329fa52dbab6207aaa3b52348f04')
 
 build() {
   cd "${pkgname}-c++-${pkgver}"
@@ -25,7 +25,7 @@
   cd "${pkgname}-c++-${pkgver}"
   make DESTDIR="${pkgdir}" install
 
-  install -Dm644 LICENSE.txt \
+  install -vDm 644 LICENSE.txt \
 "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
 }
 


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

2018-08-30 Thread Dan Printzell via arch-commits
Date: Thursday, August 30, 2018 @ 20:38:05
  Author: wild
Revision: 375781

archrelease: copy trunk to community-x86_64

Added:
  dscanner/repos/community-x86_64/PKGBUILD
(from rev 375780, dscanner/trunk/PKGBUILD)
Deleted:
  dscanner/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-08-30 20:37:54 UTC (rev 375780)
+++ PKGBUILD2018-08-30 20:38:05 UTC (rev 375781)
@@ -1,62 +0,0 @@
-# $Id$
-# Maintainer: Dan Printzell 
-
-pkgname=('dscanner')
-pkgver=0.5.8
-pkgrel=1
-_pkgcommit=aa2a76f66b8ccaab5f6371989d34487bb5cf9d9c
-pkgdesc="Swiss-army knife for D source code"
-arch=('x86_64')
-url="https://github.com/dlang-community/D-Scanner;
-license=("custom")
-groups=('dlang')
-makedepends=('ldc' 'git')
-depends=('liblphobos')
-
-source=(
-   "git+https://github.com/dlang-community/D-Scanner#commit=$_pkgcommit;
-   "git+https://github.com/dlang-community/libdparse;
-   "git+https://github.com/burner/inifiled;
-   "git+https://github.com/economicmodeling/containers;
-   "git+https://github.com/dlang-community/dsymbol;
-   "git+https://github.com/economicmodeling/libddoc;
-   "git+https://github.com/dlang-community/stdx-allocator;
-)
-sha256sums=(
-   'SKIP'
-   'SKIP'
-   'SKIP'
-   'SKIP'
-   'SKIP'
-   'SKIP'
-   'SKIP'
-)
-
-prepare() {
-   cd "$srcdir/D-Scanner"
-
-   git submodule init
-   git config submodule.libdparse.url "$srcdir/libdparse"
-   git config submodule.inifiled.url "$srcdir/inifiled"
-   git config submodule.containers.url "$srcdir/containers"
-   git config submodule.dsymbol.url "$srcdir/dsymbol"
-   git config submodule.libddoc.url "$srcdir/libddoc"
-   git config submodule.stdx-allocator.url "$srcdir/stdx-allocator"
-   git submodule update
-
-   # Only LDC have -O5
-   sed -i "s/-O5/-O5 -flto=full -linker=gold 
-link-defaultlib-shared=false/g" makefile
-}
-
-build() {
-   cd "$srcdir/D-Scanner"
-   make ldc
-}
-
-package() {
-   # binaries
-   install -Dm755 "$srcdir/D-Scanner/bin/dscanner" 
"$pkgdir/usr/bin/dscanner"
-
-   # license
-   install -Dm644 "$srcdir/D-Scanner/LICENSE_1_0.txt" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: dscanner/repos/community-x86_64/PKGBUILD (from rev 375780, 
dscanner/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-08-30 20:38:05 UTC (rev 375781)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer: Dan Printzell 
+
+pkgname=('dscanner')
+pkgver=0.5.9
+pkgrel=1
+_pkgcommit=ed5bfe7269ee0ff27cfa3dff047c041a8cd3806d
+pkgdesc="Swiss-army knife for D source code"
+arch=('x86_64')
+url="https://github.com/dlang-community/D-Scanner;
+license=("custom")
+groups=('dlang')
+makedepends=('ldc' 'git')
+depends=('liblphobos')
+
+source=(
+   "git+https://github.com/dlang-community/D-Scanner#commit=$_pkgcommit;
+   "git+https://github.com/dlang-community/libdparse;
+   "git+https://github.com/burner/inifiled;
+   "git+https://github.com/economicmodeling/containers;
+   "git+https://github.com/dlang-community/dsymbol;
+   "git+https://github.com/economicmodeling/libddoc;
+   "git+https://github.com/dlang-community/stdx-allocator;
+)
+sha256sums=(
+   'SKIP'
+   'SKIP'
+   'SKIP'
+   'SKIP'
+   'SKIP'
+   'SKIP'
+   'SKIP'
+)
+
+prepare() {
+   cd "$srcdir/D-Scanner"
+
+   git submodule init
+   git config submodule.libdparse.url "$srcdir/libdparse"
+   git config submodule.inifiled.url "$srcdir/inifiled"
+   git config submodule.containers.url "$srcdir/containers"
+   git config submodule.dsymbol.url "$srcdir/dsymbol"
+   git config submodule.libddoc.url "$srcdir/libddoc"
+   git config submodule.stdx-allocator.url "$srcdir/stdx-allocator"
+   git submodule update
+
+   # Only LDC have -O5
+   sed -i "s/-O5/-O5 -flto=full -linker=gold 
-link-defaultlib-shared=false/g" makefile
+}
+
+build() {
+   cd "$srcdir/D-Scanner"
+   make ldc
+}
+
+package() {
+   # binaries
+   install -Dm755 "$srcdir/D-Scanner/bin/dscanner" 
"$pkgdir/usr/bin/dscanner"
+
+   # license
+   install -Dm644 "$srcdir/D-Scanner/LICENSE_1_0.txt" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2018-08-30 Thread Dan Printzell via arch-commits
Date: Thursday, August 30, 2018 @ 20:37:54
  Author: wild
Revision: 375780

upgpkg: dscanner 0.5.9-1

Updated to 0.5.9

Modified:
  dscanner/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-30 20:17:57 UTC (rev 375779)
+++ PKGBUILD2018-08-30 20:37:54 UTC (rev 375780)
@@ -2,9 +2,9 @@
 # Maintainer: Dan Printzell 
 
 pkgname=('dscanner')
-pkgver=0.5.8
+pkgver=0.5.9
 pkgrel=1
-_pkgcommit=aa2a76f66b8ccaab5f6371989d34487bb5cf9d9c
+_pkgcommit=ed5bfe7269ee0ff27cfa3dff047c041a8cd3806d
 pkgdesc="Swiss-army knife for D source code"
 arch=('x86_64')
 url="https://github.com/dlang-community/D-Scanner;


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

2018-08-30 Thread Felix Yan via arch-commits
Date: Thursday, August 30, 2018 @ 20:19:39
  Author: felixonmars
Revision: 333146

archrelease: copy trunk to testing-x86_64

Added:
  tomcat-native/repos/testing-x86_64/
  tomcat-native/repos/testing-x86_64/PKGBUILD
(from rev 333145, tomcat-native/trunk/PKGBUILD)

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

Copied: tomcat-native/repos/testing-x86_64/PKGBUILD (from rev 333145, 
tomcat-native/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2018-08-30 20:19:39 UTC (rev 333146)
@@ -0,0 +1,35 @@
+# Maintainer: Guillaume ALAUX 
+# Contributor: Vitaliy Berdinskikh ur6lad[at]i.ua
+
+pkgname=tomcat-native
+pkgver=1.2.17
+pkgrel=1
+pkgdesc='Optional component for Tomcat to use certain native resources for 
performance, compatibility'
+arch=('x86_64')
+url='https://tomcat.apache.org/native-doc/'
+license=('APACHE')
+depends=('apr')
+makedepends=('java-environment')
+options=('!emptydirs')
+source=(https://archive.apache.org/dist/tomcat/tomcat-connectors/native/${pkgver}/source/${pkgname}-${pkgver}-src.tar.gz{,.asc})
+validpgpkeys=('A9C5DF4D22E8D9875A5110C01C5A2F6059E7'
+  'B3F49CD3B9BD2996DA90F817ED3873F5D3262722')
+sha512sums=('8fa946855fd14525ec0abe7b09975bbd34d6127352e90730a8afb77e16cd91715417e812a40017fee65939a9ce95faf39a9193222f441cda0ad2eb7f690e77b9'
+'SKIP')
+
+build() {
+  cd "${srcdir}/tomcat-native-${pkgver}-src/native"
+
+  ./configure \
+--prefix=/usr \
+--with-java-home=/usr/lib/jvm/default \
+--with-apr=/usr \
+--with-ssl=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}-src/native"
+
+  make DESTDIR="${pkgdir}" install
+}


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

2018-08-30 Thread Felix Yan via arch-commits
Date: Thursday, August 30, 2018 @ 20:19:16
  Author: felixonmars
Revision: 333145

upgpkg: tomcat-native 1.2.17-1

Modified:
  tomcat-native/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-30 20:16:45 UTC (rev 333144)
+++ PKGBUILD2018-08-30 20:19:16 UTC (rev 333145)
@@ -2,7 +2,7 @@
 # Contributor: Vitaliy Berdinskikh ur6lad[at]i.ua
 
 pkgname=tomcat-native
-pkgver=1.2.16
+pkgver=1.2.17
 pkgrel=1
 pkgdesc='Optional component for Tomcat to use certain native resources for 
performance, compatibility'
 arch=('x86_64')
@@ -12,8 +12,9 @@
 makedepends=('java-environment')
 options=('!emptydirs')
 
source=(https://archive.apache.org/dist/tomcat/tomcat-connectors/native/${pkgver}/source/${pkgname}-${pkgver}-src.tar.gz{,.asc})
-validpgpkeys=('A9C5DF4D22E8D9875A5110C01C5A2F6059E7')
-sha256sums=('1e9409584c19d868efd056f7dbafc767a630a5a95ee3cd516de8b7aaa4cd97b6'
+validpgpkeys=('A9C5DF4D22E8D9875A5110C01C5A2F6059E7'
+  'B3F49CD3B9BD2996DA90F817ED3873F5D3262722')
+sha512sums=('8fa946855fd14525ec0abe7b09975bbd34d6127352e90730a8afb77e16cd91715417e812a40017fee65939a9ce95faf39a9193222f441cda0ad2eb7f690e77b9'
 'SKIP')
 
 build() {


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

2018-08-30 Thread Felix Yan via arch-commits
Date: Thursday, August 30, 2018 @ 20:17:23
  Author: felixonmars
Revision: 375772

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: shellcheck/repos/community-staging-x86_64/PKGBUILD (from rev 375771, 
shellcheck/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-08-30 20:17:23 UTC (rev 375772)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=ShellCheck
+pkgname=shellcheck
+pkgver=0.5.0
+pkgrel=83
+pkgdesc="Shell script analysis tool"
+url="http://www.shellcheck.net;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-quickcheck' 'haskell-regex-tdfa')
+makedepends=('ghc' 'pandoc')
+source=("$_hkgname-$pkgver.tar.gz::https://github.com/koalaman/shellcheck/archive/v$pkgver.tar.gz;)
+sha512sums=('87861cddb353262630e4370e12e508224b3c14e128082909b4b35f0526dfe648a744d68cc27f77f2f8bb098af37a2af7bdc805d88018bba5e48b6c1ff1749f10')
+
+build() {
+cd $pkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+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
+
+pandoc -s -t man shellcheck.1.md -o shellcheck.1
+}
+
+check() {
+cd $pkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $pkgname-$pkgver
+
+install -D -m644 ${pkgname}.1   "${pkgdir}/usr/share/man/man1/${pkgname}.1"
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-08-30 Thread Felix Yan via arch-commits
Date: Thursday, August 30, 2018 @ 20:17:10
  Author: felixonmars
Revision: 375771

upgpkg: shellcheck 0.5.0-83

rebuild with skylighting-core 0.7.3

Modified:
  shellcheck/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-30 20:16:53 UTC (rev 375770)
+++ PKGBUILD2018-08-30 20:17:10 UTC (rev 375771)
@@ -5,7 +5,7 @@
 _hkgname=ShellCheck
 pkgname=shellcheck
 pkgver=0.5.0
-pkgrel=82
+pkgrel=83
 pkgdesc="Shell script analysis tool"
 url="http://www.shellcheck.net;
 license=("GPL")


[arch-commits] Commit in java-jsch/repos (testing-any testing-any/PKGBUILD)

2018-08-30 Thread Felix Yan via arch-commits
Date: Thursday, August 30, 2018 @ 20:16:45
  Author: felixonmars
Revision: 333144

archrelease: copy trunk to testing-any

Added:
  java-jsch/repos/testing-any/
  java-jsch/repos/testing-any/PKGBUILD
(from rev 333143, java-jsch/trunk/PKGBUILD)

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

Copied: java-jsch/repos/testing-any/PKGBUILD (from rev 333143, 
java-jsch/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2018-08-30 20:16:45 UTC (rev 333144)
@@ -0,0 +1,26 @@
+# Maintainer: Guillaume ALAUX 
+_libname=jsch
+pkgname=java-${_libname}
+pkgver=0.1.54
+pkgrel=1
+pkgdesc="A pure Java implementation of SSH2"
+arch=('any')
+url='http://www.jcraft.com/jsch/'
+license=('BSD')
+depends=('java-runtime-headless=8')
+makedepends=('apache-ant' 'java-environment=8')
+source=(http://downloads.sourceforge.net/project/${_libname}/${_libname}/${pkgver}/${_libname}-${pkgver}.zip)
+sha512sums=('2ed29f07495fbc28d6eb7b4fe414e8a9a96b911b2feea5b1513cc48a9439adba12341bceb23a3ea9ab307e32d48bfd4356c7bc877c56e77f6f55d69214db3a9e')
+
+build() {
+  cd "${srcdir}/${_libname}-${pkgver}"
+  ant dist
+}
+
+package() {
+  install -Dm644 
"${srcdir}/${_libname}-${pkgver}/dist/lib/${_libname}-${pkgver}.jar" \
+ "${pkgdir}/usr/share/java/${_libname}-${pkgver}.jar"
+  ln -s ${_libname}-${pkgver}.jar "${pkgdir}/usr/share/java/${_libname}.jar"
+  install -Dm644 "${srcdir}/${_libname}-${pkgver}/LICENSE.txt" \
+ "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}


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

2018-08-30 Thread Felix Yan via arch-commits
Date: Thursday, August 30, 2018 @ 20:16:53
  Author: felixonmars
Revision: 375770

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-08-30 20:16:37 UTC (rev 375769)
+++ PKGBUILD2018-08-30 20:16:53 UTC (rev 375770)
@@ -1,79 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgbase=python-hypothesis
-pkgname=('python-hypothesis' 'python2-hypothesis')
-pkgver=3.69.11
-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-pytest-benchmark' 
'python2-pytest-benchmark'
-  'python-django' 'python2-django' 'python-pytest-xdist' 
'python2-pytest-xdist'
-  'python-mock' 'python2-mock' 'python-pandas' 'python2-pandas')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-$pkgver.tar.gz;)
-sha512sums=('36e562c449677a4341d83af9cafda3c39e8a5fdfd452ecededd3c9bc50a78a08b6df515161e7beaaf47bc2b2521ffdd62693b27e561e7e9ce32d2594a3a56906')
-
-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 375769, 
python-hypothesis/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-08-30 20:16:53 UTC (rev 375770)
@@ -0,0 +1,79 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-hypothesis
+pkgname=('python-hypothesis' 'python2-hypothesis')
+pkgver=3.69.12
+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-pytest-benchmark' 
'python2-pytest-benchmark'
+  'python-django' 'python2-django' 

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

2018-08-30 Thread Felix Yan via arch-commits
Date: Thursday, August 30, 2018 @ 20:16:31
  Author: felixonmars
Revision: 333143

upgpkg: java-jsch 0.1.54-1

Modified:
  java-jsch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-30 20:06:20 UTC (rev 333142)
+++ PKGBUILD2018-08-30 20:16:31 UTC (rev 333143)
@@ -1,16 +1,16 @@
 # Maintainer: Guillaume ALAUX 
 _libname=jsch
 pkgname=java-${_libname}
-pkgver=0.1.51
+pkgver=0.1.54
 pkgrel=1
 pkgdesc="A pure Java implementation of SSH2"
 arch=('any')
 url='http://www.jcraft.com/jsch/'
 license=('BSD')
-depends=('java-runtime-headless')
-makedepends=('apache-ant')
+depends=('java-runtime-headless=8')
+makedepends=('apache-ant' 'java-environment=8')
 
source=(http://downloads.sourceforge.net/project/${_libname}/${_libname}/${pkgver}/${_libname}-${pkgver}.zip)
-sha256sums=('c031b863fbbfe861c5365e8cf403b24b2eb5b40d1c112a048a73f87b5e828c30')
+sha512sums=('2ed29f07495fbc28d6eb7b4fe414e8a9a96b911b2feea5b1513cc48a9439adba12341bceb23a3ea9ab307e32d48bfd4356c7bc877c56e77f6f55d69214db3a9e')
 
 build() {
   cd "${srcdir}/${_libname}-${pkgver}"


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

2018-08-30 Thread Felix Yan via arch-commits
Date: Thursday, August 30, 2018 @ 20:16:37
  Author: felixonmars
Revision: 375769

upgpkg: python-hypothesis 3.69.12-1

Modified:
  python-hypothesis/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-30 20:14:14 UTC (rev 375768)
+++ PKGBUILD2018-08-30 20:16:37 UTC (rev 375769)
@@ -3,7 +3,7 @@
 
 pkgbase=python-hypothesis
 pkgname=('python-hypothesis' 'python2-hypothesis')
-pkgver=3.69.11
+pkgver=3.69.12
 pkgrel=1
 pkgdesc="Advanced Quickcheck style testing library for Python"
 arch=('any')
@@ -17,7 +17,7 @@
   'python-django' 'python2-django' 'python-pytest-xdist' 
'python2-pytest-xdist'
   'python-mock' 'python2-mock' 'python-pandas' 'python2-pandas')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-$pkgver.tar.gz;)
-sha512sums=('36e562c449677a4341d83af9cafda3c39e8a5fdfd452ecededd3c9bc50a78a08b6df515161e7beaaf47bc2b2521ffdd62693b27e561e7e9ce32d2594a3a56906')
+sha512sums=('c5f7b725d887786456baf8685fc36aa1c1a9e03ab0a0c8e7fe20b77ad4d023edf5992a772303f72ca381310fb110f862aae56b65092414dd948f5042ab4804e0')
 
 prepare() {
   mv hypothesis-hypothesis-python-$pkgver hypothesis-$pkgver


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

2018-08-30 Thread Felix Yan via arch-commits
Date: Thursday, August 30, 2018 @ 20:14:14
  Author: felixonmars
Revision: 375768

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: pandoc-crossref/repos/community-staging-x86_64/PKGBUILD (from rev 
375767, pandoc-crossref/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-08-30 20:14:14 UTC (rev 375768)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc-crossref
+pkgver=0.3.2.1
+pkgrel=71
+pkgdesc="Pandoc filter for cross-references"
+url="https://hackage.haskell.org/package/${pkgname};
+license=("GPL2")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-data-default' 'haskell-data-accessor' 
'haskell-data-accessor-template'
+ 'haskell-data-accessor-transformers' 'haskell-file-embed' 
'haskell-open-browser'
+ 'haskell-optparse-applicative' 'pandoc' 'haskell-pandoc-types' 
'haskell-roman-numerals'
+ 'haskell-syb' 'haskell-utility-ht')
+makedepends=('ghc' 'haskell-hspec')
+conflicts=('haskell-pandoc-crossref')
+replaces=('haskell-pandoc-crossref')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/lierdakil/pandoc-crossref/archive/v$pkgver.tar.gz;)
+sha512sums=('224218d3a559fc6a2b574c4f62a7e99f28c25abb20f7fc2eb6b318f388d0c3e65f690c03b687964d50bb4fc87a77d79a6bebb20c196cd93f884f12c43ce1c68e')
+
+build() {
+cd $pkgname-$pkgver
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests 
--datasubdir="$pkgname" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+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() {
+# 
https://github.com/lierdakil/pandoc-crossref/issues/181#issuecomment-398269601
+cd $pkgname-$pkgver
+runhaskell Setup test || warning "Tests failed"
+}
+
+package() {
+cd $pkgname-$pkgver
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-08-30 Thread Felix Yan via arch-commits
Date: Thursday, August 30, 2018 @ 20:14:01
  Author: felixonmars
Revision: 375767

upgpkg: pandoc-crossref 0.3.2.1-71

rebuild with skylighting-core 0.7.3

Modified:
  pandoc-crossref/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-30 20:12:47 UTC (rev 375766)
+++ PKGBUILD2018-08-30 20:14:01 UTC (rev 375767)
@@ -4,7 +4,7 @@
 
 pkgname=pandoc-crossref
 pkgver=0.3.2.1
-pkgrel=70
+pkgrel=71
 pkgdesc="Pandoc filter for cross-references"
 url="https://hackage.haskell.org/package/${pkgname};
 license=("GPL2")


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

2018-08-30 Thread Felix Yan via arch-commits
Date: Thursday, August 30, 2018 @ 20:12:34
  Author: felixonmars
Revision: 375765

upgpkg: haskell-hakyll 4.12.3.0-106

rebuild with skylighting-core 0.7.3

Modified:
  haskell-hakyll/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-30 20:10:30 UTC (rev 375764)
+++ PKGBUILD2018-08-30 20:12:34 UTC (rev 375765)
@@ -5,7 +5,7 @@
 _hkgname=hakyll
 pkgname=haskell-hakyll
 pkgver=4.12.3.0
-pkgrel=105
+pkgrel=106
 pkgdesc="A static website compiler library"
 url="http://jaspervdj.be/hakyll;
 license=("custom:BSD3")


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

2018-08-30 Thread Felix Yan via arch-commits
Date: Thursday, August 30, 2018 @ 20:12:47
  Author: felixonmars
Revision: 375766

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-hakyll/repos/community-staging-x86_64/PKGBUILD (from rev 
375765, haskell-hakyll/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-08-30 20:12:47 UTC (rev 375766)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hakyll
+pkgname=haskell-hakyll
+pkgver=4.12.3.0
+pkgrel=106
+pkgdesc="A static website compiler library"
+url="http://jaspervdj.be/hakyll;
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-blaze-html' 'haskell-blaze-markup' 
'haskell-cryptohash'
+ 'haskell-data-default' 'haskell-file-embed' 'haskell-fsnotify' 
'haskell-http-conduit'
+ 'haskell-http-types' 'haskell-lrucache' 'haskell-network-uri'
+ 'haskell-optparse-applicative' 'pandoc' 'pandoc-citeproc' 
'haskell-random'
+ 'haskell-regex-tdfa' 'haskell-resourcet' 'haskell-scientific' 
'haskell-tagsoup'
+ 'haskell-time-locale-compat' 'haskell-unordered-containers' 
'haskell-vector'
+ 'haskell-wai' 'haskell-wai-app-static' 'haskell-warp' 'haskell-yaml')
+makedepends=('ghc' 'haskell-quickcheck' 'haskell-tasty' 'haskell-tasty-hunit'
+ 'haskell-tasty-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('287112e1cb7ac4c06f976ee77fe6b64605c96f04e78c366cffdc24d435f57d37c06543e180476a23bd5e7a42a54e4b30a08ad5e4a8aec5fd97052503691574fc')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i -e 's/<.*0.9/<1/' -e 's/<.*0.0.11/<1/' $_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" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fcheckexternal -fwatchserver -fpreviewserver -fusepandoc
+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
+LC_CTYPE=en_US.UTF-8 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 pandoc-citeproc/repos (2 files)

2018-08-30 Thread Felix Yan via arch-commits
Date: Thursday, August 30, 2018 @ 20:10:30
  Author: felixonmars
Revision: 375764

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: pandoc-citeproc/repos/community-staging-x86_64/PKGBUILD (from rev 
375763, pandoc-citeproc/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-08-30 20:10:30 UTC (rev 375764)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc-citeproc
+pkgver=0.14.3.1
+pkgrel=123
+pkgdesc="Supports using pandoc with citeproc"
+url="https://hackage.haskell.org/package/$pkgname;
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-aeson-pretty' 
'haskell-attoparsec' 'haskell-base-compat'
+ 'haskell-data-default' 'haskell-hs-bibutils' 'haskell-old-locale' 
'pandoc'
+ 'haskell-pandoc-types' 'haskell-rfc5051' 'haskell-setenv' 
'haskell-split'
+ 'haskell-syb' 'haskell-tagsoup' 'haskell-temporary' 'haskell-text-icu'
+ 'haskell-unordered-containers' 'haskell-vector' 'haskell-xml-conduit' 
'haskell-yaml')
+conflicts=('haskell-pandoc-citeproc')
+replaces=('haskell-pandoc-citeproc')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/$pkgname/${pkgver}/$pkgname-${pkgver}.tar.gz;)
+sha512sums=('ab3d395c77192f72fa5cf9606f3cc5fc37c00a5719a58203d4b7c6edbc032524dd8457abe292d5d7dbe5ab2eaccd545269355931451ca0835d0ac1aa3cc48414')
+
+prepare() {
+cd "${srcdir}/$pkgname-${pkgver}"
+sed -i 's/<.*1.4/<2/' $pkgname.cabal
+# TODO: find a better solution
+sed -i 
"s|(\"HOME\",\".\")|(\"HOME\",\".\"),(\"LD_LIBRARY_PATH\",\"$PWD/dist/build\"),(\"pandoc_citeproc_datadir\",\"$PWD\")|"
 tests/test-pandoc-citeproc.hs
+}
+
+build() {
+cd "${srcdir}/$pkgname-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/$pkgname" 
--datasubdir="$pkgname" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-debug -f-test_citeproc -funicode_collation -f-embed_data_files 
-fbibutils -f-static
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $pkgname-$pkgver
+# https://github.com/jgm/pandoc-citeproc/issues/342
+runhaskell Setup test || warning "Tests failed"
+}
+
+package() {
+cd "${srcdir}/$pkgname-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/$pkgname.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/$pkgname.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" "${pkgdir}/usr/share/licenses/$pkgname/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/$pkgname/LICENSE"
+}


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

2018-08-30 Thread Felix Yan via arch-commits
Date: Thursday, August 30, 2018 @ 20:10:18
  Author: felixonmars
Revision: 375763

upgpkg: pandoc-citeproc 0.14.3.1-123

rebuild with skylighting-core 0.7.3

Modified:
  pandoc-citeproc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-30 20:07:29 UTC (rev 375762)
+++ PKGBUILD2018-08-30 20:10:18 UTC (rev 375763)
@@ -4,7 +4,7 @@
 
 pkgname=pandoc-citeproc
 pkgver=0.14.3.1
-pkgrel=122
+pkgrel=123
 pkgdesc="Supports using pandoc with citeproc"
 url="https://hackage.haskell.org/package/$pkgname;
 license=("custom:BSD3")


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

2018-08-30 Thread Felix Yan via arch-commits
Date: Thursday, August 30, 2018 @ 20:07:16
  Author: felixonmars
Revision: 375761

upgpkg: pandoc 2.2.3.2-16

rebuild with skylighting-core 0.7.3

Modified:
  pandoc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-30 20:02:02 UTC (rev 375760)
+++ PKGBUILD2018-08-30 20:07:16 UTC (rev 375761)
@@ -4,7 +4,7 @@
 
 pkgname=pandoc
 pkgver=2.2.3.2
-pkgrel=15
+pkgrel=16
 pkgdesc="Conversion between markup formats"
 url="http://pandoc.org;
 license=("GPL")


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

2018-08-30 Thread Felix Yan via arch-commits
Date: Thursday, August 30, 2018 @ 20:07:29
  Author: felixonmars
Revision: 375762

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: pandoc/repos/community-staging-x86_64/PKGBUILD (from rev 375761, 
pandoc/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-08-30 20:07:29 UTC (rev 375762)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc
+pkgver=2.2.3.2
+pkgrel=16
+pkgdesc="Conversion between markup formats"
+url="http://pandoc.org;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-http' 'haskell-juicypixels' 'haskell-sha' 
'haskell-aeson'
+ 'haskell-aeson-pretty' 'haskell-base-compat' 
'haskell-base64-bytestring'
+ 'haskell-blaze-html' 'haskell-blaze-markup' 
'haskell-case-insensitive' 'haskell-cmark-gfm'
+ 'haskell-data-default' 'haskell-doctemplates' 'haskell-exceptions' 
'haskell-glob'
+ 'haskell-haddock-library' 'haskell-skylighting' 'haskell-hslua'
+ 'haskell-hslua-module-text' 'haskell-http-client' 'haskell-syb' 
'haskell-hsyaml' 'haskell-http-client-tls'
+ 'haskell-http-types' 'haskell-safe' 'haskell-split' 'haskell-texmath'
+ 'haskell-network' 'haskell-pandoc-types' 'haskell-random'
+ 'haskell-tagsoup' 'haskell-temporary' 'haskell-network-uri'
+ 'haskell-unordered-containers' 'haskell-zip-archive' 'haskell-vector' 
'haskell-xml'
+ 'haskell-zlib')
+optdepends=('pandoc-citeproc: for citation rendering with pandoc-citeproc 
filter'
+'pandoc-crossref: for numbering figures, equations, tables and 
cross-references to them with pandoc-crossref filter'
+'texlive-core: for pdf output')
+conflicts=('haskell-pandoc')
+replaces=('haskell-pandoc')
+makedepends=('ghc' 'haskell-diff' 'haskell-tasty' 'haskell-tasty-hunit' 
'haskell-tasty-quickcheck'
+ 'haskell-tasty-golden' 'haskell-quickcheck' 
'haskell-executable-path')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('e35f7e8db30784f15e11a6a48cb1ae8cb96faca7280c7d8ba63c1d948daab13097c04b7796a6ad8853ac177ee93de20edecf81842fdb7998e3453b89ac9750b0')
+
+prepare() {
+cd "${srcdir}/$pkgname-${pkgver}"
+
+# TODO: find a better solution
+sed -i "s|let env' = dynlibEnv ++ |let env' = dynlibEnv ++ 
[(\"LD_LIBRARY_PATH\", \"$PWD/dist/build\")] ++ |" test/Tests/Command.hs
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgbase}" 
--datasubdir="$pkgname" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-trypandoc -f-embed_data_files -f-static
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+LC_CTYPE=en_US.UTF-8 runhaskell Setup test
+}
+
+package() {
+cd "${srcdir}/${pkgbase}-${pkgver}"
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/COPYING.md"
+}


[arch-commits] Commit in cowsay/repos/extra-any (4 files)

2018-08-30 Thread Felix Yan via arch-commits
Date: Thursday, August 30, 2018 @ 20:06:20
  Author: felixonmars
Revision: 333142

archrelease: copy trunk to extra-any

Added:
  cowsay/repos/extra-any/PKGBUILD
(from rev 333141, cowsay/trunk/PKGBUILD)
  cowsay/repos/extra-any/cowsay.patch
(from rev 333141, cowsay/trunk/cowsay.patch)
Deleted:
  cowsay/repos/extra-any/PKGBUILD
  cowsay/repos/extra-any/cowsay.patch

--+
 PKGBUILD |   60 -
 cowsay.patch |   22 ++--
 2 files changed, 41 insertions(+), 41 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-08-30 20:05:56 UTC (rev 333141)
+++ PKGBUILD2018-08-30 20:06:20 UTC (rev 333142)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Guillaume ALAUX  
-# Contributor: Eric Belanger 
-# Contributor: Sarah Hay 
-
-pkgname=cowsay
-pkgver=3.03
-pkgrel=10
-pkgdesc='Configurable talking cow (and a few other creatures)'
-arch=('any')
-url='http://www.nog.net/~tony/warez/'
-license=('PerlArtistic' 'GPL')
-depends=('perl')
-source=(https://github.com/tnalpgge/rank-amateur-cowsay/archive/cowsay-$pkgver.tar.gz
-cowsay.patch)
-sha512sums=('941cc8e79504aa97570682589f03713c5453c8760272cc37d91680908254c3c56de5a013ed5cb05ad4fa37f5850eb8672a0f4d020aa085b814f35e9634bea6b1'
-
'4c70074fc88e741f2eb4daa04a55ef3ff0638bffda907fe451299aeb2271a3b09c4b73df4d3eb83f6ac91b9cb05530bb2a59df81c72602728441254624a05327')
-
-build() {
-   cd rank-amateur-cowsay-${pkgname}-${pkgver}
-   patch -p1 -i $srcdir/cowsay.patch
-   sed -i 's|/man/|/share/man/|' install.sh
-}
-
-package() {
-   cd rank-amateur-cowsay-${pkgname}-${pkgver}
-   echo "${pkgdir}/usr" | ./install.sh
-   # This one is not a valid '.cow' file
-   rm ${pkgdir}/usr/share/cows/mech-and-cow
-}

Copied: cowsay/repos/extra-any/PKGBUILD (from rev 333141, cowsay/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-08-30 20:06:20 UTC (rev 333142)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Guillaume ALAUX  
+# Contributor: Eric Belanger 
+# Contributor: Sarah Hay 
+
+pkgname=cowsay
+pkgver=3.04
+pkgrel=1
+pkgdesc='Configurable talking cow (and a few other creatures)'
+arch=('any')
+url='http://www.nog.net/~tony/warez/'
+license=('PerlArtistic' 'GPL')
+depends=('perl')
+source=(https://github.com/tnalpgge/rank-amateur-cowsay/archive/cowsay-$pkgver.tar.gz
+cowsay.patch)
+sha512sums=('99d21ef9a7c7c76056cb7acb2c771fbdabfedde4f6edb5d3035337c59f9e88944690d1b43282c32827ad79339199716366c8be73b0dea09063ec2d52220c1b51'
+
'4c70074fc88e741f2eb4daa04a55ef3ff0638bffda907fe451299aeb2271a3b09c4b73df4d3eb83f6ac91b9cb05530bb2a59df81c72602728441254624a05327')
+
+build() {
+   cd rank-amateur-cowsay-${pkgname}-${pkgver}
+   patch -p1 -i $srcdir/cowsay.patch
+   sed -i 's|/man/|/share/man/|' install.sh
+}
+
+package() {
+   cd rank-amateur-cowsay-${pkgname}-${pkgver}
+   echo "${pkgdir}/usr" | ./install.sh
+   # This one is not a valid '.cow' file
+   rm ${pkgdir}/usr/share/cows/mech-and-cow
+}

Deleted: cowsay.patch
===
--- cowsay.patch2018-08-30 20:05:56 UTC (rev 333141)
+++ cowsay.patch2018-08-30 20:06:20 UTC (rev 333142)
@@ -1,11 +0,0 @@
 cowsay-3.03/install.sh 1999-11-01 21:19:21.0 +0100
-+++ cowsay-3.03-new/install.sh 2003-08-15 17:14:23.0 +0200
-@@ -67,7 +67,7 @@
- echo Okay, time to install this puppy.
- 
- echo s,%BANGPERL%,!$usethisperl,\; > install.pl
--echo s,%PREFIX%,$PREFIX,\; >> install.pl
-+echo s,%PREFIX%,/usr,\; >> install.pl
- set -x
- mkdir -p $PREFIX/bin || (mkdir $PREFIX; mkdir $PREFIX/bin)
- $usethisperl -p install.pl cowsay > $PREFIX/bin/cowsay

Copied: cowsay/repos/extra-any/cowsay.patch (from rev 333141, 
cowsay/trunk/cowsay.patch)
===
--- cowsay.patch(rev 0)
+++ cowsay.patch2018-08-30 20:06:20 UTC (rev 333142)
@@ -0,0 +1,11 @@
+--- cowsay-3.03/install.sh 1999-11-01 21:19:21.0 +0100
 cowsay-3.03-new/install.sh 2003-08-15 17:14:23.0 +0200
+@@ -67,7 +67,7 @@
+ echo Okay, time to install this puppy.
+ 
+ echo s,%BANGPERL%,!$usethisperl,\; > install.pl
+-echo s,%PREFIX%,$PREFIX,\; >> install.pl
++echo s,%PREFIX%,/usr,\; >> install.pl
+ set -x
+ mkdir -p $PREFIX/bin || (mkdir $PREFIX; mkdir $PREFIX/bin)
+ $usethisperl -p install.pl cowsay > $PREFIX/bin/cowsay


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

2018-08-30 Thread Felix Yan via arch-commits
Date: Thursday, August 30, 2018 @ 20:05:56
  Author: felixonmars
Revision: 333141

upgpkg: cowsay 3.04-1

Modified:
  cowsay/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-30 20:01:48 UTC (rev 333140)
+++ PKGBUILD2018-08-30 20:05:56 UTC (rev 333141)
@@ -4,8 +4,8 @@
 # Contributor: Sarah Hay 
 
 pkgname=cowsay
-pkgver=3.03
-pkgrel=10
+pkgver=3.04
+pkgrel=1
 pkgdesc='Configurable talking cow (and a few other creatures)'
 arch=('any')
 url='http://www.nog.net/~tony/warez/'
@@ -13,7 +13,7 @@
 depends=('perl')
 
source=(https://github.com/tnalpgge/rank-amateur-cowsay/archive/cowsay-$pkgver.tar.gz
 cowsay.patch)
-sha512sums=('941cc8e79504aa97570682589f03713c5453c8760272cc37d91680908254c3c56de5a013ed5cb05ad4fa37f5850eb8672a0f4d020aa085b814f35e9634bea6b1'
+sha512sums=('99d21ef9a7c7c76056cb7acb2c771fbdabfedde4f6edb5d3035337c59f9e88944690d1b43282c32827ad79339199716366c8be73b0dea09063ec2d52220c1b51'
 
'4c70074fc88e741f2eb4daa04a55ef3ff0638bffda907fe451299aeb2271a3b09c4b73df4d3eb83f6ac91b9cb05530bb2a59df81c72602728441254624a05327')
 
 build() {


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

2018-08-30 Thread Felix Yan via arch-commits
Date: Thursday, August 30, 2018 @ 19:58:40
  Author: felixonmars
Revision: 375759

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-skylighting/repos/community-staging-x86_64/PKGBUILD (from rev 
375758, haskell-skylighting/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-08-30 19:58:40 UTC (rev 375759)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=skylighting
+pkgname=haskell-skylighting
+pkgver=0.7.2
+pkgrel=20
+pkgdesc="Syntax highlighting library"
+url="https://github.com/jgm/skylighting;
+license=('GPL2')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-ansi-terminal' 
'haskell-attoparsec'
+ 'haskell-base64-bytestring' 'haskell-blaze-html' 
'haskell-case-insensitive'
+ 'haskell-colour' 'haskell-hxt' 'haskell-pretty-show' 
'haskell-regex-pcre'
+ 'haskell-safe' 'haskell-skylighting-core' 'haskell-utf8-string')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('cf4898dc52a0156a780b114d2d9a12665cb5e5b052ceb0e0316a6dadb501502c483b82ef3a3d718d7fd6e628ae003b551b6ded583fc7c5bedc11472710a5d7c4')
+
+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 \
+-fsystem-pcre -fexecutable
+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}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-08-30 Thread Felix Yan via arch-commits
Date: Thursday, August 30, 2018 @ 19:58:25
  Author: felixonmars
Revision: 375758

upgpkg: haskell-skylighting 0.7.2-20

rebuild with skylighting-core 0.7.3

Modified:
  haskell-skylighting/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-30 19:57:31 UTC (rev 375757)
+++ PKGBUILD2018-08-30 19:58:25 UTC (rev 375758)
@@ -4,7 +4,7 @@
 _hkgname=skylighting
 pkgname=haskell-skylighting
 pkgver=0.7.2
-pkgrel=19
+pkgrel=20
 pkgdesc="Syntax highlighting library"
 url="https://github.com/jgm/skylighting;
 license=('GPL2')


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

2018-08-30 Thread Felix Yan via arch-commits
Date: Thursday, August 30, 2018 @ 19:57:31
  Author: felixonmars
Revision: 375757

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-skylighting-core/repos/community-staging-x86_64/PKGBUILD (from 
rev 375756, haskell-skylighting-core/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-08-30 19:57:31 UTC (rev 375757)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=skylighting-core
+pkgname=haskell-skylighting-core
+pkgver=0.7.3
+pkgrel=1
+pkgdesc="Syntax highlighting library"
+url="https://github.com/jgm/skylighting;
+license=('custom:BSD3')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-ansi-terminal' 
'haskell-attoparsec'
+ 'haskell-base64-bytestring' 'haskell-blaze-html' 
'haskell-case-insensitive'
+ 'haskell-colour' 'haskell-hxt' 'haskell-regex-pcre' 'haskell-safe'
+ 'haskell-utf8-string')
+makedepends=('ghc' 'haskell-diff' 'haskell-hunit' 'haskell-pretty-show' 
'haskell-quickcheck'
+ 'haskell-random' 'haskell-tasty' 'haskell-tasty-golden' 
'haskell-tasty-hunit'
+ 'haskell-tasty-quickcheck')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('2875e6f50191a8a5f51f38db5e855e90e07b5e3b953ab1bf218b345433391becb450c7d1cd6073af0f1dac648f6e18653f30094ecdfb740e0d8c24cc5932d84a')
+
+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 \
+-fexecutable -fsystem-pcre
+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-skylighting-core/trunk (PKGBUILD)

2018-08-30 Thread Felix Yan via arch-commits
Date: Thursday, August 30, 2018 @ 19:57:19
  Author: felixonmars
Revision: 375756

upgpkg: haskell-skylighting-core 0.7.3-1

rebuild with skylighting-core 0.7.3

Modified:
  haskell-skylighting-core/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-30 19:54:50 UTC (rev 375755)
+++ PKGBUILD2018-08-30 19:57:19 UTC (rev 375756)
@@ -3,8 +3,8 @@
 
 _hkgname=skylighting-core
 pkgname=haskell-skylighting-core
-pkgver=0.7.2
-pkgrel=19
+pkgver=0.7.3
+pkgrel=1
 pkgdesc="Syntax highlighting library"
 url="https://github.com/jgm/skylighting;
 license=('custom:BSD3')
@@ -17,7 +17,7 @@
  'haskell-random' 'haskell-tasty' 'haskell-tasty-golden' 
'haskell-tasty-hunit'
  'haskell-tasty-quickcheck')
 
source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
-sha512sums=('09fa3a44a08da045b394dbb4f526f0ca6cdb35bedde3619c21269d4e8bd4534a39a62d4b6fc5130d62f483bfe8e94eb4523b92cfac4fe0d5c2f7b49354ce5642')
+sha512sums=('2875e6f50191a8a5f51f38db5e855e90e07b5e3b953ab1bf218b345433391becb450c7d1cd6073af0f1dac648f6e18653f30094ecdfb740e0d8c24cc5932d84a')
 
 build() {
 cd "${srcdir}/${_hkgname}-${pkgver}"


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

2018-08-30 Thread Jan Steffens via arch-commits
Date: Thursday, August 30, 2018 @ 19:51:48
  Author: heftig
Revision: 333139

archrelease: copy trunk to extra-x86_64

Added:
  librsvg/repos/extra-x86_64/PKGBUILD
(from rev 333138, librsvg/trunk/PKGBUILD)
Deleted:
  librsvg/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-08-30 19:50:20 UTC (rev 333138)
+++ PKGBUILD2018-08-30 19:51:48 UTC (rev 333139)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=librsvg
-pkgver=2.44.1+4+g708b7d95
-pkgrel=1
-epoch=2
-pkgdesc="SVG rendering library"
-url="https://wiki.gnome.org/Projects/LibRsvg;
-arch=(x86_64)
-license=(LGPL)
-depends=(gdk-pixbuf2 pango libcroco)
-makedepends=(intltool gobject-introspection vala python2 gtk-doc git rust)
-_commit=708b7d95d149a98cb2d1504521b059302570835a  # librsvg-2.44
-source=("git+https://gitlab.gnome.org/GNOME/librsvg.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr --disable-static --enable-vala --enable-gtk-doc
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' libtool
-  make
-}
-
-check() {
-  cd $pkgname
-  make check
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-}
-
-# vim: ts=2 sw=2 et:

Copied: librsvg/repos/extra-x86_64/PKGBUILD (from rev 333138, 
librsvg/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-08-30 19:51:48 UTC (rev 333139)
@@ -0,0 +1,44 @@
+# Maintainer: Jan de Groot 
+
+pkgname=librsvg
+pkgver=2.44.2
+pkgrel=1
+epoch=2
+pkgdesc="SVG rendering library"
+url="https://wiki.gnome.org/Projects/LibRsvg;
+arch=(x86_64)
+license=(LGPL)
+depends=(gdk-pixbuf2 pango libcroco)
+makedepends=(intltool gobject-introspection vala python2 gtk-doc git rust)
+_commit=5121a79e8e1c3ed478fdaac4e4f4a0e34382f256  # tags/2.44.2^0
+source=("git+https://gitlab.gnome.org/GNOME/librsvg.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr --disable-static --enable-vala --enable-gtk-doc
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' libtool
+  make
+}
+
+check() {
+  cd $pkgname
+  make check
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in lib32-librsvg/repos/multilib-x86_64 (4 files)

2018-08-30 Thread Jan Steffens via arch-commits
Date: Thursday, August 30, 2018 @ 19:51:03
  Author: heftig
Revision: 375683

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-librsvg/repos/multilib-x86_64/PKGBUILD
(from rev 375682, lib32-librsvg/trunk/PKGBUILD)
  lib32-librsvg/repos/multilib-x86_64/multilib.diff
(from rev 375682, lib32-librsvg/trunk/multilib.diff)
Deleted:
  lib32-librsvg/repos/multilib-x86_64/PKGBUILD
  lib32-librsvg/repos/multilib-x86_64/multilib.diff

---+
 PKGBUILD  |  115 +++-
 multilib.diff |   66 
 2 files changed, 90 insertions(+), 91 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-08-30 19:48:58 UTC (rev 375682)
+++ PKGBUILD2018-08-30 19:51:03 UTC (rev 375683)
@@ -1,58 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin 
-# Contributor: jtts 
-# Contributor: Jan de Groot 
-
-pkgname=lib32-librsvg
-pkgver=2.44.1+4+g708b7d95
-pkgrel=1
-pkgdesc="SVG rendering library (32-bit)"
-url="https://wiki.gnome.org/Projects/LibRsvg;
-arch=(x86_64)
-license=(LGPL)
-depends=(lib32-gdk-pixbuf2 lib32-pango lib32-libcroco librsvg)
-makedepends=(intltool gobject-introspection vala python2 gtk-doc git 
lib32-rust)
-_commit=708b7d95d149a98cb2d1504521b059302570835a  # librsvg-2.44
-source=("git+https://gitlab.gnome.org/GNOME/librsvg.git#commit=$_commit;
-multilib.diff)
-sha256sums=('SKIP'
-'f562f9fda0c8bcad8de3f6eea9eee16014a5634261a6646724da99d9ca497bbf')
-
-pkgver() {
-  cd librsvg
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd librsvg
-
-  # Hack to cross-compile rust only
-  patch -Np1 -i ../multilib.diff
-
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  export CC='gcc -m32'
-  export CXX='g++ -m32'
-  export PKG_CONFIG_PATH=/usr/lib32/pkgconfig
-  export RUST_TARGET=i686-unknown-linux-gnu
-
-  cd librsvg
-  ./configure --prefix=/usr --disable-static --enable-vala --disable-gtk-doc 
--libdir=/usr/lib32
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' libtool
-  make
-}
-
-check() {
-  cd librsvg
-  make check
-}
-
-package() {
-  cd librsvg
-  make DESTDIR="$pkgdir" install
-  rm -r "$pkgdir"/usr/{bin,include,share}
-}
-
-# vim: ts=2 sw=2 et:

Copied: lib32-librsvg/repos/multilib-x86_64/PKGBUILD (from rev 375682, 
lib32-librsvg/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-08-30 19:51:03 UTC (rev 375683)
@@ -0,0 +1,57 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: jtts 
+# Contributor: Jan de Groot 
+
+pkgname=lib32-librsvg
+pkgver=2.44.2
+pkgrel=1
+pkgdesc="SVG rendering library (32-bit)"
+url="https://wiki.gnome.org/Projects/LibRsvg;
+arch=(x86_64)
+license=(LGPL)
+depends=(lib32-gdk-pixbuf2 lib32-pango lib32-libcroco librsvg)
+makedepends=(intltool gobject-introspection vala python2 gtk-doc git 
lib32-rust)
+_commit=5121a79e8e1c3ed478fdaac4e4f4a0e34382f256  # tags/2.44.2^0
+source=("git+https://gitlab.gnome.org/GNOME/librsvg.git#commit=$_commit;
+multilib.diff)
+sha256sums=('SKIP'
+'f562f9fda0c8bcad8de3f6eea9eee16014a5634261a6646724da99d9ca497bbf')
+
+pkgver() {
+  cd librsvg
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd librsvg
+
+  # Hack to cross-compile rust only
+  patch -Np1 -i ../multilib.diff
+
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  export CC='gcc -m32'
+  export CXX='g++ -m32'
+  export PKG_CONFIG_PATH=/usr/lib32/pkgconfig
+  export RUST_TARGET=i686-unknown-linux-gnu
+
+  cd librsvg
+  ./configure --prefix=/usr --disable-static --enable-vala --disable-gtk-doc 
--libdir=/usr/lib32
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' libtool
+  make
+}
+
+check() {
+  cd librsvg
+  make check
+}
+
+package() {
+  cd librsvg
+  make DESTDIR="$pkgdir" install
+  rm -r "$pkgdir"/usr/{bin,include,share}
+}
+
+# vim: ts=2 sw=2 et:

Deleted: multilib.diff
===
--- multilib.diff   2018-08-30 19:48:58 UTC (rev 375682)
+++ multilib.diff   2018-08-30 19:51:03 UTC (rev 375683)
@@ -1,33 +0,0 @@
- Makefile.am  | 2 --
- configure.ac | 4 +---
- 2 files changed, 1 insertion(+), 5 deletions(-)
-
-diff --git c/Makefile.am i/Makefile.am
-index 69bf4bc3..1a70f8de 100644
 c/Makefile.am
-+++ i/Makefile.am
-@@ -128,9 +128,7 @@ else
- CARGO_RELEASE_ARGS=--release
- endif
- 
--if CROSS_COMPILING
- CARGO_TARGET_ARGS=--target=$(RUST_TARGET)
--endif
- 
- CARGO_VERBOSE = $(cargo_verbose_$(V))
- cargo_verbose_ = $(cargo_verbose_$(AM_DEFAULT_VERBOSITY))
-diff --git c/configure.ac i/configure.ac
-index 6afdc9f7..e398c2c2 100644
 c/configure.ac
-+++ i/configure.ac
-@@ -293,9 +293,7 @@ if test "x$RUST_TARGET" == x; then
- fi
- 
- AM_CONDITIONAL(CROSS_COMPILING, test $cross_compiling = yes)
--if test "x$cross_compiling" = "xyes" ; then
--  RUST_TARGET_SUBDIR="$RUST_TARGET/$RUST_TARGET_SUBDIR"
--fi

[arch-commits] Commit in seahorse/repos/extra-x86_64 (3 files)

2018-08-30 Thread Jan Steffens via arch-commits
Date: Thursday, August 30, 2018 @ 19:50:20
  Author: heftig
Revision: 333138

archrelease: copy trunk to extra-x86_64

Added:
  seahorse/repos/extra-x86_64/PKGBUILD
(from rev 333137, seahorse/trunk/PKGBUILD)
Deleted:
  seahorse/repos/extra-x86_64/0001-LDAP-source-Fix-non-debug-build.patch
  seahorse/repos/extra-x86_64/PKGBUILD

+
 0001-LDAP-source-Fix-non-debug-build.patch |   89 ---
 PKGBUILD   |   83 +++--
 2 files changed, 39 insertions(+), 133 deletions(-)

Deleted: 0001-LDAP-source-Fix-non-debug-build.patch
===
--- 0001-LDAP-source-Fix-non-debug-build.patch  2018-08-30 19:49:15 UTC (rev 
333137)
+++ 0001-LDAP-source-Fix-non-debug-build.patch  2018-08-30 19:50:20 UTC (rev 
333138)
@@ -1,89 +0,0 @@
-From b82bf06c54f648e2d795b567a5d824f40c27614f Mon Sep 17 00:00:00 2001
-Message-Id: 

-From: "Jan Alexander Steffens (heftig)" 
-Date: Thu, 15 Mar 2018 18:57:47 +0100
-Subject: [PATCH] LDAP source: Fix non-debug build
-
-In non-debug builds, WITH_DEBUG is defined but set to 0.
-
-Simplify the use of dump_ldap_entry by making it do nothing in non-debug
-builds.

- pgp/seahorse-ldap-source.c | 12 ++--
- 1 file changed, 2 insertions(+), 10 deletions(-)
-
-diff --git a/pgp/seahorse-ldap-source.c b/pgp/seahorse-ldap-source.c
-index 4819c918..0dd72446 100644
 a/pgp/seahorse-ldap-source.c
-+++ b/pgp/seahorse-ldap-source.c
-@@ -125,35 +125,33 @@ get_ldap_values (LDAP *ld, LDAPMessage *entry, const 
char *attribute)
- return (gchar**)g_array_free (array, FALSE);
- }
- 
--#if WITH_DEBUG
--
- static void
- dump_ldap_entry (LDAP *ld, LDAPMessage *res)
- {
-+#if WITH_DEBUG
- BerElement *pos;
- gchar **values;
- gchar **v;
- char *t;
- 
- t = ldap_get_dn (ld, res);
- g_debug ("dn: %s\n", t);
- ldap_memfree (t);
- 
- for (t = ldap_first_attribute (ld, res, ); t; 
-  t = ldap_next_attribute (ld, res, pos)) {
-  
- values = get_ldap_values (ld, res, t);
- for (v = values; *v; v++) 
- g_debug ("%s: %s\n", t, *v);
- 
- g_strfreev (values);
- ldap_memfree (t);
- }
- 
- ber_free (pos, 0);
--}
--
- #endif /* WITH_DEBUG */
-+}
- 
- static GQuark
- get_ldap_error_domain ()
-@@ -474,9 +472,7 @@ on_connect_server_info_completed (LDAPMessage *result,
-   if (type == LDAP_RES_SEARCH_ENTRY) {
- 
-   g_debug ("Server Info Result");
--#ifdef WITH_DEBUG
-   dump_ldap_entry (closure->ldap, result);
--#endif
- 
-   /* NOTE: When adding attributes here make sure to add them to 
kServerAttributes */
-   sinfo = g_new0 (LDAPServerInfo, 1);
-@@ -867,9 +863,7 @@ on_search_search_completed (LDAPMessage *result,
-   /* An LDAP entry */
-   if (type == LDAP_RES_SEARCH_ENTRY) {
-   g_debug ("Retrieved Key Entry");
--#ifdef WITH_DEBUG
-   dump_ldap_entry (closure->ldap, result);
--#endif
- 
-   search_parse_key_from_ldap_entry (self, closure->results,
- closure->ldap, result);
-@@ -1238,9 +1232,7 @@ on_export_search_completed (LDAPMessage *result,
-   if (type == LDAP_RES_SEARCH_ENTRY) {
- 
-   g_debug ("Server Info Result");
--#ifdef WITH_DEBUG
-   dump_ldap_entry (closure->ldap, result);
--#endif
- 
-   key = get_string_attribute (closure->ldap, result, 
sinfo->key_attr);
- 
--- 
-2.16.2
-

Deleted: PKGBUILD
===
--- PKGBUILD2018-08-30 19:49:15 UTC (rev 333137)
+++ PKGBUILD2018-08-30 19:50:20 UTC (rev 333138)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-# Contributor: Michel Brabants 
-
-pkgname=seahorse
-pkgver=3.20.0+288+gce2340dc
-pkgrel=1
-pkgdesc="GNOME application for managing PGP keys."
-url="https://wiki.gnome.org/Apps/Seahorse;
-arch=(x86_64)
-license=(GPL)
-depends=(gtk3 gcr libsecret libsoup gpgme gnome-keyring)
-makedepends=(libldap yelp-tools gobject-introspection vala git meson)
-provides=(x11-ssh-askpass)
-_commit=ce2340dc80820a130f9a65d0084e54443cc9c82d  # master
-source=("git+https://git.gnome.org/browse/seahorse#commit=$_commit;
-0001-LDAP-source-Fix-non-debug-build.patch)
-sha256sums=('SKIP'
-'7c45e55f9d98510e1f9305af71d9a11d66fd15100ed29239493c94d591eb9e98')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  patch -Np1 -i ../0001-LDAP-source-Fix-non-debug-build.patch
-}
-
-build() {
-  arch-meson $pkgname build
-  ninja -C build
-}
-
-check() {
-  cd build
-  meson test
-}
-
-package() {
-  DESTDIR="$pkgdir" ninja -C build install
-}

Copied: seahorse/repos/extra-x86_64/PKGBUILD (from rev 333137, 
seahorse/trunk/PKGBUILD)

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

2018-08-30 Thread Jan Steffens via arch-commits
Date: Thursday, August 30, 2018 @ 19:49:15
  Author: heftig
Revision: 333137

3.29.92+6+gdd81db31-1

Modified:
  seahorse/trunk/PKGBUILD   (contents, properties)
Deleted:
  seahorse/trunk/0001-LDAP-source-Fix-non-debug-build.patch

+
 0001-LDAP-source-Fix-non-debug-build.patch |   89 ---
 PKGBUILD   |   17 +
 2 files changed, 6 insertions(+), 100 deletions(-)

Deleted: 0001-LDAP-source-Fix-non-debug-build.patch
===
--- 0001-LDAP-source-Fix-non-debug-build.patch  2018-08-30 19:35:09 UTC (rev 
333136)
+++ 0001-LDAP-source-Fix-non-debug-build.patch  2018-08-30 19:49:15 UTC (rev 
333137)
@@ -1,89 +0,0 @@
-From b82bf06c54f648e2d795b567a5d824f40c27614f Mon Sep 17 00:00:00 2001
-Message-Id: 

-From: "Jan Alexander Steffens (heftig)" 
-Date: Thu, 15 Mar 2018 18:57:47 +0100
-Subject: [PATCH] LDAP source: Fix non-debug build
-
-In non-debug builds, WITH_DEBUG is defined but set to 0.
-
-Simplify the use of dump_ldap_entry by making it do nothing in non-debug
-builds.

- pgp/seahorse-ldap-source.c | 12 ++--
- 1 file changed, 2 insertions(+), 10 deletions(-)
-
-diff --git a/pgp/seahorse-ldap-source.c b/pgp/seahorse-ldap-source.c
-index 4819c918..0dd72446 100644
 a/pgp/seahorse-ldap-source.c
-+++ b/pgp/seahorse-ldap-source.c
-@@ -125,35 +125,33 @@ get_ldap_values (LDAP *ld, LDAPMessage *entry, const 
char *attribute)
- return (gchar**)g_array_free (array, FALSE);
- }
- 
--#if WITH_DEBUG
--
- static void
- dump_ldap_entry (LDAP *ld, LDAPMessage *res)
- {
-+#if WITH_DEBUG
- BerElement *pos;
- gchar **values;
- gchar **v;
- char *t;
- 
- t = ldap_get_dn (ld, res);
- g_debug ("dn: %s\n", t);
- ldap_memfree (t);
- 
- for (t = ldap_first_attribute (ld, res, ); t; 
-  t = ldap_next_attribute (ld, res, pos)) {
-  
- values = get_ldap_values (ld, res, t);
- for (v = values; *v; v++) 
- g_debug ("%s: %s\n", t, *v);
- 
- g_strfreev (values);
- ldap_memfree (t);
- }
- 
- ber_free (pos, 0);
--}
--
- #endif /* WITH_DEBUG */
-+}
- 
- static GQuark
- get_ldap_error_domain ()
-@@ -474,9 +472,7 @@ on_connect_server_info_completed (LDAPMessage *result,
-   if (type == LDAP_RES_SEARCH_ENTRY) {
- 
-   g_debug ("Server Info Result");
--#ifdef WITH_DEBUG
-   dump_ldap_entry (closure->ldap, result);
--#endif
- 
-   /* NOTE: When adding attributes here make sure to add them to 
kServerAttributes */
-   sinfo = g_new0 (LDAPServerInfo, 1);
-@@ -867,9 +863,7 @@ on_search_search_completed (LDAPMessage *result,
-   /* An LDAP entry */
-   if (type == LDAP_RES_SEARCH_ENTRY) {
-   g_debug ("Retrieved Key Entry");
--#ifdef WITH_DEBUG
-   dump_ldap_entry (closure->ldap, result);
--#endif
- 
-   search_parse_key_from_ldap_entry (self, closure->results,
- closure->ldap, result);
-@@ -1238,9 +1232,7 @@ on_export_search_completed (LDAPMessage *result,
-   if (type == LDAP_RES_SEARCH_ENTRY) {
- 
-   g_debug ("Server Info Result");
--#ifdef WITH_DEBUG
-   dump_ldap_entry (closure->ldap, result);
--#endif
- 
-   key = get_string_attribute (closure->ldap, result, 
sinfo->key_attr);
- 
--- 
-2.16.2
-

Modified: PKGBUILD
===
--- PKGBUILD2018-08-30 19:35:09 UTC (rev 333136)
+++ PKGBUILD2018-08-30 19:49:15 UTC (rev 333137)
@@ -1,10 +1,9 @@
-# $Id$
 # Maintainer: Jan Alexander Steffens (heftig) 
 # Contributor: Jan de Groot 
 # Contributor: Michel Brabants 
 
 pkgname=seahorse
-pkgver=3.20.0+288+gce2340dc
+pkgver=3.29.92+6+gdd81db31
 pkgrel=1
 pkgdesc="GNOME application for managing PGP keys."
 url="https://wiki.gnome.org/Apps/Seahorse;
@@ -13,11 +12,9 @@
 depends=(gtk3 gcr libsecret libsoup gpgme gnome-keyring)
 makedepends=(libldap yelp-tools gobject-introspection vala git meson)
 provides=(x11-ssh-askpass)
-_commit=ce2340dc80820a130f9a65d0084e54443cc9c82d  # master
-source=("git+https://git.gnome.org/browse/seahorse#commit=$_commit;
-0001-LDAP-source-Fix-non-debug-build.patch)
-sha256sums=('SKIP'
-'7c45e55f9d98510e1f9305af71d9a11d66fd15100ed29239493c94d591eb9e98')
+_commit=dd81db3139dff1a8afa47ea0146b510e0f0a3abb  # master
+source=("git+https://gitlab.gnome.org/GNOME/seahorse.git#commit=$_commit;)
+sha256sums=('SKIP')
 
 pkgver() {
   cd $pkgname
@@ -26,7 +23,6 @@
 
 prepare() {
   cd $pkgname
-  patch -Np1 -i ../0001-LDAP-source-Fix-non-debug-build.patch
 }
 
 build() {
@@ -35,10 +31,9 @@
 }
 
 check() {
-  cd build
-  meson test
+  meson test -C build
 }
 
 package() {
-  DESTDIR="$pkgdir" ninja -C build install
+  DESTDIR="$pkgdir" meson install -C build
 }


Property changes on: 

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

2018-08-30 Thread Jan Steffens via arch-commits
Date: Thursday, August 30, 2018 @ 19:48:58
  Author: heftig
Revision: 375682

2.44.2-1

Modified:
  lib32-librsvg/trunk/PKGBUILD  (contents, properties)

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-30 19:46:58 UTC (rev 375681)
+++ PKGBUILD2018-08-30 19:48:58 UTC (rev 375682)
@@ -1,10 +1,9 @@
-# $Id$
 # Maintainer: Maxime Gauduin 
 # Contributor: jtts 
 # Contributor: Jan de Groot 
 
 pkgname=lib32-librsvg
-pkgver=2.44.1+4+g708b7d95
+pkgver=2.44.2
 pkgrel=1
 pkgdesc="SVG rendering library (32-bit)"
 url="https://wiki.gnome.org/Projects/LibRsvg;
@@ -12,7 +11,7 @@
 license=(LGPL)
 depends=(lib32-gdk-pixbuf2 lib32-pango lib32-libcroco librsvg)
 makedepends=(intltool gobject-introspection vala python2 gtk-doc git 
lib32-rust)
-_commit=708b7d95d149a98cb2d1504521b059302570835a  # librsvg-2.44
+_commit=5121a79e8e1c3ed478fdaac4e4f4a0e34382f256  # tags/2.44.2^0
 source=("git+https://gitlab.gnome.org/GNOME/librsvg.git#commit=$_commit;
 multilib.diff)
 sha256sums=('SKIP'


Property changes on: lib32-librsvg/trunk/PKGBUILD
___
Deleted: svn:keywords
## -1 +0,0 ##
-Id
\ No newline at end of property


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

2018-08-30 Thread Eli Schwartz via arch-commits
Date: Thursday, August 30, 2018 @ 19:46:58
  Author: eschwartz
Revision: 375681

archrelease: copy trunk to community-any

Added:
  firefox-adblock-plus/repos/community-any/PKGBUILD
(from rev 375680, firefox-adblock-plus/trunk/PKGBUILD)
Deleted:
  firefox-adblock-plus/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-08-30 19:46:40 UTC (rev 375680)
+++ PKGBUILD2018-08-30 19:46:58 UTC (rev 375681)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Eschwartz 
-
-pkgname=firefox-adblock-plus
-pkgver=3.3
-pkgrel=1
-_file=1058236
-pkgdesc="Extension for firefox which block ads and banners"
-arch=('any')
-url="https://adblockplus.org/;
-license=('GPL3')
-groups=('firefox-addons')
-makedepends=('unzip')
-# https://addons.mozilla.org/en-US/firefox/addon/adblock-plus/versions/
-source=("https://addons.mozilla.org/firefox/downloads/file/${_file}/adblock-plus-${pkgver}.xpi;)
-noextract=("adblock-plus-$pkgver.xpi")
-sha256sums=('9b7585714f18c1b09e89257cfe93927b589116d1a7a1469aa194572d5ba3259b')
-
-package() {
-  depends=("firefox")
-
-  cd "${srcdir}"
-  _extension_id="{d10d0bf8-f5b5-c8b4-a8b2-2b9879e08c5d}"
-  
_extension_dest="${pkgdir}/usr/lib/firefox/browser/extensions/${_extension_id}"
-  install -Dm644 adblock-plus-${pkgver}.xpi "${_extension_dest}.xpi"
-}

Copied: firefox-adblock-plus/repos/community-any/PKGBUILD (from rev 375680, 
firefox-adblock-plus/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-08-30 19:46:58 UTC (rev 375681)
@@ -0,0 +1,26 @@
+# Maintainer: Sergej Pupykin 
+# Maintainer: Eli Schwartz 
+
+pkgname=firefox-adblock-plus
+pkgver=3.3.1
+pkgrel=1
+_file=106
+pkgdesc="Extension for firefox which block ads and banners"
+arch=('any')
+url="https://adblockplus.org/;
+license=('GPL3')
+groups=('firefox-addons')
+makedepends=('unzip')
+# https://addons.mozilla.org/en-US/firefox/addon/adblock-plus/versions/
+source=("https://addons.mozilla.org/firefox/downloads/file/${_file}/adblock-plus-${pkgver}.xpi;)
+noextract=("adblock-plus-$pkgver.xpi")
+sha256sums=('a12d40b03812d152e2fb6870be133158b941b4fcf97b139b00b84c9f30cf2191')
+
+package() {
+  depends=("firefox")
+
+  cd "${srcdir}"
+  _extension_id="{d10d0bf8-f5b5-c8b4-a8b2-2b9879e08c5d}"
+  
_extension_dest="${pkgdir}/usr/lib/firefox/browser/extensions/${_extension_id}"
+  install -Dm644 adblock-plus-${pkgver}.xpi "${_extension_dest}.xpi"
+}


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

2018-08-30 Thread Eli Schwartz via arch-commits
Date: Thursday, August 30, 2018 @ 19:46:40
  Author: eschwartz
Revision: 375680

upgpkg: firefox-adblock-plus 3.3.1-1

upstream release

Modified:
  firefox-adblock-plus/trunk/PKGBUILD   (contents, properties)

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-30 19:29:43 UTC (rev 375679)
+++ PKGBUILD2018-08-30 19:46:40 UTC (rev 375680)
@@ -1,11 +1,10 @@
-# $Id$
 # Maintainer: Sergej Pupykin 
-# Contributor: Eschwartz 
+# Maintainer: Eli Schwartz 
 
 pkgname=firefox-adblock-plus
-pkgver=3.3
+pkgver=3.3.1
 pkgrel=1
-_file=1058236
+_file=106
 pkgdesc="Extension for firefox which block ads and banners"
 arch=('any')
 url="https://adblockplus.org/;
@@ -15,7 +14,7 @@
 # https://addons.mozilla.org/en-US/firefox/addon/adblock-plus/versions/
 
source=("https://addons.mozilla.org/firefox/downloads/file/${_file}/adblock-plus-${pkgver}.xpi;)
 noextract=("adblock-plus-$pkgver.xpi")
-sha256sums=('9b7585714f18c1b09e89257cfe93927b589116d1a7a1469aa194572d5ba3259b')
+sha256sums=('a12d40b03812d152e2fb6870be133158b941b4fcf97b139b00b84c9f30cf2191')
 
 package() {
   depends=("firefox")


Property changes on: firefox-adblock-plus/trunk/PKGBUILD
___
Deleted: svn:keywords
## -1 +0,0 ##
-Id
\ No newline at end of property


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

2018-08-30 Thread Jan Steffens via arch-commits
Date: Thursday, August 30, 2018 @ 19:35:09
  Author: heftig
Revision: 333136

remove Id

Modified:
  librsvg/trunk/PKGBUILD(contents, properties)

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-30 19:34:35 UTC (rev 333135)
+++ PKGBUILD2018-08-30 19:35:09 UTC (rev 333136)
@@ -1,4 +1,3 @@
-# $Id$
 # Maintainer: Jan de Groot 
 
 pkgname=librsvg


Property changes on: librsvg/trunk/PKGBUILD
___
Deleted: svn:keywords
## -1 +0,0 ##
-Id
\ No newline at end of property


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

2018-08-30 Thread Jan Steffens via arch-commits
Date: Thursday, August 30, 2018 @ 19:34:35
  Author: heftig
Revision: 333135

2.44.2-1

Modified:
  librsvg/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-30 19:30:16 UTC (rev 333134)
+++ PKGBUILD2018-08-30 19:34:35 UTC (rev 333135)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot 
 
 pkgname=librsvg
-pkgver=2.44.1+4+g708b7d95
+pkgver=2.44.2
 pkgrel=1
 epoch=2
 pkgdesc="SVG rendering library"
@@ -11,7 +11,7 @@
 license=(LGPL)
 depends=(gdk-pixbuf2 pango libcroco)
 makedepends=(intltool gobject-introspection vala python2 gtk-doc git rust)
-_commit=708b7d95d149a98cb2d1504521b059302570835a  # librsvg-2.44
+_commit=5121a79e8e1c3ed478fdaac4e4f4a0e34382f256  # tags/2.44.2^0
 source=("git+https://gitlab.gnome.org/GNOME/librsvg.git#commit=$_commit;)
 sha256sums=('SKIP')
 


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

2018-08-30 Thread Jan Steffens via arch-commits
Date: Thursday, August 30, 2018 @ 19:30:16
  Author: heftig
Revision: 333134

archrelease: copy trunk to extra-x86_64

Added:
  fontconfig/repos/extra-x86_64/PKGBUILD
(from rev 333133, fontconfig/trunk/PKGBUILD)
  fontconfig/repos/extra-x86_64/fontconfig.hook
(from rev 333133, fontconfig/trunk/fontconfig.hook)
  fontconfig/repos/extra-x86_64/fontconfig.install
(from rev 333133, fontconfig/trunk/fontconfig.install)
Deleted:
  fontconfig/repos/extra-x86_64/PKGBUILD
  fontconfig/repos/extra-x86_64/fontconfig.hook
  fontconfig/repos/extra-x86_64/fontconfig.install

+
 PKGBUILD   |  128 +--
 fontconfig.hook|   22 
 fontconfig.install |   76 +++---
 3 files changed, 113 insertions(+), 113 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-08-30 19:28:27 UTC (rev 333133)
+++ PKGBUILD2018-08-30 19:30:16 UTC (rev 333134)
@@ -1,64 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=fontconfig
-pkgver=2.13.0+15+gc60ed9e
-pkgrel=1
-epoch=1
-pkgdesc="A library for configuring and customizing font access"
-arch=(x86_64)
-url="https://www.freedesktop.org/wiki/Software/fontconfig/;
-license=(custom)
-depends=(expat freetype2)
-makedepends=(git autoconf-archive gperf python-lxml python-six docbook-utils 
docbook-sgml
- perl-sgmls 'texlive-formatsextra>=2017' lynx)
-install=fontconfig.install
-_commit=c60ed9ef66e59584f8b54323018e9e6c69925c7e  # master~45
-source=("git+https://anongit.freedesktop.org/git/fontconfig#commit=$_commit;
-fontconfig.hook)
-sha256sums=('SKIP'
-'672f6a1c5e164671955ce807e670306194142a1794ce88df653aa717a972e274')
-
-# a nice page to test font matching:
-# http://zipcon.net/~swhite/docs/computers/browsers/fonttest.html
-# http://getemoji.com/
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr \
---sysconfdir=/etc \
---with-templatedir=/etc/fonts/conf.avail \
---with-xmldir=/etc/fonts \
---localstatedir=/var \
---disable-static \
---with-default-fonts=/usr/share/fonts \
---with-add-fonts=/usr/local/share/fonts
-  make
-}
-
-check() {
-  cd $pkgname
-  make -k check
-}
-
-_install_conf() {
-  install -m644 "$1" "$pkgdir/etc/fonts/conf.avail"
-  ln -s "../conf.avail/${1##*/}" "$pkgdir/etc/fonts/conf.d"
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
-  install -Dm644 ../fontconfig.hook 
"$pkgdir/usr/share/libalpm/hooks/fontconfig.hook"
-}

Copied: fontconfig/repos/extra-x86_64/PKGBUILD (from rev 333133, 
fontconfig/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-08-30 19:30:16 UTC (rev 333134)
@@ -0,0 +1,64 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Maintainer: Jan de Groot 
+
+pkgname=fontconfig
+pkgver=2.13.1
+pkgrel=1
+epoch=1
+pkgdesc="A library for configuring and customizing font access"
+arch=(x86_64)
+url="https://www.freedesktop.org/wiki/Software/fontconfig/;
+license=(custom)
+depends=(expat freetype2)
+makedepends=(git autoconf-archive gperf python-lxml python-six docbook-utils 
docbook-sgml
+ perl-sgmls 'texlive-formatsextra>=2017' lynx json-c)
+install=fontconfig.install
+_commit=844d8709a1f3ecab45015b24b72dd775c13b2421  # tags/2.13.1^0
+source=("git+https://anongit.freedesktop.org/git/fontconfig#commit=$_commit;
+fontconfig.hook)
+sha256sums=('SKIP'
+'672f6a1c5e164671955ce807e670306194142a1794ce88df653aa717a972e274')
+
+# a nice page to test font matching:
+# http://zipcon.net/~swhite/docs/computers/browsers/fonttest.html
+# http://getemoji.com/
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr \
+--sysconfdir=/etc \
+--with-templatedir=/etc/fonts/conf.avail \
+--with-xmldir=/etc/fonts \
+--localstatedir=/var \
+--disable-static \
+--with-default-fonts=/usr/share/fonts \
+--with-add-fonts=/usr/local/share/fonts
+  make
+}
+
+check() {
+  cd $pkgname
+  make -k check
+}
+
+_install_conf() {
+  install -m644 "$1" "$pkgdir/etc/fonts/conf.avail"
+  ln -s "../conf.avail/${1##*/}" "$pkgdir/etc/fonts/conf.d"
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
+  install -Dm644 ../fontconfig.hook 
"$pkgdir/usr/share/libalpm/hooks/fontconfig.hook"
+}

Deleted: fontconfig.hook
===
--- fontconfig.hook 2018-08-30 19:28:27 UTC (rev 333133)
+++ 

[arch-commits] Commit in lib32-fontconfig/repos/multilib-x86_64 (6 files)

2018-08-30 Thread Jan Steffens via arch-commits
Date: Thursday, August 30, 2018 @ 19:29:43
  Author: heftig
Revision: 375679

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-fontconfig/repos/multilib-x86_64/PKGBUILD
(from rev 375678, lib32-fontconfig/trunk/PKGBUILD)
  lib32-fontconfig/repos/multilib-x86_64/fontconfig-32.hook
(from rev 375678, lib32-fontconfig/trunk/fontconfig-32.hook)
  lib32-fontconfig/repos/multilib-x86_64/lib32-fontconfig.install
(from rev 375678, lib32-fontconfig/trunk/lib32-fontconfig.install)
Deleted:
  lib32-fontconfig/repos/multilib-x86_64/PKGBUILD
  lib32-fontconfig/repos/multilib-x86_64/fontconfig-32.hook
  lib32-fontconfig/repos/multilib-x86_64/lib32-fontconfig.install

--+
 PKGBUILD |  146 ++---
 fontconfig-32.hook   |   22 +++---
 lib32-fontconfig.install |   20 +++---
 3 files changed, 94 insertions(+), 94 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-08-30 19:27:33 UTC (rev 375678)
+++ PKGBUILD2018-08-30 19:29:43 UTC (rev 375679)
@@ -1,73 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-_pkgbasename=fontconfig
-pkgname=lib32-$_pkgbasename
-pkgver=2.13.0+15+gc60ed9e
-pkgrel=1
-epoch=1
-pkgdesc="A library for configuring and customizing font access (32-bit)"
-arch=(x86_64)
-url="https://www.freedesktop.org/wiki/Software/fontconfig/;
-license=(custom)
-depends=(lib32-expat lib32-freetype2 $_pkgbasename)
-makedepends=(git autoconf-archive gperf python-lxml python-six)
-install=lib32-fontconfig.install
-_commit=c60ed9ef66e59584f8b54323018e9e6c69925c7e  # master~45
-source=("git+https://anongit.freedesktop.org/git/fontconfig#commit=$_commit;
-fontconfig-32.hook)
-sha256sums=('SKIP'
-'d97c0c5b88023da5a2acf64cf560265390a9365305c43b8e86b4f89348e727b3')
-
-# a nice page to test font matching:
-# http://zipcon.net/~swhite/docs/computers/browsers/fonttest.html
-# http://getemoji.com/
-
-pkgver() {
-  cd $_pkgbasename
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $_pkgbasename
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd $_pkgbasename
-
-  export CC="gcc -m32"
-  export CXX="g++ -m32"
-  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
-
-  ./configure --prefix=/usr \
---libdir=/usr/lib32 \
---sysconfdir=/etc \
---with-templatedir=/etc/fonts/conf.avail \
---with-xmldir=/etc/fonts \
---localstatedir=/var \
---disable-static \
---with-default-fonts=/usr/share/fonts \
---with-add-fonts=/usr/local/share/fonts
-  make
-}
-
-check() {
-  cd $_pkgbasename
-  make -k check
-}
-
-package() {
-  cd $_pkgbasename
-  make DESTDIR="$pkgdir" install
-
-  rm -r "$pkgdir"/{etc,usr/{include,share}}
-  find "$pkgdir/usr/bin" -not -type d -not -name fc-cache -delete
-  mv "$pkgdir"/usr/bin/fc-cache{,-32}
-
-  install -Dm644 ../fontconfig-32.hook 
"$pkgdir/usr/share/libalpm/hooks/fontconfig-32.hook"
-
-  # Install license
-  mkdir -p "$pkgdir/usr/share/licenses"
-  ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname"
-}

Copied: lib32-fontconfig/repos/multilib-x86_64/PKGBUILD (from rev 375678, 
lib32-fontconfig/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-08-30 19:29:43 UTC (rev 375679)
@@ -0,0 +1,73 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Maintainer: Jan de Groot 
+
+_pkgbasename=fontconfig
+pkgname=lib32-$_pkgbasename
+pkgver=2.13.1
+pkgrel=1
+epoch=1
+pkgdesc="A library for configuring and customizing font access (32-bit)"
+arch=(x86_64)
+url="https://www.freedesktop.org/wiki/Software/fontconfig/;
+license=(custom)
+depends=(lib32-expat lib32-freetype2 $_pkgbasename)
+makedepends=(git autoconf-archive gperf python-lxml python-six lib32-json-c)
+install=lib32-fontconfig.install
+_commit=844d8709a1f3ecab45015b24b72dd775c13b2421  # tags/2.13.1^0
+source=("git+https://anongit.freedesktop.org/git/fontconfig#commit=$_commit;
+fontconfig-32.hook)
+sha256sums=('SKIP'
+'d97c0c5b88023da5a2acf64cf560265390a9365305c43b8e86b4f89348e727b3')
+
+# a nice page to test font matching:
+# http://zipcon.net/~swhite/docs/computers/browsers/fonttest.html
+# http://getemoji.com/
+
+pkgver() {
+  cd $_pkgbasename
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $_pkgbasename
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $_pkgbasename
+
+  export CC="gcc -m32"
+  export CXX="g++ -m32"
+  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
+
+  ./configure --prefix=/usr \
+--libdir=/usr/lib32 \
+--sysconfdir=/etc \
+--with-templatedir=/etc/fonts/conf.avail \
+--with-xmldir=/etc/fonts \
+--localstatedir=/var \
+--disable-static \
+--with-default-fonts=/usr/share/fonts \
+--with-add-fonts=/usr/local/share/fonts
+  make
+}
+
+check() {
+  cd $_pkgbasename
+  make -k check
+}
+
+package() {
+  cd $_pkgbasename
+  make 

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

2018-08-30 Thread Jan Steffens via arch-commits
Date: Thursday, August 30, 2018 @ 19:28:27
  Author: heftig
Revision: 333133

2.13.1-1

Modified:
  fontconfig/trunk/PKGBUILD (contents, properties)

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-30 19:24:12 UTC (rev 333132)
+++ PKGBUILD2018-08-30 19:28:27 UTC (rev 333133)
@@ -1,8 +1,8 @@
-# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
 # Maintainer: Jan de Groot 
 
 pkgname=fontconfig
-pkgver=2.13.0+15+gc60ed9e
+pkgver=2.13.1
 pkgrel=1
 epoch=1
 pkgdesc="A library for configuring and customizing font access"
@@ -11,9 +11,9 @@
 license=(custom)
 depends=(expat freetype2)
 makedepends=(git autoconf-archive gperf python-lxml python-six docbook-utils 
docbook-sgml
- perl-sgmls 'texlive-formatsextra>=2017' lynx)
+ perl-sgmls 'texlive-formatsextra>=2017' lynx json-c)
 install=fontconfig.install
-_commit=c60ed9ef66e59584f8b54323018e9e6c69925c7e  # master~45
+_commit=844d8709a1f3ecab45015b24b72dd775c13b2421  # tags/2.13.1^0
 source=("git+https://anongit.freedesktop.org/git/fontconfig#commit=$_commit;
 fontconfig.hook)
 sha256sums=('SKIP'


Property changes on: fontconfig/trunk/PKGBUILD
___
Deleted: svn:keywords
## -1 +0,0 ##
-Id
\ No newline at end of property


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

2018-08-30 Thread Jan Steffens via arch-commits
Date: Thursday, August 30, 2018 @ 19:27:33
  Author: heftig
Revision: 375678

2.13.1-1

Modified:
  lib32-fontconfig/trunk/PKGBUILD   (contents, properties)

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-30 19:23:55 UTC (rev 375677)
+++ PKGBUILD2018-08-30 19:27:33 UTC (rev 375678)
@@ -1,9 +1,9 @@
-# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
 # Maintainer: Jan de Groot 
 
 _pkgbasename=fontconfig
 pkgname=lib32-$_pkgbasename
-pkgver=2.13.0+15+gc60ed9e
+pkgver=2.13.1
 pkgrel=1
 epoch=1
 pkgdesc="A library for configuring and customizing font access (32-bit)"
@@ -11,9 +11,9 @@
 url="https://www.freedesktop.org/wiki/Software/fontconfig/;
 license=(custom)
 depends=(lib32-expat lib32-freetype2 $_pkgbasename)
-makedepends=(git autoconf-archive gperf python-lxml python-six)
+makedepends=(git autoconf-archive gperf python-lxml python-six lib32-json-c)
 install=lib32-fontconfig.install
-_commit=c60ed9ef66e59584f8b54323018e9e6c69925c7e  # master~45
+_commit=844d8709a1f3ecab45015b24b72dd775c13b2421  # tags/2.13.1^0
 source=("git+https://anongit.freedesktop.org/git/fontconfig#commit=$_commit;
 fontconfig-32.hook)
 sha256sums=('SKIP'


Property changes on: lib32-fontconfig/trunk/PKGBUILD
___
Deleted: svn:keywords
## -1 +0,0 ##
-Id
\ No newline at end of property


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

2018-08-30 Thread Jan Steffens via arch-commits
Date: Thursday, August 30, 2018 @ 19:24:12
  Author: heftig
Revision: 333132

archrelease: copy trunk to testing-x86_64

Added:
  json-c/repos/testing-x86_64/
  json-c/repos/testing-x86_64/PKGBUILD
(from rev 333131, json-c/trunk/PKGBUILD)

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

Copied: json-c/repos/testing-x86_64/PKGBUILD (from rev 333131, 
json-c/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2018-08-30 19:24:12 UTC (rev 333132)
@@ -0,0 +1,50 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Geoffroy Carrier 
+# Contributor: congyiwu 
+
+pkgname=json-c
+pkgver=0.13.1
+pkgrel=2
+pkgdesc="A JSON implementation in C"
+url="https://github.com/json-c/json-c/wiki;
+license=(MIT)
+arch=(x86_64)
+depends=(glibc)
+makedepends=(git)
+_commit=985c46fec39d1d3043f98e8d8cdb9d040131b3bb  # 
tags/json-c-0.13.1-20180305^0
+source=("git+https://github.com/json-c/json-c#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd json-c
+  local tag="$(git describe --tags --abbrev=0)"
+  local ver="$(git describe --tags)"
+  echo "${tag%-*}${ver#$tag}" | sed 's/^json-c-//;s/-/+/g'
+}
+
+prepare() {
+  cd json-c
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd json-c
+  ./configure \
+--prefix=/usr \
+--disable-static \
+--enable-threading
+  make
+}
+
+check() {
+  cd json-c
+  make check
+}
+
+package() {
+  cd json-c
+  make DESTDIR="$pkgdir" install
+  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 COPYING
+}
+
+# vim:set sw=2 et:


[arch-commits] Commit in lib32-json-c/repos (multilib-x86_64 multilib-x86_64/PKGBUILD)

2018-08-30 Thread Jan Steffens via arch-commits
Date: Thursday, August 30, 2018 @ 19:23:55
  Author: heftig
Revision: 375677

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-json-c/repos/multilib-x86_64/
  lib32-json-c/repos/multilib-x86_64/PKGBUILD
(from rev 375676, lib32-json-c/trunk/PKGBUILD)

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

Copied: lib32-json-c/repos/multilib-x86_64/PKGBUILD (from rev 375676, 
lib32-json-c/trunk/PKGBUILD)
===
--- multilib-x86_64/PKGBUILD(rev 0)
+++ multilib-x86_64/PKGBUILD2018-08-30 19:23:55 UTC (rev 375677)
@@ -0,0 +1,57 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=lib32-json-c
+pkgver=0.13.1
+pkgrel=2
+pkgdesc="A JSON implementation in C (32-bit)"
+url="https://github.com/json-c/json-c/wiki;
+license=(MIT)
+arch=(x86_64)
+depends=(lib32-glibc json-c)
+makedepends=(git)
+_commit=985c46fec39d1d3043f98e8d8cdb9d040131b3bb  # 
tags/json-c-0.13.1-20180305^0
+source=("git+https://github.com/json-c/json-c#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd json-c
+  local tag="$(git describe --tags --abbrev=0)"
+  local ver="$(git describe --tags)"
+  echo "${tag%-*}${ver#$tag}" | sed 's/^json-c-//;s/-/+/g'
+}
+
+prepare() {
+  cd json-c
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd json-c
+
+  export CC="gcc -m32"
+  export CXX="g++ -m32"
+  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
+
+  ./configure \
+--prefix=/usr \
+--libdir=/usr/lib32 \
+--disable-static \
+--enable-threading
+  make
+}
+
+check() {
+  cd json-c
+  make check
+}
+
+package() {
+  cd json-c
+  make DESTDIR="$pkgdir" install
+  rm -r "$pkgdir/usr/include"
+
+  mkdir -p "$pkgdir/usr/share/licenses"
+  ln -s json-c "$pkgdir/usr/share/licenses/$pkgname"
+}
+
+# vim:set sw=2 et:


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

2018-08-30 Thread Jan Steffens via arch-commits
Date: Thursday, August 30, 2018 @ 19:22:48
  Author: heftig
Revision: 375676

0.13.1-2

Added:
  lib32-json-c/trunk/PKGBUILD

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

Added: PKGBUILD
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-08-30 19:22:48 UTC (rev 375676)
@@ -0,0 +1,57 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=lib32-json-c
+pkgver=0.13.1
+pkgrel=2
+pkgdesc="A JSON implementation in C (32-bit)"
+url="https://github.com/json-c/json-c/wiki;
+license=(MIT)
+arch=(x86_64)
+depends=(lib32-glibc json-c)
+makedepends=(git)
+_commit=985c46fec39d1d3043f98e8d8cdb9d040131b3bb  # 
tags/json-c-0.13.1-20180305^0
+source=("git+https://github.com/json-c/json-c#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd json-c
+  local tag="$(git describe --tags --abbrev=0)"
+  local ver="$(git describe --tags)"
+  echo "${tag%-*}${ver#$tag}" | sed 's/^json-c-//;s/-/+/g'
+}
+
+prepare() {
+  cd json-c
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd json-c
+
+  export CC="gcc -m32"
+  export CXX="g++ -m32"
+  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
+
+  ./configure \
+--prefix=/usr \
+--libdir=/usr/lib32 \
+--disable-static \
+--enable-threading
+  make
+}
+
+check() {
+  cd json-c
+  make check
+}
+
+package() {
+  cd json-c
+  make DESTDIR="$pkgdir" install
+  rm -r "$pkgdir/usr/include"
+
+  mkdir -p "$pkgdir/usr/share/licenses"
+  ln -s json-c "$pkgdir/usr/share/licenses/$pkgname"
+}
+
+# vim:set sw=2 et:


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

2018-08-30 Thread Jan Steffens via arch-commits
Date: Thursday, August 30, 2018 @ 19:22:43
  Author: heftig
Revision: 333131

0.13.1-2

Modified:
  json-c/trunk/PKGBUILD (contents, properties)

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-30 17:10:53 UTC (rev 333130)
+++ PKGBUILD2018-08-30 19:22:43 UTC (rev 333131)
@@ -1,4 +1,3 @@
-# $Id$
 # Maintainer: Jan Alexander Steffens (heftig) 
 # Contributor: Geoffroy Carrier 
 # Contributor: congyiwu 
@@ -5,29 +4,47 @@
 
 pkgname=json-c
 pkgver=0.13.1
-pkgrel=1
-pkgdesc='A JSON implementation in C'
-url='https://github.com/json-c/json-c/wiki'
+pkgrel=2
+pkgdesc="A JSON implementation in C"
+url="https://github.com/json-c/json-c/wiki;
 license=(MIT)
-arch=('x86_64')
-depends=('glibc')
-_releasedate=20180305
-source=("https://github.com/json-c/json-c/archive/json-c-${pkgver}-${_releasedate}.tar.gz;)
-sha256sums=('5d867baeb7f540abe8f3265ac18ed7a24f91fe3c5f4fd99ac3caba0708511b90')
+arch=(x86_64)
+depends=(glibc)
+makedepends=(git)
+_commit=985c46fec39d1d3043f98e8d8cdb9d040131b3bb  # 
tags/json-c-0.13.1-20180305^0
+source=("git+https://github.com/json-c/json-c#commit=$_commit;)
+sha256sums=('SKIP')
 
+pkgver() {
+  cd json-c
+  local tag="$(git describe --tags --abbrev=0)"
+  local ver="$(git describe --tags)"
+  echo "${tag%-*}${ver#$tag}" | sed 's/^json-c-//;s/-/+/g'
+}
+
+prepare() {
+  cd json-c
+  NOCONFIGURE=1 ./autogen.sh
+}
+
 build() {
-  cd $pkgname-$pkgname-$pkgver-$_releasedate
-  ./configure --prefix=/usr --disable-static
+  cd json-c
+  ./configure \
+--prefix=/usr \
+--disable-static \
+--enable-threading
   make
 }
 
 check() {
-  cd $pkgname-$pkgname-$pkgver-$_releasedate
+  cd json-c
   make check
 }
 
 package() {
-  cd $pkgname-$pkgname-$pkgver-$_releasedate
+  cd json-c
   make DESTDIR="$pkgdir" install
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
+  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 COPYING
 }
+
+# vim:set sw=2 et:


Property changes on: json-c/trunk/PKGBUILD
___
Deleted: svn:keywords
## -1 +0,0 ##
-Id
\ No newline at end of property


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

2018-08-30 Thread Filipe Laíns via arch-commits
Date: Thursday, August 30, 2018 @ 19:01:07
  Author: ffy00
Revision: 375675

archrelease: copy trunk to community-x86_64

Added:
  urh/repos/community-x86_64/
  urh/repos/community-x86_64/PKGBUILD
(from rev 375674, urh/trunk/PKGBUILD)

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

Copied: urh/repos/community-x86_64/PKGBUILD (from rev 375674, 
urh/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2018-08-30 19:01:07 UTC (rev 375675)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: Johannes Pohl 
+
+pkgname=urh
+pkgver=2.2.4
+pkgrel=2
+pkgdesc="Universal Radio Hacker: investigate wireless protocols like a boss"
+arch=('x86_64')
+url="https://github.com/jopohl/urh;
+license=('GPL3')
+depends=('python' 'python-pyqt5' 'python-numpy' 'python-psutil' 'python-pyzmq')
+makedepends=('gcc' 'python-setuptools' 'cython'
+ 'airspy' 'hackrf' 'libuhd' 'limesuite' 'rtl-sdr')
+checkdepends=('python-pytest-runner' 'python-pytest-xdist' 'xorg-server-xvfb')
+optdepends=('airspy: for native airspy backend'
+'cython: for recompiling native backends right from inside URH'
+'hackrf: for native hackrf backend'
+'libuhd: for native USRP backend'
+'limesuite: for native LimeSDR backend'
+'rtl-sdr: for native RTL-SDR backend'
+'rfcat-hg: for rfcat plugin'
+'gnuradio: for USRP gnuradio backend'
+'gnuradio-osmosdr: for more gnuradio device backends'
+'python-pyaudio: for soundcard support')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/jopohl/urh/archive/v$pkgver.tar.gz;)
+sha512sums=('082cb70aa2594d92c8334dd0676bbe05f087a9f5d79ae526330fcac3c782467135b3eb987de8571b7ae9a53b2d32c1ccba4dbb0515b52a73b3c0358790792e33')
+
+build() {
+  cd $pkgname-$pkgver
+
+  python setup.py build build_ext
+  python src/urh/cythonext/build.py
+}
+
+check() {
+  cd $pkgname-$pkgver
+
+  xvfb-run pytest --boxed
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+
+  install -Dm644 ./data/urh.desktop 
"$pkgdir"/usr/share/applications/urh.desktop
+  install -Dm 644 data/icons/appicon.png "$pkgdir"/usr/share/pixmaps/urh.png
+  install -Dm 644 README.md "$pkgdir"/usr/share/docs/$pkgname/README.md
+}
+


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

2018-08-30 Thread Filipe Laíns via arch-commits
Date: Thursday, August 30, 2018 @ 19:01:00
  Author: ffy00
Revision: 375674

import from aur

Added:
  urh/
  urh/repos/
  urh/trunk/
  urh/trunk/PKGBUILD

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

Added: urh/trunk/PKGBUILD
===
--- urh/trunk/PKGBUILD  (rev 0)
+++ urh/trunk/PKGBUILD  2018-08-30 19:01:00 UTC (rev 375674)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: Johannes Pohl 
+
+pkgname=urh
+pkgver=2.2.4
+pkgrel=2
+pkgdesc="Universal Radio Hacker: investigate wireless protocols like a boss"
+arch=('x86_64')
+url="https://github.com/jopohl/urh;
+license=('GPL3')
+depends=('python' 'python-pyqt5' 'python-numpy' 'python-psutil' 'python-pyzmq')
+makedepends=('gcc' 'python-setuptools' 'cython'
+ 'airspy' 'hackrf' 'libuhd' 'limesuite' 'rtl-sdr')
+checkdepends=('python-pytest-runner' 'python-pytest-xdist' 'xorg-server-xvfb')
+optdepends=('airspy: for native airspy backend'
+'cython: for recompiling native backends right from inside URH'
+'hackrf: for native hackrf backend'
+'libuhd: for native USRP backend'
+'limesuite: for native LimeSDR backend'
+'rtl-sdr: for native RTL-SDR backend'
+'rfcat-hg: for rfcat plugin'
+'gnuradio: for USRP gnuradio backend'
+'gnuradio-osmosdr: for more gnuradio device backends'
+'python-pyaudio: for soundcard support')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/jopohl/urh/archive/v$pkgver.tar.gz;)
+sha512sums=('082cb70aa2594d92c8334dd0676bbe05f087a9f5d79ae526330fcac3c782467135b3eb987de8571b7ae9a53b2d32c1ccba4dbb0515b52a73b3c0358790792e33')
+
+build() {
+  cd $pkgname-$pkgver
+
+  python setup.py build build_ext
+  python src/urh/cythonext/build.py
+}
+
+check() {
+  cd $pkgname-$pkgver
+
+  xvfb-run pytest --boxed
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+
+  install -Dm644 ./data/urh.desktop 
"$pkgdir"/usr/share/applications/urh.desktop
+  install -Dm 644 data/icons/appicon.png "$pkgdir"/usr/share/pixmaps/urh.png
+  install -Dm 644 README.md "$pkgdir"/usr/share/docs/$pkgname/README.md
+}
+


Property changes on: urh/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


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

2018-08-30 Thread Felix Yan via arch-commits
Date: Thursday, August 30, 2018 @ 18:58:01
  Author: felixonmars
Revision: 375673

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: xmobar/repos/community-staging-x86_64/PKGBUILD (from rev 375672, 
xmobar/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-08-30 18:58:01 UTC (rev 375673)
@@ -0,0 +1,40 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Jelle van der Waa 
+# Contributer: Sergej Pupykin 
+# Contributor: Arch Haskell Team 
+
+pkgname=xmobar
+pkgver=0.27
+pkgrel=8
+pkgdesc='Minimalistic Text Based Status Bar'
+url='https://hackage.haskell.org/package/xmobar'
+license=('custom:BSD3')
+arch=('x86_64')
+depends=('libxft' 'libxinerama' 'libxrandr' 'libxpm' 'ghc-libs' 'haskell-x11'
+ 'haskell-x11-xft' 'haskell-utf8-string' 'haskell-network-uri'
+ 'haskell-hinotify' 'haskell-stm' 'haskell-parsec' 
'haskell-parsec-numbers'
+ 'haskell-mtl' 'haskell-regex-base' 'haskell-regex-compat'
+ 'haskell-http' 'haskell-dbus' 'haskell-libmpd' 'haskell-iwlib'
+ 'wireless_tools' 'haskell-text')
+makedepends=('ghc')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/jaor/xmobar/archive/${pkgver}.tar.gz)
+sha512sums=('ad235a81dd59a972646c189500b665c9c18d3ca644c9fa4bc18f6f1004e1e6914b6b5f3e83db439b946efd622bbf4d0894eb84fcf521255916f095632d8249da')
+
+build() {
+  cd xmobar-${pkgver}
+  runhaskell setup configure -O \
+--enable-shared \
+--prefix=/usr \
+--enable-executable-dynamic \
+--disable-library-vanilla \
+--flags="with_utf8 with_xft with_iwlib with_xpm with_inotify with_mpd 
with_dbus with_mpris"
+  runhaskell setup build
+}
+
+package() {
+  cd xmobar-${pkgver}
+  runhaskell setup copy --destdir="${pkgdir}"
+  install -Dm 644 license "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+# vim: ts=2 sw=2 et:


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

2018-08-30 Thread Felix Yan via arch-commits
Date: Thursday, August 30, 2018 @ 18:57:48
  Author: felixonmars
Revision: 375672

upgpkg: xmobar 0.27-8

rebuild with unliftio 0.2.7.1

Modified:
  xmobar/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-30 18:56:28 UTC (rev 375671)
+++ PKGBUILD2018-08-30 18:57:48 UTC (rev 375672)
@@ -5,7 +5,7 @@
 
 pkgname=xmobar
 pkgver=0.27
-pkgrel=7
+pkgrel=8
 pkgdesc='Minimalistic Text Based Status Bar'
 url='https://hackage.haskell.org/package/xmobar'
 license=('custom:BSD3')


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

2018-08-30 Thread Felix Yan via arch-commits
Date: Thursday, August 30, 2018 @ 18:56:28
  Author: felixonmars
Revision: 375671

archrelease: copy trunk to community-staging-x86_64

Added:
  tamarin-prover/repos/community-staging-x86_64/
  tamarin-prover/repos/community-staging-x86_64/PKGBUILD
(from rev 375670, tamarin-prover/trunk/PKGBUILD)

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

Copied: tamarin-prover/repos/community-staging-x86_64/PKGBUILD (from rev 
375670, tamarin-prover/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-08-30 18:56:28 UTC (rev 375671)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=tamarin-prover
+pkgver=1.4.0
+pkgrel=89
+pkgdesc="The Tamarin prover for security protocol analysis"
+url="http://tamarin-prover.github.io;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'graphviz' 'maude' 'haskell-hunit' 'haskell-binary-orphans'
+ 'haskell-blaze-builder' 'haskell-blaze-html' 'haskell-cmdargs' 
'haskell-conduit'
+ 'haskell-fclabels' 'haskell-file-embed' 'haskell-gitrev' 
'haskell-http-types'
+ 'haskell-lifted-base' 'haskell-monad-unlift'
+ 'haskell-resourcet' 'haskell-safe' 'haskell-shakespeare' 
'haskell-threads'
+ 'haskell-wai' 'haskell-warp' 'haskell-yesod-core' 
'haskell-yesod-static'
+ 'haskell-tamarin-prover-utils' 'haskell-tamarin-prover-term'
+ 'haskell-tamarin-prover-theory')
+optdepends=('ocaml: for sapic support')
+makedepends=('ghc' 'ocaml')
+source=("tamarin-prover-$pkgver.tar.gz::https://github.com/tamarin-prover/tamarin-prover/archive/$pkgver.tar.gz;)
+sha512sums=('7c1afe6a53b596c2ce01e9ad7a7f464af1f4efbc5f8edc13d5ec8bc32ce4e91ddde91dff6ab8e01cf3cf30a37a3a18953d937debc36c9df664f718d968e2ae74')
+
+prepare() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+sed -i '/cp sapic/d' plugins/sapic/Makefile
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-executable-dynamic --prefix=/usr \
+--docdir="/usr/share/doc/${pkgname}" --datasubdir="$pkgname" \
+-fthreaded -ftest-coverage -f-build-tests
+runhaskell Setup build
+
+cd plugins/sapic
+make -j1
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+
+install -Dm644 etc/filetype.vim 
"$pkgdir"/usr/share/vim/vimfiles/filetype.vim
+install -Dm644 etc/spthy.vim 
"$pkgdir"/usr/share/vim/vimfiles/syntax/spthy.vim
+install -Dm644 etc/sapic.vim 
"$pkgdir"/usr/share/vim/vimfiles/syntax/sapic.vim
+
+cd plugins/sapic
+install -Dm755 sapic "$pkgdir"/usr/bin/sapic
+}


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

2018-08-30 Thread Felix Yan via arch-commits
Date: Thursday, August 30, 2018 @ 18:56:15
  Author: felixonmars
Revision: 375670

upgpkg: tamarin-prover 1.4.0-89

rebuild with unliftio 0.2.7.1

Modified:
  tamarin-prover/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-30 18:54:47 UTC (rev 375669)
+++ PKGBUILD2018-08-30 18:56:15 UTC (rev 375670)
@@ -4,7 +4,7 @@
 
 pkgname=tamarin-prover
 pkgver=1.4.0
-pkgrel=88
+pkgrel=89
 pkgdesc="The Tamarin prover for security protocol analysis"
 url="http://tamarin-prover.github.io;
 license=("GPL")


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

2018-08-30 Thread Felix Yan via arch-commits
Date: Thursday, August 30, 2018 @ 18:54:34
  Author: felixonmars
Revision: 375668

upgpkg: stylish-haskell 0.9.2.0-59

rebuild with unliftio 0.2.7.1

Modified:
  stylish-haskell/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-30 18:53:27 UTC (rev 375667)
+++ PKGBUILD2018-08-30 18:54:34 UTC (rev 375668)
@@ -4,7 +4,7 @@
 
 pkgname=stylish-haskell
 pkgver=0.9.2.0
-pkgrel=58
+pkgrel=59
 pkgdesc="Haskell code prettifier"
 url="https://github.com/jaspervdj/stylish-haskell;
 license=("custom:BSD3")


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

2018-08-30 Thread Felix Yan via arch-commits
Date: Thursday, August 30, 2018 @ 18:54:47
  Author: felixonmars
Revision: 375669

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: stylish-haskell/repos/community-staging-x86_64/PKGBUILD (from rev 
375668, stylish-haskell/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-08-30 18:54:47 UTC (rev 375669)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=stylish-haskell
+pkgver=0.9.2.0
+pkgrel=59
+pkgdesc="Haskell code prettifier"
+url="https://github.com/jaspervdj/stylish-haskell;
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-file-embed' 
'haskell-optparse-applicative'
+ 'haskell-src-exts' 'haskell-strict' 'haskell-syb' 'haskell-yaml')
+makedepends=('ghc' 'haskell-hunit' 'haskell-test-framework' 
'haskell-test-framework-hunit')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('ccdbfc7f169624210590c5b60c98202709a9418bfe0aac1cf9af7e51704f7f1a2092716e1f5857056634611afbbb5d1013e2b2c3e79602a959a9725aacfba51a')
+
+prepare() {
+cd $pkgname-$pkgver
+sed -i -e '/semigroups/d' -e 's/<.*0.9/<1/' -e 's/<.*1.4/<2/' 
$pkgname.cabal
+}
+
+build() {
+cd $pkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests 
--datasubdir="$pkgname" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-old_base
+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 $pkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $pkgname-$pkgver
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-08-30 Thread Felix Yan via arch-commits
Date: Thursday, August 30, 2018 @ 18:53:27
  Author: felixonmars
Revision: 375667

archrelease: copy trunk to community-staging-x86_64

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

---+
 PKGBUILD  |   77 
 stack.install |4 ++
 2 files changed, 81 insertions(+)

Copied: stack/repos/community-staging-x86_64/PKGBUILD (from rev 375666, 
stack/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-08-30 18:53:27 UTC (rev 375667)
@@ -0,0 +1,77 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=stack
+pkgver=1.7.1
+pkgrel=117
+pkgdesc="The Haskell Tool Stack"
+url="https://github.com/commercialhaskell/stack;
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-annotated-wl-pprint' 
'haskell-ansi-terminal'
+ 'haskell-async' 'haskell-attoparsec' 'haskell-base64-bytestring' 
'haskell-conduit'
+ 'haskell-conduit-extra' 'haskell-cryptonite' 
'haskell-cryptonite-conduit' 'haskell-echo'
+ 'haskell-exceptions' 'haskell-extra' 'haskell-file-embed' 
'haskell-filelock'
+ 'haskell-fsnotify' 'haskell-generic-deriving' 'haskell-gitrev' 
'haskell-hackage-security'
+ 'haskell-hashable' 'haskell-hpack' 'haskell-hpc' 'haskell-http-client'
+ 'haskell-http-client-tls' 'haskell-http-conduit' 'haskell-http-types' 
'haskell-memory'
+ 'haskell-microlens' 'haskell-mintty' 'haskell-monad-logger' 
'haskell-mono-traversable'
+ 'haskell-mustache' 'haskell-neat-interpolation' 'haskell-network-uri' 
'haskell-open-browser'
+ 'haskell-optparse-applicative' 'haskell-optparse-simple' 
'haskell-path' 'haskell-path-io'
+ 'haskell-persistent' 'haskell-persistent-sqlite' 
'haskell-persistent-template'
+ 'haskell-primitive' 'haskell-project-template' 
'haskell-regex-applicative-text'
+ 'haskell-resourcet' 'haskell-retry' 'haskell-rio' 'haskell-split' 
'haskell-store'
+ 'haskell-store-core' 'haskell-streaming-commons' 'haskell-tar' 
'haskell-temporary'
+ 'haskell-text-metrics' 'haskell-th-reify-many' 'haskell-tls' 
'haskell-typed-process'
+ 'haskell-unicode-transforms' 'haskell-unix-compat' 'haskell-unliftio'
+ 'haskell-unordered-containers' 'haskell-vector' 'haskell-yaml' 
'haskell-zip-archive'
+ 'haskell-zlib' 'haskell-bindings-uname')
+makedepends=('ghc' 'haskell-quickcheck' 'haskell-hspec' 'haskell-smallcheck')
+checkdepends=('cabal-install')
+conflicts=('haskell-stack')
+replaces=('haskell-stack')
+install="stack.install"
+source=("$pkgname-$pkgver.tar.gz::https://github.com/commercialhaskell/stack/archive/v$pkgver.tar.gz;)
+sha512sums=('786c116b4717f6e0f5ac0b5397db4834486610f511eafefe2356574545f97093fe3203824b7a3cabb2e0562e5c0443af3d93defe83751a9982727d88cafe78a7')
+
+prepare() {
+  cd $pkgname-$pkgver
+  sed -i '54d;55d;56d;57d;58d' src/test/Stack/StoreSpec.hs
+  hpack
+  sed -i '/semigroups/d' $pkgname.cabal
+}
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+  -f-disable-git-info -f-integration-tests -f-static 
-f-hide-dependency-versions -f-supported-build
+  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 $pkgname-$pkgver
+  # cabal update
+  LD_LIBRARY_PATH="$PWD"/dist/build PATH="$PWD"/dist/build/stack:"$PATH" 
runhaskell Setup test
+  # Integration tests will result in 4 failures on Arch currently
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+  install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+  runhaskell Setup copy --destdir="${pkgdir}"
+  install -D -m644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+  LD_PRELOAD=$(ls "$pkgdir"/usr/lib/libHSstack-*-ghc*.so) 
"${pkgdir}"/usr/bin/stack --bash-completion-script /usr/bin/stack > 
stack_completion_script
+  install -Dm644 stack_completion_script 
"${pkgdir}/usr/share/bash-completion/completions/stack"
+}

Copied: stack/repos/community-staging-x86_64/stack.install (from rev 375666, 

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

2018-08-30 Thread Felix Yan via arch-commits
Date: Thursday, August 30, 2018 @ 18:53:14
  Author: felixonmars
Revision: 375666

upgpkg: stack 1.7.1-117

rebuild with unliftio 0.2.7.1

Modified:
  stack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-30 18:47:22 UTC (rev 375665)
+++ PKGBUILD2018-08-30 18:53:14 UTC (rev 375666)
@@ -4,7 +4,7 @@
 
 pkgname=stack
 pkgver=1.7.1
-pkgrel=116
+pkgrel=117
 pkgdesc="The Haskell Tool Stack"
 url="https://github.com/commercialhaskell/stack;
 license=("custom:BSD3")


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

2018-08-30 Thread Felix Yan via arch-commits
Date: Thursday, August 30, 2018 @ 18:47:22
  Author: felixonmars
Revision: 375665

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: shellcheck/repos/community-staging-x86_64/PKGBUILD (from rev 375664, 
shellcheck/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-08-30 18:47:22 UTC (rev 375665)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=ShellCheck
+pkgname=shellcheck
+pkgver=0.5.0
+pkgrel=82
+pkgdesc="Shell script analysis tool"
+url="http://www.shellcheck.net;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-quickcheck' 'haskell-regex-tdfa')
+makedepends=('ghc' 'pandoc')
+source=("$_hkgname-$pkgver.tar.gz::https://github.com/koalaman/shellcheck/archive/v$pkgver.tar.gz;)
+sha512sums=('87861cddb353262630e4370e12e508224b3c14e128082909b4b35f0526dfe648a744d68cc27f77f2f8bb098af37a2af7bdc805d88018bba5e48b6c1ff1749f10')
+
+build() {
+cd $pkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+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
+
+pandoc -s -t man shellcheck.1.md -o shellcheck.1
+}
+
+check() {
+cd $pkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $pkgname-$pkgver
+
+install -D -m644 ${pkgname}.1   "${pkgdir}/usr/share/man/man1/${pkgname}.1"
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-08-30 Thread Felix Yan via arch-commits
Date: Thursday, August 30, 2018 @ 18:47:09
  Author: felixonmars
Revision: 375664

upgpkg: shellcheck 0.5.0-82

rebuild with unliftio 0.2.7.1

Modified:
  shellcheck/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-30 18:44:13 UTC (rev 375663)
+++ PKGBUILD2018-08-30 18:47:09 UTC (rev 375664)
@@ -5,7 +5,7 @@
 _hkgname=ShellCheck
 pkgname=shellcheck
 pkgver=0.5.0
-pkgrel=81
+pkgrel=82
 pkgdesc="Shell script analysis tool"
 url="http://www.shellcheck.net;
 license=("GPL")


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

2018-08-30 Thread Felix Yan via arch-commits
Date: Thursday, August 30, 2018 @ 18:44:01
  Author: felixonmars
Revision: 375662

upgpkg: postgrest 0.5.0.0-8

rebuild with unliftio 0.2.7.1

Modified:
  postgrest/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-30 18:41:11 UTC (rev 375661)
+++ PKGBUILD2018-08-30 18:44:01 UTC (rev 375662)
@@ -4,7 +4,7 @@
 
 pkgname=postgrest
 pkgver=0.5.0.0
-pkgrel=7
+pkgrel=8
 pkgdesc="REST API for any Postgres database"
 url="https://github.com/begriffs/postgrest;
 license=("MIT")


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

2018-08-30 Thread Felix Yan via arch-commits
Date: Thursday, August 30, 2018 @ 18:44:13
  Author: felixonmars
Revision: 375663

archrelease: copy trunk to community-staging-x86_64

Added:
  postgrest/repos/community-staging-x86_64/
  postgrest/repos/community-staging-x86_64/PKGBUILD
(from rev 375662, postgrest/trunk/PKGBUILD)
  postgrest/repos/community-staging-x86_64/new-hasql.patch
(from rev 375662, postgrest/trunk/new-hasql.patch)

-+
 PKGBUILD|   78 
 new-hasql.patch |  477 ++
 2 files changed, 555 insertions(+)

Copied: postgrest/repos/community-staging-x86_64/PKGBUILD (from rev 375662, 
postgrest/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-08-30 18:44:13 UTC (rev 375663)
@@ -0,0 +1,78 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=postgrest
+pkgver=0.5.0.0
+pkgrel=8
+pkgdesc="REST API for any Postgres database"
+url="https://github.com/begriffs/postgrest;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-auto-update' 'haskell-hasql' 'haskell-hasql-pool' 
'haskell-protolude'
+ 'haskell-warp' 'haskell-base64-bytestring' 'haskell-retry' 
'haskell-aeson'
+ 'haskell-ansi-wl-pprint' 'haskell-case-insensitive' 'haskell-cassava'
+ 'haskell-configurator-ng' 'haskell-contravariant' 
'haskell-contravariant-extras'
+ 'haskell-either' 'haskell-gitrev' 'haskell-hasql-transaction' 
'haskell-heredoc'
+ 'haskell-http' 'haskell-http-types' 
'haskell-insert-ordered-containers'
+ 'haskell-interpolatedstring-perl6' 'haskell-jose' 'haskell-lens' 
'haskell-lens-aeson'
+ 'haskell-network-uri' 'haskell-optparse-applicative' 
'haskell-ranged-sets'
+ 'haskell-regex-tdfa' 'haskell-scientific' 'haskell-swagger2' 
'haskell-unordered-containers'
+ 'haskell-vector' 'haskell-wai' 'haskell-wai-cors' 'haskell-wai-extra'
+ 'haskell-wai-middleware-static' 'haskell-cookie')
+makedepends=('ghc' 'haskell-aeson-qq' 'haskell-async' 'haskell-hspec' 
'haskell-hspec-wai'
+ 'haskell-hspec-wai-json' 'haskell-hjsonschema')
+checkdepends=('pifpaf' 'postgresql' 'procps-ng')
+source=("$pkgname-$pkgver.tar.bz2::https://github.com/begriffs/postgrest/archive/v$pkgver.tar.gz;
+new-hasql.patch)
+sha512sums=('ba8974cc83de3a7fcf1ede454eed726d6dfe7d677e4b34bbf6a03f11cc648d6812c2f101684175bb1f4d0f0b384795a737791ce807c257eae67158e2fc74b0a0'
+
'54257b24e646175c3687d3d0b224092441e0a8093d04327fb900da6c463625bfc952aabe46bcbbee8d0b4b96d4c07b4b148efa5ac4dcd9dd60bf7d3da5a49fcd')
+
+prepare() {
+cd $pkgname-$pkgver
+patch -p1 -i ../new-hasql.patch
+
+sed -i 's/==/>=/' $pkgname.cabal
+
+sed -i '/import\s*Safe/d' src/PostgREST/App.hs
+sed -i '/safe/d' $pkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-CI
+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 $pkgname-$pkgver
+
+eval $(pifpaf run postgresql --host 127.0.0.1 --port 5432)
+createdb postgrest_test
+
+# TODO: it shouldn't take this long to finish
+# POSTGREST_TEST_CONNECTION=$(test/create_test_db 
"postgres://$USER@localhost" postgrest_test) runhaskell Setup test
+
+# Disabled: uses stack
+# test/io-tests.sh
+
+pifpaf_stop
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: postgrest/repos/community-staging-x86_64/new-hasql.patch (from rev 
375662, postgrest/trunk/new-hasql.patch)
===
--- community-staging-x86_64/new-hasql.patch(rev 0)
+++ community-staging-x86_64/new-hasql.patch2018-08-30 18:44:13 UTC (rev 
375663)
@@ -0,0 +1,477 @@
+From f02992e562fafc807092d09a8034f2117c9db00d Mon Sep 17 00:00:00 2001
+From: Ben Gamari 
+Date: Thu, 28 Jun 2018 01:02:09 -0400
+Subject: [PATCH] Update hasql
+
+Move to hasql 1.3.
+---
+ postgrest.cabal   |   6 +-
+ src/PostgREST/App.hs  |  16 ++---

[arch-commits] Commit in ruby-rspec-mocks/trunk (PKGBUILD)

2018-08-30 Thread Anatol Pomozov via arch-commits
Date: Thursday, August 30, 2018 @ 18:40:30
  Author: anatolik
Revision: 375658

upgpkg: ruby-rspec-mocks 3.8.0-1

Modified:
  ruby-rspec-mocks/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-30 18:39:20 UTC (rev 375657)
+++ PKGBUILD2018-08-30 18:40:30 UTC (rev 375658)
@@ -3,8 +3,8 @@
 
 _gemname=rspec-mocks
 pkgname=ruby-${_gemname}
-pkgver=3.7.0
-pkgrel=2
+pkgver=3.8.0
+pkgrel=1
 pkgdesc="RSpecs 'test double' framework, with support for stubbing and mocking"
 url='https://github.com/rspec/rspec-mocks'
 arch=('any')
@@ -13,7 +13,7 @@
 options=('!emptydirs')
 source=(https://rubygems.org/downloads/${_gemname}-${pkgver}.gem)
 noextract=(${_gemname}-${pkgver}.gem)
-sha512sums=('a1bd5992528adca3c9021fbc7afd9bfd43707e13c5f54879c9b603376c69fd23389b0c503912b76e10f42ed49b8ba23656220cc75869cc63bd5920efca667678')
+sha512sums=('00b3b414cc47bc987db76c03f69a88ecb12960c74c3715fcd9a7be0562cf282cbd458709888d0f3718fb03997c7b74816677eae1310b0ac6f215467ede49e89e')
 
 package() {
   local _gemdir="$(ruby -e'puts Gem.default_dir')"


[arch-commits] Commit in ruby-rspec-mocks/repos/community-any (PKGBUILD PKGBUILD)

2018-08-30 Thread Anatol Pomozov via arch-commits
Date: Thursday, August 30, 2018 @ 18:40:59
  Author: anatolik
Revision: 375660

archrelease: copy trunk to community-any

Added:
  ruby-rspec-mocks/repos/community-any/PKGBUILD
(from rev 375658, ruby-rspec-mocks/trunk/PKGBUILD)
Deleted:
  ruby-rspec-mocks/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-08-30 18:40:57 UTC (rev 375659)
+++ PKGBUILD2018-08-30 18:40:59 UTC (rev 375660)
@@ -1,27 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Artem Vorotnikov 
-
-_gemname=rspec-mocks
-pkgname=ruby-${_gemname}
-pkgver=3.7.0
-pkgrel=2
-pkgdesc="RSpecs 'test double' framework, with support for stubbing and mocking"
-url='https://github.com/rspec/rspec-mocks'
-arch=('any')
-license=('MIT')
-depends=('ruby-rspec-support' 'ruby-diff-lcs')
-options=('!emptydirs')
-source=(https://rubygems.org/downloads/${_gemname}-${pkgver}.gem)
-noextract=(${_gemname}-${pkgver}.gem)
-sha512sums=('a1bd5992528adca3c9021fbc7afd9bfd43707e13c5f54879c9b603376c69fd23389b0c503912b76e10f42ed49b8ba23656220cc75869cc63bd5920efca667678')
-
-package() {
-  local _gemdir="$(ruby -e'puts Gem.default_dir')"
-  gem install --ignore-dependencies --no-user-install -i "${pkgdir}${_gemdir}" 
-n "${pkgdir}/usr/bin" ${_gemname}-${pkgver}.gem
-  find ${pkgdir}
-  install -Dm 644 "${pkgdir}${_gemdir}/gems/${_gemname}-${pkgver}/LICENSE.md" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  install -Dm 644 "${pkgdir}${_gemdir}/gems/${_gemname}-${pkgver}/README.md" 
"${pkgdir}/usr/share/doc/${pkgname}/README"
-  rm "${pkgdir}/${_gemdir}/cache/${_gemname}-${pkgver}.gem"
-}
-
-# vim: ts=2 sw=2 et:

Copied: ruby-rspec-mocks/repos/community-any/PKGBUILD (from rev 375658, 
ruby-rspec-mocks/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-08-30 18:40:59 UTC (rev 375660)
@@ -0,0 +1,27 @@
+# Maintainer: Levente Polyak 
+# Contributor: Artem Vorotnikov 
+
+_gemname=rspec-mocks
+pkgname=ruby-${_gemname}
+pkgver=3.8.0
+pkgrel=1
+pkgdesc="RSpecs 'test double' framework, with support for stubbing and mocking"
+url='https://github.com/rspec/rspec-mocks'
+arch=('any')
+license=('MIT')
+depends=('ruby-rspec-support' 'ruby-diff-lcs')
+options=('!emptydirs')
+source=(https://rubygems.org/downloads/${_gemname}-${pkgver}.gem)
+noextract=(${_gemname}-${pkgver}.gem)
+sha512sums=('00b3b414cc47bc987db76c03f69a88ecb12960c74c3715fcd9a7be0562cf282cbd458709888d0f3718fb03997c7b74816677eae1310b0ac6f215467ede49e89e')
+
+package() {
+  local _gemdir="$(ruby -e'puts Gem.default_dir')"
+  gem install --ignore-dependencies --no-user-install -i "${pkgdir}${_gemdir}" 
-n "${pkgdir}/usr/bin" ${_gemname}-${pkgver}.gem
+  find ${pkgdir}
+  install -Dm 644 "${pkgdir}${_gemdir}/gems/${_gemname}-${pkgver}/LICENSE.md" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -Dm 644 "${pkgdir}${_gemdir}/gems/${_gemname}-${pkgver}/README.md" 
"${pkgdir}/usr/share/doc/${pkgname}/README"
+  rm "${pkgdir}/${_gemdir}/cache/${_gemname}-${pkgver}.gem"
+}
+
+# vim: ts=2 sw=2 et:


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

2018-08-30 Thread Felix Yan via arch-commits
Date: Thursday, August 30, 2018 @ 18:41:11
  Author: felixonmars
Revision: 375661

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: pandoc-crossref/repos/community-staging-x86_64/PKGBUILD (from rev 
375660, pandoc-crossref/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-08-30 18:41:11 UTC (rev 375661)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc-crossref
+pkgver=0.3.2.1
+pkgrel=70
+pkgdesc="Pandoc filter for cross-references"
+url="https://hackage.haskell.org/package/${pkgname};
+license=("GPL2")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-data-default' 'haskell-data-accessor' 
'haskell-data-accessor-template'
+ 'haskell-data-accessor-transformers' 'haskell-file-embed' 
'haskell-open-browser'
+ 'haskell-optparse-applicative' 'pandoc' 'haskell-pandoc-types' 
'haskell-roman-numerals'
+ 'haskell-syb' 'haskell-utility-ht')
+makedepends=('ghc' 'haskell-hspec')
+conflicts=('haskell-pandoc-crossref')
+replaces=('haskell-pandoc-crossref')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/lierdakil/pandoc-crossref/archive/v$pkgver.tar.gz;)
+sha512sums=('224218d3a559fc6a2b574c4f62a7e99f28c25abb20f7fc2eb6b318f388d0c3e65f690c03b687964d50bb4fc87a77d79a6bebb20c196cd93f884f12c43ce1c68e')
+
+build() {
+cd $pkgname-$pkgver
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests 
--datasubdir="$pkgname" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+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() {
+# 
https://github.com/lierdakil/pandoc-crossref/issues/181#issuecomment-398269601
+cd $pkgname-$pkgver
+runhaskell Setup test || warning "Tests failed"
+}
+
+package() {
+cd $pkgname-$pkgver
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-08-30 Thread Felix Yan via arch-commits
Date: Thursday, August 30, 2018 @ 18:40:57
  Author: felixonmars
Revision: 375659

upgpkg: pandoc-crossref 0.3.2.1-70

rebuild with unliftio 0.2.7.1

Modified:
  pandoc-crossref/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-30 18:40:30 UTC (rev 375658)
+++ PKGBUILD2018-08-30 18:40:57 UTC (rev 375659)
@@ -4,7 +4,7 @@
 
 pkgname=pandoc-crossref
 pkgver=0.3.2.1
-pkgrel=69
+pkgrel=70
 pkgdesc="Pandoc filter for cross-references"
 url="https://hackage.haskell.org/package/${pkgname};
 license=("GPL2")


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

2018-08-30 Thread Felix Yan via arch-commits
Date: Thursday, August 30, 2018 @ 18:39:20
  Author: felixonmars
Revision: 375657

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-hakyll/repos/community-staging-x86_64/PKGBUILD (from rev 
375656, haskell-hakyll/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-08-30 18:39:20 UTC (rev 375657)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hakyll
+pkgname=haskell-hakyll
+pkgver=4.12.3.0
+pkgrel=105
+pkgdesc="A static website compiler library"
+url="http://jaspervdj.be/hakyll;
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-blaze-html' 'haskell-blaze-markup' 
'haskell-cryptohash'
+ 'haskell-data-default' 'haskell-file-embed' 'haskell-fsnotify' 
'haskell-http-conduit'
+ 'haskell-http-types' 'haskell-lrucache' 'haskell-network-uri'
+ 'haskell-optparse-applicative' 'pandoc' 'pandoc-citeproc' 
'haskell-random'
+ 'haskell-regex-tdfa' 'haskell-resourcet' 'haskell-scientific' 
'haskell-tagsoup'
+ 'haskell-time-locale-compat' 'haskell-unordered-containers' 
'haskell-vector'
+ 'haskell-wai' 'haskell-wai-app-static' 'haskell-warp' 'haskell-yaml')
+makedepends=('ghc' 'haskell-quickcheck' 'haskell-tasty' 'haskell-tasty-hunit'
+ 'haskell-tasty-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('287112e1cb7ac4c06f976ee77fe6b64605c96f04e78c366cffdc24d435f57d37c06543e180476a23bd5e7a42a54e4b30a08ad5e4a8aec5fd97052503691574fc')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i -e 's/<.*0.9/<1/' -e 's/<.*0.0.11/<1/' $_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" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fcheckexternal -fwatchserver -fpreviewserver -fusepandoc
+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
+LC_CTYPE=en_US.UTF-8 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-hakyll/trunk (PKGBUILD)

2018-08-30 Thread Felix Yan via arch-commits
Date: Thursday, August 30, 2018 @ 18:39:07
  Author: felixonmars
Revision: 375656

upgpkg: haskell-hakyll 4.12.3.0-105

rebuild with unliftio 0.2.7.1

Modified:
  haskell-hakyll/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-30 18:37:07 UTC (rev 375655)
+++ PKGBUILD2018-08-30 18:39:07 UTC (rev 375656)
@@ -5,7 +5,7 @@
 _hkgname=hakyll
 pkgname=haskell-hakyll
 pkgver=4.12.3.0
-pkgrel=104
+pkgrel=105
 pkgdesc="A static website compiler library"
 url="http://jaspervdj.be/hakyll;
 license=("custom:BSD3")


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

2018-08-30 Thread Felix Yan via arch-commits
Date: Thursday, August 30, 2018 @ 18:37:07
  Author: felixonmars
Revision: 375655

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: pandoc-citeproc/repos/community-staging-x86_64/PKGBUILD (from rev 
375654, pandoc-citeproc/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-08-30 18:37:07 UTC (rev 375655)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc-citeproc
+pkgver=0.14.3.1
+pkgrel=122
+pkgdesc="Supports using pandoc with citeproc"
+url="https://hackage.haskell.org/package/$pkgname;
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-aeson-pretty' 
'haskell-attoparsec' 'haskell-base-compat'
+ 'haskell-data-default' 'haskell-hs-bibutils' 'haskell-old-locale' 
'pandoc'
+ 'haskell-pandoc-types' 'haskell-rfc5051' 'haskell-setenv' 
'haskell-split'
+ 'haskell-syb' 'haskell-tagsoup' 'haskell-temporary' 'haskell-text-icu'
+ 'haskell-unordered-containers' 'haskell-vector' 'haskell-xml-conduit' 
'haskell-yaml')
+conflicts=('haskell-pandoc-citeproc')
+replaces=('haskell-pandoc-citeproc')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/$pkgname/${pkgver}/$pkgname-${pkgver}.tar.gz;)
+sha512sums=('ab3d395c77192f72fa5cf9606f3cc5fc37c00a5719a58203d4b7c6edbc032524dd8457abe292d5d7dbe5ab2eaccd545269355931451ca0835d0ac1aa3cc48414')
+
+prepare() {
+cd "${srcdir}/$pkgname-${pkgver}"
+sed -i 's/<.*1.4/<2/' $pkgname.cabal
+# TODO: find a better solution
+sed -i 
"s|(\"HOME\",\".\")|(\"HOME\",\".\"),(\"LD_LIBRARY_PATH\",\"$PWD/dist/build\"),(\"pandoc_citeproc_datadir\",\"$PWD\")|"
 tests/test-pandoc-citeproc.hs
+}
+
+build() {
+cd "${srcdir}/$pkgname-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/$pkgname" 
--datasubdir="$pkgname" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-debug -f-test_citeproc -funicode_collation -f-embed_data_files 
-fbibutils -f-static
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $pkgname-$pkgver
+# https://github.com/jgm/pandoc-citeproc/issues/342
+runhaskell Setup test || warning "Tests failed"
+}
+
+package() {
+cd "${srcdir}/$pkgname-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/$pkgname.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/$pkgname.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" "${pkgdir}/usr/share/licenses/$pkgname/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/$pkgname/LICENSE"
+}


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

2018-08-30 Thread Felix Yan via arch-commits
Date: Thursday, August 30, 2018 @ 18:36:55
  Author: felixonmars
Revision: 375654

upgpkg: pandoc-citeproc 0.14.3.1-122

rebuild with unliftio 0.2.7.1

Modified:
  pandoc-citeproc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-30 18:34:16 UTC (rev 375653)
+++ PKGBUILD2018-08-30 18:36:55 UTC (rev 375654)
@@ -4,7 +4,7 @@
 
 pkgname=pandoc-citeproc
 pkgver=0.14.3.1
-pkgrel=121
+pkgrel=122
 pkgdesc="Supports using pandoc with citeproc"
 url="https://hackage.haskell.org/package/$pkgname;
 license=("custom:BSD3")


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

2018-08-30 Thread Felix Yan via arch-commits
Date: Thursday, August 30, 2018 @ 18:34:16
  Author: felixonmars
Revision: 375653

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: pandoc/repos/community-staging-x86_64/PKGBUILD (from rev 375652, 
pandoc/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-08-30 18:34:16 UTC (rev 375653)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc
+pkgver=2.2.3.2
+pkgrel=15
+pkgdesc="Conversion between markup formats"
+url="http://pandoc.org;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-http' 'haskell-juicypixels' 'haskell-sha' 
'haskell-aeson'
+ 'haskell-aeson-pretty' 'haskell-base-compat' 
'haskell-base64-bytestring'
+ 'haskell-blaze-html' 'haskell-blaze-markup' 
'haskell-case-insensitive' 'haskell-cmark-gfm'
+ 'haskell-data-default' 'haskell-doctemplates' 'haskell-exceptions' 
'haskell-glob'
+ 'haskell-haddock-library' 'haskell-skylighting' 'haskell-hslua'
+ 'haskell-hslua-module-text' 'haskell-http-client' 'haskell-syb' 
'haskell-hsyaml' 'haskell-http-client-tls'
+ 'haskell-http-types' 'haskell-safe' 'haskell-split' 'haskell-texmath'
+ 'haskell-network' 'haskell-pandoc-types' 'haskell-random'
+ 'haskell-tagsoup' 'haskell-temporary' 'haskell-network-uri'
+ 'haskell-unordered-containers' 'haskell-zip-archive' 'haskell-vector' 
'haskell-xml'
+ 'haskell-zlib')
+optdepends=('pandoc-citeproc: for citation rendering with pandoc-citeproc 
filter'
+'pandoc-crossref: for numbering figures, equations, tables and 
cross-references to them with pandoc-crossref filter'
+'texlive-core: for pdf output')
+conflicts=('haskell-pandoc')
+replaces=('haskell-pandoc')
+makedepends=('ghc' 'haskell-diff' 'haskell-tasty' 'haskell-tasty-hunit' 
'haskell-tasty-quickcheck'
+ 'haskell-tasty-golden' 'haskell-quickcheck' 
'haskell-executable-path')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('e35f7e8db30784f15e11a6a48cb1ae8cb96faca7280c7d8ba63c1d948daab13097c04b7796a6ad8853ac177ee93de20edecf81842fdb7998e3453b89ac9750b0')
+
+prepare() {
+cd "${srcdir}/$pkgname-${pkgver}"
+
+# TODO: find a better solution
+sed -i "s|let env' = dynlibEnv ++ |let env' = dynlibEnv ++ 
[(\"LD_LIBRARY_PATH\", \"$PWD/dist/build\")] ++ |" test/Tests/Command.hs
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgbase}" 
--datasubdir="$pkgname" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-trypandoc -f-embed_data_files -f-static
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+LC_CTYPE=en_US.UTF-8 runhaskell Setup test
+}
+
+package() {
+cd "${srcdir}/${pkgbase}-${pkgver}"
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/COPYING.md"
+}


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

2018-08-30 Thread Felix Yan via arch-commits
Date: Thursday, August 30, 2018 @ 18:34:02
  Author: felixonmars
Revision: 375652

upgpkg: pandoc 2.2.3.2-15

rebuild with unliftio 0.2.7.1

Modified:
  pandoc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-30 18:24:55 UTC (rev 375651)
+++ PKGBUILD2018-08-30 18:34:02 UTC (rev 375652)
@@ -4,7 +4,7 @@
 
 pkgname=pandoc
 pkgver=2.2.3.2
-pkgrel=14
+pkgrel=15
 pkgdesc="Conversion between markup formats"
 url="http://pandoc.org;
 license=("GPL")


[arch-commits] Commit in (lib32-json-c lib32-json-c/repos lib32-json-c/trunk)

2018-08-30 Thread Jan Steffens via arch-commits
Date: Thursday, August 30, 2018 @ 18:24:55
  Author: heftig
Revision: 375651

Add lib32-json-c

Added:
  lib32-json-c/
  lib32-json-c/repos/
  lib32-json-c/trunk/


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

2018-08-30 Thread Filipe Laíns via arch-commits
Date: Thursday, August 30, 2018 @ 18:23:59
  Author: ffy00
Revision: 375650

archrelease: copy trunk to community-x86_64

Added:
  peek/repos/community-x86_64/
  peek/repos/community-x86_64/PKGBUILD
(from rev 375649, peek/trunk/PKGBUILD)

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

Copied: peek/repos/community-x86_64/PKGBUILD (from rev 375649, 
peek/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2018-08-30 18:23:59 UTC (rev 375650)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: Philipp Wolfer 
+
+pkgname=peek
+pkgver=1.3.1
+pkgrel=3
+pkgdesc="Simple screen recorder with an easy to use interface"
+arch=('x86_64')
+url="https://github.com/phw/peek;
+license=('GPL3')
+depends=('gtk3' 'libkeybinder3' 'ffmpeg')
+makedepends=('cmake' 'vala' 'gst-plugins-good' 'gst-plugins-ugly')
+#checkdepends=('xorg-server-xvfb')
+optdepends=('gst-plugins-good: Recording under Gnome Shell'
+'gst-plugins-ugly: MP4 output under Gnome Shell'
+'gifski: High quality GIF animations with thousands of colors')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
+sha512sums=('cdf4190c555b0a40051862038c04dc7c164bf8bccf47202d0fcb74f527a8a7d5605bc2e112847e262e51a5a95c3d2b3497e4ec56834880564e8e4127869ad9df')
+
+build() {
+  mkdir -p $pkgname-$pkgver/build
+  cd $pkgname-$pkgver/build
+
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTS=OFF \
+-DGSETTINGS_COMPILE=ON \
+-DENABLE_FILECHOOSERNATIVE=ON
+
+  make
+}
+
+#check() {
+#  cd $pkgname-$pkgver/build
+#
+#  xvfb-run make test
+#}
+
+package() {
+  cd $pkgname-$pkgver/build
+
+  make DESTDIR="$pkgdir" install
+}
+


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

2018-08-30 Thread Filipe Laíns via arch-commits
Date: Thursday, August 30, 2018 @ 18:23:49
  Author: ffy00
Revision: 375649

import from aur

Added:
  peek/
  peek/repos/
  peek/trunk/
  peek/trunk/PKGBUILD

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

Added: peek/trunk/PKGBUILD
===
--- peek/trunk/PKGBUILD (rev 0)
+++ peek/trunk/PKGBUILD 2018-08-30 18:23:49 UTC (rev 375649)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: Philipp Wolfer 
+
+pkgname=peek
+pkgver=1.3.1
+pkgrel=3
+pkgdesc="Simple screen recorder with an easy to use interface"
+arch=('x86_64')
+url="https://github.com/phw/peek;
+license=('GPL3')
+depends=('gtk3' 'libkeybinder3' 'ffmpeg')
+makedepends=('cmake' 'vala' 'gst-plugins-good' 'gst-plugins-ugly')
+#checkdepends=('xorg-server-xvfb')
+optdepends=('gst-plugins-good: Recording under Gnome Shell'
+'gst-plugins-ugly: MP4 output under Gnome Shell'
+'gifski: High quality GIF animations with thousands of colors')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
+sha512sums=('cdf4190c555b0a40051862038c04dc7c164bf8bccf47202d0fcb74f527a8a7d5605bc2e112847e262e51a5a95c3d2b3497e4ec56834880564e8e4127869ad9df')
+
+build() {
+  mkdir -p $pkgname-$pkgver/build
+  cd $pkgname-$pkgver/build
+
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTS=OFF \
+-DGSETTINGS_COMPILE=ON \
+-DENABLE_FILECHOOSERNATIVE=ON
+
+  make
+}
+
+#check() {
+#  cd $pkgname-$pkgver/build
+#
+#  xvfb-run make test
+#}
+
+package() {
+  cd $pkgname-$pkgver/build
+
+  make DESTDIR="$pkgdir" install
+}
+


Property changes on: peek/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


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

2018-08-30 Thread Felix Yan via arch-commits
Date: Thursday, August 30, 2018 @ 18:23:15
  Author: felixonmars
Revision: 375647

upgpkg: hopenpgp-tools 0.21.2-19

rebuild with unliftio 0.2.7.1

Modified:
  hopenpgp-tools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-30 18:21:36 UTC (rev 375646)
+++ PKGBUILD2018-08-30 18:23:15 UTC (rev 375647)
@@ -4,7 +4,7 @@
 
 pkgname=hopenpgp-tools
 pkgver=0.21.2
-pkgrel=18
+pkgrel=19
 pkgdesc="hOpenPGP-based command-line tools"
 url="http://floss.scru.org/hopenpgp-tools;
 license=("AGPL3")


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

2018-08-30 Thread Felix Yan via arch-commits
Date: Thursday, August 30, 2018 @ 18:23:28
  Author: felixonmars
Revision: 375648

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: hopenpgp-tools/repos/community-staging-x86_64/PKGBUILD (from rev 
375647, hopenpgp-tools/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-08-30 18:23:28 UTC (rev 375648)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hopenpgp-tools
+pkgver=0.21.2
+pkgrel=19
+pkgdesc="hOpenPGP-based command-line tools"
+url="http://floss.scru.org/hopenpgp-tools;
+license=("AGPL3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-attoparsec' 
'haskell-base16-bytestring'
+ 'haskell-binary-conduit' 'haskell-conduit' 'haskell-conduit-extra' 
'haskell-crypto-pubkey'
+ 'haskell-cryptohash' 'haskell-errors' 'haskell-fgl' 
'haskell-graphviz' 'haskell-hopenpgp'
+ 'haskell-http-client' 'haskell-http-client-tls' 'haskell-http-types' 
'haskell-ixset-typed'
+ 'haskell-lens' 'haskell-monad-loops' 'haskell-openpgp-asciiarmor'
+ 'haskell-optparse-applicative' 'haskell-prettyprinter'
+ 'haskell-prettyprinter-ansi-terminal' 
'haskell-prettyprinter-convert-ansi-wl-pprint'
+ 'haskell-resourcet' 'haskell-time-locale-compat' 'haskell-yaml')
+makedepends=('alex' 'happy' 'ghc')
+source=(https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('2a5e1487670b9616a5546ec0cd2671e712aeef8017daf20ce78eebd569445355025f9b39a897747dcf9ededf0dba713319bb5bfa02349fd38a69af65962264c5')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --prefix=/usr --enable-executable-dynamic 
--docdir="/usr/share/doc/${pkgname}"
+runhaskell Setup build
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+
+rm "$pkgdir/usr/share/doc/hopenpgp-tools/LICENSE"
+rmdir "$pkgdir/usr/share/doc/hopenpgp-tools" "$pkgdir/usr/share/doc" 
"$pkgdir/usr/share"
+}


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

2018-08-30 Thread Felix Yan via arch-commits
Date: Thursday, August 30, 2018 @ 18:21:36
  Author: felixonmars
Revision: 375646

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: hoogle/repos/community-staging-x86_64/PKGBUILD (from rev 375645, 
hoogle/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-08-30 18:21:36 UTC (rev 375646)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hoogle
+pkgver=5.0.17.3
+pkgrel=76
+pkgdesc="Haskell API Search"
+url="http://www.haskell.org/hoogle/;
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-quickcheck' 'haskell-aeson' 'haskell-cmdargs' 
'haskell-conduit'
+ 'haskell-conduit-extra' 'haskell-connection' 'haskell-extra' 
'haskell-src-exts'
+ 'haskell-http-conduit' 'haskell-http-types' 'haskell-js-flot' 
'haskell-js-jquery'
+ 'haskell-mmap' 'haskell-network' 'haskell-network-uri' 
'haskell-old-locale'
+ 'haskell-process-extras' 'haskell-resourcet' 'haskell-storable-tuple' 
'haskell-tar'
+ 'haskell-uniplate' 'haskell-utf8-string' 'haskell-vector' 
'haskell-wai'
+ 'haskell-wai-logger' 'haskell-warp' 'haskell-warp-tls' 'haskell-zlib')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('b8113e9dc6f44fbf684edfe6134eb44d55b1ef43afc3cb2051920daaec3e108df6209cfe822a8eeff884360c9b9415f2ab8273e7681e6bbcc1b9c77490370195')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-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}/${pkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-08-30 Thread Felix Yan via arch-commits
Date: Thursday, August 30, 2018 @ 18:21:23
  Author: felixonmars
Revision: 375645

upgpkg: hoogle 5.0.17.3-76

rebuild with unliftio 0.2.7.1

Modified:
  hoogle/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-30 18:19:14 UTC (rev 375644)
+++ PKGBUILD2018-08-30 18:21:23 UTC (rev 375645)
@@ -4,7 +4,7 @@
 
 pkgname=hoogle
 pkgver=5.0.17.3
-pkgrel=75
+pkgrel=76
 pkgdesc="Haskell API Search"
 url="http://www.haskell.org/hoogle/;
 license=("custom:BSD3")


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

2018-08-30 Thread Felix Yan via arch-commits
Date: Thursday, August 30, 2018 @ 18:19:14
  Author: felixonmars
Revision: 375644

archrelease: copy trunk to community-staging-x86_64

Added:
  cryptol/repos/community-staging-x86_64/
  cryptol/repos/community-staging-x86_64/PKGBUILD
(from rev 375643, cryptol/trunk/PKGBUILD)

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

Copied: cryptol/repos/community-staging-x86_64/PKGBUILD (from rev 375643, 
cryptol/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-08-30 18:19:14 UTC (rev 375644)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=cryptol
+pkgver=2.6.0
+pkgrel=15
+pkgdesc="The Language of Cryptography"
+url="http://www.cryptol.net;
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' 'z3' 'haskell-base-compat' 'haskell-gitrev' 
'haskell-graphscc' 'haskell-heredoc'
+ 'haskell-monad-control' 'haskell-monadlib' 'haskell-panic' 
'haskell-random' 'haskell-sbv'
+ 'haskell-simple-smt' 'haskell-strict' 'haskell-tf-random' 
'haskell-transformers-base'
+ 'haskell-ansi-terminal' 'haskell-blaze-html')
+makedepends=('ghc' 'alex' 'happy')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/GaloisInc/cryptol/archive/$pkgver.tar.gz;)
+sha512sums=('445a1656ffd0d260553e041de9b15b6257a4b068b5462d996e8207671c097ea814bc5b7aaeb527b5e9579bd8a3e5e8ced0aaf57c24fbccaa7410342a109e9325')
+
+prepare() {
+cd $pkgname-$pkgver
+sed -i 's/<.*0.10/<1/' $pkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-static -f-relocatable
+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}/${pkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-08-30 Thread Felix Yan via arch-commits
Date: Thursday, August 30, 2018 @ 18:18:45
  Author: felixonmars
Revision: 375643

upgpkg: cryptol 2.6.0-15

rebuild with unliftio 0.2.7.1

Modified:
  cryptol/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-30 18:15:06 UTC (rev 375642)
+++ PKGBUILD2018-08-30 18:18:45 UTC (rev 375643)
@@ -3,7 +3,7 @@
 
 pkgname=cryptol
 pkgver=2.6.0
-pkgrel=14
+pkgrel=15
 pkgdesc="The Language of Cryptography"
 url="http://www.cryptol.net;
 license=("custom:BSD3")


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

2018-08-30 Thread Felix Yan via arch-commits
Date: Thursday, August 30, 2018 @ 18:15:06
  Author: felixonmars
Revision: 375642

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-sbv/repos/community-staging-x86_64/PKGBUILD (from rev 375641, 
haskell-sbv/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-08-30 18:15:06 UTC (rev 375642)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=sbv
+pkgname=haskell-sbv
+pkgver=7.10
+pkgrel=18
+pkgdesc="SMT Based Verification: Symbolic Haskell theorem prover using SMT 
solving"
+url="http://leventerkok.github.com/sbv;
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-ghc' 'haskell-quickcheck' 'haskell-cracknum' 
'haskell-async'
+ 'haskell-random' 'haskell-syb' 'haskell-data-binary-ieee754'
+ 'haskell-generic-deriving')
+makedepends=('ghc' 'haskell-doctest' 'haskell-glob' 'hlint' 'haskell-tasty' 
'haskell-tasty-golden'
+ 'haskell-tasty-hunit' 'haskell-tasty-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('0eff6c043fff464d2a4c715e2269d05ecdda690df6a975c36f1c96728a4e4e075dc1e5667ffbdb8f1929bda930ad2a419d8138d13f6a1e3023562b6445c86121')
+
+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-sbv/trunk (PKGBUILD)

2018-08-30 Thread Felix Yan via arch-commits
Date: Thursday, August 30, 2018 @ 18:14:48
  Author: felixonmars
Revision: 375641

upgpkg: haskell-sbv 7.10-18

rebuild with unliftio 0.2.7.1

Modified:
  haskell-sbv/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-30 18:11:38 UTC (rev 375640)
+++ PKGBUILD2018-08-30 18:14:48 UTC (rev 375641)
@@ -5,7 +5,7 @@
 _hkgname=sbv
 pkgname=haskell-sbv
 pkgver=7.10
-pkgrel=17
+pkgrel=18
 pkgdesc="SMT Based Verification: Symbolic Haskell theorem prover using SMT 
solving"
 url="http://leventerkok.github.com/sbv;
 license=("custom:BSD3")


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

2018-08-30 Thread Filipe Laíns via arch-commits
Date: Thursday, August 30, 2018 @ 18:11:32
  Author: ffy00
Revision: 375639

import from aur

Added:
  gifski/
  gifski/repos/
  gifski/trunk/
  gifski/trunk/PKGBUILD

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

Added: gifski/trunk/PKGBUILD
===
--- gifski/trunk/PKGBUILD   (rev 0)
+++ gifski/trunk/PKGBUILD   2018-08-30 18:11:32 UTC (rev 375639)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: Philipp Wolfer 
+
+pkgname=gifski
+pkgver=0.8.4
+pkgrel=2
+pkgdesc="GIF encoder based on libimagequant (pngquant, gifquant?)."
+arch=('x86_64')
+url="https://gif.ski/;
+license=('AGPL3')
+makedepends=('rust' 'clang' 'openmp')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/ImageOptim/$pkgname/archive/$pkgver.tar.gz;)
+sha512sums=('1bbcb4482ea9045067eaf15e781a7ce2b29283dabed169c56769116d903f3431331692f397664f7e492733c94e2eaa04ef0a7ff3648fc151b21b6f10753b9840')\
+
+build() {
+  cd $pkgname-$pkgver
+
+  cargo build --release --features=openmp
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  install -Dm 755 target/release/gifski "$pkgdir"/usr/bin/gifski
+}
+


Property changes on: gifski/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


  1   2   3   4   >