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

2016-10-23 Thread Felix Yan
Date: Monday, October 24, 2016 @ 05:38:11
  Author: felixonmars
Revision: 193158

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 193157, stack/trunk/PKGBUILD)
  stack/repos/community-staging-i686/stack.install
(from rev 193157, stack/trunk/stack.install)
  stack/repos/community-staging-x86_64/
  stack/repos/community-staging-x86_64/PKGBUILD
(from rev 193157, stack/trunk/PKGBUILD)
  stack/repos/community-staging-x86_64/stack.install
(from rev 193157, stack/trunk/stack.install)

+
 community-staging-i686/PKGBUILD|   80 +++
 community-staging-i686/stack.install   |4 +
 community-staging-x86_64/PKGBUILD  |   80 +++
 community-staging-x86_64/stack.install |4 +
 4 files changed, 168 insertions(+)

Copied: stack/repos/community-staging-i686/PKGBUILD (from rev 193157, 
stack/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-10-24 05:38:11 UTC (rev 193158)
@@ -0,0 +1,80 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgbase=stack
+pkgname=(stack haskell-stack)
+pkgver=1.2.0
+pkgrel=8
+pkgdesc="The Haskell Tool Stack"
+url="https://github.com/commercialhaskell/stack;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+makedepends=("ghc=8.0.1" "haskell-aeson" "haskell-annotated-wl-pprint" 
"haskell-ansi-terminal"
+ "haskell-async" "haskell-attoparsec" "haskell-base-compat" 
"haskell-base16-bytestring"
+ "haskell-base64-bytestring" "haskell-binary-tagged" 
"haskell-blaze-builder"
+ "haskell-byteable" "haskell-clock" "haskell-conduit" 
"haskell-conduit-extra"
+ "haskell-cryptohash" "haskell-cryptohash-conduit" 
"haskell-edit-distance"
+ "haskell-either" "haskell-enclosed-exceptions" "haskell-errors" 
"haskell-exceptions"
+ "haskell-extra" "haskell-fast-logger" "haskell-filelock" 
"haskell-fsnotify"
+ "haskell-generic-deriving" "haskell-gitrev" "haskell-hashable" 
"haskell-hastache"
+ "haskell-hit" "haskell-http-client" "haskell-http-client-tls" 
"haskell-http-conduit"
+ "haskell-http-types" "haskell-hpack" "haskell-lifted-async" 
"haskell-lifted-base"
+ "haskell-microlens" "haskell-monad-control" "haskell-monad-logger"
+ "haskell-monad-unlift" "haskell-mtl" "haskell-open-browser"
+ "haskell-optparse-applicative" "haskell-optparse-simple" 
"haskell-path"
+ "haskell-path-io" "haskell-persistent" "haskell-persistent-sqlite"
+ "haskell-persistent-template" "haskell-project-template"
+ "haskell-regex-applicative-text" "haskell-resourcet" 
"haskell-retry" "haskell-safe"
+ "haskell-semigroups" "haskell-split" "haskell-stm" "haskell-store"
+ "haskell-streaming-commons" "haskell-tar" "haskell-temporary" 
"haskell-text"
+ "haskell-text-binary" "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")
+source=("http://hackage.haskell.org/packages/archive/${pkgbase}/${pkgver}/${pkgbase}-${pkgver}.tar.gz;)
+sha256sums=('6a13a98413ea5f1a0642d9080892e6bcd996a17baa4d61521c0e0f3d9bb810b3')
+
+build() {
+cd "${srcdir}/${pkgbase}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgbase}" \
+--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
+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_stack() {
+depends=('gmp' 'libffi' 'zlib')
+optdepends=('ghc')
+install="stack.install"
+
+cd "${srcdir}/${pkgbase}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -r "$pkgdir"/usr/{lib,share/doc}
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+
+"${pkgdir}"/usr/bin/stack --bash-completion-script /usr/bin/stack > 
stack_completion_script
+install -Dm644 stack_completion_script 
"${pkgdir}/usr/share/bash-completion/completions/stack"
+}
+
+package_haskell-stack() {
+pkgdesc="The Haskell Tool Stack (docs 

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

2016-10-23 Thread Felix Yan
Date: Monday, October 24, 2016 @ 05:37:46
  Author: felixonmars
Revision: 193157

upgpkg: stack 1.2.0-8

rebuild with http-api-data-0.3.2, http-conduit-2.2.3

Modified:
  stack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-24 04:39:50 UTC (rev 193156)
+++ PKGBUILD2016-10-24 05:37:46 UTC (rev 193157)
@@ -5,7 +5,7 @@
 pkgbase=stack
 pkgname=(stack haskell-stack)
 pkgver=1.2.0
-pkgrel=7
+pkgrel=8
 pkgdesc="The Haskell Tool Stack"
 url="https://github.com/commercialhaskell/stack;
 license=("custom:BSD3")


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

2016-10-23 Thread Felix Yan
Date: Monday, October 24, 2016 @ 04:39:50
  Author: felixonmars
Revision: 193156

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

Added:
  haskell-hakyll/repos/community-staging-i686/
  haskell-hakyll/repos/community-staging-i686/PKGBUILD
(from rev 193155, haskell-hakyll/trunk/PKGBUILD)
  haskell-hakyll/repos/community-staging-i686/http-conduit-2.2.patch
(from rev 193155, haskell-hakyll/trunk/http-conduit-2.2.patch)
  haskell-hakyll/repos/community-staging-i686/optparse-applicative-0.13.patch
(from rev 193155, haskell-hakyll/trunk/optparse-applicative-0.13.patch)
  haskell-hakyll/repos/community-staging-x86_64/
  haskell-hakyll/repos/community-staging-x86_64/PKGBUILD
(from rev 193155, haskell-hakyll/trunk/PKGBUILD)
  haskell-hakyll/repos/community-staging-x86_64/http-conduit-2.2.patch
(from rev 193155, haskell-hakyll/trunk/http-conduit-2.2.patch)
  haskell-hakyll/repos/community-staging-x86_64/optparse-applicative-0.13.patch
(from rev 193155, haskell-hakyll/trunk/optparse-applicative-0.13.patch)

--+
 community-staging-i686/PKGBUILD  |   58 +
 community-staging-i686/http-conduit-2.2.patch|   39 
 community-staging-i686/optparse-applicative-0.13.patch   |   37 
 community-staging-x86_64/PKGBUILD|   58 +
 community-staging-x86_64/http-conduit-2.2.patch  |   39 
 community-staging-x86_64/optparse-applicative-0.13.patch |   37 
 6 files changed, 268 insertions(+)

Copied: haskell-hakyll/repos/community-staging-i686/PKGBUILD (from rev 193155, 
haskell-hakyll/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-10-24 04:39:50 UTC (rev 193156)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hakyll
+pkgname=haskell-hakyll
+pkgver=4.9.0.0
+pkgrel=4
+pkgdesc="A static website compiler library"
+url="http://jaspervdj.be/hakyll;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-blaze-html" "haskell-blaze-markup" 
"haskell-cryptohash"
+ "haskell-data-default" "haskell-fsnotify" "haskell-http-conduit" 
"haskell-http-types"
+ "haskell-lrucache" "haskell-mtl" "haskell-network" 
"haskell-network-uri"
+ "haskell-optparse-applicative" "haskell-pandoc" 
"haskell-pandoc-citeproc" "haskell-parsec"
+ "haskell-random" "haskell-regex-base" "haskell-regex-tdfa" 
"haskell-resourcet"
+ "haskell-scientific" "haskell-system-filepath" "haskell-tagsoup" 
"haskell-text"
+ "haskell-time-locale-compat" "haskell-unordered-containers" 
"haskell-vector" "haskell-wai"
+ "haskell-wai-app-static" "haskell-warp" "haskell-yaml")
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;
+http-conduit-2.2.patch optparse-applicative-0.13.patch)
+sha256sums=('6c21697efaf30166a1afc508f1122e2b828ade9d8d4d53408b13c1216337295e'
+'f1871d8f381bacfe4ba01e7f037c635fff591d8fb353a2f26d08b1af1311142a'
+'0b38abf39d8a410e06a5875ddadfb9c22cd37b4552b224dfabd52f30e9015abb')
+
+prepare() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+patch -p1 -i ../http-conduit-2.2.patch
+patch -p1 -i ../optparse-applicative-0.13.patch
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-fcheckexternal -fwatchserver -fpreviewserver
+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"
+}

Copied: haskell-hakyll/repos/community-staging-i686/http-conduit-2.2.patch 
(from rev 193155, haskell-hakyll/trunk/http-conduit-2.2.patch)

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

2016-10-23 Thread Felix Yan
Date: Monday, October 24, 2016 @ 04:39:15
  Author: felixonmars
Revision: 193155

upgpkg: haskell-hakyll 4.9.0.0-4

rebuild with http-api-data-0.3.2, http-conduit-2.2.3

Modified:
  haskell-hakyll/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-24 04:34:01 UTC (rev 193154)
+++ PKGBUILD2016-10-24 04:39:15 UTC (rev 193155)
@@ -5,7 +5,7 @@
 _hkgname=hakyll
 pkgname=haskell-hakyll
 pkgver=4.9.0.0
-pkgrel=3
+pkgrel=4
 pkgdesc="A static website compiler library"
 url="http://jaspervdj.be/hakyll;
 license=("custom:BSD3")


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

2016-10-23 Thread Felix Yan
Date: Monday, October 24, 2016 @ 04:34:01
  Author: felixonmars
Revision: 193154

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

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

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

Copied: haskell-yesod/repos/community-staging-i686/PKGBUILD (from rev 193153, 
haskell-yesod/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-10-24 04:34:01 UTC (rev 193154)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod
+pkgname=haskell-yesod
+pkgver=1.4.3
+pkgrel=39
+pkgdesc="Creation of type-safe, RESTful web applications."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-blaze-html" 
"haskell-blaze-markup"
+ "haskell-conduit-extra" "haskell-data-default" "haskell-fast-logger"
+ "haskell-monad-control" "haskell-monad-logger" "haskell-safe"
+ "haskell-semigroups" "haskell-shakespeare" "haskell-streaming-commons"
+ "haskell-text" "haskell-unordered-containers" "haskell-wai"
+ "haskell-wai-extra" "haskell-wai-logger" "haskell-warp" "haskell-yaml"
+ "haskell-yesod-auth" "haskell-yesod-core" "haskell-yesod-form"
+ "haskell-yesod-persistent")
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('13655ed28102b30f32a34fb1b30cf20c1d9bbd9f6f1c89f96643ea6d7bba74a3')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--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"
+}

Copied: haskell-yesod/repos/community-staging-x86_64/PKGBUILD (from rev 193153, 
haskell-yesod/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-10-24 04:34:01 UTC (rev 193154)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod
+pkgname=haskell-yesod
+pkgver=1.4.3
+pkgrel=39
+pkgdesc="Creation of type-safe, RESTful web applications."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-blaze-html" 
"haskell-blaze-markup"
+ "haskell-conduit-extra" "haskell-data-default" "haskell-fast-logger"
+ "haskell-monad-control" "haskell-monad-logger" "haskell-safe"
+ "haskell-semigroups" "haskell-shakespeare" "haskell-streaming-commons"
+ "haskell-text" "haskell-unordered-containers" "haskell-wai"
+ "haskell-wai-extra" "haskell-wai-logger" "haskell-warp" "haskell-yaml"
+ "haskell-yesod-auth" "haskell-yesod-core" "haskell-yesod-form"
+ "haskell-yesod-persistent")
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('13655ed28102b30f32a34fb1b30cf20c1d9bbd9f6f1c89f96643ea6d7bba74a3')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+   

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

2016-10-23 Thread Felix Yan
Date: Monday, October 24, 2016 @ 04:33:35
  Author: felixonmars
Revision: 193153

upgpkg: haskell-yesod 1.4.3-39

rebuild with http-api-data-0.3.2, http-conduit-2.2.3

Modified:
  haskell-yesod/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-24 04:29:15 UTC (rev 193152)
+++ PKGBUILD2016-10-24 04:33:35 UTC (rev 193153)
@@ -5,7 +5,7 @@
 _hkgname=yesod
 pkgname=haskell-yesod
 pkgver=1.4.3
-pkgrel=38
+pkgrel=39
 pkgdesc="Creation of type-safe, RESTful web applications."
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2016-10-23 Thread Felix Yan
Date: Monday, October 24, 2016 @ 04:29:15
  Author: felixonmars
Revision: 193152

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

Added:
  haskell-persistent-sqlite/repos/community-staging-i686/
  haskell-persistent-sqlite/repos/community-staging-i686/PKGBUILD
(from rev 193151, haskell-persistent-sqlite/trunk/PKGBUILD)
  haskell-persistent-sqlite/repos/community-staging-x86_64/
  haskell-persistent-sqlite/repos/community-staging-x86_64/PKGBUILD
(from rev 193151, haskell-persistent-sqlite/trunk/PKGBUILD)

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

Copied: haskell-persistent-sqlite/repos/community-staging-i686/PKGBUILD (from 
rev 193151, haskell-persistent-sqlite/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-10-24 04:29:15 UTC (rev 193152)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=persistent-sqlite
+pkgname=haskell-persistent-sqlite
+pkgver=2.6
+pkgrel=6
+pkgdesc="Backend for the persistent library using sqlite3"
+url="http://www.yesodweb.com/book/persistent;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-conduit" "haskell-monad-control"
+ "haskell-monad-logger" "haskell-old-locale" "haskell-persistent"
+ "haskell-resource-pool" "haskell-resourcet" "haskell-text")
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('628670f06cc533adb057649a253e9332aa2b3f69278af8fd32905e9bb00e0ffa')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-build-sanity-exe -f-systemlib
+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"
+}

Copied: haskell-persistent-sqlite/repos/community-staging-x86_64/PKGBUILD (from 
rev 193151, haskell-persistent-sqlite/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-10-24 04:29:15 UTC (rev 193152)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=persistent-sqlite
+pkgname=haskell-persistent-sqlite
+pkgver=2.6
+pkgrel=6
+pkgdesc="Backend for the persistent library using sqlite3"
+url="http://www.yesodweb.com/book/persistent;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-conduit" "haskell-monad-control"
+ "haskell-monad-logger" "haskell-old-locale" "haskell-persistent"
+ "haskell-resource-pool" "haskell-resourcet" "haskell-text")
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('628670f06cc533adb057649a253e9332aa2b3f69278af8fd32905e9bb00e0ffa')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-build-sanity-exe -f-systemlib
+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   

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

2016-10-23 Thread Felix Yan
Date: Monday, October 24, 2016 @ 04:28:49
  Author: felixonmars
Revision: 193151

upgpkg: haskell-persistent-sqlite 2.6-6

rebuild with http-api-data-0.3.2, http-conduit-2.2.3

Modified:
  haskell-persistent-sqlite/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-24 04:27:28 UTC (rev 193150)
+++ PKGBUILD2016-10-24 04:28:49 UTC (rev 193151)
@@ -5,7 +5,7 @@
 _hkgname=persistent-sqlite
 pkgname=haskell-persistent-sqlite
 pkgver=2.6
-pkgrel=5
+pkgrel=6
 pkgdesc="Backend for the persistent library using sqlite3"
 url="http://www.yesodweb.com/book/persistent;
 license=("MIT")


[arch-commits] Commit in haskell-esqueleto/repos (6 files)

2016-10-23 Thread Felix Yan
Date: Monday, October 24, 2016 @ 04:27:28
  Author: felixonmars
Revision: 193150

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

Added:
  haskell-esqueleto/repos/community-staging-i686/
  haskell-esqueleto/repos/community-staging-i686/PKGBUILD
(from rev 193149, haskell-esqueleto/trunk/PKGBUILD)
  haskell-esqueleto/repos/community-staging-i686/persistent-2.5.patch
(from rev 193149, haskell-esqueleto/trunk/persistent-2.5.patch)
  haskell-esqueleto/repos/community-staging-x86_64/
  haskell-esqueleto/repos/community-staging-x86_64/PKGBUILD
(from rev 193149, haskell-esqueleto/trunk/PKGBUILD)
  haskell-esqueleto/repos/community-staging-x86_64/persistent-2.5.patch
(from rev 193149, haskell-esqueleto/trunk/persistent-2.5.patch)

---+
 community-staging-i686/PKGBUILD   |   55 +++
 community-staging-i686/persistent-2.5.patch   |  119 
 community-staging-x86_64/PKGBUILD |   55 +++
 community-staging-x86_64/persistent-2.5.patch |  119 
 4 files changed, 348 insertions(+)

Copied: haskell-esqueleto/repos/community-staging-i686/PKGBUILD (from rev 
193149, haskell-esqueleto/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-10-24 04:27:28 UTC (rev 193150)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=esqueleto
+pkgname=haskell-esqueleto
+pkgver=2.4.3
+pkgrel=39
+pkgdesc="Type-safe EDSL for SQL queries on persistent backends."
+url="https://github.com/prowdsponsor/esqueleto;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-blaze-html" "haskell-conduit" 
"haskell-monad-logger"
+ "haskell-persistent" "haskell-resourcet" "haskell-tagged" 
"haskell-text"
+ "haskell-unordered-containers")
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;
+persistent-2.5.patch)
+sha256sums=('bf555cfb40519ed1573f7bb90c65f693b9639dfa93fc230d3ded6e897434'
+'101534ae4db348978b427a5a5b06a51765a680c4c8ae038ce283214fcd44f9e4')
+
+prepare() {
+# https://github.com/prowdsponsor/esqueleto/pull/139
+(cd $_hkgname-$pkgver && patch -p1 -i ../persistent-2.5.patch)
+
+sed -e 's/base >= 4.5 && < 4.9/base >= 
4.5 \&\& < 4.10/' \
+-e 's/, persistent   >= 2.5 && < 2.6/, persistent  
 >= 2.5 \&\& < 2.7/' \
+-i ${_hkgname}-${pkgver}/${_hkgname}.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-mysql -f-postgresql
+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"
+}

Copied: haskell-esqueleto/repos/community-staging-i686/persistent-2.5.patch 
(from rev 193149, haskell-esqueleto/trunk/persistent-2.5.patch)
===
--- community-staging-i686/persistent-2.5.patch (rev 0)
+++ community-staging-i686/persistent-2.5.patch 2016-10-24 04:27:28 UTC (rev 
193150)
@@ -0,0 +1,119 @@
+From 811f3722818b56ae5a4fb4601a2a772532201571 Mon Sep 17 00:00:00 2001
+From: Hao Lian 
+Date: Mon, 2 May 2016 13:19:33 -0400
+Subject: [PATCH] upgrade to persistent 2.5
+
+---
+ esqueleto.cabal | 10 +-
+ src/Database/Esqueleto.hs   | 21 +++--
+ src/Database/Esqueleto/Internal/PersistentImport.hs |  2 +-
+ stack.yaml  | 16 +++-
+ test/Test.hs|  5 +++--
+ 5 files changed, 39 insertions(+), 15 deletions(-)
+

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

2016-10-23 Thread Felix Yan
Date: Monday, October 24, 2016 @ 04:27:03
  Author: felixonmars
Revision: 193149

upgpkg: haskell-esqueleto 2.4.3-39

rebuild with http-api-data-0.3.2, http-conduit-2.2.3

Modified:
  haskell-esqueleto/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-24 04:17:01 UTC (rev 193148)
+++ PKGBUILD2016-10-24 04:27:03 UTC (rev 193149)
@@ -5,7 +5,7 @@
 _hkgname=esqueleto
 pkgname=haskell-esqueleto
 pkgver=2.4.3
-pkgrel=38
+pkgrel=39
 pkgdesc="Type-safe EDSL for SQL queries on persistent backends."
 url="https://github.com/prowdsponsor/esqueleto;
 license=("custom:BSD3")


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

2016-10-23 Thread Felix Yan
Date: Monday, October 24, 2016 @ 04:17:01
  Author: felixonmars
Revision: 193148

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

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

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

Copied: haskell-yesod-auth/repos/community-staging-i686/PKGBUILD (from rev 
193147, haskell-yesod-auth/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-10-24 04:17:01 UTC (rev 193148)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-auth
+pkgname=haskell-yesod-auth
+pkgver=1.4.13.5
+pkgrel=7
+pkgdesc="Authentication for Yesod."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-authenticate" 
"haskell-base16-bytestring"
+ "haskell-base64-bytestring" "haskell-blaze-builder" 
"haskell-blaze-html"
+ "haskell-blaze-markup" "haskell-byteable" "haskell-conduit" 
"haskell-conduit-extra"
+ "haskell-cryptohash" "haskell-data-default" "haskell-email-validate"
+ "haskell-file-embed" "haskell-http-client" "haskell-http-conduit"
+ "haskell-http-types" "haskell-lifted-base" "haskell-mime-mail" 
"haskell-network-uri"
+ "haskell-nonce" "haskell-persistent" "haskell-persistent-template" 
"haskell-random"
+ "haskell-resourcet" "haskell-safe" "haskell-shakespeare" 
"haskell-text"
+ "haskell-unordered-containers" "haskell-wai" "haskell-yesod-core" 
"haskell-yesod-form"
+ "haskell-yesod-persistent")
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('42bfdfe72f5ef9f9e43d12dcd47f5a3415e6b883d455a7ad4cbfb7e900e760bf')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-fnetwork-uri
+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 -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"
+}

Copied: haskell-yesod-auth/repos/community-staging-x86_64/PKGBUILD (from rev 
193147, haskell-yesod-auth/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-10-24 04:17:01 UTC (rev 193148)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-auth
+pkgname=haskell-yesod-auth
+pkgver=1.4.13.5
+pkgrel=7
+pkgdesc="Authentication for Yesod."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-authenticate" 
"haskell-base16-bytestring"
+ "haskell-base64-bytestring" "haskell-blaze-builder" 
"haskell-blaze-html"
+ "haskell-blaze-markup" "haskell-byteable" "haskell-conduit" 
"haskell-conduit-extra"
+ "haskell-cryptohash" "haskell-data-default" "haskell-email-validate"
+ "haskell-file-embed" "haskell-http-client" "haskell-http-conduit"
+ "haskell-http-types" "haskell-lifted-base" "haskell-mime-mail" 
"haskell-network-uri"
+ "haskell-nonce" "haskell-persistent" "haskell-persistent-template" 
"haskell-random"
+ "haskell-resourcet" "haskell-safe" "haskell-shakespeare" 

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

2016-10-23 Thread Felix Yan
Date: Monday, October 24, 2016 @ 04:16:37
  Author: felixonmars
Revision: 193147

upgpkg: haskell-yesod-auth 1.4.13.5-7

rebuild with http-api-data-0.3.2, http-conduit-2.2.3

Modified:
  haskell-yesod-auth/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-24 04:10:47 UTC (rev 193146)
+++ PKGBUILD2016-10-24 04:16:37 UTC (rev 193147)
@@ -5,7 +5,7 @@
 _hkgname=yesod-auth
 pkgname=haskell-yesod-auth
 pkgver=1.4.13.5
-pkgrel=6
+pkgrel=7
 pkgdesc="Authentication for Yesod."
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2016-10-23 Thread Felix Yan
Date: Monday, October 24, 2016 @ 04:10:47
  Author: felixonmars
Revision: 193146

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

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

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

Copied: haskell-yesod-form/repos/community-staging-i686/PKGBUILD (from rev 
193145, haskell-yesod-form/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-10-24 04:10:47 UTC (rev 193146)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-form
+pkgname=haskell-yesod-form
+pkgver=1.4.7.1
+pkgrel=33
+pkgdesc="Form handling support for Yesod Web Framework"
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-attoparsec" 
"haskell-blaze-builder"
+ "haskell-blaze-html" "haskell-blaze-markup" "haskell-byteable"
+ "haskell-data-default" "haskell-email-validate" "haskell-network-uri"
+ "haskell-persistent" "haskell-resourcet" "haskell-semigroups"
+ "haskell-shakespeare" "haskell-text" "haskell-wai" 
"haskell-xss-sanitize"
+ "haskell-yesod-core" "haskell-yesod-persistent")
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('66f1672c7aaec0b4c93f5cfc20593a4fb92d779d90d55ee5ebd1f7ae6a6e8dac')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-fnetwork-uri
+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 -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"
+}

Copied: haskell-yesod-form/repos/community-staging-x86_64/PKGBUILD (from rev 
193145, haskell-yesod-form/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-10-24 04:10:47 UTC (rev 193146)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-form
+pkgname=haskell-yesod-form
+pkgver=1.4.7.1
+pkgrel=33
+pkgdesc="Form handling support for Yesod Web Framework"
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-attoparsec" 
"haskell-blaze-builder"
+ "haskell-blaze-html" "haskell-blaze-markup" "haskell-byteable"
+ "haskell-data-default" "haskell-email-validate" "haskell-network-uri"
+ "haskell-persistent" "haskell-resourcet" "haskell-semigroups"
+ "haskell-shakespeare" "haskell-text" "haskell-wai" 
"haskell-xss-sanitize"
+ "haskell-yesod-core" "haskell-yesod-persistent")
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('66f1672c7aaec0b4c93f5cfc20593a4fb92d779d90d55ee5ebd1f7ae6a6e8dac')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-fnetwork-uri
+runhaskell Setup build
+LC_CTYPE=en_US.UTF-8 runhaskell Setup haddock --hoogle --html
+

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

2016-10-23 Thread Felix Yan
Date: Monday, October 24, 2016 @ 04:10:18
  Author: felixonmars
Revision: 193145

upgpkg: haskell-yesod-form 1.4.7.1-33

rebuild with http-api-data-0.3.2, http-conduit-2.2.3

Modified:
  haskell-yesod-form/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-24 04:08:17 UTC (rev 193144)
+++ PKGBUILD2016-10-24 04:10:18 UTC (rev 193145)
@@ -5,7 +5,7 @@
 _hkgname=yesod-form
 pkgname=haskell-yesod-form
 pkgver=1.4.7.1
-pkgrel=32
+pkgrel=33
 pkgdesc="Form handling support for Yesod Web Framework"
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2016-10-23 Thread Felix Yan
Date: Monday, October 24, 2016 @ 04:08:17
  Author: felixonmars
Revision: 193144

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

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

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

Copied: haskell-authenticate/repos/community-staging-i686/PKGBUILD (from rev 
193143, haskell-authenticate/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-10-24 04:08:17 UTC (rev 193144)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=authenticate
+pkgname=haskell-authenticate
+pkgver=1.3.3.2
+pkgrel=15
+pkgdesc="Authentication methods for Haskell web applications."
+url="http://github.com/yesodweb/authenticate;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-attoparsec" 
"haskell-blaze-builder"
+ "haskell-case-insensitive" "haskell-conduit" "haskell-http-conduit"
+ "haskell-http-types" "haskell-monad-control" "haskell-network-uri"
+ "haskell-resourcet" "haskell-tagstream-conduit" "haskell-text"
+ "haskell-unordered-containers" "haskell-xml-conduit")
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('a65ff7791e646ea847fc6b8369addeecf6d2c3055a0b7ebe1421881103656e30')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--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"
+}

Copied: haskell-authenticate/repos/community-staging-x86_64/PKGBUILD (from rev 
193143, haskell-authenticate/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-10-24 04:08:17 UTC (rev 193144)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=authenticate
+pkgname=haskell-authenticate
+pkgver=1.3.3.2
+pkgrel=15
+pkgdesc="Authentication methods for Haskell web applications."
+url="http://github.com/yesodweb/authenticate;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-attoparsec" 
"haskell-blaze-builder"
+ "haskell-case-insensitive" "haskell-conduit" "haskell-http-conduit"
+ "haskell-http-types" "haskell-monad-control" "haskell-network-uri"
+ "haskell-resourcet" "haskell-tagstream-conduit" "haskell-text"
+ "haskell-unordered-containers" "haskell-xml-conduit")
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('a65ff7791e646ea847fc6b8369addeecf6d2c3055a0b7ebe1421881103656e30')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--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[^ ]* 

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

2016-10-23 Thread Felix Yan
Date: Monday, October 24, 2016 @ 04:07:48
  Author: felixonmars
Revision: 193143

upgpkg: haskell-authenticate 1.3.3.2-15

rebuild with http-api-data-0.3.2, http-conduit-2.2.3

Modified:
  haskell-authenticate/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-24 03:26:28 UTC (rev 193142)
+++ PKGBUILD2016-10-24 04:07:48 UTC (rev 193143)
@@ -5,7 +5,7 @@
 _hkgname=authenticate
 pkgname=haskell-authenticate
 pkgver=1.3.3.2
-pkgrel=14
+pkgrel=15
 pkgdesc="Authentication methods for Haskell web applications."
 url="http://github.com/yesodweb/authenticate;
 license=("MIT")


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

2016-10-23 Thread Felix Yan
Date: Monday, October 24, 2016 @ 03:26:00
  Author: felixonmars
Revision: 193141

upgpkg: haskell-http-conduit 2.2.3-1

rebuild with http-api-data-0.3.2, http-conduit-2.2.3

Modified:
  haskell-http-conduit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-24 03:25:36 UTC (rev 193140)
+++ PKGBUILD2016-10-24 03:26:00 UTC (rev 193141)
@@ -4,7 +4,7 @@
 
 _hkgname=http-conduit
 pkgname=haskell-http-conduit
-pkgver=2.2.2.1
+pkgver=2.2.3
 pkgrel=1
 pkgdesc="HTTP client package with conduit interface and HTTPS support"
 url="http://www.yesodweb.com/book/http-conduit;
@@ -14,7 +14,7 @@
  "haskell-http-client" "haskell-http-client-tls" "haskell-http-types" 
"haskell-lifted-base"
  "haskell-monad-control" "haskell-mtl" "haskell-resourcet")
 
source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha256sums=('1ec7feb0ee0263559c729e760990f4908cf1b1eeb2af221afeec34d23c57')
+sha256sums=('eee51e80fe76b3bf4b4041545f452e126e0593f70a0623a5a35ee47d72fe0dc3')
 
 build() {
 cd "${srcdir}/${_hkgname}-${pkgver}"


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

2016-10-23 Thread Felix Yan
Date: Monday, October 24, 2016 @ 03:26:28
  Author: felixonmars
Revision: 193142

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

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

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

Copied: haskell-http-conduit/repos/community-staging-i686/PKGBUILD (from rev 
193141, haskell-http-conduit/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-10-24 03:26:28 UTC (rev 193142)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http-conduit
+pkgname=haskell-http-conduit
+pkgver=2.2.3
+pkgrel=1
+pkgdesc="HTTP client package with conduit interface and HTTPS support"
+url="http://www.yesodweb.com/book/http-conduit;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-conduit" "haskell-conduit-extra" 
"haskell-exceptions"
+ "haskell-http-client" "haskell-http-client-tls" "haskell-http-types" 
"haskell-lifted-base"
+ "haskell-monad-control" "haskell-mtl" "haskell-resourcet")
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('eee51e80fe76b3bf4b4041545f452e126e0593f70a0623a5a35ee47d72fe0dc3')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--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"
+}

Copied: haskell-http-conduit/repos/community-staging-x86_64/PKGBUILD (from rev 
193141, haskell-http-conduit/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-10-24 03:26:28 UTC (rev 193142)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http-conduit
+pkgname=haskell-http-conduit
+pkgver=2.2.3
+pkgrel=1
+pkgdesc="HTTP client package with conduit interface and HTTPS support"
+url="http://www.yesodweb.com/book/http-conduit;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-conduit" "haskell-conduit-extra" 
"haskell-exceptions"
+ "haskell-http-client" "haskell-http-client-tls" "haskell-http-types" 
"haskell-lifted-base"
+ "haskell-monad-control" "haskell-mtl" "haskell-resourcet")
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('eee51e80fe76b3bf4b4041545f452e126e0593f70a0623a5a35ee47d72fe0dc3')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--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   

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

2016-10-23 Thread Felix Yan
Date: Monday, October 24, 2016 @ 03:25:36
  Author: felixonmars
Revision: 193140

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

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

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

Copied: haskell-yesod-persistent/repos/community-staging-i686/PKGBUILD (from 
rev 193139, haskell-yesod-persistent/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-10-24 03:25:36 UTC (rev 193140)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-persistent
+pkgname=haskell-yesod-persistent
+pkgver=1.4.0.6
+pkgrel=8
+pkgdesc="Some helpers for using Persistent from Yesod."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-blaze-builder" "haskell-conduit" 
"haskell-persistent"
+ "haskell-persistent-template" "haskell-resource-pool" 
"haskell-resourcet"
+ "haskell-yesod-core")
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('69c1261b49a6448795d569431691115fc6b86f7b296905573f5b2271465dee71')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--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"
+}

Copied: haskell-yesod-persistent/repos/community-staging-x86_64/PKGBUILD (from 
rev 193139, haskell-yesod-persistent/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-10-24 03:25:36 UTC (rev 193140)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-persistent
+pkgname=haskell-yesod-persistent
+pkgver=1.4.0.6
+pkgrel=8
+pkgdesc="Some helpers for using Persistent from Yesod."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-blaze-builder" "haskell-conduit" 
"haskell-persistent"
+ "haskell-persistent-template" "haskell-resource-pool" 
"haskell-resourcet"
+ "haskell-yesod-core")
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('69c1261b49a6448795d569431691115fc6b86f7b296905573f5b2271465dee71')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--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 

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

2016-10-23 Thread Felix Yan
Date: Monday, October 24, 2016 @ 03:25:04
  Author: felixonmars
Revision: 193139

upgpkg: haskell-yesod-persistent 1.4.0.6-8

rebuild with http-api-data-0.3.2, http-conduit-2.2.3

Modified:
  haskell-yesod-persistent/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-24 03:07:39 UTC (rev 193138)
+++ PKGBUILD2016-10-24 03:25:04 UTC (rev 193139)
@@ -5,7 +5,7 @@
 _hkgname=yesod-persistent
 pkgname=haskell-yesod-persistent
 pkgver=1.4.0.6
-pkgrel=7
+pkgrel=8
 pkgdesc="Some helpers for using Persistent from Yesod."
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2016-10-23 Thread Felix Yan
Date: Monday, October 24, 2016 @ 03:07:39
  Author: felixonmars
Revision: 193138

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

Added:
  haskell-persistent-template/repos/community-staging-i686/
  haskell-persistent-template/repos/community-staging-i686/PKGBUILD
(from rev 193137, haskell-persistent-template/trunk/PKGBUILD)
  haskell-persistent-template/repos/community-staging-x86_64/
  haskell-persistent-template/repos/community-staging-x86_64/PKGBUILD
(from rev 193137, haskell-persistent-template/trunk/PKGBUILD)

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

Copied: haskell-persistent-template/repos/community-staging-i686/PKGBUILD (from 
rev 193137, haskell-persistent-template/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-10-24 03:07:39 UTC (rev 193138)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=persistent-template
+pkgname=haskell-persistent-template
+pkgver=2.5.1.6
+pkgrel=7
+pkgdesc="Type-safe, non-relational, multi-backend persistence"
+url="http://www.yesodweb.com/book/persistent;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-aeson-compat" 
"haskell-http-api-data"
+ "haskell-monad-control" "haskell-monad-logger" "haskell-path-pieces"
+ "haskell-persistent" "haskell-tagged" "haskell-text"
+ "haskell-unordered-containers")
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('f88a8735173ba197f8d698a9c1fd5c649234fd60efe493f401432926a55e7b44')
+
+prepare() {
+sed -i 's/http-api-data>= 0.2   && < 0.3/http-api-data 
   >= 0.2   \&\& < 0.4/' \
+$_hkgname-$pkgver/$_hkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--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"
+}

Copied: haskell-persistent-template/repos/community-staging-x86_64/PKGBUILD 
(from rev 193137, haskell-persistent-template/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-10-24 03:07:39 UTC (rev 193138)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=persistent-template
+pkgname=haskell-persistent-template
+pkgver=2.5.1.6
+pkgrel=7
+pkgdesc="Type-safe, non-relational, multi-backend persistence"
+url="http://www.yesodweb.com/book/persistent;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-aeson-compat" 
"haskell-http-api-data"
+ "haskell-monad-control" "haskell-monad-logger" "haskell-path-pieces"
+ "haskell-persistent" "haskell-tagged" "haskell-text"
+ "haskell-unordered-containers")
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('f88a8735173ba197f8d698a9c1fd5c649234fd60efe493f401432926a55e7b44')
+
+prepare() {
+sed -i 's/http-api-data>= 0.2   && < 0.3/http-api-data 
   >= 0.2   \&\& < 0.4/' \
+$_hkgname-$pkgver/$_hkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build

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

2016-10-23 Thread Felix Yan
Date: Monday, October 24, 2016 @ 03:06:55
  Author: felixonmars
Revision: 193137

upgpkg: haskell-persistent-template 2.5.1.6-7

rebuild with http-api-data-0.3.2, http-conduit-2.2.3

Modified:
  haskell-persistent-template/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-24 03:02:43 UTC (rev 193136)
+++ PKGBUILD2016-10-24 03:06:55 UTC (rev 193137)
@@ -5,7 +5,7 @@
 _hkgname=persistent-template
 pkgname=haskell-persistent-template
 pkgver=2.5.1.6
-pkgrel=6
+pkgrel=7
 pkgdesc="Type-safe, non-relational, multi-backend persistence"
 url="http://www.yesodweb.com/book/persistent;
 license=("MIT")


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

2016-10-23 Thread Felix Yan
Date: Monday, October 24, 2016 @ 03:02:43
  Author: felixonmars
Revision: 193136

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

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

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

Copied: haskell-persistent/repos/community-staging-i686/PKGBUILD (from rev 
193135, haskell-persistent/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-10-24 03:02:43 UTC (rev 193136)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=persistent
+pkgname=haskell-persistent
+pkgver=2.6
+pkgrel=6
+pkgdesc="Type-safe, multi-backend data serialization"
+url="http://www.yesodweb.com/book/persistent;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-attoparsec" 
"haskell-base64-bytestring"
+ "haskell-blaze-html" "haskell-blaze-markup" "haskell-conduit" 
"haskell-exceptions"
+ "haskell-fast-logger" "haskell-http-api-data" "haskell-lifted-base"
+ "haskell-monad-control" "haskell-monad-logger" "haskell-mtl" 
"haskell-old-locale"
+ "haskell-path-pieces" "haskell-resource-pool" "haskell-resourcet" 
"haskell-scientific"
+ "haskell-silently" "haskell-tagged" "haskell-text" 
"haskell-transformers-base"
+ "haskell-unordered-containers" "haskell-vector")
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('42423362de94599581d18be644ba77181e87417087b3953daec2e8512d408e3e')
+
+prepare() {
+sed -i 's/http-api-data>= 0.2   && < 0.3/http-api-data 
   >= 0.2   \&\& < 0.4/' \
+$_hkgname-$pkgver/$_hkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-nooverlap
+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"
+}

Copied: haskell-persistent/repos/community-staging-x86_64/PKGBUILD (from rev 
193135, haskell-persistent/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-10-24 03:02:43 UTC (rev 193136)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=persistent
+pkgname=haskell-persistent
+pkgver=2.6
+pkgrel=6
+pkgdesc="Type-safe, multi-backend data serialization"
+url="http://www.yesodweb.com/book/persistent;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-attoparsec" 
"haskell-base64-bytestring"
+ "haskell-blaze-html" "haskell-blaze-markup" "haskell-conduit" 
"haskell-exceptions"
+ "haskell-fast-logger" "haskell-http-api-data" "haskell-lifted-base"
+ "haskell-monad-control" "haskell-monad-logger" "haskell-mtl" 
"haskell-old-locale"
+ "haskell-path-pieces" "haskell-resource-pool" "haskell-resourcet" 
"haskell-scientific"
+ "haskell-silently" "haskell-tagged" "haskell-text" 
"haskell-transformers-base"
+ "haskell-unordered-containers" "haskell-vector")
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)

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

2016-10-23 Thread Felix Yan
Date: Monday, October 24, 2016 @ 03:02:11
  Author: felixonmars
Revision: 193135

upgpkg: haskell-persistent 2.6-6

rebuild with http-api-data-0.3.2, http-conduit-2.2.3

Modified:
  haskell-persistent/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-24 02:56:45 UTC (rev 193134)
+++ PKGBUILD2016-10-24 03:02:11 UTC (rev 193135)
@@ -5,7 +5,7 @@
 _hkgname=persistent
 pkgname=haskell-persistent
 pkgver=2.6
-pkgrel=5
+pkgrel=6
 pkgdesc="Type-safe, multi-backend data serialization"
 url="http://www.yesodweb.com/book/persistent;
 license=("MIT")


[arch-commits] Commit in haskell-http-api-data/repos (6 files)

2016-10-23 Thread Felix Yan
Date: Monday, October 24, 2016 @ 02:56:45
  Author: felixonmars
Revision: 193134

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

Added:
  haskell-http-api-data/repos/community-staging-i686/
  haskell-http-api-data/repos/community-staging-i686/PKGBUILD
(from rev 193133, haskell-http-api-data/trunk/PKGBUILD)
  
haskell-http-api-data/repos/community-staging-i686/haskell-http-api-data.install
(from rev 193133, haskell-http-api-data/trunk/haskell-http-api-data.install)
  haskell-http-api-data/repos/community-staging-x86_64/
  haskell-http-api-data/repos/community-staging-x86_64/PKGBUILD
(from rev 193133, haskell-http-api-data/trunk/PKGBUILD)
  
haskell-http-api-data/repos/community-staging-x86_64/haskell-http-api-data.install
(from rev 193133, haskell-http-api-data/trunk/haskell-http-api-data.install)

+
 community-staging-i686/PKGBUILD|   43 +++
 community-staging-i686/haskell-http-api-data.install   |   18 ++
 community-staging-x86_64/PKGBUILD  |   43 +++
 community-staging-x86_64/haskell-http-api-data.install |   18 ++
 4 files changed, 122 insertions(+)

Copied: haskell-http-api-data/repos/community-staging-i686/PKGBUILD (from rev 
193133, haskell-http-api-data/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-10-24 02:56:45 UTC (rev 193134)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http-api-data
+pkgname=haskell-http-api-data
+pkgver=0.3.2
+pkgrel=1
+pkgdesc="Converting to/from HTTP API data like URL pieces, headers and query 
parameters."
+url="http://github.com/fizruk/http-api-data;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-hashable" "haskell-text" 
"haskell-time-locale-compat"
+ "haskell-unordered-containers" "haskell-uri-bytestring" 
"haskell-uuid-types")
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('015fb4167f807c31af465cd8991454c3ed72ad5935ff0839993f4fcb038958f2')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-use-text-show
+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"
+}

Copied: 
haskell-http-api-data/repos/community-staging-i686/haskell-http-api-data.install
 (from rev 193133, haskell-http-api-data/trunk/haskell-http-api-data.install)
===
--- community-staging-i686/haskell-http-api-data.install
(rev 0)
+++ community-staging-i686/haskell-http-api-data.install2016-10-24 
02:56:45 UTC (rev 193134)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-http-api-data
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-http-api-data/repos/community-staging-x86_64/PKGBUILD (from rev 
193133, haskell-http-api-data/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-10-24 02:56:45 UTC (rev 193134)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http-api-data

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

2016-10-23 Thread Felix Yan
Date: Monday, October 24, 2016 @ 02:56:09
  Author: felixonmars
Revision: 193133

upgpkg: haskell-http-api-data 0.3.2-1

rebuild with http-api-data-0.3.2, http-conduit-2.2.3

Modified:
  haskell-http-api-data/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-24 02:45:24 UTC (rev 193132)
+++ PKGBUILD2016-10-24 02:56:09 UTC (rev 193133)
@@ -4,7 +4,7 @@
 
 _hkgname=http-api-data
 pkgname=haskell-http-api-data
-pkgver=0.3.1
+pkgver=0.3.2
 pkgrel=1
 pkgdesc="Converting to/from HTTP API data like URL pieces, headers and query 
parameters."
 url="http://github.com/fizruk/http-api-data;
@@ -13,7 +13,7 @@
 depends=("ghc=8.0.1" "haskell-hashable" "haskell-text" 
"haskell-time-locale-compat"
  "haskell-unordered-containers" "haskell-uri-bytestring" 
"haskell-uuid-types")
 
source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha256sums=('d5ab6897aae064ac8278fff3b4ce3289446990735f71798b4815cf0eb6ad94c7')
+sha256sums=('015fb4167f807c31af465cd8991454c3ed72ad5935ff0839993f4fcb038958f2')
 
 build() {
 cd "${srcdir}/${_hkgname}-${pkgver}"


[arch-commits] Commit in python-irc/repos/community-any (5 files)

2016-10-23 Thread Kyle Keen
Date: Monday, October 24, 2016 @ 02:45:24
  Author: kkeen
Revision: 193132

archrelease: copy trunk to community-any

Added:
  python-irc/repos/community-any/PKGBUILD
(from rev 193131, python-irc/trunk/PKGBUILD)
Deleted:
  python-irc/repos/community-any/PKGBUILD
  python-irc/repos/community-any/jaraco.py
  python-irc/repos/community-any/python-irc.install
  python-irc/repos/community-any/python2-irc.install

-+
 PKGBUILD|  116 +++
 jaraco.py   |  122 --
 python-irc.install  |   48 ---
 python2-irc.install |   48 ---
 4 files changed, 47 insertions(+), 287 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-10-24 02:45:03 UTC (rev 193131)
+++ PKGBUILD2016-10-24 02:45:24 UTC (rev 193132)
@@ -1,69 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen 
-# Contributor: Jelle van der Waa 
-# Contributor: Pierre Chapuis 
-# Contributor: Stefano Esposito 
-
-pkgbase=python-irc
-pkgname=('python-irc' 'python2-irc')
-pkgver=11.0.1
-pkgrel=2
-pkgdesc="IRC (Internet Relay Chat) protocol client library for Python"
-depends=('python-six')
-makedepends=('python-setuptools' 'python2-setuptools')
-checkdepends=('python-pytest' 'python2-pytest')
-arch=('any')
-url="http://pypi.python.org/pypi/irc;
-license=('LGPL')
-install='python-irc.install'
-source=(http://pypi.python.org/packages/source/i/irc/irc-$pkgver.zip
-jaraco.py)
-md5sums=('391088628b92b5a5ad48e2fefa4feab1'
- '0577cd2b5ffe3907b9b7ce60aa422bb6')
-
-build() {
-  cd "$srcdir"
-  # todo, convince author not to use his own misc lib
-  cp jaraco.py "irc-$pkgver/irc/"
-  pushd "irc-$pkgver"
-  sed -i 's/jaraco.util.itertools/irc.jaraco/' irc/client.py
-  sed -i 's/jaraco.util.string/irc.jaraco/'irc/strings.py
-  sed -i 's/jaraco.util.dictlib/irc.jaraco/'   irc/dict.py
-  sed -i '25i irc/jaraco.py' irc.egg-info/SOURCES.txt
-  sed -i "s/'jaraco.util',//" setup.py
-  echo "six" > irc.egg-info/requires.txt
-  popd
-  cp -a "irc-$pkgver" "irc2-$pkgver"
-}
-
-package_python2-irc()
-{
-  depends=('python2-six')
-  install='python2-irc.install'
-
-  cd "$srcdir/irc2-$pkgver"
-  python2 setup.py install --root="$pkgdir" --optimize=0
-  find "$pkgdir/" -name '*.pyc' -delete
-}
-
-package_python-irc()
-{
-  depends=('python-six')
-  install='python-irc.install'
-
-  cd "$srcdir/irc-$pkgver"
-  export LC_ALL=en_US.UTF-8
-  python3 setup.py install --root="$pkgdir" --optimize=0
-  find "$pkgdir/" -name '*.pyc' -delete
-  find "$pkgdir/" -type d -empty -delete
-}
-
-check()
-{
-  cd "$srcdir/irc-$pkgver"
-  export LC_ALL=en_US.UTF-8
-  python3 setup.py test 
-
-  cd "$srcdir/irc2-$pkgver"
-  python2 setup.py test 
-}

Copied: python-irc/repos/community-any/PKGBUILD (from rev 193131, 
python-irc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-10-24 02:45:24 UTC (rev 193132)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Kyle Keen 
+# Contributor: Jelle van der Waa 
+# Contributor: Pierre Chapuis 
+# Contributor: Stefano Esposito 
+
+pkgbase=python-irc
+pkgname=('python-irc' 'python2-irc')
+pkgver=15.0.3
+pkgrel=1
+pkgdesc="IRC (Internet Relay Chat) protocol client library for Python"
+depends=('python-six' 'python-pytz' 'python-more-itertools' 'python-jaraco')
+makedepends=('python-setuptools' 'python2-setuptools'
+'python2-jaraco' 'python2-more-itertools' 'python2-pytz')
+checkdepends=('python-pytest' 'python2-pytest')
+arch=('any')
+url="http://pypi.python.org/pypi/irc;
+license=('LGPL')
+source=("https://files.pythonhosted.org/packages/source/i/irc/irc-$pkgver.tar.gz;)
+md5sums=('14ad3be51112e89f0d4d2392e64fc46f')
+
+build() {
+  cd "$srcdir"
+  cp -a "irc-$pkgver" "irc2-$pkgver"
+}
+
+package_python-irc() {
+  cd "$srcdir/irc-$pkgver"
+  export LC_ALL=en_US.UTF-8
+  python3 setup.py install --root="$pkgdir" --optimize=0
+}
+
+package_python2-irc() {
+  depends=('python2-six' 'python2-pytz' 'python2-more-itertools' 
'python2-jaraco')
+
+  cd "$srcdir/irc2-$pkgver"
+  python2 setup.py install --root="$pkgdir" --optimize=0
+}
+
+check() {
+  cd "$srcdir/irc-$pkgver"
+  export LC_ALL=en_US.UTF-8
+  python3 setup.py test 
+
+  cd "$srcdir/irc2-$pkgver"
+  python2 setup.py test 
+}

Deleted: jaraco.py
===
--- jaraco.py   2016-10-24 02:45:03 UTC (rev 193131)
+++ jaraco.py   2016-10-24 02:45:24 UTC (rev 193132)
@@ -1,122 +0,0 @@
-"""
-Sometimes parts of https://pypi.python.org/pypi/jaraco.util
-leak into the python-irc package.  Instead of making a whole
-new package for these util functions, let's embed them
-instead.  

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

2016-10-23 Thread Kyle Keen
Date: Monday, October 24, 2016 @ 02:45:03
  Author: kkeen
Revision: 193131

upgpkg: python-irc 15.0.3-1

Modified:
  python-irc/trunk/PKGBUILD
Deleted:
  python-irc/trunk/jaraco.py
  python-irc/trunk/python-irc.install
  python-irc/trunk/python2-irc.install

-+
 PKGBUILD|   54 ++
 jaraco.py   |  122 --
 python-irc.install  |   48 ---
 python2-irc.install |   48 ---
 4 files changed, 16 insertions(+), 256 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-10-24 02:32:57 UTC (rev 193130)
+++ PKGBUILD2016-10-24 02:45:03 UTC (rev 193131)
@@ -6,62 +6,40 @@
 
 pkgbase=python-irc
 pkgname=('python-irc' 'python2-irc')
-pkgver=11.0.1
-pkgrel=2
+pkgver=15.0.3
+pkgrel=1
 pkgdesc="IRC (Internet Relay Chat) protocol client library for Python"
-depends=('python-six')
-makedepends=('python-setuptools' 'python2-setuptools')
+depends=('python-six' 'python-pytz' 'python-more-itertools' 'python-jaraco')
+makedepends=('python-setuptools' 'python2-setuptools'
+'python2-jaraco' 'python2-more-itertools' 'python2-pytz')
 checkdepends=('python-pytest' 'python2-pytest')
 arch=('any')
 url="http://pypi.python.org/pypi/irc;
 license=('LGPL')
-install='python-irc.install'
-source=(http://pypi.python.org/packages/source/i/irc/irc-$pkgver.zip
-jaraco.py)
-md5sums=('391088628b92b5a5ad48e2fefa4feab1'
- '0577cd2b5ffe3907b9b7ce60aa422bb6')
+source=("https://files.pythonhosted.org/packages/source/i/irc/irc-$pkgver.tar.gz;)
+md5sums=('14ad3be51112e89f0d4d2392e64fc46f')
 
 build() {
   cd "$srcdir"
-  # todo, convince author not to use his own misc lib
-  cp jaraco.py "irc-$pkgver/irc/"
-  pushd "irc-$pkgver"
-  sed -i 's/jaraco.util.itertools/irc.jaraco/' irc/client.py
-  sed -i 's/jaraco.util.string/irc.jaraco/'irc/strings.py
-  sed -i 's/jaraco.util.dictlib/irc.jaraco/'   irc/dict.py
-  sed -i '25i irc/jaraco.py' irc.egg-info/SOURCES.txt
-  sed -i "s/'jaraco.util',//" setup.py
-  echo "six" > irc.egg-info/requires.txt
-  popd
   cp -a "irc-$pkgver" "irc2-$pkgver"
 }
 
-package_python2-irc()
-{
-  depends=('python2-six')
-  install='python2-irc.install'
+package_python-irc() {
+  cd "$srcdir/irc-$pkgver"
+  export LC_ALL=en_US.UTF-8
+  python3 setup.py install --root="$pkgdir" --optimize=0
+}
 
+package_python2-irc() {
+  depends=('python2-six' 'python2-pytz' 'python2-more-itertools' 
'python2-jaraco')
+
   cd "$srcdir/irc2-$pkgver"
   python2 setup.py install --root="$pkgdir" --optimize=0
-  find "$pkgdir/" -name '*.pyc' -delete
 }
 
-package_python-irc()
-{
-  depends=('python-six')
-  install='python-irc.install'
-
+check() {
   cd "$srcdir/irc-$pkgver"
   export LC_ALL=en_US.UTF-8
-  python3 setup.py install --root="$pkgdir" --optimize=0
-  find "$pkgdir/" -name '*.pyc' -delete
-  find "$pkgdir/" -type d -empty -delete
-}
-
-check()
-{
-  cd "$srcdir/irc-$pkgver"
-  export LC_ALL=en_US.UTF-8
   python3 setup.py test 
 
   cd "$srcdir/irc2-$pkgver"

Deleted: jaraco.py
===
--- jaraco.py   2016-10-24 02:32:57 UTC (rev 193130)
+++ jaraco.py   2016-10-24 02:45:03 UTC (rev 193131)
@@ -1,122 +0,0 @@
-"""
-Sometimes parts of https://pypi.python.org/pypi/jaraco.util
-leak into the python-irc package.  Instead of making a whole
-new package for these util functions, let's embed them
-instead.  Reconsider this when there is more than a dozen
-lines of code.
-
-He also says that "this grab-bag of routines is deprecated"
-"""
-
-import six
-
-# from jaraco.util.itertools import always_iterable
-def always_iterable(item):
-"taken from jaraco.util-10.0.2"
-if item is None:
-item = ()
-if isinstance(item, six.string_types) or not hasattr(item, '__iter__'):
-item = (item,)
-return item
-
-
-# from jaraco.util.string import FoldedCase
-class FoldedCase(six.text_type):
-"""
-A case insensitive string class; behaves just like str
-except compares equal when the only variation is case.
->>> s = FoldedCase('hello world')
-
->>> s == 'Hello World'
-True
-
->>> 'Hello World' == s
-True
-
->>> s.index('O')
-4
-
->>> s.split('O')
-['hell', ' w', 'rld']
-
->>> sorted(map(FoldedCase, ['GAMMA', 'alpha', 'Beta']))
-['alpha', 'Beta', 'GAMMA']
-"""
-def __lt__(self, other):
-return self.lower() < other.lower()
-
-def __gt__(self, other):
-return self.lower() > other.lower()
-
-def __eq__(self, other):
-return self.lower() == other.lower()
-
-def __hash__(self):
-return hash(self.lower())
-
-# cache lower since it's likely to be called frequently.
-def lower(self):
-self._lower = super(FoldedCase, self).lower()
-self.lower = lambda: self._lower
-return self._lower
-
-def index(self, sub):
-  

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

2016-10-23 Thread Kyle Keen
Date: Monday, October 24, 2016 @ 02:32:57
  Author: kkeen
Revision: 193130

archrelease: copy trunk to community-any

Added:
  python-jaraco/repos/community-any/
  python-jaraco/repos/community-any/PKGBUILD
(from rev 193129, python-jaraco/trunk/PKGBUILD)

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

Copied: python-jaraco/repos/community-any/PKGBUILD (from rev 193129, 
python-jaraco/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2016-10-24 02:32:57 UTC (rev 193130)
@@ -0,0 +1,111 @@
+# $Id$
+# Maintainer: Kyle Keen 
+
+pkgbase=python-jaraco
+pkgname=('python-jaraco' 'python2-jaraco')
+pkgver=2016.10.23
+pkgrel=1
+pkgdesc='A gaggle of idiosyncratic and questionable wrappers for the stdlib.'
+arch=('any')
+url='https://github.com/jaraco?page=1=repositories=%E2%9C%93=jaraco'
+license=('MIT')
+depends=('python-six' 'python-pytz' 'python-more-itertools')
+makedepends=('python-setuptools' 'python2-setuptools'
+'python2-backports.functools_lru_cache' 'python2-more-itertools' 
'python2-pytz')
+
+# These should not exist and do not deserve 16 packages.
+# Furthermore, try to make a replacement for python-irc so we can nuke it all.
+_tempora=1.6.1
+_text=1.8
+_functools=1.15.1
+_collections=1.5
+_classes=1.4
+_stream=1.1.1
+_logging=1.5
+_itertools=2.0
+_pyhost="https://files.pythonhosted.org/packages/source;
+
+source=("$_pyhost/t/tempora/tempora-$_tempora.tar.gz"
+"$_pyhost/j/jaraco.text/jaraco.text-$_text.tar.gz"
+"$_pyhost/j/jaraco.functools/jaraco.functools-$_functools.tar.gz"
+"$_pyhost/j/jaraco.collections/jaraco.collections-$_collections.tar.gz"
+"$_pyhost/j/jaraco.classes/jaraco.classes-$_classes.tar.gz"
+"$_pyhost/j/jaraco.stream/jaraco.stream-$_stream.tar.gz"
+"$_pyhost/j/jaraco.logging/jaraco.logging-$_logging.tar.gz"
+"$_pyhost/j/jaraco.itertools/jaraco.itertools-$_itertools.tar.gz")
+md5sums=('0008beb2aa932efc9668c350b9694893'
+ '37886d2ad04834ce13cdd525a0ab98f9'
+ '4ed8737ad7c4d8ad12fa9d97cdcd3c74'
+ 'd942e2c6ee54a76eaa7c8e0ad45c799c'
+ '83f82d523ef2b5b48107e47f3fbdeb1f'
+ '6502157c365081e00c28b047bed7214e'
+ '4d21c7d0f457e4a46da514ec0449d7c2'
+ 'a26a222b010a6b51a0ace62a48a8bf89')
+
+prepare() {
+  # remove inflect dep
+  cd "$srcdir/jaraco.itertools-$_itertools"
+  sed -i "s/'inflect',//" setup.py
+  sed -i 's/import inflect//' jaraco/itertools.py
+  sed -i 's/ord = .*$/ord = str(self.sliceArgs[2])+"th"/' jaraco/itertools.py
+
+  cd "$srcdir"
+  cp -R "tempora-$_tempora""py2-tempora-$_tempora"
+  cp -R "jaraco.text-$_text"   "py2-jaraco.text-$_text"
+  cp -R "jaraco.functools-$_functools" "py2-jaraco.functools-$_functools"
+  cp -R "jaraco.collections-$_collections" 
"py2-jaraco.collections-$_collections"
+  cp -R "jaraco.classes-$_classes" "py2-jaraco.classes-$_classes"
+  cp -R "jaraco.stream-$_stream"   "py2-jaraco.stream-$_stream"
+  cp -R "jaraco.logging-$_logging" "py2-jaraco.logging-$_logging"
+  cp -R "jaraco.itertools-$_itertools" "py2-jaraco.itertools-$_itertools"
+}
+
+package_python-jaraco() {
+  cd "$srcdir/tempora-$_tempora"
+  python3 setup.py install --root="$pkgdir/" --optimize=0
+  cd "$srcdir/jaraco.text-$_text"
+  python3 setup.py install --root="$pkgdir/" --optimize=0
+  cd "$srcdir/jaraco.functools-$_functools"
+  python3 setup.py install --root="$pkgdir/" --optimize=0
+  cd "$srcdir/jaraco.collections-$_collections"
+  python3 setup.py install --root="$pkgdir/" --optimize=0
+  cd "$srcdir/jaraco.classes-$_classes"
+  python3 setup.py install --root="$pkgdir/" --optimize=0
+  cd "$srcdir/jaraco.stream-$_stream"
+  python3 setup.py install --root="$pkgdir/" --optimize=0
+  cd "$srcdir/jaraco.logging-$_logging"
+  python3 setup.py install --root="$pkgdir/" --optimize=0
+  cd "$srcdir/jaraco.itertools-$_itertools"
+  python3 setup.py install --root="$pkgdir/" --optimize=0
+
+  rm "$pkgdir/usr/bin/calc-prorate"
+  rmdir "$pkgdir/usr/bin"
+  # None of these packages have a license file?  Fix later.
+  #install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_python2-jaraco() {
+  depends=('python2-six' 'python2-pytz' 'python2-more-itertools' 
'python2-backports.functools_lru_cache')
+  cd "$srcdir/py2-tempora-$_tempora"
+  python2 setup.py install --root="$pkgdir/" --optimize=0
+  cd "$srcdir/py2-jaraco.text-$_text"
+  python2 setup.py install --root="$pkgdir/" --optimize=0
+  cd "$srcdir/py2-jaraco.functools-$_functools"
+  python2 setup.py install --root="$pkgdir/" --optimize=0
+  cd "$srcdir/py2-jaraco.collections-$_collections"
+  python2 setup.py install --root="$pkgdir/" --optimize=0
+  cd "$srcdir/py2-jaraco.classes-$_classes"
+  python2 

[arch-commits] Commit in (4 files)

2016-10-23 Thread Kyle Keen
Date: Monday, October 24, 2016 @ 02:32:02
  Author: kkeen
Revision: 193129

pkginit: python-jaraco

Added:
  python-jaraco/
  python-jaraco/repos/
  python-jaraco/trunk/
  python-jaraco/trunk/PKGBUILD

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

Added: python-jaraco/trunk/PKGBUILD
===
--- python-jaraco/trunk/PKGBUILD(rev 0)
+++ python-jaraco/trunk/PKGBUILD2016-10-24 02:32:02 UTC (rev 193129)
@@ -0,0 +1,111 @@
+# $Id$
+# Maintainer: Kyle Keen 
+
+pkgbase=python-jaraco
+pkgname=('python-jaraco' 'python2-jaraco')
+pkgver=2016.10.23
+pkgrel=1
+pkgdesc='A gaggle of idiosyncratic and questionable wrappers for the stdlib.'
+arch=('any')
+url='https://github.com/jaraco?page=1=repositories=%E2%9C%93=jaraco'
+license=('MIT')
+depends=('python-six' 'python-pytz' 'python-more-itertools')
+makedepends=('python-setuptools' 'python2-setuptools'
+'python2-backports.functools_lru_cache' 'python2-more-itertools' 
'python2-pytz')
+
+# These should not exist and do not deserve 16 packages.
+# Furthermore, try to make a replacement for python-irc so we can nuke it all.
+_tempora=1.6.1
+_text=1.8
+_functools=1.15.1
+_collections=1.5
+_classes=1.4
+_stream=1.1.1
+_logging=1.5
+_itertools=2.0
+_pyhost="https://files.pythonhosted.org/packages/source;
+
+source=("$_pyhost/t/tempora/tempora-$_tempora.tar.gz"
+"$_pyhost/j/jaraco.text/jaraco.text-$_text.tar.gz"
+"$_pyhost/j/jaraco.functools/jaraco.functools-$_functools.tar.gz"
+"$_pyhost/j/jaraco.collections/jaraco.collections-$_collections.tar.gz"
+"$_pyhost/j/jaraco.classes/jaraco.classes-$_classes.tar.gz"
+"$_pyhost/j/jaraco.stream/jaraco.stream-$_stream.tar.gz"
+"$_pyhost/j/jaraco.logging/jaraco.logging-$_logging.tar.gz"
+"$_pyhost/j/jaraco.itertools/jaraco.itertools-$_itertools.tar.gz")
+md5sums=('0008beb2aa932efc9668c350b9694893'
+ '37886d2ad04834ce13cdd525a0ab98f9'
+ '4ed8737ad7c4d8ad12fa9d97cdcd3c74'
+ 'd942e2c6ee54a76eaa7c8e0ad45c799c'
+ '83f82d523ef2b5b48107e47f3fbdeb1f'
+ '6502157c365081e00c28b047bed7214e'
+ '4d21c7d0f457e4a46da514ec0449d7c2'
+ 'a26a222b010a6b51a0ace62a48a8bf89')
+
+prepare() {
+  # remove inflect dep
+  cd "$srcdir/jaraco.itertools-$_itertools"
+  sed -i "s/'inflect',//" setup.py
+  sed -i 's/import inflect//' jaraco/itertools.py
+  sed -i 's/ord = .*$/ord = str(self.sliceArgs[2])+"th"/' jaraco/itertools.py
+
+  cd "$srcdir"
+  cp -R "tempora-$_tempora""py2-tempora-$_tempora"
+  cp -R "jaraco.text-$_text"   "py2-jaraco.text-$_text"
+  cp -R "jaraco.functools-$_functools" "py2-jaraco.functools-$_functools"
+  cp -R "jaraco.collections-$_collections" 
"py2-jaraco.collections-$_collections"
+  cp -R "jaraco.classes-$_classes" "py2-jaraco.classes-$_classes"
+  cp -R "jaraco.stream-$_stream"   "py2-jaraco.stream-$_stream"
+  cp -R "jaraco.logging-$_logging" "py2-jaraco.logging-$_logging"
+  cp -R "jaraco.itertools-$_itertools" "py2-jaraco.itertools-$_itertools"
+}
+
+package_python-jaraco() {
+  cd "$srcdir/tempora-$_tempora"
+  python3 setup.py install --root="$pkgdir/" --optimize=0
+  cd "$srcdir/jaraco.text-$_text"
+  python3 setup.py install --root="$pkgdir/" --optimize=0
+  cd "$srcdir/jaraco.functools-$_functools"
+  python3 setup.py install --root="$pkgdir/" --optimize=0
+  cd "$srcdir/jaraco.collections-$_collections"
+  python3 setup.py install --root="$pkgdir/" --optimize=0
+  cd "$srcdir/jaraco.classes-$_classes"
+  python3 setup.py install --root="$pkgdir/" --optimize=0
+  cd "$srcdir/jaraco.stream-$_stream"
+  python3 setup.py install --root="$pkgdir/" --optimize=0
+  cd "$srcdir/jaraco.logging-$_logging"
+  python3 setup.py install --root="$pkgdir/" --optimize=0
+  cd "$srcdir/jaraco.itertools-$_itertools"
+  python3 setup.py install --root="$pkgdir/" --optimize=0
+
+  rm "$pkgdir/usr/bin/calc-prorate"
+  rmdir "$pkgdir/usr/bin"
+  # None of these packages have a license file?  Fix later.
+  #install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_python2-jaraco() {
+  depends=('python2-six' 'python2-pytz' 'python2-more-itertools' 
'python2-backports.functools_lru_cache')
+  cd "$srcdir/py2-tempora-$_tempora"
+  python2 setup.py install --root="$pkgdir/" --optimize=0
+  cd "$srcdir/py2-jaraco.text-$_text"
+  python2 setup.py install --root="$pkgdir/" --optimize=0
+  cd "$srcdir/py2-jaraco.functools-$_functools"
+  python2 setup.py install --root="$pkgdir/" --optimize=0
+  cd "$srcdir/py2-jaraco.collections-$_collections"
+  python2 setup.py install --root="$pkgdir/" --optimize=0
+  cd "$srcdir/py2-jaraco.classes-$_classes"
+  python2 setup.py install --root="$pkgdir/" --optimize=0
+  cd "$srcdir/py2-jaraco.stream-$_stream"
+  python2 

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

2016-10-23 Thread Sven-Hendrik Haase
Date: Monday, October 24, 2016 @ 02:09:17
  Author: svenstaro
Revision: 193127

upgpkg: gitlab-shell 3.6.6-2

Fix permissions

Modified:
  gitlab-shell/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-24 02:08:43 UTC (rev 193126)
+++ PKGBUILD2016-10-24 02:09:17 UTC (rev 193127)
@@ -8,7 +8,7 @@
 
 pkgname=gitlab-shell
 pkgver=3.6.6
-pkgrel=1
+pkgrel=2
 pkgdesc="Self hosted Git management software. Replacement for gitolite"
 arch=('any')
 url="https://gitlab.com/gitlab-org/gitlab-shell/;
@@ -26,11 +26,11 @@
 md5sums=('94fd70cb6fd38c8fd7cd9c4ccc371d7e'
  '6b917256b13a1685e9a3cc73e68152d0')
 
-_homedir='/var/lib/gitlab'
 _datadir="/usr/share/webapps/${pkgname}"
+_etcdir="/etc/webapps/${pkgname}"
+_homedir="/var/lib/gitlab"
+_logdir="/var/log/gitlab"
 _srcdir="gitlab-shell-v${pkgver}"
-_logdir='/var/log/gitlab'
-_etcdir="/etc/webapps/${pkgname}"
 
 prepare() {
   cd "${srcdir}/${_srcdir}"-*
@@ -47,7 +47,7 @@
 package() {
   cd "${srcdir}/${_srcdir}"-*
 
-  install -dm755 -o 105 -g 105 "${pkgdir}${_datadir}"
+  install -dm755 -o root -g root "${pkgdir}${_datadir}"
   install -dm750 -o 105 -g 105 "${pkgdir}${_homedir}"
   install -dm750 -o 105 -g 105 "${pkgdir}${_homedir}/satellites"
   install -dm700 -o 105 -g 105 "${pkgdir}${_homedir}/.ssh"


[arch-commits] Commit in gitlab-shell/repos/community-any (6 files)

2016-10-23 Thread Sven-Hendrik Haase
Date: Monday, October 24, 2016 @ 02:09:23
  Author: svenstaro
Revision: 193128

archrelease: copy trunk to community-any

Added:
  gitlab-shell/repos/community-any/PKGBUILD
(from rev 193127, gitlab-shell/trunk/PKGBUILD)
  gitlab-shell/repos/community-any/gitlab-shell.gitconfig
(from rev 193127, gitlab-shell/trunk/gitlab-shell.gitconfig)
  gitlab-shell/repos/community-any/gitlab-shell.install
(from rev 193127, gitlab-shell/trunk/gitlab-shell.install)
Deleted:
  gitlab-shell/repos/community-any/PKGBUILD
  gitlab-shell/repos/community-any/gitlab-shell.gitconfig
  gitlab-shell/repos/community-any/gitlab-shell.install

+
 PKGBUILD   |  160 +++
 gitlab-shell.gitconfig |6 -
 gitlab-shell.install   |   14 ++--
 3 files changed, 90 insertions(+), 90 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-10-24 02:09:17 UTC (rev 193127)
+++ PKGBUILD2016-10-24 02:09:23 UTC (rev 193128)
@@ -1,80 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Pavol (Lopo) Hluchy 
-# Contributor: Massimiliano Torromeo 
-# Contributor: Jonas Heinrich 
-# Contributor: Lee Watson 
-# Contributor: Tobias Hunger 
-# Contributor: Stefan Tatschner 
-
-pkgname=gitlab-shell
-pkgver=3.6.6
-pkgrel=1
-pkgdesc="Self hosted Git management software. Replacement for gitolite"
-arch=('any')
-url="https://gitlab.com/gitlab-org/gitlab-shell/;
-license=('MIT')
-depends=('ruby' 'redis' 'git')
-options=('!strip')
-install=gitlab-shell.install
-backup=("etc/webapps/${pkgname}/config.yml"
-"etc/webapps/${pkgname}/secret"
-"etc/webapps/${pkgname}/gitconfig"
-"etc/webapps/${pkgname}/authorized_keys"
-"etc/webapps/${pkgname}/")
-source=("${pkgname}-${pkgver}.tar.gz::https://gitlab.com/gitlab-org/gitlab-shell/repository/archive.tar.gz?ref=v${pkgver};
-"gitlab-shell.gitconfig")
-md5sums=('94fd70cb6fd38c8fd7cd9c4ccc371d7e'
- '6b917256b13a1685e9a3cc73e68152d0')
-
-_homedir='/var/lib/gitlab'
-_datadir="/usr/share/webapps/${pkgname}"
-_srcdir="gitlab-shell-v${pkgver}"
-_logdir='/var/log/gitlab'
-_etcdir="/etc/webapps/${pkgname}"
-
-prepare() {
-  cd "${srcdir}/${_srcdir}"-*
-
-  sed -e "s|user: git|user: gitlab|" \
-  -e "s|/home/git|${_homedir}|" \
-  -e "s|# log_file: .*|log_file: \"${_logdir}/gitlab-shell.log\"|" \
-  -e "s|# host:|host:|" \
-  -e "s|# port:|port:|" \
-  -e "s|socket:|# socket:|" \
-  config.yml.example > config.yml
-}
-
-package() {
-  cd "${srcdir}/${_srcdir}"-*
-
-  install -dm755 -o 105 -g 105 "${pkgdir}${_datadir}"
-  install -dm750 -o 105 -g 105 "${pkgdir}${_homedir}"
-  install -dm750 -o 105 -g 105 "${pkgdir}${_homedir}/satellites"
-  install -dm700 -o 105 -g 105 "${pkgdir}${_homedir}/.ssh"
-  install -dm750 -o 105 -g 105 "${pkgdir}${_etcdir}"
-  install -dm770 -o 105 -g root "${pkgdir}${_logdir}"
-
-  # .gitconfig
-  install -Dm644 -o 105 -g 105 "${srcdir}/gitlab-shell.gitconfig" 
"${pkgdir}${_etcdir}/.gitconfig"
-  ln -fs "${_etcdir}/gitconfig" "${pkgdir}${_homedir}/.gitconfig"
-
-  # .gitlab_shell_secret
-  touch "${pkgdir}${_etcdir}/secret"
-  chmod 640 "${pkgdir}${_etcdir}/secret"
-  chown root:105 "${pkgdir}${_etcdir}/secret"
-  ln -fs "${_etcdir}/secret" "${pkgdir}${_datadir}/.gitlab_shell_secret"
-
-  # config.yml
-  mv config.yml "${pkgdir}${_etcdir}"
-  ln -fs "${_etcdir}/config.yml" "${pkgdir}${_datadir}/config.yml"
-
-  cp -r VERSION bin hooks lib spec support "${pkgdir}${_datadir}"
-  ln -fs "${_datadir}" "${pkgdir}/${_homedir}/"
-
-  install -dm2770 -o 105 -g 105 "${pkgdir}${_homedir}/repositories"
-
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  install -Dm644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gitlab-shell/repos/community-any/PKGBUILD (from rev 193127, 
gitlab-shell/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-10-24 02:09:23 UTC (rev 193128)
@@ -0,0 +1,80 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Pavol (Lopo) Hluchy 
+# Contributor: Massimiliano Torromeo 
+# Contributor: Jonas Heinrich 
+# Contributor: Lee Watson 
+# Contributor: Tobias Hunger 
+# Contributor: Stefan Tatschner 
+
+pkgname=gitlab-shell
+pkgver=3.6.6
+pkgrel=2
+pkgdesc="Self hosted Git management software. Replacement for gitolite"
+arch=('any')
+url="https://gitlab.com/gitlab-org/gitlab-shell/;
+license=('MIT')
+depends=('ruby' 'redis' 'git')
+options=('!strip')
+install=gitlab-shell.install
+backup=("etc/webapps/${pkgname}/config.yml"
+

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

2016-10-23 Thread Sven-Hendrik Haase
Date: Monday, October 24, 2016 @ 02:08:26
  Author: svenstaro
Revision: 193125

upgpkg: gitlab 8.13.0-3

Fix permissions

Modified:
  gitlab/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-24 00:47:27 UTC (rev 193124)
+++ PKGBUILD2016-10-24 02:08:26 UTC (rev 193125)
@@ -8,7 +8,7 @@
 
 pkgname=gitlab
 pkgver=8.13.0
-pkgrel=1
+pkgrel=3
 pkgdesc="Project management and code hosting application"
 arch=('i686' 'x86_64')
 url="https://gitlab.com/gitlab-org/gitlab-ce/tree/master#README;
@@ -58,11 +58,11 @@
 '822d0b80f1974c8418a9f4d66fbefb7679313b6de9a49c137c83c0bfe622460f'
 'ea5a5f0b4c0ffd26d977efaf564800ee7fa88579a9e4f0556143a591a7ff198c')
 
+_datadir="/usr/share/webapps/${pkgname}"
+_etcdir="/etc/webapps/${pkgname}"
 _homedir="/var/lib/${pkgname}"
-_datadir="/usr/share/webapps/${pkgname}"
 _logdir="/var/log/${pkgname}"
 _srcdir="gitlabhq-${pkgver}"
-_etcdir="/etc/webapps/${pkgname}"
 
 prepare() {
   cd "${srcdir}/${_srcdir}"
@@ -130,7 +130,7 @@
   install -d "${pkgdir}/usr/share/webapps"
 
   cp -r "${srcdir}/${_srcdir}" "${pkgdir}${_datadir}"
-  chown -R 105:105 "${pkgdir}${_datadir}"
+  chown -R root:root "${pkgdir}${_datadir}"
   chmod 755 "${pkgdir}${_datadir}"
 
   install -dm750 -o 105 -g 105 "${pkgdir}${_homedir}"
@@ -151,6 +151,11 @@
   rm -rf "${pkgdir}${_datadir}/tmp" && ln -fs /var/tmp 
"${pkgdir}${_datadir}/tmp"
   rm -rf "${pkgdir}${_datadir}/log" && ln -fs "${_logdir}" 
"${pkgdir}${_datadir}/log"
 
+  mv "${pkgdir}${_datadir}/.gitlab_workhorse_secret" 
"${pkgdir}${_etcdir}/gitlab_workhorse_secret"
+  chmod 660 "${pkgdir}${_etcdir}/gitlab_workhorse_secret"
+  chown root:105 "${pkgdir}${_etcdir}/gitlab_workhorse_secret"
+  ln -fs "${_etcdir}/gitlab_workhorse_secret" 
"${pkgdir}${_datadir}/.gitlab_workhorse_secret"
+
   ln -fs /etc/webapps/gitlab-shell/secret 
"${pkgdir}${_datadir}/.gitlab_shell_secret"
 
   sed -i "s|require_relative '../lib|require '${_datadir}/lib|" 
config/application.rb
@@ -170,7 +175,7 @@
 
   # Install license and help files
   mv README.md MAINTENANCE.md CONTRIBUTING.md CHANGELOG.md PROCESS.md VERSION 
config/*.{example,mysql,postgresql} "${pkgdir}/usr/share/doc/${pkgname}"
-  install -D "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -Dm644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
 
   # https://gitlab.com/gitlab-org/gitlab-ce/issues/765
   cp -r "${pkgdir}${_datadir}/doc" "${pkgdir}${_datadir}/public/help"


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

2016-10-23 Thread Felix Yan
Date: Monday, October 24, 2016 @ 00:52:51
  Author: felixonmars
Revision: 279194

archrelease: copy trunk to extra-any

Added:
  python-beaker/repos/extra-any/PKGBUILD
(from rev 279193, python-beaker/trunk/PKGBUILD)
Deleted:
  python-beaker/repos/extra-any/PKGBUILD

--+
 PKGBUILD |  120 ++---
 1 file changed, 60 insertions(+), 60 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-10-24 00:52:30 UTC (rev 279193)
+++ PKGBUILD2016-10-24 00:52:51 UTC (rev 279194)
@@ -1,60 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Ionut Biru 
-# Contributor: Massimiliano Torromeo < massimiliano DOT torromeo AT gmail DOT 
com >
-
-pkgbase=python-beaker
-pkgname=('python-beaker' 'python2-beaker')
-pkgver=1.8.0
-pkgrel=1
-arch=('any')
-license=('custom')
-pkgdesc="Caching and sessions WSGI middleware for use with web applications 
and stand-alone Python scripts and applications"
-url="http://beaker.groovie.org/;
-makedepends=('python-setuptools' 'python2-setuptools' 'git')
-checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock' 
'python-sqlalchemy' 'python2-sqlalchemy'
-  'python-crypto' 'python2-crypto' 'python-coverage' 
'python2-coverage' 'python-webtest' 'python2-webtest'
-  'python-beautifulsoup4' 'python2-beautifulsoup4')
-source=("git+https://github.com/bbangert/beaker.git#tag=$pkgver;)
-md5sums=('SKIP')
-
-prepare() {
-cp -a beaker{,-py2}
-
-sed -i "s#/usr/bin/python#/usr/bin/python3#" beaker/beaker/crypto/pbkdf2.py
-sed -i "s#/usr/bin/python#/usr/bin/python2#" 
beaker-py2/beaker/crypto/pbkdf2.py
-}
-
-build() {
-cd "${srcdir}/beaker"
-python3 setup.py build
-
-cd "${srcdir}/beaker-py2"
-python2 setup.py build
-}
-
-check() {
-cd "${srcdir}/beaker"
-mkdir tests_py3
-2to3 -w -n -o tests_py3 tests/*.py
-PYTHONPATH="$PWD/build/lib:$PYTHONPATH" nosetests3 --py3where=tests_py3
-
-cd "${srcdir}/beaker-py2"
-PYTHONPATH="$PWD/build/lib:$PYTHONPATH" nosetests2
-}
-
-package_python-beaker() {
-depends=('python')
-
-cd "${srcdir}/beaker"
-python3 setup.py install --root="${pkgdir}" --optimize=1
-install -D -m644 LICENSE 
"${pkgdir}/usr/share/licenses/python-beaker/LICENSE"
-}
-
-package_python2-beaker() {
-depends=('python2')
-
-cd "${srcdir}/beaker-py2"
-python2 setup.py install --root="${pkgdir}" --optimize=1
-install -D -m644 LICENSE 
"${pkgdir}/usr/share/licenses/python2-beaker/LICENSE"
-}

Copied: python-beaker/repos/extra-any/PKGBUILD (from rev 279193, 
python-beaker/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-10-24 00:52:51 UTC (rev 279194)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Ionut Biru 
+# Contributor: Massimiliano Torromeo < massimiliano DOT torromeo AT gmail DOT 
com >
+
+pkgbase=python-beaker
+pkgname=('python-beaker' 'python2-beaker')
+pkgver=1.8.1
+pkgrel=1
+arch=('any')
+license=('custom')
+pkgdesc="Caching and sessions WSGI middleware for use with web applications 
and stand-alone Python scripts and applications"
+url="http://beaker.groovie.org/;
+makedepends=('python-setuptools' 'python2-setuptools' 'git')
+checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock' 
'python-sqlalchemy' 'python2-sqlalchemy'
+  'python-crypto' 'python2-crypto' 'python-coverage' 
'python2-coverage' 'python-webtest' 'python2-webtest'
+  'python-beautifulsoup4' 'python2-beautifulsoup4')
+source=("git+https://github.com/bbangert/beaker.git#tag=$pkgver;)
+md5sums=('SKIP')
+
+prepare() {
+cp -a beaker{,-py2}
+
+sed -i "s#/usr/bin/python#/usr/bin/python3#" beaker/beaker/crypto/pbkdf2.py
+sed -i "s#/usr/bin/python#/usr/bin/python2#" 
beaker-py2/beaker/crypto/pbkdf2.py
+}
+
+build() {
+cd "$srcdir"/beaker
+python3 setup.py build
+
+cd "$srcdir"/beaker-py2
+python2 setup.py build
+}
+
+check() {
+cd "$srcdir"/beaker
+mkdir tests_py3
+2to3 -w -n -o tests_py3 tests/*.py
+PYTHONPATH="$PWD/build/lib:$PYTHONPATH" nosetests3 --py3where=tests_py3
+
+cd "$srcdir"/beaker-py2
+PYTHONPATH="$PWD/build/lib:$PYTHONPATH" nosetests2
+}
+
+package_python-beaker() {
+depends=('python')
+
+cd beaker
+python3 setup.py install --root="$pkgdir" --optimize=1
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/python-beaker/LICENSE
+}
+
+package_python2-beaker() {
+depends=('python2')
+
+cd beaker-py2
+python2 setup.py install --root="$pkgdir" --optimize=1
+install -D -m644 LICENSE 
"$pkgdir"/usr/share/licenses/python2-beaker/LICENSE
+}


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

2016-10-23 Thread Felix Yan
Date: Monday, October 24, 2016 @ 00:52:30
  Author: felixonmars
Revision: 279193

upgpkg: python-beaker 1.8.1-1

Modified:
  python-beaker/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-23 21:02:29 UTC (rev 279192)
+++ PKGBUILD2016-10-24 00:52:30 UTC (rev 279193)
@@ -5,7 +5,7 @@
 
 pkgbase=python-beaker
 pkgname=('python-beaker' 'python2-beaker')
-pkgver=1.8.0
+pkgver=1.8.1
 pkgrel=1
 arch=('any')
 license=('custom')
@@ -26,20 +26,20 @@
 }
 
 build() {
-cd "${srcdir}/beaker"
+cd "$srcdir"/beaker
 python3 setup.py build
 
-cd "${srcdir}/beaker-py2"
+cd "$srcdir"/beaker-py2
 python2 setup.py build
 }
 
 check() {
-cd "${srcdir}/beaker"
+cd "$srcdir"/beaker
 mkdir tests_py3
 2to3 -w -n -o tests_py3 tests/*.py
 PYTHONPATH="$PWD/build/lib:$PYTHONPATH" nosetests3 --py3where=tests_py3
 
-cd "${srcdir}/beaker-py2"
+cd "$srcdir"/beaker-py2
 PYTHONPATH="$PWD/build/lib:$PYTHONPATH" nosetests2
 }
 
@@ -46,15 +46,15 @@
 package_python-beaker() {
 depends=('python')
 
-cd "${srcdir}/beaker"
-python3 setup.py install --root="${pkgdir}" --optimize=1
-install -D -m644 LICENSE 
"${pkgdir}/usr/share/licenses/python-beaker/LICENSE"
+cd beaker
+python3 setup.py install --root="$pkgdir" --optimize=1
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/python-beaker/LICENSE
 }
 
 package_python2-beaker() {
 depends=('python2')
 
-cd "${srcdir}/beaker-py2"
-python2 setup.py install --root="${pkgdir}" --optimize=1
-install -D -m644 LICENSE 
"${pkgdir}/usr/share/licenses/python2-beaker/LICENSE"
+cd beaker-py2
+python2 setup.py install --root="$pkgdir" --optimize=1
+install -D -m644 LICENSE 
"$pkgdir"/usr/share/licenses/python2-beaker/LICENSE
 }


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

2016-10-23 Thread Felix Yan
Date: Monday, October 24, 2016 @ 00:47:06
  Author: felixonmars
Revision: 193123

upgpkg: uglify-js 2.7.4-1

Modified:
  uglify-js/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-24 00:37:41 UTC (rev 193122)
+++ PKGBUILD2016-10-24 00:47:06 UTC (rev 193123)
@@ -3,7 +3,7 @@
 # Contributor: Daniel Nagy 
 
 pkgname=uglify-js
-pkgver=2.7.3
+pkgver=2.7.4
 pkgrel=1
 pkgdesc="JavaScript parser, mangler/compressor and beautifier toolkit"
 arch=('any')
@@ -13,7 +13,7 @@
 makedepends=('npm')
 source=(http://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
 noextract=($pkgname-$pkgver.tgz)
-md5sums=('5265d348263f7e38a453902fb174aa47')
+md5sums=('c6be07d1fd8ae19e2a66ccdd4fb9eac9')
 
 package() {
   npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz


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

2016-10-23 Thread Felix Yan
Date: Monday, October 24, 2016 @ 00:47:27
  Author: felixonmars
Revision: 193124

archrelease: copy trunk to community-any

Added:
  uglify-js/repos/community-any/PKGBUILD
(from rev 193123, uglify-js/trunk/PKGBUILD)
Deleted:
  uglify-js/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-10-24 00:47:06 UTC (rev 193123)
+++ PKGBUILD2016-10-24 00:47:27 UTC (rev 193124)
@@ -1,25 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Daniel Nagy 
-
-pkgname=uglify-js
-pkgver=2.7.3
-pkgrel=1
-pkgdesc="JavaScript parser, mangler/compressor and beautifier toolkit"
-arch=('any')
-url='http://lisperator.net/uglifyjs'
-license=('BSD')
-depends=('nodejs')
-makedepends=('npm')
-source=(http://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
-noextract=($pkgname-$pkgver.tgz)
-md5sums=('5265d348263f7e38a453902fb174aa47')
-
-package() {
-  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
-  rm -r "$pkgdir"/usr/etc
-  mkdir -p "$pkgdir/usr/share/licenses/$pkgname"
-  ln -s "../../../lib/node_modules/uglify-js/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: uglify-js/repos/community-any/PKGBUILD (from rev 193123, 
uglify-js/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-10-24 00:47:27 UTC (rev 193124)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Daniel Nagy 
+
+pkgname=uglify-js
+pkgver=2.7.4
+pkgrel=1
+pkgdesc="JavaScript parser, mangler/compressor and beautifier toolkit"
+arch=('any')
+url='http://lisperator.net/uglifyjs'
+license=('BSD')
+depends=('nodejs')
+makedepends=('npm')
+source=(http://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
+noextract=($pkgname-$pkgver.tgz)
+md5sums=('c6be07d1fd8ae19e2a66ccdd4fb9eac9')
+
+package() {
+  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
+  rm -r "$pkgdir"/usr/etc
+  mkdir -p "$pkgdir/usr/share/licenses/$pkgname"
+  ln -s "../../../lib/node_modules/uglify-js/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/"
+}
+
+# vim:set ts=2 sw=2 et:


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

2016-10-23 Thread Sven-Hendrik Haase
Date: Monday, October 24, 2016 @ 00:37:41
  Author: svenstaro
Revision: 193122

archrelease: copy trunk to community-x86_64

Added:
  cuda/repos/community-x86_64/PKGBUILD
(from rev 193121, cuda/trunk/PKGBUILD)
  cuda/repos/community-x86_64/cuda-findgllib_mk.diff
(from rev 193121, cuda/trunk/cuda-findgllib_mk.diff)
  cuda/repos/community-x86_64/cuda.conf
(from rev 193121, cuda/trunk/cuda.conf)
  cuda/repos/community-x86_64/cuda.install
(from rev 193121, cuda/trunk/cuda.install)
  cuda/repos/community-x86_64/cuda.sh
(from rev 193121, cuda/trunk/cuda.sh)
Deleted:
  cuda/repos/community-x86_64/PKGBUILD
  cuda/repos/community-x86_64/cuda-findgllib_mk.diff
  cuda/repos/community-x86_64/cuda.conf
  cuda/repos/community-x86_64/cuda.install
  cuda/repos/community-x86_64/cuda.sh

+
 PKGBUILD   |  140 +++
 cuda-findgllib_mk.diff |   44 +++---
 cuda.conf  |8 +-
 cuda.install   |   22 +++
 cuda.sh|2 
 5 files changed, 107 insertions(+), 109 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-10-24 00:37:25 UTC (rev 193121)
+++ PKGBUILD2016-10-24 00:37:41 UTC (rev 193122)
@@ -1,71 +0,0 @@
-# $Id: PKGBUILD 69719 2012-04-23 02:56:20Z svenstaro $
-# Maintainer: Sven-Hendrik Haase 
-pkgname=cuda
-pkgver=8.0.44
-pkgrel=1
-pkgdesc="NVIDIA's GPU programming toolkit"
-arch=('x86_64')
-url="http://www.nvidia.com/object/cuda_home.html;
-license=('custom:NVIDIA')
-depends=('gcc-libs' 'opencl-nvidia' 'gcc5')
-replaces=('cuda-toolkit' 'cuda-sdk')
-provides=('cuda-toolkit' 'cuda-sdk')
-optdepends=('gdb: for cuda-gdb')
-options=(!strip staticlibs)
-install=cuda.install
-source=(https://developer.nvidia.com/compute/cuda/8.0/prod/local_installers/cuda_${pkgver}_linux-run
-cuda.sh
-cuda.conf
-cuda-findgllib_mk.diff)
-md5sums=('6dca912f9b7e2b7569b0074a41713640'
- '7e5990e03eea90075f5a500e91a0c3d3'
- '71420ee4e90c65df21c6c5d34373c245'
- '6476452a339c12d8ca18b5feb47100cc')
-
-prepare() {
-  sh cuda_${pkgver}_linux-run -extract=${srcdir}
-  ./cuda-linux64-rel-*.run --noexec --keep
-  ./cuda-samples-linux-*.run --noexec --keep
-
-  # path hacks
-
-  # 1rd sed line: sets right path to install man files
-  # 2rd sed line: hack to lie installer, now detect launch script by root
-  # 3rd sed line: sets right path in .desktop files and other .desktop stuff 
(warnings by desktop-file-validate)
-  sed -e "s|/usr/share|${srcdir}/../pkg/${pkgname}/usr/share|g" \
-  -e 's|can_add_for_all_users;|1;|g' \
-  -e 's|=\\"$prefix\\\"|=/opt/cuda|g' -e 's|Terminal=No|Terminal=false|g' 
-e 's|ParallelComputing|ParallelComputing;|g' \
-  -i pkg/install-linux.pl
-
-  # set right path in Samples Makefiles
-  sed 's|\$cudaprefix\\|\\/opt\\/cuda\\|g' -i pkg/install-sdk-linux.pl
-
-  # use python2
-  find pkg -name '*.py' | xargs sed -i -e 's|env python|env python2|g' -e 
's|bin/python|bin/python2|g'
-
-  # Fix up samples tht use findgllib_mk
-  for f in pkg/samples/*/*/findgllib.mk; do
-patch $f cuda-findgllib_mk.diff
-  done
-}
-
-package() {
-  cd pkg
-  perl install-linux.pl -prefix="${pkgdir}/opt/cuda" -noprompt
-  perl install-sdk-linux.pl -cudaprefix="${pkgdir}/opt/cuda" 
-prefix="${pkgdir}/opt/cuda/samples" -noprompt
-
-  # allow newer gccs to work
-  sed -i "/unsupported GNU/d" $pkgdir/opt/cuda/include/host_config.h
-  ln -s /usr/bin/gcc-5 "${pkgdir}/opt/cuda/bin/gcc"
-  ln -s /usr/bin/g++-5 "${pkgdir}/opt/cuda/bin/g++"
-
-  install -Dm755 "${srcdir}/cuda.sh" "${pkgdir}/etc/profile.d/cuda.sh"
-  install -Dm644 "${srcdir}/cuda.conf" "${pkgdir}/etc/ld.so.conf.d/cuda.conf"
-
-  mkdir -p "${pkgdir}/usr/share/licenses/${pkgname}"
-  ln -s /opt/cuda/doc/pdf/EULA.pdf 
"${pkgdir}/usr/share/licenses/${pkgname}/EULA.pdf"
-
-  # remove redundant man and samples
-  rm -fr "${pkgdir}/opt/cuda/doc/man"
-  rm -fr "${pkgdir}/opt/cuda/cuda-samples"
-}

Copied: cuda/repos/community-x86_64/PKGBUILD (from rev 193121, 
cuda/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-10-24 00:37:41 UTC (rev 193122)
@@ -0,0 +1,69 @@
+# $Id: PKGBUILD 69719 2012-04-23 02:56:20Z svenstaro $
+# Maintainer: Sven-Hendrik Haase 
+pkgname=cuda
+pkgver=8.0.44
+pkgrel=2
+pkgdesc="NVIDIA's GPU programming toolkit"
+arch=('x86_64')
+url="http://www.nvidia.com/object/cuda_home.html;
+license=('custom:NVIDIA')
+depends=('gcc-libs' 'opencl-nvidia' 'gcc5')
+replaces=('cuda-toolkit' 'cuda-sdk')
+provides=('cuda-toolkit' 'cuda-sdk')
+optdepends=('gdb: for cuda-gdb')
+options=(!strip staticlibs)
+install=cuda.install
+source=(https://developer.nvidia.com/compute/cuda/8.0/prod/local_installers/cuda_${pkgver}_linux-run
+cuda.sh
+cuda.conf
+

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

2016-10-23 Thread Sven-Hendrik Haase
Date: Monday, October 24, 2016 @ 00:37:25
  Author: svenstaro
Revision: 193121

upgpkg: cuda 8.0.44-2

Do not patch out compiler version check

Modified:
  cuda/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-24 00:11:45 UTC (rev 193120)
+++ PKGBUILD2016-10-24 00:37:25 UTC (rev 193121)
@@ -2,7 +2,7 @@
 # Maintainer: Sven-Hendrik Haase 
 pkgname=cuda
 pkgver=8.0.44
-pkgrel=1
+pkgrel=2
 pkgdesc="NVIDIA's GPU programming toolkit"
 arch=('x86_64')
 url="http://www.nvidia.com/object/cuda_home.html;
@@ -54,8 +54,6 @@
   perl install-linux.pl -prefix="${pkgdir}/opt/cuda" -noprompt
   perl install-sdk-linux.pl -cudaprefix="${pkgdir}/opt/cuda" 
-prefix="${pkgdir}/opt/cuda/samples" -noprompt
 
-  # allow newer gccs to work
-  sed -i "/unsupported GNU/d" $pkgdir/opt/cuda/include/host_config.h
   ln -s /usr/bin/gcc-5 "${pkgdir}/opt/cuda/bin/gcc"
   ln -s /usr/bin/g++-5 "${pkgdir}/opt/cuda/bin/g++"
 


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

2016-10-23 Thread Sven-Hendrik Haase
Date: Monday, October 24, 2016 @ 00:11:16
  Author: svenstaro
Revision: 193119

upgpkg: gitlab 8.13.0-1

upstream release 8.13.0

Modified:
  gitlab/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-23 23:35:40 UTC (rev 193118)
+++ PKGBUILD2016-10-24 00:11:16 UTC (rev 193119)
@@ -7,7 +7,7 @@
 # Contributor: Caleb Maclennan 
 
 pkgname=gitlab
-pkgver=8.12.7
+pkgver=8.13.0
 pkgrel=1
 pkgdesc="Project management and code hosting application"
 arch=('i686' 'x86_64')
@@ -21,7 +21,6 @@
 'smtp-server: mail server in order to receive mail notifications')
 backup=("etc/webapps/${pkgname}/application.rb"
 "etc/webapps/${pkgname}/gitlab.yml"
-"etc/webapps/${pkgname}/secret"
 "etc/webapps/${pkgname}/resque.yml"
 "etc/webapps/${pkgname}/unicorn.rb"
 "etc/logrotate.d/${pkgname}")
@@ -42,7 +41,7 @@
 nginx-ssl.conf.example
 lighttpd.conf.example)
 install='gitlab.install'
-sha256sums=('d033c06d86c346d80f0b45313bdade1eb48b2817791ace62f6f054a9205828af'
+sha256sums=('60e8606fbf335072edf8653bbd4b943932d5f649d232de0fb1493005921d7bb8'
 '0dabb9c10f6ba49404c13d6be2d0d6cf1bf7e5a0b95f0dea566e33c356997307'
 'a348d69cf0d08a1aa0713deb615815ae5a2305a1a1c386bcee29f49eae446757'
 'e16a68539eeb49d24d2ab4a53ff95e33c67264a674b611c006dc5c8a24f41e0e'
@@ -118,7 +117,8 @@
 
   # We'll temporarily stick this in here so we can build the assets
   cp config/database.yml.postgresql.orig config/database.yml
-  sed -i '/generate_and_link_secret_token/d' 
config/initializers/gitlab_shell_secret_token.rb
+
+  sed -i '/ensure_secret_token/d' 
config/initializers/gitlab_shell_secret_token.rb
   bundle exec rake assets:precompile RAILS_ENV=production
   # After building assets, clean this up again
   rm config/database.yml config/database.yml.postgresql.orig
@@ -142,14 +142,9 @@
   install -dm750 -o 105 -g 105 "${pkgdir}${_etcdir}"
   install -dm755 "${pkgdir}/usr/share/doc/${pkgname}"
 
-  touch "${pkgdir}${_etcdir}/secret"
-  chmod 640 "${pkgdir}${_etcdir}/secret"
-  chown root:105 "${pkgdir}${_etcdir}/secret"
-
   ln -fs /run/gitlab "${pkgdir}${_homedir}/pids"
   ln -fs /run/gitlab "${pkgdir}${_homedir}/sockets"
   ln -fs ${_datadir}/log "${pkgdir}${_homedir}/log"
-  ln -fs "${_etcdir}/secret" "${pkgdir}${_datadir}/.secret"
 
   rm -rf "${pkgdir}${_datadir}/public/uploads" && ln -fs "${_homedir}/uploads" 
"${pkgdir}${_datadir}/public/uploads"
   rm -rf "${pkgdir}${_datadir}/builds" && ln -fs "${_homedir}/builds" 
"${pkgdir}${_datadir}/builds"
@@ -174,7 +169,7 @@
   ln -fs "${_etcdir}/secrets.yml" "${pkgdir}${_datadir}/config/secrets.yml"
 
   # Install license and help files
-  mv README.md MAINTENANCE.md CONTRIBUTING.md CHANGELOG 
config/*.{example,mysql,postgresql} "${pkgdir}/usr/share/doc/${pkgname}"
+  mv README.md MAINTENANCE.md CONTRIBUTING.md CHANGELOG.md PROCESS.md VERSION 
config/*.{example,mysql,postgresql} "${pkgdir}/usr/share/doc/${pkgname}"
   install -D "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
 
   # https://gitlab.com/gitlab-org/gitlab-ce/issues/765


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

2016-10-23 Thread Kyle Keen
Date: Sunday, October 23, 2016 @ 23:35:40
  Author: kkeen
Revision: 193118

archrelease: copy trunk to community-any

Added:
  python-more-itertools/repos/community-any/
  python-more-itertools/repos/community-any/PKGBUILD
(from rev 193117, python-more-itertools/trunk/PKGBUILD)

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

Copied: python-more-itertools/repos/community-any/PKGBUILD (from rev 193117, 
python-more-itertools/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2016-10-23 23:35:40 UTC (rev 193118)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Kyle Keen 
+# Contributor: Germán Osella Massa 
+
+pkgbase=python-more-itertools
+pkgname=('python-more-itertools' 'python2-more-itertools')
+pkgver=2.2
+pkgrel=6
+pkgdesc='More routines for operating on iterables, beyond itertools'
+arch=('any')
+url='https://github.com/erikrose/more-itertools'
+#url='https://pypi.python.org/pypi/more-itertools'
+license=('MIT')
+depends=('python')
+makedepends=('python-setuptools' 'python2-setuptools')
+source=("https://pypi.python.org/packages/source/m/more-itertools/more-itertools-$pkgver.tar.gz;)
+md5sums=('b8d328a33f966bf40bb829bcf8da35ce')
+
+prepare() {
+  cp -R "more-itertools-$pkgver" "py2-more-itertools-$pkgver"
+}
+
+package_python-more-itertools() {
+  cd "$srcdir/more-itertools-$pkgver"
+  python3 setup.py install --root="$pkgdir/" --optimize=0
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_python2-more-itertools() {
+  depends=('python2')
+  cd "$srcdir/py2-more-itertools-$pkgver"
+  python2 setup.py install --root="$pkgdir/" --optimize=0
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in (4 files)

2016-10-23 Thread Kyle Keen
Date: Sunday, October 23, 2016 @ 23:34:36
  Author: kkeen
Revision: 193117

pkginig: python-more-itertools

Added:
  python-more-itertools/
  python-more-itertools/repos/
  python-more-itertools/trunk/
  python-more-itertools/trunk/PKGBUILD

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

Added: python-more-itertools/trunk/PKGBUILD
===
--- python-more-itertools/trunk/PKGBUILD(rev 0)
+++ python-more-itertools/trunk/PKGBUILD2016-10-23 23:34:36 UTC (rev 
193117)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Kyle Keen 
+# Contributor: Germán Osella Massa 
+
+pkgbase=python-more-itertools
+pkgname=('python-more-itertools' 'python2-more-itertools')
+pkgver=2.2
+pkgrel=6
+pkgdesc='More routines for operating on iterables, beyond itertools'
+arch=('any')
+url='https://github.com/erikrose/more-itertools'
+#url='https://pypi.python.org/pypi/more-itertools'
+license=('MIT')
+depends=('python')
+makedepends=('python-setuptools' 'python2-setuptools')
+source=("https://pypi.python.org/packages/source/m/more-itertools/more-itertools-$pkgver.tar.gz;)
+md5sums=('b8d328a33f966bf40bb829bcf8da35ce')
+
+prepare() {
+  cp -R "more-itertools-$pkgver" "py2-more-itertools-$pkgver"
+}
+
+package_python-more-itertools() {
+  cd "$srcdir/more-itertools-$pkgver"
+  python3 setup.py install --root="$pkgdir/" --optimize=0
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_python2-more-itertools() {
+  depends=('python2')
+  cd "$srcdir/py2-more-itertools-$pkgver"
+  python2 setup.py install --root="$pkgdir/" --optimize=0
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:


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


[arch-commits] Commit in gtk3/repos (28 files)

2016-10-23 Thread Jan Steffens
Date: Sunday, October 23, 2016 @ 21:02:29
  Author: heftig
Revision: 279192

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

Added:
  
gtk3/repos/extra-i686/0001-gdkscreen-x11-Fix-screen-and-monitor-size-calculatio.patch
(from rev 279191, 
gtk3/trunk/0001-gdkscreen-x11-Fix-screen-and-monitor-size-calculatio.patch)
  gtk3/repos/extra-i686/PKGBUILD
(from rev 279191, gtk3/trunk/PKGBUILD)
  gtk3/repos/extra-i686/gtk-query-immodules-3.0.hook
(from rev 279191, gtk3/trunk/gtk-query-immodules-3.0.hook)
  gtk3/repos/extra-i686/gtk-update-icon-cache.hook
(from rev 279191, gtk3/trunk/gtk-update-icon-cache.hook)
  gtk3/repos/extra-i686/gtk-update-icon-cache.script
(from rev 279191, gtk3/trunk/gtk-update-icon-cache.script)
  gtk3/repos/extra-i686/gtk3.install
(from rev 279191, gtk3/trunk/gtk3.install)
  gtk3/repos/extra-i686/settings.ini
(from rev 279191, gtk3/trunk/settings.ini)
  
gtk3/repos/extra-x86_64/0001-gdkscreen-x11-Fix-screen-and-monitor-size-calculatio.patch
(from rev 279191, 
gtk3/trunk/0001-gdkscreen-x11-Fix-screen-and-monitor-size-calculatio.patch)
  gtk3/repos/extra-x86_64/PKGBUILD
(from rev 279191, gtk3/trunk/PKGBUILD)
  gtk3/repos/extra-x86_64/gtk-query-immodules-3.0.hook
(from rev 279191, gtk3/trunk/gtk-query-immodules-3.0.hook)
  gtk3/repos/extra-x86_64/gtk-update-icon-cache.hook
(from rev 279191, gtk3/trunk/gtk-update-icon-cache.hook)
  gtk3/repos/extra-x86_64/gtk-update-icon-cache.script
(from rev 279191, gtk3/trunk/gtk-update-icon-cache.script)
  gtk3/repos/extra-x86_64/gtk3.install
(from rev 279191, gtk3/trunk/gtk3.install)
  gtk3/repos/extra-x86_64/settings.ini
(from rev 279191, gtk3/trunk/settings.ini)
Deleted:
  
gtk3/repos/extra-i686/0001-gdkscreen-x11-Fix-screen-and-monitor-size-calculatio.patch
  gtk3/repos/extra-i686/PKGBUILD
  gtk3/repos/extra-i686/gtk-query-immodules-3.0.hook
  gtk3/repos/extra-i686/gtk-update-icon-cache.hook
  gtk3/repos/extra-i686/gtk-update-icon-cache.script
  gtk3/repos/extra-i686/gtk3.install
  gtk3/repos/extra-i686/settings.ini
  
gtk3/repos/extra-x86_64/0001-gdkscreen-x11-Fix-screen-and-monitor-size-calculatio.patch
  gtk3/repos/extra-x86_64/PKGBUILD
  gtk3/repos/extra-x86_64/gtk-query-immodules-3.0.hook
  gtk3/repos/extra-x86_64/gtk-update-icon-cache.hook
  gtk3/repos/extra-x86_64/gtk-update-icon-cache.script
  gtk3/repos/extra-x86_64/gtk3.install
  gtk3/repos/extra-x86_64/settings.ini

--+
 /0001-gdkscreen-x11-Fix-screen-and-monitor-size-calculatio.patch | 
 166 +++
 /PKGBUILD| 
 208 ++
 /gtk-query-immodules-3.0.hook| 
  22 +
 /gtk-update-icon-cache.hook  | 
  26 +
 /gtk-update-icon-cache.script| 
  20 
 /gtk3.install| 
   6 
 /settings.ini| 
   8 
 extra-i686/0001-gdkscreen-x11-Fix-screen-and-monitor-size-calculatio.patch   | 
  83 ---
 extra-i686/PKGBUILD  | 
 104 -
 extra-i686/gtk-query-immodules-3.0.hook  | 
  11 
 extra-i686/gtk-update-icon-cache.hook| 
  13 
 extra-i686/gtk-update-icon-cache.script  | 
  10 
 extra-i686/gtk3.install  | 
   3 
 extra-i686/settings.ini  | 
   4 
 extra-x86_64/0001-gdkscreen-x11-Fix-screen-and-monitor-size-calculatio.patch | 
  83 ---
 extra-x86_64/PKGBUILD| 
 104 -
 extra-x86_64/gtk-query-immodules-3.0.hook| 
  11 
 extra-x86_64/gtk-update-icon-cache.hook  | 
  13 
 extra-x86_64/gtk-update-icon-cache.script| 
  10 
 extra-x86_64/gtk3.install| 
   3 
 extra-x86_64/settings.ini| 
   4 
 21 files changed, 456 insertions(+), 456 deletions(-)

Deleted: 
extra-i686/0001-gdkscreen-x11-Fix-screen-and-monitor-size-calculatio.patch
===
--- extra-i686/0001-gdkscreen-x11-Fix-screen-and-monitor-size-calculatio.patch  
2016-10-23 20:59:50 UTC (rev 279191)
+++ extra-i686/0001-gdkscreen-x11-Fix-screen-and-monitor-size-calculatio.patch  
2016-10-23 21:02:29 UTC (rev 279192)
@@ -1,83 +0,0 @@
-From 0d945f06faee49788191e3e28f797f72959b3583 Mon Sep 17 00:00:00 2001
-From: "Jan Alexander Steffens (heftig)" 
-Date: Mon, 10 Oct 

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

2016-10-23 Thread Jan Steffens
Date: Sunday, October 23, 2016 @ 20:59:50
  Author: heftig
Revision: 279191

3.22.1+69+ga1115c0-1

Modified:
  gtk3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-23 19:35:43 UTC (rev 279190)
+++ PKGBUILD2016-10-23 20:59:50 UTC (rev 279191)
@@ -4,7 +4,7 @@
 
 pkgbase=gtk3
 pkgname=(gtk3 gtk-update-icon-cache gtk3-print-backends)
-pkgver=3.22.1+67+gffb1ac5
+pkgver=3.22.1+69+ga1115c0
 pkgrel=1
 pkgdesc="GObject-based multi-platform GUI toolkit"
 arch=(i686 x86_64)
@@ -14,7 +14,7 @@
  adwaita-icon-theme json-glib librsvg wayland-protocols 
desktop-file-utils mesa)
 makedepends=(gobject-introspection libcanberra gtk-doc git colord rest libcups)
 license=(LGPL)
-_commit=ffb1ac56a8ae8b0261b9007115faed6206d4b06b  # gtk-3-22
+_commit=a1115c05be1a8bc6e3e299e72accbbee12bd77a7  # gtk-3-22
 source=("git://git.gnome.org/gtk+#commit=$_commit"
 0001-gdkscreen-x11-Fix-screen-and-monitor-size-calculatio.patch
 settings.ini


[arch-commits] Commit in vim/repos (14 files)

2016-10-23 Thread Jan Steffens
Date: Sunday, October 23, 2016 @ 19:35:43
  Author: heftig
Revision: 279190

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

Added:
  vim/repos/extra-i686/0001-Fix-widget-sizing-on-current-Gtk-3.22-branch.patch
(from rev 279189, 
vim/trunk/0001-Fix-widget-sizing-on-current-Gtk-3.22-branch.patch)
  vim/repos/extra-i686/PKGBUILD
(from rev 279189, vim/trunk/PKGBUILD)
  vim/repos/extra-i686/archlinux.vim
(from rev 279189, vim/trunk/archlinux.vim)
  vim/repos/extra-i686/vimrc
(from rev 279189, vim/trunk/vimrc)
  vim/repos/extra-x86_64/0001-Fix-widget-sizing-on-current-Gtk-3.22-branch.patch
(from rev 279189, 
vim/trunk/0001-Fix-widget-sizing-on-current-Gtk-3.22-branch.patch)
  vim/repos/extra-x86_64/PKGBUILD
(from rev 279189, vim/trunk/PKGBUILD)
  vim/repos/extra-x86_64/archlinux.vim
(from rev 279189, vim/trunk/archlinux.vim)
  vim/repos/extra-x86_64/vimrc
(from rev 279189, vim/trunk/vimrc)
Deleted:
  vim/repos/extra-i686/PKGBUILD
  vim/repos/extra-i686/archlinux.vim
  vim/repos/extra-i686/vimrc
  vim/repos/extra-x86_64/PKGBUILD
  vim/repos/extra-x86_64/archlinux.vim
  vim/repos/extra-x86_64/vimrc

--+
 /PKGBUILD|  412 
++
 /archlinux.vim   |   50 +
 /vimrc   |   36 
 extra-i686/0001-Fix-widget-sizing-on-current-Gtk-3.22-branch.patch   |   39 
 extra-i686/PKGBUILD  |  202 

 extra-i686/archlinux.vim |   25 
 extra-i686/vimrc |   18 
 extra-x86_64/0001-Fix-widget-sizing-on-current-Gtk-3.22-branch.patch |   39 
 extra-x86_64/PKGBUILD|  202 

 extra-x86_64/archlinux.vim   |   25 
 extra-x86_64/vimrc   |   18 
 11 files changed, 576 insertions(+), 490 deletions(-)

Copied: 
vim/repos/extra-i686/0001-Fix-widget-sizing-on-current-Gtk-3.22-branch.patch 
(from rev 279189, 
vim/trunk/0001-Fix-widget-sizing-on-current-Gtk-3.22-branch.patch)
===
--- extra-i686/0001-Fix-widget-sizing-on-current-Gtk-3.22-branch.patch  
(rev 0)
+++ extra-i686/0001-Fix-widget-sizing-on-current-Gtk-3.22-branch.patch  
2016-10-23 19:35:43 UTC (rev 279190)
@@ -0,0 +1,39 @@
+From feb38a618c1e1035f10ebde3cfa1f329daea67c3 Mon Sep 17 00:00:00 2001
+From: "Jan Alexander Steffens (heftig)" 
+Date: Sun, 23 Oct 2016 21:12:15 +0200
+Subject: [PATCH] Fix widget sizing on current Gtk+ 3.22 branch
+
+Gtk recently started emitting configure events when repositioning child
+windows[1]. Events for the form's child windows bubble up the widget
+hierarchy, get caught by our configure event handler, and treated as if
+they were reporting the size of the form window. As a result, the shell
+was sized using far too small dimensions[2][3]. This change will be part
+of Gtk+ 3.22.2.
+
+Solve this by checking whether the configure event we get is really for
+the form widget.
+
+[1]: 
https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22=12579fe71b3b8f79eb9c1b80e429443bcc437dd0
+[2]: https://bugs.archlinux.org/task/51509
+[3]: https://bugzilla.gnome.org/show_bug.cgi?id=773387
+---
+ src/gui_gtk_x11.c | 3 +++
+ 1 file changed, 3 insertions(+)
+
+diff --git a/src/gui_gtk_x11.c b/src/gui_gtk_x11.c
+index 388464215fadc3b5..35fee511a616db5a 100644
+--- a/src/gui_gtk_x11.c
 b/src/gui_gtk_x11.c
+@@ -4429,6 +4429,9 @@ form_configure_event(GtkWidget *widget UNUSED,
+ {
+ int usable_height = event->height;
+ 
++if (event->window != gtk_widget_get_window (gui.formwin))
++  return;
++
+ /* When in a GtkPlug, we can't guarantee valid heights (as a round
+  * no. of char-heights), so we have to manually sanitise them.
+  * Widths seem to sort themselves out, don't ask me why.
+-- 
+2.10.1
+

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-10-23 19:33:23 UTC (rev 279189)
+++ extra-i686/PKGBUILD 2016-10-23 19:35:43 UTC (rev 279190)
@@ -1,202 +0,0 @@
-# $Id$
-# Maintainer: Anatol Pomozov 
-# Contributor: Thomas Dziedzic 
-# Contributor: Jan "heftig" Steffens 
-# Contributor: tobias [ tobias at archlinux org ]
-# Contributor: Daniel J Griffiths 
-# Contributor: Christian Hesse 
-
-pkgbase=vim
-pkgname=(vim gvim vim-runtime)
-pkgver=8.0.0013
-_versiondir=80
-pkgrel=1
-arch=(i686 x86_64)
-license=('custom:vim')
-url='http://www.vim.org'
-makedepends=(gpm python2 python ruby libxt gtk3 lua gawk tcl)

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

2016-10-23 Thread Jan Steffens
Date: Sunday, October 23, 2016 @ 19:33:23
  Author: heftig
Revision: 279189

8.0.0046-1

Added:
  vim/trunk/0001-Fix-widget-sizing-on-current-Gtk-3.22-branch.patch
Modified:
  vim/trunk/PKGBUILD

-+
 0001-Fix-widget-sizing-on-current-Gtk-3.22-branch.patch |   39 ++
 PKGBUILD|8 ++
 2 files changed, 45 insertions(+), 2 deletions(-)

Added: 0001-Fix-widget-sizing-on-current-Gtk-3.22-branch.patch
===
--- 0001-Fix-widget-sizing-on-current-Gtk-3.22-branch.patch 
(rev 0)
+++ 0001-Fix-widget-sizing-on-current-Gtk-3.22-branch.patch 2016-10-23 
19:33:23 UTC (rev 279189)
@@ -0,0 +1,39 @@
+From feb38a618c1e1035f10ebde3cfa1f329daea67c3 Mon Sep 17 00:00:00 2001
+From: "Jan Alexander Steffens (heftig)" 
+Date: Sun, 23 Oct 2016 21:12:15 +0200
+Subject: [PATCH] Fix widget sizing on current Gtk+ 3.22 branch
+
+Gtk recently started emitting configure events when repositioning child
+windows[1]. Events for the form's child windows bubble up the widget
+hierarchy, get caught by our configure event handler, and treated as if
+they were reporting the size of the form window. As a result, the shell
+was sized using far too small dimensions[2][3]. This change will be part
+of Gtk+ 3.22.2.
+
+Solve this by checking whether the configure event we get is really for
+the form widget.
+
+[1]: 
https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22=12579fe71b3b8f79eb9c1b80e429443bcc437dd0
+[2]: https://bugs.archlinux.org/task/51509
+[3]: https://bugzilla.gnome.org/show_bug.cgi?id=773387
+---
+ src/gui_gtk_x11.c | 3 +++
+ 1 file changed, 3 insertions(+)
+
+diff --git a/src/gui_gtk_x11.c b/src/gui_gtk_x11.c
+index 388464215fadc3b5..35fee511a616db5a 100644
+--- a/src/gui_gtk_x11.c
 b/src/gui_gtk_x11.c
+@@ -4429,6 +4429,9 @@ form_configure_event(GtkWidget *widget UNUSED,
+ {
+ int usable_height = event->height;
+ 
++if (event->window != gtk_widget_get_window (gui.formwin))
++  return;
++
+ /* When in a GtkPlug, we can't guarantee valid heights (as a round
+  * no. of char-heights), so we have to manually sanitise them.
+  * Widths seem to sort themselves out, don't ask me why.
+-- 
+2.10.1
+

Modified: PKGBUILD
===
--- PKGBUILD2016-10-23 18:59:23 UTC (rev 279188)
+++ PKGBUILD2016-10-23 19:33:23 UTC (rev 279189)
@@ -8,7 +8,7 @@
 
 pkgbase=vim
 pkgname=(vim gvim vim-runtime)
-pkgver=8.0.0013
+pkgver=8.0.0046
 _versiondir=80
 pkgrel=1
 arch=(i686 x86_64)
@@ -16,9 +16,11 @@
 url='http://www.vim.org'
 makedepends=(gpm python2 python ruby libxt gtk3 lua gawk tcl)
 source=(vim-$pkgver.tar.gz::http://github.com/vim/vim/archive/v$pkgver.tar.gz
+0001-Fix-widget-sizing-on-current-Gtk-3.22-branch.patch
 vimrc
 archlinux.vim)
-sha1sums=('605be1eddc4501aea7c83b72a63b9ade6da5d43b'
+sha1sums=('28b81536dfa01abd86f084dd6c02f5a2c47b7dec'
+  'b566870f0b75f68a9ec3b5cc617f4c76843e8ce3'
   '539bfaa0517dfff6d61c37f9c2d81a0db756a4c9'
   '94f7bb87b5d06bace86bc4b3ef1372813b4eedf2')
 
@@ -25,6 +27,8 @@
 prepare() {
   cd vim-$pkgver/src
 
+  patch -Np2 -i 
"$srcdir"/0001-Fix-widget-sizing-on-current-Gtk-3.22-branch.patch
+
   # define the place for the global (g)vimrc file (set to /etc/vimrc)
   sed -i 's|^.*\(#define SYS_.*VIMRC_FILE.*"\) .*$|\1|' feature.h
   sed -i 's|^.*\(#define VIMRC_FILE.*"\) .*$|\1|' feature.h


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

2016-10-23 Thread Jan Steffens
Date: Sunday, October 23, 2016 @ 18:59:23
  Author: heftig
Revision: 279188

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-10-23 18:58:33 UTC (rev 279187)
+++ extra-i686/PKGBUILD 2016-10-23 18:59:23 UTC (rev 279188)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer : Ionut Biru 
-# Contributor: Timm Preetz 
-
-pkgname=vala
-pkgver=0.34.1
-pkgrel=1
-pkgdesc="Compiler for the GObject type system"
-url="https://wiki.gnome.org/Projects/Vala;
-arch=(i686 x86_64)
-license=(LGPL)
-depends=(glib2)
-makedepends=(libxslt git vala)
-checkdepends=(dbus libx11 gobject-introspection)
-_commit=e06c1524749862c2a3fd5b9e7a183f021116fa38  # tags/0.34.1^0
-source=("git://git.gnome.org/vala#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 --enable-vapigen
-  make
-}
-
-check() {
-  cd $pkgname
-  make check
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-}

Copied: vala/repos/extra-i686/PKGBUILD (from rev 279187, vala/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-10-23 18:59:23 UTC (rev 279188)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer : Ionut Biru 
+# Contributor: Timm Preetz 
+
+pkgname=vala
+pkgver=0.34.2
+pkgrel=1
+pkgdesc="Compiler for the GObject type system"
+url="https://wiki.gnome.org/Projects/Vala;
+arch=(i686 x86_64)
+license=(LGPL)
+depends=(glib2)
+makedepends=(libxslt git vala)
+checkdepends=(dbus libx11 gobject-introspection)
+_commit=9b75174cc2aff56403d2167f825b01dbe9a391ea  # tags/0.34.2^0
+source=("git://git.gnome.org/vala#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 --enable-vapigen
+  make
+}
+
+check() {
+  cd $pkgname
+  make check
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-10-23 18:58:33 UTC (rev 279187)
+++ extra-x86_64/PKGBUILD   2016-10-23 18:59:23 UTC (rev 279188)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer : Ionut Biru 
-# Contributor: Timm Preetz 
-
-pkgname=vala
-pkgver=0.34.1
-pkgrel=1
-pkgdesc="Compiler for the GObject type system"
-url="https://wiki.gnome.org/Projects/Vala;
-arch=(i686 x86_64)
-license=(LGPL)
-depends=(glib2)
-makedepends=(libxslt git vala)
-checkdepends=(dbus libx11 gobject-introspection)
-_commit=e06c1524749862c2a3fd5b9e7a183f021116fa38  # tags/0.34.1^0
-source=("git://git.gnome.org/vala#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 --enable-vapigen
-  make
-}
-
-check() {
-  cd $pkgname
-  make check
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-}

Copied: vala/repos/extra-x86_64/PKGBUILD (from rev 279187, vala/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-10-23 18:59:23 UTC (rev 279188)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer : Ionut Biru 
+# Contributor: Timm Preetz 
+
+pkgname=vala
+pkgver=0.34.2
+pkgrel=1
+pkgdesc="Compiler for the GObject type system"
+url="https://wiki.gnome.org/Projects/Vala;
+arch=(i686 x86_64)
+license=(LGPL)
+depends=(glib2)
+makedepends=(libxslt git vala)
+checkdepends=(dbus libx11 gobject-introspection)
+_commit=9b75174cc2aff56403d2167f825b01dbe9a391ea  # tags/0.34.2^0
+source=("git://git.gnome.org/vala#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 --enable-vapigen
+  make
+}
+
+check() {
+  cd $pkgname
+  

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

2016-10-23 Thread Jan Steffens
Date: Sunday, October 23, 2016 @ 18:58:33
  Author: heftig
Revision: 279187

0.34.2-1

Modified:
  vala/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-23 18:51:36 UTC (rev 279186)
+++ PKGBUILD2016-10-23 18:58:33 UTC (rev 279187)
@@ -3,7 +3,7 @@
 # Contributor: Timm Preetz 
 
 pkgname=vala
-pkgver=0.34.1
+pkgver=0.34.2
 pkgrel=1
 pkgdesc="Compiler for the GObject type system"
 url="https://wiki.gnome.org/Projects/Vala;
@@ -12,7 +12,7 @@
 depends=(glib2)
 makedepends=(libxslt git vala)
 checkdepends=(dbus libx11 gobject-introspection)
-_commit=e06c1524749862c2a3fd5b9e7a183f021116fa38  # tags/0.34.1^0
+_commit=9b75174cc2aff56403d2167f825b01dbe9a391ea  # tags/0.34.2^0
 source=("git://git.gnome.org/vala#commit=$_commit")
 sha256sums=('SKIP')
 


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

2016-10-23 Thread Rémy Oudompheng
Date: Sunday, October 23, 2016 @ 18:52:24
  Author: remy
Revision: 193115

upgpkg: biber 2.6-1

Upstream update.

Modified:
  biber/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-23 18:51:50 UTC (rev 193114)
+++ PKGBUILD2016-10-23 18:52:24 UTC (rev 193115)
@@ -2,7 +2,7 @@
 # Maintainer: Rémy Oudompheng 
 
 pkgname=biber
-pkgver=2.5 # for biblatex 3.4
+pkgver=2.6 # for biblatex 3.5
 pkgrel=1
 pkgdesc="A Unicode-capable BibTeX replacement for biblatex users"
 arch=('any')
@@ -17,7 +17,8 @@
  'perl-data-compare'
  'perl-data-dump'
  'perl-data-uniqid'
- 'perl-date-simple'
+ 'perl-datetime-calendar-julian'
+ 'perl-datetime-format-builder'
  'perl-file-slurp'
  'perl-io-string' # required by Biber::Output::bblxml
  'perl-ipc-run3'
@@ -27,7 +28,9 @@
  'perl-lwp-protocol-https'
  'perl-mozilla-ca'
  'perl-regexp-common'
+ 'perl-sort-key'
  'perl-text-bibtex'
+ 'perl-text-csv'
  'perl-text-roman'
  'perl-unicode-linebreak'
  'perl-xml-libxml-simple'
@@ -39,7 +42,7 @@
 options=('!emptydirs')
 # The sourceforge tarball is missing bblxml.pm
 source=("https://github.com/plk/biber/archive/v${pkgver}.tar.gz;)
-sha1sums=('c4cd1b49171f1a0ac9a58b2b651b9de3ea540cf0')
+sha1sums=('18c13ec60e1daceeadf8bf558398d8eb22cb375f')
 
 build() {
   cd "${srcdir}/biber-${pkgver}"


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

2016-10-23 Thread Rémy Oudompheng
Date: Sunday, October 23, 2016 @ 18:52:26
  Author: remy
Revision: 193116

archrelease: copy trunk to community-any

Added:
  biber/repos/community-any/PKGBUILD
(from rev 193115, biber/trunk/PKGBUILD)
Deleted:
  biber/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-10-23 18:52:24 UTC (rev 193115)
+++ PKGBUILD2016-10-23 18:52:26 UTC (rev 193116)
@@ -1,61 +0,0 @@
-# $Id$
-# Maintainer: Rémy Oudompheng 
-
-pkgname=biber
-pkgver=2.5 # for biblatex 3.4
-pkgrel=1
-pkgdesc="A Unicode-capable BibTeX replacement for biblatex users"
-arch=('any')
-license=('PerlArtistic' 'GPL')
-url="https://sourceforge.net/projects/biblatex-biber/;
-# Encode::* modules are not real dependencies.
-depends=('perl-autovivification'
- 'perl-business-isbn'
- 'perl-business-ismn'
- 'perl-business-issn'
- 'perl-class-accessor'
- 'perl-data-compare'
- 'perl-data-dump'
- 'perl-data-uniqid'
- 'perl-date-simple'
- 'perl-file-slurp'
- 'perl-io-string' # required by Biber::Output::bblxml
- 'perl-ipc-run3'
- 'perl-lingua-translit'
- 'perl-list-allutils'
- 'perl-log-log4perl'
- 'perl-lwp-protocol-https'
- 'perl-mozilla-ca'
- 'perl-regexp-common'
- 'perl-text-bibtex'
- 'perl-text-roman'
- 'perl-unicode-linebreak'
- 'perl-xml-libxml-simple'
- 'perl-xml-libxslt'
- 'perl-xml-writer')
-# ExtUtils::LibBuilder and Config::AutoConf are not actual makedepends
-makedepends=('perl-module-build' 'perl-test-differences')
-checkdepends=('perl-capture-tiny' 'perl-file-which')
-options=('!emptydirs')
-# The sourceforge tarball is missing bblxml.pm
-source=("https://github.com/plk/biber/archive/v${pkgver}.tar.gz;)
-sha1sums=('c4cd1b49171f1a0ac9a58b2b651b9de3ea540cf0')
-
-build() {
-  cd "${srcdir}/biber-${pkgver}"
-  unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT
-  perl Build.PL
-  ./Build
-}
-
-check() {
-  cd "${srcdir}/biber-${pkgver}"
-  unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT
-  LC_CTYPE=en_US.UTF-8 BIBER_DEV_TESTS=1 ./Build test
-}
-
-package() {
-  cd "${srcdir}/biber-${pkgver}"
-  unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT
-  ./Build install installdirs=vendor destdir="${pkgdir}"
-}

Copied: biber/repos/community-any/PKGBUILD (from rev 193115, 
biber/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-10-23 18:52:26 UTC (rev 193116)
@@ -0,0 +1,64 @@
+# $Id$
+# Maintainer: Rémy Oudompheng 
+
+pkgname=biber
+pkgver=2.6 # for biblatex 3.5
+pkgrel=1
+pkgdesc="A Unicode-capable BibTeX replacement for biblatex users"
+arch=('any')
+license=('PerlArtistic' 'GPL')
+url="https://sourceforge.net/projects/biblatex-biber/;
+# Encode::* modules are not real dependencies.
+depends=('perl-autovivification'
+ 'perl-business-isbn'
+ 'perl-business-ismn'
+ 'perl-business-issn'
+ 'perl-class-accessor'
+ 'perl-data-compare'
+ 'perl-data-dump'
+ 'perl-data-uniqid'
+ 'perl-datetime-calendar-julian'
+ 'perl-datetime-format-builder'
+ 'perl-file-slurp'
+ 'perl-io-string' # required by Biber::Output::bblxml
+ 'perl-ipc-run3'
+ 'perl-lingua-translit'
+ 'perl-list-allutils'
+ 'perl-log-log4perl'
+ 'perl-lwp-protocol-https'
+ 'perl-mozilla-ca'
+ 'perl-regexp-common'
+ 'perl-sort-key'
+ 'perl-text-bibtex'
+ 'perl-text-csv'
+ 'perl-text-roman'
+ 'perl-unicode-linebreak'
+ 'perl-xml-libxml-simple'
+ 'perl-xml-libxslt'
+ 'perl-xml-writer')
+# ExtUtils::LibBuilder and Config::AutoConf are not actual makedepends
+makedepends=('perl-module-build' 'perl-test-differences')
+checkdepends=('perl-capture-tiny' 'perl-file-which')
+options=('!emptydirs')
+# The sourceforge tarball is missing bblxml.pm
+source=("https://github.com/plk/biber/archive/v${pkgver}.tar.gz;)
+sha1sums=('18c13ec60e1daceeadf8bf558398d8eb22cb375f')
+
+build() {
+  cd "${srcdir}/biber-${pkgver}"
+  unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT
+  perl Build.PL
+  ./Build
+}
+
+check() {
+  cd "${srcdir}/biber-${pkgver}"
+  unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT
+  LC_CTYPE=en_US.UTF-8 BIBER_DEV_TESTS=1 ./Build test
+}
+
+package() {
+  cd "${srcdir}/biber-${pkgver}"
+  unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT
+  ./Build install installdirs=vendor destdir="${pkgdir}"
+}


[arch-commits] Commit in nodm/trunk (PKGBUILD nodm.conf norestart.patch)

2016-10-23 Thread Sven-Hendrik Haase
Date: Sunday, October 23, 2016 @ 18:51:50
  Author: svenstaro
Revision: 193114

Update stuff according to upstream

Modified:
  nodm/trunk/PKGBUILD
  nodm/trunk/nodm.conf
Deleted:
  nodm/trunk/norestart.patch

-+
 PKGBUILD|   14 ++--
 nodm.conf   |   25 +++---
 norestart.patch |   60 --
 3 files changed, 20 insertions(+), 79 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-10-23 18:46:44 UTC (rev 193113)
+++ PKGBUILD2016-10-23 18:51:50 UTC (rev 193114)
@@ -11,13 +11,13 @@
 makedepends=('help2man')
 backup=('etc/nodm.conf')
 
source=("https://github.com/spanezz/nodm/archive/debian/${pkgver}-${pkgrel}.tar.gz;
-   "nodm.conf"
-   "nodm.service"
-   "norestart.patch")
-md5sums=('a3d2c56e639abd8b626a5f5c016ac813'
- '9a372ab7dcf281963d972ebb9486b605'
- '2660ea3446841ade64db351ab639101c'
- '5076b2fe19551c42e3f5cd8bf445927f')
+   "nodm.conf"
+   "nodm.service"
+   "norestart.patch")
+md5sums=("a3d2c56e639abd8b626a5f5c016ac813"
+ "9a372ab7dcf281963d972ebb9486b605"
+ "2660ea3446841ade64db351ab639101c"
+ "5076b2fe19551c42e3f5cd8bf445927f")
 
 build() {
cd "${srcdir}/${pkgname}-debian-${pkgver}-${pkgrel}"

Modified: nodm.conf
===
--- nodm.conf   2016-10-23 18:46:44 UTC (rev 193113)
+++ nodm.conf   2016-10-23 18:51:50 UTC (rev 193114)
@@ -3,20 +3,21 @@
 # Controls the user that is used to automatically log in
 NODM_USER='{user}'
 
-# Options to pass to the X server (for example: "vt7 -nolisten tcp")
+# Options to pass to the X server (for example: "vt7 -nolisten
+# tcp")
 NODM_X_OPTIONS='vt7 -nolisten tcp'
 
-# Minimum time (in seconds) that a session should last in order for nodm to
-# decide that it has not quit too soon.  If an X session will run for less than
-# this time, nodm will wait an increasing bit of time before restarting it.
+# Minimum time (in seconds) that a session should last in order
+# for nodm to decide that it has not quit too soon.  If an X
+# session will run for less than this time, nodm will wait an
+# increasing bit of time before restarting it.
 NODM_MIN_SESSION_TIME=60
 
-# Restart session after it ending?
-NODM_RESTART_SESSION=0
+# X session command (default: /etc/X11/Xsession). It is run using
+# the shell, so it can be any shell command.
+NODM_XSESSION='/home/{user}/.xinitrc'
 
-# Path to the xinit program
-NODM_XINIT='/usr/bin/xinit'
-
-# Path to the X session script (useful if using xinit instead of startx).
-# NOTE: This file needs to be executable!
-NODM_XSESSION='/home/{user}/.xinitrc'
+# Timeout (in seconds) to wait for X to be ready to accept
+# connections. If X is not ready before this timeout, it is killed
+# and restarted.
+NODM_X_TIMEOUT=20

Deleted: norestart.patch
===
--- norestart.patch 2016-10-23 18:46:44 UTC (rev 193113)
+++ norestart.patch 2016-10-23 18:51:50 UTC (rev 193114)
@@ -1,60 +0,0 @@
-diff -aur nodm-0.7/nodm.c nodm-0.7-new/nodm.c
 nodm-0.7/nodm.c2009-07-26 20:36:14.0 +0200
-+++ nodm-0.7-new/nodm.c2011-03-02 15:19:23.96382 +0100
-@@ -427,8 +427,10 @@
-  * @param mst
-  *   The minimum time (in seconds) that a session should last to be considered
-  *   successful
-+ * @param xrestart
-+ *   Boolean option whether to restart X or not
-  */
--void run_and_restart(const char* xinit, const char* xsession, const char* 
xoptions, int mst)
-+void run_and_restart(const char* xinit, const char* xsession, const char* 
xoptions, int mst, int xrestart)
- {
-   static int retry_times[] = { 0, 0, 30, 30, 60, 60, -1 };
-   int restart_count = 0;
-@@ -446,8 +448,7 @@
-   args[2] = command;
-   args[3] = 0;
- 
--  while (1)
--  {
-+  do {
-   /* Run the X server */
-   time_t begin = time(NULL);
-   time_t end;
-@@ -470,7 +471,7 @@
-   /* Sleep a bit if the session was too short */
-   sleep(retry_times[restart_count]);
-   syslog (LOG_INFO, "Restarting session for %s", name);
--  }
-+  } while (xrestart);
- }
- 
- /*
-@@ -525,6 +526,7 @@
-   int mst;
-   int vt_fd = -1;
-   int vt_num;
-+  int xrestart = 0;
- 
-   /* Parse command line options */
-   while (1)
-@@ -576,6 +578,8 @@
-   /* Read the configuration from the environment */
-   cp = getenv("NODM_MIN_SESSION_TIME");
-   mst = cp ? atoi(cp) : 60;
-+  cp = getenv("NODM_RESTART_SESSION");
-+xrestart = cp ? atoi(cp) : 0;
-   string_from_env(xinit, "NODM_XINIT", "/usr/bin/xinit");
-   string_from_env(xoptions, "NODM_X_OPTIONS", "");
- 
-@@ -585,7 +589,7 @@
-   snprintf(xoptions1, BUFSIZ, "vt%d %s", vt_num, xoptions);
- 
-   

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

2016-10-23 Thread Rémy Oudompheng
Date: Sunday, October 23, 2016 @ 18:51:23
  Author: remy
Revision: 279185

upgpkg: texlive-bibtexextra 2016.42278-1

archaeologie has been updated (41771 => 42227)
beebe has been updated (41545 => 42220)
biber has been updated (41193 => 42078)
biblatex has been updated (41192 => 42092)
biblatex-abnt has been updated (41800 => 42267)
biblatex-anonymous has been updated (41514 => 42152)
biblatex-apa has been updated (41125 => 42091)
biblatex-bookinother has been updated (41470 => 42068)
biblatex-chem has been updated (40015 => 42065)
biblatex-claves is new!
biblatex-fiwi has been updated (41240 => 42069)
biblatex-gost has been updated (41730 => 42096)
biblatex-ieee has been updated (41741 => 41962)
biblatex-lni is new!
biblatex-manuscripts-philology has been updated (41355 => 42119)
biblatex-morenames has been updated (41356 => 42070)
biblatex-nature has been updated (40016 => 42146)
biblatex-opcit-booktitle has been updated (41422 => 42071)
biblatex-phys has been updated (40017 => 41922)
biblatex-publist has been updated (41160 => 41812)
biblatex-realauthor has been updated (41340 => 42072)
biblatex-sbl is new!
biblatex-science has been updated (40018 => 42147)
biblatex-true-citepages-omit has been updated (36047 => 42120)
biolett-bst is new!
geschichtsfrkl has been updated (41302 => 42121)
rsc has been updated (20942 => 41923)
turabian-formatting has been updated (41734 => 42243)

Modified:
  texlive-bibtexextra/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-23 17:39:43 UTC (rev 279184)
+++ PKGBUILD2016-10-23 18:51:23 UTC (rev 279185)
@@ -3,7 +3,7 @@
 # Maintainer: Rémy Oudompheng 
 
 pkgname=texlive-bibtexextra
-pkgver=2016.41800
+pkgver=2016.42278
 _revnr=${pkgver#2016.}
 pkgrel=1
 pkgdesc="TeX Live - Additional BibTeX styles and bibliography databases"
@@ -13,7 +13,7 @@
 groups=('texlive-most')
 url='http://tug.org/texlive/'
 source=("https://sources.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip;)
-md5sums=('299908c0e2d2540e696d6a8b326e4644')
+md5sums=('e1dc44e63c682dcf3e91edb97f910c7b')
 
 build() {
cd "$srcdir"


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

2016-10-23 Thread Rémy Oudompheng
Date: Sunday, October 23, 2016 @ 18:51:36
  Author: remy
Revision: 279186

archrelease: copy trunk to extra-any

Added:
  texlive-bibtexextra/repos/extra-any/PKGBUILD
(from rev 279185, texlive-bibtexextra/trunk/PKGBUILD)
Deleted:
  texlive-bibtexextra/repos/extra-any/PKGBUILD

--+
 PKGBUILD |  120 ++---
 1 file changed, 60 insertions(+), 60 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-10-23 18:51:23 UTC (rev 279185)
+++ PKGBUILD2016-10-23 18:51:36 UTC (rev 279186)
@@ -1,60 +0,0 @@
-# $Id$
-# Contributor: Firmicus 
-# Maintainer: Rémy Oudompheng 
-
-pkgname=texlive-bibtexextra
-pkgver=2016.41800
-_revnr=${pkgver#2016.}
-pkgrel=1
-pkgdesc="TeX Live - Additional BibTeX styles and bibliography databases"
-license=('GPL')
-arch=(any)
-depends=('texlive-core')
-groups=('texlive-most')
-url='http://tug.org/texlive/'
-source=("https://sources.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip;)
-md5sums=('299908c0e2d2540e696d6a8b326e4644')
-
-build() {
-   cd "$srcdir"
-   for p in *.tar.xz; do
-  bsdtar -xf $p
-   done
-   rm -rf {tlpkg,doc,source} || true
-}
-
-package() {
-   install -m755 -d $pkgdir/var/lib/texmf/arch/installedpkgs
-   sed -i '/^#/d' CONTENTS
-   install -m644 CONTENTS 
$pkgdir/var/lib/texmf/arch/installedpkgs/${pkgname}_${_revnr}.pkgs
-   install -m755 -d $pkgdir/usr/share
-   wanteddirs=$(for d in *; do test -d $d && [[ $d != texmf* ]] && echo $d; 
done) || true
-   for dir in $wanteddirs; do
- find $dir -type d -exec install -d -m755 
$pkgdir/usr/share/texmf-dist/'{}' \;
- find $dir -type f -exec install -m644 '{}' 
$pkgdir/usr/share/texmf-dist/'{}' \;
-   done
-   if [[ -d texmf-dist ]]; then
- find texmf-dist -type d -exec install -d -m755 $pkgdir/usr/share/'{}' \;
- find texmf-dist -type f -exec install -m644 '{}' $pkgdir/usr/share/'{}' \;
-   fi
-   if [[ -d $pkgdir/usr/share/texmf-dist/scripts ]]; then
- find $pkgdir/usr/share/texmf-dist/scripts -type f -exec chmod a+x '{}' \;
-   fi
-
-   # link programs from /usr/share/texmf-dist/scripts
-   _linked_scripts="
-bibexport/bibexport.sh
-crossrefware/bibdoiadd.pl
-crossrefware/bibzbladd.pl
-crossrefware/ltx2crossrefxml.pl
-listbib/listbib
-multibibliography/multibibliography.pl
-urlbst/urlbst
-"
-install -m755 -d $pkgdir/usr/bin
-for _script in ${_linked_scripts}; do
-_scriptbase=$(basename $_script)
-_scriptbase=${_scriptbase%.*}
-ln -s /usr/share/texmf-dist/scripts/${_script} 
${pkgdir}/usr/bin/${_scriptbase}
-done
-}

Copied: texlive-bibtexextra/repos/extra-any/PKGBUILD (from rev 279185, 
texlive-bibtexextra/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-10-23 18:51:36 UTC (rev 279186)
@@ -0,0 +1,60 @@
+# $Id$
+# Contributor: Firmicus 
+# Maintainer: Rémy Oudompheng 
+
+pkgname=texlive-bibtexextra
+pkgver=2016.42278
+_revnr=${pkgver#2016.}
+pkgrel=1
+pkgdesc="TeX Live - Additional BibTeX styles and bibliography databases"
+license=('GPL')
+arch=(any)
+depends=('texlive-core')
+groups=('texlive-most')
+url='http://tug.org/texlive/'
+source=("https://sources.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip;)
+md5sums=('e1dc44e63c682dcf3e91edb97f910c7b')
+
+build() {
+   cd "$srcdir"
+   for p in *.tar.xz; do
+  bsdtar -xf $p
+   done
+   rm -rf {tlpkg,doc,source} || true
+}
+
+package() {
+   install -m755 -d $pkgdir/var/lib/texmf/arch/installedpkgs
+   sed -i '/^#/d' CONTENTS
+   install -m644 CONTENTS 
$pkgdir/var/lib/texmf/arch/installedpkgs/${pkgname}_${_revnr}.pkgs
+   install -m755 -d $pkgdir/usr/share
+   wanteddirs=$(for d in *; do test -d $d && [[ $d != texmf* ]] && echo $d; 
done) || true
+   for dir in $wanteddirs; do
+ find $dir -type d -exec install -d -m755 
$pkgdir/usr/share/texmf-dist/'{}' \;
+ find $dir -type f -exec install -m644 '{}' 
$pkgdir/usr/share/texmf-dist/'{}' \;
+   done
+   if [[ -d texmf-dist ]]; then
+ find texmf-dist -type d -exec install -d -m755 $pkgdir/usr/share/'{}' \;
+ find texmf-dist -type f -exec install -m644 '{}' $pkgdir/usr/share/'{}' \;
+   fi
+   if [[ -d $pkgdir/usr/share/texmf-dist/scripts ]]; then
+ find $pkgdir/usr/share/texmf-dist/scripts -type f -exec chmod a+x '{}' \;
+   fi
+
+   # link programs from /usr/share/texmf-dist/scripts
+   _linked_scripts="
+bibexport/bibexport.sh
+crossrefware/bibdoiadd.pl
+crossrefware/bibzbladd.pl
+crossrefware/ltx2crossrefxml.pl
+listbib/listbib
+multibibliography/multibibliography.pl
+urlbst/urlbst
+"
+install -m755 -d $pkgdir/usr/bin
+for _script in ${_linked_scripts}; do
+_scriptbase=$(basename $_script)
+_scriptbase=${_scriptbase%.*}
+ln -s /usr/share/texmf-dist/scripts/${_script} 
${pkgdir}/usr/bin/${_scriptbase}
+done
+}


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

2016-10-23 Thread Sven-Hendrik Haase
Date: Sunday, October 23, 2016 @ 18:46:35
  Author: svenstaro
Revision: 193112

upgpkg: pypy3 5.5.0-1

upstream release 5.5.0

Modified:
  pypy3/trunk/PKGBUILD
Deleted:
  pypy3/trunk/disable-sslv3.patch
  pypy3/trunk/trackgcroot-new-ops.patch

---+
 PKGBUILD  |   56 +++-
 disable-sslv3.patch   |   32 -
 trackgcroot-new-ops.patch |   26 
 3 files changed, 15 insertions(+), 99 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-10-23 18:05:28 UTC (rev 193111)
+++ PKGBUILD2016-10-23 18:46:35 UTC (rev 193112)
@@ -1,13 +1,10 @@
 # $Id: PKGBUILD 95035 2013-08-04 09:44:24Z svenstaro $
 # Maintainer: Sven-Hendrik Haase 
 
-#_hgrev=63547
-
 pkgname=pypy3
-pkgver=2.4.0
-_pkgver=2.4.0
-#[[ -n $_hgrev ]] && pkgver=2.0beta2.$_hgrev
-pkgrel=4
+pkgver=5.5.0
+_pkgver=5.5.0
+pkgrel=1
 pkgdesc="A Python3 implementation written in Python, JIT enabled"
 url="http://pypy.org;
 arch=('i686' 'x86_64')
@@ -17,44 +14,21 @@
 'tk: tk module')
 options=(!buildflags)
 license=('custom:MIT')
-#source=("hg+https://bitbucket.org/pypy/pypy#revision=$_hgrev;)
-source=("https://bitbucket.org/pypy/pypy/downloads/$pkgname-$_pkgver-src.tar.bz2;
-"disable-sslv3.patch"
-"trackgcroot-new-ops.patch")
-md5sums=('96ba72916114d16904e12562b5d84e51'
- '383f6220bb64a963a6c071a62d110ec7'
- '3294fd2919c3372615b59c5f82552f64')
+source=("https://bitbucket.org/pypy/pypy/downloads/pypy3.3-v${pkgver}-alpha-src.tar.bz2;)
+md5sums=('536008fd7b17af8878915393fc1ecfc3')
 
-prepare() {
-  cd ${pkgname}-${_pkgver}-src
-  patch -Np1 -i ../disable-sslv3.patch
-  patch -Np1 -i ../trackgcroot-new-ops.patch
-
-  # Hacky fix to allow the curses module to build on x86_64; otherwise we get:
-  #   cffi.ffiplatform.VerificationError: anonymous MEVENT: wrong total size
-  #   (we have 24, but C compiler says 20)
-  if [[ $CARCH == x86_64 ]]; then
-_type=unsigned
-  else
-_type=uint32_t
-  fi
-  sed -i -e "s/typedef unsigned long mmask_t/typedef $_type mmask_t/" \
- -e "s/typedef unsigned long chtype/typedef $_type chtype/" \
-lib_pypy/_curses.py
-}
-
 build() {
-  cd ${pkgname}-${_pkgver}-src/pypy/goal
+  cd pypy3-v${_pkgver}-src/pypy/goal
 
-  #python2 ../../rpython/bin/rpython -Ojit --shared targetpypystandalone
-  python2 ../../rpython/bin/rpython -Ojit targetpypystandalone
+  python2 ../../rpython/bin/rpython -Ojit --no-shared targetpypystandalone
+  # python2 ../../rpython/bin/rpython -Ojit --shared targetpypystandalone
 }
 
 package() {
-  cd ${pkgname}-${_pkgver}-src
+  cd pypy3-v${_pkgver}-src
 
   install -Dm755 pypy/goal/pypy-c "${pkgdir}"/opt/pypy3/bin/pypy-c
-  #install -Dm755 pypy/goal/libpypy-c.so "${pkgdir}"/usr/lib/libpypy3-c.so
+  # install -Dm755 pypy/goal/libpypy-c.so "${pkgdir}"/usr/lib/libpypy3-c.so
   cp -r include lib_pypy site-packages "${pkgdir}"/opt/pypy3/
 
   mkdir "${pkgdir}"/opt/pypy3/lib-python/
@@ -63,19 +37,19 @@
   mkdir -p "${pkgdir}"/usr/bin
   ln -s /opt/pypy3/bin/pypy-c "${pkgdir}"/usr/bin/pypy3
 
+  install -Dm644 README.rst "${pkgdir}"/opt/pypy3/README.rst
   install -Dm644 LICENSE "${pkgdir}"/opt/pypy3/LICENSE
-  install -Dm644 README.rst "${pkgdir}"/opt/pypy3/README.rst
   install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/pypy3/LICENSE
 
   # Compile binary modules
-  #export LD_LIBRARY_PATH="${pkgdir}"/usr/lib:${LD_LIBRARY_PATH}
+  export LD_LIBRARY_PATH="${pkgdir}"/usr/lib:${LD_LIBRARY_PATH}
   for module in _curses syslog dbm sqlite3 _tkinter; do
 "${pkgdir}/opt/pypy3/bin/pypy-c" -c "import ${module}"
   done
 
-  # Generate bytecode (currently impossibru)
-  #"${pkgdir}"/opt/pypy3/bin/pypy-c -m compileall "${pkgdir}"/opt/pypy3
-  #"${pkgdir}"/opt/pypy3/bin/pypy-c -O -m compileall "${pkgdir}"/opt/pypy3
+  # Generate bytecode (currently fails with errors)
+  "${pkgdir}"/opt/pypy3/bin/pypy-c -m compileall "${pkgdir}"/opt/pypy3 || true
+  "${pkgdir}"/opt/pypy3/bin/pypy-c -O -m compileall "${pkgdir}"/opt/pypy3 || 
true
 
 }
 # vim: ts=2 sw=2 et:

Deleted: disable-sslv3.patch
===
--- disable-sslv3.patch 2016-10-23 18:05:28 UTC (rev 193111)
+++ disable-sslv3.patch 2016-10-23 18:46:35 UTC (rev 193112)
@@ -1,32 +0,0 @@
-diff -u -r pypy3-2.4.0-src/pypy/module/_ssl/interp_ssl.py 
pypy3-2.4.0-src-nossl3/pypy/module/_ssl/interp_ssl.py
 pypy3-2.4.0-src/pypy/module/_ssl/interp_ssl.py 2014-10-17 
22:09:50.0 +0200
-+++ pypy3-2.4.0-src-nossl3/pypy/module/_ssl/interp_ssl.py  2016-03-03 
18:09:29.810745956 +0100
-@@ -95,7 +95,7 @@
- def __init__(self, space, protocol):
- if protocol == PY_SSL_VERSION_TLS1:
- method = libssl_TLSv1_method()
--elif protocol == PY_SSL_VERSION_SSL3:
-+elif protocol == 

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

2016-10-23 Thread Sven-Hendrik Haase
Date: Sunday, October 23, 2016 @ 18:46:44
  Author: svenstaro
Revision: 193113

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

Added:
  pypy3/repos/community-i686/PKGBUILD
(from rev 193112, pypy3/trunk/PKGBUILD)
  pypy3/repos/community-x86_64/PKGBUILD
(from rev 193112, pypy3/trunk/PKGBUILD)
Deleted:
  pypy3/repos/community-i686/PKGBUILD
  pypy3/repos/community-i686/disable-sslv3.patch
  pypy3/repos/community-i686/trackgcroot-new-ops.patch
  pypy3/repos/community-x86_64/PKGBUILD
  pypy3/repos/community-x86_64/disable-sslv3.patch
  pypy3/repos/community-x86_64/trackgcroot-new-ops.patch

+
 /PKGBUILD  |  110 +++
 community-i686/PKGBUILD|   81 ---
 community-i686/disable-sslv3.patch |   32 ---
 community-i686/trackgcroot-new-ops.patch   |   26 --
 community-x86_64/PKGBUILD  |   81 ---
 community-x86_64/disable-sslv3.patch   |   32 ---
 community-x86_64/trackgcroot-new-ops.patch |   26 --
 7 files changed, 110 insertions(+), 278 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-10-23 18:46:35 UTC (rev 193112)
+++ community-i686/PKGBUILD 2016-10-23 18:46:44 UTC (rev 193113)
@@ -1,81 +0,0 @@
-# $Id: PKGBUILD 95035 2013-08-04 09:44:24Z svenstaro $
-# Maintainer: Sven-Hendrik Haase 
-
-#_hgrev=63547
-
-pkgname=pypy3
-pkgver=2.4.0
-_pkgver=2.4.0
-#[[ -n $_hgrev ]] && pkgver=2.0beta2.$_hgrev
-pkgrel=4
-pkgdesc="A Python3 implementation written in Python, JIT enabled"
-url="http://pypy.org;
-arch=('i686' 'x86_64')
-depends=('expat' 'bzip2' 'gdbm' 'openssl' 'libffi' 'zlib')
-makedepends=('python2' 'sqlite' 'tk')
-optdepends=('sqlite: sqlite module'
-'tk: tk module')
-options=(!buildflags)
-license=('custom:MIT')
-#source=("hg+https://bitbucket.org/pypy/pypy#revision=$_hgrev;)
-source=("https://bitbucket.org/pypy/pypy/downloads/$pkgname-$_pkgver-src.tar.bz2;
-"disable-sslv3.patch"
-"trackgcroot-new-ops.patch")
-md5sums=('96ba72916114d16904e12562b5d84e51'
- '383f6220bb64a963a6c071a62d110ec7'
- '3294fd2919c3372615b59c5f82552f64')
-
-prepare() {
-  cd ${pkgname}-${_pkgver}-src
-  patch -Np1 -i ../disable-sslv3.patch
-  patch -Np1 -i ../trackgcroot-new-ops.patch
-
-  # Hacky fix to allow the curses module to build on x86_64; otherwise we get:
-  #   cffi.ffiplatform.VerificationError: anonymous MEVENT: wrong total size
-  #   (we have 24, but C compiler says 20)
-  if [[ $CARCH == x86_64 ]]; then
-_type=unsigned
-  else
-_type=uint32_t
-  fi
-  sed -i -e "s/typedef unsigned long mmask_t/typedef $_type mmask_t/" \
- -e "s/typedef unsigned long chtype/typedef $_type chtype/" \
-lib_pypy/_curses.py
-}
-
-build() {
-  cd ${pkgname}-${_pkgver}-src/pypy/goal
-
-  #python2 ../../rpython/bin/rpython -Ojit --shared targetpypystandalone
-  python2 ../../rpython/bin/rpython -Ojit targetpypystandalone
-}
-
-package() {
-  cd ${pkgname}-${_pkgver}-src
-
-  install -Dm755 pypy/goal/pypy-c "${pkgdir}"/opt/pypy3/bin/pypy-c
-  #install -Dm755 pypy/goal/libpypy-c.so "${pkgdir}"/usr/lib/libpypy3-c.so
-  cp -r include lib_pypy site-packages "${pkgdir}"/opt/pypy3/
-
-  mkdir "${pkgdir}"/opt/pypy3/lib-python/
-  cp -r lib-python/3 "${pkgdir}"/opt/pypy3/lib-python/
-
-  mkdir -p "${pkgdir}"/usr/bin
-  ln -s /opt/pypy3/bin/pypy-c "${pkgdir}"/usr/bin/pypy3
-
-  install -Dm644 LICENSE "${pkgdir}"/opt/pypy3/LICENSE
-  install -Dm644 README.rst "${pkgdir}"/opt/pypy3/README.rst
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/pypy3/LICENSE
-
-  # Compile binary modules
-  #export LD_LIBRARY_PATH="${pkgdir}"/usr/lib:${LD_LIBRARY_PATH}
-  for module in _curses syslog dbm sqlite3 _tkinter; do
-"${pkgdir}/opt/pypy3/bin/pypy-c" -c "import ${module}"
-  done
-
-  # Generate bytecode (currently impossibru)
-  #"${pkgdir}"/opt/pypy3/bin/pypy-c -m compileall "${pkgdir}"/opt/pypy3
-  #"${pkgdir}"/opt/pypy3/bin/pypy-c -O -m compileall "${pkgdir}"/opt/pypy3
-
-}
-# vim: ts=2 sw=2 et:

Copied: pypy3/repos/community-i686/PKGBUILD (from rev 193112, 
pypy3/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-10-23 18:46:44 UTC (rev 193113)
@@ -0,0 +1,55 @@
+# $Id: PKGBUILD 95035 2013-08-04 09:44:24Z svenstaro $
+# Maintainer: Sven-Hendrik Haase 
+
+pkgname=pypy3
+pkgver=5.5.0
+_pkgver=5.5.0
+pkgrel=1
+pkgdesc="A Python3 implementation written in Python, JIT enabled"
+url="http://pypy.org;
+arch=('i686' 'x86_64')
+depends=('expat' 'bzip2' 'gdbm' 'openssl' 'libffi' 'zlib')
+makedepends=('python2' 'sqlite' 'tk')
+optdepends=('sqlite: sqlite module'
+'tk: tk 

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

2016-10-23 Thread Lukas Jirkovsky
Date: Sunday, October 23, 2016 @ 18:05:28
  Author: stativ
Revision: 193111

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

Added:
  krusader/repos/community-i686/PKGBUILD
(from rev 193110, krusader/trunk/PKGBUILD)
  krusader/repos/community-x86_64/PKGBUILD
(from rev 193110, krusader/trunk/PKGBUILD)
Deleted:
  krusader/repos/community-i686/PKGBUILD
  krusader/repos/community-i686/kde_bug309119.diff
  krusader/repos/community-i686/kde_bug325801.diff
  krusader/repos/community-x86_64/PKGBUILD
  krusader/repos/community-x86_64/kde_bug309119.diff
  krusader/repos/community-x86_64/kde_bug325801.diff

-+
 /PKGBUILD   |   60 
 community-i686/PKGBUILD |   46 -
 community-i686/kde_bug309119.diff   |   21 
 community-i686/kde_bug325801.diff   |  157 --
 community-x86_64/PKGBUILD   |   46 -
 community-x86_64/kde_bug309119.diff |   21 
 community-x86_64/kde_bug325801.diff |  157 --
 7 files changed, 60 insertions(+), 448 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-10-23 18:05:11 UTC (rev 193110)
+++ community-i686/PKGBUILD 2016-10-23 18:05:28 UTC (rev 193111)
@@ -1,46 +0,0 @@
-# $Id: PKGBUILD 149613 2012-02-08 20:20:01Z pierre $
-# Maintainer: Lukas Jirkovsky 
-# Contributor: Andrea Scarpino 
-# Contributor: Alexander Baldeck 
-# Contributor: Lucien Immink 
-
-pkgname=krusader
-pkgver=2.4.0beta3
-_pkgver=2.4.0-beta3
-pkgrel=9
-pkgdesc="An alternative file manager for KDE resembling Midnight Commander"
-arch=('i686' 'x86_64')
-url="http://krusader.sourceforge.net/;
-license=('GPL')
-depends=('kdebase-runtime' 'kdebase-lib' 'kdebase-katepart' 'kuiserver')
-makedepends=('cmake' 'automoc4')
-optdepends=('kdebase-keditbookmarks: to edit bookmarks'
-'kdebase-konsole: open an embedded terminal')
-source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$_pkgver.tar.bz2;
-"kde_bug309119.diff" "kde_bug325801.diff")
-md5sums=('62a02db3f213bb76805ca6c958e9e263'
- '5e9952f6ac38e5ce323eb95ca6f20db6'
- '55fd27e4888e15e8b3bd8ab08b85aa9e')
-
-prepare() {
-  cd "$srcdir/$pkgname-$_pkgver"
-
-  # fix KDE bug 309119 - "New directory" dialog: can't clear all typed text
-  patch -Np1 < "$srcdir/kde_bug309119.diff" || true
-  # fix KDE bug 32580 -  Showing contents of rar archives is broken with unrar 
5.00
-  patch -Np1 < "$srcdir/kde_bug325801.diff" || true
-}
-
-build() {
-  cd "$srcdir/$pkgname-$_pkgver"
-
-  cmake . \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$_pkgver"
-  make DESTDIR="$pkgdir" install
-}

Copied: krusader/repos/community-i686/PKGBUILD (from rev 193110, 
krusader/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-10-23 18:05:28 UTC (rev 193111)
@@ -0,0 +1,30 @@
+# $Id: PKGBUILD 149613 2012-02-08 20:20:01Z pierre $
+# Maintainer: Lukas Jirkovsky 
+pkgname=krusader
+pkgver=2.5.0
+pkgrel=1
+pkgdesc="Advanced twin panel (commander style) file manager for KDE"
+arch=('i686' 'x86_64')
+url="https://krusader.org/;
+license=('GPL')
+depends=('karchive' 'kbookmarks' 'kcodecs' 'kcompletion' 'kcoreaddons' 
'kconfig'
+ 'kdoctools' 'ki18n' 'kiconthemes' 'kitemviews' 'kio' 'knotifications'
+ 'kparts' 'solid' 'ktextwidgets' 'kwallet' 'kwidgetsaddons' 
'kwindowsystem'
+ 'kxmlgui' 'kguiaddons' 'hicolor-icon-theme')
+makedepends=('cmake' 'extra-cmake-modules' 'python')
+source=("http://download.kde.org/stable/krusader/$pkgver/$pkgname-$pkgver.tar.xz;)
+md5sums=('5074c7c8dcd7fa8c8509f472bc2e0815')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  cmake . \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-i686/kde_bug309119.diff
===
--- community-i686/kde_bug309119.diff   2016-10-23 18:05:11 UTC (rev 193110)
+++ community-i686/kde_bug309119.diff   2016-10-23 18:05:28 UTC (rev 193111)
@@ -1,21 +0,0 @@
-commit 5cb23ac98046a07d5db3a52b41e3a42544eb13f9
-Author: Jan Lepper 
-Date:   Wed Jan 2 21:38:52 2013 +0100
-
-FIXED: [ 309119 ] Wrong "New directory" dialog behavior: can't clear all 
typed text
-return QValidator::Intermediate instead of Invalid when input is empty
-BUG: 309119
-
-diff --git a/krusader/Panel/panelfunc.cpp b/krusader/Panel/panelfunc.cpp
-index 2f696da..8935ddf 100644
 

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

2016-10-23 Thread Lukas Jirkovsky
Date: Sunday, October 23, 2016 @ 18:05:11
  Author: stativ
Revision: 193110

upgpkg: krusader 2.5.0-1

update to 2.5.0

Modified:
  krusader/trunk/PKGBUILD
Deleted:
  krusader/trunk/kde_bug309119.diff
  krusader/trunk/kde_bug325801.diff

+
 PKGBUILD   |   42 -
 kde_bug309119.diff |   21 --
 kde_bug325801.diff |  157 ---
 3 files changed, 13 insertions(+), 207 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-10-23 17:46:38 UTC (rev 193109)
+++ PKGBUILD2016-10-23 18:05:11 UTC (rev 193110)
@@ -1,38 +1,22 @@
 # $Id: PKGBUILD 149613 2012-02-08 20:20:01Z pierre $
 # Maintainer: Lukas Jirkovsky 
-# Contributor: Andrea Scarpino 
-# Contributor: Alexander Baldeck 
-# Contributor: Lucien Immink 
-
 pkgname=krusader
-pkgver=2.4.0beta3
-_pkgver=2.4.0-beta3
-pkgrel=9
-pkgdesc="An alternative file manager for KDE resembling Midnight Commander"
+pkgver=2.5.0
+pkgrel=1
+pkgdesc="Advanced twin panel (commander style) file manager for KDE"
 arch=('i686' 'x86_64')
-url="http://krusader.sourceforge.net/;
+url="https://krusader.org/;
 license=('GPL')
-depends=('kdebase-runtime' 'kdebase-lib' 'kdebase-katepart' 'kuiserver')
-makedepends=('cmake' 'automoc4')
-optdepends=('kdebase-keditbookmarks: to edit bookmarks'
-'kdebase-konsole: open an embedded terminal')
-source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$_pkgver.tar.bz2;
-"kde_bug309119.diff" "kde_bug325801.diff")
-md5sums=('62a02db3f213bb76805ca6c958e9e263'
- '5e9952f6ac38e5ce323eb95ca6f20db6'
- '55fd27e4888e15e8b3bd8ab08b85aa9e')
+depends=('karchive' 'kbookmarks' 'kcodecs' 'kcompletion' 'kcoreaddons' 
'kconfig'
+ 'kdoctools' 'ki18n' 'kiconthemes' 'kitemviews' 'kio' 'knotifications'
+ 'kparts' 'solid' 'ktextwidgets' 'kwallet' 'kwidgetsaddons' 
'kwindowsystem'
+ 'kxmlgui' 'kguiaddons' 'hicolor-icon-theme')
+makedepends=('cmake' 'extra-cmake-modules' 'python')
+source=("http://download.kde.org/stable/krusader/$pkgver/$pkgname-$pkgver.tar.xz;)
+md5sums=('5074c7c8dcd7fa8c8509f472bc2e0815')
 
-prepare() {
-  cd "$srcdir/$pkgname-$_pkgver"
-
-  # fix KDE bug 309119 - "New directory" dialog: can't clear all typed text
-  patch -Np1 < "$srcdir/kde_bug309119.diff" || true
-  # fix KDE bug 32580 -  Showing contents of rar archives is broken with unrar 
5.00
-  patch -Np1 < "$srcdir/kde_bug325801.diff" || true
-}
-
 build() {
-  cd "$srcdir/$pkgname-$_pkgver"
+  cd "$srcdir/$pkgname-$pkgver"
 
   cmake . \
 -DCMAKE_BUILD_TYPE=Release \
@@ -41,6 +25,6 @@
 }
 
 package() {
-  cd "$srcdir/$pkgname-$_pkgver"
+  cd "$srcdir/$pkgname-$pkgver"
   make DESTDIR="$pkgdir" install
 }

Deleted: kde_bug309119.diff
===
--- kde_bug309119.diff  2016-10-23 17:46:38 UTC (rev 193109)
+++ kde_bug309119.diff  2016-10-23 18:05:11 UTC (rev 193110)
@@ -1,21 +0,0 @@
-commit 5cb23ac98046a07d5db3a52b41e3a42544eb13f9
-Author: Jan Lepper 
-Date:   Wed Jan 2 21:38:52 2013 +0100
-
-FIXED: [ 309119 ] Wrong "New directory" dialog behavior: can't clear all 
typed text
-return QValidator::Intermediate instead of Invalid when input is empty
-BUG: 309119
-
-diff --git a/krusader/Panel/panelfunc.cpp b/krusader/Panel/panelfunc.cpp
-index 2f696da..8935ddf 100644
 a/krusader/Panel/panelfunc.cpp
-+++ b/krusader/Panel/panelfunc.cpp
-@@ -100,7 +100,7 @@ class FilePathValidator : public QValidator
- {
- public:
- virtual State validate(QString , int ) const {
--return input.isEmpty() ? Invalid : Acceptable;
-+return input.isEmpty() ? Intermediate : Acceptable;
- }
- };
- 

Deleted: kde_bug325801.diff
===
--- kde_bug325801.diff  2016-10-23 17:46:38 UTC (rev 193109)
+++ kde_bug325801.diff  2016-10-23 18:05:11 UTC (rev 193110)
@@ -1,157 +0,0 @@
-commit aca6a97fc31a80b5a35ec1afbee8f45a728b8a19
-Author: Alexander Balakhnin 
-Date:   Sun Oct 27 19:48:38 2013 +0300
-
-Fixing krarc support for new unrar 5
-
-diff --git a/krArc/krarc.cpp b/krArc/krarc.cpp
-index fc52ad5..c60a1f5 100644
 a/krArc/krarc.cpp
-+++ b/krArc/krarc.cpp
-@@ -918,7 +918,7 @@ bool kio_krarcProtocol::initDirDict(const KUrl, bool 
forced)
- }
- 
- extArcReady = false;
--
-+isUnrarVersion5 = false;
- if (!setArcFile(url))
- return false;   /* if the archive was changed refresh the file 
information */
- 
-@@ -979,6 +979,14 @@ bool kio_krarcProtocol::initDirDict(const KUrl, bool 
forced)
- if (arcType == "rar" || arcType == "arj" || arcType == "lha" || arcType 
== "7z") {
- while (temp.readLine(buf, 1000) != -1) {
- line = decodeString(buf);
-+

[arch-commits] Commit in linux-grsec/repos (24 files)

2016-10-23 Thread Daniel Micay
Date: Sunday, October 23, 2016 @ 17:46:38
  Author: thestinger
Revision: 193109

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

Added:
  linux-grsec/repos/community-i686/PKGBUILD
(from rev 193107, linux-grsec/trunk/PKGBUILD)
  linux-grsec/repos/community-i686/change-default-console-loglevel.patch
(from rev 193107, linux-grsec/trunk/change-default-console-loglevel.patch)
  linux-grsec/repos/community-i686/config
(from rev 193107, linux-grsec/trunk/config)
  linux-grsec/repos/community-i686/config.x86_64
(from rev 193107, linux-grsec/trunk/config.x86_64)
  linux-grsec/repos/community-i686/linux-grsec.install
(from rev 193108, linux-grsec/trunk/linux-grsec.install)
  linux-grsec/repos/community-i686/linux.preset
(from rev 193108, linux-grsec/trunk/linux.preset)
  linux-grsec/repos/community-x86_64/PKGBUILD
(from rev 193108, linux-grsec/trunk/PKGBUILD)
  linux-grsec/repos/community-x86_64/change-default-console-loglevel.patch
(from rev 193108, linux-grsec/trunk/change-default-console-loglevel.patch)
  linux-grsec/repos/community-x86_64/config
(from rev 193108, linux-grsec/trunk/config)
  linux-grsec/repos/community-x86_64/config.x86_64
(from rev 193108, linux-grsec/trunk/config.x86_64)
  linux-grsec/repos/community-x86_64/linux-grsec.install
(from rev 193108, linux-grsec/trunk/linux-grsec.install)
  linux-grsec/repos/community-x86_64/linux.preset
(from rev 193108, linux-grsec/trunk/linux.preset)
Deleted:
  linux-grsec/repos/community-i686/PKGBUILD
  linux-grsec/repos/community-i686/change-default-console-loglevel.patch
  linux-grsec/repos/community-i686/config
  linux-grsec/repos/community-i686/config.x86_64
  linux-grsec/repos/community-i686/linux-grsec.install
  linux-grsec/repos/community-i686/linux.preset
  linux-grsec/repos/community-x86_64/PKGBUILD
  linux-grsec/repos/community-x86_64/change-default-console-loglevel.patch
  linux-grsec/repos/community-x86_64/config
  linux-grsec/repos/community-x86_64/config.x86_64
  linux-grsec/repos/community-x86_64/linux-grsec.install
  linux-grsec/repos/community-x86_64/linux.preset

+
 /PKGBUILD  |  638 
 /change-default-console-loglevel.patch |   22 
 /config|16468 +++
 /config.x86_64 |15884 ++
 /linux-grsec.install   |   74 
 /linux.preset  |   28 
 community-i686/PKGBUILD|  319 
 community-i686/change-default-console-loglevel.patch   |   11 
 community-i686/config  | 8234 ---
 community-i686/config.x86_64   | 7942 ---
 community-i686/linux-grsec.install |   37 
 community-i686/linux.preset|   14 
 community-x86_64/PKGBUILD  |  319 
 community-x86_64/change-default-console-loglevel.patch |   11 
 community-x86_64/config| 8234 ---
 community-x86_64/config.x86_64 | 7942 ---
 community-x86_64/linux-grsec.install   |   37 
 community-x86_64/linux.preset  |   14 
 18 files changed, 33114 insertions(+), 33114 deletions(-)

The diff is longer than the limit of 200KB.
Use svn diff -r 193108:193109 to see the changes.


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

2016-10-23 Thread Maxime Gauduin
Date: Sunday, October 23, 2016 @ 17:46:01
  Author: alucryd
Revision: 193108

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

Added:
  vbam/repos/community-i686/PKGBUILD
(from rev 193107, vbam/trunk/PKGBUILD)
  vbam/repos/community-i686/vbam-fixes.patch
(from rev 193107, vbam/trunk/vbam-fixes.patch)
  vbam/repos/community-x86_64/PKGBUILD
(from rev 193107, vbam/trunk/PKGBUILD)
  vbam/repos/community-x86_64/vbam-fixes.patch
(from rev 193107, vbam/trunk/vbam-fixes.patch)
Deleted:
  vbam/repos/community-i686/PKGBUILD
  vbam/repos/community-i686/cxx11-fixes.patch
  vbam/repos/community-i686/vbam-gtk.install
  vbam/repos/community-i686/vbam-wx.install
  vbam/repos/community-x86_64/PKGBUILD
  vbam/repos/community-x86_64/cxx11-fixes.patch
  vbam/repos/community-x86_64/vbam-gtk.install
  vbam/repos/community-x86_64/vbam-wx.install

+
 /PKGBUILD  |  186 +++
 community-i686/PKGBUILD|   93 -
 community-i686/cxx11-fixes.patch   |   53 -
 community-i686/vbam-fixes.patch|   56 ++
 community-i686/vbam-gtk.install|   14 --
 community-i686/vbam-wx.install |   13 --
 community-x86_64/PKGBUILD  |   93 -
 community-x86_64/cxx11-fixes.patch |   53 -
 community-x86_64/vbam-fixes.patch  |   56 ++
 community-x86_64/vbam-gtk.install  |   14 --
 community-x86_64/vbam-wx.install   |   13 --
 11 files changed, 298 insertions(+), 346 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-10-23 17:45:39 UTC (rev 193107)
+++ community-i686/PKGBUILD 2016-10-23 17:46:01 UTC (rev 193108)
@@ -1,93 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin 
-# Contributor: Bartłomiej Piotrowski 
-
-pkgbase=vbam
-pkgname=('vbam-sdl' 'vbam-gtk' 'vbam-wx')
-pkgver=2.0.0b2
-pkgrel=1
-pkgdesc='Nintendo GameBoy Advance emulator'
-arch=('i686' 'x86_64')
-url='http://vba-m.com'
-license=('GPL2')
-depends=('sdl' 'sfml' 'zip')
-makedepends=('cmake' 'desktop-file-utils' 'freetype2' 'git' 'glew' 'gtkglextmm'
- 'imagemagick' 'libjpeg' 'libpng' 'libsndfile' 'libxrandr'
- 'openal' 'subversion' 'wxgtk')
-makedepends_i686=('nasm')
-options=('!emptydirs')
-source=('vbam::git+https://github.com/visualboyadvance-m/visualboyadvance-m.git#tag=VBA-M_Beta_2'
-'cxx11-fixes.patch')
-sha256sums=('SKIP'
-'610d770bfcea8da990cddc33c6360b572bc20683b216ab1e6f23424e9d494417')
-
-prepare() {
-  cd vbam
-
-  patch -Np1 -i ../cxx11-fixes.patch
-
-  if [[ -d build ]]; then
-rm -rf build
-  fi
-  mkdir build
-}
-
-build() {
-  cd vbam/build
-
-  _cmakeargs="-DCMAKE_BUILD_TYPE='Release' \
-  -DCMAKE_INSTALL_PREFIX='/usr' \
-  -DCMAKE_SKIP_RPATH='TRUE' \
-  -DENABLE_GTK='TRUE' \
-  -DENABLE_WX='TRUE' \
-  -DENABLE_FFMPEG='FALSE' \
-  -DENABLE_LINK='TRUE'"
-
-  if [[ $CARCH == i686 ]]; then
-_cmakeargs="${_cmakeargs} \
--DENABLE_ASM_CORE='TRUE' \
--DENABLE_ASM_SCALERS='TRUE'"
-  fi
-
-  CXXFLAGS+=' -std=c++11 -fpermissive'
-
-  cmake .. ${_cmakeargs}
-  make
-}
-
-package_vbam-sdl() {
-replaces=('vbam-cli')
-backup=('etc/vbam.cfg')
-
-  cd vbam/build
-
-  make DESTDIR="${pkgdir}" install
-  rm -rf 
"${pkgdir}"/usr/{bin/{g,wx}vbam,share/{applications,icons,locale,man/man1/{g,wx}vbam.1,vbam}}
-}
-
-package_vbam-gtk() {
-depends+=('desktop-file-utils' 'gtkglextmm')
-conflicts=('vbam-wx')
-install='vbam-gtk.install'
-
-  cd vbam/build
-
-  make DESTDIR="${pkgdir}" install
-  rm -rf "${pkgdir}"/{etc,usr/{bin/vbam,share/man/man1/vbam.1}}
-  find "${pkgdir}" -type f -regex .*wxvbam.* -exec rm {} +
-}
-
-package_vbam-wx() {
-depends+=('desktop-file-utils' 'wxgtk')
-conflicts=('vbam-gtk')
-install='vbam-wx.install'
-
-  cd vbam/build
-
-  make DESTDIR="${pkgdir}" install
-  install -m 755 visualboyadvance-m "${pkgdir}"/usr/bin/
-  rm -rf "${pkgdir}"/{etc,usr/{bin/vbam,share/man/man1/vbam.1}}
-  find "${pkgdir}" -type f -regex .*gvbam.* -exec rm {} +
-}
-
-# vim: ts=2 sw=2 et:

Copied: vbam/repos/community-i686/PKGBUILD (from rev 193107, 
vbam/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-10-23 17:46:01 UTC (rev 193108)
@@ -0,0 +1,93 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: Bartłomiej Piotrowski 
+
+pkgbase=vbam
+pkgname=('vbam-sdl' 'vbam-gtk' 'vbam-wx')
+pkgver=2.0.0b2
+pkgrel=2
+pkgdesc='Nintendo GameBoy Advance emulator'
+arch=('i686' 'x86_64')
+url='http://vba-m.com'
+license=('GPL2')
+depends=('sdl2' 'sfml' 'zip')
+makedepends=('cmake' 'desktop-file-utils' 'freetype2' 'git' 'glew' 

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

2016-10-23 Thread Daniel Micay
Date: Sunday, October 23, 2016 @ 17:45:39
  Author: thestinger
Revision: 193107

upgpkg: linux-grsec 1:4.7.10.r201610222037-1

Modified:
  linux-grsec/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-23 17:45:08 UTC (rev 193106)
+++ PKGBUILD2016-10-23 17:45:39 UTC (rev 193107)
@@ -7,9 +7,9 @@
 
 pkgbase=linux-grsec
 _srcname=linux-4.7
-_pkgver=4.7.8
+_pkgver=4.7.10
 _grsecver=3.1
-_timestamp=201610161720
+_timestamp=201610222037
 _grsec_patch="grsecurity-$_grsecver-$_pkgver-$_timestamp.patch"
 epoch=1
 pkgver=$_pkgver.r$_timestamp
@@ -33,9 +33,9 @@
 
 sha256sums=('5190c3d1209aeda04168145bf50569dc0984f80467159b1dc50ad731e3285f10'
 'SKIP'
-'d2cf10bbf9ae8746f7e57f9a34beef6031944541e6cc8ac07f0948dbbcb09fa4'
+'0ccdd4ccb962d542108a23e83498f07ec981bb629c77e2355ca25297cea47b93'
 'SKIP'
-'408e7e9a51bfb776cd54dc6fd6de82105925827b485b1a4a452f5857a49111c6'
+'ccab6c42cf7da0bb31feb1ac1b7c434679a1ff3f42a743563de9fe27f543f793'
 'SKIP'
 '5372b5f699dbe4271296e1bc317d19b0e49e59a64999d8999e86d224f0dbf2f3'
 'b22293e1aefe85707bf5d3da020479fe29618e4af3ac4796e3b4eb71c382e842'


[arch-commits] Commit in vbam/trunk (5 files)

2016-10-23 Thread Maxime Gauduin
Date: Sunday, October 23, 2016 @ 17:45:08
  Author: alucryd
Revision: 193106

upgpkg: vbam 2.0.0b2-2

Added:
  vbam/trunk/vbam-fixes.patch
Modified:
  vbam/trunk/PKGBUILD
Deleted:
  vbam/trunk/cxx11-fixes.patch
  vbam/trunk/vbam-gtk.install
  vbam/trunk/vbam-wx.install

---+
 PKGBUILD  |   26 
 cxx11-fixes.patch |   53 -
 vbam-fixes.patch  |   56 
 vbam-gtk.install  |   14 -
 vbam-wx.install   |   13 
 5 files changed, 69 insertions(+), 93 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-10-23 17:27:09 UTC (rev 193105)
+++ PKGBUILD2016-10-23 17:45:08 UTC (rev 193106)
@@ -5,31 +5,32 @@
 pkgbase=vbam
 pkgname=('vbam-sdl' 'vbam-gtk' 'vbam-wx')
 pkgver=2.0.0b2
-pkgrel=1
+pkgrel=2
 pkgdesc='Nintendo GameBoy Advance emulator'
 arch=('i686' 'x86_64')
 url='http://vba-m.com'
 license=('GPL2')
-depends=('sdl' 'sfml' 'zip')
+depends=('sdl2' 'sfml' 'zip')
 makedepends=('cmake' 'desktop-file-utils' 'freetype2' 'git' 'glew' 'gtkglextmm'
  'imagemagick' 'libjpeg' 'libpng' 'libsndfile' 'libxrandr'
  'openal' 'subversion' 'wxgtk')
 makedepends_i686=('nasm')
 options=('!emptydirs')
-source=('vbam::git+https://github.com/visualboyadvance-m/visualboyadvance-m.git#tag=VBA-M_Beta_2'
-'cxx11-fixes.patch')
+_commit='1eb768578bc0c4fa17396f573a4b37a652f12acd'
+source=("vbam::git+https://github.com/visualboyadvance-m/visualboyadvance-m.git#commit=${_commit};
+'vbam-fixes.patch')
 sha256sums=('SKIP'
-'610d770bfcea8da990cddc33c6360b572bc20683b216ab1e6f23424e9d494417')
+'be860c010e1185c1fa3938f57fd824b9e8e8430a00f851ff21a033de7bce5cf8')
 
 prepare() {
   cd vbam
 
-  patch -Np1 -i ../cxx11-fixes.patch
-
   if [[ -d build ]]; then
 rm -rf build
   fi
   mkdir build
+
+  patch -Np1 -i ../vbam-fixes.patch
 }
 
 build() {
@@ -62,31 +63,30 @@
   cd vbam/build
 
   make DESTDIR="${pkgdir}" install
+  mv "${pkgdir}"/{usr/etc,}
   rm -rf 
"${pkgdir}"/usr/{bin/{g,wx}vbam,share/{applications,icons,locale,man/man1/{g,wx}vbam.1,vbam}}
 }
 
 package_vbam-gtk() {
-depends+=('desktop-file-utils' 'gtkglextmm')
+depends+=('gtkglextmm')
 conflicts=('vbam-wx')
-install='vbam-gtk.install'
 
   cd vbam/build
 
   make DESTDIR="${pkgdir}" install
-  rm -rf "${pkgdir}"/{etc,usr/{bin/vbam,share/man/man1/vbam.1}}
+  rm -rf "${pkgdir}"/{etc,usr/{bin/vbam,etc,share/man/man1/vbam.1}}
   find "${pkgdir}" -type f -regex .*wxvbam.* -exec rm {} +
 }
 
 package_vbam-wx() {
-depends+=('desktop-file-utils' 'wxgtk')
+depends+=('wxgtk')
 conflicts=('vbam-gtk')
-install='vbam-wx.install'
 
   cd vbam/build
 
   make DESTDIR="${pkgdir}" install
   install -m 755 visualboyadvance-m "${pkgdir}"/usr/bin/
-  rm -rf "${pkgdir}"/{etc,usr/{bin/vbam,share/man/man1/vbam.1}}
+  rm -rf "${pkgdir}"/{etc,usr/{bin/vbam,etc,share/man/man1/vbam.1}}
   find "${pkgdir}" -type f -regex .*gvbam.* -exec rm {} +
 }
 

Deleted: cxx11-fixes.patch
===
--- cxx11-fixes.patch   2016-10-23 17:27:09 UTC (rev 193105)
+++ cxx11-fixes.patch   2016-10-23 17:45:08 UTC (rev 193106)
@@ -1,53 +0,0 @@
-diff -uprb vbam.orig/src/gba/GBA-arm.cpp vbam/src/gba/GBA-arm.cpp
 vbam.orig/src/gba/GBA-arm.cpp  2015-12-07 23:23:30.613871906 +0200
-+++ vbam/src/gba/GBA-arm.cpp   2015-12-07 23:25:49.425706904 +0200
-@@ -298,18 +298,18 @@ static void count(u32 opcode, int cond_r
- #ifdef __GNUC__
-  #define ALU_HEADER   asm("mov %%ecx, %%edi; "
-  #define ALU_TRAILER  : "=D" (opcode) : "c" (opcode) : "eax", "ebx", 
"edx", "esi")
-- #define EMIT0(op)#op"; "
-- #define EMIT1(op,arg)#op" "arg"; "
-- #define EMIT2(op,src,dest)   #op" "src", "dest"; "
-- #define KONST(val)   "$"#val
-+ #define EMIT0(op)#op "; "
-+ #define EMIT1(op,arg)#op " " arg "; "
-+ #define EMIT2(op,src,dest)   #op " " src ", " dest "; "
-+ #define KONST(val)   "$" #val
-  #define ASMVAR(cvar) ASMVAR2 (__USER_LABEL_PREFIX__, cvar)
-  #define ASMVAR2(prefix,cvar) STRING (prefix) cvar
-  #define STRING(x)#x
-  #define VAR(var) ASMVAR(#var)
-  #define VARL(var)ASMVAR(#var)
-- #define REGREF1(index)   ASMVAR("reg("index")")
-- #define REGREF2(index,scale) ASMVAR("reg(,"index","#scale")")
-- #define LABEL(n) #n": "
-+ #define REGREF1(index)   ASMVAR("reg(" index ")")
-+ #define REGREF2(index,scale) ASMVAR("reg(," index "," #scale ")")
-+ #define LABEL(n) #n ": "
-  #define LABELREF(n,dir)  #n#dir
-  #define al "%%al"
-  #define ah "%%ah"
-diff -uprb vbam.orig/src/gba/GBA-thumb.cpp vbam/src/gba/GBA-thumb.cpp
 vbam.orig/src/gba/GBA-thumb.cpp2015-12-07 23:23:30.613871906 +0200
-+++ vbam/src/gba/GBA-thumb.cpp 2015-12-07 

[arch-commits] Commit in perl-sort-key/repos (4 files)

2016-10-23 Thread Rémy Oudompheng
Date: Sunday, October 23, 2016 @ 17:39:43
  Author: remy
Revision: 279184

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

Added:
  perl-sort-key/repos/extra-i686/
  perl-sort-key/repos/extra-i686/PKGBUILD
(from rev 279183, perl-sort-key/trunk/PKGBUILD)
  perl-sort-key/repos/extra-x86_64/
  perl-sort-key/repos/extra-x86_64/PKGBUILD
(from rev 279183, perl-sort-key/trunk/PKGBUILD)

---+
 extra-i686/PKGBUILD   |   40 
 extra-x86_64/PKGBUILD |   40 
 2 files changed, 80 insertions(+)

Copied: perl-sort-key/repos/extra-i686/PKGBUILD (from rev 279183, 
perl-sort-key/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-10-23 17:39:43 UTC (rev 279184)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Rémy Oudompheng 
+# Contributor: Piotr Rogoza 
+# Contributor: Alessandro Sagratini 
+
+pkgname=perl-sort-key
+pkgver=1.33
+pkgrel=1
+_author="S/SA/SALVA"
+_perlmod="Sort-Key"
+pkgdesc="Sort::Key - the fastest way to sort anything in Perl"
+arch=("i686" "x86_64")
+url=http://search.cpan.org/dist/sort-sort/
+license=('GPL' 'PerlArtistic')
+depends=(perl)
+options=(!emptydirs)
+source=("http://search.cpan.org/CPAN/authors/id/$_author/$_perlmod-$pkgver.tar.gz;)
+sha256sums=('ed6a4ccfab094c9cd164f564024e98bd21d94f4312ccac4d6246d22b34081acf')
+
+build() {
+cd "${srcdir}/${_perlmod}-${pkgver}"
+
+# install module in vendor directories.
+PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+make
+}
+
+check() {
+cd "${srcdir}/${_perlmod}-${pkgver}"
+unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT
+export PERL_MM_USE_DEFAULT=1
+make test
+}
+
+package() {
+cd "${srcdir}/${_perlmod}-${pkgver}"
+unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT
+make install INSTALLDIRS=vendor DESTDIR="$pkgdir"
+}
+

Copied: perl-sort-key/repos/extra-x86_64/PKGBUILD (from rev 279183, 
perl-sort-key/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-10-23 17:39:43 UTC (rev 279184)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Rémy Oudompheng 
+# Contributor: Piotr Rogoza 
+# Contributor: Alessandro Sagratini 
+
+pkgname=perl-sort-key
+pkgver=1.33
+pkgrel=1
+_author="S/SA/SALVA"
+_perlmod="Sort-Key"
+pkgdesc="Sort::Key - the fastest way to sort anything in Perl"
+arch=("i686" "x86_64")
+url=http://search.cpan.org/dist/sort-sort/
+license=('GPL' 'PerlArtistic')
+depends=(perl)
+options=(!emptydirs)
+source=("http://search.cpan.org/CPAN/authors/id/$_author/$_perlmod-$pkgver.tar.gz;)
+sha256sums=('ed6a4ccfab094c9cd164f564024e98bd21d94f4312ccac4d6246d22b34081acf')
+
+build() {
+cd "${srcdir}/${_perlmod}-${pkgver}"
+
+# install module in vendor directories.
+PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+make
+}
+
+check() {
+cd "${srcdir}/${_perlmod}-${pkgver}"
+unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT
+export PERL_MM_USE_DEFAULT=1
+make test
+}
+
+package() {
+cd "${srcdir}/${_perlmod}-${pkgver}"
+unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT
+make install INSTALLDIRS=vendor DESTDIR="$pkgdir"
+}
+


[arch-commits] Commit in gitlab-ci-multi-runner/repos (24 files)

2016-10-23 Thread Sven-Hendrik Haase
Date: Sunday, October 23, 2016 @ 17:27:09
  Author: svenstaro
Revision: 193105

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

Added:
  gitlab-ci-multi-runner/repos/community-i686/PKGBUILD
(from rev 193104, gitlab-ci-multi-runner/trunk/PKGBUILD)
  gitlab-ci-multi-runner/repos/community-i686/config.toml
(from rev 193104, gitlab-ci-multi-runner/trunk/config.toml)
  gitlab-ci-multi-runner/repos/community-i686/gitlab-runner.install
(from rev 193104, gitlab-ci-multi-runner/trunk/gitlab-runner.install)
  gitlab-ci-multi-runner/repos/community-i686/gitlab-runner.service
(from rev 193104, gitlab-ci-multi-runner/trunk/gitlab-runner.service)
  gitlab-ci-multi-runner/repos/community-i686/gitlab-runner.sysusers
(from rev 193104, gitlab-ci-multi-runner/trunk/gitlab-runner.sysusers)
  gitlab-ci-multi-runner/repos/community-i686/gitlab-runner.tmpfiles
(from rev 193104, gitlab-ci-multi-runner/trunk/gitlab-runner.tmpfiles)
  gitlab-ci-multi-runner/repos/community-x86_64/PKGBUILD
(from rev 193104, gitlab-ci-multi-runner/trunk/PKGBUILD)
  gitlab-ci-multi-runner/repos/community-x86_64/config.toml
(from rev 193104, gitlab-ci-multi-runner/trunk/config.toml)
  gitlab-ci-multi-runner/repos/community-x86_64/gitlab-runner.install
(from rev 193104, gitlab-ci-multi-runner/trunk/gitlab-runner.install)
  gitlab-ci-multi-runner/repos/community-x86_64/gitlab-runner.service
(from rev 193104, gitlab-ci-multi-runner/trunk/gitlab-runner.service)
  gitlab-ci-multi-runner/repos/community-x86_64/gitlab-runner.sysusers
(from rev 193104, gitlab-ci-multi-runner/trunk/gitlab-runner.sysusers)
  gitlab-ci-multi-runner/repos/community-x86_64/gitlab-runner.tmpfiles
(from rev 193104, gitlab-ci-multi-runner/trunk/gitlab-runner.tmpfiles)
Deleted:
  gitlab-ci-multi-runner/repos/community-i686/PKGBUILD
  gitlab-ci-multi-runner/repos/community-i686/config.toml
  gitlab-ci-multi-runner/repos/community-i686/gitlab-runner.install
  gitlab-ci-multi-runner/repos/community-i686/gitlab-runner.service
  gitlab-ci-multi-runner/repos/community-i686/gitlab-runner.sysusers
  gitlab-ci-multi-runner/repos/community-i686/gitlab-runner.tmpfiles
  gitlab-ci-multi-runner/repos/community-x86_64/PKGBUILD
  gitlab-ci-multi-runner/repos/community-x86_64/config.toml
  gitlab-ci-multi-runner/repos/community-x86_64/gitlab-runner.install
  gitlab-ci-multi-runner/repos/community-x86_64/gitlab-runner.service
  gitlab-ci-multi-runner/repos/community-x86_64/gitlab-runner.sysusers
  gitlab-ci-multi-runner/repos/community-x86_64/gitlab-runner.tmpfiles

-+
 /PKGBUILD   |  144 ++
 /config.toml|2 
 /gitlab-runner.install  |   16 +++
 /gitlab-runner.service  |   34 +++
 /gitlab-runner.sysusers |2 
 /gitlab-runner.tmpfiles |2 
 community-i686/PKGBUILD |   76 ---
 community-i686/config.toml  |1 
 community-i686/gitlab-runner.install|8 -
 community-i686/gitlab-runner.service|   17 ---
 community-i686/gitlab-runner.sysusers   |1 
 community-i686/gitlab-runner.tmpfiles   |1 
 community-x86_64/PKGBUILD   |   76 ---
 community-x86_64/config.toml|1 
 community-x86_64/gitlab-runner.install  |8 -
 community-x86_64/gitlab-runner.service  |   17 ---
 community-x86_64/gitlab-runner.sysusers |1 
 community-x86_64/gitlab-runner.tmpfiles |1 
 18 files changed, 200 insertions(+), 208 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-10-23 17:26:48 UTC (rev 193104)
+++ community-i686/PKGBUILD 2016-10-23 17:27:09 UTC (rev 193105)
@@ -1,76 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Lubomir 'Kuci' Kucera 
-
-pkgname=gitlab-ci-multi-runner
-pkgver=1.7.0
-pkgrel=1
-pkgdesc="The official GitLab CI runner written in Go"
-arch=('i686' 'x86_64')
-url='https://gitlab.com/gitlab-org/gitlab-ci-multi-runner'
-license=('GPL3')
-depends=('ca-certificates' 'curl' 'git' 'glibc' 'tar')
-makedepends=('git' 'go' 'godep' 'go-bindata' 'mercurial')
-install='gitlab-runner.install'
-backup=('etc/gitlab-runner/config.toml')
-noextract=('prebuilt-x86_64.tar.xz'
-   'prebuilt-arm.tar.xz')
-source=("${pkgname}-${pkgver}.tar.gz"::"https://gitlab.com/gitlab-org/gitlab-ci-multi-runner/repository/archive.tar.gz?ref=v${pkgver};
-
"https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/master/docker/prebuilt-x86_64.tar.xz;
-
"https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/master/docker/prebuilt-arm.tar.xz;
-"gitlab-runner.install"
-"gitlab-runner.service"
-"gitlab-runner.sysusers"
-"gitlab-runner.tmpfiles"
-"config.toml")

[arch-commits] Commit in gitlab-ci-multi-runner/trunk (PKGBUILD)

2016-10-23 Thread Sven-Hendrik Haase
Date: Sunday, October 23, 2016 @ 17:26:48
  Author: svenstaro
Revision: 193104

upgpkg: gitlab-ci-multi-runner 1.7.0-2

build from git to fix version issue

Modified:
  gitlab-ci-multi-runner/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-23 17:06:02 UTC (rev 193103)
+++ PKGBUILD2016-10-23 17:26:48 UTC (rev 193104)
@@ -3,18 +3,21 @@
 
 pkgname=gitlab-ci-multi-runner
 pkgver=1.7.0
-pkgrel=1
+pkgrel=2
 pkgdesc="The official GitLab CI runner written in Go"
 arch=('i686' 'x86_64')
 url='https://gitlab.com/gitlab-org/gitlab-ci-multi-runner'
 license=('GPL3')
 depends=('ca-certificates' 'curl' 'git' 'glibc' 'tar')
-makedepends=('git' 'go' 'godep' 'go-bindata' 'mercurial')
+makedepends=('git' 'go' 'git' 'go-bindata' 'mercurial')
 install='gitlab-runner.install'
 backup=('etc/gitlab-runner/config.toml')
 noextract=('prebuilt-x86_64.tar.xz'
'prebuilt-arm.tar.xz')
-source=("${pkgname}-${pkgver}.tar.gz"::"https://gitlab.com/gitlab-org/gitlab-ci-multi-runner/repository/archive.tar.gz?ref=v${pkgver};
+
+# Note: This should be built using git because the runner gets its version 
information from there and I
+# haven't found the place to patch that yet.
+source=("git+https://gitlab.com/gitlab-org/gitlab-ci-multi-runner.git#tag=v${pkgver};
 
"https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/master/docker/prebuilt-x86_64.tar.xz;
 
"https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/master/docker/prebuilt-arm.tar.xz;
 "gitlab-runner.install"
@@ -22,7 +25,7 @@
 "gitlab-runner.sysusers"
 "gitlab-runner.tmpfiles"
 "config.toml")
-sha256sums=('ffcc18bfc54d4e2846bbfb21e72798c90ca5af214ac606ea07fbbeec24bb155f'
+sha256sums=('SKIP'
 '2c0d97469a124956d7f71601848dadd0df644e2bd8e8555d0deb4e7f47c7be52'
 'fc5ad1eb24104e453ff4412fbf4bd304e0d04ffeb7ce3f4d0440e6328ddf474f'
 'd8b75e676727989115ab11d6a74281de61daed64a72dcc21d98814e845cdcf91'
@@ -32,12 +35,8 @@
 'b1f7d9a6a0148884528584909729cce817253759650da61d641e2225845f9330')
 
 prepare() {
-_srcdir=$(ls "${srcdir}" | grep -E "${pkgname}-v${pkgver}-[0-9a-f]{40}")
-
 mkdir -p "${srcdir}/src/gitlab.com/gitlab-org/"
-
-ln -sf "${srcdir}/${_srcdir}" 
"${srcdir}/src/gitlab.com/gitlab-org/${pkgname}"
-
+ln -sf "${srcdir}/gitlab-ci-multi-runner" 
"${srcdir}/src/gitlab.com/gitlab-org/${pkgname}"
 cd "${srcdir}/src/gitlab.com/gitlab-org/${pkgname}"
 
 export GOPATH="${srcdir}"
@@ -48,8 +47,6 @@
 }
 
 build() {
-_rev=$(ls "${srcdir}" | grep -Po "${pkgname}-v${pkgver}-\K([0-9a-f]{7})")
-
 cd "${srcdir}/src/gitlab.com/gitlab-org/${pkgname}"
 
 GOPATH="${srcdir}" go-bindata \
@@ -61,8 +58,7 @@
 prebuilt-x86_64.tar.xz \
 prebuilt-arm.tar.xz
 
-GOPATH="${srcdir}" go build \
--ldflags "-X main.NAME=${pkgname} -X main.VERSION=${pkgver} -X 
main.REVISION=${_rev}"
+GOPATH="${srcdir}" go build
 }
 
 package() {


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

2016-10-23 Thread Felix Yan
Date: Sunday, October 23, 2016 @ 17:02:59
  Author: felixonmars
Revision: 193101

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

Added:
  haskell-hakyll/repos/community-staging-i686/
  haskell-hakyll/repos/community-staging-i686/PKGBUILD
(from rev 193100, haskell-hakyll/trunk/PKGBUILD)
  haskell-hakyll/repos/community-staging-i686/http-conduit-2.2.patch
(from rev 193100, haskell-hakyll/trunk/http-conduit-2.2.patch)
  haskell-hakyll/repos/community-staging-i686/optparse-applicative-0.13.patch
(from rev 193100, haskell-hakyll/trunk/optparse-applicative-0.13.patch)
  haskell-hakyll/repos/community-staging-x86_64/
  haskell-hakyll/repos/community-staging-x86_64/PKGBUILD
(from rev 193100, haskell-hakyll/trunk/PKGBUILD)
  haskell-hakyll/repos/community-staging-x86_64/http-conduit-2.2.patch
(from rev 193100, haskell-hakyll/trunk/http-conduit-2.2.patch)
  haskell-hakyll/repos/community-staging-x86_64/optparse-applicative-0.13.patch
(from rev 193100, haskell-hakyll/trunk/optparse-applicative-0.13.patch)

--+
 community-staging-i686/PKGBUILD  |   58 +
 community-staging-i686/http-conduit-2.2.patch|   39 
 community-staging-i686/optparse-applicative-0.13.patch   |   37 
 community-staging-x86_64/PKGBUILD|   58 +
 community-staging-x86_64/http-conduit-2.2.patch  |   39 
 community-staging-x86_64/optparse-applicative-0.13.patch |   37 
 6 files changed, 268 insertions(+)

Copied: haskell-hakyll/repos/community-staging-i686/PKGBUILD (from rev 193100, 
haskell-hakyll/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-10-23 17:02:59 UTC (rev 193101)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hakyll
+pkgname=haskell-hakyll
+pkgver=4.9.0.0
+pkgrel=3
+pkgdesc="A static website compiler library"
+url="http://jaspervdj.be/hakyll;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-blaze-html" "haskell-blaze-markup" 
"haskell-cryptohash"
+ "haskell-data-default" "haskell-fsnotify" "haskell-http-conduit" 
"haskell-http-types"
+ "haskell-lrucache" "haskell-mtl" "haskell-network" 
"haskell-network-uri"
+ "haskell-optparse-applicative" "haskell-pandoc" 
"haskell-pandoc-citeproc" "haskell-parsec"
+ "haskell-random" "haskell-regex-base" "haskell-regex-tdfa" 
"haskell-resourcet"
+ "haskell-scientific" "haskell-system-filepath" "haskell-tagsoup" 
"haskell-text"
+ "haskell-time-locale-compat" "haskell-unordered-containers" 
"haskell-vector" "haskell-wai"
+ "haskell-wai-app-static" "haskell-warp" "haskell-yaml")
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;
+http-conduit-2.2.patch optparse-applicative-0.13.patch)
+sha256sums=('6c21697efaf30166a1afc508f1122e2b828ade9d8d4d53408b13c1216337295e'
+'f1871d8f381bacfe4ba01e7f037c635fff591d8fb353a2f26d08b1af1311142a'
+'0b38abf39d8a410e06a5875ddadfb9c22cd37b4552b224dfabd52f30e9015abb')
+
+prepare() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+patch -p1 -i ../http-conduit-2.2.patch
+patch -p1 -i ../optparse-applicative-0.13.patch
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-fcheckexternal -fwatchserver -fpreviewserver
+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"
+}

Copied: haskell-hakyll/repos/community-staging-i686/http-conduit-2.2.patch 
(from rev 193100, haskell-hakyll/trunk/http-conduit-2.2.patch)

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

2016-10-23 Thread Felix Yan
Date: Sunday, October 23, 2016 @ 17:02:25
  Author: felixonmars
Revision: 193100

upgpkg: haskell-hakyll 4.9.0.0-3

rebuild with pandoc-citeproc-0.10.1.2

Modified:
  haskell-hakyll/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-23 16:57:49 UTC (rev 193099)
+++ PKGBUILD2016-10-23 17:02:25 UTC (rev 193100)
@@ -5,7 +5,7 @@
 _hkgname=hakyll
 pkgname=haskell-hakyll
 pkgver=4.9.0.0
-pkgrel=2
+pkgrel=3
 pkgdesc="A static website compiler library"
 url="http://jaspervdj.be/hakyll;
 license=("custom:BSD3")


[arch-commits] Commit in (4 files)

2016-10-23 Thread Rémy Oudompheng
Date: Sunday, October 23, 2016 @ 17:01:22
  Author: remy
Revision: 279183

New package perl-sort-key

Imported from AUR and adapted for uniform packaging.
Added as a dependency of biber 2.6

Added:
  perl-sort-key/
  perl-sort-key/repos/
  perl-sort-key/trunk/
  perl-sort-key/trunk/PKGBUILD

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

Added: perl-sort-key/trunk/PKGBUILD
===
--- perl-sort-key/trunk/PKGBUILD(rev 0)
+++ perl-sort-key/trunk/PKGBUILD2016-10-23 17:01:22 UTC (rev 279183)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Rémy Oudompheng 
+# Contributor: Piotr Rogoza 
+# Contributor: Alessandro Sagratini 
+
+pkgname=perl-sort-key
+pkgver=1.33
+pkgrel=1
+_author="S/SA/SALVA"
+_perlmod="Sort-Key"
+pkgdesc="Sort::Key - the fastest way to sort anything in Perl"
+arch=("i686" "x86_64")
+url=http://search.cpan.org/dist/sort-sort/
+license=('GPL' 'PerlArtistic')
+depends=(perl)
+options=(!emptydirs)
+source=("http://search.cpan.org/CPAN/authors/id/$_author/$_perlmod-$pkgver.tar.gz;)
+sha256sums=('ed6a4ccfab094c9cd164f564024e98bd21d94f4312ccac4d6246d22b34081acf')
+
+build() {
+cd "${srcdir}/${_perlmod}-${pkgver}"
+
+# install module in vendor directories.
+PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+make
+}
+
+check() {
+cd "${srcdir}/${_perlmod}-${pkgver}"
+unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT
+export PERL_MM_USE_DEFAULT=1
+make test
+}
+
+package() {
+cd "${srcdir}/${_perlmod}-${pkgver}"
+unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT
+make install INSTALLDIRS=vendor DESTDIR="$pkgdir"
+}
+


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


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

2016-10-23 Thread Felix Yan
Date: Sunday, October 23, 2016 @ 16:48:30
  Author: felixonmars
Revision: 193088

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

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

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

Copied: pandoc-citeproc/repos/community-staging-i686/PKGBUILD (from rev 193087, 
pandoc-citeproc/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-10-23 16:48:30 UTC (rev 193088)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgbase=pandoc-citeproc
+pkgname=(pandoc-citeproc haskell-pandoc-citeproc)
+pkgver=0.10.1.2
+pkgrel=1
+pkgdesc="Supports using pandoc with citeproc"
+url="http://hackage.haskell.org/package/${pkgbase};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+makedepends=("ghc=8.0.1" "haskell-aeson" "haskell-aeson-pretty" 
"haskell-attoparsec"
+ "haskell-data-default" "haskell-hs-bibutils" "haskell-mtl"
+ "haskell-old-locale" "haskell-pandoc" "haskell-pandoc-types" 
"haskell-parsec"
+ "haskell-rfc5051" "haskell-setenv" "haskell-split" "haskell-syb"
+ "haskell-tagsoup" "haskell-temporary" "haskell-text" 
"haskell-text-icu"
+ "haskell-unordered-containers" "haskell-vector" 
"haskell-xml-conduit" "haskell-yaml")
+source=("http://hackage.haskell.org/packages/archive/${pkgbase}/${pkgver}/${pkgbase}-${pkgver}.tar.gz;)
+sha256sums=('be7b3776a338c4fc46565978bc8c89783e90c3853fe5bc447ddc9bf053bf5f39')
+
+build() {
+cd "${srcdir}/${pkgbase}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgbase}" 
--datasubdir="$pkgbase" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-debug -f-test_citeproc -funicode_collation -f-embed_data_files 
-fbibutils
+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_pandoc-citeproc() {
+depends=('pandoc' 'icu')
+
+cd "${srcdir}/${pkgbase}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -r "$pkgdir"/usr/{lib,share/doc}
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_haskell-pandoc-citeproc() {
+pkgdesc="Supports using pandoc with citeproc (docs and libraries)"
+depends=("${makedepends[@]}" 'pandoc-citeproc')
+
+cd "${srcdir}/${pkgbase}-${pkgver}"
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgbase}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${pkgbase}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -r "$pkgdir"/usr/share/{pandoc-citeproc,man} "$pkgdir"/usr/bin
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: pandoc-citeproc/repos/community-staging-x86_64/PKGBUILD (from rev 
193087, pandoc-citeproc/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-10-23 16:48:30 UTC (rev 193088)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgbase=pandoc-citeproc
+pkgname=(pandoc-citeproc haskell-pandoc-citeproc)
+pkgver=0.10.1.2
+pkgrel=1
+pkgdesc="Supports using pandoc with citeproc"
+url="http://hackage.haskell.org/package/${pkgbase};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+makedepends=("ghc=8.0.1" "haskell-aeson" "haskell-aeson-pretty" 
"haskell-attoparsec"
+ "haskell-data-default" "haskell-hs-bibutils" "haskell-mtl"
+ "haskell-old-locale" "haskell-pandoc" "haskell-pandoc-types" 
"haskell-parsec"
+ "haskell-rfc5051" "haskell-setenv" "haskell-split" "haskell-syb"
+ "haskell-tagsoup" "haskell-temporary" "haskell-text" 
"haskell-text-icu"
+   

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

2016-10-23 Thread Felix Yan
Date: Sunday, October 23, 2016 @ 16:48:04
  Author: felixonmars
Revision: 193087

upgpkg: pandoc-citeproc 0.10.1.2-1

rebuild with pandoc-citeproc-0.10.1.2

Modified:
  pandoc-citeproc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-23 16:43:31 UTC (rev 193086)
+++ PKGBUILD2016-10-23 16:48:04 UTC (rev 193087)
@@ -4,7 +4,7 @@
 
 pkgbase=pandoc-citeproc
 pkgname=(pandoc-citeproc haskell-pandoc-citeproc)
-pkgver=0.10.1.1
+pkgver=0.10.1.2
 pkgrel=1
 pkgdesc="Supports using pandoc with citeproc"
 url="http://hackage.haskell.org/package/${pkgbase};
@@ -17,12 +17,8 @@
  "haskell-tagsoup" "haskell-temporary" "haskell-text" 
"haskell-text-icu"
  "haskell-unordered-containers" "haskell-vector" 
"haskell-xml-conduit" "haskell-yaml")
 
source=("http://hackage.haskell.org/packages/archive/${pkgbase}/${pkgver}/${pkgbase}-${pkgver}.tar.gz;)
-sha256sums=('67ea382f068ecc5eea1ad44c515e7aaa56d3e60e6be18ed3d2ec5cfd85eb8432')
+sha256sums=('be7b3776a338c4fc46565978bc8c89783e90c3853fe5bc447ddc9bf053bf5f39')
 
-prepare() {
-sed -i 's/xml-conduit >= 1.2 && < 1.4,/xml-conduit >= 1.2 \&\& < 1.5,/' 
${pkgbase}-${pkgver}/${pkgbase}.cabal
-}
-
 build() {
 cd "${srcdir}/${pkgbase}-${pkgver}"
 


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

2016-10-23 Thread Felix Yan
Date: Sunday, October 23, 2016 @ 16:43:31
  Author: felixonmars
Revision: 193086

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 193085, stack/trunk/PKGBUILD)
  stack/repos/community-staging-i686/stack.install
(from rev 193085, stack/trunk/stack.install)
  stack/repos/community-staging-x86_64/
  stack/repos/community-staging-x86_64/PKGBUILD
(from rev 193085, stack/trunk/PKGBUILD)
  stack/repos/community-staging-x86_64/stack.install
(from rev 193085, stack/trunk/stack.install)

+
 community-staging-i686/PKGBUILD|   80 +++
 community-staging-i686/stack.install   |4 +
 community-staging-x86_64/PKGBUILD  |   80 +++
 community-staging-x86_64/stack.install |4 +
 4 files changed, 168 insertions(+)

Copied: stack/repos/community-staging-i686/PKGBUILD (from rev 193085, 
stack/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-10-23 16:43:31 UTC (rev 193086)
@@ -0,0 +1,80 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgbase=stack
+pkgname=(stack haskell-stack)
+pkgver=1.2.0
+pkgrel=7
+pkgdesc="The Haskell Tool Stack"
+url="https://github.com/commercialhaskell/stack;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+makedepends=("ghc=8.0.1" "haskell-aeson" "haskell-annotated-wl-pprint" 
"haskell-ansi-terminal"
+ "haskell-async" "haskell-attoparsec" "haskell-base-compat" 
"haskell-base16-bytestring"
+ "haskell-base64-bytestring" "haskell-binary-tagged" 
"haskell-blaze-builder"
+ "haskell-byteable" "haskell-clock" "haskell-conduit" 
"haskell-conduit-extra"
+ "haskell-cryptohash" "haskell-cryptohash-conduit" 
"haskell-edit-distance"
+ "haskell-either" "haskell-enclosed-exceptions" "haskell-errors" 
"haskell-exceptions"
+ "haskell-extra" "haskell-fast-logger" "haskell-filelock" 
"haskell-fsnotify"
+ "haskell-generic-deriving" "haskell-gitrev" "haskell-hashable" 
"haskell-hastache"
+ "haskell-hit" "haskell-http-client" "haskell-http-client-tls" 
"haskell-http-conduit"
+ "haskell-http-types" "haskell-hpack" "haskell-lifted-async" 
"haskell-lifted-base"
+ "haskell-microlens" "haskell-monad-control" "haskell-monad-logger"
+ "haskell-monad-unlift" "haskell-mtl" "haskell-open-browser"
+ "haskell-optparse-applicative" "haskell-optparse-simple" 
"haskell-path"
+ "haskell-path-io" "haskell-persistent" "haskell-persistent-sqlite"
+ "haskell-persistent-template" "haskell-project-template"
+ "haskell-regex-applicative-text" "haskell-resourcet" 
"haskell-retry" "haskell-safe"
+ "haskell-semigroups" "haskell-split" "haskell-stm" "haskell-store"
+ "haskell-streaming-commons" "haskell-tar" "haskell-temporary" 
"haskell-text"
+ "haskell-text-binary" "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")
+source=("http://hackage.haskell.org/packages/archive/${pkgbase}/${pkgver}/${pkgbase}-${pkgver}.tar.gz;)
+sha256sums=('6a13a98413ea5f1a0642d9080892e6bcd996a17baa4d61521c0e0f3d9bb810b3')
+
+build() {
+cd "${srcdir}/${pkgbase}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgbase}" \
+--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
+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_stack() {
+depends=('gmp' 'libffi' 'zlib')
+optdepends=('ghc')
+install="stack.install"
+
+cd "${srcdir}/${pkgbase}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -r "$pkgdir"/usr/{lib,share/doc}
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+
+"${pkgdir}"/usr/bin/stack --bash-completion-script /usr/bin/stack > 
stack_completion_script
+install -Dm644 stack_completion_script 
"${pkgdir}/usr/share/bash-completion/completions/stack"
+}
+
+package_haskell-stack() {
+pkgdesc="The Haskell Tool Stack (docs 

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

2016-10-23 Thread Felix Yan
Date: Sunday, October 23, 2016 @ 16:43:02
  Author: felixonmars
Revision: 193085

upgpkg: stack 1.2.0-7

rebuild with HUnit-1.5.0.0, quickcheck-io-0.1.4, hspec-expectations-0.8.2, 
hspec-discover-2.3.2, hspec-core-2.3.2, hspec-2.3.2

Modified:
  stack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-23 16:33:09 UTC (rev 193084)
+++ PKGBUILD2016-10-23 16:43:02 UTC (rev 193085)
@@ -5,7 +5,7 @@
 pkgbase=stack
 pkgname=(stack haskell-stack)
 pkgver=1.2.0
-pkgrel=6
+pkgrel=7
 pkgdesc="The Haskell Tool Stack"
 url="https://github.com/commercialhaskell/stack;
 license=("custom:BSD3")


[arch-commits] Commit in gitlab-ci-multi-runner/repos (24 files)

2016-10-23 Thread Sven-Hendrik Haase
Date: Sunday, October 23, 2016 @ 16:33:09
  Author: svenstaro
Revision: 193084

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

Added:
  gitlab-ci-multi-runner/repos/community-i686/PKGBUILD
(from rev 193083, gitlab-ci-multi-runner/trunk/PKGBUILD)
  gitlab-ci-multi-runner/repos/community-i686/config.toml
(from rev 193083, gitlab-ci-multi-runner/trunk/config.toml)
  gitlab-ci-multi-runner/repos/community-i686/gitlab-runner.install
(from rev 193083, gitlab-ci-multi-runner/trunk/gitlab-runner.install)
  gitlab-ci-multi-runner/repos/community-i686/gitlab-runner.service
(from rev 193083, gitlab-ci-multi-runner/trunk/gitlab-runner.service)
  gitlab-ci-multi-runner/repos/community-i686/gitlab-runner.sysusers
(from rev 193083, gitlab-ci-multi-runner/trunk/gitlab-runner.sysusers)
  gitlab-ci-multi-runner/repos/community-i686/gitlab-runner.tmpfiles
(from rev 193083, gitlab-ci-multi-runner/trunk/gitlab-runner.tmpfiles)
  gitlab-ci-multi-runner/repos/community-x86_64/PKGBUILD
(from rev 193083, gitlab-ci-multi-runner/trunk/PKGBUILD)
  gitlab-ci-multi-runner/repos/community-x86_64/config.toml
(from rev 193083, gitlab-ci-multi-runner/trunk/config.toml)
  gitlab-ci-multi-runner/repos/community-x86_64/gitlab-runner.install
(from rev 193083, gitlab-ci-multi-runner/trunk/gitlab-runner.install)
  gitlab-ci-multi-runner/repos/community-x86_64/gitlab-runner.service
(from rev 193083, gitlab-ci-multi-runner/trunk/gitlab-runner.service)
  gitlab-ci-multi-runner/repos/community-x86_64/gitlab-runner.sysusers
(from rev 193083, gitlab-ci-multi-runner/trunk/gitlab-runner.sysusers)
  gitlab-ci-multi-runner/repos/community-x86_64/gitlab-runner.tmpfiles
(from rev 193083, gitlab-ci-multi-runner/trunk/gitlab-runner.tmpfiles)
Deleted:
  gitlab-ci-multi-runner/repos/community-i686/PKGBUILD
  gitlab-ci-multi-runner/repos/community-i686/config.toml
  gitlab-ci-multi-runner/repos/community-i686/gitlab-runner.install
  gitlab-ci-multi-runner/repos/community-i686/gitlab-runner.service
  gitlab-ci-multi-runner/repos/community-i686/gitlab-runner.sysusers
  gitlab-ci-multi-runner/repos/community-i686/gitlab-runner.tmpfiles
  gitlab-ci-multi-runner/repos/community-x86_64/PKGBUILD
  gitlab-ci-multi-runner/repos/community-x86_64/config.toml
  gitlab-ci-multi-runner/repos/community-x86_64/gitlab-runner.install
  gitlab-ci-multi-runner/repos/community-x86_64/gitlab-runner.service
  gitlab-ci-multi-runner/repos/community-x86_64/gitlab-runner.sysusers
  gitlab-ci-multi-runner/repos/community-x86_64/gitlab-runner.tmpfiles

-+
 /PKGBUILD   |  152 ++
 /config.toml|2 
 /gitlab-runner.install  |   16 +++
 /gitlab-runner.service  |   34 ++
 /gitlab-runner.sysusers |2 
 /gitlab-runner.tmpfiles |2 
 community-i686/PKGBUILD |   75 --
 community-i686/config.toml  |1 
 community-i686/gitlab-runner.install|8 -
 community-i686/gitlab-runner.service|   17 ---
 community-i686/gitlab-runner.sysusers   |1 
 community-i686/gitlab-runner.tmpfiles   |1 
 community-x86_64/PKGBUILD   |   75 --
 community-x86_64/config.toml|1 
 community-x86_64/gitlab-runner.install  |8 -
 community-x86_64/gitlab-runner.service  |   17 ---
 community-x86_64/gitlab-runner.sysusers |1 
 community-x86_64/gitlab-runner.tmpfiles |1 
 18 files changed, 208 insertions(+), 206 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-10-23 16:32:49 UTC (rev 193083)
+++ community-i686/PKGBUILD 2016-10-23 16:33:09 UTC (rev 193084)
@@ -1,75 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Lubomir 'Kuci' Kucera 
-
-pkgname=gitlab-ci-multi-runner
-pkgver=1.6.0
-pkgrel=1
-pkgdesc="The official GitLab CI runner written in Go"
-arch=('i686' 'x86_64')
-url='https://gitlab.com/gitlab-org/gitlab-ci-multi-runner'
-license=('GPL3')
-depends=('ca-certificates' 'curl' 'git' 'glibc' 'tar')
-makedepends=('git' 'go' 'godep' 'go-bindata' 'mercurial')
-install='gitlab-runner.install'
-backup=('etc/gitlab-runner/config.toml')
-noextract=('prebuilt-x86_64.tar.xz'
-   'prebuilt-arm.tar.xz')
-source=("${pkgname}-${pkgver}.tar.gz"::"https://gitlab.com/gitlab-org/gitlab-ci-multi-runner/repository/archive.tar.gz?ref=v${pkgver};
-
"https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/master/docker/prebuilt-x86_64.tar.xz;
-
"https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/master/docker/prebuilt-arm.tar.xz;
-"gitlab-runner.install"
-"gitlab-runner.service"
-"gitlab-runner.sysusers"
-"gitlab-runner.tmpfiles"
-"config.toml")

[arch-commits] Commit in gitlab-ci-multi-runner/trunk (PKGBUILD)

2016-10-23 Thread Sven-Hendrik Haase
Date: Sunday, October 23, 2016 @ 16:32:49
  Author: svenstaro
Revision: 193083

upgpkg: gitlab-ci-multi-runner 1.7.0-1

upstream release 1.7.0

Modified:
  gitlab-ci-multi-runner/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-23 16:20:53 UTC (rev 193082)
+++ PKGBUILD2016-10-23 16:32:49 UTC (rev 193083)
@@ -2,7 +2,7 @@
 # Contributor: Lubomir 'Kuci' Kucera 
 
 pkgname=gitlab-ci-multi-runner
-pkgver=1.6.0
+pkgver=1.7.0
 pkgrel=1
 pkgdesc="The official GitLab CI runner written in Go"
 arch=('i686' 'x86_64')
@@ -22,7 +22,7 @@
 "gitlab-runner.sysusers"
 "gitlab-runner.tmpfiles"
 "config.toml")
-sha256sums=('219031680b386436ec7b7affc004c2388e6772bb8cce6d554c5b564918bce720'
+sha256sums=('ffcc18bfc54d4e2846bbfb21e72798c90ca5af214ac606ea07fbbeec24bb155f'
 '2c0d97469a124956d7f71601848dadd0df644e2bd8e8555d0deb4e7f47c7be52'
 'fc5ad1eb24104e453ff4412fbf4bd304e0d04ffeb7ce3f4d0440e6328ddf474f'
 'd8b75e676727989115ab11d6a74281de61daed64a72dcc21d98814e845cdcf91'
@@ -40,7 +40,8 @@
 
 cd "${srcdir}/src/gitlab.com/gitlab-org/${pkgname}"
 
-GOPATH="${srcdir}" godep restore
+export GOPATH="${srcdir}"
+make deps
 
 ln -sf "${srcdir}/prebuilt-x86_64.tar.xz" prebuilt-x86_64.tar.xz
 ln -sf "${srcdir}/prebuilt-x86_64.tar.xz" prebuilt-arm.tar.xz


[arch-commits] Commit in haskell-test-framework-hunit/repos (4 files)

2016-10-23 Thread Felix Yan
Date: Sunday, October 23, 2016 @ 16:20:53
  Author: felixonmars
Revision: 193082

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

Added:
  haskell-test-framework-hunit/repos/community-staging-i686/
  haskell-test-framework-hunit/repos/community-staging-i686/PKGBUILD
(from rev 193081, haskell-test-framework-hunit/trunk/PKGBUILD)
  haskell-test-framework-hunit/repos/community-staging-x86_64/
  haskell-test-framework-hunit/repos/community-staging-x86_64/PKGBUILD
(from rev 193081, haskell-test-framework-hunit/trunk/PKGBUILD)

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

Copied: haskell-test-framework-hunit/repos/community-staging-i686/PKGBUILD 
(from rev 193081, haskell-test-framework-hunit/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-10-23 16:20:53 UTC (rev 193082)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=test-framework-hunit
+pkgname=haskell-test-framework-hunit
+pkgver=0.3.0.2
+pkgrel=8
+pkgdesc="HUnit support for the test-framework package."
+url="https://batterseapower.github.io/test-framework/;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-hunit" "haskell-extensible-exceptions" 
"haskell-test-framework")
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('95cb8ee02a850b164bfdabdf4dbc839d621361f3ac770ad21ea43a8bde360bf8')
+
+prepare() {
+sed -i 's/HUnit >= 1.2 && < 1.4/HUnit >= 1.2 \&\& < 1.6/' 
$_hkgname-$pkgver/$_hkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-base3 -fbase4
+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"
+}

Copied: haskell-test-framework-hunit/repos/community-staging-x86_64/PKGBUILD 
(from rev 193081, haskell-test-framework-hunit/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-10-23 16:20:53 UTC (rev 193082)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=test-framework-hunit
+pkgname=haskell-test-framework-hunit
+pkgver=0.3.0.2
+pkgrel=8
+pkgdesc="HUnit support for the test-framework package."
+url="https://batterseapower.github.io/test-framework/;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-hunit" "haskell-extensible-exceptions" 
"haskell-test-framework")
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('95cb8ee02a850b164bfdabdf4dbc839d621361f3ac770ad21ea43a8bde360bf8')
+
+prepare() {
+sed -i 's/HUnit >= 1.2 && < 1.4/HUnit >= 1.2 \&\& < 1.6/' 
$_hkgname-$pkgver/$_hkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-base3 -fbase4
+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-test-framework-hunit/trunk (PKGBUILD)

2016-10-23 Thread Felix Yan
Date: Sunday, October 23, 2016 @ 16:20:24
  Author: felixonmars
Revision: 193081

upgpkg: haskell-test-framework-hunit 0.3.0.2-8

rebuild with HUnit-1.5.0.0, quickcheck-io-0.1.4, hspec-expectations-0.8.2, 
hspec-discover-2.3.2, hspec-core-2.3.2, hspec-2.3.2

Modified:
  haskell-test-framework-hunit/trunk/PKGBUILD

--+
 PKGBUILD |6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-10-23 16:01:17 UTC (rev 193080)
+++ PKGBUILD2016-10-23 16:20:24 UTC (rev 193081)
@@ -5,7 +5,7 @@
 _hkgname=test-framework-hunit
 pkgname=haskell-test-framework-hunit
 pkgver=0.3.0.2
-pkgrel=7
+pkgrel=8
 pkgdesc="HUnit support for the test-framework package."
 url="https://batterseapower.github.io/test-framework/;
 license=("custom:BSD3")
@@ -14,6 +14,10 @@
 
source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
 sha256sums=('95cb8ee02a850b164bfdabdf4dbc839d621361f3ac770ad21ea43a8bde360bf8')
 
+prepare() {
+sed -i 's/HUnit >= 1.2 && < 1.4/HUnit >= 1.2 \&\& < 1.6/' 
$_hkgname-$pkgver/$_hkgname.cabal
+}
+
 build() {
 cd "${srcdir}/${_hkgname}-${pkgver}"
 


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

2016-10-23 Thread Felix Yan
Date: Sunday, October 23, 2016 @ 16:01:17
  Author: felixonmars
Revision: 193080

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-10-23 16:00:58 UTC (rev 193079)
+++ PKGBUILD2016-10-23 16:01:17 UTC (rev 193080)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgbase=python-waitress
-pkgname=('python-waitress' 'python2-waitress')
-pkgver=1.0.0
-pkgrel=1
-pkgdesc="Waitress WSGI server"
-arch=('any')
-license=('ZPL')
-url="https://github.com/Pylons/waitress;
-makedepends=('python-setuptools' 'python2-setuptools' 'git')
-checkdepends=('python-nose' 'python2-nose')
-source=("git+https://github.com/Pylons/waitress.git#tag=v$pkgver;)
-sha512sums=('SKIP')
-
-prepare() {
-  cp -a waitress{,-py2}
-}
-
-build() {
-  cd "$srcdir"/waitress
-  python setup.py build
-
-  cd "$srcdir"/waitress-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/waitress
-  nosetests3
-
-  cd "$srcdir"/waitress-py2
-  nosetests2
-}
-
-package_python-waitress() {
-  depends=('python-setuptools')
-
-  cd waitress
-  python setup.py install --root="$pkgdir" --optimize=1
-}
-
-package_python2-waitress() {
-  depends=('python2-setuptools')
-
-  cd waitress-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-
-  mv "$pkgdir"/usr/bin/waitress-serve{,2}
-}

Copied: python-waitress/repos/community-any/PKGBUILD (from rev 193079, 
python-waitress/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-10-23 16:01:17 UTC (rev 193080)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-waitress
+pkgname=('python-waitress' 'python2-waitress')
+pkgver=1.0.1
+pkgrel=1
+pkgdesc="Waitress WSGI server"
+arch=('any')
+license=('ZPL')
+url="https://github.com/Pylons/waitress;
+makedepends=('python-setuptools' 'python2-setuptools' 'git')
+checkdepends=('python-nose' 'python2-nose')
+source=("git+https://github.com/Pylons/waitress.git#tag=v$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  cp -a waitress{,-py2}
+}
+
+build() {
+  cd "$srcdir"/waitress
+  python setup.py build
+
+  cd "$srcdir"/waitress-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/waitress
+  nosetests3
+
+  cd "$srcdir"/waitress-py2
+  nosetests2
+}
+
+package_python-waitress() {
+  depends=('python-setuptools')
+
+  cd waitress
+  python setup.py install --root="$pkgdir" --optimize=1
+}
+
+package_python2-waitress() {
+  depends=('python2-setuptools')
+
+  cd waitress-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+
+  mv "$pkgdir"/usr/bin/waitress-serve{,2}
+}


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

2016-10-23 Thread Felix Yan
Date: Sunday, October 23, 2016 @ 16:00:58
  Author: felixonmars
Revision: 193079

upgpkg: python-waitress 1.0.1-1

Modified:
  python-waitress/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-23 15:58:31 UTC (rev 193078)
+++ PKGBUILD2016-10-23 16:00:58 UTC (rev 193079)
@@ -3,7 +3,7 @@
 
 pkgbase=python-waitress
 pkgname=('python-waitress' 'python2-waitress')
-pkgver=1.0.0
+pkgver=1.0.1
 pkgrel=1
 pkgdesc="Waitress WSGI server"
 arch=('any')


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

2016-10-23 Thread Felix Yan
Date: Sunday, October 23, 2016 @ 15:58:31
  Author: felixonmars
Revision: 193078

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

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

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

Copied: haskell-missingh/repos/community-staging-i686/PKGBUILD (from rev 
193077, haskell-missingh/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-10-23 15:58:31 UTC (rev 193078)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=MissingH
+pkgname=haskell-missingh
+pkgver=1.4.0.1
+pkgrel=4
+pkgdesc="Large utility library"
+url="http://software.complete.org/missingh;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-hunit" "haskell-hslogger" "haskell-mtl" 
"haskell-network"
+ "haskell-old-locale" "haskell-old-time" "haskell-parsec" 
"haskell-random"
+ "haskell-regex-compat")
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('283f2afd46625d98b4e29f77edadfa5e6009a227812ee2ece10091ad6a7e9b71')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--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"
+}

Copied: haskell-missingh/repos/community-staging-x86_64/PKGBUILD (from rev 
193077, haskell-missingh/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-10-23 15:58:31 UTC (rev 193078)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=MissingH
+pkgname=haskell-missingh
+pkgver=1.4.0.1
+pkgrel=4
+pkgdesc="Large utility library"
+url="http://software.complete.org/missingh;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-hunit" "haskell-hslogger" "haskell-mtl" 
"haskell-network"
+ "haskell-old-locale" "haskell-old-time" "haskell-parsec" 
"haskell-random"
+ "haskell-regex-compat")
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('283f2afd46625d98b4e29f77edadfa5e6009a227812ee2ece10091ad6a7e9b71')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--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-missingh/trunk (PKGBUILD)

2016-10-23 Thread Felix Yan
Date: Sunday, October 23, 2016 @ 15:58:02
  Author: felixonmars
Revision: 193077

upgpkg: haskell-missingh 1.4.0.1-4

rebuild with HUnit-1.5.0.0, quickcheck-io-0.1.4, hspec-expectations-0.8.2, 
hspec-discover-2.3.2, hspec-core-2.3.2, hspec-2.3.2

Modified:
  haskell-missingh/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-23 15:57:17 UTC (rev 193076)
+++ PKGBUILD2016-10-23 15:58:02 UTC (rev 193077)
@@ -5,7 +5,7 @@
 _hkgname=MissingH
 pkgname=haskell-missingh
 pkgver=1.4.0.1
-pkgrel=3
+pkgrel=4
 pkgdesc="Large utility library"
 url="http://software.complete.org/missingh;
 license=("custom:BSD3")


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

2016-10-23 Thread Felix Yan
Date: Sunday, October 23, 2016 @ 15:57:17
  Author: felixonmars
Revision: 193076

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 193075, haskell-store/trunk/PKGBUILD)
  haskell-store/repos/community-staging-x86_64/
  haskell-store/repos/community-staging-x86_64/PKGBUILD
(from rev 193075, 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 193075, 
haskell-store/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-10-23 15:57:17 UTC (rev 193076)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=store
+pkgname=haskell-store
+pkgver=0.2.1.2
+pkgrel=4
+pkgdesc="Fast binary serialization"
+url="https://github.com/fpco/store;
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+depends=('ghc=8.0.1' 'haskell-base-orphans' 'haskell-base64-bytestring' 
'haskell-conduit'
+ 'haskell-cryptohash' 'haskell-hashable' 'haskell-hspec' 
'haskell-hspec-smallcheck'
+ 'haskell-lifted-base' 'haskell-monad-control' 
'haskell-mono-traversable'
+ 'haskell-primitive' 'haskell-resourcet' 'haskell-safe' 
'haskell-semigroups'
+ 'haskell-smallcheck' '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=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+md5sums=('fe54d6fccfccd3fec8820ed1490b25fb')
+
+prepare() {
+sed -i '/fail/d' ${_hkgname}-${pkgver}/${_hkgname}.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--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"
+}

Copied: haskell-store/repos/community-staging-x86_64/PKGBUILD (from rev 193075, 
haskell-store/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-10-23 15:57:17 UTC (rev 193076)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=store
+pkgname=haskell-store
+pkgver=0.2.1.2
+pkgrel=4
+pkgdesc="Fast binary serialization"
+url="https://github.com/fpco/store;
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+depends=('ghc=8.0.1' 'haskell-base-orphans' 'haskell-base64-bytestring' 
'haskell-conduit'
+ 'haskell-cryptohash' 'haskell-hashable' 'haskell-hspec' 
'haskell-hspec-smallcheck'
+ 'haskell-lifted-base' 'haskell-monad-control' 
'haskell-mono-traversable'
+ 'haskell-primitive' 'haskell-resourcet' 'haskell-safe' 
'haskell-semigroups'
+ 'haskell-smallcheck' '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=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+md5sums=('fe54d6fccfccd3fec8820ed1490b25fb')
+
+prepare() {
+sed -i '/fail/d' ${_hkgname}-${pkgver}/${_hkgname}.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling 

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

2016-10-23 Thread Felix Yan
Date: Sunday, October 23, 2016 @ 15:56:48
  Author: felixonmars
Revision: 193075

upgpkg: haskell-store 0.2.1.2-4

rebuild with HUnit-1.5.0.0, quickcheck-io-0.1.4, hspec-expectations-0.8.2, 
hspec-discover-2.3.2, hspec-core-2.3.2, hspec-2.3.2

Modified:
  haskell-store/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-23 15:37:30 UTC (rev 193074)
+++ PKGBUILD2016-10-23 15:56:48 UTC (rev 193075)
@@ -4,7 +4,7 @@
 _hkgname=store
 pkgname=haskell-store
 pkgver=0.2.1.2
-pkgrel=3
+pkgrel=4
 pkgdesc="Fast binary serialization"
 url="https://github.com/fpco/store;
 license=('custom:BSD3')


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

2016-10-23 Thread Felix Yan
Date: Sunday, October 23, 2016 @ 15:37:30
  Author: felixonmars
Revision: 193074

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

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

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

Copied: haskell-hspec/repos/community-staging-i686/PKGBUILD (from rev 193073, 
haskell-hspec/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-10-23 15:37:30 UTC (rev 193074)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=hspec
+pkgname=haskell-hspec
+pkgver=2.3.2
+pkgrel=1
+pkgdesc="A Testing Framework for Haskell"
+url="http://hspec.github.io/;
+license=('MIT')
+arch=('i686' 'x86_64')
+depends=('ghc=8.0.1' 'haskell-call-stack' 'haskell-hspec-core' 
'haskell-hspec-discover'
+ 'haskell-hspec-expectations' 'haskell-quickcheck' 'haskell-hunit')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+md5sums=('da288f815a4cd37985f703118d247332')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--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"
+}

Copied: haskell-hspec/repos/community-staging-x86_64/PKGBUILD (from rev 193073, 
haskell-hspec/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-10-23 15:37:30 UTC (rev 193074)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=hspec
+pkgname=haskell-hspec
+pkgver=2.3.2
+pkgrel=1
+pkgdesc="A Testing Framework for Haskell"
+url="http://hspec.github.io/;
+license=('MIT')
+arch=('i686' 'x86_64')
+depends=('ghc=8.0.1' 'haskell-call-stack' 'haskell-hspec-core' 
'haskell-hspec-discover'
+ 'haskell-hspec-expectations' 'haskell-quickcheck' 'haskell-hunit')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+md5sums=('da288f815a4cd37985f703118d247332')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--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"
+}


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

2016-10-23 Thread Felix Yan
Date: Sunday, October 23, 2016 @ 15:36:42
  Author: felixonmars
Revision: 193072

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

Added:
  haskell-hspec-smallcheck/repos/community-staging-i686/
  haskell-hspec-smallcheck/repos/community-staging-i686/PKGBUILD
(from rev 193071, haskell-hspec-smallcheck/trunk/PKGBUILD)
  haskell-hspec-smallcheck/repos/community-staging-x86_64/
  haskell-hspec-smallcheck/repos/community-staging-x86_64/PKGBUILD
(from rev 193071, haskell-hspec-smallcheck/trunk/PKGBUILD)

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

Copied: haskell-hspec-smallcheck/repos/community-staging-i686/PKGBUILD (from 
rev 193071, haskell-hspec-smallcheck/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-10-23 15:36:42 UTC (rev 193072)
@@ -0,0 +1,40 @@
+# $Id: PKGBUILD 189385 2016-09-16 04:01:47Z felixonmars $
+# Maintainer: Felix Yan 
+
+_hkgname=hspec-smallcheck
+pkgname=haskell-hspec-smallcheck
+pkgver=0.4.1
+pkgrel=4
+pkgdesc="SmallCheck support for the Hspec testing framework"
+url="http://hspec.github.io/;
+license=('MIT')
+arch=('i686' 'x86_64')
+depends=('ghc=8.0.1' 'haskell-hspec-core' 'haskell-smallcheck')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+md5sums=('d7df0ec8a1f2f9255284f1994e224510')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--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"
+}

Copied: haskell-hspec-smallcheck/repos/community-staging-x86_64/PKGBUILD (from 
rev 193071, haskell-hspec-smallcheck/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-10-23 15:36:42 UTC (rev 193072)
@@ -0,0 +1,40 @@
+# $Id: PKGBUILD 189385 2016-09-16 04:01:47Z felixonmars $
+# Maintainer: Felix Yan 
+
+_hkgname=hspec-smallcheck
+pkgname=haskell-hspec-smallcheck
+pkgver=0.4.1
+pkgrel=4
+pkgdesc="SmallCheck support for the Hspec testing framework"
+url="http://hspec.github.io/;
+license=('MIT')
+arch=('i686' 'x86_64')
+depends=('ghc=8.0.1' 'haskell-hspec-core' 'haskell-smallcheck')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+md5sums=('d7df0ec8a1f2f9255284f1994e224510')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--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"
+}


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

2016-10-23 Thread Felix Yan
Date: Sunday, October 23, 2016 @ 15:37:02
  Author: felixonmars
Revision: 193073

upgpkg: haskell-hspec 2.3.2-1

rebuild with HUnit-1.5.0.0, quickcheck-io-0.1.4, hspec-expectations-0.8.2, 
hspec-discover-2.3.2, hspec-core-2.3.2, hspec-2.3.2

Modified:
  haskell-hspec/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-23 15:36:42 UTC (rev 193072)
+++ PKGBUILD2016-10-23 15:37:02 UTC (rev 193073)
@@ -3,16 +3,16 @@
 
 _hkgname=hspec
 pkgname=haskell-hspec
-pkgver=2.2.4
+pkgver=2.3.2
 pkgrel=1
 pkgdesc="A Testing Framework for Haskell"
 url="http://hspec.github.io/;
 license=('MIT')
 arch=('i686' 'x86_64')
-depends=('ghc=8.0.1' 'haskell-hspec-core' 'haskell-hspec-discover' 
'haskell-hspec-expectations'
- 'haskell-quickcheck' 'haskell-hunit')
+depends=('ghc=8.0.1' 'haskell-call-stack' 'haskell-hspec-core' 
'haskell-hspec-discover'
+ 'haskell-hspec-expectations' 'haskell-quickcheck' 'haskell-hunit')
 
source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
-md5sums=('5085487f0c478155041d44bc07fe2110')
+md5sums=('da288f815a4cd37985f703118d247332')
 
 build() {
 cd "${srcdir}/${_hkgname}-${pkgver}"


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

2016-10-23 Thread Felix Yan
Date: Sunday, October 23, 2016 @ 15:36:15
  Author: felixonmars
Revision: 193071

upgpkg: haskell-hspec-smallcheck 0.4.1-4

rebuild with HUnit-1.5.0.0, quickcheck-io-0.1.4, hspec-expectations-0.8.2, 
hspec-discover-2.3.2, hspec-core-2.3.2, hspec-2.3.2

Modified:
  haskell-hspec-smallcheck/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-23 15:34:42 UTC (rev 193070)
+++ PKGBUILD2016-10-23 15:36:15 UTC (rev 193071)
@@ -4,7 +4,7 @@
 _hkgname=hspec-smallcheck
 pkgname=haskell-hspec-smallcheck
 pkgver=0.4.1
-pkgrel=3
+pkgrel=4
 pkgdesc="SmallCheck support for the Hspec testing framework"
 url="http://hspec.github.io/;
 license=('MIT')


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

2016-10-23 Thread Felix Yan
Date: Sunday, October 23, 2016 @ 15:34:42
  Author: felixonmars
Revision: 193070

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

Added:
  haskell-hspec-core/repos/community-staging-i686/
  haskell-hspec-core/repos/community-staging-i686/PKGBUILD
(from rev 193069, haskell-hspec-core/trunk/PKGBUILD)
  haskell-hspec-core/repos/community-staging-x86_64/
  haskell-hspec-core/repos/community-staging-x86_64/PKGBUILD
(from rev 193069, haskell-hspec-core/trunk/PKGBUILD)

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

Copied: haskell-hspec-core/repos/community-staging-i686/PKGBUILD (from rev 
193069, haskell-hspec-core/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-10-23 15:34:42 UTC (rev 193070)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=hspec-core
+pkgname=haskell-hspec-core
+pkgver=2.3.2
+pkgrel=1
+pkgdesc="A Testing Framework for Haskell"
+url="http://hspec.github.io/;
+license=('MIT')
+arch=('i686' 'x86_64')
+depends=('ghc=8.0.1' 'haskell-ansi-terminal' 'haskell-async' 
'haskell-call-stack'
+ 'haskell-hspec-expectations' 'haskell-hunit' 'haskell-quickcheck' 
'haskell-quickcheck-io'
+ 'haskell-random' 'haskell-setenv' 'haskell-tf-random')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+md5sums=('45a751f4c2002fbe19e2a40a637dbc90')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--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"
+}

Copied: haskell-hspec-core/repos/community-staging-x86_64/PKGBUILD (from rev 
193069, haskell-hspec-core/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-10-23 15:34:42 UTC (rev 193070)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=hspec-core
+pkgname=haskell-hspec-core
+pkgver=2.3.2
+pkgrel=1
+pkgdesc="A Testing Framework for Haskell"
+url="http://hspec.github.io/;
+license=('MIT')
+arch=('i686' 'x86_64')
+depends=('ghc=8.0.1' 'haskell-ansi-terminal' 'haskell-async' 
'haskell-call-stack'
+ 'haskell-hspec-expectations' 'haskell-hunit' 'haskell-quickcheck' 
'haskell-quickcheck-io'
+ 'haskell-random' 'haskell-setenv' 'haskell-tf-random')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+md5sums=('45a751f4c2002fbe19e2a40a637dbc90')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--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" 

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

2016-10-23 Thread Felix Yan
Date: Sunday, October 23, 2016 @ 15:34:15
  Author: felixonmars
Revision: 193069

upgpkg: haskell-hspec-core 2.3.2-1

rebuild with HUnit-1.5.0.0, quickcheck-io-0.1.4, hspec-expectations-0.8.2, 
hspec-discover-2.3.2, hspec-core-2.3.2, hspec-2.3.2

Modified:
  haskell-hspec-core/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-23 15:33:29 UTC (rev 193068)
+++ PKGBUILD2016-10-23 15:34:15 UTC (rev 193069)
@@ -3,17 +3,17 @@
 
 _hkgname=hspec-core
 pkgname=haskell-hspec-core
-pkgver=2.2.4
+pkgver=2.3.2
 pkgrel=1
 pkgdesc="A Testing Framework for Haskell"
 url="http://hspec.github.io/;
 license=('MIT')
 arch=('i686' 'x86_64')
-depends=('ghc=8.0.1' 'haskell-ansi-terminal' 'haskell-async' 
'haskell-hspec-expectations'
- 'haskell-hunit' 'haskell-quickcheck' 'haskell-quickcheck-io' 
'haskell-random'
- 'haskell-setenv' 'haskell-tf-random')
+depends=('ghc=8.0.1' 'haskell-ansi-terminal' 'haskell-async' 
'haskell-call-stack'
+ 'haskell-hspec-expectations' 'haskell-hunit' 'haskell-quickcheck' 
'haskell-quickcheck-io'
+ 'haskell-random' 'haskell-setenv' 'haskell-tf-random')
 
source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
-md5sums=('15217a13e64f032a1eb6b422c33df989')
+md5sums=('45a751f4c2002fbe19e2a40a637dbc90')
 
 build() {
 cd "${srcdir}/${_hkgname}-${pkgver}"


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

2016-10-23 Thread Felix Yan
Date: Sunday, October 23, 2016 @ 15:33:29
  Author: felixonmars
Revision: 193068

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

Added:
  haskell-hspec-discover/repos/community-staging-i686/
  haskell-hspec-discover/repos/community-staging-i686/PKGBUILD
(from rev 193067, haskell-hspec-discover/trunk/PKGBUILD)
  haskell-hspec-discover/repos/community-staging-x86_64/
  haskell-hspec-discover/repos/community-staging-x86_64/PKGBUILD
(from rev 193067, haskell-hspec-discover/trunk/PKGBUILD)

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

Copied: haskell-hspec-discover/repos/community-staging-i686/PKGBUILD (from rev 
193067, haskell-hspec-discover/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-10-23 15:33:29 UTC (rev 193068)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=hspec-discover
+pkgname=haskell-hspec-discover
+pkgver=2.3.2
+pkgrel=1
+pkgdesc="Automatically discover and run Hspec tests"
+url="http://hspec.github.io/;
+license=('MIT')
+arch=('i686' 'x86_64')
+depends=('ghc=8.0.1')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+md5sums=('2ab41b257d28f839ecddab05f6414e03')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--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"
+}

Copied: haskell-hspec-discover/repos/community-staging-x86_64/PKGBUILD (from 
rev 193067, haskell-hspec-discover/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-10-23 15:33:29 UTC (rev 193068)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=hspec-discover
+pkgname=haskell-hspec-discover
+pkgver=2.3.2
+pkgrel=1
+pkgdesc="Automatically discover and run Hspec tests"
+url="http://hspec.github.io/;
+license=('MIT')
+arch=('i686' 'x86_64')
+depends=('ghc=8.0.1')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+md5sums=('2ab41b257d28f839ecddab05f6414e03')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--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"
+}


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

2016-10-23 Thread Felix Yan
Date: Sunday, October 23, 2016 @ 15:33:02
  Author: felixonmars
Revision: 193067

upgpkg: haskell-hspec-discover 2.3.2-1

rebuild with HUnit-1.5.0.0, quickcheck-io-0.1.4, hspec-expectations-0.8.2, 
hspec-discover-2.3.2, hspec-core-2.3.2, hspec-2.3.2

Modified:
  haskell-hspec-discover/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-23 15:31:16 UTC (rev 193066)
+++ PKGBUILD2016-10-23 15:33:02 UTC (rev 193067)
@@ -3,7 +3,7 @@
 
 _hkgname=hspec-discover
 pkgname=haskell-hspec-discover
-pkgver=2.2.4
+pkgver=2.3.2
 pkgrel=1
 pkgdesc="Automatically discover and run Hspec tests"
 url="http://hspec.github.io/;
@@ -11,7 +11,7 @@
 arch=('i686' 'x86_64')
 depends=('ghc=8.0.1')
 
source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
-md5sums=('ef4d1e3e40aa9cd944c28d1412cf5f64')
+md5sums=('2ab41b257d28f839ecddab05f6414e03')
 
 build() {
 cd "${srcdir}/${_hkgname}-${pkgver}"


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

2016-10-23 Thread Felix Yan
Date: Sunday, October 23, 2016 @ 15:31:16
  Author: felixonmars
Revision: 193066

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

Added:
  haskell-hspec-expectations/repos/community-staging-i686/
  haskell-hspec-expectations/repos/community-staging-i686/PKGBUILD
(from rev 193065, haskell-hspec-expectations/trunk/PKGBUILD)
  haskell-hspec-expectations/repos/community-staging-x86_64/
  haskell-hspec-expectations/repos/community-staging-x86_64/PKGBUILD
(from rev 193065, haskell-hspec-expectations/trunk/PKGBUILD)

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

Copied: haskell-hspec-expectations/repos/community-staging-i686/PKGBUILD (from 
rev 193065, haskell-hspec-expectations/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-10-23 15:31:16 UTC (rev 193066)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=hspec-expectations
+pkgname=haskell-hspec-expectations
+pkgver=0.8.2
+pkgrel=1
+pkgdesc="Catchy combinators for HUnit"
+url="https://github.com/sol/hspec-expectations;
+license=('MIT')
+arch=('i686' 'x86_64')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+depends=('ghc=8.0.1' 'haskell-call-stack' 'haskell-hunit')
+md5sums=('13cc0b65b17fe0f6765af0963c4bb7cb')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--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"
+}

Copied: haskell-hspec-expectations/repos/community-staging-x86_64/PKGBUILD 
(from rev 193065, haskell-hspec-expectations/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-10-23 15:31:16 UTC (rev 193066)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=hspec-expectations
+pkgname=haskell-hspec-expectations
+pkgver=0.8.2
+pkgrel=1
+pkgdesc="Catchy combinators for HUnit"
+url="https://github.com/sol/hspec-expectations;
+license=('MIT')
+arch=('i686' 'x86_64')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+depends=('ghc=8.0.1' 'haskell-call-stack' 'haskell-hunit')
+md5sums=('13cc0b65b17fe0f6765af0963c4bb7cb')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--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"
+}


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

2016-10-23 Thread Felix Yan
Date: Sunday, October 23, 2016 @ 15:30:50
  Author: felixonmars
Revision: 193065

upgpkg: haskell-hspec-expectations 0.8.2-1

rebuild with HUnit-1.5.0.0, quickcheck-io-0.1.4, hspec-expectations-0.8.2, 
hspec-discover-2.3.2, hspec-core-2.3.2, hspec-2.3.2

Modified:
  haskell-hspec-expectations/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-23 15:28:57 UTC (rev 193064)
+++ PKGBUILD2016-10-23 15:30:50 UTC (rev 193065)
@@ -3,7 +3,7 @@
 
 _hkgname=hspec-expectations
 pkgname=haskell-hspec-expectations
-pkgver=0.7.2
+pkgver=0.8.2
 pkgrel=1
 pkgdesc="Catchy combinators for HUnit"
 url="https://github.com/sol/hspec-expectations;
@@ -10,8 +10,8 @@
 license=('MIT')
 arch=('i686' 'x86_64')
 
source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
-depends=('ghc=8.0.1' 'haskell-hunit')
-md5sums=('56e79f41affc0b71a95f6042d6deaa03')
+depends=('ghc=8.0.1' 'haskell-call-stack' 'haskell-hunit')
+md5sums=('13cc0b65b17fe0f6765af0963c4bb7cb')
 
 build() {
 cd "${srcdir}/${_hkgname}-${pkgver}"


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

2016-10-23 Thread Felix Yan
Date: Sunday, October 23, 2016 @ 15:28:57
  Author: felixonmars
Revision: 193064

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

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

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

Copied: haskell-quickcheck-io/repos/community-staging-i686/PKGBUILD (from rev 
193063, haskell-quickcheck-io/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-10-23 15:28:57 UTC (rev 193064)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=quickcheck-io
+pkgname=haskell-quickcheck-io
+pkgver=0.1.4
+pkgrel=1
+pkgdesc="Use HUnit assertions as QuickCheck properties"
+url="https://github.com/hspec/quickcheck-io;
+license=('MIT')
+arch=('i686' 'x86_64')
+depends=('ghc=8.0.1' 'haskell-hunit' 'haskell-quickcheck')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+md5sums=('4123a22e0d26d931e47e18266c6c4d61')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--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"
+}

Copied: haskell-quickcheck-io/repos/community-staging-x86_64/PKGBUILD (from rev 
193063, haskell-quickcheck-io/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-10-23 15:28:57 UTC (rev 193064)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=quickcheck-io
+pkgname=haskell-quickcheck-io
+pkgver=0.1.4
+pkgrel=1
+pkgdesc="Use HUnit assertions as QuickCheck properties"
+url="https://github.com/hspec/quickcheck-io;
+license=('MIT')
+arch=('i686' 'x86_64')
+depends=('ghc=8.0.1' 'haskell-hunit' 'haskell-quickcheck')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+md5sums=('4123a22e0d26d931e47e18266c6c4d61')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--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"
+}


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

2016-10-23 Thread Felix Yan
Date: Sunday, October 23, 2016 @ 15:28:30
  Author: felixonmars
Revision: 193063

upgpkg: haskell-quickcheck-io 0.1.4-1

rebuild with HUnit-1.5.0.0, quickcheck-io-0.1.4, hspec-expectations-0.8.2, 
hspec-discover-2.3.2, hspec-core-2.3.2, hspec-2.3.2

Modified:
  haskell-quickcheck-io/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-23 15:26:41 UTC (rev 193062)
+++ PKGBUILD2016-10-23 15:28:30 UTC (rev 193063)
@@ -3,8 +3,8 @@
 
 _hkgname=quickcheck-io
 pkgname=haskell-quickcheck-io
-pkgver=0.1.3
-pkgrel=2
+pkgver=0.1.4
+pkgrel=1
 pkgdesc="Use HUnit assertions as QuickCheck properties"
 url="https://github.com/hspec/quickcheck-io;
 license=('MIT')
@@ -11,7 +11,7 @@
 arch=('i686' 'x86_64')
 depends=('ghc=8.0.1' 'haskell-hunit' 'haskell-quickcheck')
 
source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
-md5sums=('1db16222c0561d8ec67b82995ca095e0')
+md5sums=('4123a22e0d26d931e47e18266c6c4d61')
 
 build() {
 cd "${srcdir}/${_hkgname}-${pkgver}"


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

2016-10-23 Thread Felix Yan
Date: Sunday, October 23, 2016 @ 15:26:41
  Author: felixonmars
Revision: 193062

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

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

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

Copied: haskell-hunit/repos/community-staging-i686/PKGBUILD (from rev 193061, 
haskell-hunit/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-10-23 15:26:41 UTC (rev 193062)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=HUnit
+pkgname=haskell-hunit
+pkgver=1.5.0.0
+pkgrel=1
+pkgdesc="A unit testing framework for Haskell"
+url="http://hunit.sourceforge.net/;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" 'haskell-call-stack')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('65c51d17ced1c0646d888cd8caf195df67f6fdc1394c34459bcfd1be0f9ddea0')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-fbase4
+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"
+}

Copied: haskell-hunit/repos/community-staging-x86_64/PKGBUILD (from rev 193061, 
haskell-hunit/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-10-23 15:26:41 UTC (rev 193062)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=HUnit
+pkgname=haskell-hunit
+pkgver=1.5.0.0
+pkgrel=1
+pkgdesc="A unit testing framework for Haskell"
+url="http://hunit.sourceforge.net/;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" 'haskell-call-stack')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('65c51d17ced1c0646d888cd8caf195df67f6fdc1394c34459bcfd1be0f9ddea0')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-fbase4
+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"
+}


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

2016-10-23 Thread Felix Yan
Date: Sunday, October 23, 2016 @ 15:26:14
  Author: felixonmars
Revision: 193061

upgpkg: haskell-hunit 1.5.0.0-1

rebuild with HUnit-1.5.0.0, quickcheck-io-0.1.4, hspec-expectations-0.8.2, 
hspec-discover-2.3.2, hspec-core-2.3.2, hspec-2.3.2

Modified:
  haskell-hunit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-23 15:23:46 UTC (rev 193060)
+++ PKGBUILD2016-10-23 15:26:14 UTC (rev 193061)
@@ -4,15 +4,15 @@
 
 _hkgname=HUnit
 pkgname=haskell-hunit
-pkgver=1.3.1.2
+pkgver=1.5.0.0
 pkgrel=1
 pkgdesc="A unit testing framework for Haskell"
 url="http://hunit.sourceforge.net/;
 license=("custom:BSD3")
 arch=('i686' 'x86_64')
-depends=("ghc=8.0.1")
+depends=("ghc=8.0.1" 'haskell-call-stack')
 
source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha256sums=('badebf99ae5a4982cdf2f8932f080e349240dc2b75c40e75ce2518ea086c5381')
+sha256sums=('65c51d17ced1c0646d888cd8caf195df67f6fdc1394c34459bcfd1be0f9ddea0')
 
 build() {
 cd "${srcdir}/${_hkgname}-${pkgver}"


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

2016-10-23 Thread Felix Yan
Date: Sunday, October 23, 2016 @ 15:23:46
  Author: felixonmars
Revision: 193060

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

Added:
  haskell-call-stack/repos/community-i686/
  haskell-call-stack/repos/community-i686/PKGBUILD
(from rev 193059, haskell-call-stack/trunk/PKGBUILD)
  haskell-call-stack/repos/community-x86_64/
  haskell-call-stack/repos/community-x86_64/PKGBUILD
(from rev 193059, haskell-call-stack/trunk/PKGBUILD)

---+
 community-i686/PKGBUILD   |   41 +
 community-x86_64/PKGBUILD |   41 +
 2 files changed, 82 insertions(+)

Copied: haskell-call-stack/repos/community-i686/PKGBUILD (from rev 193059, 
haskell-call-stack/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-10-23 15:23:46 UTC (rev 193060)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Roger Duran 
+
+_hkgname=call-stack
+pkgname=haskell-call-stack
+pkgver=0.1.0
+pkgrel=1
+pkgdesc="Use GHC call-stacks in a backward compatible way"
+url="https://github.com/sol/call-stack;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1")
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('f25f5e0992a39371079cc25c2a14b5abb872fa7d868a32753aac3a258b83b1e2')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--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"
+}

Copied: haskell-call-stack/repos/community-x86_64/PKGBUILD (from rev 193059, 
haskell-call-stack/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-10-23 15:23:46 UTC (rev 193060)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Roger Duran 
+
+_hkgname=call-stack
+pkgname=haskell-call-stack
+pkgver=0.1.0
+pkgrel=1
+pkgdesc="Use GHC call-stacks in a backward compatible way"
+url="https://github.com/sol/call-stack;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1")
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('f25f5e0992a39371079cc25c2a14b5abb872fa7d868a32753aac3a258b83b1e2')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--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"
+}


[arch-commits] Commit in (4 files)

2016-10-23 Thread Felix Yan
Date: Sunday, October 23, 2016 @ 15:23:17
  Author: felixonmars
Revision: 193059

addpkg: haskell-call-stack 0.1.0-1

Added:
  haskell-call-stack/
  haskell-call-stack/repos/
  haskell-call-stack/trunk/
  haskell-call-stack/trunk/PKGBUILD

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

Added: haskell-call-stack/trunk/PKGBUILD
===
--- haskell-call-stack/trunk/PKGBUILD   (rev 0)
+++ haskell-call-stack/trunk/PKGBUILD   2016-10-23 15:23:17 UTC (rev 193059)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Roger Duran 
+
+_hkgname=call-stack
+pkgname=haskell-call-stack
+pkgver=0.1.0
+pkgrel=1
+pkgdesc="Use GHC call-stacks in a backward compatible way"
+url="https://github.com/sol/call-stack;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1")
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('f25f5e0992a39371079cc25c2a14b5abb872fa7d868a32753aac3a258b83b1e2')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--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"
+}


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


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

2016-10-23 Thread Felix Yan
Date: Sunday, October 23, 2016 @ 15:15:00
  Author: felixonmars
Revision: 193058

archrelease: copy trunk to community-any

Added:
  yapf/repos/community-any/PKGBUILD
(from rev 193057, yapf/trunk/PKGBUILD)
Deleted:
  yapf/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-10-23 15:14:40 UTC (rev 193057)
+++ PKGBUILD2016-10-23 15:15:00 UTC (rev 193058)
@@ -1,52 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgbase=yapf
-pkgname=("yapf" "python2-yapf")
-pkgver=0.13.1
-pkgrel=1
-pkgdesc="Python style guide checker"
-arch=('any')
-url="http://github.com/google/yapf;
-license=('Apache')
-makedepends=('python-setuptools' 'python2-setuptools' 'git')
-checkdepends=('python-nose' 'python2-nose')
-source=("git+https://github.com/google/yapf.git#tag=v$pkgver;)
-sha256sums=('SKIP')
-
-prepare() {
-  cp -a yapf{,-py2}
-}
-
-build() {
-  cd "$srcdir"/yapf
-  python setup.py build
-
-  cd "$srcdir"/yapf-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/yapf
-  nosetests3
-
-  cd "$srcdir"/yapf-py2
-  nosetests2
-}
-
-package_yapf() {
-  depends=('python-setuptools')
-
-  cd yapf
-  python setup.py install -O1 --root="$pkgdir"
-}
-
-package_python2-yapf() {
-  depends=('python2-setuptools')
-
-  cd yapf-py2
-  python2 setup.py install -O1 --root="$pkgdir"
-  mv "$pkgdir"/usr/bin/yapf{,2}
-}
-
-# vim:set ts=2 sw=2 et:

Copied: yapf/repos/community-any/PKGBUILD (from rev 193057, yapf/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-10-23 15:15:00 UTC (rev 193058)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=yapf
+pkgname=("yapf" "python2-yapf")
+pkgver=0.13.2
+pkgrel=1
+pkgdesc="Python style guide checker"
+arch=('any')
+url="http://github.com/google/yapf;
+license=('Apache')
+makedepends=('python-setuptools' 'python2-setuptools' 'git')
+checkdepends=('python-nose' 'python2-nose')
+source=("git+https://github.com/google/yapf.git#tag=v$pkgver;)
+sha256sums=('SKIP')
+
+prepare() {
+  cp -a yapf{,-py2}
+}
+
+build() {
+  cd "$srcdir"/yapf
+  python setup.py build
+
+  cd "$srcdir"/yapf-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/yapf
+  nosetests3
+
+  cd "$srcdir"/yapf-py2
+  nosetests2
+}
+
+package_yapf() {
+  depends=('python-setuptools')
+
+  cd yapf
+  python setup.py install -O1 --root="$pkgdir"
+}
+
+package_python2-yapf() {
+  depends=('python2-setuptools')
+
+  cd yapf-py2
+  python2 setup.py install -O1 --root="$pkgdir"
+  mv "$pkgdir"/usr/bin/yapf{,2}
+}
+
+# vim:set ts=2 sw=2 et:


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

2016-10-23 Thread Felix Yan
Date: Sunday, October 23, 2016 @ 15:14:40
  Author: felixonmars
Revision: 193057

upgpkg: yapf 0.13.2-1

Modified:
  yapf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-23 14:52:52 UTC (rev 193056)
+++ PKGBUILD2016-10-23 15:14:40 UTC (rev 193057)
@@ -3,7 +3,7 @@
 
 pkgbase=yapf
 pkgname=("yapf" "python2-yapf")
-pkgver=0.13.1
+pkgver=0.13.2
 pkgrel=1
 pkgdesc="Python style guide checker"
 arch=('any')


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

2016-10-23 Thread Felix Yan
Date: Sunday, October 23, 2016 @ 14:52:52
  Author: felixonmars
Revision: 193056

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

Added:
  python-xattr/repos/community-i686/PKGBUILD
(from rev 193055, python-xattr/trunk/PKGBUILD)
  python-xattr/repos/community-x86_64/PKGBUILD
(from rev 193055, python-xattr/trunk/PKGBUILD)
Deleted:
  python-xattr/repos/community-i686/PKGBUILD
  python-xattr/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-10-23 14:52:17 UTC (rev 193055)
+++ community-i686/PKGBUILD 2016-10-23 14:52:52 UTC (rev 193056)
@@ -1,56 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgbase=python-xattr
-pkgname=('python-xattr' 'python2-xattr')
-pkgver=0.8.0
-pkgrel=1
-pkgdesc='Python wrapper for extended filesystem attributes'
-arch=('i686' 'x86_64')
-license=('MIT')
-url='http://github.com/xattr/xattr'
-makedepends=('python-setuptools' 'python2-setuptools' 'python-cffi' 
'python2-cffi' 'git')
-source=("git+https://github.com/xattr/xattr.git#tag=v$pkgver;)
-md5sums=('SKIP')
-
-prepare() {
-  cp -a xattr{,-py2}
-}
-
-build() {
-  cd "$srcdir"/xattr
-  python setup.py build
-
-  cd "$srcdir"/xattr-py2
-  python2 setup.py build
-}
-
-check() { (
-  # Build env doesn't have permission for those xattrs
-  cd "$srcdir"/xattr
-  python setup.py test
-
-  cd "$srcdir"/xattr-py2
-  python2 setup.py test
-  ) || warning "Tests failed"
-}
-
-package_python-xattr() {
-  depends=('python-cffi')
-
-  cd xattr
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
-}
-
-package_python2-xattr() {
-  depends=('python2-cffi')
-
-  cd xattr-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
-
-  mv "$pkgdir"/usr/bin/xattr{,2}
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-xattr/repos/community-i686/PKGBUILD (from rev 193055, 
python-xattr/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-10-23 14:52:52 UTC (rev 193056)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-xattr
+pkgname=('python-xattr' 'python2-xattr')
+pkgver=0.9.1
+pkgrel=1
+pkgdesc='Python wrapper for extended filesystem attributes'
+arch=('i686' 'x86_64')
+license=('MIT')
+url='http://github.com/xattr/xattr'
+makedepends=('python-setuptools' 'python2-setuptools' 'python-cffi' 
'python2-cffi' 'git')
+source=("git+https://github.com/xattr/xattr.git#tag=v$pkgver;)
+md5sums=('SKIP')
+
+prepare() {
+  cp -a xattr{,-py2}
+}
+
+build() {
+  cd "$srcdir"/xattr
+  python setup.py build
+
+  cd "$srcdir"/xattr-py2
+  python2 setup.py build
+}
+
+check() { (
+  # Build env doesn't have permission for those xattrs
+  cd "$srcdir"/xattr
+  python setup.py test
+
+  cd "$srcdir"/xattr-py2
+  python2 setup.py test
+  ) || warning "Tests failed"
+}
+
+package_python-xattr() {
+  depends=('python-cffi')
+
+  cd xattr
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
+}
+
+package_python2-xattr() {
+  depends=('python2-cffi')
+
+  cd xattr-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
+
+  mv "$pkgdir"/usr/bin/xattr{,2}
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-10-23 14:52:17 UTC (rev 193055)
+++ community-x86_64/PKGBUILD   2016-10-23 14:52:52 UTC (rev 193056)
@@ -1,56 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgbase=python-xattr
-pkgname=('python-xattr' 'python2-xattr')
-pkgver=0.8.0
-pkgrel=1
-pkgdesc='Python wrapper for extended filesystem attributes'
-arch=('i686' 'x86_64')
-license=('MIT')
-url='http://github.com/xattr/xattr'
-makedepends=('python-setuptools' 'python2-setuptools' 'python-cffi' 
'python2-cffi' 'git')
-source=("git+https://github.com/xattr/xattr.git#tag=v$pkgver;)
-md5sums=('SKIP')
-
-prepare() {
-  cp -a xattr{,-py2}
-}
-
-build() {
-  cd "$srcdir"/xattr
-  python setup.py build
-
-  cd "$srcdir"/xattr-py2
-  python2 setup.py build
-}
-
-check() { (
-  # Build env doesn't have permission for those xattrs
-  cd "$srcdir"/xattr
-  python setup.py test
-
-  cd "$srcdir"/xattr-py2
-  python2 setup.py test
-  ) || warning 

  1   2   >