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

2017-07-31 Thread Felix Yan
Date: Tuesday, August 1, 2017 @ 02:52:53
  Author: felixonmars
Revision: 247290

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  stack/repos/community-staging-i686/
  stack/repos/community-staging-i686/PKGBUILD
(from rev 247289, stack/trunk/PKGBUILD)
  stack/repos/community-staging-i686/path-0.6.1.patch
(from rev 247289, stack/trunk/path-0.6.1.patch)
  stack/repos/community-staging-i686/stack.install
(from rev 247289, stack/trunk/stack.install)
  stack/repos/community-staging-x86_64/
  stack/repos/community-staging-x86_64/PKGBUILD
(from rev 247289, stack/trunk/PKGBUILD)
  stack/repos/community-staging-x86_64/path-0.6.1.patch
(from rev 247289, stack/trunk/path-0.6.1.patch)
  stack/repos/community-staging-x86_64/stack.install
(from rev 247289, stack/trunk/stack.install)

---+
 community-staging-i686/PKGBUILD   |   82 
 community-staging-i686/path-0.6.1.patch   |   49 
 community-staging-i686/stack.install  |4 +
 community-staging-x86_64/PKGBUILD |   82 
 community-staging-x86_64/path-0.6.1.patch |   49 
 community-staging-x86_64/stack.install|4 +
 6 files changed, 270 insertions(+)

Copied: stack/repos/community-staging-i686/PKGBUILD (from rev 247289, 
stack/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-08-01 02:52:53 UTC (rev 247290)
@@ -0,0 +1,82 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=stack
+pkgver=1.5.0
+pkgrel=10
+pkgdesc="The Haskell Tool Stack"
+url="https://github.com/commercialhaskell/stack;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc' "haskell-aeson" "haskell-annotated-wl-pprint" 
"haskell-ansi-terminal"
+ "haskell-async" "haskell-attoparsec" "haskell-base-compat" 
"haskell-base64-bytestring"
+ "haskell-binary-tagged" "haskell-blaze-builder" "haskell-clock" 
"haskell-conduit"
+ "haskell-conduit-extra" "haskell-cryptonite" 
"haskell-cryptonite-conduit" "haskell-echo"
+ "haskell-either" "haskell-errors" "haskell-exceptions" "haskell-extra"
+ "haskell-fast-logger" "haskell-file-embed" "haskell-filelock" 
"haskell-fsnotify"
+ "haskell-generic-deriving" "haskell-gitrev" 
"haskell-hackage-security" "haskell-hashable"
+ "haskell-hastache" "haskell-http-client" "haskell-http-client-tls" 
"haskell-http-conduit"
+ "haskell-http-types" "haskell-hpack" "haskell-lifted-async" 
"haskell-lifted-base"
+ "haskell-memory" "haskell-microlens" "haskell-microlens-mtl" 
"haskell-mintty"
+ "haskell-monad-control" "haskell-monad-logger" "haskell-monad-unlift" 
"haskell-mtl"
+ "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-pid1"
+ "haskell-project-template" "haskell-regex-applicative-text" 
"haskell-resourcet"
+ "haskell-retry" "haskell-safe" "haskell-safe-exceptions" 
"haskell-semigroups"
+ "haskell-split" "haskell-stm" "haskell-store" "haskell-store-core"
+ "haskell-streaming-commons" "haskell-tar" "haskell-temporary" 
"haskell-text"
+ "haskell-text-binary" "haskell-text-metrics" "haskell-tls" 
"haskell-transformers-base"
+ "haskell-unicode-transforms" "haskell-unix-compat" 
"haskell-unordered-containers"
+ "haskell-vector" "haskell-vector-binary-instances" "haskell-yaml" 
"haskell-zip-archive"
+ "haskell-zlib")
+conflicts=('haskell-stack')
+replaces=('haskell-stack')
+install="stack.install"
+source=("$pkgname-$pkgver.tar.gz::https://github.com/commercialhaskell/stack/archive/v$pkgver.tar.gz;
+path-0.6.1.patch)
+sha256sums=('2ffead80e9cc3b72480e9130bb639aaa8a6a684d8f6098a3843fe88803c8e478'
+'2013b76677e62851248f26f8b77d0f37a52496b3380bf3107519d5a84e09808f')
+
+prepare() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+patch -p1 -i ../path-0.6.1.patch
+
+sed -e 's/cryptonite >= 0.19 && < 0.24/cryptonite >= 0.19 \&\& < 0.25/' \
+-e 's/, path >= 0.5.8 && < 0.6/, path >= 0.5.8 \&\& < 0.7/' \
+-i stack.cabal
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-disable-git-info -f-integration-tests -f-static 
-f-hide-dependency-versions
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+

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

2017-07-31 Thread Felix Yan
Date: Tuesday, August 1, 2017 @ 02:52:24
  Author: felixonmars
Revision: 247289

upgpkg: stack 1.5.0-10

rebuild with path-io,1.3.3

Modified:
  stack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-08-01 02:26:05 UTC (rev 247288)
+++ PKGBUILD2017-08-01 02:52:24 UTC (rev 247289)
@@ -4,7 +4,7 @@
 
 pkgname=stack
 pkgver=1.5.0
-pkgrel=9
+pkgrel=10
 pkgdesc="The Haskell Tool Stack"
 url="https://github.com/commercialhaskell/stack;
 license=("custom:BSD3")


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

2017-07-31 Thread Felix Yan
Date: Tuesday, August 1, 2017 @ 02:25:43
  Author: felixonmars
Revision: 247287

upgpkg: hindent 5.2.3-31

rebuild with path-io,1.3.3

Modified:
  hindent/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-08-01 02:23:01 UTC (rev 247286)
+++ PKGBUILD2017-08-01 02:25:43 UTC (rev 247287)
@@ -4,7 +4,7 @@
 
 pkgname=hindent
 pkgver=5.2.3
-pkgrel=30
+pkgrel=31
 pkgdesc="Extensible Haskell pretty printer"
 url="https://github.com/commercialhaskell/hindent;
 license=("custom:BSD3")


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

2017-07-31 Thread Felix Yan
Date: Tuesday, August 1, 2017 @ 02:26:05
  Author: felixonmars
Revision: 247288

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  hindent/repos/community-staging-i686/
  hindent/repos/community-staging-i686/PKGBUILD
(from rev 247287, hindent/trunk/PKGBUILD)
  hindent/repos/community-staging-x86_64/
  hindent/repos/community-staging-x86_64/PKGBUILD
(from rev 247287, hindent/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   45 
 community-staging-x86_64/PKGBUILD |   45 
 2 files changed, 90 insertions(+)

Copied: hindent/repos/community-staging-i686/PKGBUILD (from rev 247287, 
hindent/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-08-01 02:26:05 UTC (rev 247288)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hindent
+pkgver=5.2.3
+pkgrel=31
+pkgdesc="Extensible Haskell pretty printer"
+url="https://github.com/commercialhaskell/hindent;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc' "haskell-descriptive" "haskell-exceptions" 
"haskell-monad-loops" "haskell-mtl"
+ "haskell-path" "haskell-path-io" "haskell-src-exts" "haskell-text" 
"haskell-unix-compat"
+ "haskell-utf8-string" "haskell-yaml")
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('478c207ffb408e31f15dbc5bf941acdc9116de1c775d393cb59514e4a28354865d808715005a7e6f076b86d4e5f5c0f389059c16d4761ffcec31953d2d88d969')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${pkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE.md" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.md"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE.md"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}

Copied: hindent/repos/community-staging-x86_64/PKGBUILD (from rev 247287, 
hindent/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-08-01 02:26:05 UTC (rev 247288)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hindent
+pkgver=5.2.3
+pkgrel=31
+pkgdesc="Extensible Haskell pretty printer"
+url="https://github.com/commercialhaskell/hindent;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc' "haskell-descriptive" "haskell-exceptions" 
"haskell-monad-loops" "haskell-mtl"
+ "haskell-path" "haskell-path-io" "haskell-src-exts" "haskell-text" 
"haskell-unix-compat"
+ "haskell-utf8-string" "haskell-yaml")
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('478c207ffb408e31f15dbc5bf941acdc9116de1c775d393cb59514e4a28354865d808715005a7e6f076b86d4e5f5c0f389059c16d4761ffcec31953d2d88d969')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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   

[arch-commits] Commit in haskell-path-io/repos (4 files)

2017-07-31 Thread Felix Yan
Date: Tuesday, August 1, 2017 @ 02:23:01
  Author: felixonmars
Revision: 247286

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  haskell-path-io/repos/community-staging-i686/
  haskell-path-io/repos/community-staging-i686/PKGBUILD
(from rev 247285, haskell-path-io/trunk/PKGBUILD)
  haskell-path-io/repos/community-staging-x86_64/
  haskell-path-io/repos/community-staging-x86_64/PKGBUILD
(from rev 247285, haskell-path-io/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   46 
 community-staging-x86_64/PKGBUILD |   46 
 2 files changed, 92 insertions(+)

Copied: haskell-path-io/repos/community-staging-i686/PKGBUILD (from rev 247285, 
haskell-path-io/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-08-01 02:23:01 UTC (rev 247286)
@@ -0,0 +1,46 @@
+# $Id: PKGBUILD 162763 2016-02-20 14:34:32Z fyan $
+# Maintainer: Felix Yan 
+# Contributor: Daniel Nagy 
+# Contributor: Daniel Micay 
+
+_hkgname=path-io
+pkgname=haskell-path-io
+pkgver=1.3.3
+pkgrel=1
+pkgdesc="Interface to ‘directory’ package for users of ‘path’"
+url="https://github.com/mrkkrp/path-io;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc' 'haskell-dlist' 'haskell-exceptions' 'haskell-path' 
'haskell-temporary'
+ 'haskell-unix-compat')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-${pkgver}.tar.gz;)
+sha512sums=('af513783d7ae6a99556d67b8f7ed599b0b5285ced7ed4c0b12fb39ab16a043662cad86d24a54d2220892f8625a8229f04bf6d898419348eaee1992ca79e2f4c0')
+
+build() {
+  cd "$srcdir/$_hkgname-$pkgver"
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-dev
+  runhaskell Setup build
+  LC_CTYPE=en_US.UTF-8 runhaskell Setup haddock --hoogle --html
+  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"
+  install -dm755 "$pkgdir/usr/share/doc/ghc/html/libraries"
+  ln -s /usr/share/doc/$pkgname/html 
"$pkgdir/usr/share/doc/ghc/html/libraries/$_hkgname"
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 "LICENSE.md" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.md"
+  rm -f "$pkgdir/usr/share/doc/$pkgname/LICENSE.md"
+
+  # Remove static libs
+  find "$pkgdir"/usr/lib -name "*.a" -delete
+}

Copied: haskell-path-io/repos/community-staging-x86_64/PKGBUILD (from rev 
247285, haskell-path-io/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-08-01 02:23:01 UTC (rev 247286)
@@ -0,0 +1,46 @@
+# $Id: PKGBUILD 162763 2016-02-20 14:34:32Z fyan $
+# Maintainer: Felix Yan 
+# Contributor: Daniel Nagy 
+# Contributor: Daniel Micay 
+
+_hkgname=path-io
+pkgname=haskell-path-io
+pkgver=1.3.3
+pkgrel=1
+pkgdesc="Interface to ‘directory’ package for users of ‘path’"
+url="https://github.com/mrkkrp/path-io;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc' 'haskell-dlist' 'haskell-exceptions' 'haskell-path' 
'haskell-temporary'
+ 'haskell-unix-compat')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-${pkgver}.tar.gz;)
+sha512sums=('af513783d7ae6a99556d67b8f7ed599b0b5285ced7ed4c0b12fb39ab16a043662cad86d24a54d2220892f8625a8229f04bf6d898419348eaee1992ca79e2f4c0')
+
+build() {
+  cd "$srcdir/$_hkgname-$pkgver"
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-dev
+  runhaskell Setup build
+  LC_CTYPE=en_US.UTF-8 runhaskell Setup haddock --hoogle --html
+  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 

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

2017-07-31 Thread Felix Yan
Date: Tuesday, August 1, 2017 @ 02:22:36
  Author: felixonmars
Revision: 247285

upgpkg: haskell-path-io 1.3.3-1

rebuild with path-io,1.3.3

Modified:
  haskell-path-io/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-08-01 02:19:49 UTC (rev 247284)
+++ PKGBUILD2017-08-01 02:22:36 UTC (rev 247285)
@@ -5,8 +5,8 @@
 
 _hkgname=path-io
 pkgname=haskell-path-io
-pkgver=1.3.2
-pkgrel=2
+pkgver=1.3.3
+pkgrel=1
 pkgdesc="Interface to ‘directory’ package for users of ‘path’"
 url="https://github.com/mrkkrp/path-io;
 license=("custom:BSD3")
@@ -14,7 +14,7 @@
 depends=('ghc' 'haskell-dlist' 'haskell-exceptions' 'haskell-path' 
'haskell-temporary'
  'haskell-unix-compat')
 
source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-${pkgver}.tar.gz;)
-sha512sums=('3f9b89d372da3c98687ef1537e69352b64dedd1841a09c3607f190d25c3ad56fa4b46493c31322c626b06e37399dc7815fcc9050e12e773e6243095d6139e07c')
+sha512sums=('af513783d7ae6a99556d67b8f7ed599b0b5285ced7ed4c0b12fb39ab16a043662cad86d24a54d2220892f8625a8229f04bf6d898419348eaee1992ca79e2f4c0')
 
 build() {
   cd "$srcdir/$_hkgname-$pkgver"


[arch-commits] Commit in jenkins/repos/community-any (14 files)

2017-07-31 Thread Felix Yan
Date: Tuesday, August 1, 2017 @ 02:19:49
  Author: felixonmars
Revision: 247284

archrelease: copy trunk to community-any

Added:
  jenkins/repos/community-any/LICENSE
(from rev 247283, jenkins/trunk/LICENSE)
  jenkins/repos/community-any/PKGBUILD
(from rev 247283, jenkins/trunk/PKGBUILD)
  jenkins/repos/community-any/jenkins.conf
(from rev 247283, jenkins/trunk/jenkins.conf)
  jenkins/repos/community-any/jenkins.install
(from rev 247283, jenkins/trunk/jenkins.install)
  jenkins/repos/community-any/jenkins.service
(from rev 247283, jenkins/trunk/jenkins.service)
  jenkins/repos/community-any/jenkins.sysusers
(from rev 247283, jenkins/trunk/jenkins.sysusers)
  jenkins/repos/community-any/jenkins.tmpfiles
(from rev 247283, jenkins/trunk/jenkins.tmpfiles)
Deleted:
  jenkins/repos/community-any/LICENSE
  jenkins/repos/community-any/PKGBUILD
  jenkins/repos/community-any/jenkins.conf
  jenkins/repos/community-any/jenkins.install
  jenkins/repos/community-any/jenkins.service
  jenkins/repos/community-any/jenkins.sysusers
  jenkins/repos/community-any/jenkins.tmpfiles

--+
 LICENSE  |   46 +--
 PKGBUILD |   90 ++---
 jenkins.conf |   26 +++
 jenkins.install  |   14 
 jenkins.service  |   48 ++--
 jenkins.sysusers |4 +-
 jenkins.tmpfiles |2 -
 7 files changed, 115 insertions(+), 115 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2017-08-01 02:19:13 UTC (rev 247283)
+++ LICENSE 2017-08-01 02:19:49 UTC (rev 247284)
@@ -1,23 +0,0 @@
-The MIT License
-
-Copyright (c) 2004-, Kohsuke Kawaguchi, Sun Microsystems, Inc., and a number 
of other of contributors
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in
-all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-THE SOFTWARE.
-
-

Copied: jenkins/repos/community-any/LICENSE (from rev 247283, 
jenkins/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2017-08-01 02:19:49 UTC (rev 247284)
@@ -0,0 +1,23 @@
+The MIT License
+
+Copyright (c) 2004-, Kohsuke Kawaguchi, Sun Microsystems, Inc., and a number 
of other of contributors
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
+
+

Deleted: PKGBUILD
===
--- PKGBUILD2017-08-01 02:19:13 UTC (rev 247283)
+++ PKGBUILD2017-08-01 02:19:49 UTC (rev 247284)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Alexander Rødseth 
-# Contributor: Marcel Huber 
-# Contributor: Illarion Kovalchuk 
-
-pkgname=jenkins
-pkgver=2.71
-pkgrel=1
-pkgdesc='Extendable continuous integration server (latest)'
-arch=('any')
-url='https://jenkins.io'
-license=('MIT')
-depends=('java-runtime>=8' 'ttf-dejavu' 'libcups')
-provides=('jenkins-ci')
-conflicts=('jenkins-ci')

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

2017-07-31 Thread Felix Yan
Date: Tuesday, August 1, 2017 @ 02:19:13
  Author: felixonmars
Revision: 247283

upgpkg: jenkins 2.72-1

Modified:
  jenkins/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-08-01 01:58:35 UTC (rev 247282)
+++ PKGBUILD2017-08-01 02:19:13 UTC (rev 247283)
@@ -5,7 +5,7 @@
 # Contributor: Illarion Kovalchuk 
 
 pkgname=jenkins
-pkgver=2.71
+pkgver=2.72
 pkgrel=1
 pkgdesc='Extendable continuous integration server (latest)'
 arch=('any')
@@ -25,7 +25,7 @@
 'jenkins.tmpfiles'
 'jenkins.sysusers'
 'LICENSE')
-sha512sums=('d5718c70c7a1569f7389a8da2618382abe8799abb98faf87f4b25519b9336af904f32d72c8b30b2ca0f33e72c37d7984b901d4b26179c742333a538152c05b3b'
+sha512sums=('f4b436d35c95da350d85b1e84d0abf08ba09e3e547d3df4afd6dd5895edc3bce742c5e0f502410122dfb69bba096e48af89e5800fcb642ffd9c783617896a7cc'
 
'3a8421cef3953d899c150609f959cf5d5dd6d08d079a5e0f48bfece4f3c80491722b9e90ef841fddb87401c226b8338297c5c4e83e55a33ef8d6e387de3048d0'
 
'a336b006d3711abb75b49a2e12c09ee61cf3275a2cdbbd3676480e2f6ca8ba0fb4b9c08f3f9da193252c4fca827e9a1d5eaad847d0a889445693427ae1571fe7'
 
'a845a7147be54affc586dfce9a188ec24c92e673e88dec0b62da386d2e597de6ecda103429008562abd897f179a52c37cf2188ebc65b8c636efd07d707e18f90'


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

2017-07-31 Thread Felix Yan
Date: Monday, July 31, 2017 @ 21:02:51
  Author: felixonmars
Revision: 247239

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

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

---+
 community-staging-i686/PKGBUILD   |   37 
 community-staging-x86_64/PKGBUILD |   37 
 2 files changed, 74 insertions(+)

Copied: hopenpgp-tools/repos/community-staging-i686/PKGBUILD (from rev 247238, 
hopenpgp-tools/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-07-31 21:02:51 UTC (rev 247239)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hopenpgp-tools
+pkgver=0.19.4
+pkgrel=134
+pkgdesc="hOpenPGP-based command-line tools"
+url="http://floss.scru.org/hopenpgp-tools;
+license=("AGPL3")
+arch=('i686' 'x86_64')
+depends=('ghc' "haskell-aeson" "haskell-ansi-wl-pprint" "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-resourcet" "haskell-text" "haskell-time-locale-compat" 
"haskell-wl-pprint-extras"
+ "haskell-wl-pprint-terminfo" "haskell-yaml")
+makedepends=('alex' 'happy')
+source=(https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha256sums=('e656cd989833c6d318d5c44931ef5a8cd98bb0ebb4bab70a2d2f701091d0abd8')
+
+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"
+}

Copied: hopenpgp-tools/repos/community-staging-x86_64/PKGBUILD (from rev 
247238, hopenpgp-tools/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-07-31 21:02:51 UTC (rev 247239)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hopenpgp-tools
+pkgver=0.19.4
+pkgrel=134
+pkgdesc="hOpenPGP-based command-line tools"
+url="http://floss.scru.org/hopenpgp-tools;
+license=("AGPL3")
+arch=('i686' 'x86_64')
+depends=('ghc' "haskell-aeson" "haskell-ansi-wl-pprint" "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-resourcet" "haskell-text" "haskell-time-locale-compat" 
"haskell-wl-pprint-extras"
+ "haskell-wl-pprint-terminfo" "haskell-yaml")
+makedepends=('alex' 'happy')
+source=(https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha256sums=('e656cd989833c6d318d5c44931ef5a8cd98bb0ebb4bab70a2d2f701091d0abd8')
+
+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 hopenpgp-tools/trunk (PKGBUILD)

2017-07-31 Thread Felix Yan
Date: Monday, July 31, 2017 @ 21:02:30
  Author: felixonmars
Revision: 247238

upgpkg: hopenpgp-tools 0.19.4-134

rebuild with distributive,0.5.3

Modified:
  hopenpgp-tools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-31 20:59:03 UTC (rev 247237)
+++ PKGBUILD2017-07-31 21:02:30 UTC (rev 247238)
@@ -4,7 +4,7 @@
 
 pkgname=hopenpgp-tools
 pkgver=0.19.4
-pkgrel=133
+pkgrel=134
 pkgdesc="hOpenPGP-based command-line tools"
 url="http://floss.scru.org/hopenpgp-tools;
 license=("AGPL3")


[arch-commits] Commit in haskell-wl-pprint-terminfo/repos (4 files)

2017-07-31 Thread Felix Yan
Date: Monday, July 31, 2017 @ 20:59:03
  Author: felixonmars
Revision: 247237

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  haskell-wl-pprint-terminfo/repos/community-staging-i686/
  haskell-wl-pprint-terminfo/repos/community-staging-i686/PKGBUILD
(from rev 247236, haskell-wl-pprint-terminfo/trunk/PKGBUILD)
  haskell-wl-pprint-terminfo/repos/community-staging-x86_64/
  haskell-wl-pprint-terminfo/repos/community-staging-x86_64/PKGBUILD
(from rev 247236, haskell-wl-pprint-terminfo/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   48 
 community-staging-x86_64/PKGBUILD |   48 
 2 files changed, 96 insertions(+)

Copied: haskell-wl-pprint-terminfo/repos/community-staging-i686/PKGBUILD (from 
rev 247236, haskell-wl-pprint-terminfo/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-07-31 20:59:03 UTC (rev 247237)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=wl-pprint-terminfo
+pkgname=haskell-wl-pprint-terminfo
+pkgver=3.7.1.4
+pkgrel=15
+pkgdesc="A color pretty printer with terminfo support"
+url="http://github.com/ekmett/wl-pprint-terminfo/;
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+depends=('ghc' 'haskell-semigroups' 'haskell-wl-pprint-extras' 'haskell-text')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+md5sums=('df02e2b99aaa7273da33c5fd2956f12b')
+
+prepare() {
+sed -i '/nats/d' ${_hkgname}-${pkgver}/${_hkgname}.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fCursed
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}

Copied: haskell-wl-pprint-terminfo/repos/community-staging-x86_64/PKGBUILD 
(from rev 247236, haskell-wl-pprint-terminfo/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-07-31 20:59:03 UTC (rev 247237)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=wl-pprint-terminfo
+pkgname=haskell-wl-pprint-terminfo
+pkgver=3.7.1.4
+pkgrel=15
+pkgdesc="A color pretty printer with terminfo support"
+url="http://github.com/ekmett/wl-pprint-terminfo/;
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+depends=('ghc' 'haskell-semigroups' 'haskell-wl-pprint-extras' 'haskell-text')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+md5sums=('df02e2b99aaa7273da33c5fd2956f12b')
+
+prepare() {
+sed -i '/nats/d' ${_hkgname}-${pkgver}/${_hkgname}.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fCursed
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 

[arch-commits] Commit in haskell-wl-pprint-terminfo/trunk (PKGBUILD)

2017-07-31 Thread Felix Yan
Date: Monday, July 31, 2017 @ 20:58:41
  Author: felixonmars
Revision: 247236

upgpkg: haskell-wl-pprint-terminfo 3.7.1.4-15

rebuild with distributive,0.5.3

Modified:
  haskell-wl-pprint-terminfo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-31 20:57:14 UTC (rev 247235)
+++ PKGBUILD2017-07-31 20:58:41 UTC (rev 247236)
@@ -4,7 +4,7 @@
 _hkgname=wl-pprint-terminfo
 pkgname=haskell-wl-pprint-terminfo
 pkgver=3.7.1.4
-pkgrel=14
+pkgrel=15
 pkgdesc="A color pretty printer with terminfo support"
 url="http://github.com/ekmett/wl-pprint-terminfo/;
 license=('custom:BSD3')


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

2017-07-31 Thread Felix Yan
Date: Monday, July 31, 2017 @ 20:57:14
  Author: felixonmars
Revision: 247235

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

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

---+
 community-staging-i686/PKGBUILD   |   53 
 community-staging-x86_64/PKGBUILD |   53 
 2 files changed, 106 insertions(+)

Copied: haskell-hopenpgp/repos/community-staging-i686/PKGBUILD (from rev 
247234, haskell-hopenpgp/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-07-31 20:57:14 UTC (rev 247235)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=hOpenPGP
+pkgname=haskell-hopenpgp
+pkgver=2.5.5
+pkgrel=96
+pkgdesc="Native Haskell implementation of OpenPGP (RFC4880)"
+url="http://floss.scru.org/hOpenPGP/;
+license=('MIT')
+arch=('i686' 'x86_64')
+depends=('ghc' 'haskell-aeson' 'haskell-attoparsec' 'haskell-base16-bytestring'
+ 'haskell-base64-bytestring' 'haskell-bifunctors' 'haskell-byteable' 
'haskell-bzlib'
+ 'haskell-binary-conduit' 'haskell-conduit' 'haskell-conduit-extra' 
'haskell-cryptonite'
+ 'haskell-crypto-cipher-types' 'haskell-data-default-class' 
'haskell-errors'
+ 'haskell-hashable' 'haskell-incremental-parser' 'haskell-ixset-typed' 
'haskell-lens'
+ 'haskell-memory' 'haskell-monad-loops' 'haskell-nettle' 
'haskell-network'
+ 'haskell-network-uri' 'haskell-newtype' 'haskell-openpgp-asciiarmor' 
'haskell-resourcet'
+ 'haskell-securemem' 'haskell-semigroups' 'haskell-split' 
'haskell-text'
+ 'haskell-time-locale-compat' 'haskell-unordered-containers' 
'haskell-wl-pprint-extras'
+ 'haskell-zlib')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+md5sums=('f480201a10f14150adc290c81d38e7b6')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fnetwork-uri
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}

Copied: haskell-hopenpgp/repos/community-staging-x86_64/PKGBUILD (from rev 
247234, haskell-hopenpgp/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-07-31 20:57:14 UTC (rev 247235)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=hOpenPGP
+pkgname=haskell-hopenpgp
+pkgver=2.5.5
+pkgrel=96
+pkgdesc="Native Haskell implementation of OpenPGP (RFC4880)"
+url="http://floss.scru.org/hOpenPGP/;
+license=('MIT')
+arch=('i686' 'x86_64')
+depends=('ghc' 'haskell-aeson' 'haskell-attoparsec' 'haskell-base16-bytestring'
+ 'haskell-base64-bytestring' 'haskell-bifunctors' 'haskell-byteable' 
'haskell-bzlib'
+ 'haskell-binary-conduit' 'haskell-conduit' 'haskell-conduit-extra' 
'haskell-cryptonite'
+ 'haskell-crypto-cipher-types' 'haskell-data-default-class' 
'haskell-errors'
+ 'haskell-hashable' 'haskell-incremental-parser' 'haskell-ixset-typed' 
'haskell-lens'
+ 'haskell-memory' 'haskell-monad-loops' 'haskell-nettle' 
'haskell-network'
+ 'haskell-network-uri' 'haskell-newtype' 'haskell-openpgp-asciiarmor' 
'haskell-resourcet'
+ 'haskell-securemem' 'haskell-semigroups' 'haskell-split' 

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

2017-07-31 Thread Felix Yan
Date: Monday, July 31, 2017 @ 20:56:52
  Author: felixonmars
Revision: 247234

upgpkg: haskell-hopenpgp 2.5.5-96

rebuild with distributive,0.5.3

Modified:
  haskell-hopenpgp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-31 20:47:23 UTC (rev 247233)
+++ PKGBUILD2017-07-31 20:56:52 UTC (rev 247234)
@@ -4,7 +4,7 @@
 _hkgname=hOpenPGP
 pkgname=haskell-hopenpgp
 pkgver=2.5.5
-pkgrel=95
+pkgrel=96
 pkgdesc="Native Haskell implementation of OpenPGP (RFC4880)"
 url="http://floss.scru.org/hOpenPGP/;
 license=('MIT')


[arch-commits] Commit in haskell-wl-pprint-extras/repos (4 files)

2017-07-31 Thread Felix Yan
Date: Monday, July 31, 2017 @ 20:47:23
  Author: felixonmars
Revision: 247233

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  haskell-wl-pprint-extras/repos/community-staging-i686/
  haskell-wl-pprint-extras/repos/community-staging-i686/PKGBUILD
(from rev 247232, haskell-wl-pprint-extras/trunk/PKGBUILD)
  haskell-wl-pprint-extras/repos/community-staging-x86_64/
  haskell-wl-pprint-extras/repos/community-staging-x86_64/PKGBUILD
(from rev 247232, haskell-wl-pprint-extras/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   47 
 community-staging-x86_64/PKGBUILD |   47 
 2 files changed, 94 insertions(+)

Copied: haskell-wl-pprint-extras/repos/community-staging-i686/PKGBUILD (from 
rev 247232, haskell-wl-pprint-extras/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-07-31 20:47:23 UTC (rev 247233)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=wl-pprint-extras
+pkgname=haskell-wl-pprint-extras
+pkgver=3.5.0.5
+pkgrel=15
+pkgdesc="A free monad based on the Wadler/Leijen pretty printer"
+url="http://github.com/ekmett/wl-pprint-extras/;
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+depends=('ghc' 'haskell-semigroups' 'haskell-semigroupoids' 
'haskell-utf8-string' 'haskell-text')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+md5sums=('03a7c3b6700f5c729229c7652a0e85cd')
+
+prepare() {
+sed -i '/nats/d' ${_hkgname}-${pkgver}/${_hkgname}.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}

Copied: haskell-wl-pprint-extras/repos/community-staging-x86_64/PKGBUILD (from 
rev 247232, haskell-wl-pprint-extras/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-07-31 20:47:23 UTC (rev 247233)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=wl-pprint-extras
+pkgname=haskell-wl-pprint-extras
+pkgver=3.5.0.5
+pkgrel=15
+pkgdesc="A free monad based on the Wadler/Leijen pretty printer"
+url="http://github.com/ekmett/wl-pprint-extras/;
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+depends=('ghc' 'haskell-semigroups' 'haskell-semigroupoids' 
'haskell-utf8-string' 'haskell-text')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+md5sums=('03a7c3b6700f5c729229c7652a0e85cd')
+
+prepare() {
+sed -i '/nats/d' ${_hkgname}-${pkgver}/${_hkgname}.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s 

[arch-commits] Commit in haskell-wl-pprint-extras/trunk (PKGBUILD)

2017-07-31 Thread Felix Yan
Date: Monday, July 31, 2017 @ 20:47:01
  Author: felixonmars
Revision: 247232

upgpkg: haskell-wl-pprint-extras 3.5.0.5-15

rebuild with distributive,0.5.3

Modified:
  haskell-wl-pprint-extras/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-31 20:45:39 UTC (rev 247231)
+++ PKGBUILD2017-07-31 20:47:01 UTC (rev 247232)
@@ -4,7 +4,7 @@
 _hkgname=wl-pprint-extras
 pkgname=haskell-wl-pprint-extras
 pkgver=3.5.0.5
-pkgrel=14
+pkgrel=15
 pkgdesc="A free monad based on the Wadler/Leijen pretty printer"
 url="http://github.com/ekmett/wl-pprint-extras/;
 license=('custom:BSD3')


[arch-commits] Commit in haskell-vector-instances/repos (4 files)

2017-07-31 Thread Felix Yan
Date: Monday, July 31, 2017 @ 20:45:39
  Author: felixonmars
Revision: 247231

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  haskell-vector-instances/repos/community-staging-i686/
  haskell-vector-instances/repos/community-staging-i686/PKGBUILD
(from rev 247230, haskell-vector-instances/trunk/PKGBUILD)
  haskell-vector-instances/repos/community-staging-x86_64/
  haskell-vector-instances/repos/community-staging-x86_64/PKGBUILD
(from rev 247230, haskell-vector-instances/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   46 
 community-staging-x86_64/PKGBUILD |   46 
 2 files changed, 92 insertions(+)

Copied: haskell-vector-instances/repos/community-staging-i686/PKGBUILD (from 
rev 247230, haskell-vector-instances/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-07-31 20:45:39 UTC (rev 247231)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=vector-instances
+pkgname=haskell-vector-instances
+pkgver=3.4
+pkgrel=18
+pkgdesc="Orphan Instances for \'Data.Vector\'"
+url="http://github.com/ekmett/vector-instances;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc' "haskell-comonad" "haskell-hashable" "haskell-keys" 
"haskell-pointed"
+ "haskell-semigroupoids" "haskell-semigroups" "haskell-vector")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('1b0246ef0cf8372d61d5c7840d857f49299af2304b5107510377255ed4dd5381')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fhashable
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}

Copied: haskell-vector-instances/repos/community-staging-x86_64/PKGBUILD (from 
rev 247230, haskell-vector-instances/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-07-31 20:45:39 UTC (rev 247231)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=vector-instances
+pkgname=haskell-vector-instances
+pkgver=3.4
+pkgrel=18
+pkgdesc="Orphan Instances for \'Data.Vector\'"
+url="http://github.com/ekmett/vector-instances;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc' "haskell-comonad" "haskell-hashable" "haskell-keys" 
"haskell-pointed"
+ "haskell-semigroupoids" "haskell-semigroups" "haskell-vector")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('1b0246ef0cf8372d61d5c7840d857f49299af2304b5107510377255ed4dd5381')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fhashable
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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 

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

2017-07-31 Thread Felix Yan
Date: Monday, July 31, 2017 @ 20:45:17
  Author: felixonmars
Revision: 247230

upgpkg: haskell-vector-instances 3.4-18

rebuild with distributive,0.5.3

Modified:
  haskell-vector-instances/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-31 20:43:13 UTC (rev 247229)
+++ PKGBUILD2017-07-31 20:45:17 UTC (rev 247230)
@@ -5,7 +5,7 @@
 _hkgname=vector-instances
 pkgname=haskell-vector-instances
 pkgver=3.4
-pkgrel=17
+pkgrel=18
 pkgdesc="Orphan Instances for \'Data.Vector\'"
 url="http://github.com/ekmett/vector-instances;
 license=("custom:BSD3")


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

2017-07-31 Thread Felix Yan
Date: Monday, July 31, 2017 @ 20:43:13
  Author: felixonmars
Revision: 247229

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  idris/repos/community-staging-i686/
  idris/repos/community-staging-i686/PKGBUILD
(from rev 247228, idris/trunk/PKGBUILD)
  idris/repos/community-staging-x86_64/
  idris/repos/community-staging-x86_64/PKGBUILD
(from rev 247228, idris/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   56 
 community-staging-x86_64/PKGBUILD |   56 
 2 files changed, 112 insertions(+)

Copied: idris/repos/community-staging-i686/PKGBUILD (from rev 247228, 
idris/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-07-31 20:43:13 UTC (rev 247229)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=idris
+pkgver=1.0
+pkgrel=50
+pkgdesc="Functional Programming Language with Dependent Types"
+url="http://www.idris-lang.org/;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc' "haskell-aeson" "haskell-annotated-wl-pprint" 
"haskell-ansi-terminal"
+ "haskell-ansi-wl-pprint" "haskell-async" "haskell-base64-bytestring" 
"haskell-blaze-html"
+ "haskell-blaze-markup" "haskell-cheapskate" "haskell-code-page" 
"haskell-fingertree"
+ "haskell-fsnotify" "haskell-ieee754" "haskell-mtl" "haskell-libffi" 
"haskell-network"
+ "haskell-optparse-applicative" "haskell-parsers" "haskell-regex-tdfa" 
"haskell-safe"
+ "haskell-split" "haskell-terminal-size" "haskell-text" 
"haskell-transformers-compat"
+ "haskell-trifecta" "haskell-uniplate" "haskell-unordered-containers" 
"haskell-utf8-string"
+ "haskell-vector" "haskell-vector-binary-instances" 
"haskell-zip-archive")
+source=("$pkgname-$pkgver.tar.gz::https://github.com/idris-lang/Idris-dev/archive/v$pkgver.tar.gz;)
+sha512sums=('a350004a8510f01d1cc8f965a9a4e2dab219f003980b98354ebb5ae42f73b32c90c98dce193943e9709d994cb92ad35814a46b79412a1afc85d42e1018c6ba10')
+
+prepare() {
+sed -i '1ioverride IDRIS := env LD_PRELOAD=$(shell ls 
../../dist/build/libHSidris-*-ghc*.so) $(IDRIS)' \
+Idris-dev-$pkgver/libs/*/Makefile
+}
+
+build() {
+cd "$srcdir"/Idris-dev-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fFFI -fGMP -frelease -f-freestanding -f-CI -f-execonly
+LC_CTYPE=en_US.UTF-8 runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"/Idris-dev-$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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${pkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}

Copied: idris/repos/community-staging-x86_64/PKGBUILD (from rev 247228, 
idris/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-07-31 20:43:13 UTC (rev 247229)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=idris
+pkgver=1.0
+pkgrel=50
+pkgdesc="Functional Programming Language with Dependent Types"
+url="http://www.idris-lang.org/;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc' "haskell-aeson" "haskell-annotated-wl-pprint" 
"haskell-ansi-terminal"
+ "haskell-ansi-wl-pprint" "haskell-async" "haskell-base64-bytestring" 
"haskell-blaze-html"
+ "haskell-blaze-markup" "haskell-cheapskate" "haskell-code-page" 
"haskell-fingertree"
+ "haskell-fsnotify" "haskell-ieee754" "haskell-mtl" "haskell-libffi" 
"haskell-network"
+ "haskell-optparse-applicative" "haskell-parsers" "haskell-regex-tdfa" 
"haskell-safe"
+ "haskell-split" 

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

2017-07-31 Thread Felix Yan
Date: Monday, July 31, 2017 @ 20:42:50
  Author: felixonmars
Revision: 247228

upgpkg: idris 1.0-50

rebuild with distributive,0.5.3

Modified:
  idris/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-31 19:52:08 UTC (rev 247227)
+++ PKGBUILD2017-07-31 20:42:50 UTC (rev 247228)
@@ -4,7 +4,7 @@
 
 pkgname=idris
 pkgver=1.0
-pkgrel=49
+pkgrel=50
 pkgdesc="Functional Programming Language with Dependent Types"
 url="http://www.idris-lang.org/;
 license=("custom:BSD3")


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

2017-07-31 Thread Jan Steffens
Date: Monday, July 31, 2017 @ 20:09:30
  Author: heftig
Revision: 301443

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  brasero/repos/extra-i686/PKGBUILD
(from rev 301442, brasero/trunk/PKGBUILD)
  brasero/repos/extra-x86_64/PKGBUILD
(from rev 301442, brasero/trunk/PKGBUILD)
Deleted:
  brasero/repos/extra-i686/PKGBUILD
  brasero/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |   98 
 extra-i686/PKGBUILD   |   43 -
 extra-x86_64/PKGBUILD |   43 -
 3 files changed, 98 insertions(+), 86 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-07-31 20:08:24 UTC (rev 301442)
+++ extra-i686/PKGBUILD 2017-07-31 20:09:30 UTC (rev 301443)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae 
-# Maintainer: Jan de Groot 
-# Contributor: William Rea 
-
-pkgname=brasero
-pkgver=3.12.1
-pkgrel=2
-pkgdesc="CD/DVD mastering tool"
-arch=(i686 x86_64)
-url="https://wiki.gnome.org/Apps/Brasero;
-license=(GPL)
-options=(!emptydirs)
-depends=(gtk3 gst-plugins-good totem-plparser cdrkit cdrdao shared-mime-info 
libcanberra
- dvd+rw-tools dconf libsm libtracker-sparql libnotify gvfs)
-makedepends=(gtk-doc yelp-tools gnome-common intltool libburn libisofs 
libnautilus-extension
- gobject-introspection gconf itstool docbook-xsl)
-optdepends=('libburn: alternative back-end'
-'libisofs: libburn back-end'
-'dvdauthor: video project'
-'vcdimager: video project')
-replaces=(nautilus-cd-burner)
-groups=(gnome-extra)
-source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('9a5eea53e57b66de3c7c8c2393ac21a58d5afa81c6cfb16b3c7f010a3d147127')
-
-prepare() {
-  cd $pkgname-$pkgver
-  autoreconf -fi
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---disable-caches --disable-schemas-compile 
--enable-compile-warnings=minimum
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}
-

Copied: brasero/repos/extra-i686/PKGBUILD (from rev 301442, 
brasero/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-07-31 20:09:30 UTC (rev 301443)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Allan McRae 
+# Maintainer: Jan de Groot 
+# Contributor: William Rea 
+
+pkgname=brasero
+pkgver=3.12.2
+pkgrel=1
+pkgdesc="CD/DVD mastering tool"
+url="https://wiki.gnome.org/Apps/Brasero;
+arch=(i686 x86_64)
+license=(GPL)
+depends=(gtk3 gst-plugins-good totem-plparser cdrkit cdrdao shared-mime-info 
libcanberra
+ dvd+rw-tools dconf libsm libtracker-sparql libnotify gvfs)
+makedepends=(gtk-doc yelp-tools gnome-common intltool libburn libisofs 
libnautilus-extension
+ gobject-introspection gconf itstool docbook-xsl git)
+optdepends=('libburn: alternative back-end'
+'libisofs: libburn back-end'
+'dvdauthor: video project'
+'vcdimager: video project')
+groups=(gnome-extra)
+_commit=f0c7ac25f7e01a608f74111e64ff196fb470ed9f  # tags/3.12.2^0
+source=("git+https://git.gnome.org/browse/brasero#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 --sysconfdir=/etc --localstatedir=/var \
+--disable-caches --disable-schemas-compile 
--enable-compile-warnings=minimum \
+--enable-gtk-doc
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR=$pkgdir install
+}
+

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2017-07-31 20:08:24 UTC (rev 301442)
+++ extra-x86_64/PKGBUILD   2017-07-31 20:09:30 UTC (rev 301443)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae 
-# Maintainer: Jan de Groot 
-# Contributor: William Rea 
-
-pkgname=brasero
-pkgver=3.12.1
-pkgrel=2
-pkgdesc="CD/DVD mastering tool"
-arch=(i686 x86_64)
-url="https://wiki.gnome.org/Apps/Brasero;
-license=(GPL)
-options=(!emptydirs)
-depends=(gtk3 gst-plugins-good totem-plparser cdrkit cdrdao shared-mime-info 
libcanberra
- dvd+rw-tools dconf libsm libtracker-sparql libnotify gvfs)
-makedepends=(gtk-doc yelp-tools gnome-common intltool libburn libisofs 
libnautilus-extension
- gobject-introspection gconf itstool docbook-xsl)
-optdepends=('libburn: alternative back-end'
-'libisofs: libburn 

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

2017-07-31 Thread Jan Steffens
Date: Monday, July 31, 2017 @ 20:08:24
  Author: heftig
Revision: 301442

3.12.2-1

Modified:
  brasero/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-31 18:40:44 UTC (rev 301441)
+++ PKGBUILD2017-07-31 20:08:24 UTC (rev 301442)
@@ -4,40 +4,46 @@
 # Contributor: William Rea 
 
 pkgname=brasero
-pkgver=3.12.1
-pkgrel=2
+pkgver=3.12.2
+pkgrel=1
 pkgdesc="CD/DVD mastering tool"
+url="https://wiki.gnome.org/Apps/Brasero;
 arch=(i686 x86_64)
-url="https://wiki.gnome.org/Apps/Brasero;
 license=(GPL)
-options=(!emptydirs)
 depends=(gtk3 gst-plugins-good totem-plparser cdrkit cdrdao shared-mime-info 
libcanberra
  dvd+rw-tools dconf libsm libtracker-sparql libnotify gvfs)
 makedepends=(gtk-doc yelp-tools gnome-common intltool libburn libisofs 
libnautilus-extension
- gobject-introspection gconf itstool docbook-xsl)
+ gobject-introspection gconf itstool docbook-xsl git)
 optdepends=('libburn: alternative back-end'
 'libisofs: libburn back-end'
 'dvdauthor: video project'
 'vcdimager: video project')
-replaces=(nautilus-cd-burner)
 groups=(gnome-extra)
-source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('9a5eea53e57b66de3c7c8c2393ac21a58d5afa81c6cfb16b3c7f010a3d147127')
+_commit=f0c7ac25f7e01a608f74111e64ff196fb470ed9f  # tags/3.12.2^0
+source=("git+https://git.gnome.org/browse/brasero#commit=$_commit;)
+sha256sums=('SKIP')
 
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
 prepare() {
-  cd $pkgname-$pkgver
-  autoreconf -fi
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
 }
 
 build() {
-  cd $pkgname-$pkgver
+  cd $pkgname
   ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---disable-caches --disable-schemas-compile 
--enable-compile-warnings=minimum
+--disable-caches --disable-schemas-compile 
--enable-compile-warnings=minimum \
+--enable-gtk-doc
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
   make
 }
 
 package() {
-  cd $pkgname-$pkgver
+  cd $pkgname
   make DESTDIR=$pkgdir install
 }
 


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

2017-07-31 Thread Felix Yan
Date: Monday, July 31, 2017 @ 19:52:08
  Author: felixonmars
Revision: 247227

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  haskell-trifecta/repos/community-staging-i686/
  haskell-trifecta/repos/community-staging-i686/PKGBUILD
(from rev 247226, haskell-trifecta/trunk/PKGBUILD)
  haskell-trifecta/repos/community-staging-x86_64/
  haskell-trifecta/repos/community-staging-x86_64/PKGBUILD
(from rev 247226, haskell-trifecta/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   48 
 community-staging-x86_64/PKGBUILD |   48 
 2 files changed, 96 insertions(+)

Copied: haskell-trifecta/repos/community-staging-i686/PKGBUILD (from rev 
247226, haskell-trifecta/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-07-31 19:52:08 UTC (rev 247227)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=trifecta
+pkgname=haskell-trifecta
+pkgver=1.6.2.1
+pkgrel=35
+pkgdesc="A modern parser combinator library with convenient diagnostics"
+url="http://github.com/ekmett/trifecta/;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc' "haskell-ansi-terminal" "haskell-ansi-wl-pprint" 
"haskell-blaze-builder"
+ "haskell-blaze-html" "haskell-blaze-markup" "haskell-charset" 
"haskell-comonad"
+ "haskell-fingertree" "haskell-hashable" "haskell-lens" "haskell-mtl" 
"haskell-parsers"
+ "haskell-profunctors" "haskell-reducers" "haskell-semigroups" 
"haskell-unordered-containers"
+ "haskell-utf8-string")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('bab3724de8ed4f5283deb99013debf2e223e9e2c3c975e7d9b9bd44a9b30fbe5')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}

Copied: haskell-trifecta/repos/community-staging-x86_64/PKGBUILD (from rev 
247226, haskell-trifecta/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-07-31 19:52:08 UTC (rev 247227)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=trifecta
+pkgname=haskell-trifecta
+pkgver=1.6.2.1
+pkgrel=35
+pkgdesc="A modern parser combinator library with convenient diagnostics"
+url="http://github.com/ekmett/trifecta/;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc' "haskell-ansi-terminal" "haskell-ansi-wl-pprint" 
"haskell-blaze-builder"
+ "haskell-blaze-html" "haskell-blaze-markup" "haskell-charset" 
"haskell-comonad"
+ "haskell-fingertree" "haskell-hashable" "haskell-lens" "haskell-mtl" 
"haskell-parsers"
+ "haskell-profunctors" "haskell-reducers" "haskell-semigroups" 
"haskell-unordered-containers"
+ "haskell-utf8-string")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('bab3724de8ed4f5283deb99013debf2e223e9e2c3c975e7d9b9bd44a9b30fbe5')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup 

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

2017-07-31 Thread Felix Yan
Date: Monday, July 31, 2017 @ 19:51:45
  Author: felixonmars
Revision: 247226

upgpkg: haskell-trifecta 1.6.2.1-35

rebuild with distributive,0.5.3

Modified:
  haskell-trifecta/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-31 19:48:32 UTC (rev 247225)
+++ PKGBUILD2017-07-31 19:51:45 UTC (rev 247226)
@@ -5,7 +5,7 @@
 _hkgname=trifecta
 pkgname=haskell-trifecta
 pkgver=1.6.2.1
-pkgrel=34
+pkgrel=35
 pkgdesc="A modern parser combinator library with convenient diagnostics"
 url="http://github.com/ekmett/trifecta/;
 license=("custom:BSD3")


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

2017-07-31 Thread Felix Yan
Date: Monday, July 31, 2017 @ 19:48:32
  Author: felixonmars
Revision: 247225

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  git-annex/repos/community-staging-i686/
  git-annex/repos/community-staging-i686/PKGBUILD
(from rev 247224, git-annex/trunk/PKGBUILD)
  git-annex/repos/community-staging-i686/quickcheck-2.10.patch
(from rev 247224, git-annex/trunk/quickcheck-2.10.patch)
  git-annex/repos/community-staging-x86_64/
  git-annex/repos/community-staging-x86_64/PKGBUILD
(from rev 247224, git-annex/trunk/PKGBUILD)
  git-annex/repos/community-staging-x86_64/quickcheck-2.10.patch
(from rev 247224, git-annex/trunk/quickcheck-2.10.patch)

+
 community-staging-i686/PKGBUILD|   60 ++
 community-staging-i686/quickcheck-2.10.patch   |   75 +++
 community-staging-x86_64/PKGBUILD  |   60 ++
 community-staging-x86_64/quickcheck-2.10.patch |   75 +++
 4 files changed, 270 insertions(+)

Copied: git-annex/repos/community-staging-i686/PKGBUILD (from rev 247224, 
git-annex/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-07-31 19:48:32 UTC (rev 247225)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=git-annex
+pkgver=6.20170520
+pkgrel=43
+pkgdesc="Manage files with git, without checking their contents into git"
+url="http://git-annex.branchable.com/;
+license=("AGPL3")
+arch=('i686' 'x86_64')
+depends=('git' 'rsync' 'ghc' "haskell-aeson" "haskell-async" "haskell-aws" 
"haskell-blaze-builder"
+ "haskell-bloomfilter" "haskell-byteable" "haskell-case-insensitive" 
"haskell-clientsession"
+ "haskell-concurrent-output" "haskell-conduit" "haskell-crypto-api" 
"haskell-cryptonite"
+ "haskell-data-default" "haskell-dav" "haskell-dbus" 
"haskell-disk-free-space"
+ "haskell-dlist" "haskell-dns" "haskell-edit-distance" 
"haskell-esqueleto"
+ "haskell-exceptions" "haskell-fdo-notify" "haskell-feed" 
"haskell-hinotify"
+ "haskell-hslogger" "haskell-http-client" "haskell-http-conduit" 
"haskell-http-types"
+ "haskell-ifelse" "haskell-magic" "haskell-memory" 
"haskell-monad-control"
+ "haskell-monad-logger" "haskell-mountpoints" "haskell-mtl" 
"haskell-network"
+ "haskell-network-info" "haskell-network-multicast" 
"haskell-network-uri"
+ "haskell-old-locale" "haskell-optparse-applicative" 
"haskell-path-pieces"
+ "haskell-persistent" "haskell-persistent-sqlite" 
"haskell-persistent-template"
+ "haskell-quickcheck" "haskell-random" "haskell-regex-tdfa" 
"haskell-resourcet"
+ "haskell-safesemaphore" "haskell-sandi" "haskell-securemem" 
"haskell-shakespeare"
+ "haskell-socks" "haskell-split" "haskell-stm" "haskell-stm-chans" 
"haskell-tasty"
+ "haskell-tasty-hunit" "haskell-tasty-quickcheck" 
"haskell-tasty-rerun" "haskell-text"
+ "haskell-torrent" "haskell-unix-compat" "haskell-unordered-containers"
+ "haskell-utf8-string" "haskell-uuid" "haskell-wai" 
"haskell-wai-extra" "haskell-warp"
+ "haskell-warp-tls" "haskell-yesod" "haskell-yesod-core" 
"haskell-yesod-default"
+ "haskell-yesod-form" "haskell-yesod-static")
+makedepends=("chrpath")
+source=("git+https://git.joeyh.name/git/git-annex.git#tag=$pkgver;
+quickcheck-2.10.patch)
+sha512sums=('SKIP'
+
'a987bb49072fa27bdbb061bffa9174e75c1e7cfa1e139945465262557c1bd31832373e2684d9ff83b682dcb6b5cfdf2f40e86a8cedf118fb768f9c5827318f4c')
+
+prepare() {
+  cd git-annex
+  patch -p1 -i ../quickcheck-2.10.patch
+}
+
+build() {
+  cd git-annex
+  
+  runhaskell Setup configure -O --prefix=/usr --enable-executable-dynamic 
--docdir="/usr/share/doc/$pkgname" \
+-fnetwork-uri -fconcurrentoutput -ftorrentparser \
+-ftestsuite -f-androidsplice -f-android -fproduction -fpairing -fwebapp \
+-fassistant -fwebdav -fs3 -f-benchmark -fdbus -fmagicmime
+  runhaskell Setup build
+}
+
+package() {
+  cd git-annex
+  runhaskell Setup copy --destdir="$pkgdir"
+  make GHC="ghc -dynamic" BUILDER=true DESTDIR="$pkgdir" install-misc
+
+  rm "$pkgdir"/usr/share/doc/git-annex/COPYRIGHT
+  rmdir "$pkgdir"/usr/share/doc/git-annex "$pkgdir"/usr/share/doc
+}

Copied: git-annex/repos/community-staging-i686/quickcheck-2.10.patch (from rev 
247224, git-annex/trunk/quickcheck-2.10.patch)
===
--- community-staging-i686/quickcheck-2.10.patch
(rev 0)
+++ community-staging-i686/quickcheck-2.10.patch2017-07-31 19:48:32 UTC 
(rev 247225)
@@ -0,0 +1,75 @@
+From 

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

2017-07-31 Thread Felix Yan
Date: Monday, July 31, 2017 @ 19:48:09
  Author: felixonmars
Revision: 247224

upgpkg: git-annex 6.20170520-43

rebuild with distributive,0.5.3

Modified:
  git-annex/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-31 19:36:12 UTC (rev 247223)
+++ PKGBUILD2017-07-31 19:48:09 UTC (rev 247224)
@@ -4,7 +4,7 @@
 
 pkgname=git-annex
 pkgver=6.20170520
-pkgrel=42
+pkgrel=43
 pkgdesc="Manage files with git, without checking their contents into git"
 url="http://git-annex.branchable.com/;
 license=("AGPL3")


[arch-commits] Commit in haskell-tasty-rerun/repos (4 files)

2017-07-31 Thread Felix Yan
Date: Monday, July 31, 2017 @ 19:36:12
  Author: felixonmars
Revision: 247223

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  haskell-tasty-rerun/repos/community-staging-i686/
  haskell-tasty-rerun/repos/community-staging-i686/PKGBUILD
(from rev 247222, haskell-tasty-rerun/trunk/PKGBUILD)
  haskell-tasty-rerun/repos/community-staging-x86_64/
  haskell-tasty-rerun/repos/community-staging-x86_64/PKGBUILD
(from rev 247222, haskell-tasty-rerun/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   45 
 community-staging-x86_64/PKGBUILD |   45 
 2 files changed, 90 insertions(+)

Copied: haskell-tasty-rerun/repos/community-staging-i686/PKGBUILD (from rev 
247222, haskell-tasty-rerun/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-07-31 19:36:12 UTC (rev 247223)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=tasty-rerun
+pkgname=haskell-tasty-rerun
+pkgver=1.1.7
+pkgrel=3
+pkgdesc="Run tests by filtering the test tree depending on the result of 
previous test runs"
+url="http://github.com/ocharles/tasty-rerun;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc' "haskell-mtl" "haskell-optparse-applicative" "haskell-reducers"
+ "haskell-split" "haskell-stm" "haskell-tagged" "haskell-tasty")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('a5cc64b8981b8dcd64682927b35ff25d5e0477d152acb4f8fc6cb20b2d506a1edc51c3cf79a0f5cbfe4525e88974e9c5f6c80050db4d0ddb77f59b61a402badb')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}

Copied: haskell-tasty-rerun/repos/community-staging-x86_64/PKGBUILD (from rev 
247222, haskell-tasty-rerun/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-07-31 19:36:12 UTC (rev 247223)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=tasty-rerun
+pkgname=haskell-tasty-rerun
+pkgver=1.1.7
+pkgrel=3
+pkgdesc="Run tests by filtering the test tree depending on the result of 
previous test runs"
+url="http://github.com/ocharles/tasty-rerun;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc' "haskell-mtl" "haskell-optparse-applicative" "haskell-reducers"
+ "haskell-split" "haskell-stm" "haskell-tagged" "haskell-tasty")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('a5cc64b8981b8dcd64682927b35ff25d5e0477d152acb4f8fc6cb20b2d506a1edc51c3cf79a0f5cbfe4525e88974e9c5f6c80050db4d0ddb77f59b61a402badb')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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 

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

2017-07-31 Thread Felix Yan
Date: Monday, July 31, 2017 @ 19:35:50
  Author: felixonmars
Revision: 247222

upgpkg: haskell-tasty-rerun 1.1.7-3

rebuild with distributive,0.5.3

Modified:
  haskell-tasty-rerun/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-31 19:34:28 UTC (rev 247221)
+++ PKGBUILD2017-07-31 19:35:50 UTC (rev 247222)
@@ -5,7 +5,7 @@
 _hkgname=tasty-rerun
 pkgname=haskell-tasty-rerun
 pkgver=1.1.7
-pkgrel=2
+pkgrel=3
 pkgdesc="Run tests by filtering the test tree depending on the result of 
previous test runs"
 url="http://github.com/ocharles/tasty-rerun;
 license=("custom:BSD3")


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

2017-07-31 Thread Felix Yan
Date: Monday, July 31, 2017 @ 19:34:05
  Author: felixonmars
Revision: 247220

upgpkg: haskell-reducers 3.12.1-35

rebuild with distributive,0.5.3

Modified:
  haskell-reducers/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-31 19:32:36 UTC (rev 247219)
+++ PKGBUILD2017-07-31 19:34:05 UTC (rev 247220)
@@ -5,7 +5,7 @@
 _hkgname=reducers
 pkgname=haskell-reducers
 pkgver=3.12.1
-pkgrel=34
+pkgrel=35
 pkgdesc="Semigroups, specialized containers and a general map/reduce framework"
 url="http://github.com/ekmett/reducers/;
 license=("custom:BSD3")


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

2017-07-31 Thread Felix Yan
Date: Monday, July 31, 2017 @ 19:34:28
  Author: felixonmars
Revision: 247221

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  haskell-reducers/repos/community-staging-i686/
  haskell-reducers/repos/community-staging-i686/PKGBUILD
(from rev 247220, haskell-reducers/trunk/PKGBUILD)
  haskell-reducers/repos/community-staging-x86_64/
  haskell-reducers/repos/community-staging-x86_64/PKGBUILD
(from rev 247220, haskell-reducers/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   49 
 community-staging-x86_64/PKGBUILD |   49 
 2 files changed, 98 insertions(+)

Copied: haskell-reducers/repos/community-staging-i686/PKGBUILD (from rev 
247220, haskell-reducers/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-07-31 19:34:28 UTC (rev 247221)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=reducers
+pkgname=haskell-reducers
+pkgver=3.12.1
+pkgrel=35
+pkgdesc="Semigroups, specialized containers and a general map/reduce framework"
+url="http://github.com/ekmett/reducers/;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc' "haskell-fingertree" "haskell-hashable" "haskell-semigroupoids" 
"haskell-semigroups"
+ "haskell-text" "haskell-unordered-containers")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('e43bb7678272691a358c049daecbac715c4b0fcece021c6b2ac7b2a1c16b6d5e')
+
+prepare() {
+sed -i 's/transformers   >= 0.2  && < 0.5,/transformers
   >= 0.2  \&\& < 0.6,/' ${_hkgname}-${pkgver}/${_hkgname}.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}

Copied: haskell-reducers/repos/community-staging-x86_64/PKGBUILD (from rev 
247220, haskell-reducers/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-07-31 19:34:28 UTC (rev 247221)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=reducers
+pkgname=haskell-reducers
+pkgver=3.12.1
+pkgrel=35
+pkgdesc="Semigroups, specialized containers and a general map/reduce framework"
+url="http://github.com/ekmett/reducers/;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc' "haskell-fingertree" "haskell-hashable" "haskell-semigroupoids" 
"haskell-semigroups"
+ "haskell-text" "haskell-unordered-containers")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('e43bb7678272691a358c049daecbac715c4b0fcece021c6b2ac7b2a1c16b6d5e')
+
+prepare() {
+sed -i 's/transformers   >= 0.2  && < 0.5,/transformers
   >= 0.2  \&\& < 0.6,/' ${_hkgname}-${pkgver}/${_hkgname}.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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 

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

2017-07-31 Thread Felix Yan
Date: Monday, July 31, 2017 @ 19:32:36
  Author: felixonmars
Revision: 247219

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  haskell-pointed/repos/community-staging-i686/
  haskell-pointed/repos/community-staging-i686/PKGBUILD
(from rev 247218, haskell-pointed/trunk/PKGBUILD)
  haskell-pointed/repos/community-staging-x86_64/
  haskell-pointed/repos/community-staging-x86_64/PKGBUILD
(from rev 247218, haskell-pointed/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   52 
 community-staging-x86_64/PKGBUILD |   52 
 2 files changed, 104 insertions(+)

Copied: haskell-pointed/repos/community-staging-i686/PKGBUILD (from rev 247218, 
haskell-pointed/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-07-31 19:32:36 UTC (rev 247219)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=pointed
+pkgname=haskell-pointed
+pkgver=5
+pkgrel=41
+pkgdesc="Pointed and copointed data"
+url="http://github.com/ekmett/pointed/;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc' "haskell-comonad" "haskell-data-default-class" 
"haskell-hashable"
+ "haskell-kan-extensions" "haskell-semigroupoids" "haskell-semigroups" 
"haskell-stm"
+ "haskell-tagged" "haskell-transformers-compat" 
"haskell-unordered-containers")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('8906b8af5125ab3376794a290c5484dbec5a35d0bd0a57e94392ec0e12535d17')
+
+prepare() {
+sed -i 's/data-default-class >= 0.0.1 && < 0.1/data-default-class >= 0.0.1 
\&\& < 0.2/' ${_hkgname}-${pkgver}/${_hkgname}.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fcomonad -fcontainers -fkan-extensions -fsemigroupoids 
-fsemigroups \
+-fstm -ftagged -ftransformers -funordered-containers
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}

Copied: haskell-pointed/repos/community-staging-x86_64/PKGBUILD (from rev 
247218, haskell-pointed/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-07-31 19:32:36 UTC (rev 247219)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=pointed
+pkgname=haskell-pointed
+pkgver=5
+pkgrel=41
+pkgdesc="Pointed and copointed data"
+url="http://github.com/ekmett/pointed/;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc' "haskell-comonad" "haskell-data-default-class" 
"haskell-hashable"
+ "haskell-kan-extensions" "haskell-semigroupoids" "haskell-semigroups" 
"haskell-stm"
+ "haskell-tagged" "haskell-transformers-compat" 
"haskell-unordered-containers")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('8906b8af5125ab3376794a290c5484dbec5a35d0bd0a57e94392ec0e12535d17')
+
+prepare() {
+sed -i 's/data-default-class >= 0.0.1 && < 0.1/data-default-class >= 0.0.1 
\&\& < 0.2/' ${_hkgname}-${pkgver}/${_hkgname}.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fcomonad 

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

2017-07-31 Thread Felix Yan
Date: Monday, July 31, 2017 @ 19:32:12
  Author: felixonmars
Revision: 247218

upgpkg: haskell-pointed 5-41

rebuild with distributive,0.5.3

Modified:
  haskell-pointed/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-31 19:30:52 UTC (rev 247217)
+++ PKGBUILD2017-07-31 19:32:12 UTC (rev 247218)
@@ -5,7 +5,7 @@
 _hkgname=pointed
 pkgname=haskell-pointed
 pkgver=5
-pkgrel=40
+pkgrel=41
 pkgdesc="Pointed and copointed data"
 url="http://github.com/ekmett/pointed/;
 license=("custom:BSD3")


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

2017-07-31 Thread Felix Yan
Date: Monday, July 31, 2017 @ 19:30:52
  Author: felixonmars
Revision: 247217

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  hledger-api/repos/community-staging-i686/
  hledger-api/repos/community-staging-i686/PKGBUILD
(from rev 247216, hledger-api/trunk/PKGBUILD)
  hledger-api/repos/community-staging-x86_64/
  hledger-api/repos/community-staging-x86_64/PKGBUILD
(from rev 247216, hledger-api/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   30 ++
 community-staging-x86_64/PKGBUILD |   30 ++
 2 files changed, 60 insertions(+)

Copied: hledger-api/repos/community-staging-i686/PKGBUILD (from rev 247216, 
hledger-api/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-07-31 19:30:52 UTC (rev 247217)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hledger-api
+pkgver=1.3
+pkgrel=17
+pkgdesc="Web API server for the hledger accounting tool"
+url="http://hledger.org;
+license=("GPL")
+arch=('i686' 'x86_64')
+depends=('ghc' 'hledger' "haskell-hledger-lib" "haskell-aeson" 
"haskell-decimal" "haskell-docopt"
+ "haskell-either" "haskell-microlens" "haskell-microlens-platform" 
"haskell-safe"
+ "haskell-servant-server" "haskell-servant-swagger" "haskell-swagger2" 
"haskell-text"
+ "haskell-wai" "haskell-wai-extra" "haskell-warp")
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('1349f1943afcf7f2bb4000fde580ef48f7f55ecd604c6d1df161449df6ffa00714e06b7ba10b77f07056eeb0711eada1a91559a7606062f83f8f3d4e830ede20')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup configure -O --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname"
+runhaskell Setup build
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: hledger-api/repos/community-staging-x86_64/PKGBUILD (from rev 247216, 
hledger-api/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-07-31 19:30:52 UTC (rev 247217)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hledger-api
+pkgver=1.3
+pkgrel=17
+pkgdesc="Web API server for the hledger accounting tool"
+url="http://hledger.org;
+license=("GPL")
+arch=('i686' 'x86_64')
+depends=('ghc' 'hledger' "haskell-hledger-lib" "haskell-aeson" 
"haskell-decimal" "haskell-docopt"
+ "haskell-either" "haskell-microlens" "haskell-microlens-platform" 
"haskell-safe"
+ "haskell-servant-server" "haskell-servant-swagger" "haskell-swagger2" 
"haskell-text"
+ "haskell-wai" "haskell-wai-extra" "haskell-warp")
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('1349f1943afcf7f2bb4000fde580ef48f7f55ecd604c6d1df161449df6ffa00714e06b7ba10b77f07056eeb0711eada1a91559a7606062f83f8f3d4e830ede20')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup configure -O --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname"
+runhaskell Setup build
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2017-07-31 Thread Felix Yan
Date: Monday, July 31, 2017 @ 19:30:30
  Author: felixonmars
Revision: 247216

upgpkg: hledger-api 1.3-17

rebuild with distributive,0.5.3

Modified:
  hledger-api/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-31 19:27:53 UTC (rev 247215)
+++ PKGBUILD2017-07-31 19:30:30 UTC (rev 247216)
@@ -4,7 +4,7 @@
 
 pkgname=hledger-api
 pkgver=1.3
-pkgrel=16
+pkgrel=17
 pkgdesc="Web API server for the hledger accounting tool"
 url="http://hledger.org;
 license=("GPL")


[arch-commits] Commit in haskell-servant-swagger/repos (4 files)

2017-07-31 Thread Felix Yan
Date: Monday, July 31, 2017 @ 19:27:53
  Author: felixonmars
Revision: 247215

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  haskell-servant-swagger/repos/community-staging-i686/
  haskell-servant-swagger/repos/community-staging-i686/PKGBUILD
(from rev 247214, haskell-servant-swagger/trunk/PKGBUILD)
  haskell-servant-swagger/repos/community-staging-x86_64/
  haskell-servant-swagger/repos/community-staging-x86_64/PKGBUILD
(from rev 247214, haskell-servant-swagger/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   46 
 community-staging-x86_64/PKGBUILD |   46 
 2 files changed, 92 insertions(+)

Copied: haskell-servant-swagger/repos/community-staging-i686/PKGBUILD (from rev 
247214, haskell-servant-swagger/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-07-31 19:27:53 UTC (rev 247215)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=servant-swagger
+pkgname=haskell-servant-swagger
+pkgver=1.1.3.1
+pkgrel=5
+pkgdesc="Generate Swagger specification for your servant API."
+url="https://github.com/haskell-servant/servant-swagger;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc' "haskell-aeson" "haskell-http-media" 
"haskell-insert-ordered-containers"
+ "haskell-lens" "haskell-servant" "haskell-swagger2" "haskell-text"
+ "haskell-unordered-containers" "haskell-hspec" "haskell-quickcheck")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('ad4acada55a6474dd506f411fa7bc0f79f8acaa71ece1ca26d71bd95e6b6fca68d168cee578a476f0f2f9d450a0bf19f129ce2d4f149494f4b5ad032543f1a86')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}

Copied: haskell-servant-swagger/repos/community-staging-x86_64/PKGBUILD (from 
rev 247214, haskell-servant-swagger/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-07-31 19:27:53 UTC (rev 247215)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=servant-swagger
+pkgname=haskell-servant-swagger
+pkgver=1.1.3.1
+pkgrel=5
+pkgdesc="Generate Swagger specification for your servant API."
+url="https://github.com/haskell-servant/servant-swagger;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc' "haskell-aeson" "haskell-http-media" 
"haskell-insert-ordered-containers"
+ "haskell-lens" "haskell-servant" "haskell-swagger2" "haskell-text"
+ "haskell-unordered-containers" "haskell-hspec" "haskell-quickcheck")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('ad4acada55a6474dd506f411fa7bc0f79f8acaa71ece1ca26d71bd95e6b6fca68d168cee578a476f0f2f9d450a0bf19f129ce2d4f149494f4b5ad032543f1a86')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* 

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

2017-07-31 Thread Felix Yan
Date: Monday, July 31, 2017 @ 19:27:31
  Author: felixonmars
Revision: 247214

upgpkg: haskell-servant-swagger 1.1.3.1-5

rebuild with distributive,0.5.3

Modified:
  haskell-servant-swagger/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-31 19:25:34 UTC (rev 247213)
+++ PKGBUILD2017-07-31 19:27:31 UTC (rev 247214)
@@ -5,7 +5,7 @@
 _hkgname=servant-swagger
 pkgname=haskell-servant-swagger
 pkgver=1.1.3.1
-pkgrel=4
+pkgrel=5
 pkgdesc="Generate Swagger specification for your servant API."
 url="https://github.com/haskell-servant/servant-swagger;
 license=("custom:BSD3")


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

2017-07-31 Thread Felix Yan
Date: Monday, July 31, 2017 @ 19:25:34
  Author: felixonmars
Revision: 247213

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  haskell-swagger2/repos/community-staging-i686/
  haskell-swagger2/repos/community-staging-i686/PKGBUILD
(from rev 247212, haskell-swagger2/trunk/PKGBUILD)
  haskell-swagger2/repos/community-staging-x86_64/
  haskell-swagger2/repos/community-staging-x86_64/PKGBUILD
(from rev 247212, haskell-swagger2/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   47 
 community-staging-x86_64/PKGBUILD |   47 
 2 files changed, 94 insertions(+)

Copied: haskell-swagger2/repos/community-staging-i686/PKGBUILD (from rev 
247212, haskell-swagger2/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-07-31 19:25:34 UTC (rev 247213)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=swagger2
+pkgname=haskell-swagger2
+pkgver=2.1.4.1
+pkgrel=5
+pkgdesc="Swagger 2.0 data model"
+url="https://github.com/GetShopTV/swagger2;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc' "haskell-aeson" "haskell-base-compat" "haskell-hashable" 
"haskell-generics-sop"
+ "haskell-http-media" "haskell-insert-ordered-containers" 
"haskell-lens" "haskell-mtl"
+ "haskell-network" "haskell-scientific" "haskell-text" 
"haskell-transformers-compat"
+ "haskell-unordered-containers" "haskell-vector" "haskell-uuid-types")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('0a0f809e91fb89a8c2f648ff625e2748efd2d17aed6c7eada7b50290061b52995bea839bcce549f7372f14df0866a15e6ea4e41b1d2a756ca6659ac929698dee')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}

Copied: haskell-swagger2/repos/community-staging-x86_64/PKGBUILD (from rev 
247212, haskell-swagger2/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-07-31 19:25:34 UTC (rev 247213)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=swagger2
+pkgname=haskell-swagger2
+pkgver=2.1.4.1
+pkgrel=5
+pkgdesc="Swagger 2.0 data model"
+url="https://github.com/GetShopTV/swagger2;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc' "haskell-aeson" "haskell-base-compat" "haskell-hashable" 
"haskell-generics-sop"
+ "haskell-http-media" "haskell-insert-ordered-containers" 
"haskell-lens" "haskell-mtl"
+ "haskell-network" "haskell-scientific" "haskell-text" 
"haskell-transformers-compat"
+ "haskell-unordered-containers" "haskell-vector" "haskell-uuid-types")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('0a0f809e91fb89a8c2f648ff625e2748efd2d17aed6c7eada7b50290061b52995bea839bcce549f7372f14df0866a15e6ea4e41b1d2a756ca6659ac929698dee')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister 

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

2017-07-31 Thread Felix Yan
Date: Monday, July 31, 2017 @ 19:25:12
  Author: felixonmars
Revision: 247212

upgpkg: haskell-swagger2 2.1.4.1-5

rebuild with distributive,0.5.3

Modified:
  haskell-swagger2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-31 19:16:33 UTC (rev 247211)
+++ PKGBUILD2017-07-31 19:25:12 UTC (rev 247212)
@@ -5,7 +5,7 @@
 _hkgname=swagger2
 pkgname=haskell-swagger2
 pkgver=2.1.4.1
-pkgrel=4
+pkgrel=5
 pkgdesc="Swagger 2.0 data model"
 url="https://github.com/GetShopTV/swagger2;
 license=("custom:BSD3")


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

2017-07-31 Thread Felix Yan
Date: Monday, July 31, 2017 @ 19:16:33
  Author: felixonmars
Revision: 247211

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  purescript/repos/community-staging-i686/
  purescript/repos/community-staging-i686/PKGBUILD
(from rev 247210, purescript/trunk/PKGBUILD)
  purescript/repos/community-staging-x86_64/
  purescript/repos/community-staging-x86_64/PKGBUILD
(from rev 247210, purescript/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   62 
 community-staging-x86_64/PKGBUILD |   62 
 2 files changed, 124 insertions(+)

Copied: purescript/repos/community-staging-i686/PKGBUILD (from rev 247210, 
purescript/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-07-31 19:16:33 UTC (rev 247211)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=purescript
+pkgver=0.11.6
+pkgrel=9
+pkgdesc="PureScript Programming Language Compiler"
+url="http://www.purescript.org/;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc' "haskell-aeson" "haskell-aeson-better-errors" 
"haskell-aeson-pretty"
+ "haskell-ansi-terminal" "haskell-ansi-wl-pprint" 
"haskell-base-compat" "haskell-blaze-html"
+ "haskell-bower-json" "haskell-boxes" "haskell-cheapskate" 
"haskell-clock"
+ "haskell-data-ordlist" "haskell-dlist" "haskell-edit-distance" 
"haskell-file-embed"
+ "haskell-fsnotify" "haskell-glob" "haskell-http-client" 
"haskell-http-types"
+ "haskell-language-javascript" "haskell-lens" "haskell-lifted-base" 
"haskell-monad-control"
+ "haskell-monad-logger" "haskell-mtl" "haskell-network" 
"haskell-optparse-applicative"
+ "haskell-parallel" "haskell-parsec" "haskell-pattern-arrows" 
"haskell-pipes"
+ "haskell-pipes-http" "haskell-protolude" "haskell-regex-tdfa" 
"haskell-safe"
+ "haskell-semigroups" "haskell-sourcemap" "haskell-spdx" 
"haskell-split" "haskell-stm"
+ "haskell-stringsearch" "haskell-syb" "haskell-text" 
"haskell-transformers-base"
+ "haskell-transformers-compat" "haskell-unordered-containers" 
"haskell-utf8-string"
+ "haskell-vector" "haskell-wai" "haskell-wai-websockets" "haskell-warp"
+ "haskell-websockets")
+optdepends=('pulp: for development environment')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('98a82eb3468c79cc0d0f4adf52879814680f06c40bf443e6ec10a1797ddcbf87b627423714a6d392139fb28a1fb1971a839e24d91f5dd89b8d0ead25ba2eb6a0')
+
+prepare() {
+sed -i 's/aeson >=1.0 && <1.1/aeson >=1.0/' 
${pkgname}-${pkgver}/${pkgname}.cabal
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgbase}" 
--datasubdir="$pkgbase" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-frelease
+LC_CTYPE=en_US.UTF-8 runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${pkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}

Copied: purescript/repos/community-staging-x86_64/PKGBUILD (from rev 247210, 
purescript/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-07-31 19:16:33 UTC (rev 247211)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=purescript
+pkgver=0.11.6
+pkgrel=9
+pkgdesc="PureScript Programming Language Compiler"
+url="http://www.purescript.org/;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc' "haskell-aeson" 

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

2017-07-31 Thread Felix Yan
Date: Monday, July 31, 2017 @ 19:16:11
  Author: felixonmars
Revision: 247210

upgpkg: purescript 0.11.6-9

rebuild with distributive,0.5.3

Modified:
  purescript/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-31 18:53:16 UTC (rev 247209)
+++ PKGBUILD2017-07-31 19:16:11 UTC (rev 247210)
@@ -4,7 +4,7 @@
 
 pkgname=purescript
 pkgver=0.11.6
-pkgrel=8
+pkgrel=9
 pkgdesc="PureScript Programming Language Compiler"
 url="http://www.purescript.org/;
 license=("custom:BSD3")


[arch-commits] Commit in haskell-lens-aeson/repos (4 files)

2017-07-31 Thread Felix Yan
Date: Monday, July 31, 2017 @ 18:53:16
  Author: felixonmars
Revision: 247209

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  haskell-lens-aeson/repos/community-staging-i686/
  haskell-lens-aeson/repos/community-staging-i686/PKGBUILD
(from rev 247208, haskell-lens-aeson/trunk/PKGBUILD)
  haskell-lens-aeson/repos/community-staging-x86_64/
  haskell-lens-aeson/repos/community-staging-x86_64/PKGBUILD
(from rev 247208, haskell-lens-aeson/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   45 
 community-staging-x86_64/PKGBUILD |   45 
 2 files changed, 90 insertions(+)

Copied: haskell-lens-aeson/repos/community-staging-i686/PKGBUILD (from rev 
247208, haskell-lens-aeson/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-07-31 18:53:16 UTC (rev 247209)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=lens-aeson
+pkgname=haskell-lens-aeson
+pkgver=1.0.2
+pkgrel=4
+pkgdesc="Law-abiding lenses for aeson"
+url="http://github.com/lens/lens-aeson/;
+license=('MIT')
+arch=('i686' 'x86_64')
+depends=('ghc' 'haskell-aeson' 'haskell-attoparsec' 'haskell-lens' 
'haskell-scientific'
+ 'haskell-text' 'haskell-unordered-containers' 'haskell-vector')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('db13c9126b41fd1b3b2e66c72e069ef07722c4e125a128eca2592bf2c68b7e550c10a0d35795616c0e66ed6c70bbe3b188e9baba19913bba41b5d44900b71013')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-test-doctests
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}

Copied: haskell-lens-aeson/repos/community-staging-x86_64/PKGBUILD (from rev 
247208, haskell-lens-aeson/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-07-31 18:53:16 UTC (rev 247209)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=lens-aeson
+pkgname=haskell-lens-aeson
+pkgver=1.0.2
+pkgrel=4
+pkgdesc="Law-abiding lenses for aeson"
+url="http://github.com/lens/lens-aeson/;
+license=('MIT')
+arch=('i686' 'x86_64')
+depends=('ghc' 'haskell-aeson' 'haskell-attoparsec' 'haskell-lens' 
'haskell-scientific'
+ 'haskell-text' 'haskell-unordered-containers' 'haskell-vector')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('db13c9126b41fd1b3b2e66c72e069ef07722c4e125a128eca2592bf2c68b7e550c10a0d35795616c0e66ed6c70bbe3b188e9baba19913bba41b5d44900b71013')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-test-doctests
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 

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

2017-07-31 Thread Felix Yan
Date: Monday, July 31, 2017 @ 18:52:54
  Author: felixonmars
Revision: 247208

upgpkg: haskell-lens-aeson 1.0.2-4

rebuild with distributive,0.5.3

Modified:
  haskell-lens-aeson/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-31 18:51:14 UTC (rev 247207)
+++ PKGBUILD2017-07-31 18:52:54 UTC (rev 247208)
@@ -4,7 +4,7 @@
 _hkgname=lens-aeson
 pkgname=haskell-lens-aeson
 pkgver=1.0.2
-pkgrel=3
+pkgrel=4
 pkgdesc="Law-abiding lenses for aeson"
 url="http://github.com/lens/lens-aeson/;
 license=('MIT')


[arch-commits] Commit in haskell-insert-ordered-containers/repos (4 files)

2017-07-31 Thread Felix Yan
Date: Monday, July 31, 2017 @ 18:51:14
  Author: felixonmars
Revision: 247207

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  haskell-insert-ordered-containers/repos/community-staging-i686/
  haskell-insert-ordered-containers/repos/community-staging-i686/PKGBUILD
(from rev 247206, haskell-insert-ordered-containers/trunk/PKGBUILD)
  haskell-insert-ordered-containers/repos/community-staging-x86_64/
  haskell-insert-ordered-containers/repos/community-staging-x86_64/PKGBUILD
(from rev 247206, haskell-insert-ordered-containers/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   48 
 community-staging-x86_64/PKGBUILD |   48 
 2 files changed, 96 insertions(+)

Copied: haskell-insert-ordered-containers/repos/community-staging-i686/PKGBUILD 
(from rev 247206, haskell-insert-ordered-containers/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-07-31 18:51:14 UTC (rev 247207)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=insert-ordered-containers
+pkgname=haskell-insert-ordered-containers
+pkgver=0.2.1.0
+pkgrel=23
+pkgdesc="Associative containers retating insertion order for traversals."
+url="https://github.com/phadej/insert-ordered-containers;
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+depends=('ghc' 'haskell-aeson' 'haskell-base-compat' 'haskell-hashable' 
'haskell-lens'
+ 'haskell-semigroupoids' 'haskell-semigroups' 'haskell-text' 
'haskell-unordered-containers')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('baff8b23700a7d0209810208183d9856c0a5219018c5f09e82f8820ac87630073543da19e1198fc42f3feec143895707e5e33fdf1edbf8f4e6c441271cc3243b')
+
+prepare() {
+sed -i 's/, semigroupoids >=4.3  && <5.2/, semigroupoids   
  >=4.3  \&\& <5.3/' ${_hkgname}-${pkgver}/${_hkgname}.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}

Copied: 
haskell-insert-ordered-containers/repos/community-staging-x86_64/PKGBUILD (from 
rev 247206, haskell-insert-ordered-containers/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-07-31 18:51:14 UTC (rev 247207)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=insert-ordered-containers
+pkgname=haskell-insert-ordered-containers
+pkgver=0.2.1.0
+pkgrel=23
+pkgdesc="Associative containers retating insertion order for traversals."
+url="https://github.com/phadej/insert-ordered-containers;
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+depends=('ghc' 'haskell-aeson' 'haskell-base-compat' 'haskell-hashable' 
'haskell-lens'
+ 'haskell-semigroupoids' 'haskell-semigroups' 'haskell-text' 
'haskell-unordered-containers')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('baff8b23700a7d0209810208183d9856c0a5219018c5f09e82f8820ac87630073543da19e1198fc42f3feec143895707e5e33fdf1edbf8f4e6c441271cc3243b')
+
+prepare() {
+sed -i 's/, semigroupoids >=4.3  && <5.2/, semigroupoids   
  >=4.3  \&\& <5.3/' ${_hkgname}-${pkgver}/${_hkgname}.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+

[arch-commits] Commit in haskell-insert-ordered-containers/trunk (PKGBUILD)

2017-07-31 Thread Felix Yan
Date: Monday, July 31, 2017 @ 18:50:51
  Author: felixonmars
Revision: 247206

upgpkg: haskell-insert-ordered-containers 0.2.1.0-23

rebuild with distributive,0.5.3

Modified:
  haskell-insert-ordered-containers/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-31 18:49:10 UTC (rev 247205)
+++ PKGBUILD2017-07-31 18:50:51 UTC (rev 247206)
@@ -4,7 +4,7 @@
 _hkgname=insert-ordered-containers
 pkgname=haskell-insert-ordered-containers
 pkgver=0.2.1.0
-pkgrel=22
+pkgrel=23
 pkgdesc="Associative containers retating insertion order for traversals."
 url="https://github.com/phadej/insert-ordered-containers;
 license=('custom:BSD3')


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

2017-07-31 Thread Felix Yan
Date: Monday, July 31, 2017 @ 18:49:10
  Author: felixonmars
Revision: 247205

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

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

---+
 community-staging-i686/PKGBUILD   |   49 
 community-staging-x86_64/PKGBUILD |   49 
 2 files changed, 98 insertions(+)

Copied: haskell-dav/repos/community-staging-i686/PKGBUILD (from rev 247204, 
haskell-dav/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-07-31 18:49:10 UTC (rev 247205)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=DAV
+pkgname=haskell-dav
+pkgver=1.3.1
+pkgrel=131
+pkgdesc="RFC 4918 WebDAV support"
+url="http://floss.scru.org/hDAV;
+license=("GPL3")
+arch=('i686' 'x86_64')
+depends=('ghc' "haskell-case-insensitive" "haskell-data-default" 
"haskell-exceptions"
+ "haskell-haskeline" "haskell-http-client" "haskell-http-client-tls" 
"haskell-http-types"
+ "haskell-lens" "haskell-mtl" "haskell-network" "haskell-network-uri"
+ "haskell-optparse-applicative" "haskell-transformers-base" 
"haskell-transformers-compat"
+ "haskell-utf8-string" "haskell-xml-conduit" "haskell-xml-hamlet")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('5c80faa58f8bbfb4bbdf7f3db6f23a3a4d26a199831ceb27dd5f69fef21bc009')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fnetwork-uri -f-mtl-compat
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}

Copied: haskell-dav/repos/community-staging-x86_64/PKGBUILD (from rev 247204, 
haskell-dav/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-07-31 18:49:10 UTC (rev 247205)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=DAV
+pkgname=haskell-dav
+pkgver=1.3.1
+pkgrel=131
+pkgdesc="RFC 4918 WebDAV support"
+url="http://floss.scru.org/hDAV;
+license=("GPL3")
+arch=('i686' 'x86_64')
+depends=('ghc' "haskell-case-insensitive" "haskell-data-default" 
"haskell-exceptions"
+ "haskell-haskeline" "haskell-http-client" "haskell-http-client-tls" 
"haskell-http-types"
+ "haskell-lens" "haskell-mtl" "haskell-network" "haskell-network-uri"
+ "haskell-optparse-applicative" "haskell-transformers-base" 
"haskell-transformers-compat"
+ "haskell-utf8-string" "haskell-xml-conduit" "haskell-xml-hamlet")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('5c80faa58f8bbfb4bbdf7f3db6f23a3a4d26a199831ceb27dd5f69fef21bc009')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fnetwork-uri -f-mtl-compat
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell 

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

2017-07-31 Thread Felix Yan
Date: Monday, July 31, 2017 @ 18:48:14
  Author: felixonmars
Revision: 247204

upgpkg: haskell-dav 1.3.1-131

rebuild with distributive,0.5.3

Modified:
  haskell-dav/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-31 18:45:46 UTC (rev 247203)
+++ PKGBUILD2017-07-31 18:48:14 UTC (rev 247204)
@@ -5,7 +5,7 @@
 _hkgname=DAV
 pkgname=haskell-dav
 pkgver=1.3.1
-pkgrel=130
+pkgrel=131
 pkgdesc="RFC 4918 WebDAV support"
 url="http://floss.scru.org/hDAV;
 license=("GPL3")


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

2017-07-31 Thread Felix Yan
Date: Monday, July 31, 2017 @ 18:45:46
  Author: felixonmars
Revision: 247203

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  haskell-lens/repos/community-staging-i686/
  haskell-lens/repos/community-staging-i686/PKGBUILD
(from rev 247202, haskell-lens/trunk/PKGBUILD)
  haskell-lens/repos/community-staging-x86_64/
  haskell-lens/repos/community-staging-x86_64/PKGBUILD
(from rev 247202, haskell-lens/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   52 
 community-staging-x86_64/PKGBUILD |   52 
 2 files changed, 104 insertions(+)

Copied: haskell-lens/repos/community-staging-i686/PKGBUILD (from rev 247202, 
haskell-lens/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-07-31 18:45:46 UTC (rev 247203)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=lens
+pkgname=haskell-lens
+pkgver=4.15.3
+pkgrel=7
+pkgdesc="Lenses, Folds and Traversals"
+url="http://github.com/ekmett/lens/;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc' "haskell-base-orphans" "haskell-bifunctors" "haskell-comonad"
+ "haskell-contravariant" "haskell-distributive" "haskell-exceptions" 
"haskell-free"
+ "haskell-hashable" "haskell-kan-extensions" "haskell-mtl" 
"haskell-parallel"
+ "haskell-profunctors" "haskell-reflection" "haskell-semigroupoids" 
"haskell-semigroups"
+ "haskell-tagged" "haskell-text" "haskell-th-abstraction" 
"haskell-transformers-compat"
+ "haskell-unordered-containers" "haskell-vector" "haskell-void")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('0ccc13ee500712e1e36fe7284fe179f461f00c179756968aca27d570629322e1a17e13b6d006ee27e03c4aad4d6006b9e0397567af24333ebc3b7f8726a953ca')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-j -ftrustworthy -f-safe -ftest-templates -ftest-properties 
-ftest-hunit \
+-ftest-doctests -ftest-hlint -f-dump-splices -f-old-inline-pragmas 
-finlining \
+-f-benchmark-uniplate
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}

Copied: haskell-lens/repos/community-staging-x86_64/PKGBUILD (from rev 247202, 
haskell-lens/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-07-31 18:45:46 UTC (rev 247203)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=lens
+pkgname=haskell-lens
+pkgver=4.15.3
+pkgrel=7
+pkgdesc="Lenses, Folds and Traversals"
+url="http://github.com/ekmett/lens/;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc' "haskell-base-orphans" "haskell-bifunctors" "haskell-comonad"
+ "haskell-contravariant" "haskell-distributive" "haskell-exceptions" 
"haskell-free"
+ "haskell-hashable" "haskell-kan-extensions" "haskell-mtl" 
"haskell-parallel"
+ "haskell-profunctors" "haskell-reflection" "haskell-semigroupoids" 
"haskell-semigroups"
+ "haskell-tagged" "haskell-text" "haskell-th-abstraction" 
"haskell-transformers-compat"
+ "haskell-unordered-containers" "haskell-vector" "haskell-void")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)

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

2017-07-31 Thread Felix Yan
Date: Monday, July 31, 2017 @ 18:45:24
  Author: felixonmars
Revision: 247202

upgpkg: haskell-lens 4.15.3-7

rebuild with distributive,0.5.3

Modified:
  haskell-lens/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-31 18:40:14 UTC (rev 247201)
+++ PKGBUILD2017-07-31 18:45:24 UTC (rev 247202)
@@ -5,7 +5,7 @@
 _hkgname=lens
 pkgname=haskell-lens
 pkgver=4.15.3
-pkgrel=6
+pkgrel=7
 pkgdesc="Lenses, Folds and Traversals"
 url="http://github.com/ekmett/lens/;
 license=("custom:BSD3")


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

2017-07-31 Thread Maxime Gauduin
Date: Monday, July 31, 2017 @ 18:40:44
  Author: alucryd
Revision: 301441

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  mkvtoolnix/repos/extra-i686/PKGBUILD
(from rev 301440, mkvtoolnix/trunk/PKGBUILD)
  mkvtoolnix/repos/extra-x86_64/PKGBUILD
(from rev 301440, mkvtoolnix/trunk/PKGBUILD)
Deleted:
  mkvtoolnix/repos/extra-i686/PKGBUILD
  mkvtoolnix/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |  118 
 extra-i686/PKGBUILD   |   59 
 extra-x86_64/PKGBUILD |   59 
 3 files changed, 118 insertions(+), 118 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-07-31 18:40:28 UTC (rev 301440)
+++ extra-i686/PKGBUILD 2017-07-31 18:40:44 UTC (rev 301441)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora 
-# Maintainer: Maxime Gauduin 
-# Contributor: xduugu 
-
-pkgbase=mkvtoolnix
-pkgname=('mkvtoolnix-cli' 'mkvtoolnix-gui')
-pkgver=12.0.0
-pkgrel=1
-pkgdesc='Set of tools to create, edit and inspect Matroska files'
-arch=('i686' 'x86_64')
-url='https://www.bunkus.org/videotools/mkvtoolnix/'
-license=('GPL')
-makedepends=('boost' 'boost-libs' 'docbook-xsl' 'file' 'flac' 'libebml'
- 'libmatroska' 'libogg' 'libvorbis' 'qt5-multimedia' 'ruby' 'zlib')
-source=("http://www.bunkus.org/videotools/mkvtoolnix/sources/mkvtoolnix-${pkgver}.tar.xz;)
-sha256sums=('5c2401d1cc36d8a2d57cb791a5a22f3cda69cb0824c6cee35326b35e7f94b536')
-
-build() {
-  cd mkvtoolnix-${pkgver}
-
-  ./configure \
---prefix='/usr' \
---disable-qt
-  rake apps:mkvinfo $MAKEFLAGS
-  mv src/mkvinfo{,-cli}
-
-  ./configure \
---prefix='/usr'
-  rake $MAKEFLAGS
-}
-
-package_mkvtoolnix-cli() {
-  depends=('boost-libs' 'file' 'flac' 'gcc-libs' 'glibc' 'libogg' 'zlib'
-   'libebml.so' 'libmatroska.so' 'libvorbis.so')
-
-  cd mkvtoolnix-${pkgver}
-
-  rake DESTDIR="${pkgdir}" install
-  install -m 755 src/mkvinfo-cli "${pkgdir}"/usr/bin/mkvinfo
-  rm -rf "${pkgdir}"/usr/share/{applications,icons,mime,mkvtoolnix}
-  find "${pkgdir}" -name mkvtoolnix-gui* -delete
-}
-
-package_mkvtoolnix-gui() {
-  depends=('desktop-file-utils' 'hicolor-icon-theme' 'mkvtoolnix-cli'
-   'qt5-multimedia' 'shared-mime-info' 'xdg-utils')
-  replaces=('mkvtoolnix-gtk')
-
-  cd mkvtoolnix-${pkgver}
-
-  rake DESTDIR="${pkgdir}" install
-  rm -rf "${pkgdir}"/usr/share/locale
-  for t in mkv{extract,info,merge,propedit}; do
-find "${pkgdir}" -name $t* -delete
-  done
-}
-
-# vim: ts=2 sw=2 et:

Copied: mkvtoolnix/repos/extra-i686/PKGBUILD (from rev 301440, 
mkvtoolnix/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-07-31 18:40:44 UTC (rev 301441)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+# Maintainer: Maxime Gauduin 
+# Contributor: xduugu 
+
+pkgbase=mkvtoolnix
+pkgname=('mkvtoolnix-cli' 'mkvtoolnix-gui')
+pkgver=14.0.0
+pkgrel=1
+pkgdesc='Set of tools to create, edit and inspect Matroska files'
+arch=('i686' 'x86_64')
+url='https://www.bunkus.org/videotools/mkvtoolnix/'
+license=('GPL')
+makedepends=('boost' 'boost-libs' 'docbook-xsl' 'file' 'flac' 'libebml'
+ 'libmatroska' 'libogg' 'libvorbis' 'qt5-multimedia' 'ruby' 'zlib')
+source=("http://www.bunkus.org/videotools/mkvtoolnix/sources/mkvtoolnix-${pkgver}.tar.xz;)
+sha256sums=('86aa96acb26f7ef9d7afb4d0c1fa1a086b398d563b77372c436044c3c6bba78c')
+
+build() {
+  cd mkvtoolnix-${pkgver}
+
+  ./configure \
+--prefix='/usr' \
+--disable-qt
+  rake apps:mkvinfo $MAKEFLAGS
+  mv src/mkvinfo{,-cli}
+
+  ./configure \
+--prefix='/usr'
+  rake $MAKEFLAGS
+}
+
+package_mkvtoolnix-cli() {
+  depends=('boost-libs' 'file' 'flac' 'gcc-libs' 'glibc' 'libogg' 'zlib'
+   'libebml.so' 'libmatroska.so' 'libvorbis.so')
+
+  cd mkvtoolnix-${pkgver}
+
+  rake DESTDIR="${pkgdir}" install
+  install -m 755 src/mkvinfo-cli "${pkgdir}"/usr/bin/mkvinfo
+  rm -rf "${pkgdir}"/usr/share/{applications,icons,mime,mkvtoolnix}
+  find "${pkgdir}" -name mkvtoolnix-gui* -delete
+}
+
+package_mkvtoolnix-gui() {
+  depends=('desktop-file-utils' 'hicolor-icon-theme' 'mkvtoolnix-cli'
+   'qt5-multimedia' 'shared-mime-info' 'xdg-utils')
+  replaces=('mkvtoolnix-gtk')
+
+  cd mkvtoolnix-${pkgver}
+
+  rake DESTDIR="${pkgdir}" install
+  rm -rf "${pkgdir}"/usr/share/locale
+  for t in mkv{extract,info,merge,propedit}; do
+find "${pkgdir}" -name $t* -delete
+  done
+}
+
+# vim: ts=2 sw=2 et:

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2017-07-31 18:40:28 UTC (rev 301440)
+++ extra-x86_64/PKGBUILD   

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

2017-07-31 Thread Maxime Gauduin
Date: Monday, July 31, 2017 @ 18:40:28
  Author: alucryd
Revision: 301440

upgpkg: mkvtoolnix 14.0.0-1

Modified:
  mkvtoolnix/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-31 17:37:37 UTC (rev 301439)
+++ PKGBUILD2017-07-31 18:40:28 UTC (rev 301440)
@@ -5,7 +5,7 @@
 
 pkgbase=mkvtoolnix
 pkgname=('mkvtoolnix-cli' 'mkvtoolnix-gui')
-pkgver=12.0.0
+pkgver=14.0.0
 pkgrel=1
 pkgdesc='Set of tools to create, edit and inspect Matroska files'
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 makedepends=('boost' 'boost-libs' 'docbook-xsl' 'file' 'flac' 'libebml'
  'libmatroska' 'libogg' 'libvorbis' 'qt5-multimedia' 'ruby' 'zlib')
 
source=("http://www.bunkus.org/videotools/mkvtoolnix/sources/mkvtoolnix-${pkgver}.tar.xz;)
-sha256sums=('5c2401d1cc36d8a2d57cb791a5a22f3cda69cb0824c6cee35326b35e7f94b536')
+sha256sums=('86aa96acb26f7ef9d7afb4d0c1fa1a086b398d563b77372c436044c3c6bba78c')
 
 build() {
   cd mkvtoolnix-${pkgver}


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

2017-07-31 Thread Felix Yan
Date: Monday, July 31, 2017 @ 18:40:14
  Author: felixonmars
Revision: 247201

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  haskell-keys/repos/community-staging-i686/
  haskell-keys/repos/community-staging-i686/PKGBUILD
(from rev 247200, haskell-keys/trunk/PKGBUILD)
  haskell-keys/repos/community-staging-x86_64/
  haskell-keys/repos/community-staging-x86_64/PKGBUILD
(from rev 247200, haskell-keys/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   45 
 community-staging-x86_64/PKGBUILD |   45 
 2 files changed, 90 insertions(+)

Copied: haskell-keys/repos/community-staging-i686/PKGBUILD (from rev 247200, 
haskell-keys/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-07-31 18:40:14 UTC (rev 247201)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=keys
+pkgname=haskell-keys
+pkgver=3.11
+pkgrel=39
+pkgdesc="Keyed functors and containers"
+url="http://github.com/ekmett/keys/;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc' "haskell-comonad" "haskell-free" "haskell-hashable" 
"haskell-semigroupoids"
+ "haskell-semigroups" "haskell-transformers-compat" 
"haskell-unordered-containers")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('0cf397b7e6eb8cda930a02118c0bf262f9ef80c5a2f91822238b7778042cc4b2')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}

Copied: haskell-keys/repos/community-staging-x86_64/PKGBUILD (from rev 247200, 
haskell-keys/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-07-31 18:40:14 UTC (rev 247201)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=keys
+pkgname=haskell-keys
+pkgver=3.11
+pkgrel=39
+pkgdesc="Keyed functors and containers"
+url="http://github.com/ekmett/keys/;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc' "haskell-comonad" "haskell-free" "haskell-hashable" 
"haskell-semigroupoids"
+ "haskell-semigroups" "haskell-transformers-compat" 
"haskell-unordered-containers")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('0cf397b7e6eb8cda930a02118c0bf262f9ef80c5a2f91822238b7778042cc4b2')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 

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

2017-07-31 Thread Felix Yan
Date: Monday, July 31, 2017 @ 18:39:51
  Author: felixonmars
Revision: 247200

upgpkg: haskell-keys 3.11-39

rebuild with distributive,0.5.3

Modified:
  haskell-keys/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-31 18:38:19 UTC (rev 247199)
+++ PKGBUILD2017-07-31 18:39:51 UTC (rev 247200)
@@ -5,7 +5,7 @@
 _hkgname=keys
 pkgname=haskell-keys
 pkgver=3.11
-pkgrel=38
+pkgrel=39
 pkgdesc="Keyed functors and containers"
 url="http://github.com/ekmett/keys/;
 license=("custom:BSD3")


[arch-commits] Commit in haskell-kan-extensions/repos (4 files)

2017-07-31 Thread Felix Yan
Date: Monday, July 31, 2017 @ 18:38:19
  Author: felixonmars
Revision: 247199

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  haskell-kan-extensions/repos/community-staging-i686/
  haskell-kan-extensions/repos/community-staging-i686/PKGBUILD
(from rev 247198, haskell-kan-extensions/trunk/PKGBUILD)
  haskell-kan-extensions/repos/community-staging-x86_64/
  haskell-kan-extensions/repos/community-staging-x86_64/PKGBUILD
(from rev 247198, haskell-kan-extensions/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   50 
 community-staging-x86_64/PKGBUILD |   50 
 2 files changed, 100 insertions(+)

Copied: haskell-kan-extensions/repos/community-staging-i686/PKGBUILD (from rev 
247198, haskell-kan-extensions/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-07-31 18:38:19 UTC (rev 247199)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=kan-extensions
+pkgname=haskell-kan-extensions
+pkgver=5.0.2
+pkgrel=5
+pkgdesc="Kan extensions, Kan lifts, various forms of the Yoneda lemma, and 
(co)density (co)monads"
+url="http://github.com/ekmett/kan-extensions/;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc' "haskell-adjunctions" "haskell-comonad" "haskell-contravariant"
+ "haskell-distributive" "haskell-free" "haskell-mtl" 
"haskell-semigroupoids"
+ "haskell-tagged")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('bce02cb4ce3a797682fd369962ceee54b8c561a2a637942a678e7ef6d0757a5074cfd25d22f6d64b5475729fa00f464b635026ee7765be04a4fd0289eb17583d')
+
+prepare() {
+sed -i '/fail/d' ${_hkgname}-${pkgver}/${_hkgname}.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}

Copied: haskell-kan-extensions/repos/community-staging-x86_64/PKGBUILD (from 
rev 247198, haskell-kan-extensions/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-07-31 18:38:19 UTC (rev 247199)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=kan-extensions
+pkgname=haskell-kan-extensions
+pkgver=5.0.2
+pkgrel=5
+pkgdesc="Kan extensions, Kan lifts, various forms of the Yoneda lemma, and 
(co)density (co)monads"
+url="http://github.com/ekmett/kan-extensions/;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc' "haskell-adjunctions" "haskell-comonad" "haskell-contravariant"
+ "haskell-distributive" "haskell-free" "haskell-mtl" 
"haskell-semigroupoids"
+ "haskell-tagged")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('bce02cb4ce3a797682fd369962ceee54b8c561a2a637942a678e7ef6d0757a5074cfd25d22f6d64b5475729fa00f464b635026ee7765be04a4fd0289eb17583d')
+
+prepare() {
+sed -i '/fail/d' ${_hkgname}-${pkgver}/${_hkgname}.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register 

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

2017-07-31 Thread Felix Yan
Date: Monday, July 31, 2017 @ 18:37:57
  Author: felixonmars
Revision: 247198

upgpkg: haskell-kan-extensions 5.0.2-5

rebuild with distributive,0.5.3

Modified:
  haskell-kan-extensions/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-31 18:36:08 UTC (rev 247197)
+++ PKGBUILD2017-07-31 18:37:57 UTC (rev 247198)
@@ -5,7 +5,7 @@
 _hkgname=kan-extensions
 pkgname=haskell-kan-extensions
 pkgver=5.0.2
-pkgrel=4
+pkgrel=5
 pkgdesc="Kan extensions, Kan lifts, various forms of the Yoneda lemma, and 
(co)density (co)monads"
 url="http://github.com/ekmett/kan-extensions/;
 license=("custom:BSD3")


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

2017-07-31 Thread Felix Yan
Date: Monday, July 31, 2017 @ 18:36:08
  Author: felixonmars
Revision: 247197

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  stack/repos/community-staging-i686/
  stack/repos/community-staging-i686/PKGBUILD
(from rev 247196, stack/trunk/PKGBUILD)
  stack/repos/community-staging-i686/path-0.6.1.patch
(from rev 247196, stack/trunk/path-0.6.1.patch)
  stack/repos/community-staging-i686/stack.install
(from rev 247196, stack/trunk/stack.install)
  stack/repos/community-staging-x86_64/
  stack/repos/community-staging-x86_64/PKGBUILD
(from rev 247196, stack/trunk/PKGBUILD)
  stack/repos/community-staging-x86_64/path-0.6.1.patch
(from rev 247196, stack/trunk/path-0.6.1.patch)
  stack/repos/community-staging-x86_64/stack.install
(from rev 247196, stack/trunk/stack.install)

---+
 community-staging-i686/PKGBUILD   |   82 
 community-staging-i686/path-0.6.1.patch   |   49 
 community-staging-i686/stack.install  |4 +
 community-staging-x86_64/PKGBUILD |   82 
 community-staging-x86_64/path-0.6.1.patch |   49 
 community-staging-x86_64/stack.install|4 +
 6 files changed, 270 insertions(+)

Copied: stack/repos/community-staging-i686/PKGBUILD (from rev 247196, 
stack/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-07-31 18:36:08 UTC (rev 247197)
@@ -0,0 +1,82 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=stack
+pkgver=1.5.0
+pkgrel=9
+pkgdesc="The Haskell Tool Stack"
+url="https://github.com/commercialhaskell/stack;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc' "haskell-aeson" "haskell-annotated-wl-pprint" 
"haskell-ansi-terminal"
+ "haskell-async" "haskell-attoparsec" "haskell-base-compat" 
"haskell-base64-bytestring"
+ "haskell-binary-tagged" "haskell-blaze-builder" "haskell-clock" 
"haskell-conduit"
+ "haskell-conduit-extra" "haskell-cryptonite" 
"haskell-cryptonite-conduit" "haskell-echo"
+ "haskell-either" "haskell-errors" "haskell-exceptions" "haskell-extra"
+ "haskell-fast-logger" "haskell-file-embed" "haskell-filelock" 
"haskell-fsnotify"
+ "haskell-generic-deriving" "haskell-gitrev" 
"haskell-hackage-security" "haskell-hashable"
+ "haskell-hastache" "haskell-http-client" "haskell-http-client-tls" 
"haskell-http-conduit"
+ "haskell-http-types" "haskell-hpack" "haskell-lifted-async" 
"haskell-lifted-base"
+ "haskell-memory" "haskell-microlens" "haskell-microlens-mtl" 
"haskell-mintty"
+ "haskell-monad-control" "haskell-monad-logger" "haskell-monad-unlift" 
"haskell-mtl"
+ "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-pid1"
+ "haskell-project-template" "haskell-regex-applicative-text" 
"haskell-resourcet"
+ "haskell-retry" "haskell-safe" "haskell-safe-exceptions" 
"haskell-semigroups"
+ "haskell-split" "haskell-stm" "haskell-store" "haskell-store-core"
+ "haskell-streaming-commons" "haskell-tar" "haskell-temporary" 
"haskell-text"
+ "haskell-text-binary" "haskell-text-metrics" "haskell-tls" 
"haskell-transformers-base"
+ "haskell-unicode-transforms" "haskell-unix-compat" 
"haskell-unordered-containers"
+ "haskell-vector" "haskell-vector-binary-instances" "haskell-yaml" 
"haskell-zip-archive"
+ "haskell-zlib")
+conflicts=('haskell-stack')
+replaces=('haskell-stack')
+install="stack.install"
+source=("$pkgname-$pkgver.tar.gz::https://github.com/commercialhaskell/stack/archive/v$pkgver.tar.gz;
+path-0.6.1.patch)
+sha256sums=('2ffead80e9cc3b72480e9130bb639aaa8a6a684d8f6098a3843fe88803c8e478'
+'2013b76677e62851248f26f8b77d0f37a52496b3380bf3107519d5a84e09808f')
+
+prepare() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+patch -p1 -i ../path-0.6.1.patch
+
+sed -e 's/cryptonite >= 0.19 && < 0.24/cryptonite >= 0.19 \&\& < 0.25/' \
+-e 's/, path >= 0.5.8 && < 0.6/, path >= 0.5.8 \&\& < 0.7/' \
+-i stack.cabal
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-disable-git-info -f-integration-tests -f-static 
-f-hide-dependency-versions
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+

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

2017-07-31 Thread Felix Yan
Date: Monday, July 31, 2017 @ 18:35:39
  Author: felixonmars
Revision: 247196

upgpkg: stack 1.5.0-9

rebuild with distributive,0.5.3

Modified:
  stack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-31 18:27:32 UTC (rev 247195)
+++ PKGBUILD2017-07-31 18:35:39 UTC (rev 247196)
@@ -4,7 +4,7 @@
 
 pkgname=stack
 pkgver=1.5.0
-pkgrel=8
+pkgrel=9
 pkgdesc="The Haskell Tool Stack"
 url="https://github.com/commercialhaskell/stack;
 license=("custom:BSD3")


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

2017-07-31 Thread Sergej Pupykin
Date: Monday, July 31, 2017 @ 18:27:32
  Author: spupykin
Revision: 247195

archrelease: copy trunk to community-i686, community-x86_64

Added:
  denemo/repos/community-i686/PKGBUILD
(from rev 247194, denemo/trunk/PKGBUILD)
  denemo/repos/community-x86_64/PKGBUILD
(from rev 247194, denemo/trunk/PKGBUILD)
Deleted:
  denemo/repos/community-i686/PKGBUILD
  denemo/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   84 
 community-i686/PKGBUILD   |   42 --
 community-x86_64/PKGBUILD |   42 --
 3 files changed, 84 insertions(+), 84 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-07-31 18:27:12 UTC (rev 247194)
+++ community-i686/PKGBUILD 2017-07-31 18:27:32 UTC (rev 247195)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Philipp Sandhaus 
-# Contributor: Robert Emil Berge 
-# Contributor: Gnud 
-
-pkgname=denemo
-epoch=1
-pkgver=2.0.14
-pkgrel=3
-pkgdesc="A music score editor"
-arch=('i686' 'x86_64')
-url="http://www.denemo.org;
-license=('GPL')
-depends=('aubio' 'portaudio' 'lilypond' 'gtk3' 'libxml2' 'guile' 'fftw'
-'librsvg' 'fluidsynth' 'libsmf' 'evince' 'gtksourceview3' 'portmidi'
-'rubberband')
-makedepends=('intltool' 'git')
-noextract=(${pkgname}-${pkgver}.tar.gz)
-validpgpkeys=('C66734FA5D60E4DDD882EF81AE6F83BB6C574235')
-source=("https://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz"{,.sig})
-sha256sums=('90037c2ffddeddb42a6c15c8c6bb38306b057a031717d1af97f2bc920c1aefa8'
-'SKIP')
-
-prepare() {
-  cd "$srcdir"
-  LC_ALL=en_US.UTF-8 tar xzf ${pkgname}-${pkgver}.tar.gz
-  cd "$srcdir"/$pkgname-$pkgver
-  sed -i 's|||' src/audio/pitchrecog.c
-}
-
-build() {
-  cd "$srcdir"/$pkgname-$pkgver
-  [ -x configure ] || ./autogen.sh
-  ./configure --prefix=/usr --sysconfdir=/etc
-  make
-}
-
-package() {
-  cd "$srcdir"/$pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: denemo/repos/community-i686/PKGBUILD (from rev 247194, 
denemo/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-07-31 18:27:32 UTC (rev 247195)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Philipp Sandhaus 
+# Contributor: Robert Emil Berge 
+# Contributor: Gnud 
+
+pkgname=denemo
+epoch=1
+pkgver=2.2.0
+pkgrel=1
+pkgdesc="A music score editor"
+arch=('i686' 'x86_64')
+url="http://www.denemo.org;
+license=('GPL')
+depends=('aubio' 'portaudio' 'lilypond' 'gtk3' 'libxml2' 'guile' 'fftw'
+'librsvg' 'fluidsynth' 'libsmf' 'evince' 'gtksourceview3' 'portmidi'
+'rubberband')
+makedepends=('intltool' 'git')
+noextract=(${pkgname}-${pkgver}.tar.gz)
+validpgpkeys=('C66734FA5D60E4DDD882EF81AE6F83BB6C574235')
+source=("https://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz"{,.sig})
+sha256sums=('d07d7c5bce5569e25fceb02727f5c8f4ff2f579947b612e2bf9b48573bd1eca3'
+'SKIP')
+
+prepare() {
+  cd "$srcdir"
+  LC_ALL=en_US.UTF-8 tar xzf ${pkgname}-${pkgver}.tar.gz
+  cd "$srcdir"/$pkgname-$pkgver
+  sed -i 's|||' src/audio/pitchrecog.c
+}
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+  [ -x configure ] || ./autogen.sh
+  ./configure --prefix=/usr --sysconfdir=/etc
+  make
+}
+
+package() {
+  cd "$srcdir"/$pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-07-31 18:27:12 UTC (rev 247194)
+++ community-x86_64/PKGBUILD   2017-07-31 18:27:32 UTC (rev 247195)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Philipp Sandhaus 
-# Contributor: Robert Emil Berge 
-# Contributor: Gnud 
-
-pkgname=denemo
-epoch=1
-pkgver=2.0.14
-pkgrel=3
-pkgdesc="A music score editor"
-arch=('i686' 'x86_64')
-url="http://www.denemo.org;
-license=('GPL')
-depends=('aubio' 'portaudio' 'lilypond' 'gtk3' 'libxml2' 'guile' 'fftw'
-'librsvg' 'fluidsynth' 'libsmf' 'evince' 'gtksourceview3' 'portmidi'
-'rubberband')
-makedepends=('intltool' 'git')
-noextract=(${pkgname}-${pkgver}.tar.gz)
-validpgpkeys=('C66734FA5D60E4DDD882EF81AE6F83BB6C574235')
-source=("https://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz"{,.sig})
-sha256sums=('90037c2ffddeddb42a6c15c8c6bb38306b057a031717d1af97f2bc920c1aefa8'
-'SKIP')
-
-prepare() {
-  cd "$srcdir"
-  LC_ALL=en_US.UTF-8 tar xzf ${pkgname}-${pkgver}.tar.gz
-  cd 

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

2017-07-31 Thread Sergej Pupykin
Date: Monday, July 31, 2017 @ 18:27:12
  Author: spupykin
Revision: 247194

upgpkg: denemo 1:2.2.0-1

Modified:
  denemo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-31 18:23:35 UTC (rev 247193)
+++ PKGBUILD2017-07-31 18:27:12 UTC (rev 247194)
@@ -6,8 +6,8 @@
 
 pkgname=denemo
 epoch=1
-pkgver=2.0.14
-pkgrel=3
+pkgver=2.2.0
+pkgrel=1
 pkgdesc="A music score editor"
 arch=('i686' 'x86_64')
 url="http://www.denemo.org;
@@ -19,7 +19,7 @@
 noextract=(${pkgname}-${pkgver}.tar.gz)
 validpgpkeys=('C66734FA5D60E4DDD882EF81AE6F83BB6C574235')
 
source=("https://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz"{,.sig})
-sha256sums=('90037c2ffddeddb42a6c15c8c6bb38306b057a031717d1af97f2bc920c1aefa8'
+sha256sums=('d07d7c5bce5569e25fceb02727f5c8f4ff2f579947b612e2bf9b48573bd1eca3'
 'SKIP')
 
 prepare() {


[arch-commits] Commit in libreoffice-online/repos (12 files)

2017-07-31 Thread Sergej Pupykin
Date: Monday, July 31, 2017 @ 18:23:35
  Author: spupykin
Revision: 247193

archrelease: copy trunk to community-testing-x86_64, community-testing-i686

Added:
  libreoffice-online/repos/community-testing-i686/
  libreoffice-online/repos/community-testing-i686/PKGBUILD
(from rev 247192, libreoffice-online/trunk/PKGBUILD)
  libreoffice-online/repos/community-testing-i686/build-fix.patch
(from rev 247192, libreoffice-online/trunk/build-fix.patch)
  libreoffice-online/repos/community-testing-i686/hack-annoying-errors.patch
(from rev 247192, libreoffice-online/trunk/hack-annoying-errors.patch)
  libreoffice-online/repos/community-testing-i686/libreoffice-online.install
(from rev 247192, libreoffice-online/trunk/libreoffice-online.install)
  libreoffice-online/repos/community-testing-i686/loolwsd.service
(from rev 247192, libreoffice-online/trunk/loolwsd.service)
  libreoffice-online/repos/community-testing-x86_64/
  libreoffice-online/repos/community-testing-x86_64/PKGBUILD
(from rev 247192, libreoffice-online/trunk/PKGBUILD)
  libreoffice-online/repos/community-testing-x86_64/build-fix.patch
(from rev 247192, libreoffice-online/trunk/build-fix.patch)
  libreoffice-online/repos/community-testing-x86_64/hack-annoying-errors.patch
(from rev 247192, libreoffice-online/trunk/hack-annoying-errors.patch)
  libreoffice-online/repos/community-testing-x86_64/libreoffice-online.install
(from rev 247192, libreoffice-online/trunk/libreoffice-online.install)
  libreoffice-online/repos/community-testing-x86_64/loolwsd.service
(from rev 247192, libreoffice-online/trunk/loolwsd.service)

-+
 community-testing-i686/PKGBUILD |   59 ++
 community-testing-i686/build-fix.patch  |  458 ++
 community-testing-i686/hack-annoying-errors.patch   |   25 
 community-testing-i686/libreoffice-online.install   |   21 
 community-testing-i686/loolwsd.service  |   13 
 community-testing-x86_64/PKGBUILD   |   59 ++
 community-testing-x86_64/build-fix.patch|  458 ++
 community-testing-x86_64/hack-annoying-errors.patch |   25 
 community-testing-x86_64/libreoffice-online.install |   21 
 community-testing-x86_64/loolwsd.service|   13 
 10 files changed, 1152 insertions(+)

Copied: libreoffice-online/repos/community-testing-i686/PKGBUILD (from rev 
247192, libreoffice-online/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2017-07-31 18:23:35 UTC (rev 247193)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Jonas Heinrich 
+# Contributor: Jonas Heinrich 
+
+pkgname=libreoffice-online
+pkgver=5.4.0.2
+pkgrel=1
+pkgdesc="HTML5-based/cloud-based version of the office suite"
+arch=('x86_64' 'i686')
+url="https://cgit.freedesktop.org/libreoffice/online/;
+license=("MPL")
+makedepends=("cppunit" "poco" "libreoffice-fresh-sdk>=5.4" "jake" "npm" 
"chrpath" "python-polib")
+depends=("libpng12" "poco" "pcre" "cpio" "libreoffice" "openssl-1.0")
+backup=("etc/libreoffice-online/loolwsd.xml")
+install="libreoffice-online.install"
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/LibreOffice/online/archive/libreoffice-${pkgver}.tar.gz;
+   "loolwsd.service"
+   "build-fix.patch"
+   "hack-annoying-errors.patch")
+sha512sums=('472ddc83e3dd4502cdfadb9b45899d6f05f4d1969f71e030cba847e46bc6ad32bf720087df16cc305b0fe1d71d958aa2e4f0ffd0178b60871a4113178ddb'
+
'4a809d8420f42eef99a831b32c94d9ce336b5aa5ccac3c44b99346b94e9d7a6ae8b4e06760057f20e844837c3ab2175146bef63ba99e1a50d016a890704cc2c9'
+
'049036898f59f1a7f18c6f186042b7ecee84b010256c813c633e0854b206b1b94343972cc8a374990eb22919a223429de4db712f70a89851f266e6500b67c2b1'
+
'530dad9becee9504d1e2fff5c7e5115daf62ac48312c5cf42f9b44dc0f21665a05f5788606d988f631d3b6dc4dfcf866d564ac1f8bf087c4efe3c197b3206f2d')
+
+prepare() {
+  cd "${srcdir}/online-libreoffice-${pkgver}"
+  patch -p1 <"$srcdir"/build-fix.patch
+  patch -p1 <"$srcdir"/hack-annoying-errors.patch
+}
+
+build() {
+  cd "${srcdir}/online-libreoffice-${pkgver}"
+  ./autogen.sh
+  export PKG_CONFIG_PATH=/usr/lib/openssl-1.0/pkgconfig
+  CPPFLAGS="-I/usr/include/openssl-1.0 -Wno-implicit-fallthrough 
-Wno-format-truncation" \
+  CFLAGS="-I/usr/include/openssl-1.0" \
+  LDFLAGS="-L/usr/lib/openssl-1.0" \
+  ./configure --enable-silent-rules \
+   --with-lokit-path=/usr/include/libreoffice \
+   --with-lo-path=/usr/lib/libreoffice \
+   --prefix=/usr \
+   --sysconfdir=/etc
+  BUILDING_FROM_RPMBUILD=yes make
+}
+
+package() {
+  cd "${srcdir}/online-libreoffice-${pkgver}"
+  BUILDING_FROM_RPMBUILD=yes make DESTDIR=${pkgdir} install
+  install 

[arch-commits] Commit in libreoffice-online/trunk (3 files)

2017-07-31 Thread Sergej Pupykin
Date: Monday, July 31, 2017 @ 18:23:10
  Author: spupykin
Revision: 247192

upgpkg: libreoffice-online 5.4.0.2-1

Added:
  libreoffice-online/trunk/hack-annoying-errors.patch
Modified:
  libreoffice-online/trunk/PKGBUILD
  libreoffice-online/trunk/libreoffice-online.install

+
 PKGBUILD   |   33 ++---
 hack-annoying-errors.patch |   25 +
 libreoffice-online.install |2 +-
 3 files changed, 44 insertions(+), 16 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-07-31 18:22:34 UTC (rev 247191)
+++ PKGBUILD2017-07-31 18:23:10 UTC (rev 247192)
@@ -4,30 +4,33 @@
 # Contributor: Jonas Heinrich 
 
 pkgname=libreoffice-online
-pkgver=2.1.1
-pkgrel=2
+pkgver=5.4.0.2
+pkgrel=1
 pkgdesc="HTML5-based/cloud-based version of the office suite"
 arch=('x86_64' 'i686')
 url="https://cgit.freedesktop.org/libreoffice/online/;
 license=("MPL")
-makedepends=("cppunit" "poco" "libreoffice-fresh-sdk" "jake" "npm" "chrpath" 
"python-polib")
+makedepends=("cppunit" "poco" "libreoffice-fresh-sdk>=5.4" "jake" "npm" 
"chrpath" "python-polib")
 depends=("libpng12" "poco" "pcre" "cpio" "libreoffice" "openssl-1.0")
-backup=("etc/loolwsd/loolwsd.xml")
+backup=("etc/libreoffice-online/loolwsd.xml")
 install="libreoffice-online.install"
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/LibreOffice/online/archive/${pkgver}.tar.gz;
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/LibreOffice/online/archive/libreoffice-${pkgver}.tar.gz;
"loolwsd.service"
-   "build-fix.patch")
-sha512sums=('fbb939631e9938800389e09842cf0bf079c0c2907f93ba13cc2e1c2dc4950f36a7206f2145c9f905c916820fed4fcd02b1b72765f0d299df804b67d82e3d045f'
+   "build-fix.patch"
+   "hack-annoying-errors.patch")
+sha512sums=('472ddc83e3dd4502cdfadb9b45899d6f05f4d1969f71e030cba847e46bc6ad32bf720087df16cc305b0fe1d71d958aa2e4f0ffd0178b60871a4113178ddb'
 
'4a809d8420f42eef99a831b32c94d9ce336b5aa5ccac3c44b99346b94e9d7a6ae8b4e06760057f20e844837c3ab2175146bef63ba99e1a50d016a890704cc2c9'
-
'049036898f59f1a7f18c6f186042b7ecee84b010256c813c633e0854b206b1b94343972cc8a374990eb22919a223429de4db712f70a89851f266e6500b67c2b1')
+
'049036898f59f1a7f18c6f186042b7ecee84b010256c813c633e0854b206b1b94343972cc8a374990eb22919a223429de4db712f70a89851f266e6500b67c2b1'
+
'530dad9becee9504d1e2fff5c7e5115daf62ac48312c5cf42f9b44dc0f21665a05f5788606d988f631d3b6dc4dfcf866d564ac1f8bf087c4efe3c197b3206f2d')
 
 prepare() {
-  cd "${srcdir}/online-${pkgver}"
+  cd "${srcdir}/online-libreoffice-${pkgver}"
   patch -p1 <"$srcdir"/build-fix.patch
+  patch -p1 <"$srcdir"/hack-annoying-errors.patch
 }
 
 build() {
-  cd "${srcdir}/online-${pkgver}"
+  cd "${srcdir}/online-libreoffice-${pkgver}"
   ./autogen.sh
   export PKG_CONFIG_PATH=/usr/lib/openssl-1.0/pkgconfig
   CPPFLAGS="-I/usr/include/openssl-1.0 -Wno-implicit-fallthrough 
-Wno-format-truncation" \
@@ -42,15 +45,15 @@
 }
 
 package() {
-  cd "${srcdir}/online-${pkgver}"
+  cd "${srcdir}/online-libreoffice-${pkgver}"
   BUILDING_FROM_RPMBUILD=yes make DESTDIR=${pkgdir} install
   install -Dm644 "${srcdir}/loolwsd.service" 
"${pkgdir}/usr/lib/systemd/system/loolwsd.service"
   mkdir -p "${pkgdir}/var/lib/lool"
-  mkdir -p "${pkgdir}/var/cache/loolwsd"
+  mkdir -p "${pkgdir}/var/cache/libreoffice-online"
   mkdir -p "${pkgdir}/var/lib/lool/child-roots"
   chmod u+w "${pkgdir}/var/lib/lool/child-roots"
-  sed -i 's|/usr/var/cache/loolwsd|/var/cache/loolwsd|g' 
${pkgdir}/etc/loolwsd/loolwsd.xml
-  mkdir -p "${pkgdir}/usr/share/loolwsd/loleaflet"
-  cp -r "loleaflet/dist" "${pkgdir}/usr/share/loolwsd/loleaflet/"
+  sed -i 's|/usr/var/cache/libreoffice-online|/var/cache/libreoffice-online|g' 
${pkgdir}/etc/libreoffice-online/loolwsd.xml
+  mkdir -p "${pkgdir}/usr/share/libreoffice-online/loleaflet"
+  cp -r "loleaflet/dist" "${pkgdir}/usr/share/libreoffice-online/loleaflet/"
   chrpath -d "$pkgdir/usr/bin/"{loolmount,loolforkit}
 }

Added: hack-annoying-errors.patch
===
--- hack-annoying-errors.patch  (rev 0)
+++ hack-annoying-errors.patch  2017-07-31 18:23:10 UTC (rev 247192)
@@ -0,0 +1,25 @@
+diff -wbBur online-libreoffice-5.3.4.2/kit/Kit.cpp 
online-libreoffice-5.3.4.2.q/kit/Kit.cpp
+--- online-libreoffice-5.3.4.2/kit/Kit.cpp 2017-07-12 19:24:55.656651908 
+0300
 online-libreoffice-5.3.4.2.q/kit/Kit.cpp   2017-07-12 19:24:32.139985511 
+0300
+@@ -150,8 +150,13 @@
+ File(newPath.parent()).createDirectories();
+ if (link(fpath, newPath.toString().c_str()) == -1)
+ {
++if(errno != EEXIST)
++{
++if(errno != EXDEV)
++{
+ LOG_SYS("link(\"" << fpath << "\", \"" <<
+ 

[arch-commits] Commit in mythplugins/repos (18 files)

2017-07-31 Thread Ike Devolder
Date: Monday, July 31, 2017 @ 18:22:34
  Author: idevolder
Revision: 247191

db-move: moved mythplugins from [community-testing] to [community] (i686, 
x86_64)

Added:
  mythplugins/repos/community-i686/PKGBUILD
(from rev 247190, mythplugins/repos/community-testing-i686/PKGBUILD)
  mythplugins/repos/community-i686/cdparanoia.patch
(from rev 247190, mythplugins/repos/community-testing-i686/cdparanoia.patch)
  mythplugins/repos/community-i686/mythplugins-mythweb.install
(from rev 247190, 
mythplugins/repos/community-testing-i686/mythplugins-mythweb.install)
  mythplugins/repos/community-i686/mythplugins-mythzoneminder.install
(from rev 247190, 
mythplugins/repos/community-testing-i686/mythplugins-mythzoneminder.install)
  mythplugins/repos/community-x86_64/PKGBUILD
(from rev 247190, mythplugins/repos/community-testing-x86_64/PKGBUILD)
  mythplugins/repos/community-x86_64/cdparanoia.patch
(from rev 247190, 
mythplugins/repos/community-testing-x86_64/cdparanoia.patch)
  mythplugins/repos/community-x86_64/mythplugins-mythweb.install
(from rev 247190, 
mythplugins/repos/community-testing-x86_64/mythplugins-mythweb.install)
  mythplugins/repos/community-x86_64/mythplugins-mythzoneminder.install
(from rev 247190, 
mythplugins/repos/community-testing-x86_64/mythplugins-mythzoneminder.install)
Deleted:
  mythplugins/repos/community-i686/PKGBUILD
  mythplugins/repos/community-i686/cdparanoia.patch
  mythplugins/repos/community-i686/mythplugins-mythweb.install
  mythplugins/repos/community-i686/mythplugins-mythzoneminder.install
  mythplugins/repos/community-testing-i686/
  mythplugins/repos/community-testing-x86_64/
  mythplugins/repos/community-x86_64/PKGBUILD
  mythplugins/repos/community-x86_64/cdparanoia.patch
  mythplugins/repos/community-x86_64/mythplugins-mythweb.install
  mythplugins/repos/community-x86_64/mythplugins-mythzoneminder.install

-+
 /PKGBUILD   |  288 ++
 /cdparanoia.patch   |  104 ++
 /mythplugins-mythweb.install|8 
 /mythplugins-mythzoneminder.install |6 
 community-i686/PKGBUILD |  144 -
 community-i686/cdparanoia.patch |   52 ---
 community-i686/mythplugins-mythweb.install  |4 
 community-i686/mythplugins-mythzoneminder.install   |3 
 community-x86_64/PKGBUILD   |  144 -
 community-x86_64/cdparanoia.patch   |   52 ---
 community-x86_64/mythplugins-mythweb.install|4 
 community-x86_64/mythplugins-mythzoneminder.install |3 
 12 files changed, 406 insertions(+), 406 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-07-31 18:09:08 UTC (rev 247190)
+++ community-i686/PKGBUILD 2017-07-31 18:22:34 UTC (rev 247191)
@@ -1,144 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: Jonathan Conder 
-# Contributor: Giovanni Scafora 
-
-pkgbase=mythplugins
-pkgname=('mythplugins-mytharchive'
- 'mythplugins-mythbrowser'
- 'mythplugins-mythgallery'
- 'mythplugins-mythgame'
- 'mythplugins-mythmusic'
- 'mythplugins-mythnetvision'
- 'mythplugins-mythnews'
- 'mythplugins-mythweather'
- 'mythplugins-mythweb'
- 'mythplugins-mythzoneminder')
-pkgver=0.28.1
-pkgrel=3
-epoch=1
-arch=('i686' 'x86_64')
-url="http://www.mythtv.org;
-license=('GPL')
-makedepends=('cdrtools' 'dvdauthor' 'dvd+rw-tools' 'ffmpeg' 'flac' 'libexif'
- 'libvorbis' 'mesa' 'mesa-libgl' 'mplayer' 'mythtv'
- 'perl-datetime-format-iso8601' 'perl-date-manip' 'perl-image-size'
- 'perl-json' 'perl-libwww' 'perl-soap-lite' 'perl-xml-sax'
- 'perl-xml-simple' 'perl-xml-xpath' 'python2-oauth' 
'python2-pillow'
- 'python2-pycurl' 'zlib' 'gdb')
-source=("mythtv-$pkgver.tar.gz::https://github.com/MythTV/mythtv/archive/v$pkgver.tar.gz;
-
"mythweb-$pkgver.tar.gz::https://github.com/MythTV/mythweb/archive/v$pkgver.tar.gz;
-'cdparanoia.patch')
-sha256sums=('3d12039343e589ae9d03ed4bd8cce9db36b1f1e98c1885fdd783bd80729c0164'
-'bbd82992230d3571eba55a26a91cc3f2dcddfa631d1822ce58e1bf99f2537244'
-'004f1e4734830709d2ab5ebb804560514f2bf525abc2f11142501a81eba0754c')
-
-prepare() {
-  cd "$srcdir/mythtv-$pkgver/$pkgbase"
-
-  find . -name '*.py' -type f | xargs sed -i 
's@^#!.*python$@#!/usr/bin/python2@'
-  patch -Np1 -i "$srcdir/cdparanoia.patch"
-
-  cd "$srcdir/mythweb-$pkgver"
-
-  sed -re 's@/usr/local.*/usr/share@/usr/share@' -i 'mythweb.php'
-}
-
-build() {
-  cd "$srcdir/mythtv-$pkgver/$pkgbase"
-
-  ./configure --prefix=/usr \
-  --enable-all \
-  --python=python2
-  

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

2017-07-31 Thread Felix Yan
Date: Monday, July 31, 2017 @ 18:09:08
  Author: felixonmars
Revision: 247190

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  haskell-store/repos/community-staging-i686/
  haskell-store/repos/community-staging-i686/PKGBUILD
(from rev 247189, haskell-store/trunk/PKGBUILD)
  haskell-store/repos/community-staging-x86_64/
  haskell-store/repos/community-staging-x86_64/PKGBUILD
(from rev 247189, haskell-store/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   51 
 community-staging-x86_64/PKGBUILD |   51 
 2 files changed, 102 insertions(+)

Copied: haskell-store/repos/community-staging-i686/PKGBUILD (from rev 247189, 
haskell-store/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-07-31 18:09:08 UTC (rev 247190)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=store
+pkgname=haskell-store
+pkgver=0.4.3.1
+pkgrel=30
+pkgdesc="Fast binary serialization"
+url="https://github.com/fpco/store;
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+depends=('ghc' 'haskell-async' 'haskell-base-orphans' 
'haskell-base64-bytestring'
+ 'haskell-conduit' 'haskell-contravariant' 'haskell-cryptohash' 
'haskell-free'
+ 'haskell-hashable' 'haskell-hspec' 'haskell-hspec-smallcheck' 
'haskell-lifted-base'
+ 'haskell-monad-control' 'haskell-mono-traversable' 'haskell-network' 
'haskell-primitive'
+ 'haskell-resourcet' 'haskell-safe' 'haskell-semigroups' 
'haskell-smallcheck'
+ 'haskell-streaming-commons' 'haskell-store-core' 'haskell-syb' 
'haskell-text'
+ 'haskell-th-lift' 'haskell-th-lift-instances' 'haskell-th-orphans' 
'haskell-th-reify-many'
+ 'haskell-th-utilities' 'haskell-unordered-containers' 
'haskell-vector' 'haskell-void')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('fde163ef8ccc6a71c4db07681235be7dcebc5f37e2a222b194f1c34fdeef0fb9814383af56ded876a59bcb53bf2126b04a0272db1b05f28d093851cbc56a9f35')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-comparison-bench -f-small-bench
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}

Copied: haskell-store/repos/community-staging-x86_64/PKGBUILD (from rev 247189, 
haskell-store/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-07-31 18:09:08 UTC (rev 247190)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=store
+pkgname=haskell-store
+pkgver=0.4.3.1
+pkgrel=30
+pkgdesc="Fast binary serialization"
+url="https://github.com/fpco/store;
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+depends=('ghc' 'haskell-async' 'haskell-base-orphans' 
'haskell-base64-bytestring'
+ 'haskell-conduit' 'haskell-contravariant' 'haskell-cryptohash' 
'haskell-free'
+ 'haskell-hashable' 'haskell-hspec' 'haskell-hspec-smallcheck' 
'haskell-lifted-base'
+ 'haskell-monad-control' 'haskell-mono-traversable' 'haskell-network' 
'haskell-primitive'
+ 'haskell-resourcet' 'haskell-safe' 'haskell-semigroups' 
'haskell-smallcheck'
+ 'haskell-streaming-commons' 'haskell-store-core' 'haskell-syb' 
'haskell-text'
+ 'haskell-th-lift' 'haskell-th-lift-instances' 'haskell-th-orphans' 
'haskell-th-reify-many'
+ 'haskell-th-utilities' 'haskell-unordered-containers' 
'haskell-vector' 'haskell-void')

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

2017-07-31 Thread Felix Yan
Date: Monday, July 31, 2017 @ 18:08:45
  Author: felixonmars
Revision: 247189

upgpkg: haskell-store 0.4.3.1-30

rebuild with distributive,0.5.3

Modified:
  haskell-store/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-31 17:58:54 UTC (rev 247188)
+++ PKGBUILD2017-07-31 18:08:45 UTC (rev 247189)
@@ -4,7 +4,7 @@
 _hkgname=store
 pkgname=haskell-store
 pkgver=0.4.3.1
-pkgrel=29
+pkgrel=30
 pkgdesc="Fast binary serialization"
 url="https://github.com/fpco/store;
 license=('custom:BSD3')


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

2017-07-31 Thread Felix Yan
Date: Monday, July 31, 2017 @ 17:58:54
  Author: felixonmars
Revision: 247188

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  haskell-xcffib/repos/community-staging-i686/
  haskell-xcffib/repos/community-staging-i686/PKGBUILD
(from rev 247187, haskell-xcffib/trunk/PKGBUILD)
  haskell-xcffib/repos/community-staging-x86_64/
  haskell-xcffib/repos/community-staging-x86_64/PKGBUILD
(from rev 247187, haskell-xcffib/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   45 
 community-staging-x86_64/PKGBUILD |   45 
 2 files changed, 90 insertions(+)

Copied: haskell-xcffib/repos/community-staging-i686/PKGBUILD (from rev 247187, 
haskell-xcffib/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-07-31 17:58:54 UTC (rev 247188)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=xcffib
+pkgname=haskell-xcffib
+pkgver=0.5.1
+pkgrel=34
+pkgdesc="A cffi-based python binding for X"
+url="http://github.com/tych0/xcffib;
+license=('Apache')
+arch=('i686' 'x86_64')
+depends=('ghc' 'haskell-attoparsec' 'haskell-either' 'haskell-filemanip' 
'haskell-language-python'
+ 'haskell-mtl' 'haskell-optparse-applicative' 'haskell-semigroups' 
'haskell-split'
+ 'haskell-xcb-types')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+md5sums=('c4d954462b3636cbd7e61809250e74fb')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}

Copied: haskell-xcffib/repos/community-staging-x86_64/PKGBUILD (from rev 
247187, haskell-xcffib/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-07-31 17:58:54 UTC (rev 247188)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=xcffib
+pkgname=haskell-xcffib
+pkgver=0.5.1
+pkgrel=34
+pkgdesc="A cffi-based python binding for X"
+url="http://github.com/tych0/xcffib;
+license=('Apache')
+arch=('i686' 'x86_64')
+depends=('ghc' 'haskell-attoparsec' 'haskell-either' 'haskell-filemanip' 
'haskell-language-python'
+ 'haskell-mtl' 'haskell-optparse-applicative' 'haskell-semigroups' 
'haskell-split'
+ 'haskell-xcb-types')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+md5sums=('c4d954462b3636cbd7e61809250e74fb')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+

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

2017-07-31 Thread Felix Yan
Date: Monday, July 31, 2017 @ 17:58:32
  Author: felixonmars
Revision: 247187

upgpkg: haskell-xcffib 0.5.1-34

rebuild with distributive,0.5.3

Modified:
  haskell-xcffib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-31 17:56:50 UTC (rev 247186)
+++ PKGBUILD2017-07-31 17:58:32 UTC (rev 247187)
@@ -4,7 +4,7 @@
 _hkgname=xcffib
 pkgname=haskell-xcffib
 pkgver=0.5.1
-pkgrel=33
+pkgrel=34
 pkgdesc="A cffi-based python binding for X"
 url="http://github.com/tych0/xcffib;
 license=('Apache')


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

2017-07-31 Thread Felix Yan
Date: Monday, July 31, 2017 @ 17:56:24
  Author: felixonmars
Revision: 247185

upgpkg: haskell-optparse-simple 0.0.3-53

rebuild with distributive,0.5.3

Modified:
  haskell-optparse-simple/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-31 17:54:59 UTC (rev 247184)
+++ PKGBUILD2017-07-31 17:56:24 UTC (rev 247185)
@@ -5,7 +5,7 @@
 _hkgname=optparse-simple
 pkgname=haskell-optparse-simple
 pkgver=0.0.3
-pkgrel=52
+pkgrel=53
 pkgdesc="Simple interface to optparse-applicative"
 url="https://hackage.haskell.org/package/${_hkgname};
 license=("custom:BSD3")


[arch-commits] Commit in haskell-optparse-simple/repos (4 files)

2017-07-31 Thread Felix Yan
Date: Monday, July 31, 2017 @ 17:56:50
  Author: felixonmars
Revision: 247186

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  haskell-optparse-simple/repos/community-staging-i686/
  haskell-optparse-simple/repos/community-staging-i686/PKGBUILD
(from rev 247185, haskell-optparse-simple/trunk/PKGBUILD)
  haskell-optparse-simple/repos/community-staging-x86_64/
  haskell-optparse-simple/repos/community-staging-x86_64/PKGBUILD
(from rev 247185, haskell-optparse-simple/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   44 
 community-staging-x86_64/PKGBUILD |   44 
 2 files changed, 88 insertions(+)

Copied: haskell-optparse-simple/repos/community-staging-i686/PKGBUILD (from rev 
247185, haskell-optparse-simple/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-07-31 17:56:50 UTC (rev 247186)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=optparse-simple
+pkgname=haskell-optparse-simple
+pkgver=0.0.3
+pkgrel=53
+pkgdesc="Simple interface to optparse-applicative"
+url="https://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc' "haskell-either" "haskell-gitrev" 
"haskell-optparse-applicative")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('4547f0a6c1bd959b1d9c3c2a5fabee39ac9a19dffabbb2d75461a2d461df8c7e')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}

Copied: haskell-optparse-simple/repos/community-staging-x86_64/PKGBUILD (from 
rev 247185, haskell-optparse-simple/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-07-31 17:56:50 UTC (rev 247186)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=optparse-simple
+pkgname=haskell-optparse-simple
+pkgver=0.0.3
+pkgrel=53
+pkgdesc="Simple interface to optparse-applicative"
+url="https://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc' "haskell-either" "haskell-gitrev" 
"haskell-optparse-applicative")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('4547f0a6c1bd959b1d9c3c2a5fabee39ac9a19dffabbb2d75461a2d461df8c7e')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 

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

2017-07-31 Thread Felix Yan
Date: Monday, July 31, 2017 @ 17:54:59
  Author: felixonmars
Revision: 247184

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  ghc-mod/repos/community-staging-i686/
  ghc-mod/repos/community-staging-i686/PKGBUILD
(from rev 247183, ghc-mod/trunk/PKGBUILD)
  ghc-mod/repos/community-staging-x86_64/
  ghc-mod/repos/community-staging-x86_64/PKGBUILD
(from rev 247183, ghc-mod/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   56 
 community-staging-x86_64/PKGBUILD |   56 
 2 files changed, 112 insertions(+)

Copied: ghc-mod/repos/community-staging-i686/PKGBUILD (from rev 247183, 
ghc-mod/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-07-31 17:54:59 UTC (rev 247184)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=ghc-mod
+pkgver=5.8.0.0
+_commit=9ab25526b8690daecaa3d34a7e30f022f7b388bc
+pkgrel=28
+pkgdesc="Happy Haskell Programming"
+url="http://www.mew.org/~kazu/proj/ghc-mod/;
+license=("AGPL3")
+arch=('i686' 'x86_64')
+depends=('ghc' "cabal-helper" "haskell-djinn-ghc" "haskell-extra" 
"haskell-fclabels"
+ "haskell-ghc-paths" "haskell-ghc-syb-utils" "haskell-src-exts" "hlint"
+ "haskell-monad-control" "haskell-monad-journal" "haskell-mtl" 
"haskell-old-time"
+ "haskell-optparse-applicative" "haskell-pipes" "haskell-safe" 
"haskell-semigroups"
+ "haskell-split" "haskell-syb" "haskell-temporary" "haskell-text"
+ "haskell-transformers-base")
+conflicts=('haskell-ghc-mod')
+replaces=('haskell-ghc-mod')
+source=("$pkgname-$_commit.tar.gz::https://github.com/DanielG/ghc-mod/archive/$_commit.tar.gz;)
+sha256sums=('75d83356999c2a1e6ea1d9c4340dcf3d260d2b462c4e9691ceb1f28385b3e70b')
+
+prepare() {
+cd $pkgname-$_commit
+sed -i 's/, optparse-applicative == 0.13.0.*/, optparse-applicative == 
0.13.*/' ghc-mod.cabal
+}
+
+build() {
+cd $pkgname-$_commit
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $pkgname-$_commit
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${pkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "COPYING.BSD3" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/COPYING.BSD3"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}

Copied: ghc-mod/repos/community-staging-x86_64/PKGBUILD (from rev 247183, 
ghc-mod/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-07-31 17:54:59 UTC (rev 247184)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=ghc-mod
+pkgver=5.8.0.0
+_commit=9ab25526b8690daecaa3d34a7e30f022f7b388bc
+pkgrel=28
+pkgdesc="Happy Haskell Programming"
+url="http://www.mew.org/~kazu/proj/ghc-mod/;
+license=("AGPL3")
+arch=('i686' 'x86_64')
+depends=('ghc' "cabal-helper" "haskell-djinn-ghc" "haskell-extra" 
"haskell-fclabels"
+ "haskell-ghc-paths" "haskell-ghc-syb-utils" "haskell-src-exts" "hlint"
+ "haskell-monad-control" "haskell-monad-journal" "haskell-mtl" 
"haskell-old-time"
+ "haskell-optparse-applicative" "haskell-pipes" "haskell-safe" 
"haskell-semigroups"
+ "haskell-split" "haskell-syb" "haskell-temporary" "haskell-text"
+ "haskell-transformers-base")
+conflicts=('haskell-ghc-mod')
+replaces=('haskell-ghc-mod')
+source=("$pkgname-$_commit.tar.gz::https://github.com/DanielG/ghc-mod/archive/$_commit.tar.gz;)
+sha256sums=('75d83356999c2a1e6ea1d9c4340dcf3d260d2b462c4e9691ceb1f28385b3e70b')
+
+prepare() {
+cd $pkgname-$_commit
+sed -i 's/, optparse-applicative == 0.13.0.*/, optparse-applicative == 
0.13.*/' ghc-mod.cabal
+}
+

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

2017-07-31 Thread Felix Yan
Date: Monday, July 31, 2017 @ 17:54:35
  Author: felixonmars
Revision: 247183

upgpkg: ghc-mod 5.8.0.0-28

rebuild with distributive,0.5.3

Modified:
  ghc-mod/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-31 17:47:37 UTC (rev 247182)
+++ PKGBUILD2017-07-31 17:54:35 UTC (rev 247183)
@@ -5,7 +5,7 @@
 pkgname=ghc-mod
 pkgver=5.8.0.0
 _commit=9ab25526b8690daecaa3d34a7e30f022f7b388bc
-pkgrel=27
+pkgrel=28
 pkgdesc="Happy Haskell Programming"
 url="http://www.mew.org/~kazu/proj/ghc-mod/;
 license=("AGPL3")


[arch-commits] Commit in haskell-monad-journal/repos (4 files)

2017-07-31 Thread Felix Yan
Date: Monday, July 31, 2017 @ 17:47:37
  Author: felixonmars
Revision: 247182

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  haskell-monad-journal/repos/community-staging-i686/
  haskell-monad-journal/repos/community-staging-i686/PKGBUILD
(from rev 247181, haskell-monad-journal/trunk/PKGBUILD)
  haskell-monad-journal/repos/community-staging-x86_64/
  haskell-monad-journal/repos/community-staging-x86_64/PKGBUILD
(from rev 247181, haskell-monad-journal/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   44 
 community-staging-x86_64/PKGBUILD |   44 
 2 files changed, 88 insertions(+)

Copied: haskell-monad-journal/repos/community-staging-i686/PKGBUILD (from rev 
247181, haskell-monad-journal/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-07-31 17:47:37 UTC (rev 247182)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=monad-journal
+pkgname=haskell-monad-journal
+pkgver=0.7.2
+pkgrel=28
+pkgdesc="Pure logger typeclass and monad transformer"
+url="http://github.com/phaazon/monad-journal;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc' "haskell-either" "haskell-monad-control" "haskell-mtl" 
"haskell-transformers-base")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('72b1a676bd994198544c4861a05b1d1b4f7ae55ea35a837cace539b8d6c69d08')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}

Copied: haskell-monad-journal/repos/community-staging-x86_64/PKGBUILD (from rev 
247181, haskell-monad-journal/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-07-31 17:47:37 UTC (rev 247182)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=monad-journal
+pkgname=haskell-monad-journal
+pkgver=0.7.2
+pkgrel=28
+pkgdesc="Pure logger typeclass and monad transformer"
+url="http://github.com/phaazon/monad-journal;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc' "haskell-either" "haskell-monad-control" "haskell-mtl" 
"haskell-transformers-base")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('72b1a676bd994198544c4861a05b1d1b4f7ae55ea35a837cace539b8d6c69d08')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 

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

2017-07-31 Thread Felix Yan
Date: Monday, July 31, 2017 @ 17:47:14
  Author: felixonmars
Revision: 247181

upgpkg: haskell-monad-journal 0.7.2-28

rebuild with distributive,0.5.3

Modified:
  haskell-monad-journal/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-31 17:45:30 UTC (rev 247180)
+++ PKGBUILD2017-07-31 17:47:14 UTC (rev 247181)
@@ -5,7 +5,7 @@
 _hkgname=monad-journal
 pkgname=haskell-monad-journal
 pkgver=0.7.2
-pkgrel=27
+pkgrel=28
 pkgdesc="Pure logger typeclass and monad transformer"
 url="http://github.com/phaazon/monad-journal;
 license=("custom:BSD3")


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

2017-07-31 Thread Felix Yan
Date: Monday, July 31, 2017 @ 17:45:30
  Author: felixonmars
Revision: 247180

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

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

---+
 community-staging-i686/PKGBUILD   |   44 
 community-staging-x86_64/PKGBUILD |   44 
 2 files changed, 88 insertions(+)

Copied: haskell-hasql-transaction/repos/community-staging-i686/PKGBUILD (from 
rev 247179, haskell-hasql-transaction/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-07-31 17:45:30 UTC (rev 247180)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=hasql-transaction
+pkgname=haskell-hasql-transaction
+pkgver=0.5
+pkgrel=45
+pkgdesc="A composable abstraction over the retryable transactions for Hasql"
+url="https://github.com/nikita-volkov/hasql-transaction;
+license=('MIT')
+arch=('i686' 'x86_64')
+depends=('ghc' 'haskell-base-prelude' 'haskell-bytestring-tree-builder'
+ 'haskell-contravariant' 'haskell-contravariant-extras' 
'haskell-hasql' 'haskell-mtl')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+md5sums=('ed40b30813c53012e492e286744c9609')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}

Copied: haskell-hasql-transaction/repos/community-staging-x86_64/PKGBUILD (from 
rev 247179, haskell-hasql-transaction/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-07-31 17:45:30 UTC (rev 247180)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=hasql-transaction
+pkgname=haskell-hasql-transaction
+pkgver=0.5
+pkgrel=45
+pkgdesc="A composable abstraction over the retryable transactions for Hasql"
+url="https://github.com/nikita-volkov/hasql-transaction;
+license=('MIT')
+arch=('i686' 'x86_64')
+depends=('ghc' 'haskell-base-prelude' 'haskell-bytestring-tree-builder'
+ 'haskell-contravariant' 'haskell-contravariant-extras' 
'haskell-hasql' 'haskell-mtl')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+md5sums=('ed40b30813c53012e492e286744c9609')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s 

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

2017-07-31 Thread Felix Yan
Date: Monday, July 31, 2017 @ 17:45:08
  Author: felixonmars
Revision: 247179

upgpkg: haskell-hasql-transaction 0.5-45

rebuild with distributive,0.5.3

Modified:
  haskell-hasql-transaction/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-31 17:43:27 UTC (rev 247178)
+++ PKGBUILD2017-07-31 17:45:08 UTC (rev 247179)
@@ -4,7 +4,7 @@
 _hkgname=hasql-transaction
 pkgname=haskell-hasql-transaction
 pkgver=0.5
-pkgrel=44
+pkgrel=45
 pkgdesc="A composable abstraction over the retryable transactions for Hasql"
 url="https://github.com/nikita-volkov/hasql-transaction;
 license=('MIT')


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

2017-07-31 Thread Felix Yan
Date: Monday, July 31, 2017 @ 17:43:27
  Author: felixonmars
Revision: 247178

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

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

---+
 community-staging-i686/PKGBUILD   |   44 
 community-staging-x86_64/PKGBUILD |   44 
 2 files changed, 88 insertions(+)

Copied: haskell-hasql-pool/repos/community-staging-i686/PKGBUILD (from rev 
247177, haskell-hasql-pool/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-07-31 17:43:27 UTC (rev 247178)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Thomas Dziedzic 
+
+_hkgname=hasql-pool
+pkgname=haskell-hasql-pool
+pkgver=0.4.1
+pkgrel=63
+pkgdesc="A pool of connections for Hasql"
+url="https://github.com/nikita-volkov/hasql-pool;
+license=('MIT')
+arch=('i686' 'x86_64')
+depends=('ghc' 'haskell-base-prelude' 'haskell-hasql' 'haskell-resource-pool')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+md5sums=('c0fcb158ccfc72f1101d9a9289ade442')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}

Copied: haskell-hasql-pool/repos/community-staging-x86_64/PKGBUILD (from rev 
247177, haskell-hasql-pool/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-07-31 17:43:27 UTC (rev 247178)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Thomas Dziedzic 
+
+_hkgname=hasql-pool
+pkgname=haskell-hasql-pool
+pkgver=0.4.1
+pkgrel=63
+pkgdesc="A pool of connections for Hasql"
+url="https://github.com/nikita-volkov/hasql-pool;
+license=('MIT')
+arch=('i686' 'x86_64')
+depends=('ghc' 'haskell-base-prelude' 'haskell-hasql' 'haskell-resource-pool')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+md5sums=('c0fcb158ccfc72f1101d9a9289ade442')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f 

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

2017-07-31 Thread Felix Yan
Date: Monday, July 31, 2017 @ 17:43:04
  Author: felixonmars
Revision: 247177

upgpkg: haskell-hasql-pool 0.4.1-63

rebuild with distributive,0.5.3

Modified:
  haskell-hasql-pool/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-31 17:41:29 UTC (rev 247176)
+++ PKGBUILD2017-07-31 17:43:04 UTC (rev 247177)
@@ -5,7 +5,7 @@
 _hkgname=hasql-pool
 pkgname=haskell-hasql-pool
 pkgver=0.4.1
-pkgrel=62
+pkgrel=63
 pkgdesc="A pool of connections for Hasql"
 url="https://github.com/nikita-volkov/hasql-pool;
 license=('MIT')


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

2017-07-31 Thread Felix Yan
Date: Monday, July 31, 2017 @ 17:41:29
  Author: felixonmars
Revision: 247176

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

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

---+
 community-staging-i686/PKGBUILD   |   48 
 community-staging-x86_64/PKGBUILD |   48 
 2 files changed, 96 insertions(+)

Copied: haskell-hasql/repos/community-staging-i686/PKGBUILD (from rev 247175, 
haskell-hasql/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-07-31 17:41:29 UTC (rev 247176)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Thomas Dziedzic 
+
+_hkgname=hasql
+pkgname=haskell-hasql
+pkgver=0.19.18
+pkgrel=39
+pkgdesc="An efficient PostgreSQL driver and a flexible mapping API"
+url="https://github.com/nikita-volkov/hasql;
+license=('MIT')
+arch=('i686' 'x86_64')
+depends=('ghc' 'haskell-attoparsec' 'haskell-base-prelude' 
'haskell-bytestring-strict-builder'
+ 'haskell-contravariant' 'haskell-contravariant-extras' 
'haskell-data-default-class'
+ 'haskell-dlist' 'haskell-either' 'haskell-hashable' 
'haskell-hashtables' 'haskell-loch-th'
+ 'haskell-mtl' 'haskell-placeholders' 'haskell-postgresql-binary' 
'haskell-postgresql-libpq'
+ 'haskell-profunctors' 'haskell-semigroups' 'haskell-text' 
'haskell-vector')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('f368ae2e8ae20b60100597f371c613310819f91d0c256859cfa8bee9d478d991505a7184d31d950a886217d2186d2a2604b28920460af1f590a39ab5b687b7f0')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}

Copied: haskell-hasql/repos/community-staging-x86_64/PKGBUILD (from rev 247175, 
haskell-hasql/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-07-31 17:41:29 UTC (rev 247176)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Thomas Dziedzic 
+
+_hkgname=hasql
+pkgname=haskell-hasql
+pkgver=0.19.18
+pkgrel=39
+pkgdesc="An efficient PostgreSQL driver and a flexible mapping API"
+url="https://github.com/nikita-volkov/hasql;
+license=('MIT')
+arch=('i686' 'x86_64')
+depends=('ghc' 'haskell-attoparsec' 'haskell-base-prelude' 
'haskell-bytestring-strict-builder'
+ 'haskell-contravariant' 'haskell-contravariant-extras' 
'haskell-data-default-class'
+ 'haskell-dlist' 'haskell-either' 'haskell-hashable' 
'haskell-hashtables' 'haskell-loch-th'
+ 'haskell-mtl' 'haskell-placeholders' 'haskell-postgresql-binary' 
'haskell-postgresql-libpq'
+ 'haskell-profunctors' 'haskell-semigroups' 'haskell-text' 
'haskell-vector')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('f368ae2e8ae20b60100597f371c613310819f91d0c256859cfa8bee9d478d991505a7184d31d950a886217d2186d2a2604b28920460af1f590a39ab5b687b7f0')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr 

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

2017-07-31 Thread Felix Yan
Date: Monday, July 31, 2017 @ 17:41:07
  Author: felixonmars
Revision: 247175

upgpkg: haskell-hasql 0.19.18-39

rebuild with distributive,0.5.3

Modified:
  haskell-hasql/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-31 17:37:46 UTC (rev 247174)
+++ PKGBUILD2017-07-31 17:41:07 UTC (rev 247175)
@@ -5,7 +5,7 @@
 _hkgname=hasql
 pkgname=haskell-hasql
 pkgver=0.19.18
-pkgrel=38
+pkgrel=39
 pkgdesc="An efficient PostgreSQL driver and a flexible mapping API"
 url="https://github.com/nikita-volkov/hasql;
 license=('MIT')


[arch-commits] Commit in xdebug/repos (8 files)

2017-07-31 Thread Sergej Pupykin
Date: Monday, July 31, 2017 @ 17:37:46
  Author: spupykin
Revision: 247174

archrelease: copy trunk to community-i686, community-x86_64

Added:
  xdebug/repos/community-i686/PKGBUILD
(from rev 247173, xdebug/trunk/PKGBUILD)
  xdebug/repos/community-i686/xdebug.ini
(from rev 247173, xdebug/trunk/xdebug.ini)
  xdebug/repos/community-x86_64/PKGBUILD
(from rev 247173, xdebug/trunk/PKGBUILD)
  xdebug/repos/community-x86_64/xdebug.ini
(from rev 247173, xdebug/trunk/xdebug.ini)
Deleted:
  xdebug/repos/community-i686/PKGBUILD
  xdebug/repos/community-i686/xdebug.ini
  xdebug/repos/community-x86_64/PKGBUILD
  xdebug/repos/community-x86_64/xdebug.ini

-+
 /PKGBUILD   |   78 ++
 /xdebug.ini |   10 +
 community-i686/PKGBUILD |   39 -
 community-i686/xdebug.ini   |5 --
 community-x86_64/PKGBUILD   |   39 -
 community-x86_64/xdebug.ini |5 --
 6 files changed, 88 insertions(+), 88 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-07-31 17:37:30 UTC (rev 247173)
+++ community-i686/PKGBUILD 2017-07-31 17:37:46 UTC (rev 247174)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Jonathan Wiersma 
-# Contributor: Jonathan Wiersma 
-# Contributor: sracker 
-
-pkgname=xdebug
-pkgver=2.5.4
-pkgrel=1
-pkgdesc="PHP debugging extension"
-arch=('i686' 'x86_64')
-url="http://www.xdebug.org;
-license=('GPL')
-depends=('php')
-backup=('etc/php/conf.d/xdebug.ini')
-source=("https://www.xdebug.org/files/$pkgname-${pkgver,,}.tgz;
-   'xdebug.ini')
-sha256sums=('300ca6fc3d95025148b0b5d0c96e14e54299e536a93a5d68c67b2cf32c9432b8'
-'7c66883dc2ade69069ef84e30188b25630748aa9c8b0dd123727c00505421205')
-
-build() {
-  cd "$srcdir"/$pkgname-$pkgver
-  phpize
-  ./configure --prefix=/usr --enable-xdebug
-  make
-
-  cd "$srcdir"/$pkgname-$pkgver/debugclient
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "$srcdir"/$pkgname-$pkgver/debugclient
-  make DESTDIR="$pkgdir" install
-
-  cd "$srcdir"/$pkgname-$pkgver
-  make INSTALL_ROOT="$pkgdir" install
-  install -D -m 644 "$srcdir"/xdebug.ini "$pkgdir"/etc/php/conf.d/xdebug.ini
-}

Copied: xdebug/repos/community-i686/PKGBUILD (from rev 247173, 
xdebug/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-07-31 17:37:46 UTC (rev 247174)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Jonathan Wiersma 
+# Contributor: Jonathan Wiersma 
+# Contributor: sracker 
+
+pkgname=xdebug
+pkgver=2.5.5
+pkgrel=1
+pkgdesc="PHP debugging extension"
+arch=('i686' 'x86_64')
+url="http://www.xdebug.org;
+license=('GPL')
+depends=('php')
+backup=('etc/php/conf.d/xdebug.ini')
+source=("https://www.xdebug.org/files/$pkgname-${pkgver,,}.tgz;
+   'xdebug.ini')
+sha256sums=('72108bf2bc514ee7198e10466a0fedcac3df9bbc5bd26ce2ec2dafab990bf1a4'
+'7c66883dc2ade69069ef84e30188b25630748aa9c8b0dd123727c00505421205')
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+  phpize
+  ./configure --prefix=/usr --enable-xdebug
+  make
+
+  cd "$srcdir"/$pkgname-$pkgver/debugclient
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$srcdir"/$pkgname-$pkgver/debugclient
+  make DESTDIR="$pkgdir" install
+
+  cd "$srcdir"/$pkgname-$pkgver
+  make INSTALL_ROOT="$pkgdir" install
+  install -D -m 644 "$srcdir"/xdebug.ini "$pkgdir"/etc/php/conf.d/xdebug.ini
+}

Deleted: community-i686/xdebug.ini
===
--- community-i686/xdebug.ini   2017-07-31 17:37:30 UTC (rev 247173)
+++ community-i686/xdebug.ini   2017-07-31 17:37:46 UTC (rev 247174)
@@ -1,5 +0,0 @@
-;zend_extension=xdebug.so
-;xdebug.remote_enable=on
-;xdebug.remote_host=127.0.0.1
-;xdebug.remote_port=9000
-;xdebug.remote_handler=dbgp

Copied: xdebug/repos/community-i686/xdebug.ini (from rev 247173, 
xdebug/trunk/xdebug.ini)
===
--- community-i686/xdebug.ini   (rev 0)
+++ community-i686/xdebug.ini   2017-07-31 17:37:46 UTC (rev 247174)
@@ -0,0 +1,5 @@
+;zend_extension=xdebug.so
+;xdebug.remote_enable=on
+;xdebug.remote_host=127.0.0.1
+;xdebug.remote_port=9000
+;xdebug.remote_handler=dbgp

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-07-31 17:37:30 UTC (rev 247173)
+++ community-x86_64/PKGBUILD   2017-07-31 17:37:46 UTC (rev 247174)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Jonathan Wiersma 
-# Contributor: 

[arch-commits] Commit in gsfonts/repos/extra-any (PKGBUILD PKGBUILD)

2017-07-31 Thread Gaëtan Bisson
Date: Monday, July 31, 2017 @ 17:37:37
  Author: bisson
Revision: 301439

archrelease: copy trunk to extra-any

Added:
  gsfonts/repos/extra-any/PKGBUILD
(from rev 301438, gsfonts/trunk/PKGBUILD)
Deleted:
  gsfonts/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-07-31 17:36:56 UTC (rev 301438)
+++ PKGBUILD2017-07-31 17:37:37 UTC (rev 301439)
@@ -1,23 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson 
-# Contributor: Firmicus 
-# Contributor: dorphell 
-
-pkgname=gsfonts
-_pkgname=urw-core35-fonts
-pkgver=20170501
-pkgrel=1
-pkgdesc='URW+ Postscript core35 fonts'
-url='http://git.ghostscript.com/?p=urw-core35-fonts.git'
-arch=('any')
-license=('AGPL3')
-makedepends=('git')
-depends=('xorg-font-utils' 'fontconfig')
-source=("git://git.ghostscript.com/${_pkgname}.git#commit=e3c665a8a3df36a54b22ad0b6176283db5310f97")
-sha256sums=('SKIP')
-
-package() {
-   cd "${srcdir}/${_pkgname}"
-   install -d "${pkgdir}"/usr/share/fonts/OTF
-   install -m644 *.otf "${pkgdir}"/usr/share/fonts/OTF
-}

Copied: gsfonts/repos/extra-any/PKGBUILD (from rev 301438, 
gsfonts/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-07-31 17:37:37 UTC (rev 301439)
@@ -0,0 +1,23 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Firmicus 
+# Contributor: dorphell 
+
+pkgname=gsfonts
+_pkgname=urw-core35-fonts
+pkgver=20170720
+pkgrel=1
+pkgdesc='URW+ Postscript core35 fonts'
+url='http://git.ghostscript.com/?p=urw-core35-fonts.git'
+arch=('any')
+license=('AGPL3')
+makedepends=('git')
+depends=('xorg-font-utils' 'fontconfig')
+source=("git://git.ghostscript.com/${_pkgname}.git#commit=1f28a6fcd2176256a995db907d9ffe6e1b9b83e9")
+sha256sums=('SKIP')
+
+package() {
+   cd "${srcdir}/${_pkgname}"
+   install -d "${pkgdir}"/usr/share/fonts/OTF
+   install -m644 *.otf "${pkgdir}"/usr/share/fonts/OTF
+}


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

2017-07-31 Thread Felix Yan
Date: Monday, July 31, 2017 @ 17:37:30
  Author: felixonmars
Revision: 247173

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  cgrep/repos/community-staging-i686/
  cgrep/repos/community-staging-i686/PKGBUILD
(from rev 247171, cgrep/trunk/PKGBUILD)
  cgrep/repos/community-staging-x86_64/
  cgrep/repos/community-staging-x86_64/PKGBUILD
(from rev 247171, cgrep/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   30 ++
 community-staging-x86_64/PKGBUILD |   30 ++
 2 files changed, 60 insertions(+)

Copied: cgrep/repos/community-staging-i686/PKGBUILD (from rev 247171, 
cgrep/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-07-31 17:37:30 UTC (rev 247173)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=cgrep
+pkgver=6.6.17
+pkgrel=15
+pkgdesc="A context-aware grep for source codes"
+url="http://awgn.github.io/cgrep/;
+license=("GPL2")
+arch=('i686' 'x86_64')
+depends=('ghc' "haskell-ansi-terminal" "haskell-async" "haskell-cmdargs" 
"haskell-dlist"
+ "haskell-either" "haskell-mtl" "haskell-regex-base" 
"haskell-regex-pcre"
+ "haskell-regex-posix" "haskell-safe" "haskell-split" "haskell-stm" 
"haskell-stringsearch"
+ "haskell-unix-compat" "haskell-unicode-show" 
"haskell-unordered-containers"
+ "haskell-utf8-string")
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('382649e70a112614ab270fb287cf289572411b33f3d89f72b855bd0aa515ee17d7589f019446b3cdd5024b4cbde4272c955520abe0bcf7f92890f575a937635d')
+
+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}"
+}

Copied: cgrep/repos/community-staging-x86_64/PKGBUILD (from rev 247171, 
cgrep/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-07-31 17:37:30 UTC (rev 247173)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=cgrep
+pkgver=6.6.17
+pkgrel=15
+pkgdesc="A context-aware grep for source codes"
+url="http://awgn.github.io/cgrep/;
+license=("GPL2")
+arch=('i686' 'x86_64')
+depends=('ghc' "haskell-ansi-terminal" "haskell-async" "haskell-cmdargs" 
"haskell-dlist"
+ "haskell-either" "haskell-mtl" "haskell-regex-base" 
"haskell-regex-pcre"
+ "haskell-regex-posix" "haskell-safe" "haskell-split" "haskell-stm" 
"haskell-stringsearch"
+ "haskell-unix-compat" "haskell-unicode-show" 
"haskell-unordered-containers"
+ "haskell-utf8-string")
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('382649e70a112614ab270fb287cf289572411b33f3d89f72b855bd0aa515ee17d7589f019446b3cdd5024b4cbde4272c955520abe0bcf7f92890f575a937635d')
+
+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}"
+}


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

2017-07-31 Thread Sergej Pupykin
Date: Monday, July 31, 2017 @ 17:37:29
  Author: spupykin
Revision: 247172

upgpkg: xdebug 2.5.5-1

Modified:
  xdebug/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-31 17:36:54 UTC (rev 247171)
+++ PKGBUILD2017-07-31 17:37:29 UTC (rev 247172)
@@ -5,7 +5,7 @@
 # Contributor: sracker 
 
 pkgname=xdebug
-pkgver=2.5.4
+pkgver=2.5.5
 pkgrel=1
 pkgdesc="PHP debugging extension"
 arch=('i686' 'x86_64')
@@ -15,7 +15,7 @@
 backup=('etc/php/conf.d/xdebug.ini')
 source=("https://www.xdebug.org/files/$pkgname-${pkgver,,}.tgz;
'xdebug.ini')
-sha256sums=('300ca6fc3d95025148b0b5d0c96e14e54299e536a93a5d68c67b2cf32c9432b8'
+sha256sums=('72108bf2bc514ee7198e10466a0fedcac3df9bbc5bd26ce2ec2dafab990bf1a4'
 '7c66883dc2ade69069ef84e30188b25630748aa9c8b0dd123727c00505421205')
 
 build() {


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

2017-07-31 Thread Felix Yan
Date: Monday, July 31, 2017 @ 17:36:54
  Author: felixonmars
Revision: 247171

upgpkg: cgrep 6.6.17-15

rebuild with distributive,0.5.3

Modified:
  cgrep/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-31 17:35:25 UTC (rev 247170)
+++ PKGBUILD2017-07-31 17:36:54 UTC (rev 247171)
@@ -4,7 +4,7 @@
 
 pkgname=cgrep
 pkgver=6.6.17
-pkgrel=14
+pkgrel=15
 pkgdesc="A context-aware grep for source codes"
 url="http://awgn.github.io/cgrep/;
 license=("GPL2")


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

2017-07-31 Thread Gaëtan Bisson
Date: Monday, July 31, 2017 @ 17:36:56
  Author: bisson
Revision: 301438

upstream update

Modified:
  gsfonts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-31 14:37:33 UTC (rev 301437)
+++ PKGBUILD2017-07-31 17:36:56 UTC (rev 301438)
@@ -5,7 +5,7 @@
 
 pkgname=gsfonts
 _pkgname=urw-core35-fonts
-pkgver=20170501
+pkgver=20170720
 pkgrel=1
 pkgdesc='URW+ Postscript core35 fonts'
 url='http://git.ghostscript.com/?p=urw-core35-fonts.git'
@@ -13,7 +13,7 @@
 license=('AGPL3')
 makedepends=('git')
 depends=('xorg-font-utils' 'fontconfig')
-source=("git://git.ghostscript.com/${_pkgname}.git#commit=e3c665a8a3df36a54b22ad0b6176283db5310f97")
+source=("git://git.ghostscript.com/${_pkgname}.git#commit=1f28a6fcd2176256a995db907d9ffe6e1b9b83e9")
 sha256sums=('SKIP')
 
 package() {


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

2017-07-31 Thread Sergej Pupykin
Date: Monday, July 31, 2017 @ 17:35:25
  Author: spupykin
Revision: 247170

archrelease: copy trunk to community-i686, community-x86_64

Added:
  ude/repos/community-i686/PKGBUILD
(from rev 247169, ude/trunk/PKGBUILD)
  ude/repos/community-x86_64/PKGBUILD
(from rev 247169, ude/trunk/PKGBUILD)
Deleted:
  ude/repos/community-i686/PKGBUILD
  ude/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   66 
 community-i686/PKGBUILD   |   33 --
 community-x86_64/PKGBUILD |   33 --
 3 files changed, 66 insertions(+), 66 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-07-31 17:35:05 UTC (rev 247169)
+++ community-i686/PKGBUILD 2017-07-31 17:35:25 UTC (rev 247170)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: eric 
-# Contributor: dorphell 
-
-pkgname=ude
-pkgver=0.2.11
-pkgrel=2
-pkgdesc="The ultimate window manager for UDE"
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('libjpeg' 'libxmu' 'libxpm' 'bash')
-makedepends=('gendesk')
-url="http://udeproject.sourceforge.net/index.shtml;
-source=(http://downloads.sourceforge.net/udeproject/uwm-$pkgver.tar.gz)
-md5sums=('d4952a7edffd30ac07f32fce244c86d7')
-
-build() {
-  cd "$srcdir"
-  gendesk -n --pkgname=uwm --name=UWM --pkgdesc="$pkgdesc"
-
-  cd "uwm-$pkgver"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "$srcdir/uwm-$pkgver"
-
-  make prefix="$pkgdir/usr" install
-  install -Dm644 "$srcdir/uwm.desktop" 
"$pkgdir/usr/share/xsessions/uwm.desktop"
-  mv "$pkgdir/usr/doc" "$pkgdir/usr/share/"
-}

Copied: ude/repos/community-i686/PKGBUILD (from rev 247169, ude/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-07-31 17:35:25 UTC (rev 247170)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: eric 
+# Contributor: dorphell 
+
+pkgname=ude
+pkgver=0.2.11_a
+pkgrel=1
+pkgdesc="The ultimate window manager for UDE"
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('libjpeg' 'libxmu' 'libxpm' 'bash')
+makedepends=('gendesk')
+url="http://udeproject.sourceforge.net/index.shtml;
+source=(http://downloads.sourceforge.net/udeproject/uwm-${pkgver/_/}.tar.gz)
+sha256sums=('dd056857c98b75c9203861917db33bcaf87ba074bdd204cf732ce4cb777cb408')
+
+build() {
+  cd "$srcdir"
+  gendesk -n --pkgname=uwm --name=UWM --pkgdesc="$pkgdesc"
+
+  cd "uwm-${pkgver/_/}"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$srcdir/uwm-${pkgver/_/}"
+
+  make prefix="$pkgdir/usr" install
+  install -Dm644 "$srcdir/uwm.desktop" 
"$pkgdir/usr/share/xsessions/uwm.desktop"
+  mv "$pkgdir/usr/doc" "$pkgdir/usr/share/"
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-07-31 17:35:05 UTC (rev 247169)
+++ community-x86_64/PKGBUILD   2017-07-31 17:35:25 UTC (rev 247170)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: eric 
-# Contributor: dorphell 
-
-pkgname=ude
-pkgver=0.2.11
-pkgrel=2
-pkgdesc="The ultimate window manager for UDE"
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('libjpeg' 'libxmu' 'libxpm' 'bash')
-makedepends=('gendesk')
-url="http://udeproject.sourceforge.net/index.shtml;
-source=(http://downloads.sourceforge.net/udeproject/uwm-$pkgver.tar.gz)
-md5sums=('d4952a7edffd30ac07f32fce244c86d7')
-
-build() {
-  cd "$srcdir"
-  gendesk -n --pkgname=uwm --name=UWM --pkgdesc="$pkgdesc"
-
-  cd "uwm-$pkgver"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "$srcdir/uwm-$pkgver"
-
-  make prefix="$pkgdir/usr" install
-  install -Dm644 "$srcdir/uwm.desktop" 
"$pkgdir/usr/share/xsessions/uwm.desktop"
-  mv "$pkgdir/usr/doc" "$pkgdir/usr/share/"
-}

Copied: ude/repos/community-x86_64/PKGBUILD (from rev 247169, 
ude/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-07-31 17:35:25 UTC (rev 247170)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: eric 
+# Contributor: dorphell 
+
+pkgname=ude
+pkgver=0.2.11_a
+pkgrel=1
+pkgdesc="The ultimate window manager for UDE"
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('libjpeg' 'libxmu' 'libxpm' 'bash')
+makedepends=('gendesk')
+url="http://udeproject.sourceforge.net/index.shtml;
+source=(http://downloads.sourceforge.net/udeproject/uwm-${pkgver/_/}.tar.gz)

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

2017-07-31 Thread Sergej Pupykin
Date: Monday, July 31, 2017 @ 17:35:05
  Author: spupykin
Revision: 247169

upgpkg: ude 0.2.11_a-1

Modified:
  ude/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-31 17:35:01 UTC (rev 247168)
+++ PKGBUILD2017-07-31 17:35:05 UTC (rev 247169)
@@ -4,8 +4,8 @@
 # Contributor: dorphell 
 
 pkgname=ude
-pkgver=0.2.11
-pkgrel=2
+pkgver=0.2.11_a
+pkgrel=1
 pkgdesc="The ultimate window manager for UDE"
 arch=('i686' 'x86_64')
 license=('GPL')
@@ -12,20 +12,20 @@
 depends=('libjpeg' 'libxmu' 'libxpm' 'bash')
 makedepends=('gendesk')
 url="http://udeproject.sourceforge.net/index.shtml;
-source=(http://downloads.sourceforge.net/udeproject/uwm-$pkgver.tar.gz)
-md5sums=('d4952a7edffd30ac07f32fce244c86d7')
+source=(http://downloads.sourceforge.net/udeproject/uwm-${pkgver/_/}.tar.gz)
+sha256sums=('dd056857c98b75c9203861917db33bcaf87ba074bdd204cf732ce4cb777cb408')
 
 build() {
   cd "$srcdir"
   gendesk -n --pkgname=uwm --name=UWM --pkgdesc="$pkgdesc"
 
-  cd "uwm-$pkgver"
+  cd "uwm-${pkgver/_/}"
   ./configure --prefix=/usr
   make
 }
 
 package() {
-  cd "$srcdir/uwm-$pkgver"
+  cd "$srcdir/uwm-${pkgver/_/}"
 
   make prefix="$pkgdir/usr" install
   install -Dm644 "$srcdir/uwm.desktop" 
"$pkgdir/usr/share/xsessions/uwm.desktop"


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

2017-07-31 Thread Felix Yan
Date: Monday, July 31, 2017 @ 17:35:01
  Author: felixonmars
Revision: 247168

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  haskell-either/repos/community-staging-i686/
  haskell-either/repos/community-staging-i686/PKGBUILD
(from rev 247166, haskell-either/trunk/PKGBUILD)
  haskell-either/repos/community-staging-x86_64/
  haskell-either/repos/community-staging-x86_64/PKGBUILD
(from rev 247167, haskell-either/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   53 
 community-staging-x86_64/PKGBUILD |   53 
 2 files changed, 106 insertions(+)

Copied: haskell-either/repos/community-staging-i686/PKGBUILD (from rev 247166, 
haskell-either/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-07-31 17:35:01 UTC (rev 247168)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=either
+pkgname=haskell-either
+pkgver=4.4.1.1
+pkgrel=28
+pkgdesc="An either monad transformer"
+url="http://github.com/ekmett/either/;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc' "haskell-bifunctors" "haskell-exceptions" "haskell-free"
+ "haskell-mmorph" "haskell-monad-control" "haskell-monadrandom"
+ "haskell-mtl" "haskell-profunctors" "haskell-semigroupoids"
+ "haskell-semigroups" "haskell-transformers-base")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('b087cb0fb63fec2fbdcac05fef0d03751daef5deb86cda3c732b9a6a31e634d3')
+
+prepare() {
+sed -e 's/MonadRandom   >= 0.1 && < 0.5,/MonadRandom   >= 0.1  
   \&\& < 0.6,/' \
+-e 's/mmorph>= 1.0.0   && < 1.1,/mmorph>= 
1.0.0   \&\& < 1.2,/' \
+-i ${_hkgname}-${pkgver}/${_hkgname}.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}

Copied: haskell-either/repos/community-staging-x86_64/PKGBUILD (from rev 
247167, haskell-either/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-07-31 17:35:01 UTC (rev 247168)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=either
+pkgname=haskell-either
+pkgver=4.4.1.1
+pkgrel=28
+pkgdesc="An either monad transformer"
+url="http://github.com/ekmett/either/;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc' "haskell-bifunctors" "haskell-exceptions" "haskell-free"
+ "haskell-mmorph" "haskell-monad-control" "haskell-monadrandom"
+ "haskell-mtl" "haskell-profunctors" "haskell-semigroupoids"
+ "haskell-semigroups" "haskell-transformers-base")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('b087cb0fb63fec2fbdcac05fef0d03751daef5deb86cda3c732b9a6a31e634d3')
+
+prepare() {
+sed -e 's/MonadRandom   >= 0.1 && < 0.5,/MonadRandom   >= 0.1  
   \&\& < 0.6,/' \
+-e 's/mmorph>= 1.0.0   && < 1.1,/mmorph>= 
1.0.0   \&\& < 1.2,/' \
+-i ${_hkgname}-${pkgver}/${_hkgname}.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+

[arch-commits] Commit in sdlmame/repos (16 files)

2017-07-31 Thread Sergej Pupykin
Date: Monday, July 31, 2017 @ 17:34:45
  Author: spupykin
Revision: 247167

archrelease: copy trunk to community-i686, community-x86_64

Added:
  sdlmame/repos/community-i686/PKGBUILD
(from rev 247165, sdlmame/trunk/PKGBUILD)
  sdlmame/repos/community-i686/extras.tar.gz
(from rev 247165, sdlmame/trunk/extras.tar.gz)
  sdlmame/repos/community-i686/sdlmame.install
(from rev 247165, sdlmame/trunk/sdlmame.install)
  sdlmame/repos/community-i686/sdlmame.sh
(from rev 247165, sdlmame/trunk/sdlmame.sh)
  sdlmame/repos/community-x86_64/PKGBUILD
(from rev 247165, sdlmame/trunk/PKGBUILD)
  sdlmame/repos/community-x86_64/extras.tar.gz
(from rev 247166, sdlmame/trunk/extras.tar.gz)
  sdlmame/repos/community-x86_64/sdlmame.install
(from rev 247166, sdlmame/trunk/sdlmame.install)
  sdlmame/repos/community-x86_64/sdlmame.sh
(from rev 247166, sdlmame/trunk/sdlmame.sh)
Deleted:
  sdlmame/repos/community-i686/PKGBUILD
  sdlmame/repos/community-i686/extras.tar.gz
  sdlmame/repos/community-i686/sdlmame.install
  sdlmame/repos/community-i686/sdlmame.sh
  sdlmame/repos/community-x86_64/PKGBUILD
  sdlmame/repos/community-x86_64/extras.tar.gz
  sdlmame/repos/community-x86_64/sdlmame.install
  sdlmame/repos/community-x86_64/sdlmame.sh

--+
 /PKGBUILD|  190 +
 /sdlmame.install |   16 +++
 /sdlmame.sh  |  112 +
 community-i686/PKGBUILD  |   95 --
 community-i686/sdlmame.install   |8 -
 community-i686/sdlmame.sh|   56 --
 community-x86_64/PKGBUILD|   95 --
 community-x86_64/sdlmame.install |8 -
 community-x86_64/sdlmame.sh  |   56 --
 9 files changed, 318 insertions(+), 318 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-07-31 17:34:36 UTC (rev 247166)
+++ community-i686/PKGBUILD 2017-07-31 17:34:45 UTC (rev 247167)
@@ -1,95 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: robb_force 
-# Maintainer: JJDaNiMoTh 
-
-pkgname=sdlmame
-pkgver=0.187
-pkgrel=1
-pkgdesc="A port of the popular Multiple Arcade Machine Emulator using SDL with 
OpenGL support."
-url="http://mamedev.org/;
-license=('GPL2')
-arch=('i686' 'x86_64')
-depends=('sdl2' 'libxinerama' 'sdl2_ttf' 'alsa-lib' 'qt5-base')
-makedepends=('unzip' 'nasm' 'mesa' 'glu' 'wget' 'python2')
-install=sdlmame.install
-source=("https://github.com/mamedev/mame/releases/download/mame${pkgver/./}/mame${pkgver/./}s.zip;
-   "sdlmame.sh"
-   "extras.tar.gz"
-   ${_patches})
-sha256sums=('2b076ca7de8cfc4a4aaf7c7c4fa44e4122b9cb798db871487624cd662c2d57ee'
-'06e7f5dca2255a16b3336a6d2b9af8276a8d8c672635aed83e9e8f636db3cef7'
-'5ba55ce8c33743207a12a7509efdf13dd98f5d87fa12f0e471ea523d3ae4f4ac')
-
-prepare() {
-  cd "$srcdir"/
-  unzip mame.zip || true
-}
-
-build() {
-  cd "$srcdir"
-  make \
-NOWERROR=1 \
-OPTIMIZE=2 \
-PYTHON_EXECUTABLE=/usr/bin/python2 \
-TOOLS=1 \
-ARCHOPTS=-flifetime-dse=1 \
--j1
-}
-
-package() {
-  cd "$srcdir"
-  # Install the sdlmame script
-  install -Dm755 "$srcdir"/${pkgname}.sh "$pkgdir"/usr/bin/${pkgname}
-
-  # Install the applications and the UI font in /usr/share
-  install -Dm755 mame "$pkgdir"/usr/lib/${pkgname}/${pkgname} || \
-  install -Dm755 mame64 "$pkgdir"/usr/lib/${pkgname}/${pkgname}
-
-  install -m755 chdman "$pkgdir"/usr/lib/${pkgname}/chdman
-  install -m755 jedutil "$pkgdir"/usr/lib/${pkgname}/jedutil
-  install -m755 regrep "$pkgdir"/usr/lib/${pkgname}/regrep
-  install -m755 romcmp "$pkgdir"/usr/lib/${pkgname}/romcmp
-#  install -m755 testkeys "$pkgdir"/usr/lib/${pkgname}/testkeys
-  install -m755 src2html "$pkgdir"/usr/lib/${pkgname}/src2html
-  install -m755 srcclean "$pkgdir"/usr/lib/${pkgname}/srcclean
-  install -m755 ldverify "$pkgdir"/usr/lib/${pkgname}/ldverify
-  install -m755 ldresample "$pkgdir"/usr/lib/${pkgname}/ldresample
-
-  # ln binaries
-  install -dm755 "$pkgdir"/usr/share/${pkgname}
-  for i in $pkgname chdman jedutil regrep romcmp testkeys src2html srcclean 
ldverify ldresample; do
-ln -s /usr/lib/$pkgname/$i "$pkgdir"/usr/share/$pkgname/$i
-  done
-
-  # Install the extra bits
-  install -d "$pkgdir"/usr/share/${pkgname}/{artwork,ctrlr,hash,keymaps,shader}
-  install -d "$pkgdir"/usr/share/man/man1
-  install -d "$pkgdir"/usr/share/man/man6
-  install -m644 src/osd/modules/opengl/shader/glsl*.*h 
"$pkgdir"/usr/share/${pkgname}/shader/
-#  install -m644 src/osd/sdl/man/*.1* "$pkgdir"/usr/share/man/man1/
-#  install -m644 src/osd/sdl/man/*.6* "$pkgdir"/usr/share/man/man6/
-
-  cp -a "$srcdir"/artwork/* "$pkgdir"/usr/share/${pkgname}/artwork/
-  install -m644 "$srcdir"/ctrlr/* 

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

2017-07-31 Thread Felix Yan
Date: Monday, July 31, 2017 @ 17:34:36
  Author: felixonmars
Revision: 247166

upgpkg: haskell-either 4.4.1.1-28

rebuild with distributive,0.5.3

Modified:
  haskell-either/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-31 17:34:19 UTC (rev 247165)
+++ PKGBUILD2017-07-31 17:34:36 UTC (rev 247166)
@@ -5,7 +5,7 @@
 _hkgname=either
 pkgname=haskell-either
 pkgver=4.4.1.1
-pkgrel=27
+pkgrel=28
 pkgdesc="An either monad transformer"
 url="http://github.com/ekmett/either/;
 license=("custom:BSD3")


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

2017-07-31 Thread Sergej Pupykin
Date: Monday, July 31, 2017 @ 17:34:19
  Author: spupykin
Revision: 247165

upgpkg: sdlmame 0.188-1

Modified:
  sdlmame/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-31 17:33:51 UTC (rev 247164)
+++ PKGBUILD2017-07-31 17:34:19 UTC (rev 247165)
@@ -4,7 +4,7 @@
 # Maintainer: JJDaNiMoTh 
 
 pkgname=sdlmame
-pkgver=0.187
+pkgver=0.188
 pkgrel=1
 pkgdesc="A port of the popular Multiple Arcade Machine Emulator using SDL with 
OpenGL support."
 url="http://mamedev.org/;
@@ -17,7 +17,7 @@
"sdlmame.sh"
"extras.tar.gz"
${_patches})
-sha256sums=('2b076ca7de8cfc4a4aaf7c7c4fa44e4122b9cb798db871487624cd662c2d57ee'
+sha256sums=('96b69c52e9acf6604c26741ad212ffee2c4a306723b8adbb79afd24838a4ed36'
 '06e7f5dca2255a16b3336a6d2b9af8276a8d8c672635aed83e9e8f636db3cef7'
 '5ba55ce8c33743207a12a7509efdf13dd98f5d87fa12f0e471ea523d3ae4f4ac')
 


[arch-commits] Commit in mingw-w64-binutils/repos (4 files)

2017-07-31 Thread Sergej Pupykin
Date: Monday, July 31, 2017 @ 17:33:51
  Author: spupykin
Revision: 247164

archrelease: copy trunk to community-i686, community-x86_64

Added:
  mingw-w64-binutils/repos/community-i686/PKGBUILD
(from rev 247163, mingw-w64-binutils/trunk/PKGBUILD)
  mingw-w64-binutils/repos/community-x86_64/PKGBUILD
(from rev 247163, mingw-w64-binutils/trunk/PKGBUILD)
Deleted:
  mingw-w64-binutils/repos/community-i686/PKGBUILD
  mingw-w64-binutils/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |  100 
 community-i686/PKGBUILD   |   50 --
 community-x86_64/PKGBUILD |   50 --
 3 files changed, 100 insertions(+), 100 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-07-31 17:33:32 UTC (rev 247163)
+++ community-i686/PKGBUILD 2017-07-31 17:33:51 UTC (rev 247164)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: rubenvb vanboxem  ruben  gmail  com
-
-_targets="i686-w64-mingw32 x86_64-w64-mingw32"
-
-pkgname=mingw-w64-binutils
-pkgver=2.28
-pkgrel=1
-pkgdesc="Cross binutils for the MinGW-w64 cross-compiler"
-arch=('i686' 'x86_64')
-url="http://www.gnu.org/software/binutils;
-license=('GPL')
-groups=('mingw-w64-toolchain' 'mingw-w64')
-depends=('zlib')
-options=('!libtool' '!emptydirs')
-validpgpkeys=('EAF1C276A747E9ED86210CBAC3126D3B4AE55E93')
-source=("https://ftp.gnu.org/gnu/binutils/binutils-${pkgver}.tar.gz"{,.sig})
-sha256sums=('cd717966fc761d840d451dbd58d44e1e5b92949d2073d75b73fccb476d772fcf'
-'SKIP')
-
-prepare() {
-  cd "$srcdir"/binutils-${pkgver}
-  #do not install libiberty
-  sed -i 's/install_to_$(INSTALL_DEST) //' libiberty/Makefile.in
-  # hack! - libiberty configure tests for header files using "$CPP $CPPFLAGS"
-  sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" libiberty/configure
-}
-
-build() {
-  for _target in $_targets; do
-msg "Building ${_target} cross binutils"
-mkdir -p "$srcdir"/binutils-${_target} && cd 
"${srcdir}/binutils-${_target}"
-"$srcdir"/binutils-${pkgver}/configure --prefix=/usr \
---target=${_target} \
---infodir=/usr/share/info/${_target} \
---enable-lto --enable-plugins \
---disable-multilib --disable-nls \
---disable-werror
- make
-  done
-}
-
-package() {
-  for _target in ${_targets}; do
-msg "Installing ${_target} cross binutils"
-cd "$srcdir"/binutils-${_target}
-make DESTDIR="$pkgdir" install
-  done
-}

Copied: mingw-w64-binutils/repos/community-i686/PKGBUILD (from rev 247163, 
mingw-w64-binutils/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-07-31 17:33:51 UTC (rev 247164)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: rubenvb vanboxem  ruben  gmail  com
+
+_targets="i686-w64-mingw32 x86_64-w64-mingw32"
+
+pkgname=mingw-w64-binutils
+pkgver=2.29
+pkgrel=1
+pkgdesc="Cross binutils for the MinGW-w64 cross-compiler"
+arch=('i686' 'x86_64')
+url="http://www.gnu.org/software/binutils;
+license=('GPL')
+groups=('mingw-w64-toolchain' 'mingw-w64')
+depends=('zlib')
+options=('!libtool' '!emptydirs')
+validpgpkeys=('EAF1C276A747E9ED86210CBAC3126D3B4AE55E93')
+source=("https://ftp.gnu.org/gnu/binutils/binutils-${pkgver}.tar.gz"{,.sig})
+sha256sums=('172e8c89472cf52712fd23a9f14e9bca6182727fb45b0f8f482652a83d5a11b4'
+'SKIP')
+
+prepare() {
+  cd "$srcdir"/binutils-${pkgver}
+  #do not install libiberty
+  sed -i 's/install_to_$(INSTALL_DEST) //' libiberty/Makefile.in
+  # hack! - libiberty configure tests for header files using "$CPP $CPPFLAGS"
+  sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" libiberty/configure
+}
+
+build() {
+  for _target in $_targets; do
+msg "Building ${_target} cross binutils"
+mkdir -p "$srcdir"/binutils-${_target} && cd 
"${srcdir}/binutils-${_target}"
+"$srcdir"/binutils-${pkgver}/configure --prefix=/usr \
+--target=${_target} \
+--infodir=/usr/share/info/${_target} \
+--enable-lto --enable-plugins \
+--disable-multilib --disable-nls \
+--disable-werror
+ make
+  done
+}
+
+package() {
+  for _target in ${_targets}; do
+msg "Installing ${_target} cross binutils"
+cd "$srcdir"/binutils-${_target}
+make DESTDIR="$pkgdir" install
+  done
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-07-31 17:33:32 UTC (rev 247163)
+++ community-x86_64/PKGBUILD   2017-07-31 17:33:51 UTC (rev 247164)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: rubenvb vanboxem  ruben  gmail  com
-
-_targets="i686-w64-mingw32 

[arch-commits] Commit in mingw-w64-binutils/trunk (PKGBUILD)

2017-07-31 Thread Sergej Pupykin
Date: Monday, July 31, 2017 @ 17:33:32
  Author: spupykin
Revision: 247163

upgpkg: mingw-w64-binutils 2.29-1

Modified:
  mingw-w64-binutils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-31 17:33:11 UTC (rev 247162)
+++ PKGBUILD2017-07-31 17:33:32 UTC (rev 247163)
@@ -5,7 +5,7 @@
 _targets="i686-w64-mingw32 x86_64-w64-mingw32"
 
 pkgname=mingw-w64-binutils
-pkgver=2.28
+pkgver=2.29
 pkgrel=1
 pkgdesc="Cross binutils for the MinGW-w64 cross-compiler"
 arch=('i686' 'x86_64')
@@ -16,7 +16,7 @@
 options=('!libtool' '!emptydirs')
 validpgpkeys=('EAF1C276A747E9ED86210CBAC3126D3B4AE55E93')
 source=("https://ftp.gnu.org/gnu/binutils/binutils-${pkgver}.tar.gz"{,.sig})
-sha256sums=('cd717966fc761d840d451dbd58d44e1e5b92949d2073d75b73fccb476d772fcf'
+sha256sums=('172e8c89472cf52712fd23a9f14e9bca6182727fb45b0f8f482652a83d5a11b4'
 'SKIP')
 
 prepare() {


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

2017-07-31 Thread Felix Yan
Date: Monday, July 31, 2017 @ 17:33:07
  Author: felixonmars
Revision: 247161

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  haskell-adjunctions/repos/community-staging-i686/
  haskell-adjunctions/repos/community-staging-i686/PKGBUILD
(from rev 247159, haskell-adjunctions/trunk/PKGBUILD)
  haskell-adjunctions/repos/community-staging-x86_64/
  haskell-adjunctions/repos/community-staging-x86_64/PKGBUILD
(from rev 247160, haskell-adjunctions/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   47 
 community-staging-x86_64/PKGBUILD |   47 
 2 files changed, 94 insertions(+)

Copied: haskell-adjunctions/repos/community-staging-i686/PKGBUILD (from rev 
247159, haskell-adjunctions/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-07-31 17:33:07 UTC (rev 247161)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=adjunctions
+pkgname=haskell-adjunctions
+pkgver=4.3
+pkgrel=35
+pkgdesc="Adjunctions and representable functors"
+url="http://github.com/ekmett/adjunctions/;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc' "haskell-comonad" "haskell-contravariant" "haskell-distributive"
+ "haskell-free" "haskell-mtl" "haskell-profunctors" 
"haskell-semigroupoids"
+ "haskell-semigroups" "haskell-tagged" "haskell-transformers-compat"
+ "haskell-void")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('b948a14fafe8857f451ae3e474f5264c907b5a2d841d52bf78249ae4749c3ecc')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}

Copied: haskell-adjunctions/repos/community-staging-x86_64/PKGBUILD (from rev 
247160, haskell-adjunctions/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-07-31 17:33:07 UTC (rev 247161)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=adjunctions
+pkgname=haskell-adjunctions
+pkgver=4.3
+pkgrel=35
+pkgdesc="Adjunctions and representable functors"
+url="http://github.com/ekmett/adjunctions/;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc' "haskell-comonad" "haskell-contravariant" "haskell-distributive"
+ "haskell-free" "haskell-mtl" "haskell-profunctors" 
"haskell-semigroupoids"
+ "haskell-semigroups" "haskell-tagged" "haskell-transformers-compat"
+ "haskell-void")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('b948a14fafe8857f451ae3e474f5264c907b5a2d841d52bf78249ae4749c3ecc')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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 

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

2017-07-31 Thread Sergej Pupykin
Date: Monday, July 31, 2017 @ 17:33:11
  Author: spupykin
Revision: 247162

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-07-31 17:33:07 UTC (rev 247161)
+++ PKGBUILD2017-07-31 17:33:11 UTC (rev 247162)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Eschwartz 
-
-pkgname=firefox-noscript
-pkgver=5.0.7.1
-pkgrel=1
-pkgdesc="Extension for firefox which disables script"
-arch=('any')
-url="http://noscript.net/;
-license=('GPL2')
-groups=('firefox-addons')
-depends=('firefox')
-makedepends=('unzip')
-source=(https://secure.informaction.com/download/releases/noscript-${pkgver}.xpi)
-noextract=("noscript-${pkgver}.xpi")
-sha256sums=('fe85a4c72b5a763462f3b264f54a0ef1c6f6879eb95d903f2dfee337f768a50b')
-
-prepare() {
-  cd "${srcdir}"
-  unzip -qqo "noscript-${pkgver}.xpi" -d "noscript-${pkgver}"
-}
-
-package() {
-  cd "${srcdir}"
-
-  _extension_id="$(sed -n '/.*\(.*\)<\/em:id>.*/{s//\1/p;q}' 
noscript-${pkgver}/install.rdf)"
-  
_extension_dest="${pkgdir}/usr/lib/firefox/browser/extensions/${_extension_id}"
-  if grep 'true' noscript-${pkgver}/install.rdf > 
/dev/null; then
-install -dm755 "${_extension_dest}"
-cp -R noscript-${pkgver}/* "${_extension_dest}"
-chmod -R ugo+rX "${_extension_dest}"
-  else
-install -Dm644 noscript-${pkgver}.xpi "${_extension_dest}.xpi"
-  fi
-}

Copied: firefox-noscript/repos/community-any/PKGBUILD (from rev 247160, 
firefox-noscript/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-07-31 17:33:11 UTC (rev 247162)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Eschwartz 
+
+pkgname=firefox-noscript
+pkgver=5.0.8.1
+pkgrel=1
+pkgdesc="Extension for firefox which disables script"
+arch=('any')
+url="http://noscript.net/;
+license=('GPL2')
+groups=('firefox-addons')
+depends=('firefox')
+makedepends=('unzip')
+source=(https://secure.informaction.com/download/releases/noscript-${pkgver}.xpi)
+noextract=("noscript-${pkgver}.xpi")
+sha256sums=('ef648454965242a57583d2541290bcf9526747b18335aeccdd55f39a23873bc3')
+
+prepare() {
+  cd "${srcdir}"
+  unzip -qqo "noscript-${pkgver}.xpi" -d "noscript-${pkgver}"
+}
+
+package() {
+  cd "${srcdir}"
+
+  _extension_id="$(sed -n '/.*\(.*\)<\/em:id>.*/{s//\1/p;q}' 
noscript-${pkgver}/install.rdf)"
+  
_extension_dest="${pkgdir}/usr/lib/firefox/browser/extensions/${_extension_id}"
+  if grep 'true' noscript-${pkgver}/install.rdf > 
/dev/null; then
+install -dm755 "${_extension_dest}"
+cp -R noscript-${pkgver}/* "${_extension_dest}"
+chmod -R ugo+rX "${_extension_dest}"
+  else
+install -Dm644 noscript-${pkgver}.xpi "${_extension_dest}.xpi"
+  fi
+}


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

2017-07-31 Thread Sergej Pupykin
Date: Monday, July 31, 2017 @ 17:32:58
  Author: spupykin
Revision: 247160

upgpkg: firefox-noscript 5.0.8.1-1

Modified:
  firefox-noscript/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-31 17:32:44 UTC (rev 247159)
+++ PKGBUILD2017-07-31 17:32:58 UTC (rev 247160)
@@ -3,7 +3,7 @@
 # Contributor: Eschwartz 
 
 pkgname=firefox-noscript
-pkgver=5.0.7.1
+pkgver=5.0.8.1
 pkgrel=1
 pkgdesc="Extension for firefox which disables script"
 arch=('any')
@@ -14,7 +14,7 @@
 makedepends=('unzip')
 
source=(https://secure.informaction.com/download/releases/noscript-${pkgver}.xpi)
 noextract=("noscript-${pkgver}.xpi")
-sha256sums=('fe85a4c72b5a763462f3b264f54a0ef1c6f6879eb95d903f2dfee337f768a50b')
+sha256sums=('ef648454965242a57583d2541290bcf9526747b18335aeccdd55f39a23873bc3')
 
 prepare() {
   cd "${srcdir}"


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

2017-07-31 Thread Felix Yan
Date: Monday, July 31, 2017 @ 17:32:44
  Author: felixonmars
Revision: 247159

upgpkg: haskell-adjunctions 4.3-35

rebuild with distributive,0.5.3

Modified:
  haskell-adjunctions/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-31 17:31:12 UTC (rev 247158)
+++ PKGBUILD2017-07-31 17:32:44 UTC (rev 247159)
@@ -5,7 +5,7 @@
 _hkgname=adjunctions
 pkgname=haskell-adjunctions
 pkgver=4.3
-pkgrel=34
+pkgrel=35
 pkgdesc="Adjunctions and representable functors"
 url="http://github.com/ekmett/adjunctions/;
 license=("custom:BSD3")


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

2017-07-31 Thread Felix Yan
Date: Monday, July 31, 2017 @ 17:31:12
  Author: felixonmars
Revision: 247158

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  haskell-free/repos/community-staging-i686/
  haskell-free/repos/community-staging-i686/PKGBUILD
(from rev 247157, haskell-free/trunk/PKGBUILD)
  haskell-free/repos/community-staging-x86_64/
  haskell-free/repos/community-staging-x86_64/PKGBUILD
(from rev 247157, haskell-free/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   46 
 community-staging-x86_64/PKGBUILD |   46 
 2 files changed, 92 insertions(+)

Copied: haskell-free/repos/community-staging-i686/PKGBUILD (from rev 247157, 
haskell-free/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-07-31 17:31:12 UTC (rev 247158)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=free
+pkgname=haskell-free
+pkgver=4.12.4
+pkgrel=35
+pkgdesc="Monads for free"
+url="http://github.com/ekmett/free/;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc' "haskell-bifunctors" "haskell-comonad" "haskell-distributive" 
"haskell-exceptions"
+ "haskell-mtl" "haskell-prelude-extras" "haskell-profunctors" 
"haskell-semigroupoids"
+ "haskell-semigroups" "haskell-transformers-compat")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('c9fe45aae387855626ecb5a0fea6afdb207143cb00af3b1f715d1032d2d08784')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}

Copied: haskell-free/repos/community-staging-x86_64/PKGBUILD (from rev 247157, 
haskell-free/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-07-31 17:31:12 UTC (rev 247158)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=free
+pkgname=haskell-free
+pkgver=4.12.4
+pkgrel=35
+pkgdesc="Monads for free"
+url="http://github.com/ekmett/free/;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc' "haskell-bifunctors" "haskell-comonad" "haskell-distributive" 
"haskell-exceptions"
+ "haskell-mtl" "haskell-prelude-extras" "haskell-profunctors" 
"haskell-semigroupoids"
+ "haskell-semigroups" "haskell-transformers-compat")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('c9fe45aae387855626ecb5a0fea6afdb207143cb00af3b1f715d1032d2d08784')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d 

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

2017-07-31 Thread Felix Yan
Date: Monday, July 31, 2017 @ 17:30:48
  Author: felixonmars
Revision: 247157

upgpkg: haskell-free 4.12.4-35

rebuild with distributive,0.5.3

Modified:
  haskell-free/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-31 17:29:32 UTC (rev 247156)
+++ PKGBUILD2017-07-31 17:30:48 UTC (rev 247157)
@@ -5,7 +5,7 @@
 _hkgname=free
 pkgname=haskell-free
 pkgver=4.12.4
-pkgrel=34
+pkgrel=35
 pkgdesc="Monads for free"
 url="http://github.com/ekmett/free/;
 license=("custom:BSD3")


[arch-commits] Commit in ejabberd/repos (20 files)

2017-07-31 Thread Sergej Pupykin
Date: Monday, July 31, 2017 @ 17:29:32
  Author: spupykin
Revision: 247156

archrelease: copy trunk to community-x86_64, community-i686

Added:
  ejabberd/repos/community-i686/PKGBUILD
(from rev 247155, ejabberd/trunk/PKGBUILD)
  ejabberd/repos/community-i686/ejabberd.logrotate
(from rev 247155, ejabberd/trunk/ejabberd.logrotate)
  ejabberd/repos/community-i686/ejabberd.service
(from rev 247155, ejabberd/trunk/ejabberd.service)
  ejabberd/repos/community-i686/print-deps.sh
(from rev 247155, ejabberd/trunk/print-deps.sh)
  ejabberd/repos/community-i686/sysuser.conf
(from rev 247155, ejabberd/trunk/sysuser.conf)
  ejabberd/repos/community-x86_64/PKGBUILD
(from rev 247155, ejabberd/trunk/PKGBUILD)
  ejabberd/repos/community-x86_64/ejabberd.logrotate
(from rev 247155, ejabberd/trunk/ejabberd.logrotate)
  ejabberd/repos/community-x86_64/ejabberd.service
(from rev 247155, ejabberd/trunk/ejabberd.service)
  ejabberd/repos/community-x86_64/print-deps.sh
(from rev 247155, ejabberd/trunk/print-deps.sh)
  ejabberd/repos/community-x86_64/sysuser.conf
(from rev 247155, ejabberd/trunk/sysuser.conf)
Deleted:
  ejabberd/repos/community-i686/PKGBUILD
  ejabberd/repos/community-i686/ejabberd.logrotate
  ejabberd/repos/community-i686/ejabberd.service
  ejabberd/repos/community-i686/print-deps.sh
  ejabberd/repos/community-i686/sysuser.conf
  ejabberd/repos/community-x86_64/PKGBUILD
  ejabberd/repos/community-x86_64/ejabberd.logrotate
  ejabberd/repos/community-x86_64/ejabberd.service
  ejabberd/repos/community-x86_64/print-deps.sh
  ejabberd/repos/community-x86_64/sysuser.conf

-+
 /PKGBUILD   |  298 ++
 /ejabberd.logrotate |   24 ++
 /ejabberd.service   |   30 +++
 /print-deps.sh  |   50 +
 /sysuser.conf   |4 
 community-i686/PKGBUILD |  146 
 community-i686/ejabberd.logrotate   |   12 -
 community-i686/ejabberd.service |   15 -
 community-i686/print-deps.sh|   25 --
 community-i686/sysuser.conf |2 
 community-x86_64/PKGBUILD   |  146 
 community-x86_64/ejabberd.logrotate |   12 -
 community-x86_64/ejabberd.service   |   15 -
 community-x86_64/print-deps.sh  |   25 --
 community-x86_64/sysuser.conf   |2 
 15 files changed, 406 insertions(+), 400 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-07-31 17:28:56 UTC (rev 247155)
+++ community-i686/PKGBUILD 2017-07-31 17:29:32 UTC (rev 247156)
@@ -1,146 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Jeff 'codemac' Mickey 
-# Contributor: Alexander Rødseth 
-
-pkgname=ejabberd
-pkgver=17.07
-pkgrel=2
-pkgdesc="Jabber server written in Erlang"
-arch=('x86_64' 'i686')
-url="http://www.ejabberd.im/;
-license=("GPL")
-depends=('expat' 'openssl' 'zlib' 'erlang-nox' 'pam' 'iproute2' 
'erlang-unixodbc'
-'libyaml' 'sqlite')
-makedepends=('git' 'rebar' 'hevea' 'texlive-bin' 'texlive-core' 
'texlive-latexextra')
-backup=('etc/ejabberd/ejabberd.yml'
-   'etc/ejabberd/ejabberdctl.cfg'
-   'etc/logrotate.d/ejabberd')
-options=(emptydirs)
-source=("$pkgname-$pkgver.tar.gz::https://github.com/processone/ejabberd/archive/$pkgver.tar.gz;
-   
"cache_tab::git://github.com/processone/cache_tab#commit=b6af49e8f71c69cedd044017e06d7e2022a3173e"
-   
"elixir::git://github.com/elixir-lang/elixir#commit=867da6f876c48279823a41a33030c95ef37379b2"
-   
"epam::git://github.com/processone/epam#commit=0ead169d7f6a3f2d0b64cca282487e4fedfbffd9"
-   
"eredis::git://github.com/wooga/eredis#commit=cbc013f516e464706493c01662e5e9dd82d1db01"
-   
"esip::git://github.com/processone/esip#commit=fe18688ecdfe2d31da595f16a35e0d54a5e04b54"
-   
"ezlib::git://github.com/processone/ezlib#commit=e42ce61e60dd312ac60ef299d7f6f4522af577e5"
-   
"fast_tls::git://github.com/processone/fast_tls#commit=d0f8fc07657f4409e1d115cbf63e98015525913f"
-   
"fast_xml::git://github.com/processone/fast_xml#commit=46c24036ff3c6150ad7dabb95e1aaff73a6437e6"
-   
"fast_yaml::git://github.com/processone/fast_yaml#commit=a1649cd561a315ad40a1461f8a2038680cd146b2"
-   
"goldrush::git://github.com/DeadZen/goldrush.git#commit=8f1b715d36b650ec1e1f5612c00e28af6ab0de82"
-   
"hamcrest::git://github.com/basho/hamcrest-erlang.git#commit=98bc7aa19ea081478c816824aa05fc5a48acae66"
-   
"iconv::git://github.com/processone/iconv#commit=888cbaa256bd8eff17ba73742a4b2f5706135cc6"
-   
"jiffy::git://github.com/davisp/jiffy#commit=1febce3ca86c5ca5d5a3618ed3d5f125bb99e4c5"
-   
"lager::git://github.com/erlang-lager/lager#commit=a10c23c51dea6bbd63e5048c8a5a702169973114"
-   

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

2017-07-31 Thread Felix Yan
Date: Monday, July 31, 2017 @ 17:28:48
  Author: felixonmars
Revision: 247154

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  haskell-semigroupoids/repos/community-staging-i686/
  haskell-semigroupoids/repos/community-staging-i686/PKGBUILD
(from rev 247153, haskell-semigroupoids/trunk/PKGBUILD)
  haskell-semigroupoids/repos/community-staging-x86_64/
  haskell-semigroupoids/repos/community-staging-x86_64/PKGBUILD
(from rev 247153, haskell-semigroupoids/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   47 
 community-staging-x86_64/PKGBUILD |   47 
 2 files changed, 94 insertions(+)

Copied: haskell-semigroupoids/repos/community-staging-i686/PKGBUILD (from rev 
247153, haskell-semigroupoids/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-07-31 17:28:48 UTC (rev 247154)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=semigroupoids
+pkgname=haskell-semigroupoids
+pkgver=5.2.1
+pkgrel=2
+pkgdesc="Semigroupoids: Category sans id"
+url="http://github.com/ekmett/semigroupoids;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc' "haskell-base-orphans" "haskell-bifunctors" "haskell-comonad" 
"haskell-contravariant"
+ "haskell-distributive" "haskell-hashable" "haskell-semigroups" 
"haskell-tagged"
+ "haskell-transformers-compat" "haskell-unordered-containers")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('735b90545a7f73eee921d94d661cd76fe22d4dbd949f5c976ef1a98c8d0ef50f40481816ee805aed9c5de12bef1d832de7be2adf651407782ccc073eec41c5a7')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-ftagged -fcomonad -fdoctests -fdistributive -fcontravariant 
-fcontainers -funordered-containers
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}

Copied: haskell-semigroupoids/repos/community-staging-x86_64/PKGBUILD (from rev 
247153, haskell-semigroupoids/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-07-31 17:28:48 UTC (rev 247154)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=semigroupoids
+pkgname=haskell-semigroupoids
+pkgver=5.2.1
+pkgrel=2
+pkgdesc="Semigroupoids: Category sans id"
+url="http://github.com/ekmett/semigroupoids;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc' "haskell-base-orphans" "haskell-bifunctors" "haskell-comonad" 
"haskell-contravariant"
+ "haskell-distributive" "haskell-hashable" "haskell-semigroups" 
"haskell-tagged"
+ "haskell-transformers-compat" "haskell-unordered-containers")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('735b90545a7f73eee921d94d661cd76fe22d4dbd949f5c976ef1a98c8d0ef50f40481816ee805aed9c5de12bef1d832de7be2adf651407782ccc073eec41c5a7')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-ftagged -fcomonad -fdoctests -fdistributive -fcontravariant 
-fcontainers -funordered-containers
+runhaskell Setup build
+

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

2017-07-31 Thread Sergej Pupykin
Date: Monday, July 31, 2017 @ 17:28:56
  Author: spupykin
Revision: 247155

upgpkg: ejabberd 17.07-3: fix libdir

Modified:
  ejabberd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-31 17:28:48 UTC (rev 247154)
+++ PKGBUILD2017-07-31 17:28:56 UTC (rev 247155)
@@ -5,7 +5,7 @@
 
 pkgname=ejabberd
 pkgver=17.07
-pkgrel=2
+pkgrel=3
 pkgdesc="Jabber server written in Erlang"
 arch=('x86_64' 'i686')
 url="http://www.ejabberd.im/;
@@ -120,7 +120,7 @@
   cd "$srcdir/$pkgname-$pkgver"
   make DESTDIR="$pkgdir" install
 
-  install -Dm04750 deps/epam/priv/bin/epam 
"$pkgdir"/usr/lib/ejabberd/priv/bin/epam
+  install -Dm04750 deps/epam/priv/bin/epam 
"$pkgdir"/usr/lib/ejabberd-$pkgver/priv/bin/epam
   install -d "$pkgdir/var/lib/$pkgname"
   install -D -m0644 "$srcdir/$pkgname.logrotate" 
"$pkgdir/etc/logrotate.d/$pkgname"
   chmod ug+r "$pkgdir/etc/$pkgname/"*
@@ -134,6 +134,9 @@
   ln -s mod_configure.beam 
"$pkgdir"/usr/lib/ejabberd-$pkgver/ebin/configure.beam
   rm -f "$pkgdir"/usr/bin/{elixir,iex,mix}
 
+  # /usr/lib/ejabberd symlink follows to ejabberd version
+  ln -s ejabberd-$pkgver "$pkgdir"/usr/lib/ejabberd
+
   # permissions
   chown -R 17:17 "$pkgdir"/var/{lib,log}/ejabberd
   chown root:17 \


  1   2   >