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

2016-03-13 Thread Felix Yan
Date: Monday, March 14, 2016 @ 06:56:21
  Author: fyan
Revision: 166612

upgpkg: haskell-xml-hamlet 0.4.0.11-20

rebuild with aeson-0.11.1.1, concurrent-output-1.7.4, hpack-0.11.0, 
vector-binary-instances-0.2.3.1

Modified:
  haskell-xml-hamlet/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-14 05:51:49 UTC (rev 166611)
+++ PKGBUILD2016-03-14 05:56:21 UTC (rev 166612)
@@ -5,7 +5,7 @@
 _hkgname=xml-hamlet
 pkgname=haskell-xml-hamlet
 pkgver=0.4.0.11
-pkgrel=19
+pkgrel=20
 pkgdesc="Hamlet-style quasiquoter for XML content"
 url="http://www.yesodweb.com/;
 license=("custom:BSD3")


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

2016-03-13 Thread Felix Yan
Date: Monday, March 14, 2016 @ 06:56:43
  Author: fyan
Revision: 166613

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

Added:
  haskell-xml-hamlet/repos/community-staging-i686/
  haskell-xml-hamlet/repos/community-staging-i686/PKGBUILD
(from rev 166612, haskell-xml-hamlet/trunk/PKGBUILD)
  haskell-xml-hamlet/repos/community-staging-i686/haskell-xml-hamlet.install
(from rev 166612, haskell-xml-hamlet/trunk/haskell-xml-hamlet.install)
  haskell-xml-hamlet/repos/community-staging-x86_64/
  haskell-xml-hamlet/repos/community-staging-x86_64/PKGBUILD
(from rev 166612, haskell-xml-hamlet/trunk/PKGBUILD)
  haskell-xml-hamlet/repos/community-staging-x86_64/haskell-xml-hamlet.install
(from rev 166612, haskell-xml-hamlet/trunk/haskell-xml-hamlet.install)

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

Copied: haskell-xml-hamlet/repos/community-staging-i686/PKGBUILD (from rev 
166612, haskell-xml-hamlet/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-14 05:56:43 UTC (rev 166613)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=xml-hamlet
+pkgname=haskell-xml-hamlet
+pkgver=0.4.0.11
+pkgrel=20
+pkgdesc="Hamlet-style quasiquoter for XML content"
+url="http://www.yesodweb.com/;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-parsec" "haskell-shakespeare" "haskell-text"
+ "haskell-xml-conduit")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('3d598ad387e310e76a07f213afe35db06662611840d1bce3bcdf202668bc1e89')
+
+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.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.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-xml-hamlet/repos/community-staging-i686/haskell-xml-hamlet.install 
(from rev 166612, haskell-xml-hamlet/trunk/haskell-xml-hamlet.install)
===
--- community-staging-i686/haskell-xml-hamlet.install   
(rev 0)
+++ community-staging-i686/haskell-xml-hamlet.install   2016-03-14 05:56:43 UTC 
(rev 166613)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-xml-hamlet
+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-xml-hamlet/repos/community-staging-x86_64/PKGBUILD (from rev 
166612, haskell-xml-hamlet/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-14 05:56:43 UTC (rev 166613)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=xml-hamlet
+pkgname=haskell-xml-hamlet
+pkgver=0.4.0.11
+pkgrel=20
+pkgdesc="Hamlet-style quasiquoter for XML content"
+url="http://www.yesodweb.com/;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-parsec" "haskell-shakespeare" "haskell-text"
+ "haskell-xml-conduit")

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

2016-03-13 Thread Felix Yan
Date: Monday, March 14, 2016 @ 06:51:49
  Author: fyan
Revision: 166611

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

Added:
  haskell-wai-app-static/repos/community-staging-i686/
  haskell-wai-app-static/repos/community-staging-i686/PKGBUILD
(from rev 166610, haskell-wai-app-static/trunk/PKGBUILD)
  
haskell-wai-app-static/repos/community-staging-i686/haskell-wai-app-static.install
(from rev 166610, 
haskell-wai-app-static/trunk/haskell-wai-app-static.install)
  haskell-wai-app-static/repos/community-staging-x86_64/
  haskell-wai-app-static/repos/community-staging-x86_64/PKGBUILD
(from rev 166610, haskell-wai-app-static/trunk/PKGBUILD)
  
haskell-wai-app-static/repos/community-staging-x86_64/haskell-wai-app-static.install
(from rev 166610, 
haskell-wai-app-static/trunk/haskell-wai-app-static.install)

-+
 community-staging-i686/PKGBUILD |   49 ++
 community-staging-i686/haskell-wai-app-static.install   |   18 +
 community-staging-x86_64/PKGBUILD   |   49 ++
 community-staging-x86_64/haskell-wai-app-static.install |   18 +
 4 files changed, 134 insertions(+)

Copied: haskell-wai-app-static/repos/community-staging-i686/PKGBUILD (from rev 
166610, haskell-wai-app-static/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-14 05:51:49 UTC (rev 166611)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=wai-app-static
+pkgname=haskell-wai-app-static
+pkgver=3.1.4.1
+pkgrel=23
+pkgdesc="WAI application for static serving"
+url="http://www.yesodweb.com/book/web-application-interface;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-base64-bytestring" "haskell-blaze-builder"
+ "haskell-blaze-html" "haskell-blaze-markup" "haskell-byteable"
+ "haskell-cryptohash" "haskell-cryptohash-conduit" "haskell-file-embed"
+ "haskell-http-date" "haskell-http-types" "haskell-mime-types"
+ "haskell-old-locale" "haskell-optparse-applicative" "haskell-text"
+ "haskell-unix-compat" "haskell-unordered-containers" "haskell-wai"
+ "haskell-wai-extra" "haskell-warp" "haskell-zlib")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('7280e15192be2d80b2505da152ea828c448e1466401fc4a02e87052ce3515bd4')
+
+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-print
+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.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.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-wai-app-static/repos/community-staging-i686/haskell-wai-app-static.install
 (from rev 166610, haskell-wai-app-static/trunk/haskell-wai-app-static.install)
===
--- community-staging-i686/haskell-wai-app-static.install   
(rev 0)
+++ community-staging-i686/haskell-wai-app-static.install   2016-03-14 
05:51:49 UTC (rev 166611)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-wai-app-static
+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-wai-app-static/repos/community-staging-x86_64/PKGBUILD (from 
rev 166610, haskell-wai-app-static/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   

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

2016-03-13 Thread Felix Yan
Date: Monday, March 14, 2016 @ 06:51:00
  Author: fyan
Revision: 166610

upgpkg: haskell-wai-app-static 3.1.4.1-23

rebuild with aeson-0.11.1.1, concurrent-output-1.7.4, hpack-0.11.0, 
vector-binary-instances-0.2.3.1

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

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-14 05:50:21 UTC (rev 166609)
+++ PKGBUILD2016-03-14 05:51:00 UTC (rev 166610)
@@ -5,7 +5,7 @@
 _hkgname=wai-app-static
 pkgname=haskell-wai-app-static
 pkgver=3.1.4.1
-pkgrel=22
+pkgrel=23
 pkgdesc="WAI application for static serving"
 url="http://www.yesodweb.com/book/web-application-interface;
 license=("MIT")


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

2016-03-13 Thread Felix Yan
Date: Monday, March 14, 2016 @ 06:50:21
  Author: fyan
Revision: 166609

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 166608, haskell-yesod-auth/trunk/PKGBUILD)
  haskell-yesod-auth/repos/community-staging-i686/haskell-yesod-auth.install
(from rev 166608, haskell-yesod-auth/trunk/haskell-yesod-auth.install)
  haskell-yesod-auth/repos/community-staging-x86_64/
  haskell-yesod-auth/repos/community-staging-x86_64/PKGBUILD
(from rev 166608, haskell-yesod-auth/trunk/PKGBUILD)
  haskell-yesod-auth/repos/community-staging-x86_64/haskell-yesod-auth.install
(from rev 166608, haskell-yesod-auth/trunk/haskell-yesod-auth.install)

-+
 community-staging-i686/PKGBUILD |   52 ++
 community-staging-i686/haskell-yesod-auth.install   |   18 ++
 community-staging-x86_64/PKGBUILD   |   52 ++
 community-staging-x86_64/haskell-yesod-auth.install |   18 ++
 4 files changed, 140 insertions(+)

Copied: haskell-yesod-auth/repos/community-staging-i686/PKGBUILD (from rev 
166608, haskell-yesod-auth/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-14 05:50:21 UTC (rev 166609)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-auth
+pkgname=haskell-yesod-auth
+pkgver=1.4.12
+pkgrel=21
+pkgdesc="Authentication for Yesod."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "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")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('d1baf7dc08ee591fd8ba50a8e64a377a3a8d42575963b44e50ab0c145c2d9fa7')
+
+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.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.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-i686/haskell-yesod-auth.install 
(from rev 166608, haskell-yesod-auth/trunk/haskell-yesod-auth.install)
===
--- community-staging-i686/haskell-yesod-auth.install   
(rev 0)
+++ community-staging-i686/haskell-yesod-auth.install   2016-03-14 05:50:21 UTC 
(rev 166609)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-yesod-auth
+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: 

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

2016-03-13 Thread Felix Yan
Date: Monday, March 14, 2016 @ 06:49:59
  Author: fyan
Revision: 166608

upgpkg: haskell-yesod-auth 1.4.12-21

rebuild with aeson-0.11.1.1, concurrent-output-1.7.4, hpack-0.11.0, 
vector-binary-instances-0.2.3.1

Modified:
  haskell-yesod-auth/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-14 05:44:58 UTC (rev 166607)
+++ PKGBUILD2016-03-14 05:49:59 UTC (rev 166608)
@@ -5,7 +5,7 @@
 _hkgname=yesod-auth
 pkgname=haskell-yesod-auth
 pkgver=1.4.12
-pkgrel=20
+pkgrel=21
 pkgdesc="Authentication for Yesod."
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2016-03-13 Thread Felix Yan
Date: Monday, March 14, 2016 @ 06:44:58
  Author: fyan
Revision: 166607

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

Added:
  pandoc/repos/community-staging-i686/
  pandoc/repos/community-staging-i686/PKGBUILD
(from rev 166606, pandoc/trunk/PKGBUILD)
  pandoc/repos/community-staging-i686/haskell-pandoc.install
(from rev 166606, pandoc/trunk/haskell-pandoc.install)
  pandoc/repos/community-staging-x86_64/
  pandoc/repos/community-staging-x86_64/PKGBUILD
(from rev 166606, pandoc/trunk/PKGBUILD)
  pandoc/repos/community-staging-x86_64/haskell-pandoc.install
(from rev 166606, pandoc/trunk/haskell-pandoc.install)

-+
 community-staging-i686/PKGBUILD |   73 ++
 community-staging-i686/haskell-pandoc.install   |   18 +
 community-staging-x86_64/PKGBUILD   |   73 ++
 community-staging-x86_64/haskell-pandoc.install |   18 +
 4 files changed, 182 insertions(+)

Copied: pandoc/repos/community-staging-i686/PKGBUILD (from rev 166606, 
pandoc/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-14 05:44:58 UTC (rev 166607)
@@ -0,0 +1,73 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgbase=pandoc
+pkgname=(pandoc haskell-pandoc)
+pkgver=1.16.0.2
+pkgrel=27
+pkgdesc="Conversion between markup formats"
+url="http://pandoc.org;
+license=("GPL")
+arch=('i686' 'x86_64')
+makedepends=("ghc=7.10.3" "haskell-http" "haskell-juicypixels" "haskell-sha" 
"haskell-aeson"
+ "haskell-base64-bytestring" "haskell-blaze-html" 
"haskell-blaze-markup"
+ "haskell-cmark" "haskell-data-default" "haskell-mtl" 
"haskell-extensible-exceptions"
+ "haskell-filemanip" "haskell-haddock-library" 
"haskell-highlighting-kate"
+ "haskell-hslua" "haskell-http-client" "haskell-syb" 
"haskell-http-client-tls"
+ "haskell-http-types"  "haskell-text" "haskell-texmath" 
"haskell-network"
+ "haskell-old-time" "haskell-pandoc-types" "haskell-parsec" 
"haskell-random"
+ "haskell-scientific" "haskell-tagsoup" "haskell-temporary" 
"haskell-network-uri"
+ "haskell-unordered-containers" "haskell-zip-archive" 
"haskell-vector" "haskell-xml"
+ "haskell-yaml" "haskell-zlib")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('f5f3262ef4574a111936fea0118557c523a8b0eaa7fea84b64b377b20a80f348')
+
+prepare() {
+sed -e 's/aeson >= 0.*$/aeson >= 0.7.0.5,/' \
+-i ${pkgname}-${pkgver}/${pkgname}.cabal
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgbase}" 
--datasubdir="$pkgname" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-old-locale -fnetwork-uri -fhttps -f-trypandoc 
-f-embed_data_files
+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.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package_pandoc() {
+depends=('gmp' 'libffi' 'zlib')
+optdepends=('pandoc-citeproc: for citation rendering with pandoc-citeproc 
filter'
+'texlive-core: for pdf output')
+replaces=('pandoc-static')
+conflicts=('pandoc-static')
+
+cd "${srcdir}/${pkgbase}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -r "$pkgdir"/usr/{lib,share/doc}
+}
+
+package_haskell-pandoc() {
+pkgdesc="Conversion between markup formats (docs and libraries)"
+depends=("${makedepends[@]}" 'pandoc')
+install="haskell-pandoc.install"
+
+cd "${srcdir}/${pkgbase}-${pkgver}"
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${pkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -r "$pkgdir"/usr/share/{pandoc,man} "$pkgdir"/usr/bin
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/COPYING"
+}

Copied: pandoc/repos/community-staging-i686/haskell-pandoc.install (from rev 
166606, pandoc/trunk/haskell-pandoc.install)
===
--- community-staging-i686/haskell-pandoc.install   
(rev 0)
+++ community-staging-i686/haskell-pandoc.install   2016-03-14 

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

2016-03-13 Thread Felix Yan
Date: Monday, March 14, 2016 @ 06:44:34
  Author: fyan
Revision: 166606

upgpkg: pandoc 1.16.0.2-27

rebuild with aeson-0.11.1.1, concurrent-output-1.7.4, hpack-0.11.0, 
vector-binary-instances-0.2.3.1

Modified:
  pandoc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-14 05:05:53 UTC (rev 166605)
+++ PKGBUILD2016-03-14 05:44:34 UTC (rev 166606)
@@ -5,7 +5,7 @@
 pkgbase=pandoc
 pkgname=(pandoc haskell-pandoc)
 pkgver=1.16.0.2
-pkgrel=26
+pkgrel=27
 pkgdesc="Conversion between markup formats"
 url="http://pandoc.org;
 license=("GPL")


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

2016-03-13 Thread Felix Yan
Date: Monday, March 14, 2016 @ 06:05:53
  Author: fyan
Revision: 166605

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

Added:
  haskell-yaml/repos/community-staging-i686/
  haskell-yaml/repos/community-staging-i686/PKGBUILD
(from rev 166604, haskell-yaml/trunk/PKGBUILD)
  haskell-yaml/repos/community-staging-i686/haskell-yaml.install
(from rev 166604, haskell-yaml/trunk/haskell-yaml.install)
  haskell-yaml/repos/community-staging-x86_64/
  haskell-yaml/repos/community-staging-x86_64/PKGBUILD
(from rev 166604, haskell-yaml/trunk/PKGBUILD)
  haskell-yaml/repos/community-staging-x86_64/haskell-yaml.install
(from rev 166604, haskell-yaml/trunk/haskell-yaml.install)

---+
 community-staging-i686/PKGBUILD   |   45 
 community-staging-i686/haskell-yaml.install   |   18 +
 community-staging-x86_64/PKGBUILD |   45 
 community-staging-x86_64/haskell-yaml.install |   18 +
 4 files changed, 126 insertions(+)

Copied: haskell-yaml/repos/community-staging-i686/PKGBUILD (from rev 166604, 
haskell-yaml/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-14 05:05:53 UTC (rev 166605)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yaml
+pkgname=haskell-yaml
+pkgver=0.8.16
+pkgrel=8
+pkgdesc="Support for parsing and rendering YAML documents."
+url="http://github.com/snoyberg/yaml/;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-aeson" "haskell-attoparsec" "haskell-conduit" 
"haskell-vector"
+ "haskell-enclosed-exceptions" "haskell-resourcet" 
"haskell-scientific" "haskell-semigroups"
+ "haskell-text" "haskell-unordered-containers")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('d68ad3dd16e4b8ba943d0f58666d1f53be24923088df15f46be44bbbaf85c529')
+
+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-no-unicode -f-system-libyaml -f-no-exe
+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.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.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-yaml/repos/community-staging-i686/haskell-yaml.install (from 
rev 166604, haskell-yaml/trunk/haskell-yaml.install)
===
--- community-staging-i686/haskell-yaml.install (rev 0)
+++ community-staging-i686/haskell-yaml.install 2016-03-14 05:05:53 UTC (rev 
166605)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-yaml
+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-yaml/repos/community-staging-x86_64/PKGBUILD (from rev 166604, 
haskell-yaml/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-14 05:05:53 UTC (rev 166605)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yaml
+pkgname=haskell-yaml
+pkgver=0.8.16
+pkgrel=8
+pkgdesc="Support for parsing and rendering YAML documents."
+url="http://github.com/snoyberg/yaml/;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-aeson" "haskell-attoparsec" 

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

2016-03-13 Thread Felix Yan
Date: Monday, March 14, 2016 @ 06:04:49
  Author: fyan
Revision: 166604

upgpkg: haskell-yaml 0.8.16-8

rebuild with aeson-0.11.1.1, concurrent-output-1.7.4, hpack-0.11.0, 
vector-binary-instances-0.2.3.1

Modified:
  haskell-yaml/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-14 05:04:22 UTC (rev 166603)
+++ PKGBUILD2016-03-14 05:04:49 UTC (rev 166604)
@@ -5,7 +5,7 @@
 _hkgname=yaml
 pkgname=haskell-yaml
 pkgver=0.8.16
-pkgrel=7
+pkgrel=8
 pkgdesc="Support for parsing and rendering YAML documents."
 url="http://github.com/snoyberg/yaml/;
 license=("custom:BSD3")


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

2016-03-13 Thread Felix Yan
Date: Monday, March 14, 2016 @ 06:04:22
  Author: fyan
Revision: 166603

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 166602, haskell-yesod-form/trunk/PKGBUILD)
  haskell-yesod-form/repos/community-staging-i686/haskell-yesod-form.install
(from rev 166602, haskell-yesod-form/trunk/haskell-yesod-form.install)
  haskell-yesod-form/repos/community-staging-x86_64/
  haskell-yesod-form/repos/community-staging-x86_64/PKGBUILD
(from rev 166602, haskell-yesod-form/trunk/PKGBUILD)
  haskell-yesod-form/repos/community-staging-x86_64/haskell-yesod-form.install
(from rev 166602, haskell-yesod-form/trunk/haskell-yesod-form.install)

-+
 community-staging-i686/PKGBUILD |   48 ++
 community-staging-i686/haskell-yesod-form.install   |   18 ++
 community-staging-x86_64/PKGBUILD   |   48 ++
 community-staging-x86_64/haskell-yesod-form.install |   18 ++
 4 files changed, 132 insertions(+)

Copied: haskell-yesod-form/repos/community-staging-i686/PKGBUILD (from rev 
166602, haskell-yesod-form/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-14 05:04:22 UTC (rev 166603)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-form
+pkgname=haskell-yesod-form
+pkgver=1.4.6
+pkgrel=25
+pkgdesc="Form handling support for Yesod Web Framework"
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "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")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('1a20f58e0f06b92afc5bd31b5ab6b1d5c6645e2f7fd134c4b2e325d818b50e66')
+
+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.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.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-i686/haskell-yesod-form.install 
(from rev 166602, haskell-yesod-form/trunk/haskell-yesod-form.install)
===
--- community-staging-i686/haskell-yesod-form.install   
(rev 0)
+++ community-staging-i686/haskell-yesod-form.install   2016-03-14 05:04:22 UTC 
(rev 166603)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-yesod-form
+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-yesod-form/repos/community-staging-x86_64/PKGBUILD (from rev 
166602, haskell-yesod-form/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-14 05:04:22 UTC (rev 166603)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Felix Yan 

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

2016-03-13 Thread Felix Yan
Date: Monday, March 14, 2016 @ 06:00:44
  Author: fyan
Revision: 166601

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

---+
 community-staging-i686/PKGBUILD   |   47 
 community-staging-i686/haskell-authenticate.install   |   18 ++
 community-staging-x86_64/PKGBUILD |   47 
 community-staging-x86_64/haskell-authenticate.install |   18 ++
 4 files changed, 130 insertions(+)

Copied: haskell-authenticate/repos/community-staging-i686/PKGBUILD (from rev 
166600, haskell-authenticate/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-14 05:00:44 UTC (rev 166601)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=authenticate
+pkgname=haskell-authenticate
+pkgver=1.3.3
+pkgrel=18
+pkgdesc="Authentication methods for Haskell web applications."
+url="http://github.com/yesodweb/authenticate;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "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")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('6807cd32c5ff9b23cd6f184ffd7fb7f99c4a7f0dc645eae82f2d6dfbd1899bbe')
+
+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.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.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-i686/haskell-authenticate.install 
(from rev 166600, haskell-authenticate/trunk/haskell-authenticate.install)
===
--- community-staging-i686/haskell-authenticate.install 
(rev 0)
+++ community-staging-i686/haskell-authenticate.install 2016-03-14 05:00:44 UTC 
(rev 166601)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-authenticate
+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-authenticate/repos/community-staging-x86_64/PKGBUILD (from rev 
166600, haskell-authenticate/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-14 05:00:44 UTC (rev 166601)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# 

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

2016-03-13 Thread Felix Yan
Date: Monday, March 14, 2016 @ 05:57:22
  Author: fyan
Revision: 166599

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

Added:
  haskell-texmath/repos/community-staging-i686/
  haskell-texmath/repos/community-staging-i686/PKGBUILD
(from rev 166598, haskell-texmath/trunk/PKGBUILD)
  haskell-texmath/repos/community-staging-i686/haskell-texmath.install
(from rev 166598, haskell-texmath/trunk/haskell-texmath.install)
  haskell-texmath/repos/community-staging-x86_64/
  haskell-texmath/repos/community-staging-x86_64/PKGBUILD
(from rev 166598, haskell-texmath/trunk/PKGBUILD)
  haskell-texmath/repos/community-staging-x86_64/haskell-texmath.install
(from rev 166598, haskell-texmath/trunk/haskell-texmath.install)

--+
 community-staging-i686/PKGBUILD  |   44 +
 community-staging-i686/haskell-texmath.install   |   18 
 community-staging-x86_64/PKGBUILD|   44 +
 community-staging-x86_64/haskell-texmath.install |   18 
 4 files changed, 124 insertions(+)

Copied: haskell-texmath/repos/community-staging-i686/PKGBUILD (from rev 166598, 
haskell-texmath/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-14 04:57:22 UTC (rev 166599)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=texmath
+pkgname=haskell-texmath
+pkgver=0.8.4.2
+pkgrel=8
+pkgdesc="Conversion between formats used to represent mathematics."
+url="http://github.com/jgm/texmath;
+license=("GPL")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-mtl" "haskell-network-uri" 
"haskell-pandoc-types"
+ "haskell-parsec" "haskell-syb" "haskell-xml")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('ee18da2835eba8ec388d15b4fa08cb72d789bb345be3abc4eac1713f0052b17d')
+
+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 -f-executable
+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.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.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-texmath/repos/community-staging-i686/haskell-texmath.install 
(from rev 166598, haskell-texmath/trunk/haskell-texmath.install)
===
--- community-staging-i686/haskell-texmath.install  
(rev 0)
+++ community-staging-i686/haskell-texmath.install  2016-03-14 04:57:22 UTC 
(rev 166599)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-texmath
+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-texmath/repos/community-staging-x86_64/PKGBUILD (from rev 
166598, haskell-texmath/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-14 04:57:22 UTC (rev 166599)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=texmath
+pkgname=haskell-texmath
+pkgver=0.8.4.2
+pkgrel=8
+pkgdesc="Conversion between formats used to represent mathematics."
+url="http://github.com/jgm/texmath;
+license=("GPL")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-mtl" "haskell-network-uri" 
"haskell-pandoc-types"
+ 

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

2016-03-13 Thread Felix Yan
Date: Monday, March 14, 2016 @ 05:26:42
  Author: fyan
Revision: 166595

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

Added:
  haskell-pandoc-types/repos/community-staging-i686/
  haskell-pandoc-types/repos/community-staging-i686/PKGBUILD
(from rev 166594, haskell-pandoc-types/trunk/PKGBUILD)
  haskell-pandoc-types/repos/community-staging-i686/haskell-pandoc-types.install
(from rev 166594, haskell-pandoc-types/trunk/haskell-pandoc-types.install)
  haskell-pandoc-types/repos/community-staging-x86_64/
  haskell-pandoc-types/repos/community-staging-x86_64/PKGBUILD
(from rev 166594, haskell-pandoc-types/trunk/PKGBUILD)
  
haskell-pandoc-types/repos/community-staging-x86_64/haskell-pandoc-types.install
(from rev 166594, haskell-pandoc-types/trunk/haskell-pandoc-types.install)

---+
 community-staging-i686/PKGBUILD   |   42 
 community-staging-i686/haskell-pandoc-types.install   |   18 ++
 community-staging-x86_64/PKGBUILD |   42 
 community-staging-x86_64/haskell-pandoc-types.install |   18 ++
 4 files changed, 120 insertions(+)

Copied: haskell-pandoc-types/repos/community-staging-i686/PKGBUILD (from rev 
166594, haskell-pandoc-types/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-14 04:26:42 UTC (rev 166595)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=pandoc-types
+pkgname=haskell-pandoc-types
+pkgver=1.16.1
+pkgrel=7
+pkgdesc="Types for representing a structured document"
+url="http://johnmacfarlane.net/pandoc;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-aeson" "haskell-syb")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('846054157d7072ca3f7260b988a6752536b42bbd32c051400e55f46229b8179e')
+
+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.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.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-pandoc-types/repos/community-staging-i686/haskell-pandoc-types.install 
(from rev 166594, haskell-pandoc-types/trunk/haskell-pandoc-types.install)
===
--- community-staging-i686/haskell-pandoc-types.install 
(rev 0)
+++ community-staging-i686/haskell-pandoc-types.install 2016-03-14 04:26:42 UTC 
(rev 166595)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-pandoc-types
+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-pandoc-types/repos/community-staging-x86_64/PKGBUILD (from rev 
166594, haskell-pandoc-types/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-14 04:26:42 UTC (rev 166595)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=pandoc-types
+pkgname=haskell-pandoc-types
+pkgver=1.16.1
+pkgrel=7
+pkgdesc="Types for representing a structured document"
+url="http://johnmacfarlane.net/pandoc;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-aeson" "haskell-syb")
+options=('staticlibs')

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

2016-03-13 Thread Felix Yan
Date: Monday, March 14, 2016 @ 05:26:20
  Author: fyan
Revision: 166594

upgpkg: haskell-pandoc-types 1.16.1-7

rebuild with aeson-0.11.1.1, concurrent-output-1.7.4, hpack-0.11.0, 
vector-binary-instances-0.2.3.1

Modified:
  haskell-pandoc-types/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-14 04:01:14 UTC (rev 166593)
+++ PKGBUILD2016-03-14 04:26:20 UTC (rev 166594)
@@ -5,7 +5,7 @@
 _hkgname=pandoc-types
 pkgname=haskell-pandoc-types
 pkgver=1.16.1
-pkgrel=6
+pkgrel=7
 pkgdesc="Types for representing a structured document"
 url="http://johnmacfarlane.net/pandoc;
 license=("custom:BSD3")


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

2016-03-13 Thread Gaetan Bisson
Date: Monday, March 14, 2016 @ 05:24:19
  Author: bisson
Revision: 261425

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

Added:
  screen/repos/extra-i686/PKGBUILD
(from rev 261424, screen/trunk/PKGBUILD)
  screen/repos/extra-i686/install
(from rev 261424, screen/trunk/install)
  screen/repos/extra-i686/pam.d
(from rev 261424, screen/trunk/pam.d)
  screen/repos/extra-i686/tmpfiles.d
(from rev 261424, screen/trunk/tmpfiles.d)
  screen/repos/extra-x86_64/PKGBUILD
(from rev 261424, screen/trunk/PKGBUILD)
  screen/repos/extra-x86_64/install
(from rev 261424, screen/trunk/install)
  screen/repos/extra-x86_64/pam.d
(from rev 261424, screen/trunk/pam.d)
  screen/repos/extra-x86_64/tmpfiles.d
(from rev 261424, screen/trunk/tmpfiles.d)
Deleted:
  screen/repos/extra-i686/PKGBUILD
  screen/repos/extra-i686/install
  screen/repos/extra-i686/pam.d
  screen/repos/extra-x86_64/PKGBUILD
  screen/repos/extra-x86_64/install
  screen/repos/extra-x86_64/pam.d

-+
 /PKGBUILD   |  112 ++
 /install|   40 
 /pam.d  |2 
 extra-i686/PKGBUILD |   53 -
 extra-i686/install  |   20 
 extra-i686/pam.d|1 
 extra-i686/tmpfiles.d   |1 
 extra-x86_64/PKGBUILD   |   53 -
 extra-x86_64/install|   20 
 extra-x86_64/pam.d  |1 
 extra-x86_64/tmpfiles.d |1 
 11 files changed, 156 insertions(+), 148 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-03-14 04:23:25 UTC (rev 261424)
+++ extra-i686/PKGBUILD 2016-03-14 04:24:19 UTC (rev 261425)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson 
-# Contributor: Allan McRae 
-# Committer: dorphell 
-
-pkgname=screen
-pkgver=4.3.1
-pkgrel=2
-pkgdesc='Full-screen window manager that multiplexes a physical terminal'
-url='http://www.gnu.org/software/screen/'
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('ncurses' 'pam')
-validpgpkeys=('2EE59A5D0C50167B5535BBF1B708A383C53EF3A4')
-source=("http://ftp.gnu.org/gnu/screen/screen-${pkgver}.tar.gz"{,.sig}
-'pam.d')
-sha1sums=('a524761504e28480517e338b20c852f2ab100c93' 'SKIP'
-  '1ab4b512d2ac840d16db6986d7c98d7ce2f6383f')
-
-backup=('etc/screenrc' 'etc/pam.d/screen')
-options=('!makeflags')
-install=install
-
-_ptygroup=5 #the UID of our PTY/TTY group
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-
-   ./configure \
-   --prefix=/usr \
-   --mandir=/usr/share/man \
-   --infodir=/usr/share/info \
-   --enable-colors256 \
-   --enable-pam \
-   --enable-rxvt_osc \
-   --enable-telnet \
-   --with-pty-group=$_ptygroup \
-   --with-socket-dir=/run/screens \
-   --with-sys-screenrc=/etc/screenrc \
-
-   make
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}" install
-
-   install -Dm644 ../pam.d "${pkgdir}"/etc/pam.d/screen
-
-   install -Dm644 etc/completer.zsh 
"${pkgdir}"/usr/share/zsh/site-functions/_screen
-   install -Dm644 etc/etcscreenrc "${pkgdir}"/etc/screenrc
-   install -Dm644 etc/screenrc "${pkgdir}"/etc/skel/.screenrc
-}

Copied: screen/repos/extra-i686/PKGBUILD (from rev 261424, 
screen/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-03-14 04:24:19 UTC (rev 261425)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Allan McRae 
+# Committer: dorphell 
+
+pkgname=screen
+pkgver=4.3.1
+pkgrel=3
+pkgdesc='Full-screen window manager that multiplexes a physical terminal'
+url='http://www.gnu.org/software/screen/'
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('ncurses' 'pam')
+validpgpkeys=('2EE59A5D0C50167B5535BBF1B708A383C53EF3A4')
+source=("http://ftp.gnu.org/gnu/screen/screen-${pkgver}.tar.gz"{,.sig}
+'tmpfiles.d'
+'pam.d')
+sha1sums=('a524761504e28480517e338b20c852f2ab100c93' 'SKIP'
+  '76b9c70b77940eb1214fe65739f9f932dc57fb66'
+  '1ab4b512d2ac840d16db6986d7c98d7ce2f6383f')
+
+backup=('etc/screenrc' 'etc/pam.d/screen')
+options=('!makeflags')
+install=install
+
+_ptygroup=5 #the UID of our PTY/TTY group
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+
+   ./configure \
+   --prefix=/usr \
+   --mandir=/usr/share/man \
+   --infodir=/usr/share/info \
+   --enable-colors256 \
+   --enable-pam \
+   --enable-rxvt_osc \
+   --enable-telnet \
+   --with-pty-group=$_ptygroup \
+

[arch-commits] Commit in screen/trunk (PKGBUILD tmpfiles.d)

2016-03-13 Thread Gaetan Bisson
Date: Monday, March 14, 2016 @ 05:23:25
  Author: bisson
Revision: 261424

implement FS#47596

Added:
  screen/trunk/tmpfiles.d
Modified:
  screen/trunk/PKGBUILD

+
 PKGBUILD   |5 -
 tmpfiles.d |1 +
 2 files changed, 5 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-14 03:06:39 UTC (rev 261423)
+++ PKGBUILD2016-03-14 04:23:25 UTC (rev 261424)
@@ -5,7 +5,7 @@
 
 pkgname=screen
 pkgver=4.3.1
-pkgrel=2
+pkgrel=3
 pkgdesc='Full-screen window manager that multiplexes a physical terminal'
 url='http://www.gnu.org/software/screen/'
 arch=('i686' 'x86_64')
@@ -13,8 +13,10 @@
 depends=('ncurses' 'pam')
 validpgpkeys=('2EE59A5D0C50167B5535BBF1B708A383C53EF3A4')
 source=("http://ftp.gnu.org/gnu/screen/screen-${pkgver}.tar.gz"{,.sig}
+'tmpfiles.d'
 'pam.d')
 sha1sums=('a524761504e28480517e338b20c852f2ab100c93' 'SKIP'
+  '76b9c70b77940eb1214fe65739f9f932dc57fb66'
   '1ab4b512d2ac840d16db6986d7c98d7ce2f6383f')
 
 backup=('etc/screenrc' 'etc/pam.d/screen')
@@ -46,6 +48,7 @@
make DESTDIR="${pkgdir}" install
 
install -Dm644 ../pam.d "${pkgdir}"/etc/pam.d/screen
+   install -Dm644 ../tmpfiles.d "${pkgdir}"/usr/lib/tmpfiles.d/screen.conf
 
install -Dm644 etc/completer.zsh 
"${pkgdir}"/usr/share/zsh/site-functions/_screen
install -Dm644 etc/etcscreenrc "${pkgdir}"/etc/screenrc

Added: tmpfiles.d
===
--- tmpfiles.d  (rev 0)
+++ tmpfiles.d  2016-03-14 04:23:25 UTC (rev 261424)
@@ -0,0 +1 @@
+d /run/screens 0755 root root -


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

2016-03-13 Thread Felix Yan
Date: Monday, March 14, 2016 @ 05:01:14
  Author: fyan
Revision: 166593

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

Added:
  haskell-yesod-core/repos/community-staging-i686/
  haskell-yesod-core/repos/community-staging-i686/PKGBUILD
(from rev 166592, haskell-yesod-core/trunk/PKGBUILD)
  haskell-yesod-core/repos/community-staging-i686/haskell-yesod-core.install
(from rev 166592, haskell-yesod-core/trunk/haskell-yesod-core.install)
  haskell-yesod-core/repos/community-staging-x86_64/
  haskell-yesod-core/repos/community-staging-x86_64/PKGBUILD
(from rev 166592, haskell-yesod-core/trunk/PKGBUILD)
  haskell-yesod-core/repos/community-staging-x86_64/haskell-yesod-core.install
(from rev 166592, haskell-yesod-core/trunk/haskell-yesod-core.install)

-+
 community-staging-i686/PKGBUILD |   54 ++
 community-staging-i686/haskell-yesod-core.install   |   18 ++
 community-staging-x86_64/PKGBUILD   |   54 ++
 community-staging-x86_64/haskell-yesod-core.install |   18 ++
 4 files changed, 144 insertions(+)

Copied: haskell-yesod-core/repos/community-staging-i686/PKGBUILD (from rev 
166592, haskell-yesod-core/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-14 04:01:14 UTC (rev 166593)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-core
+pkgname=haskell-yesod-core
+pkgver=1.4.19
+pkgrel=18
+pkgdesc="Creation of type-safe, RESTful web applications."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-aeson" "haskell-auto-update" 
"haskell-blaze-builder"
+ "haskell-blaze-html" "haskell-blaze-markup" "haskell-byteable"
+ "haskell-case-insensitive" "haskell-cereal" "haskell-clientsession"
+ "haskell-conduit" "haskell-conduit-extra" "haskell-cookie"
+ "haskell-data-default" "haskell-exceptions" "haskell-fast-logger"
+ "haskell-http-types" "haskell-lifted-base" "haskell-monad-control"
+ "haskell-monad-logger" "haskell-mtl" "haskell-mwc-random"
+ "haskell-old-locale" "haskell-parsec" "haskell-path-pieces"
+ "haskell-primitive" "haskell-random" "haskell-resourcet" 
"haskell-safe"
+ "haskell-semigroups" "haskell-shakespeare" "haskell-text"
+ "haskell-transformers-base" "haskell-unix-compat"
+ "haskell-unordered-containers" "haskell-vector" "haskell-wai"
+ "haskell-wai-extra" "haskell-wai-logger" "haskell-warp" 
"haskell-word8")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('8425c1df703521b020b476035f572e953ac356ce6f5e35c424b29f0d5ff76ded')
+
+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.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.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-core/repos/community-staging-i686/haskell-yesod-core.install 
(from rev 166592, haskell-yesod-core/trunk/haskell-yesod-core.install)
===
--- community-staging-i686/haskell-yesod-core.install   
(rev 0)
+++ community-staging-i686/haskell-yesod-core.install   2016-03-14 04:01:14 UTC 
(rev 166593)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-yesod-core
+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 

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

2016-03-13 Thread Felix Yan
Date: Monday, March 14, 2016 @ 05:00:54
  Author: fyan
Revision: 166592

upgpkg: haskell-yesod-core 1.4.19-18

rebuild with aeson-0.11.1.1, concurrent-output-1.7.4, hpack-0.11.0, 
vector-binary-instances-0.2.3.1

Modified:
  haskell-yesod-core/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-14 03:57:34 UTC (rev 166591)
+++ PKGBUILD2016-03-14 04:00:54 UTC (rev 166592)
@@ -5,7 +5,7 @@
 _hkgname=yesod-core
 pkgname=haskell-yesod-core
 pkgver=1.4.19
-pkgrel=17
+pkgrel=18
 pkgdesc="Creation of type-safe, RESTful web applications."
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2016-03-13 Thread Felix Yan
Date: Monday, March 14, 2016 @ 04:57:13
  Author: fyan
Revision: 166590

upgpkg: haskell-persistent-template 2.1.6-3

rebuild with aeson-0.11.1.1, concurrent-output-1.7.4, hpack-0.11.0, 
vector-binary-instances-0.2.3.1

Modified:
  haskell-persistent-template/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-14 03:48:37 UTC (rev 166589)
+++ PKGBUILD2016-03-14 03:57:13 UTC (rev 166590)
@@ -5,7 +5,7 @@
 _hkgname=persistent-template
 pkgname=haskell-persistent-template
 pkgver=2.1.6
-pkgrel=2
+pkgrel=3
 pkgdesc="Type-safe, non-relational, multi-backend persistence"
 url="http://www.yesodweb.com/book/persistent;
 license=("MIT")


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

2016-03-13 Thread Felix Yan
Date: Monday, March 14, 2016 @ 04:57:34
  Author: fyan
Revision: 166591

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 166590, haskell-persistent-template/trunk/PKGBUILD)
  
haskell-persistent-template/repos/community-staging-i686/haskell-persistent-template.install
(from rev 166590, 
haskell-persistent-template/trunk/haskell-persistent-template.install)
  haskell-persistent-template/repos/community-staging-x86_64/
  haskell-persistent-template/repos/community-staging-x86_64/PKGBUILD
(from rev 166590, haskell-persistent-template/trunk/PKGBUILD)
  
haskell-persistent-template/repos/community-staging-x86_64/haskell-persistent-template.install
(from rev 166590, 
haskell-persistent-template/trunk/haskell-persistent-template.install)

--+
 community-staging-i686/PKGBUILD  |   45 ++
 community-staging-i686/haskell-persistent-template.install   |   18 
 community-staging-x86_64/PKGBUILD|   45 ++
 community-staging-x86_64/haskell-persistent-template.install |   18 
 4 files changed, 126 insertions(+)

Copied: haskell-persistent-template/repos/community-staging-i686/PKGBUILD (from 
rev 166590, haskell-persistent-template/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-14 03:57:34 UTC (rev 166591)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=persistent-template
+pkgname=haskell-persistent-template
+pkgver=2.1.6
+pkgrel=3
+pkgdesc="Type-safe, non-relational, multi-backend persistence"
+url="http://www.yesodweb.com/book/persistent;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "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")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('818a89a082bec8e812c69d2e5069468f61c23d769456736318836cbffac56653')
+
+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.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.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-i686/haskell-persistent-template.install
 (from rev 166590, 
haskell-persistent-template/trunk/haskell-persistent-template.install)
===
--- community-staging-i686/haskell-persistent-template.install  
(rev 0)
+++ community-staging-i686/haskell-persistent-template.install  2016-03-14 
03:57:34 UTC (rev 166591)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-persistent-template
+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-persistent-template/repos/community-staging-x86_64/PKGBUILD 
(from rev 166590, haskell-persistent-template/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-14 03:57:34 UTC (rev 166591)
@@ -0,0 +1,45 @@

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

2016-03-13 Thread Felix Yan
Date: Monday, March 14, 2016 @ 04:48:16
  Author: fyan
Revision: 166588

upgpkg: haskell-persistent 2.2.4.1-3

rebuild with aeson-0.11.1.1, concurrent-output-1.7.4, hpack-0.11.0, 
vector-binary-instances-0.2.3.1

Modified:
  haskell-persistent/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-14 03:46:42 UTC (rev 166587)
+++ PKGBUILD2016-03-14 03:48:16 UTC (rev 166588)
@@ -5,7 +5,7 @@
 _hkgname=persistent
 pkgname=haskell-persistent
 pkgver=2.2.4.1
-pkgrel=2
+pkgrel=3
 pkgdesc="Type-safe, multi-backend data serialization"
 url="http://www.yesodweb.com/book/persistent;
 license=("MIT")


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

2016-03-13 Thread Felix Yan
Date: Monday, March 14, 2016 @ 04:48:37
  Author: fyan
Revision: 166589

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

-+
 community-staging-i686/PKGBUILD |   49 ++
 community-staging-i686/haskell-persistent.install   |   18 ++
 community-staging-x86_64/PKGBUILD   |   49 ++
 community-staging-x86_64/haskell-persistent.install |   18 ++
 4 files changed, 134 insertions(+)

Copied: haskell-persistent/repos/community-staging-i686/PKGBUILD (from rev 
166588, haskell-persistent/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-14 03:48:37 UTC (rev 166589)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=persistent
+pkgname=haskell-persistent
+pkgver=2.2.4.1
+pkgrel=3
+pkgdesc="Type-safe, multi-backend data serialization"
+url="http://www.yesodweb.com/book/persistent;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "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")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('1473bdd952854d7f5fdb5896d2df07ef1ecf301c7fdb136054f49625329d50db')
+
+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.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.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-i686/haskell-persistent.install 
(from rev 166588, haskell-persistent/trunk/haskell-persistent.install)
===
--- community-staging-i686/haskell-persistent.install   
(rev 0)
+++ community-staging-i686/haskell-persistent.install   2016-03-14 03:48:37 UTC 
(rev 166589)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-persistent
+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-persistent/repos/community-staging-x86_64/PKGBUILD (from rev 
166588, haskell-persistent/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ 

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

2016-03-13 Thread Felix Yan
Date: Monday, March 14, 2016 @ 04:46:42
  Author: fyan
Revision: 166587

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

Added:
  haskell-wai-extra/repos/community-staging-i686/
  haskell-wai-extra/repos/community-staging-i686/PKGBUILD
(from rev 166586, haskell-wai-extra/trunk/PKGBUILD)
  haskell-wai-extra/repos/community-staging-i686/haskell-wai-extra.install
(from rev 166586, haskell-wai-extra/trunk/haskell-wai-extra.install)
  haskell-wai-extra/repos/community-staging-x86_64/
  haskell-wai-extra/repos/community-staging-x86_64/PKGBUILD
(from rev 166586, haskell-wai-extra/trunk/PKGBUILD)
  haskell-wai-extra/repos/community-staging-x86_64/haskell-wai-extra.install
(from rev 166586, haskell-wai-extra/trunk/haskell-wai-extra.install)

+
 community-staging-i686/PKGBUILD|   48 +++
 community-staging-i686/haskell-wai-extra.install   |   18 +++
 community-staging-x86_64/PKGBUILD  |   48 +++
 community-staging-x86_64/haskell-wai-extra.install |   18 +++
 4 files changed, 132 insertions(+)

Copied: haskell-wai-extra/repos/community-staging-i686/PKGBUILD (from rev 
166586, haskell-wai-extra/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-14 03:46:42 UTC (rev 166587)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=wai-extra
+pkgname=haskell-wai-extra
+pkgver=3.0.14.1
+pkgrel=5
+pkgdesc="Provides some basic WAI handlers and middleware."
+url="http://github.com/yesodweb/wai;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-aeson" "haskell-ansi-terminal" 
"haskell-base64-bytestring"
+ "haskell-blaze-builder" "haskell-case-insensitive" "haskell-cookie"
+ "haskell-data-default-class" "haskell-fast-logger" 
"haskell-http-types"
+ "haskell-iproute" "haskell-lifted-base" "haskell-network" 
"haskell-old-locale"
+ "haskell-resourcet" "haskell-streaming-commons" "haskell-stringsearch"
+ "haskell-text" "haskell-unix-compat" "haskell-vault" "haskell-void" 
"haskell-wai"
+ "haskell-wai-logger" "haskell-word8" "haskell-zlib")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('3c76f41acf9a4351ebf51908acd3febbef1cf66481933e1e34dc99642d6054dd')
+
+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.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.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-wai-extra/repos/community-staging-i686/haskell-wai-extra.install (from 
rev 166586, haskell-wai-extra/trunk/haskell-wai-extra.install)
===
--- community-staging-i686/haskell-wai-extra.install
(rev 0)
+++ community-staging-i686/haskell-wai-extra.install2016-03-14 03:46:42 UTC 
(rev 166587)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-wai-extra
+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-wai-extra/repos/community-staging-x86_64/PKGBUILD (from rev 
166586, haskell-wai-extra/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-14 03:46:42 UTC (rev 166587)
@@ -0,0 +1,48 @@

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

2016-03-13 Thread Felix Yan
Date: Monday, March 14, 2016 @ 04:45:56
  Author: fyan
Revision: 166586

upgpkg: haskell-wai-extra 3.0.14.1-5

rebuild with aeson-0.11.1.1, concurrent-output-1.7.4, hpack-0.11.0, 
vector-binary-instances-0.2.3.1

Modified:
  haskell-wai-extra/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-14 03:45:24 UTC (rev 166585)
+++ PKGBUILD2016-03-14 03:45:56 UTC (rev 166586)
@@ -5,7 +5,7 @@
 _hkgname=wai-extra
 pkgname=haskell-wai-extra
 pkgver=3.0.14.1
-pkgrel=4
+pkgrel=5
 pkgdesc="Provides some basic WAI handlers and middleware."
 url="http://github.com/yesodweb/wai;
 license=("MIT")


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

2016-03-13 Thread Felix Yan
Date: Monday, March 14, 2016 @ 04:45:24
  Author: fyan
Revision: 166585

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

Added:
  haskell-shakespeare/repos/community-staging-i686/
  haskell-shakespeare/repos/community-staging-i686/PKGBUILD
(from rev 166584, haskell-shakespeare/trunk/PKGBUILD)
  haskell-shakespeare/repos/community-staging-i686/haskell-shakespeare.install
(from rev 166584, haskell-shakespeare/trunk/haskell-shakespeare.install)
  haskell-shakespeare/repos/community-staging-x86_64/
  haskell-shakespeare/repos/community-staging-x86_64/PKGBUILD
(from rev 166584, haskell-shakespeare/trunk/PKGBUILD)
  haskell-shakespeare/repos/community-staging-x86_64/haskell-shakespeare.install
(from rev 166584, haskell-shakespeare/trunk/haskell-shakespeare.install)

--+
 community-staging-i686/PKGBUILD  |   45 +
 community-staging-i686/haskell-shakespeare.install   |   18 ++
 community-staging-x86_64/PKGBUILD|   45 +
 community-staging-x86_64/haskell-shakespeare.install |   18 ++
 4 files changed, 126 insertions(+)

Copied: haskell-shakespeare/repos/community-staging-i686/PKGBUILD (from rev 
166584, haskell-shakespeare/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-14 03:45:24 UTC (rev 166585)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=shakespeare
+pkgname=haskell-shakespeare
+pkgver=2.0.7
+pkgrel=11
+pkgdesc="A toolkit for making compile-time interpolated templates"
+url="http://www.yesodweb.com/book/shakespearean-templates;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-aeson" "haskell-blaze-html" 
"haskell-blaze-markup"
+ "haskell-exceptions" "haskell-parsec" "haskell-scientific" 
"haskell-text"
+ "haskell-unordered-containers" "haskell-vector")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('7a567d6effb68c7b39903fb1fccee54e6a1222a4746b5135da5623c406281668')
+
+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-test_roy -f-test_coffee -f-test_export
+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.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.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-shakespeare/repos/community-staging-i686/haskell-shakespeare.install 
(from rev 166584, haskell-shakespeare/trunk/haskell-shakespeare.install)
===
--- community-staging-i686/haskell-shakespeare.install  
(rev 0)
+++ community-staging-i686/haskell-shakespeare.install  2016-03-14 03:45:24 UTC 
(rev 166585)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-shakespeare
+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-shakespeare/repos/community-staging-x86_64/PKGBUILD (from rev 
166584, haskell-shakespeare/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-14 03:45:24 UTC (rev 166585)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=shakespeare
+pkgname=haskell-shakespeare
+pkgver=2.0.7
+pkgrel=11
+pkgdesc="A 

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

2016-03-13 Thread Felix Yan
Date: Monday, March 14, 2016 @ 04:44:42
  Author: fyan
Revision: 166584

upgpkg: haskell-shakespeare 2.0.7-11

rebuild with aeson-0.11.1.1, concurrent-output-1.7.4, hpack-0.11.0, 
vector-binary-instances-0.2.3.1

Modified:
  haskell-shakespeare/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-14 03:41:16 UTC (rev 166583)
+++ PKGBUILD2016-03-14 03:44:42 UTC (rev 166584)
@@ -5,7 +5,7 @@
 _hkgname=shakespeare
 pkgname=haskell-shakespeare
 pkgver=2.0.7
-pkgrel=10
+pkgrel=11
 pkgdesc="A toolkit for making compile-time interpolated templates"
 url="http://www.yesodweb.com/book/shakespearean-templates;
 license=("MIT")


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

2016-03-13 Thread Felix Yan
Date: Monday, March 14, 2016 @ 04:41:16
  Author: fyan
Revision: 166583

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

Added:
  haskell-aeson-compat/repos/community-staging-i686/
  haskell-aeson-compat/repos/community-staging-i686/PKGBUILD
(from rev 166582, haskell-aeson-compat/trunk/PKGBUILD)
  haskell-aeson-compat/repos/community-staging-i686/haskell-aeson-compat.install
(from rev 166582, haskell-aeson-compat/trunk/haskell-aeson-compat.install)
  haskell-aeson-compat/repos/community-staging-x86_64/
  haskell-aeson-compat/repos/community-staging-x86_64/PKGBUILD
(from rev 166582, haskell-aeson-compat/trunk/PKGBUILD)
  
haskell-aeson-compat/repos/community-staging-x86_64/haskell-aeson-compat.install
(from rev 166582, haskell-aeson-compat/trunk/haskell-aeson-compat.install)

---+
 community-staging-i686/PKGBUILD   |   51 
 community-staging-i686/haskell-aeson-compat.install   |   18 +
 community-staging-x86_64/PKGBUILD |   51 
 community-staging-x86_64/haskell-aeson-compat.install |   18 +
 4 files changed, 138 insertions(+)

Copied: haskell-aeson-compat/repos/community-staging-i686/PKGBUILD (from rev 
166582, haskell-aeson-compat/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-14 03:41:16 UTC (rev 166583)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=aeson-compat
+pkgname=haskell-aeson-compat
+pkgver=0.3.1.0
+pkgrel=7
+pkgdesc="Compatibility layer for aeson"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-aeson" "haskell-attoparsec" 
"haskell-exceptions" "haskell-hashable"
+ "haskell-scientific" "haskell-text" "haskell-time-locale-compat" 
"haskell-unordered-containers"
+ "haskell-vector")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('9275040d031433eb0006bce8228a0828e058d547c7d07d61ab0b22154286d736')
+
+prepare() {
+# nats is an empty package in new GHC
+sed -e '/nats/d' \
+-e 's/aeson>=0.7.0.6 && <0.11.1/aeson  
  >=0.7.0.6 \&\& <0.12/' \
+-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
+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.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.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-aeson-compat/repos/community-staging-i686/haskell-aeson-compat.install 
(from rev 166582, haskell-aeson-compat/trunk/haskell-aeson-compat.install)
===
--- community-staging-i686/haskell-aeson-compat.install 
(rev 0)
+++ community-staging-i686/haskell-aeson-compat.install 2016-03-14 03:41:16 UTC 
(rev 166583)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-aeson-compat
+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-aeson-compat/repos/community-staging-x86_64/PKGBUILD (from rev 
166582, haskell-aeson-compat/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-14 03:41:16 UTC (rev 166583)
@@ -0,0 +1,51 @@
+# $Id$

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

2016-03-13 Thread Felix Yan
Date: Monday, March 14, 2016 @ 04:40:53
  Author: fyan
Revision: 166582

upgpkg: haskell-aeson-compat 0.3.1.0-7

rebuild with aeson-0.11.1.1, concurrent-output-1.7.4, hpack-0.11.0, 
vector-binary-instances-0.2.3.1

Modified:
  haskell-aeson-compat/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-14 03:40:11 UTC (rev 166581)
+++ PKGBUILD2016-03-14 03:40:53 UTC (rev 166582)
@@ -5,7 +5,7 @@
 _hkgname=aeson-compat
 pkgname=haskell-aeson-compat
 pkgver=0.3.1.0
-pkgrel=6
+pkgrel=7
 pkgdesc="Compatibility layer for aeson"
 url="http://hackage.haskell.org/package/${_hkgname};
 license=("custom:BSD3")


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

2016-03-13 Thread Felix Yan
Date: Monday, March 14, 2016 @ 04:40:11
  Author: fyan
Revision: 166581

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

Added:
  haskell-warp/repos/community-staging-i686/
  haskell-warp/repos/community-staging-i686/PKGBUILD
(from rev 166580, haskell-warp/trunk/PKGBUILD)
  haskell-warp/repos/community-staging-i686/haskell-warp.install
(from rev 166580, haskell-warp/trunk/haskell-warp.install)
  haskell-warp/repos/community-staging-x86_64/
  haskell-warp/repos/community-staging-x86_64/PKGBUILD
(from rev 166580, haskell-warp/trunk/PKGBUILD)
  haskell-warp/repos/community-staging-x86_64/haskell-warp.install
(from rev 166580, haskell-warp/trunk/haskell-warp.install)

---+
 community-staging-i686/PKGBUILD   |   52 
 community-staging-i686/haskell-warp.install   |   18 
 community-staging-x86_64/PKGBUILD |   52 
 community-staging-x86_64/haskell-warp.install |   18 
 4 files changed, 140 insertions(+)

Copied: haskell-warp/repos/community-staging-i686/PKGBUILD (from rev 166580, 
haskell-warp/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-14 03:40:11 UTC (rev 166581)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=warp
+pkgname=haskell-warp
+pkgver=3.2.3
+pkgrel=7
+pkgdesc="A fast, light-weight web server for WAI applications."
+url="http://github.com/yesodweb/wai;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-auto-update" "haskell-blaze-builder"
+ "haskell-case-insensitive" "haskell-hashable" "haskell-http-date"
+ "haskell-http-types" "haskell-http2" "haskell-iproute" 
"haskell-network"
+ "haskell-simple-sendfile" "haskell-stm" "haskell-streaming-commons"
+ "haskell-text" "haskell-unix-compat" "haskell-vault" "haskell-wai"
+ "haskell-word8")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('3a218d436cd77d41a157e67721ac59892e70f09fcd39594fc4707dabec760ee8')
+
+prepare() {
+sed -i '/bytestring-builder/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-warp-debug -fallow-sendfilefd -f-network-bytestring
+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.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.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-warp/repos/community-staging-i686/haskell-warp.install (from 
rev 166580, haskell-warp/trunk/haskell-warp.install)
===
--- community-staging-i686/haskell-warp.install (rev 0)
+++ community-staging-i686/haskell-warp.install 2016-03-14 03:40:11 UTC (rev 
166581)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-warp
+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-warp/repos/community-staging-x86_64/PKGBUILD (from rev 166580, 
haskell-warp/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-14 03:40:11 UTC (rev 166581)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=warp
+pkgname=haskell-warp

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

2016-03-13 Thread Felix Yan
Date: Monday, March 14, 2016 @ 04:39:51
  Author: fyan
Revision: 166580

upgpkg: haskell-warp 3.2.3-7

rebuild with aeson-0.11.1.1, concurrent-output-1.7.4, hpack-0.11.0, 
vector-binary-instances-0.2.3.1

Modified:
  haskell-warp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-14 03:34:19 UTC (rev 166579)
+++ PKGBUILD2016-03-14 03:39:51 UTC (rev 166580)
@@ -5,7 +5,7 @@
 _hkgname=warp
 pkgname=haskell-warp
 pkgver=3.2.3
-pkgrel=6
+pkgrel=7
 pkgdesc="A fast, light-weight web server for WAI applications."
 url="http://github.com/yesodweb/wai;
 license=("MIT")


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

2016-03-13 Thread Felix Yan
Date: Monday, March 14, 2016 @ 04:34:19
  Author: fyan
Revision: 166579

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

Added:
  haskell-http2/repos/community-staging-i686/
  haskell-http2/repos/community-staging-i686/PKGBUILD
(from rev 166578, haskell-http2/trunk/PKGBUILD)
  haskell-http2/repos/community-staging-i686/haskell-http2.install
(from rev 166578, haskell-http2/trunk/haskell-http2.install)
  haskell-http2/repos/community-staging-x86_64/
  haskell-http2/repos/community-staging-x86_64/PKGBUILD
(from rev 166578, haskell-http2/trunk/PKGBUILD)
  haskell-http2/repos/community-staging-x86_64/haskell-http2.install
(from rev 166578, haskell-http2/trunk/haskell-http2.install)

+
 community-staging-i686/PKGBUILD|   49 +++
 community-staging-i686/haskell-http2.install   |   18 
 community-staging-x86_64/PKGBUILD  |   49 +++
 community-staging-x86_64/haskell-http2.install |   18 
 4 files changed, 134 insertions(+)

Copied: haskell-http2/repos/community-staging-i686/PKGBUILD (from rev 166578, 
haskell-http2/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-14 03:34:19 UTC (rev 166579)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http2
+pkgname=haskell-http2
+pkgver=1.5.2
+pkgrel=2
+pkgdesc="HTTP/2.0 library including frames and HPACK"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-aeson" "haskell-aeson-pretty" "haskell-hex"
+ "haskell-psqueues" "haskell-stm" "haskell-text" "haskell-vector")
+makedepends=('haskell-word8')
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('8517079c1418c93e33324612a7fa657af40dedef3c0d56a9a2031bfcf6900f70')
+
+prepare() {
+sed -i '/bytestring-builder/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-devel
+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.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.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-http2/repos/community-staging-i686/haskell-http2.install (from 
rev 166578, haskell-http2/trunk/haskell-http2.install)
===
--- community-staging-i686/haskell-http2.install
(rev 0)
+++ community-staging-i686/haskell-http2.install2016-03-14 03:34:19 UTC 
(rev 166579)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-http2
+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-http2/repos/community-staging-x86_64/PKGBUILD (from rev 166578, 
haskell-http2/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-14 03:34:19 UTC (rev 166579)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http2
+pkgname=haskell-http2
+pkgver=1.5.2
+pkgrel=2
+pkgdesc="HTTP/2.0 library including frames and HPACK"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" 

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

2016-03-13 Thread Felix Yan
Date: Monday, March 14, 2016 @ 04:33:59
  Author: fyan
Revision: 166578

upgpkg: haskell-http2 1.5.2-2

rebuild with aeson-0.11.1.1, concurrent-output-1.7.4, hpack-0.11.0, 
vector-binary-instances-0.2.3.1

Modified:
  haskell-http2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-14 03:23:00 UTC (rev 166577)
+++ PKGBUILD2016-03-14 03:33:59 UTC (rev 166578)
@@ -5,7 +5,7 @@
 _hkgname=http2
 pkgname=haskell-http2
 pkgver=1.5.2
-pkgrel=1
+pkgrel=2
 pkgdesc="HTTP/2.0 library including frames and HPACK"
 url="http://hackage.haskell.org/package/${_hkgname};
 license=("custom:BSD3")


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

2016-03-13 Thread Felix Yan
Date: Monday, March 14, 2016 @ 04:23:00
  Author: fyan
Revision: 166577

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

Added:
  haskell-aeson-pretty/repos/community-staging-i686/
  haskell-aeson-pretty/repos/community-staging-i686/PKGBUILD
(from rev 166576, haskell-aeson-pretty/trunk/PKGBUILD)
  haskell-aeson-pretty/repos/community-staging-i686/haskell-aeson-pretty.install
(from rev 166576, haskell-aeson-pretty/trunk/haskell-aeson-pretty.install)
  haskell-aeson-pretty/repos/community-staging-x86_64/
  haskell-aeson-pretty/repos/community-staging-x86_64/PKGBUILD
(from rev 166576, haskell-aeson-pretty/trunk/PKGBUILD)
  
haskell-aeson-pretty/repos/community-staging-x86_64/haskell-aeson-pretty.install
(from rev 166576, haskell-aeson-pretty/trunk/haskell-aeson-pretty.install)

---+
 community-staging-i686/PKGBUILD   |   44 
 community-staging-i686/haskell-aeson-pretty.install   |   18 ++
 community-staging-x86_64/PKGBUILD |   44 
 community-staging-x86_64/haskell-aeson-pretty.install |   18 ++
 4 files changed, 124 insertions(+)

Copied: haskell-aeson-pretty/repos/community-staging-i686/PKGBUILD (from rev 
166576, haskell-aeson-pretty/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-14 03:23:00 UTC (rev 166577)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=aeson-pretty
+pkgname=haskell-aeson-pretty
+pkgver=0.7.2
+pkgrel=12
+pkgdesc="JSON pretty-printing library and command-line tool."
+url="http://github.com/informatikr/aeson-pretty;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-aeson" "haskell-attoparsec" "haskell-cmdargs"
+ "haskell-text" "haskell-unordered-containers" "haskell-vector")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('6408b8b2bcd12cf591e4b93b4d9f5143449b33a59fbd3653f328e2515040570d')
+
+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-lib-only
+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.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.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-aeson-pretty/repos/community-staging-i686/haskell-aeson-pretty.install 
(from rev 166576, haskell-aeson-pretty/trunk/haskell-aeson-pretty.install)
===
--- community-staging-i686/haskell-aeson-pretty.install 
(rev 0)
+++ community-staging-i686/haskell-aeson-pretty.install 2016-03-14 03:23:00 UTC 
(rev 166577)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-aeson-pretty
+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-aeson-pretty/repos/community-staging-x86_64/PKGBUILD (from rev 
166576, haskell-aeson-pretty/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-14 03:23:00 UTC (rev 166577)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=aeson-pretty
+pkgname=haskell-aeson-pretty
+pkgver=0.7.2
+pkgrel=12
+pkgdesc="JSON pretty-printing library and command-line tool."

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

2016-03-13 Thread Felix Yan
Date: Monday, March 14, 2016 @ 04:22:40
  Author: fyan
Revision: 166576

upgpkg: haskell-aeson-pretty 0.7.2-12

rebuild with aeson-0.11.1.1, concurrent-output-1.7.4, hpack-0.11.0, 
vector-binary-instances-0.2.3.1

Modified:
  haskell-aeson-pretty/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-14 03:19:30 UTC (rev 166575)
+++ PKGBUILD2016-03-14 03:22:40 UTC (rev 166576)
@@ -5,7 +5,7 @@
 _hkgname=aeson-pretty
 pkgname=haskell-aeson-pretty
 pkgver=0.7.2
-pkgrel=11
+pkgrel=12
 pkgdesc="JSON pretty-printing library and command-line tool."
 url="http://github.com/informatikr/aeson-pretty;
 license=("custom:BSD3")


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

2016-03-13 Thread Felix Yan
Date: Monday, March 14, 2016 @ 04:19:30
  Author: fyan
Revision: 166575

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

Added:
  haskell-aeson/repos/community-staging-i686/
  haskell-aeson/repos/community-staging-i686/PKGBUILD
(from rev 166574, haskell-aeson/trunk/PKGBUILD)
  haskell-aeson/repos/community-staging-i686/haskell-aeson.install
(from rev 166574, haskell-aeson/trunk/haskell-aeson.install)
  haskell-aeson/repos/community-staging-x86_64/
  haskell-aeson/repos/community-staging-x86_64/PKGBUILD
(from rev 166574, haskell-aeson/trunk/PKGBUILD)
  haskell-aeson/repos/community-staging-x86_64/haskell-aeson.install
(from rev 166574, haskell-aeson/trunk/haskell-aeson.install)

+
 community-staging-i686/PKGBUILD|   42 +++
 community-staging-i686/haskell-aeson.install   |   23 
 community-staging-x86_64/PKGBUILD  |   42 +++
 community-staging-x86_64/haskell-aeson.install |   23 
 4 files changed, 130 insertions(+)

Copied: haskell-aeson/repos/community-staging-i686/PKGBUILD (from rev 166574, 
haskell-aeson/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-14 03:19:30 UTC (rev 166575)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Daniel Nagy 
+# Contributor: Daniel Micay 
+
+pkgname=haskell-aeson
+_hkgname=aeson
+pkgver=0.11.1.1
+pkgrel=1
+pkgdesc="A JSON parsing and encoding library optimized for ease of use and 
high performance."
+url="https://github.com/bos/aeson;
+license=("GPL")
+arch=('i686' 'x86_64')
+makedepends=('ghc')
+depends=("ghc=7.10.3" 'haskell-attoparsec' 'haskell-fail' 'haskell-semigroups' 
'haskell-unordered-containers'
+ 'haskell-mtl' 'haskell-syb' 'haskell-tagged' 'haskell-vector' 
'haskell-dlist')
+source=("http://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-${pkgver}.tar.gz;)
+options=('staticlibs')
+install=$pkgname.install
+md5sums=('d19fcee1b540c76d6f92ad957c30ae75')
+
+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
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+  cd "$srcdir/$_hkgname-$pkgver"
+  install -Dm744 register.sh "$pkgdir/usr/share/haskell/$pkgname/register.sh"
+  install -m744 unregister.sh 
"$pkgdir/usr/share/haskell/$pkgname/unregister.sh"
+  install -dm755 "$pkgdir/usr/share/doc/ghc/html/libraries"
+  ln -s /usr/share/doc/$pkgname/html 
"$pkgdir/usr/share/doc/ghc/html/libraries/$_hkgname"
+  runhaskell Setup copy --destdir="$pkgdir"
+  rm -f "$pkgdir/usr/share/doc/$pkgname/LICENSE"
+}

Copied: haskell-aeson/repos/community-staging-i686/haskell-aeson.install (from 
rev 166574, haskell-aeson/trunk/haskell-aeson.install)
===
--- community-staging-i686/haskell-aeson.install
(rev 0)
+++ community-staging-i686/haskell-aeson.install2016-03-14 03:19:30 UTC 
(rev 166575)
@@ -0,0 +1,23 @@
+HS_DIR=usr/share/haskell/haskell-aeson
+
+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-aeson/repos/community-staging-x86_64/PKGBUILD (from rev 166574, 
haskell-aeson/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-14 03:19:30 UTC (rev 166575)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Daniel Nagy 
+# Contributor: Daniel Micay 
+
+pkgname=haskell-aeson
+_hkgname=aeson
+pkgver=0.11.1.1
+pkgrel=1
+pkgdesc="A JSON parsing and encoding library optimized for ease of use and 
high performance."
+url="https://github.com/bos/aeson;
+license=("GPL")
+arch=('i686' 'x86_64')
+makedepends=('ghc')
+depends=("ghc=7.10.3" 'haskell-attoparsec' 'haskell-fail' 'haskell-semigroups' 
'haskell-unordered-containers'
+ 'haskell-mtl' 'haskell-syb' 'haskell-tagged' 'haskell-vector' 
'haskell-dlist')

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

2016-03-13 Thread Felix Yan
Date: Monday, March 14, 2016 @ 04:19:10
  Author: fyan
Revision: 166574

upgpkg: haskell-aeson 0.11.1.1-1

Modified:
  haskell-aeson/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-14 03:06:55 UTC (rev 166573)
+++ PKGBUILD2016-03-14 03:19:10 UTC (rev 166574)
@@ -5,8 +5,8 @@
 
 pkgname=haskell-aeson
 _hkgname=aeson
-pkgver=0.11.1.0
-pkgrel=3
+pkgver=0.11.1.1
+pkgrel=1
 pkgdesc="A JSON parsing and encoding library optimized for ease of use and 
high performance."
 url="https://github.com/bos/aeson;
 license=("GPL")
@@ -17,7 +17,7 @@
 
source=("http://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-${pkgver}.tar.gz;)
 options=('staticlibs')
 install=$pkgname.install
-md5sums=('e9b168e54ad5814447cf2674f42dbe97')
+md5sums=('d19fcee1b540c76d6f92ad957c30ae75')
 
 build() {
   cd "$srcdir/$_hkgname-$pkgver"


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

2016-03-13 Thread Felix Yan
Date: Monday, March 14, 2016 @ 04:04:59
  Author: fyan
Revision: 166570

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-03-14 03:04:43 UTC (rev 166569)
+++ PKGBUILD2016-03-14 03:04:59 UTC (rev 166570)
@@ -1,54 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgbase=python-jsonpickle
-pkgname=(python-jsonpickle python2-jsonpickle)
-_pypiname=jsonpickle
-pkgver=0.9.2
-pkgrel=3
-pkgdesc="Python library for serializing any arbitrary object graph into JSON"
-url="http://jsonpickle.github.io/;
-makedepends=('python-setuptools' 'python2-setuptools')
-checkdepends=('python-nose' 'python2-nose' 'python-numpy' 'python2-numpy' 
'python-pymongo' 'python2-pymongo'
-  'python-feedparser' 'python2-feedparser' 'python-coverage' 
'python2-coverage' 'python2-enum34'
-  'python-simplejson' 'python2-simplejson')
-license=('BSD')
-arch=('any')
-source=("https://pypi.python.org/packages/source/j/${_pypiname}/${_pypiname}-${pkgver}.tar.gz;)
-md5sums=('579a44c19ae55af83cb7b0437dfbe7e3')
-
-prepare() {
-  cp -a $_pypiname-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir/${_pypiname}-${pkgver}"
-  python setup.py build
-
-  cd "$srcdir/${_pypiname}-${pkgver}-py2"
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir/${_pypiname}-${pkgver}"
-  nosetests3
-
-  cd "$srcdir/${_pypiname}-${pkgver}-py2"
-  nosetests2
-}
-
-package_python-jsonpickle() {
-  depends=('python')
-
-  cd $srcdir/${_pypiname}-${pkgver}
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING
-}
-
-package_python2-jsonpickle() {
-  depends=('python2')
-
-  cd $srcdir/${_pypiname}-${pkgver}-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING
-}

Copied: python-jsonpickle/repos/community-any/PKGBUILD (from rev 166569, 
python-jsonpickle/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-03-14 03:04:59 UTC (rev 166570)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-jsonpickle
+pkgname=(python-jsonpickle python2-jsonpickle)
+pkgver=0.9.3
+pkgrel=1
+arch=('any')
+pkgdesc="Python library for serializing any arbitrary object graph into JSON"
+url="http://jsonpickle.github.io/;
+makedepends=('python-setuptools' 'python2-setuptools')
+checkdepends=('python-nose-show-skipped' 'python2-nose-show-skipped' 
'python-numpy' 'python2-numpy'
+  'python-feedparser' 'python2-feedparser' 'python-coverage' 
'python2-coverage' 'python2-enum34'
+  'python-simplejson' 'python2-simplejson' 'python-pymongo' 
'python2-pymongo' 'python-ujson'
+  'python2-ujson')
+license=('BSD')
+source=("https://pypi.python.org/packages/source/j/jsonpickle/jsonpickle-$pkgver.tar.gz;)
+md5sums=('cb30198969da11f9d19a11d03e0d0046')
+
+prepare() {
+  cp -a jsonpickle-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/jsonpickle-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/jsonpickle-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/jsonpickle-$pkgver
+  nosetests3 --show-skipped
+
+  cd "$srcdir"/jsonpickle-$pkgver-py2
+  nosetests2 --show-skipped
+}
+
+package_python-jsonpickle() {
+  depends=('python')
+
+  cd jsonpickle-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING
+}
+
+package_python2-jsonpickle() {
+  depends=('python2')
+
+  cd jsonpickle-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING
+}


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

2016-03-13 Thread Felix Yan
Date: Monday, March 14, 2016 @ 04:04:43
  Author: fyan
Revision: 166569

upgpkg: python-jsonpickle 0.9.3-1

Modified:
  python-jsonpickle/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-14 03:00:46 UTC (rev 166568)
+++ PKGBUILD2016-03-14 03:04:43 UTC (rev 166569)
@@ -3,44 +3,44 @@
 
 pkgbase=python-jsonpickle
 pkgname=(python-jsonpickle python2-jsonpickle)
-_pypiname=jsonpickle
-pkgver=0.9.2
-pkgrel=3
+pkgver=0.9.3
+pkgrel=1
+arch=('any')
 pkgdesc="Python library for serializing any arbitrary object graph into JSON"
 url="http://jsonpickle.github.io/;
 makedepends=('python-setuptools' 'python2-setuptools')
-checkdepends=('python-nose' 'python2-nose' 'python-numpy' 'python2-numpy' 
'python-pymongo' 'python2-pymongo'
+checkdepends=('python-nose-show-skipped' 'python2-nose-show-skipped' 
'python-numpy' 'python2-numpy'
   'python-feedparser' 'python2-feedparser' 'python-coverage' 
'python2-coverage' 'python2-enum34'
-  'python-simplejson' 'python2-simplejson')
+  'python-simplejson' 'python2-simplejson' 'python-pymongo' 
'python2-pymongo' 'python-ujson'
+  'python2-ujson')
 license=('BSD')
-arch=('any')
-source=("https://pypi.python.org/packages/source/j/${_pypiname}/${_pypiname}-${pkgver}.tar.gz;)
-md5sums=('579a44c19ae55af83cb7b0437dfbe7e3')
+source=("https://pypi.python.org/packages/source/j/jsonpickle/jsonpickle-$pkgver.tar.gz;)
+md5sums=('cb30198969da11f9d19a11d03e0d0046')
 
 prepare() {
-  cp -a $_pypiname-$pkgver{,-py2}
+  cp -a jsonpickle-$pkgver{,-py2}
 }
 
 build() {
-  cd "$srcdir/${_pypiname}-${pkgver}"
+  cd "$srcdir"/jsonpickle-$pkgver
   python setup.py build
 
-  cd "$srcdir/${_pypiname}-${pkgver}-py2"
+  cd "$srcdir"/jsonpickle-$pkgver-py2
   python2 setup.py build
 }
 
 check() {
-  cd "$srcdir/${_pypiname}-${pkgver}"
-  nosetests3
+  cd "$srcdir"/jsonpickle-$pkgver
+  nosetests3 --show-skipped
 
-  cd "$srcdir/${_pypiname}-${pkgver}-py2"
-  nosetests2
+  cd "$srcdir"/jsonpickle-$pkgver-py2
+  nosetests2 --show-skipped
 }
 
 package_python-jsonpickle() {
   depends=('python')
 
-  cd $srcdir/${_pypiname}-${pkgver}
+  cd jsonpickle-$pkgver
   python setup.py install --root="$pkgdir" --optimize=1
   install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING
 }
@@ -48,7 +48,7 @@
 package_python2-jsonpickle() {
   depends=('python2')
 
-  cd $srcdir/${_pypiname}-${pkgver}-py2
+  cd jsonpickle-$pkgver-py2
   python2 setup.py install --root="$pkgdir" --optimize=1
   install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING
 }


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

2016-03-13 Thread Felix Yan
Date: Monday, March 14, 2016 @ 04:00:46
  Author: fyan
Revision: 166568

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-03-14 03:00:30 UTC (rev 166567)
+++ PKGBUILD2016-03-14 03:00:46 UTC (rev 166568)
@@ -1,62 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Johannes Dewender  arch at JonnyJD dot net
-# Contributor: Ivan Sichmann Freitas 
-# Contributor: Brice Maron 
-# Contributor: Nuno Araujo 
-# Contributor: Steven Allen 
-
-pkgbase=python-keyring
-pkgname=('python-keyring' 'python2-keyring')
-pkgver=8.5
-pkgrel=1
-pkgdesc="Store and access your passwords safely."
-arch=('any')
-url="http://pypi.python.org/pypi/keyring;
-license=('PSF' 'MIT')
-source=("http://pypi.python.org/packages/source/k/keyring/keyring-$pkgver.tar.gz;)
-makedepends=('python-setuptools_scm' 'python2-setuptools_scm')
-checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'python-mock' 
'python2-mock')
-md5sums=('652110848c23b2c8790b44ab9b0f640e')
-
-prepare() {
-  cp -a keyring-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir/keyring-$pkgver"
-  python setup.py build
-
-  cd "$srcdir/keyring-$pkgver-py2"
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir/keyring-$pkgver"
-  python setup.py ptr
-
-  cd "$srcdir/keyring-$pkgver-py2"
-  python2 setup.py ptr
-}
-
-package_python-keyring() {
-  depends=('python-setuptools')
-  optdepends=('python-secretstorage: SecretService DBus API (GNOME/KDE)'
-  'python-keyrings-alt: Alternative backends')
-
-  cd "$srcdir/keyring-$pkgver"
-  python setup.py install --root=$pkgdir --optimize=1
-}
-
-package_python2-keyring() {
-  depends=('python2-setuptools')
-  optdepends=('python2-secretstorage: SecretService DBus API (GNOME/KDE)'
-  'python2-keyrings-alt: Alternative backends')
-
-  cd "$srcdir/keyring-$pkgver-py2"
-  python2 setup.py install --root=$pkgdir --optimize=1
-
-  mv "$pkgdir"/usr/bin/keyring{,2}
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-keyring/repos/community-any/PKGBUILD (from rev 166567, 
python-keyring/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-03-14 03:00:46 UTC (rev 166568)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Johannes Dewender  arch at JonnyJD dot net
+# Contributor: Ivan Sichmann Freitas 
+# Contributor: Brice Maron 
+# Contributor: Nuno Araujo 
+# Contributor: Steven Allen 
+
+pkgbase=python-keyring
+pkgname=('python-keyring' 'python2-keyring')
+pkgver=8.5.1
+pkgrel=1
+pkgdesc="Store and access your passwords safely."
+arch=('any')
+url="http://pypi.python.org/pypi/keyring;
+license=('PSF' 'MIT')
+source=("http://pypi.python.org/packages/source/k/keyring/keyring-$pkgver.tar.gz;)
+makedepends=('python-setuptools_scm' 'python2-setuptools_scm')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'python-mock' 
'python2-mock')
+md5sums=('f358ae5f121d169424d32fcd7bd309f7')
+
+prepare() {
+  cp -a keyring-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir/keyring-$pkgver"
+  python setup.py build
+
+  cd "$srcdir/keyring-$pkgver-py2"
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir/keyring-$pkgver"
+  python setup.py ptr
+
+  cd "$srcdir/keyring-$pkgver-py2"
+  python2 setup.py ptr
+}
+
+package_python-keyring() {
+  depends=('python-setuptools')
+  optdepends=('python-secretstorage: SecretService DBus API (GNOME/KDE)'
+  'python-keyrings-alt: Alternative backends')
+
+  cd "$srcdir/keyring-$pkgver"
+  python setup.py install --root=$pkgdir --optimize=1
+}
+
+package_python2-keyring() {
+  depends=('python2-setuptools')
+  optdepends=('python2-secretstorage: SecretService DBus API (GNOME/KDE)'
+  'python2-keyrings-alt: Alternative backends')
+
+  cd "$srcdir/keyring-$pkgver-py2"
+  python2 setup.py install --root=$pkgdir --optimize=1
+
+  mv "$pkgdir"/usr/bin/keyring{,2}
+}
+
+# vim:set ts=2 sw=2 et:


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

2016-03-13 Thread Felix Yan
Date: Monday, March 14, 2016 @ 04:00:30
  Author: fyan
Revision: 166567

upgpkg: python-keyring 8.5.1-1

Modified:
  python-keyring/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-14 00:27:09 UTC (rev 166566)
+++ PKGBUILD2016-03-14 03:00:30 UTC (rev 166567)
@@ -8,7 +8,7 @@
 
 pkgbase=python-keyring
 pkgname=('python-keyring' 'python2-keyring')
-pkgver=8.5
+pkgver=8.5.1
 pkgrel=1
 pkgdesc="Store and access your passwords safely."
 arch=('any')
@@ -17,7 +17,7 @@
 
source=("http://pypi.python.org/packages/source/k/keyring/keyring-$pkgver.tar.gz;)
 makedepends=('python-setuptools_scm' 'python2-setuptools_scm')
 checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'python-mock' 
'python2-mock')
-md5sums=('652110848c23b2c8790b44ab9b0f640e')
+md5sums=('f358ae5f121d169424d32fcd7bd309f7')
 
 prepare() {
   cp -a keyring-$pkgver{,-py2}


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

2016-03-13 Thread Levente Polyak
Date: Monday, March 14, 2016 @ 01:27:09
  Author: anthraxx
Revision: 166566

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-03-14 00:26:58 UTC (rev 166565)
+++ community-i686/PKGBUILD 2016-03-14 00:27:09 UTC (rev 166566)
@@ -1,37 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: spider-mario 
-
-pkgname=afl
-pkgver=2.07b
-pkgrel=1
-pkgdesc='Security-oriented fuzzer using compile-time instrumentation and 
genetic algorithms'
-url="http://lcamtuf.coredump.cx/afl/;
-arch=('i686' 'x86_64')
-license=('Apache')
-depends=('glibc' 'bash')
-optdepends=(
-  'gcc: gcc instrumentation support'
-  'clang: clang instrumentation support'
-  'llvm: experimental clang-fast instrumentation support'
-  'gnuplot: graph plotting support'
-)
-makedepends=('clang' 'llvm' 'gcc')
-provides=('american-fuzzy-lop')
-replaces=('american-fuzzy-lop')
-options=('!emptydirs' '!strip')
-source=(${pkgname}-${pkgver}.tgz::http://lcamtuf.coredump.cx/${pkgname}/releases/${pkgname}-${pkgver}.tgz)
-sha512sums=('784e731ca76615493309624e7d1e64556589da624f3a9f839e948c2bd40923b21dd1074235f15c23490b3ec3a8111f386d299ab6e120cc3a2d732a704716c116')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  make PREFIX=/usr
-  make -C llvm_mode PREFIX=/usr
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make PREFIX=/usr DESTDIR="${pkgdir}" install
-  install -Dm 644 llvm_mode/README.llvm 
"${pkgdir}/usr/share/doc/${pkgname}/README.llvm"
-}
-
-# vim: ts=2 sw=2 et:

Copied: afl/repos/community-i686/PKGBUILD (from rev 166565, afl/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-03-14 00:27:09 UTC (rev 166566)
@@ -0,0 +1,37 @@
+# Maintainer: Levente Polyak 
+# Contributor: spider-mario 
+
+pkgname=afl
+pkgver=2.08b
+pkgrel=1
+pkgdesc='Security-oriented fuzzer using compile-time instrumentation and 
genetic algorithms'
+url="http://lcamtuf.coredump.cx/afl/;
+arch=('i686' 'x86_64')
+license=('Apache')
+depends=('glibc' 'bash')
+optdepends=(
+  'gcc: gcc instrumentation support'
+  'clang: clang instrumentation support'
+  'llvm: experimental clang-fast instrumentation support'
+  'gnuplot: graph plotting support'
+)
+makedepends=('clang' 'llvm' 'gcc')
+provides=('american-fuzzy-lop')
+replaces=('american-fuzzy-lop')
+options=('!emptydirs' '!strip')
+source=(${pkgname}-${pkgver}.tgz::http://lcamtuf.coredump.cx/${pkgname}/releases/${pkgname}-${pkgver}.tgz)
+sha512sums=('b63aaf2dd00d395101f79f27cb1d54a829ba5f2c7a87c97496fce58bf9c994e8bdb87feb897285eff6e9392e9d11104bdc792d4f29e0b1c2e40e5cd387f4f250')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  make PREFIX=/usr
+  make -C llvm_mode PREFIX=/usr
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make PREFIX=/usr DESTDIR="${pkgdir}" install
+  install -Dm 644 llvm_mode/README.llvm 
"${pkgdir}/usr/share/doc/${pkgname}/README.llvm"
+}
+
+# vim: ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-03-14 00:26:58 UTC (rev 166565)
+++ community-x86_64/PKGBUILD   2016-03-14 00:27:09 UTC (rev 166566)
@@ -1,37 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: spider-mario 
-
-pkgname=afl
-pkgver=2.07b
-pkgrel=1
-pkgdesc='Security-oriented fuzzer using compile-time instrumentation and 
genetic algorithms'
-url="http://lcamtuf.coredump.cx/afl/;
-arch=('i686' 'x86_64')
-license=('Apache')
-depends=('glibc' 'bash')
-optdepends=(
-  'gcc: gcc instrumentation support'
-  'clang: clang instrumentation support'
-  'llvm: experimental clang-fast instrumentation support'
-  'gnuplot: graph plotting support'
-)
-makedepends=('clang' 'llvm' 'gcc')
-provides=('american-fuzzy-lop')
-replaces=('american-fuzzy-lop')
-options=('!emptydirs' '!strip')
-source=(${pkgname}-${pkgver}.tgz::http://lcamtuf.coredump.cx/${pkgname}/releases/${pkgname}-${pkgver}.tgz)
-sha512sums=('784e731ca76615493309624e7d1e64556589da624f3a9f839e948c2bd40923b21dd1074235f15c23490b3ec3a8111f386d299ab6e120cc3a2d732a704716c116')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  make PREFIX=/usr
-  make -C llvm_mode PREFIX=/usr
-}
-

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

2016-03-13 Thread Levente Polyak
Date: Monday, March 14, 2016 @ 01:26:58
  Author: anthraxx
Revision: 166565

upgpkg: afl 2.08b-1

Modified:
  afl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-13 22:09:50 UTC (rev 166564)
+++ PKGBUILD2016-03-14 00:26:58 UTC (rev 166565)
@@ -2,7 +2,7 @@
 # Contributor: spider-mario 
 
 pkgname=afl
-pkgver=2.07b
+pkgver=2.08b
 pkgrel=1
 pkgdesc='Security-oriented fuzzer using compile-time instrumentation and 
genetic algorithms'
 url="http://lcamtuf.coredump.cx/afl/;
@@ -20,7 +20,7 @@
 replaces=('american-fuzzy-lop')
 options=('!emptydirs' '!strip')
 
source=(${pkgname}-${pkgver}.tgz::http://lcamtuf.coredump.cx/${pkgname}/releases/${pkgname}-${pkgver}.tgz)
-sha512sums=('784e731ca76615493309624e7d1e64556589da624f3a9f839e948c2bd40923b21dd1074235f15c23490b3ec3a8111f386d299ab6e120cc3a2d732a704716c116')
+sha512sums=('b63aaf2dd00d395101f79f27cb1d54a829ba5f2c7a87c97496fce58bf9c994e8bdb87feb897285eff6e9392e9d11104bdc792d4f29e0b1c2e40e5cd387f4f250')
 
 build() {
   cd ${pkgname}-${pkgver}


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

2016-03-13 Thread Dave Reisner
Date: Sunday, March 13, 2016 @ 23:40:46
  Author: dreisner
Revision: 261421

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

Added:
  htop/repos/extra-i686/PKGBUILD
(from rev 261420, htop/trunk/PKGBUILD)
  htop/repos/extra-x86_64/PKGBUILD
(from rev 261420, htop/trunk/PKGBUILD)
Deleted:
  htop/repos/extra-i686/0001-Fix-buffer-reuse.patch
  htop/repos/extra-i686/PKGBUILD
  htop/repos/extra-x86_64/0001-Fix-buffer-reuse.patch
  htop/repos/extra-x86_64/PKGBUILD

--+
 /PKGBUILD|   74 +
 extra-i686/0001-Fix-buffer-reuse.patch   |   25 -
 extra-i686/PKGBUILD  |   45 -
 extra-x86_64/0001-Fix-buffer-reuse.patch |   25 -
 extra-x86_64/PKGBUILD|   45 -
 5 files changed, 74 insertions(+), 140 deletions(-)

Deleted: extra-i686/0001-Fix-buffer-reuse.patch
===
--- extra-i686/0001-Fix-buffer-reuse.patch  2016-03-13 22:39:06 UTC (rev 
261420)
+++ extra-i686/0001-Fix-buffer-reuse.patch  2016-03-13 22:40:46 UTC (rev 
261421)
@@ -1,25 +0,0 @@
-From 0b70439316b4e4608c0916317ded7e6e56982de6 Mon Sep 17 00:00:00 2001
-From: Hisham 
-Date: Sat, 13 Feb 2016 02:18:28 -0200
-Subject: [PATCH] Fix buffer reuse.
-

- linux/LinuxProcessList.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/linux/LinuxProcessList.c b/linux/LinuxProcessList.c
-index 591210e..ec643ab 100644
 a/linux/LinuxProcessList.c
-+++ b/linux/LinuxProcessList.c
-@@ -446,7 +446,7 @@ static void LinuxProcessList_readOomData(LinuxProcess* 
process, const char* dirn
- }
- 
- static void setCommand(Process* process, const char* command, int len) {
--   if (process->comm && process->commLen <= len) {
-+   if (process->comm && process->commLen >= len) {
-   strncpy(process->comm, command, len + 1);
-} else {
-   free(process->comm);
--- 
-2.7.1
-

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-03-13 22:39:06 UTC (rev 261420)
+++ extra-i686/PKGBUILD 2016-03-13 22:40:46 UTC (rev 261421)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Angel Velasquez  
-# Contributor: Eric Belanger 
-# Contributor: Daniel J Griffiths 
-
-pkgname=htop
-pkgver=2.0.0
-pkgrel=2
-pkgdesc="Interactive process viewer"
-arch=('i686' 'x86_64')
-url="http://hisham.hm/htop/;
-license=('GPL')
-depends=('ncurses')
-makedepends=('python')
-optdepends=('lsof: show files opened by a process'
-'strace: attach to a running process')
-options=('!emptydirs')
-source=("http://hisham.hm/$pkgname/releases/$pkgver/$pkgname-$pkgver.tar.gz;
-"0001-Fix-buffer-reuse.patch")
-md5sums=('06f76c7d644ce8ae611c9feb10439a30'
- '487c286d714139dca6f27bf5f79a0e1f')
-
-prepare() {
-  cd "$pkgname-$pkgver"
-
-  patch -Np1 <../0001-Fix-buffer-reuse.patch
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  ./configure \
-  --prefix=/usr \
-  --sysconfdir=/etc \
-  --enable-unicode \
-  --enable-openvz \
-  --enable-vserver \
-  --enable-cgroup
-
-  make
-}
-
-package() {
-  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
-}

Copied: htop/repos/extra-i686/PKGBUILD (from rev 261420, htop/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-03-13 22:40:46 UTC (rev 261421)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Angel Velasquez  
+# Contributor: Eric Belanger 
+# Contributor: Daniel J Griffiths 
+
+pkgname=htop
+pkgver=2.0.1
+pkgrel=1
+pkgdesc="Interactive process viewer"
+arch=('i686' 'x86_64')
+url="http://hisham.hm/htop/;
+license=('GPL')
+depends=('ncurses')
+makedepends=('python')
+optdepends=('lsof: show files opened by a process'
+'strace: attach to a running process')
+options=('!emptydirs')
+source=("http://hisham.hm/$pkgname/releases/$pkgver/$pkgname-$pkgver.tar.gz;)
+md5sums=('f75fe92b4defaa80d99109830f34b5e2')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure \
+  --prefix=/usr \
+  --sysconfdir=/etc \
+  --enable-unicode \
+  --enable-openvz \
+  --enable-vserver \
+  --enable-cgroup
+
+  make
+}
+
+package() {
+  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/0001-Fix-buffer-reuse.patch
===
--- extra-x86_64/0001-Fix-buffer-reuse.patch2016-03-13 22:39:06 UTC (rev 
261420)
+++ extra-x86_64/0001-Fix-buffer-reuse.patch2016-03-13 22:40:46 UTC (rev 
261421)
@@ -1,25 +0,0 @@
-From 0b70439316b4e4608c0916317ded7e6e56982de6 Mon Sep 17 00:00:00 2001
-From: Hisham 
-Date: Sat, 

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

2016-03-13 Thread Dave Reisner
Date: Sunday, March 13, 2016 @ 23:39:06
  Author: dreisner
Revision: 261420

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

Added:
  c-ares/repos/extra-i686/LICENSE
(from rev 261419, c-ares/trunk/LICENSE)
  c-ares/repos/extra-i686/PKGBUILD
(from rev 261419, c-ares/trunk/PKGBUILD)
  c-ares/repos/extra-x86_64/LICENSE
(from rev 261419, c-ares/trunk/LICENSE)
  c-ares/repos/extra-x86_64/PKGBUILD
(from rev 261419, c-ares/trunk/PKGBUILD)
Deleted:
  c-ares/repos/extra-i686/LICENSE
  c-ares/repos/extra-i686/PKGBUILD
  c-ares/repos/extra-x86_64/LICENSE
  c-ares/repos/extra-x86_64/PKGBUILD

---+
 /LICENSE  |   20 ++
 /PKGBUILD |   68 
 extra-i686/LICENSE|   10 ---
 extra-i686/PKGBUILD   |   33 ---
 extra-x86_64/LICENSE  |   10 ---
 extra-x86_64/PKGBUILD |   33 ---
 6 files changed, 88 insertions(+), 86 deletions(-)

Deleted: extra-i686/LICENSE
===
--- extra-i686/LICENSE  2016-03-13 22:38:37 UTC (rev 261419)
+++ extra-i686/LICENSE  2016-03-13 22:39:06 UTC (rev 261420)
@@ -1,10 +0,0 @@
-Copyright 1998 by the Massachusetts Institute of Technology.
-
-Permission to use, copy, modify, and distribute this software and its
-documentation for any purpose and without fee is hereby granted, provided that
-the above copyright notice appear in all copies and that both that copyright
-notice and this permission notice appear in supporting documentation, and that
-the name of M.I.T. not be used in advertising or publicity pertaining to
-distribution of the software without specific, written prior permission.
-M.I.T. makes no representations about the suitability of this software for any
-purpose.  It is provided "as is" without express or implied warranty.

Copied: c-ares/repos/extra-i686/LICENSE (from rev 261419, c-ares/trunk/LICENSE)
===
--- extra-i686/LICENSE  (rev 0)
+++ extra-i686/LICENSE  2016-03-13 22:39:06 UTC (rev 261420)
@@ -0,0 +1,10 @@
+Copyright 1998 by the Massachusetts Institute of Technology.
+
+Permission to use, copy, modify, and distribute this software and its
+documentation for any purpose and without fee is hereby granted, provided that
+the above copyright notice appear in all copies and that both that copyright
+notice and this permission notice appear in supporting documentation, and that
+the name of M.I.T. not be used in advertising or publicity pertaining to
+distribution of the software without specific, written prior permission.
+M.I.T. makes no representations about the suitability of this software for any
+purpose.  It is provided "as is" without express or implied warranty.

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-03-13 22:38:37 UTC (rev 261419)
+++ extra-i686/PKGBUILD 2016-03-13 22:39:06 UTC (rev 261420)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Dave Reisner 
-# Contributor: Daniel J Griffiths 
-# Contributor: Jeff Mickey 
-# Contributor: Alexander Fehr 
-
-pkgname=c-ares
-pkgver=1.10.0
-pkgrel=2
-pkgdesc='C library that performs DNS requests and name resolves asynchronously'
-arch=('i686' 'x86_64')
-url='http://c-ares.haxx.se/'
-license=('custom')
-depends=('glibc')
-source=("http://c-ares.haxx.se/download/$pkgname-$pkgver.tar.gz"{,.asc}
-'LICENSE')
-md5sums=('1196067641411a75d3cbebe074fd36d8'
- 'SKIP'
- 'c69f2042941b708ce3e7121424d0b7e6')
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  ./configure --prefix=/usr --enable-shared
-  make
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  make DESTDIR="$pkgdir" install
-  install -Dm644 "$srcdir/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: c-ares/repos/extra-i686/PKGBUILD (from rev 261419, 
c-ares/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-03-13 22:39:06 UTC (rev 261420)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Dave Reisner 
+# Contributor: Daniel J Griffiths 
+# Contributor: Jeff Mickey 
+# Contributor: Alexander Fehr 
+
+pkgname=c-ares
+pkgver=1.11.0
+pkgrel=1
+pkgdesc='C library that performs DNS requests and name resolves asynchronously'
+arch=('i686' 'x86_64')
+url='http://c-ares.haxx.se/'
+license=('custom')
+depends=('glibc')
+source=("http://c-ares.haxx.se/download/$pkgname-$pkgver.tar.gz"{,.asc}
+'LICENSE')
+md5sums=('d5c6d522cfc54bb6f215a0b7912d46be'
+ 'SKIP'
+ 'c69f2042941b708ce3e7121424d0b7e6')
+validpgpkeys=('914C533DF9B2ADA2204F586D78E11C6B279D5C91')  # Daniel Stenberg
+
+build() {
+  cd "$pkgname-$pkgver"

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

2016-03-13 Thread Dave Reisner
Date: Sunday, March 13, 2016 @ 23:38:37
  Author: dreisner
Revision: 261419

upgpkg: c-ares 1.11.0-1

Modified:
  c-ares/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-13 22:32:21 UTC (rev 261418)
+++ PKGBUILD2016-03-13 22:38:37 UTC (rev 261419)
@@ -5,8 +5,8 @@
 # Contributor: Alexander Fehr 
 
 pkgname=c-ares
-pkgver=1.10.0
-pkgrel=2
+pkgver=1.11.0
+pkgrel=1
 pkgdesc='C library that performs DNS requests and name resolves asynchronously'
 arch=('i686' 'x86_64')
 url='http://c-ares.haxx.se/'
@@ -14,9 +14,10 @@
 depends=('glibc')
 source=("http://c-ares.haxx.se/download/$pkgname-$pkgver.tar.gz"{,.asc}
 'LICENSE')
-md5sums=('1196067641411a75d3cbebe074fd36d8'
+md5sums=('d5c6d522cfc54bb6f215a0b7912d46be'
  'SKIP'
  'c69f2042941b708ce3e7121424d0b7e6')
+validpgpkeys=('914C533DF9B2ADA2204F586D78E11C6B279D5C91')  # Daniel Stenberg
 
 build() {
   cd "$pkgname-$pkgver"


[arch-commits] Commit in htop/trunk (0001-Fix-buffer-reuse.patch PKGBUILD)

2016-03-13 Thread Dave Reisner
Date: Sunday, March 13, 2016 @ 23:32:21
  Author: dreisner
Revision: 261418

upgpkg: htop 2.0.1-1

Modified:
  htop/trunk/PKGBUILD
Deleted:
  htop/trunk/0001-Fix-buffer-reuse.patch

-+
 0001-Fix-buffer-reuse.patch |   25 -
 PKGBUILD|   16 
 2 files changed, 4 insertions(+), 37 deletions(-)

Deleted: 0001-Fix-buffer-reuse.patch
===
--- 0001-Fix-buffer-reuse.patch 2016-03-13 19:35:10 UTC (rev 261417)
+++ 0001-Fix-buffer-reuse.patch 2016-03-13 22:32:21 UTC (rev 261418)
@@ -1,25 +0,0 @@
-From 0b70439316b4e4608c0916317ded7e6e56982de6 Mon Sep 17 00:00:00 2001
-From: Hisham 
-Date: Sat, 13 Feb 2016 02:18:28 -0200
-Subject: [PATCH] Fix buffer reuse.
-

- linux/LinuxProcessList.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/linux/LinuxProcessList.c b/linux/LinuxProcessList.c
-index 591210e..ec643ab 100644
 a/linux/LinuxProcessList.c
-+++ b/linux/LinuxProcessList.c
-@@ -446,7 +446,7 @@ static void LinuxProcessList_readOomData(LinuxProcess* 
process, const char* dirn
- }
- 
- static void setCommand(Process* process, const char* command, int len) {
--   if (process->comm && process->commLen <= len) {
-+   if (process->comm && process->commLen >= len) {
-   strncpy(process->comm, command, len + 1);
-} else {
-   free(process->comm);
--- 
-2.7.1
-

Modified: PKGBUILD
===
--- PKGBUILD2016-03-13 19:35:10 UTC (rev 261417)
+++ PKGBUILD2016-03-13 22:32:21 UTC (rev 261418)
@@ -4,8 +4,8 @@
 # Contributor: Daniel J Griffiths 
 
 pkgname=htop
-pkgver=2.0.0
-pkgrel=2
+pkgver=2.0.1
+pkgrel=1
 pkgdesc="Interactive process viewer"
 arch=('i686' 'x86_64')
 url="http://hisham.hm/htop/;
@@ -15,17 +15,9 @@
 optdepends=('lsof: show files opened by a process'
 'strace: attach to a running process')
 options=('!emptydirs')
-source=("http://hisham.hm/$pkgname/releases/$pkgver/$pkgname-$pkgver.tar.gz;
-"0001-Fix-buffer-reuse.patch")
-md5sums=('06f76c7d644ce8ae611c9feb10439a30'
- '487c286d714139dca6f27bf5f79a0e1f')
+source=("http://hisham.hm/$pkgname/releases/$pkgver/$pkgname-$pkgver.tar.gz;)
+md5sums=('f75fe92b4defaa80d99109830f34b5e2')
 
-prepare() {
-  cd "$pkgname-$pkgver"
-
-  patch -Np1 <../0001-Fix-buffer-reuse.patch
-}
-
 build() {
   cd "$pkgname-$pkgver"
 


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

2016-03-13 Thread Alexander Rødseth
Date: Sunday, March 13, 2016 @ 23:09:50
  Author: arodseth
Revision: 166564

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

Added:
  geany-plugins/repos/community-i686/PKGBUILD
(from rev 166563, geany-plugins/trunk/PKGBUILD)
  geany-plugins/repos/community-i686/geany-plugins.install
(from rev 166563, geany-plugins/trunk/geany-plugins.install)
  geany-plugins/repos/community-i686/libgit2-0.23.patch
(from rev 166563, geany-plugins/trunk/libgit2-0.23.patch)
  geany-plugins/repos/community-x86_64/PKGBUILD
(from rev 166563, geany-plugins/trunk/PKGBUILD)
  geany-plugins/repos/community-x86_64/geany-plugins.install
(from rev 166563, geany-plugins/trunk/geany-plugins.install)
  geany-plugins/repos/community-x86_64/libgit2-0.23.patch
(from rev 166563, geany-plugins/trunk/libgit2-0.23.patch)
Deleted:
  geany-plugins/repos/community-i686/PKGBUILD
  geany-plugins/repos/community-i686/geany-plugins.install
  geany-plugins/repos/community-i686/libgit2-0.23.patch
  geany-plugins/repos/community-x86_64/PKGBUILD
  geany-plugins/repos/community-x86_64/geany-plugins.install
  geany-plugins/repos/community-x86_64/libgit2-0.23.patch

+
 /PKGBUILD  |   68 +++
 /geany-plugins.install |   28 
 /libgit2-0.23.patch|   24 ++
 community-i686/PKGBUILD|   36 
 community-i686/geany-plugins.install   |   14 --
 community-i686/libgit2-0.23.patch  |   12 -
 community-x86_64/PKGBUILD  |   36 
 community-x86_64/geany-plugins.install |   14 --
 community-x86_64/libgit2-0.23.patch|   12 -
 9 files changed, 120 insertions(+), 124 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-03-13 22:09:36 UTC (rev 166563)
+++ community-i686/PKGBUILD 2016-03-13 22:09:50 UTC (rev 166564)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: Angel 'angvp' Velasquez   
-# Contributor: djgera
-# Contributor: Patrick Melo 
-
-pkgname=geany-plugins
-pkgver=1.26
-pkgrel=1
-pkgdesc='Plugins for Geany'
-arch=('x86_64' 'i686')
-url='http://plugins.geany.org/'
-license=('GPL')
-depends=("geany>=$pkgver" 'gtkspell' 'webkitgtk2' 'ctpl' 'gpgme' 'vte'
- 'desktop-file-utils' 'gtk-update-icon-cache' 'lua51' 'libgit2')
-makedepends=('intltool' 'vala' 'gdb' 'cppcheck' 'libgit2')
-optdepends=('hspell: hebrew spell checker')
-install="$pkgname.install"
-source=("http://plugins.geany.org/$pkgname/$pkgname-$pkgver.tar.bz2;)
-sha256sums=('b6ea0795da34e05f245c48b8868c023814c82f71aeb05ddd4b8e3a73a976e1bd')
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  ./configure \
---prefix=/usr \
---libexecdir=/usr/lib
-  make 
-}
-
-package() {
-  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
-}
-
-# getver: -u 6 raw.githubusercontent.com/geany/geany-plugins/master/NEWS
-# vim:set ts=2 sw=2 et:

Copied: geany-plugins/repos/community-i686/PKGBUILD (from rev 166563, 
geany-plugins/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-03-13 22:09:50 UTC (rev 166564)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+# Contributor: Angel 'angvp' Velasquez 
+# Contributor: djgera
+# Contributor: Patrick Melo 
+
+pkgname=geany-plugins
+pkgver=1.27
+pkgrel=1
+pkgdesc='Plugins for Geany'
+arch=('x86_64' 'i686')
+url='http://plugins.geany.org/'
+license=('GPL')
+depends=("geany>=$pkgver" 'gtkspell' 'webkitgtk2' 'ctpl' 'gpgme' 'vte'
+ 'desktop-file-utils' 'gtk-update-icon-cache' 'lua51' 'libgit2')
+makedepends=('intltool' 'vala' 'gdb' 'cppcheck' 'libgit2')
+optdepends=('hspell: hebrew spell checker')
+install="$pkgname.install"
+source=("http://plugins.geany.org/$pkgname/$pkgname-$pkgver.tar.bz2;)
+sha256sums=('03195a0b7a361ddb2ee4138f46fa87b6d9b9801ff00657456ab9c8b8908c0ce0')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure --prefix=/usr --libexecdir=/usr/lib
+  make
+}
+
+package() {
+  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
+}
+
+# getver: plugins.geany.org/downloads.html
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/geany-plugins.install
===
--- community-i686/geany-plugins.install2016-03-13 22:09:36 UTC (rev 
166563)
+++ community-i686/geany-plugins.install2016-03-13 22:09:50 UTC (rev 
166564)
@@ -1,14 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  

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

2016-03-13 Thread Alexander Rødseth
Date: Sunday, March 13, 2016 @ 23:09:36
  Author: arodseth
Revision: 166563

upgpkg: geany-plugins 1.27-1

Modified:
  geany-plugins/trunk/PKGBUILD

--+
 PKGBUILD |   16 +++-
 1 file changed, 7 insertions(+), 9 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-13 21:41:38 UTC (rev 166562)
+++ PKGBUILD2016-03-13 22:09:36 UTC (rev 166563)
@@ -1,11 +1,11 @@
 # $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: Angel 'angvp' Velasquez   
+# Maintainer: Alexander F Rødseth 
+# Contributor: Angel 'angvp' Velasquez 
 # Contributor: djgera
 # Contributor: Patrick Melo 
 
 pkgname=geany-plugins
-pkgver=1.26
+pkgver=1.27
 pkgrel=1
 pkgdesc='Plugins for Geany'
 arch=('x86_64' 'i686')
@@ -17,15 +17,13 @@
 optdepends=('hspell: hebrew spell checker')
 install="$pkgname.install"
 source=("http://plugins.geany.org/$pkgname/$pkgname-$pkgver.tar.bz2;)
-sha256sums=('b6ea0795da34e05f245c48b8868c023814c82f71aeb05ddd4b8e3a73a976e1bd')
+sha256sums=('03195a0b7a361ddb2ee4138f46fa87b6d9b9801ff00657456ab9c8b8908c0ce0')
 
 build() {
   cd "$pkgname-$pkgver"
 
-  ./configure \
---prefix=/usr \
---libexecdir=/usr/lib
-  make 
+  ./configure --prefix=/usr --libexecdir=/usr/lib
+  make
 }
 
 package() {
@@ -32,5 +30,5 @@
   make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
 }
 
-# getver: -u 6 raw.githubusercontent.com/geany/geany-plugins/master/NEWS
+# getver: plugins.geany.org/downloads.html
 # vim:set ts=2 sw=2 et:


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

2016-03-13 Thread Alexander Rødseth
Date: Sunday, March 13, 2016 @ 22:41:38
  Author: arodseth
Revision: 166562

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

Added:
  geany/repos/community-i686/PKGBUILD
(from rev 166561, geany/trunk/PKGBUILD)
  geany/repos/community-i686/geany.install
(from rev 166561, geany/trunk/geany.install)
  geany/repos/community-x86_64/PKGBUILD
(from rev 166561, geany/trunk/PKGBUILD)
  geany/repos/community-x86_64/geany.install
(from rev 166561, geany/trunk/geany.install)
Deleted:
  geany/repos/community-i686/PKGBUILD
  geany/repos/community-i686/geany.install
  geany/repos/community-x86_64/PKGBUILD
  geany/repos/community-x86_64/geany.install

+
 /PKGBUILD  |   92 +++
 /geany.install |   28 +++
 community-i686/PKGBUILD|   46 ---
 community-i686/geany.install   |   14 -
 community-x86_64/PKGBUILD  |   46 ---
 community-x86_64/geany.install |   14 -
 6 files changed, 120 insertions(+), 120 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-03-13 21:41:25 UTC (rev 166561)
+++ community-i686/PKGBUILD 2016-03-13 21:41:38 UTC (rev 166562)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: Angel Velasquez 
-# Contributor: Ionut Biru  
-# Contributor: William Rea 
-# Contributor: Allan McRae 
-
-pkgname=geany
-pkgver=1.26
-pkgrel=3
-pkgdesc='Fast and lightweight IDE'
-arch=('x86_64' 'i686')
-url='http://www.geany.org/'
-license=('GPL')
-depends=('gtk2' 'hicolor-icon-theme' 'desktop-file-utils')
-makedepends=('perl-xml-parser' 'intltool')
-optdepends=('geany-plugins: various extra features'
-'vte: terminal support'
-'python2')
-install="$pkgname.install"
-source=("http://download.geany.org/$pkgname-$pkgver.tar.bz2;)
-sha256sums=('e38530e87c577e1e9806be3b40e08fb9ee321eb1abc6361ddacdad89c825f90d')
-
-prepare() {
-  cd "$pkgname-$pkgver"
-
-  # Python2 fix
-   sed -i '0,/on/s//on2/' data/templates/files/main.py
-
-  # Syntax highlighting for PKGBUILD files
-  sed -i 's/Sh=/Sh=PKGBUILD;/' data/filetype_extensions.conf
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
-}
-
-# getver: -u 7 geany.org/Documentation/ReleaseNotes
-# vim:set ts=2 sw=2 et:

Copied: geany/repos/community-i686/PKGBUILD (from rev 166561, 
geany/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-03-13 21:41:38 UTC (rev 166562)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+# Contributor: Angel Velasquez 
+# Contributor: Ionut Biru  
+# Contributor: William Rea 
+# Contributor: Allan McRae 
+
+pkgname=geany
+pkgver=1.27
+pkgrel=1
+pkgdesc='Fast and lightweight IDE'
+arch=('x86_64' 'i686')
+url='http://www.geany.org/'
+license=('GPL')
+depends=('gtk2' 'hicolor-icon-theme' 'desktop-file-utils')
+makedepends=('perl-xml-parser' 'intltool')
+optdepends=('geany-plugins: various extra features'
+'vte: terminal support'
+'python2')
+install="$pkgname.install"
+source=("http://download.geany.org/$pkgname-$pkgver.tar.bz2;)
+sha256sums=('846ff699a5944c5c3c068ae0199d4c13946a668bfc6d03f8c79765667c20cadf')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+
+  # Python2 fix
+   sed -i '0,/on/s//on2/' data/templates/files/main.py
+
+  # Syntax highlighting for PKGBUILD files
+  sed -i 's/Sh=/Sh=PKGBUILD;/' data/filetype_extensions.conf
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
+}
+
+# getver: geany.org/Documentation/ChangeLog
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/geany.install
===
--- community-i686/geany.install2016-03-13 21:41:25 UTC (rev 166561)
+++ community-i686/geany.install2016-03-13 21:41:38 UTC (rev 166562)
@@ -1,14 +0,0 @@
-post_upgrade() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-  update-desktop-database -q
-}
-
-post_install() {
-  post_upgrade
-}
-
-post_remove() {
-  post_upgrade
-}
-
-# vim:set ts=2 sw=2 et:

Copied: geany/repos/community-i686/geany.install (from rev 166561, 
geany/trunk/geany.install)
===
--- community-i686/geany.install(rev 0)
+++ community-i686/geany.install2016-03-13 21:41:38 UTC (rev 

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

2016-03-13 Thread Alexander Rødseth
Date: Sunday, March 13, 2016 @ 22:41:25
  Author: arodseth
Revision: 166561

upgpkg: geany 1.27-1

Modified:
  geany/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-13 21:22:32 UTC (rev 166560)
+++ PKGBUILD2016-03-13 21:41:25 UTC (rev 166561)
@@ -1,5 +1,5 @@
 # $Id$
-# Maintainer: Alexander Rødseth 
+# Maintainer: Alexander F Rødseth 
 # Contributor: Angel Velasquez 
 # Contributor: Ionut Biru  
 # Contributor: William Rea 
@@ -6,8 +6,8 @@
 # Contributor: Allan McRae 
 
 pkgname=geany
-pkgver=1.26
-pkgrel=3
+pkgver=1.27
+pkgrel=1
 pkgdesc='Fast and lightweight IDE'
 arch=('x86_64' 'i686')
 url='http://www.geany.org/'
@@ -19,7 +19,7 @@
 'python2')
 install="$pkgname.install"
 source=("http://download.geany.org/$pkgname-$pkgver.tar.bz2;)
-sha256sums=('e38530e87c577e1e9806be3b40e08fb9ee321eb1abc6361ddacdad89c825f90d')
+sha256sums=('846ff699a5944c5c3c068ae0199d4c13946a668bfc6d03f8c79765667c20cadf')
 
 prepare() {
   cd "$pkgname-$pkgver"
@@ -42,5 +42,5 @@
   make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
 }
 
-# getver: -u 7 geany.org/Documentation/ReleaseNotes
+# getver: geany.org/Documentation/ChangeLog
 # vim:set ts=2 sw=2 et:


[arch-commits] Commit in virtualbox/repos (84 files)

2016-03-13 Thread Sébastien Luttringer
Date: Sunday, March 13, 2016 @ 22:22:32
  Author: seblu
Revision: 166560

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

Added:
  virtualbox/repos/community-i686/002-dri-driver-path.patch
(from rev 166559, virtualbox/trunk/002-dri-driver-path.patch)
  virtualbox/repos/community-i686/003-ogl-include-path.patch
(from rev 166559, virtualbox/trunk/003-ogl-include-path.patch)
  virtualbox/repos/community-i686/005-gsoap-build.patch
(from rev 166559, virtualbox/trunk/005-gsoap-build.patch)
  virtualbox/repos/community-i686/006-rdesktop-vrdp-keymap-path.patch
(from rev 166559, virtualbox/trunk/006-rdesktop-vrdp-keymap-path.patch)
  virtualbox/repos/community-i686/007-python2-path.patch
(from rev 166559, virtualbox/trunk/007-python2-path.patch)
  virtualbox/repos/community-i686/010-no-update.patch
(from rev 166559, virtualbox/trunk/010-no-update.patch)
  virtualbox/repos/community-i686/60-vboxdrv.rules
(from rev 166559, virtualbox/trunk/60-vboxdrv.rules)
  virtualbox/repos/community-i686/60-vboxguest.rules
(from rev 166559, virtualbox/trunk/60-vboxguest.rules)
  virtualbox/repos/community-i686/LocalConfig.kmk
(from rev 166559, virtualbox/trunk/LocalConfig.kmk)
  virtualbox/repos/community-i686/PKGBUILD
(from rev 166559, virtualbox/trunk/PKGBUILD)
  virtualbox/repos/community-i686/build.sh
(from rev 166559, virtualbox/trunk/build.sh)
  virtualbox/repos/community-i686/vboxreload
(from rev 166559, virtualbox/trunk/vboxreload)
  virtualbox/repos/community-i686/vboxservice-nox.service
(from rev 166559, virtualbox/trunk/vboxservice-nox.service)
  virtualbox/repos/community-i686/vboxservice.service
(from rev 166559, virtualbox/trunk/vboxservice.service)
  virtualbox/repos/community-i686/vboxweb.service
(from rev 166559, virtualbox/trunk/vboxweb.service)
  virtualbox/repos/community-i686/virtualbox-ext-vnc.install
(from rev 166559, virtualbox/trunk/virtualbox-ext-vnc.install)
  virtualbox/repos/community-i686/virtualbox-guest-dkms.install
(from rev 166559, virtualbox/trunk/virtualbox-guest-dkms.install)
  virtualbox/repos/community-i686/virtualbox-guest-utils.install
(from rev 166559, virtualbox/trunk/virtualbox-guest-utils.install)
  virtualbox/repos/community-i686/virtualbox-guest-utils.sysusers
(from rev 166559, virtualbox/trunk/virtualbox-guest-utils.sysusers)
  virtualbox/repos/community-i686/virtualbox-host-dkms.install
(from rev 166559, virtualbox/trunk/virtualbox-host-dkms.install)
  virtualbox/repos/community-i686/virtualbox.install
(from rev 166559, virtualbox/trunk/virtualbox.install)
  virtualbox/repos/community-i686/virtualbox.sysusers
(from rev 166559, virtualbox/trunk/virtualbox.sysusers)
  virtualbox/repos/community-x86_64/002-dri-driver-path.patch
(from rev 166559, virtualbox/trunk/002-dri-driver-path.patch)
  virtualbox/repos/community-x86_64/003-ogl-include-path.patch
(from rev 166559, virtualbox/trunk/003-ogl-include-path.patch)
  virtualbox/repos/community-x86_64/005-gsoap-build.patch
(from rev 166559, virtualbox/trunk/005-gsoap-build.patch)
  virtualbox/repos/community-x86_64/006-rdesktop-vrdp-keymap-path.patch
(from rev 166559, virtualbox/trunk/006-rdesktop-vrdp-keymap-path.patch)
  virtualbox/repos/community-x86_64/007-python2-path.patch
(from rev 166559, virtualbox/trunk/007-python2-path.patch)
  virtualbox/repos/community-x86_64/010-no-update.patch
(from rev 166559, virtualbox/trunk/010-no-update.patch)
  virtualbox/repos/community-x86_64/60-vboxdrv.rules
(from rev 166559, virtualbox/trunk/60-vboxdrv.rules)
  virtualbox/repos/community-x86_64/60-vboxguest.rules
(from rev 166559, virtualbox/trunk/60-vboxguest.rules)
  virtualbox/repos/community-x86_64/LocalConfig.kmk
(from rev 166559, virtualbox/trunk/LocalConfig.kmk)
  virtualbox/repos/community-x86_64/PKGBUILD
(from rev 166559, virtualbox/trunk/PKGBUILD)
  virtualbox/repos/community-x86_64/build.sh
(from rev 166559, virtualbox/trunk/build.sh)
  virtualbox/repos/community-x86_64/vboxreload
(from rev 166559, virtualbox/trunk/vboxreload)
  virtualbox/repos/community-x86_64/vboxservice-nox.service
(from rev 166559, virtualbox/trunk/vboxservice-nox.service)
  virtualbox/repos/community-x86_64/vboxservice.service
(from rev 166559, virtualbox/trunk/vboxservice.service)
  virtualbox/repos/community-x86_64/vboxweb.service
(from rev 166559, virtualbox/trunk/vboxweb.service)
  virtualbox/repos/community-x86_64/virtualbox-ext-vnc.install
(from rev 166559, virtualbox/trunk/virtualbox-ext-vnc.install)
  virtualbox/repos/community-x86_64/virtualbox-guest-dkms.install
(from rev 166559, virtualbox/trunk/virtualbox-guest-dkms.install)
  virtualbox/repos/community-x86_64/virtualbox-guest-utils.install
(from rev 166559, virtualbox/trunk/virtualbox-guest-utils.install)
  virtualbox/repos/community-x86_64/virtualbox-guest-utils.sysusers
(from rev 166559, 

[arch-commits] Commit in virtualbox/trunk (7 files)

2016-03-13 Thread Sébastien Luttringer
Date: Sunday, March 13, 2016 @ 22:21:28
  Author: seblu
Revision: 166559

upgpkg: virtualbox 5.0.16-3

- put sheebang to bash because of bashish in *.install files
- display a notification about the change of loading modules use 
systemd-modules-load
- fix description in vboxreload
- do not depends on linux-headers
- fix FS#48566
- add vboxvideo modules for guest
- fix modules loading ordering
- update patching snippet to last version
- fix optdeps kernels description

Added:
  virtualbox/trunk/virtualbox-guest-dkms.install
  virtualbox/trunk/virtualbox-host-dkms.install
Modified:
  virtualbox/trunk/PKGBUILD
  virtualbox/trunk/vboxreload
  virtualbox/trunk/virtualbox-ext-vnc.install
  virtualbox/trunk/virtualbox-guest-utils.install
  virtualbox/trunk/virtualbox.install

+
 PKGBUILD   |   38 +-
 vboxreload |2 +-
 virtualbox-ext-vnc.install |2 +-
 virtualbox-guest-dkms.install  |   12 
 virtualbox-guest-utils.install |2 +-
 virtualbox-host-dkms.install   |   12 
 virtualbox.install |2 +-
 7 files changed, 49 insertions(+), 21 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-13 18:55:52 UTC (rev 166558)
+++ PKGBUILD2016-03-13 21:21:28 UTC (rev 166559)
@@ -11,7 +11,7 @@
  'virtualbox-guest-utils-nox'
  'virtualbox-ext-vnc')
 pkgver=5.0.16
-pkgrel=2
+pkgrel=3
 arch=('i686' 'x86_64')
 url='http://virtualbox.org'
 license=('GPL' 'custom')
@@ -75,7 +75,7 @@
  '8ba9179c4a3516904417d773816dd992'
  'fcf6bcef98b16849d5c9f048592739c0'
  'bc9efed88e0469cd7fc460d5a5cd7b4b'
- 'fd3d988c83d33add042544fa9a281923'
+ '0bab94ff2f4835fd907f89eb23ebbe21'
  '9be7e2703afeee1fca9368bd8750e710'
  '9e49bbaa2192b141c27ee43cef8cbab7'
  'ecfd13297d7753ebe7b8763ca5b792d9'
@@ -86,11 +86,13 @@
 prepare() {
 cd "VirtualBox-$pkgver"
 
-for _f in "${source[@]}"; do
-[[ "$_f" =~ \.patch$ ]] && {
-msg2 "Applying patch $_f"
-patch -p1 -N -i "$srcdir/$_f"
-}
+# apply patch from the source array (should be a pacman feature)
+local filename
+for filename in "${source[@]}"; do
+if [[ "$filename" =~ \.patch$ ]]; then
+msg2 "Applying patch $filename"
+patch -p1 -N -i "$srcdir/$filename"
+fi
 done
 
 msg2 'Applying local config'
@@ -246,7 +248,7 @@
 
 package_virtualbox-host-dkms() {
 pkgdesc='VirtualBox Host kernel modules sources'
-depends=('dkms' 'gcc' 'make' 'linux-headers')
+depends=('dkms' 'gcc' 'make')
 replaces=('virtualbox-source'
   'virtualbox-host-source'
   'virtualbox-host-modules'
@@ -253,9 +255,10 @@
   'virtualbox-host-modules-lts')
 conflicts=('virtualbox-source' 'virtualbox-host-source')
 optdepends=('linux-headers: build modules against Arch kernel'
-'linux-lts-headers: build modules against LTS Arch kernel'
-'linux-zen-headers: build modules against ZEN Arch kernel'
-'linux-grsec-headers: build modules against GRSEC Arch kernel')
+'linux-lts-headers: build modules against LTS kernel'
+'linux-zen-headers: build modules against ZEN kernel'
+'linux-grsec-headers: build modules against GRSEC kernel')
+install=virtualbox-host-dkms.install
 
 install -dm755 "$pkgdir/usr/src"
 source "VirtualBox-$pkgver/env.sh"
@@ -267,13 +270,13 @@
 # module loading
 install -Dm644 /dev/null \
 "$pkgdir/usr/lib/modules-load.d/$pkgname.conf"
-printf "vboxnetadp\nvboxnetflt\nvboxdrv\n" > \
+printf "vboxdrv\nvboxpci\nvboxnetadp\nvboxnetflt\n" > \
 "$pkgdir/usr/lib/modules-load.d/$pkgname.conf"
 }
 
 package_virtualbox-guest-dkms() {
 pkgdesc='VirtualBox Guest kernel modules sources'
-depends=('dkms' 'gcc' 'make' 'linux-headers')
+depends=('dkms' 'gcc' 'make')
 replaces=('virtualbox-archlinux-source'
   'virtualbox-guest-source'
   'virtualbox-guest-modules'
@@ -280,9 +283,10 @@
   'virtualbox-guest-modules-lts')
 conflicts=('virtualbox-archlinux-source' 'virtualbox-guest-source')
 optdepends=('linux-headers: build modules against Arch kernel'
-'linux-lts-headers: build modules against LTS Arch kernel'
-'linux-zen-headers: build modules against ZEN Arch kernel'
-'linux-grsec-headers: build modules against GRSEC Arch kernel')
+'linux-lts-headers: build modules against LTS kernel'
+'linux-zen-headers: build modules against ZEN kernel'
+'linux-grsec-headers: build modules against GRSEC kernel')
+install=virtualbox-guest-dkms.install
 
 install -dm755 "$pkgdir/usr/src"
 

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

2016-03-13 Thread Florian Pritz
Date: Sunday, March 13, 2016 @ 20:35:10
  Author: bluewind
Revision: 261417

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

Added:
  transmission/repos/extra-i686/PKGBUILD
(from rev 261416, transmission/trunk/PKGBUILD)
  transmission/repos/extra-i686/transmission-2.90-libsystemd.patch
(from rev 261416, transmission/trunk/transmission-2.90-libsystemd.patch)
  transmission/repos/extra-i686/transmission-cli.install
(from rev 261416, transmission/trunk/transmission-cli.install)
  transmission/repos/extra-i686/transmission-gtk.install
(from rev 261416, transmission/trunk/transmission-gtk.install)
  transmission/repos/extra-i686/transmission-qt.install
(from rev 261416, transmission/trunk/transmission-qt.install)
  transmission/repos/extra-x86_64/PKGBUILD
(from rev 261416, transmission/trunk/PKGBUILD)
  transmission/repos/extra-x86_64/transmission-2.90-libsystemd.patch
(from rev 261416, transmission/trunk/transmission-2.90-libsystemd.patch)
  transmission/repos/extra-x86_64/transmission-cli.install
(from rev 261416, transmission/trunk/transmission-cli.install)
  transmission/repos/extra-x86_64/transmission-gtk.install
(from rev 261416, transmission/trunk/transmission-gtk.install)
  transmission/repos/extra-x86_64/transmission-qt.install
(from rev 261416, transmission/trunk/transmission-qt.install)
Deleted:
  transmission/repos/extra-i686/PKGBUILD
  transmission/repos/extra-i686/transmission-2.90-libsystemd.patch
  transmission/repos/extra-i686/transmission-cli.install
  transmission/repos/extra-i686/transmission-gtk.install
  transmission/repos/extra-i686/transmission-qt.install
  transmission/repos/extra-x86_64/PKGBUILD
  transmission/repos/extra-x86_64/transmission-2.90-libsystemd.patch
  transmission/repos/extra-x86_64/transmission-cli.install
  transmission/repos/extra-x86_64/transmission-gtk.install
  transmission/repos/extra-x86_64/transmission-qt.install

-+
 /PKGBUILD   |  158 ++
 /transmission-2.90-libsystemd.patch |   26 +++
 /transmission-cli.install   |   20 ++
 /transmission-gtk.install   |   24 +++
 /transmission-qt.install|   22 +++
 extra-i686/PKGBUILD |   79 ---
 extra-i686/transmission-2.90-libsystemd.patch   |   13 -
 extra-i686/transmission-cli.install |   10 -
 extra-i686/transmission-gtk.install |   12 -
 extra-i686/transmission-qt.install  |   11 -
 extra-x86_64/PKGBUILD   |   79 ---
 extra-x86_64/transmission-2.90-libsystemd.patch |   13 -
 extra-x86_64/transmission-cli.install   |   10 -
 extra-x86_64/transmission-gtk.install   |   12 -
 extra-x86_64/transmission-qt.install|   11 -
 15 files changed, 250 insertions(+), 250 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-03-13 19:34:59 UTC (rev 261416)
+++ extra-i686/PKGBUILD 2016-03-13 19:35:10 UTC (rev 261417)
@@ -1,79 +0,0 @@
-# $Id$
-# Maintainer : Tom Gundersen 
-# Maintainer : Ionut Biru 
-
-pkgbase=transmission
-pkgname=('transmission-cli' 'transmission-gtk' 'transmission-qt')
-pkgver=2.91
-pkgrel=1
-arch=('i686' 'x86_64')
-url="http://www.transmissionbt.com/;
-license=('MIT')
-makedepends=('gtk3' 'intltool' 'curl' 'qt5-base' 'libevent' 'systemd')
-source=(https://download.transmissionbt.com/files/transmission-${pkgver}.tar.xz
-transmission-2.90-libsystemd.patch)
-md5sums=('1c94234d8ae2c3dc9c25220157d90f69'
- 'bcb54fdb9fec00992960d9bd3b449d4d')
-
-prepare() {
-  cd $pkgbase-$pkgver
-  patch -p1 -i "$srcdir/transmission-2.90-libsystemd.patch"
-  autoreconf -fi
-}
-
-build() {
-  cd $pkgbase-$pkgver
-  ./configure --prefix=/usr
-  make
-
-  cd qt
-  qmake qtr.pro
-  make
-}
-
-package_transmission-cli() {
-  pkgdesc='Fast, easy, and free BitTorrent client (CLI tools, daemon and web 
client)'
-  depends=('curl' 'libevent' 'libsystemd')
-  install=transmission-cli.install
-
-  cd $pkgbase-$pkgver
-
-  for dir in daemon cli web utils; do
-make -C "$dir" DESTDIR="$pkgdir" install
-  done
-
-  install -Dm644 daemon/transmission-daemon.service \
-"$pkgdir/usr/lib/systemd/system/transmission.service"
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/transmission-cli/COPYING"
-}
-
-package_transmission-gtk() {
-  pkgdesc='Fast, easy, and free BitTorrent client (GTK+ GUI)'
-  depends=('curl' 'libevent' 'gtk3' 'desktop-file-utils' 'hicolor-icon-theme')
-  optdepends=('notification-daemon: Desktop notification support'
-  'transmission-cli: daemon and web support')
-  install=transmission-gtk.install
-
-  cd $pkgbase-$pkgver
-
-  make -C gtk DESTDIR="$pkgdir" install
-  make -C po DESTDIR="$pkgdir" install
-  install -Dm644 

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

2016-03-13 Thread Florian Pritz
Date: Sunday, March 13, 2016 @ 20:34:59
  Author: bluewind
Revision: 261416

upgpkg: transmission 2.92-1

upstream update

Modified:
  transmission/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-13 17:39:23 UTC (rev 261415)
+++ PKGBUILD2016-03-13 19:34:59 UTC (rev 261416)
@@ -4,7 +4,7 @@
 
 pkgbase=transmission
 pkgname=('transmission-cli' 'transmission-gtk' 'transmission-qt')
-pkgver=2.91
+pkgver=2.92
 pkgrel=1
 arch=('i686' 'x86_64')
 url="http://www.transmissionbt.com/;
@@ -12,7 +12,7 @@
 makedepends=('gtk3' 'intltool' 'curl' 'qt5-base' 'libevent' 'systemd')
 source=(https://download.transmissionbt.com/files/transmission-${pkgver}.tar.xz
 transmission-2.90-libsystemd.patch)
-md5sums=('1c94234d8ae2c3dc9c25220157d90f69'
+md5sums=('3fce404a436e3cd7fde80fb6ed61c264'
  'bcb54fdb9fec00992960d9bd3b449d4d')
 
 prepare() {


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

2016-03-13 Thread Jonathan Steel
Date: Sunday, March 13, 2016 @ 19:55:52
  Author: jsteel
Revision: 166558

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

Added:
  ruby-shadow/repos/community-i686/PKGBUILD
(from rev 166557, ruby-shadow/trunk/PKGBUILD)
  ruby-shadow/repos/community-x86_64/PKGBUILD
(from rev 166557, ruby-shadow/trunk/PKGBUILD)
Deleted:
  ruby-shadow/repos/community-i686/PKGBUILD
  ruby-shadow/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-03-13 18:55:28 UTC (rev 166557)
+++ community-i686/PKGBUILD 2016-03-13 18:55:52 UTC (rev 166558)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Jonathan Steel 
-# Contributor: Greg Sutcliffe >
-
-pkgname=ruby-shadow
-pkgver=2.4.1
-pkgrel=2
-pkgdesc="Shadow password module"
-arch=('i686' 'x86_64')
-url="https://github.com/apalmblad/ruby-shadow;
-license=('CPL')
-depends=('ruby')
-source=($pkgname-$pkgver.tar.gz::https://github.com/apalmblad/$pkgname/archive/$pkgver.tar.gz)
-md5sums=('849154b36db323b404c31a8667411815')
-
-build() {
-  cd $pkgname-$pkgver
-
-  ruby extconf.rb
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  make DESTDIR="$pkgdir"/ sitedir='$(rubylibprefix)/vendor_ruby' \
-sitehdrdir='$(rubyhdrdir)/vendor_ruby' install
-
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: ruby-shadow/repos/community-i686/PKGBUILD (from rev 166557, 
ruby-shadow/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-03-13 18:55:52 UTC (rev 166558)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jonathan Steel 
+# Contributor: Greg Sutcliffe >
+
+pkgname=ruby-shadow
+pkgver=2.5.0
+pkgrel=1
+pkgdesc="Shadow password module"
+arch=('i686' 'x86_64')
+url="https://github.com/apalmblad/ruby-shadow;
+license=('CPL')
+depends=('ruby')
+source=($pkgname-$pkgver.tar.gz::https://github.com/apalmblad/$pkgname/archive/$pkgver.tar.gz)
+md5sums=('e9c35620f6c25233b7b54dcab8ee955e')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ruby extconf.rb
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR="$pkgdir"/ sitedir='$(rubylibprefix)/vendor_ruby' \
+sitehdrdir='$(rubyhdrdir)/vendor_ruby' install
+
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-03-13 18:55:28 UTC (rev 166557)
+++ community-x86_64/PKGBUILD   2016-03-13 18:55:52 UTC (rev 166558)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Jonathan Steel 
-# Contributor: Greg Sutcliffe >
-
-pkgname=ruby-shadow
-pkgver=2.4.1
-pkgrel=2
-pkgdesc="Shadow password module"
-arch=('i686' 'x86_64')
-url="https://github.com/apalmblad/ruby-shadow;
-license=('CPL')
-depends=('ruby')
-source=($pkgname-$pkgver.tar.gz::https://github.com/apalmblad/$pkgname/archive/$pkgver.tar.gz)
-md5sums=('849154b36db323b404c31a8667411815')
-
-build() {
-  cd $pkgname-$pkgver
-
-  ruby extconf.rb
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  make DESTDIR="$pkgdir"/ sitedir='$(rubylibprefix)/vendor_ruby' \
-sitehdrdir='$(rubyhdrdir)/vendor_ruby' install
-
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: ruby-shadow/repos/community-x86_64/PKGBUILD (from rev 166557, 
ruby-shadow/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-03-13 18:55:52 UTC (rev 166558)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jonathan Steel 
+# Contributor: Greg Sutcliffe >
+
+pkgname=ruby-shadow
+pkgver=2.5.0
+pkgrel=1
+pkgdesc="Shadow password module"
+arch=('i686' 'x86_64')
+url="https://github.com/apalmblad/ruby-shadow;
+license=('CPL')
+depends=('ruby')
+source=($pkgname-$pkgver.tar.gz::https://github.com/apalmblad/$pkgname/archive/$pkgver.tar.gz)
+md5sums=('e9c35620f6c25233b7b54dcab8ee955e')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ruby extconf.rb
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR="$pkgdir"/ sitedir='$(rubylibprefix)/vendor_ruby' \
+sitehdrdir='$(rubyhdrdir)/vendor_ruby' install
+
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2016-03-13 Thread Jonathan Steel
Date: Sunday, March 13, 2016 @ 19:55:28
  Author: jsteel
Revision: 166557

upgpkg: ruby-shadow 2.5.0-1

Modified:
  ruby-shadow/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-13 18:39:47 UTC (rev 166556)
+++ PKGBUILD2016-03-13 18:55:28 UTC (rev 166557)
@@ -3,8 +3,8 @@
 # Contributor: Greg Sutcliffe >
 
 pkgname=ruby-shadow
-pkgver=2.4.1
-pkgrel=2
+pkgver=2.5.0
+pkgrel=1
 pkgdesc="Shadow password module"
 arch=('i686' 'x86_64')
 url="https://github.com/apalmblad/ruby-shadow;
@@ -11,7 +11,7 @@
 license=('CPL')
 depends=('ruby')
 
source=($pkgname-$pkgver.tar.gz::https://github.com/apalmblad/$pkgname/archive/$pkgver.tar.gz)
-md5sums=('849154b36db323b404c31a8667411815')
+md5sums=('e9c35620f6c25233b7b54dcab8ee955e')
 
 build() {
   cd $pkgname-$pkgver


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

2016-03-13 Thread Михаил Страшун
Date: Sunday, March 13, 2016 @ 19:39:47
  Author: dicebot
Revision: 166556

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-libphobos/repos/multilib-x86_64/PKGBUILD
(from rev 166555, lib32-libphobos/trunk/PKGBUILD)
Deleted:
  lib32-libphobos/repos/multilib-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-03-13 18:39:35 UTC (rev 166555)
+++ PKGBUILD2016-03-13 18:39:47 UTC (rev 166556)
@@ -1,51 +0,0 @@
-# Maintainer: Mihails Strasuns 
-# Contributor: Sven-Hendrik Haase 
-# Contributor: Chris Brannon 
-# Contributor: Andrea Scarpino 
-# Contributor: Anders Bergh 
-# Contributor: Alexander Fehr 
-
-pkgname=('lib32-libphobos' 'lib32-libphobos-devel')
-groups=('dlang' 'dlang-dmd')
-pkgver=2.070.1
-pkgrel=1
-pkgdesc="Libraries for cross-compiling 32-bit D apps from 64-bit system"
-arch=('x86_64')
-groups=('dlang' 'dlang-dmd')
-url="http://www.dlang.org;
-source=("git+http://github.com/D-Programming-Language/phobos.git#tag=v$pkgver;
-
"git+http://github.com/D-Programming-Language/druntime.git#tag=v$pkgver;)
-sha1sums=('SKIP'
-  'SKIP')
-makedepends=('dmd' 'git')
-depends=('lib32-gcc-libs')
-license=('custom')
-
-build() {
-cd $srcdir/druntime
-make -f posix.mak MODEL=32 RELEASE=1 DMD=dmd
-
-cd $srcdir/phobos
-make -f posix.mak MODEL=32 RELEASE=1 DMD=dmd
-}
-
-package_lib32-libphobos-devel() {
-pkgdesc="The Phobos standard library for D programming language. Modules 
and static library (32-bit)"
-depends=("dmd")
-options=("staticlibs")
-provides=("d-runtime=$pkgver" "d-stdlib=$pkgver")
-
-install -Dm644 $srcdir/phobos/generated/linux/release/32/libphobos2.a 
$pkgdir/usr/lib32/libphobos2.a
-
-install -Dm644 $srcdir/druntime/LICENSE 
$pkgdir/usr/share/licenses/$pkgname/LICENSE-druntime
-install -Dm644 $srcdir/phobos/LICENSE_1_0.txt 
$pkgdir/usr/share/licenses/$pkgname/LICENSE-phobos
-}
-
-package_lib32-libphobos() {
-pkgdesc="The Phobos standard library for D programming language (32-bit)"
-
-install -Dm644 $srcdir/phobos/generated/linux/release/32/libphobos2.so 
$pkgdir/usr/lib32/libphobos2.so
-
-install -Dm644 $srcdir/druntime/LICENSE 
$pkgdir/usr/share/licenses/$pkgname/LICENSE-druntime
-install -Dm644 $srcdir/phobos/LICENSE_1_0.txt 
$pkgdir/usr/share/licenses/$pkgname/LICENSE-phobos
-}

Copied: lib32-libphobos/repos/multilib-x86_64/PKGBUILD (from rev 166555, 
lib32-libphobos/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-03-13 18:39:47 UTC (rev 166556)
@@ -0,0 +1,51 @@
+# Maintainer: Mihails Strasuns 
+# Contributor: Sven-Hendrik Haase 
+# Contributor: Chris Brannon 
+# Contributor: Andrea Scarpino 
+# Contributor: Anders Bergh 
+# Contributor: Alexander Fehr 
+
+pkgname=('lib32-libphobos' 'lib32-libphobos-devel')
+groups=('dlang' 'dlang-dmd')
+pkgver=2.070.2
+pkgrel=1
+pkgdesc="Libraries for cross-compiling 32-bit D apps from 64-bit system"
+arch=('x86_64')
+groups=('dlang' 'dlang-dmd')
+url="http://www.dlang.org;
+source=("git+http://github.com/D-Programming-Language/phobos.git#tag=v$pkgver;
+
"git+http://github.com/D-Programming-Language/druntime.git#tag=v$pkgver;)
+sha1sums=('SKIP'
+  'SKIP')
+makedepends=('dmd' 'git')
+depends=('lib32-gcc-libs')
+license=('custom')
+
+build() {
+cd $srcdir/druntime
+make -f posix.mak MODEL=32 RELEASE=1 DMD=dmd
+
+cd $srcdir/phobos
+make -f posix.mak MODEL=32 RELEASE=1 DMD=dmd
+}
+
+package_lib32-libphobos-devel() {
+pkgdesc="The Phobos standard library for D programming language. Modules 
and static library (32-bit)"
+depends=("dmd")
+options=("staticlibs")
+provides=("d-runtime=$pkgver" "d-stdlib=$pkgver")
+
+install -Dm644 $srcdir/phobos/generated/linux/release/32/libphobos2.a 
$pkgdir/usr/lib32/libphobos2.a
+
+install -Dm644 $srcdir/druntime/LICENSE 
$pkgdir/usr/share/licenses/$pkgname/LICENSE-druntime
+install -Dm644 $srcdir/phobos/LICENSE_1_0.txt 
$pkgdir/usr/share/licenses/$pkgname/LICENSE-phobos
+}
+
+package_lib32-libphobos() {
+pkgdesc="The Phobos standard library for D programming language (32-bit)"
+
+install -Dm644 $srcdir/phobos/generated/linux/release/32/libphobos2.so 
$pkgdir/usr/lib32/libphobos2.so
+
+install -Dm644 $srcdir/druntime/LICENSE 
$pkgdir/usr/share/licenses/$pkgname/LICENSE-druntime
+install -Dm644 $srcdir/phobos/LICENSE_1_0.txt 
$pkgdir/usr/share/licenses/$pkgname/LICENSE-phobos
+}


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

2016-03-13 Thread Михаил Страшун
Date: Sunday, March 13, 2016 @ 19:39:35
  Author: dicebot
Revision: 166555

upgpkg: lib32-libphobos 2.070.2-1

2.070.2

Modified:
  lib32-libphobos/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-13 18:29:07 UTC (rev 166554)
+++ PKGBUILD2016-03-13 18:39:35 UTC (rev 166555)
@@ -7,7 +7,7 @@
 
 pkgname=('lib32-libphobos' 'lib32-libphobos-devel')
 groups=('dlang' 'dlang-dmd')
-pkgver=2.070.1
+pkgver=2.070.2
 pkgrel=1
 pkgdesc="Libraries for cross-compiling 32-bit D apps from 64-bit system"
 arch=('x86_64')


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

2016-03-13 Thread Sven-Hendrik Haase
Date: Sunday, March 13, 2016 @ 19:28:56
  Author: svenstaro
Revision: 166553

upgpkg: python-neovim 0.1.4-1

upstream release 0.1.4

Modified:
  python-neovim/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-13 16:56:50 UTC (rev 166552)
+++ PKGBUILD2016-03-13 18:28:56 UTC (rev 166553)
@@ -3,7 +3,7 @@
 pkgbase=python-neovim
 pkgname=('python-neovim' 'python2-neovim')
 _realname=python-client
-pkgver=0.1.2
+pkgver=0.1.4
 pkgrel=1
 pkgdesc='Python client for Neovim'
 url='https://github.com/neovim/python-client'
@@ -11,7 +11,7 @@
 license=('Apache')
 makedepends=('python-setuptools' 'python2-setuptools')
 source=("https://github.com/neovim/python-client/archive/${pkgver}.tar.gz;)
-sha256sums=('2d85a493194b5dfbc08cad1fd2e252f7ad35b65eb826dd61f67f4fecfc8476b2')
+sha256sums=('dc4718ab8e239b60093d3f04bd41e9348c6b6b5850c8418e1f8fafc71c62eba5')
 
 prepare() {
   cp -a ${_realname}-${pkgver}{,-python2}


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

2016-03-13 Thread Sven-Hendrik Haase
Date: Sunday, March 13, 2016 @ 19:29:07
  Author: svenstaro
Revision: 166554

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-03-13 18:28:56 UTC (rev 166553)
+++ PKGBUILD2016-03-13 18:29:07 UTC (rev 166554)
@@ -1,44 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-
-pkgbase=python-neovim
-pkgname=('python-neovim' 'python2-neovim')
-_realname=python-client
-pkgver=0.1.2
-pkgrel=1
-pkgdesc='Python client for Neovim'
-url='https://github.com/neovim/python-client'
-arch=('any')
-license=('Apache')
-makedepends=('python-setuptools' 'python2-setuptools')
-source=("https://github.com/neovim/python-client/archive/${pkgver}.tar.gz;)
-sha256sums=('2d85a493194b5dfbc08cad1fd2e252f7ad35b65eb826dd61f67f4fecfc8476b2')
-
-prepare() {
-  cp -a ${_realname}-${pkgver}{,-python2}
-}
-
-build() {
-  cd "${srcdir}/${_realname}-${pkgver}"
-  python setup.py build
-
-  cd "${srcdir}/${_realname}-${pkgver}-python2"
-  python2 setup.py build
-}
-
-package_python-neovim() {
-  pkgdesc='Python 3 client for neovim'
-  depends=('neovim' 'python' 'python-msgpack' 'python-greenlet' 'python-click')
-
-  cd "${srcdir}/${_realname}-${pkgver}"
-  python setup.py install --optimize=1 --prefix=/usr --root="${pkgdir}" 
--skip-build
-}
-
-package_python2-neovim() {
-  pkgdesc='Python 2 client for neovim'
-  depends=('neovim' 'python2' 'python2-msgpack' 'python2-greenlet' 
'python2-click' 'python2-trollius')
-
-  cd "${srcdir}/${_realname}-${pkgver}-python2"
-  python2 setup.py install --optimize=1 --prefix=/usr --root="${pkgdir}" 
--skip-build
-}
-
-# vim:set sw=2 sts=2 et:

Copied: python-neovim/repos/community-any/PKGBUILD (from rev 166553, 
python-neovim/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-03-13 18:29:07 UTC (rev 166554)
@@ -0,0 +1,44 @@
+# Maintainer: Sven-Hendrik Haase 
+
+pkgbase=python-neovim
+pkgname=('python-neovim' 'python2-neovim')
+_realname=python-client
+pkgver=0.1.4
+pkgrel=1
+pkgdesc='Python client for Neovim'
+url='https://github.com/neovim/python-client'
+arch=('any')
+license=('Apache')
+makedepends=('python-setuptools' 'python2-setuptools')
+source=("https://github.com/neovim/python-client/archive/${pkgver}.tar.gz;)
+sha256sums=('dc4718ab8e239b60093d3f04bd41e9348c6b6b5850c8418e1f8fafc71c62eba5')
+
+prepare() {
+  cp -a ${_realname}-${pkgver}{,-python2}
+}
+
+build() {
+  cd "${srcdir}/${_realname}-${pkgver}"
+  python setup.py build
+
+  cd "${srcdir}/${_realname}-${pkgver}-python2"
+  python2 setup.py build
+}
+
+package_python-neovim() {
+  pkgdesc='Python 3 client for neovim'
+  depends=('neovim' 'python' 'python-msgpack' 'python-greenlet' 'python-click')
+
+  cd "${srcdir}/${_realname}-${pkgver}"
+  python setup.py install --optimize=1 --prefix=/usr --root="${pkgdir}" 
--skip-build
+}
+
+package_python2-neovim() {
+  pkgdesc='Python 2 client for neovim'
+  depends=('neovim' 'python2' 'python2-msgpack' 'python2-greenlet' 
'python2-click' 'python2-trollius')
+
+  cd "${srcdir}/${_realname}-${pkgver}-python2"
+  python2 setup.py install --optimize=1 --prefix=/usr --root="${pkgdir}" 
--skip-build
+}
+
+# vim:set sw=2 sts=2 et:


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

2016-03-13 Thread Andreas Radke
Date: Sunday, March 13, 2016 @ 18:28:39
  Author: andyrtr
Revision: 261412

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

Added:
  fontconfig/repos/testing-i686/
  
fontconfig/repos/testing-i686/0001-Revert-Bug-73291-poppler-does-not-show-fl-ligature.patch
(from rev 261411, 
fontconfig/trunk/0001-Revert-Bug-73291-poppler-does-not-show-fl-ligature.patch)
  fontconfig/repos/testing-i686/0002-Update-aliases-for-new-URW-fonts.patch
(from rev 261411, 
fontconfig/trunk/0002-Update-aliases-for-new-URW-fonts.patch)
  
fontconfig/repos/testing-i686/Avoid_an_error_message_on_testing_when_no_fonts.conf_installed.diff
(from rev 261411, 
fontconfig/trunk/Avoid_an_error_message_on_testing_when_no_fonts.conf_installed.diff)
  fontconfig/repos/testing-i686/PKGBUILD
(from rev 261411, fontconfig/trunk/PKGBUILD)
  fontconfig/repos/testing-i686/fontconfig.install
(from rev 261411, fontconfig/trunk/fontconfig.install)
  fontconfig/repos/testing-x86_64/
  
fontconfig/repos/testing-x86_64/0001-Revert-Bug-73291-poppler-does-not-show-fl-ligature.patch
(from rev 261411, 
fontconfig/trunk/0001-Revert-Bug-73291-poppler-does-not-show-fl-ligature.patch)
  fontconfig/repos/testing-x86_64/0002-Update-aliases-for-new-URW-fonts.patch
(from rev 261411, 
fontconfig/trunk/0002-Update-aliases-for-new-URW-fonts.patch)
  
fontconfig/repos/testing-x86_64/Avoid_an_error_message_on_testing_when_no_fonts.conf_installed.diff
(from rev 261411, 
fontconfig/trunk/Avoid_an_error_message_on_testing_when_no_fonts.conf_installed.diff)
  fontconfig/repos/testing-x86_64/PKGBUILD
(from rev 261411, fontconfig/trunk/PKGBUILD)
  fontconfig/repos/testing-x86_64/fontconfig.install
(from rev 261411, fontconfig/trunk/fontconfig.install)

+
 testing-i686/0001-Revert-Bug-73291-poppler-does-not-show-fl-ligature.patch 
|   43 ++
 testing-i686/0002-Update-aliases-for-new-URW-fonts.patch   
|   49 ++
 
testing-i686/Avoid_an_error_message_on_testing_when_no_fonts.conf_installed.diff
   |   23 +++
 testing-i686/PKGBUILD  
|   71 ++
 testing-i686/fontconfig.install
|   40 +
 testing-x86_64/0001-Revert-Bug-73291-poppler-does-not-show-fl-ligature.patch   
|   43 ++
 testing-x86_64/0002-Update-aliases-for-new-URW-fonts.patch 
|   49 ++
 
testing-x86_64/Avoid_an_error_message_on_testing_when_no_fonts.conf_installed.diff
 |   23 +++
 testing-x86_64/PKGBUILD
|   71 ++
 testing-x86_64/fontconfig.install  
|   40 +
 10 files changed, 452 insertions(+)

Copied: 
fontconfig/repos/testing-i686/0001-Revert-Bug-73291-poppler-does-not-show-fl-ligature.patch
 (from rev 261411, 
fontconfig/trunk/0001-Revert-Bug-73291-poppler-does-not-show-fl-ligature.patch)
===
--- testing-i686/0001-Revert-Bug-73291-poppler-does-not-show-fl-ligature.patch  
(rev 0)
+++ testing-i686/0001-Revert-Bug-73291-poppler-does-not-show-fl-ligature.patch  
2016-03-13 17:28:39 UTC (rev 261412)
@@ -0,0 +1,43 @@
+From e7121de237a1873c3241a5b8451e7d00a3d41524 Mon Sep 17 00:00:00 2001
+From: Akira TAGOH 
+Date: Fri, 3 Oct 2014 12:26:42 +0900
+Subject: Revert "Bug 73291 - poppler does not show fl ligature"
+
+This reverts commit c6aa4d4bfcbed14f39d070fe7ef90a4b74642ee7.
+
+This issue has been fixed in poppler and we no longer need to patch it out in 
fontconfig.
+
+diff --git a/conf.d/30-metric-aliases.conf b/conf.d/30-metric-aliases.conf
+index 08c8ba3..49a9602 100644
+--- a/conf.d/30-metric-aliases.conf
 b/conf.d/30-metric-aliases.conf
+@@ -77,15 +77,12 @@ but in an order preferring similar designs first.  We do 
this in three steps:
+ 
+   
+ 
+-
+ 
+   
+ Nimbus Mono L
+@@ -418,10 +415,7 @@ but in an order preferring similar designs first.  We do 
this in three steps:
+   
+ Times
+ 
+-
+ Nimbus Roman No9 L
+ 
+   
+-- 
+cgit v0.10.2
+

Copied: 
fontconfig/repos/testing-i686/0002-Update-aliases-for-new-URW-fonts.patch (from 
rev 261411, fontconfig/trunk/0002-Update-aliases-for-new-URW-fonts.patch)
===
--- testing-i686/0002-Update-aliases-for-new-URW-fonts.patch
(rev 0)
+++ testing-i686/0002-Update-aliases-for-new-URW-fonts.patch2016-03-13 
17:28:39 UTC (rev 261412)
@@ -0,0 +1,49 @@
+From b732bf057f4b3ec3bac539803005e9c42d056b2a Mon Sep 17 00:00:00 2001
+From: Akira TAGOH 
+Date: Thu, 6 Nov 2014 13:15:09 +0900
+Subject: Update aliases for new URW fonts
+
+Patch from Tom Yan
+

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

2016-03-13 Thread Andreas Radke
Date: Sunday, March 13, 2016 @ 18:28:21
  Author: andyrtr
Revision: 261411

upgpkg: fontconfig 2.11.94-1

upstream update 2.11.94 - use developement snapshot for now, last release has 
more bugs and is pretty old

Added:
  
fontconfig/trunk/Avoid_an_error_message_on_testing_when_no_fonts.conf_installed.diff
Modified:
  fontconfig/trunk/0002-Update-aliases-for-new-URW-fonts.patch
  fontconfig/trunk/PKGBUILD

-+
 0002-Update-aliases-for-new-URW-fonts.patch |  259 
--
 Avoid_an_error_message_on_testing_when_no_fonts.conf_installed.diff |   23 
 PKGBUILD|   35 -
 3 files changed, 47 insertions(+), 270 deletions(-)

Modified: 0002-Update-aliases-for-new-URW-fonts.patch
===
--- 0002-Update-aliases-for-new-URW-fonts.patch 2016-03-13 14:51:04 UTC (rev 
261410)
+++ 0002-Update-aliases-for-new-URW-fonts.patch 2016-03-13 17:28:21 UTC (rev 
261411)
@@ -7,237 +7,6 @@
 
 https://bugs.freedesktop.org/show_bug.cgi?id=85225
 
-diff --git a/conf.d/30-metric-aliases.conf b/conf.d/30-metric-aliases.conf
-index 49a9602..cd1e924 100644
 a/conf.d/30-metric-aliases.conf
-+++ b/conf.d/30-metric-aliases.conf
-@@ -6,17 +6,17 @@
- 
- Alias similar/metric-compatible families from various sources:
- 
--PostScript fonts:   URW fonts:GUST fonts:Windows 
fonts:
--==    =  
==
--Helvetica   Nimbus Sans L TeX Gyre Heros
--Helvetica Condensed   TeX Gyre Heros Cn
--Times   Nimbus Roman No9 LTeX Gyre Termes
--Courier Nimbus Mono L TeX Gyre Cursor
--ITC Avant Garde Gothic  URW Gothic L  TeX Gyre Adventor
--ITC Bookman URW Bookman L TeX Gyre Bonum Bookman Old 
Style
--ITC Zapf Chancery   URW Chancery LTeX Gyre Chorus
--PalatinoURW Palladio LTeX Gyre Pagella   Palatino 
Linotype
--New Century Schoolbook  Century Schoolbook L  TeX Gyre ScholaCentury 
Schoolbook
-+PostScript fonts:   URW fonts:  GUST fonts:Windows 
fonts:
-+==  ==  =  
==
-+Helvetica   Nimbus Sans TeX Gyre Heros
-+Helvetica Condensed Nimbus Sans Narrow  TeX Gyre Heros Cn
-+Times   Nimbus RomanTeX Gyre Termes
-+Courier Nimbus Mono TeX Gyre Cursor
-+ITC Avant Garde Gothic  URW Gothic  TeX Gyre Adventor
-+ITC Bookman Bookman URW TeX Gyre Bonum Bookman 
Old Style
-+ITC Zapf Chancery   Chancery URWTeX Gyre Chorus
-+PalatinoPalladio URWTeX Gyre Pagella   Palatino 
Linotype
-+New Century Schoolbook  Century SchoolBook URW  TeX Gyre ScholaCentury 
Schoolbook
- 
- Microsoft fonts:  Liberation fonts:   Google CrOS core fonts:  StarOffice 
fonts:  AMT fonts:
-   ==  ===  
=  ==
-@@ -57,6 +57,13 @@ but in an order preferring similar designs first.  We do 
this in three steps:
-   
- 
-   
-+Nimbus Sans
-+
-+Helvetica
-+
-+  
-+
-+  
- TeX Gyre Heros
- 
- Helvetica
-@@ -64,6 +71,13 @@ but in an order preferring similar designs first.  We do 
this in three steps:
-   
- 
-   
-+Nimbus Sans Narrow
-+
-+Helvetica Condensed
-+
-+  
-+
-+  
- TeX Gyre Heros Cn
- 
- Helvetica Condensed
-@@ -78,6 +92,13 @@ but in an order preferring similar designs first.  We do 
this in three steps:
-   
- 
-   
-+Nimbus Roman
-+
-+Times
-+
-+  
-+
-+  
- TeX Gyre Termes
- 
- Times
-@@ -92,6 +113,13 @@ but in an order preferring similar designs first.  We do 
this in three steps:
-   
- 
-   
-+Nimbus Mono
-+
-+Courier
-+
-+  
-+
-+  
- TeX Gyre Cursor
- 
- Courier
-@@ -113,6 +141,13 @@ but in an order preferring similar designs first.  We do 
this in three steps:
-   
- 
-   
-+URW Gothic
-+
-+ITC Avant Garde Gothic
-+
-+  
-+
-+  
- TeX Gyre Adventor
- 
- ITC Avant Garde Gothic
-@@ -134,6 +169,13 @@ but in an order preferring similar designs first.  We do 
this in three steps:
-   
- 
-   
-+Bookman URW
-+
-+ITC Bookman
-+
-+  
-+
-+  
- TeX Gyre Bonum
- 
- ITC Bookman
-@@ -162,6 +204,13 @@ but in an order preferring similar designs first.  We do 
this in 

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

2016-03-13 Thread Ike Devolder
Date: Sunday, March 13, 2016 @ 17:56:50
  Author: idevolder
Revision: 166552

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

Added:
  doublecmd/repos/community-i686/PKGBUILD
(from rev 166551, doublecmd/trunk/PKGBUILD)
  doublecmd/repos/community-i686/doublecmd.install
(from rev 166551, doublecmd/trunk/doublecmd.install)
  doublecmd/repos/community-x86_64/PKGBUILD
(from rev 166551, doublecmd/trunk/PKGBUILD)
  doublecmd/repos/community-x86_64/doublecmd.install
(from rev 166551, doublecmd/trunk/doublecmd.install)
Deleted:
  doublecmd/repos/community-i686/PKGBUILD
  doublecmd/repos/community-i686/doublecmd.install
  doublecmd/repos/community-x86_64/PKGBUILD
  doublecmd/repos/community-x86_64/doublecmd.install

+
 /PKGBUILD  |  166 +++
 /doublecmd.install |   68 ++
 community-i686/PKGBUILD|   83 -
 community-i686/doublecmd.install   |   34 ---
 community-x86_64/PKGBUILD  |   83 -
 community-x86_64/doublecmd.install |   34 ---
 6 files changed, 234 insertions(+), 234 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-03-13 16:56:37 UTC (rev 166551)
+++ community-i686/PKGBUILD 2016-03-13 16:56:50 UTC (rev 166552)
@@ -1,83 +0,0 @@
-# vim:set ft=sh:
-# $Id$
-# Maintainer: BlackIkeEagle 
-# Contributor: (sirocco AT ngs.ru)
-
-pkgbase=doublecmd
-pkgname=('doublecmd-gtk2' 'doublecmd-qt')
-pkgver=0.6.6
-_helpver=0.6.0
-pkgrel=1
-url="http://doublecmd.sourceforge.net/;
-arch=('i686' 'x86_64')
-license=('GPL')
-install="$pkgbase.install"
-provides=("$pkgbase")
-makedepends=('lazarus' 'qt4pas' 'gtk2')
-optdepends=(
-   'lua51: scripting'
-   'p7zip: support for 7zip archives'
-   'libunrar: support for rar archives'
-)
-source=(
-   
"http://downloads.sourceforge.net/project/$pkgbase/Double%20Commander%20Source/$pkgbase-$pkgver-src.tar.gz;
-   
"http://downloads.sourceforge.net/project/$pkgbase/Double%20Commander%20Source/$pkgbase-help-$_helpver-src.tar.gz;
-   "http://www.herecura.be/files/lazarus-20140321-2.tar.gz;
-)
-
-prepare() {
-   cd "$pkgbase-$pkgver"
-   sed -e 's/LIB_SUFFIX=.*/LIB_SUFFIX=/g' -i install/linux/install.sh
-
-   cd "$srcdir"
-
-   cp -a "$pkgbase-$pkgver" "$pkgbase-gtk"
-   cp -a "$pkgbase-$pkgver" "$pkgbase-qt"
-}
-
-build() {
-   msg2 'build gtk'
-   gtkdir="$srcdir/$pkgbase-gtk"
-   cd "$gtkdir"
-   bsdtar -zxf "$srcdir/lazarus-20140321-2.tar.gz"
-   sed -e "s/\\(export\\ lazbuild=\\).*/\\1\"\$(which lazbuild) 
--primary-config-path=${gtkdir//\//\\\/}\/lazarus\/lazarus-$CARCH\"/" -i 
build.sh
-   sed -e "s/%%SRCDIR%%/${gtkdir//\//\\\/}/g" -i lazarus/packagefiles.xml
-   ./build.sh beta gtk2
-
-   msg2 'build qt'
-   qtdir="$srcdir/$pkgbase-qt"
-   cd "$qtdir"
-   bsdtar -zxf "$srcdir/lazarus-20140321-2.tar.gz"
-   sed -e "s/\\(export\\ lazbuild=\\).*/\\1\"\$(which lazbuild) 
--primary-config-path=${qtdir//\//\\\/}\/lazarus\/lazarus-$CARCH\"/" -i build.sh
-   sed -e "s/%%SRCDIR%%/${qtdir//\//\\\/}/g" -i lazarus/packagefiles.xml
-   ./build.sh beta qt
-
-}
-
-package_doublecmd-gtk2() {
-   pkgdesc="twin-panel (commander-style) file manager (GTK)"
-   depends=('gtk2')
-   conflicts=('doublecmd-qt')
-   cd "$srcdir/$pkgbase-gtk"
-   ./install/linux/install.sh --install-prefix="$pkgdir"
-
-   # install doc
-   cd "$srcdir/$pkgbase-help-$_helpver"
-   cp -a * "$pkgdir/usr/share/$pkgbase/doc/"
-}
-
-package_doublecmd-qt() {
-   pkgdesc="twin-panel (commander-style) file manager (QT)"
-   depends=('qt4pas')
-   conflicts=('doublecmd-gtk2')
-   cd "$srcdir/$pkgbase-qt"
-   ./install/linux/install.sh --install-prefix="$pkgdir"
-
-   # install doc
-   cd "$srcdir/$pkgbase-help-$_helpver"
-   cp -a * "$pkgdir/usr/share/$pkgbase/doc/"
-}
-
-sha256sums=('40172d410b7f37608e702edcb36bdaf3b13ae65f065bf01bc99082c0b01f8610'
-'d50a58f0e8c25c07720f2afd987213f330dfce268e2aef349d1da3de2eef1c39'
-'16560ad7403ffbee1800384768828e1fad924d03068c6248b68a78c393fc4e20')

Copied: doublecmd/repos/community-i686/PKGBUILD (from rev 166551, 
doublecmd/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-03-13 16:56:50 UTC (rev 166552)
@@ -0,0 +1,83 @@
+# vim:set ft=sh:
+# $Id$
+# Maintainer: BlackIkeEagle 
+# Contributor: (sirocco AT ngs.ru)
+
+pkgbase=doublecmd
+pkgname=('doublecmd-gtk2' 'doublecmd-qt')
+pkgver=0.7.0
+_helpver=0.6.0
+pkgrel=1
+url="http://doublecmd.sourceforge.net/;
+arch=('i686' 'x86_64')
+license=('GPL')
+install="$pkgbase.install"
+provides=("$pkgbase")
+makedepends=('lazarus' 

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

2016-03-13 Thread Ike Devolder
Date: Sunday, March 13, 2016 @ 17:55:59
  Author: idevolder
Revision: 166549

upgpkg: php-mongodb 1.1.4-1

Modified:
  php-mongodb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-13 15:52:37 UTC (rev 166548)
+++ PKGBUILD2016-03-13 16:55:59 UTC (rev 166549)
@@ -5,8 +5,8 @@
 # Contributor: Jarek Sedlacek 
 
 pkgname=php-mongodb
-pkgver=1.1.2
-pkgrel=3
+pkgver=1.1.4
+pkgrel=1
 pkgdesc="MongoDB driver for PHP"
 arch=("i686" "x86_64")
 url="http://mongodb.github.io/mongo-php-driver;
@@ -19,7 +19,7 @@
"http://pecl.php.net/get/mongodb-$pkgver.tgz;
"mongodb.ini"
 )
-sha256sums=('4cb80002dfb6be0805457ef0c9f4e91fd03c2e54baedac958ad1e498c741484d'
+sha256sums=('c6aee3b480d2e53b95ce9f4838c08d3f19722fccdb68c57ca11869cad4c3ff8a'
 '242b9ffea6bd84f813c7fc2a767eaa89f83577c5ff10ff36aecec2ca308ff72b')
 
 build() {


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

2016-03-13 Thread Ike Devolder
Date: Sunday, March 13, 2016 @ 17:56:13
  Author: idevolder
Revision: 166550

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

Added:
  php-mongodb/repos/community-i686/PKGBUILD
(from rev 166549, php-mongodb/trunk/PKGBUILD)
  php-mongodb/repos/community-i686/mongodb.ini
(from rev 166549, php-mongodb/trunk/mongodb.ini)
  php-mongodb/repos/community-i686/php-mongodb.install
(from rev 166549, php-mongodb/trunk/php-mongodb.install)
  php-mongodb/repos/community-x86_64/PKGBUILD
(from rev 166549, php-mongodb/trunk/PKGBUILD)
  php-mongodb/repos/community-x86_64/mongodb.ini
(from rev 166549, php-mongodb/trunk/mongodb.ini)
  php-mongodb/repos/community-x86_64/php-mongodb.install
(from rev 166549, php-mongodb/trunk/php-mongodb.install)
Deleted:
  php-mongodb/repos/community-i686/PKGBUILD
  php-mongodb/repos/community-i686/mongodb.ini
  php-mongodb/repos/community-i686/php-mongodb.install
  php-mongodb/repos/community-x86_64/PKGBUILD
  php-mongodb/repos/community-x86_64/mongodb.ini
  php-mongodb/repos/community-x86_64/php-mongodb.install

--+
 /PKGBUILD|   70 +
 /mongodb.ini |4 +
 /php-mongodb.install |   24 +++
 community-i686/PKGBUILD  |   35 
 community-i686/mongodb.ini   |2 
 community-i686/php-mongodb.install   |   12 -
 community-x86_64/PKGBUILD|   35 
 community-x86_64/mongodb.ini |2 
 community-x86_64/php-mongodb.install |   12 -
 9 files changed, 98 insertions(+), 98 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-03-13 16:55:59 UTC (rev 166549)
+++ community-i686/PKGBUILD 2016-03-13 16:56:13 UTC (rev 166550)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: BlackEagle < ike DOT devolder AT gmail DOT com >
-# Maintainer: Felix Yan 
-# Contributor: Martin Striz < ms AT martinstriz DOT cz >
-# Contributor: Jarek Sedlacek 
-
-pkgname=php-mongodb
-pkgver=1.1.2
-pkgrel=3
-pkgdesc="MongoDB driver for PHP"
-arch=("i686" "x86_64")
-url="http://mongodb.github.io/mongo-php-driver;
-license=("Apache")
-depends=('php' 'libmongoc')
-makedepends=('re2c')
-backup=("etc/php/conf.d/mongodb.ini")
-install=php-mongodb.install
-source=(
-   "http://pecl.php.net/get/mongodb-$pkgver.tgz;
-   "mongodb.ini"
-)
-sha256sums=('4cb80002dfb6be0805457ef0c9f4e91fd03c2e54baedac958ad1e498c741484d'
-'242b9ffea6bd84f813c7fc2a767eaa89f83577c5ff10ff36aecec2ca308ff72b')
-
-build() {
-   cd mongodb-$pkgver
-   phpize
-   ./configure --prefix=/usr --with-libbson --with-libmongoc
-}
-
-package() {
-   cd mongodb-$pkgver
-   make INSTALL_ROOT="$pkgdir" install
-   install -Dm644 "$srcdir/mongodb.ini" 
"$pkgdir/etc/php/conf.d/mongodb.ini"
-}

Copied: php-mongodb/repos/community-i686/PKGBUILD (from rev 166549, 
php-mongodb/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-03-13 16:56:13 UTC (rev 166550)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: BlackEagle < ike DOT devolder AT gmail DOT com >
+# Maintainer: Felix Yan 
+# Contributor: Martin Striz < ms AT martinstriz DOT cz >
+# Contributor: Jarek Sedlacek 
+
+pkgname=php-mongodb
+pkgver=1.1.4
+pkgrel=1
+pkgdesc="MongoDB driver for PHP"
+arch=("i686" "x86_64")
+url="http://mongodb.github.io/mongo-php-driver;
+license=("Apache")
+depends=('php' 'libmongoc')
+makedepends=('re2c')
+backup=("etc/php/conf.d/mongodb.ini")
+install=php-mongodb.install
+source=(
+   "http://pecl.php.net/get/mongodb-$pkgver.tgz;
+   "mongodb.ini"
+)
+sha256sums=('c6aee3b480d2e53b95ce9f4838c08d3f19722fccdb68c57ca11869cad4c3ff8a'
+'242b9ffea6bd84f813c7fc2a767eaa89f83577c5ff10ff36aecec2ca308ff72b')
+
+build() {
+   cd mongodb-$pkgver
+   phpize
+   ./configure --prefix=/usr --with-libbson --with-libmongoc
+}
+
+package() {
+   cd mongodb-$pkgver
+   make INSTALL_ROOT="$pkgdir" install
+   install -Dm644 "$srcdir/mongodb.ini" 
"$pkgdir/etc/php/conf.d/mongodb.ini"
+}

Deleted: community-i686/mongodb.ini
===
--- community-i686/mongodb.ini  2016-03-13 16:55:59 UTC (rev 166549)
+++ community-i686/mongodb.ini  2016-03-13 16:56:13 UTC (rev 166550)
@@ -1,2 +0,0 @@
-; Tell PHP to load the MongoDB Extension on startup
-extension=mongodb.so

Copied: php-mongodb/repos/community-i686/mongodb.ini (from rev 166549, 
php-mongodb/trunk/mongodb.ini)
===
--- community-i686/mongodb.ini  (rev 0)
+++ 

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

2016-03-13 Thread Ike Devolder
Date: Sunday, March 13, 2016 @ 17:56:37
  Author: idevolder
Revision: 166551

upgpkg: doublecmd 0.7.0-1

Modified:
  doublecmd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-13 16:56:13 UTC (rev 166550)
+++ PKGBUILD2016-03-13 16:56:37 UTC (rev 166551)
@@ -5,7 +5,7 @@
 
 pkgbase=doublecmd
 pkgname=('doublecmd-gtk2' 'doublecmd-qt')
-pkgver=0.6.6
+pkgver=0.7.0
 _helpver=0.6.0
 pkgrel=1
 url="http://doublecmd.sourceforge.net/;
@@ -78,6 +78,6 @@
cp -a * "$pkgdir/usr/share/$pkgbase/doc/"
 }
 
-sha256sums=('40172d410b7f37608e702edcb36bdaf3b13ae65f065bf01bc99082c0b01f8610'
+sha256sums=('4c0bb537268f44c6571da20a68650ee0164d1db9a300666012a72e8e3d7d6d20'
 'd50a58f0e8c25c07720f2afd987213f330dfce268e2aef349d1da3de2eef1c39'
 '16560ad7403ffbee1800384768828e1fad924d03068c6248b68a78c393fc4e20')


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

2016-03-13 Thread Felix Yan
Date: Sunday, March 13, 2016 @ 16:52:37
  Author: fyan
Revision: 166548

archrelease: copy trunk to community-any

Added:
  thefuck/repos/community-any/PKGBUILD
(from rev 166547, thefuck/trunk/PKGBUILD)
Deleted:
  thefuck/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-03-13 15:52:21 UTC (rev 166547)
+++ PKGBUILD2016-03-13 15:52:37 UTC (rev 166548)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgname=thefuck
-pkgver=3.5
-pkgrel=1
-pkgdesc="Magnificent app which corrects your previous console command"
-arch=('any')
-url="https://github.com/nvbn/thefuck;
-license=('MIT')
-depends=('python-setuptools' 'python-psutil' 'python-six' 'python-colorama' 
'python-decorator')
-makedepends=('git')
-checkdepends=('python-pytest-mock' 'python-mock' 'python-pexpect')
-source=("git+https://github.com/nvbn/thefuck.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-build() {
-  cd thefuck
-  python setup.py build
-}
-
-check() {
-  cd thefuck
-
-  # Hack distribution test by installing it and set PYTHONPATH afterwards
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-
-  # Hack $HOME as it's / in the chroot and not writable
-  cp tests/test_conf.py "$srcdir/test_conf.py.bak"
-  sed -i "s|data = {}|data = {'HOME': '$srcdir'}|" tests/test_conf.py
-  LC_CTYPE=en_US.utf8 
PYTHONPATH="$PWD/tmp_install/usr/lib/python3.5/site-packages:$PYTHONPATH" 
py.test tests
-  mv "$srcdir/test_conf.py.bak" tests/test_conf.py
-}
-
-package() {
-  cd thefuck
-  python setup.py install -O1 --prefix=/usr --root="$pkgdir"
-
-  install -Dm644 LICENSE.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE.md"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: thefuck/repos/community-any/PKGBUILD (from rev 166547, 
thefuck/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-03-13 15:52:37 UTC (rev 166548)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=thefuck
+pkgver=3.6
+pkgrel=1
+pkgdesc="Magnificent app which corrects your previous console command"
+arch=('any')
+url="https://github.com/nvbn/thefuck;
+license=('MIT')
+depends=('python-setuptools' 'python-psutil' 'python-six' 'python-colorama' 
'python-decorator')
+makedepends=('git')
+checkdepends=('python-pytest-mock' 'python-mock' 'python-pexpect')
+source=("git+https://github.com/nvbn/thefuck.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+build() {
+  cd thefuck
+  python setup.py build
+}
+
+check() {
+  cd thefuck
+
+  # Hack distribution test by installing it and set PYTHONPATH afterwards
+  python setup.py install --root="$PWD/tmp_install" --optimize=1
+
+  # Hack $HOME as it's / in the chroot and not writable
+  cp tests/test_conf.py "$srcdir/test_conf.py.bak"
+  sed -i "s|data = {}|data = {'HOME': '$srcdir'}|" tests/test_conf.py
+  LC_CTYPE=en_US.utf8 
PYTHONPATH="$PWD/tmp_install/usr/lib/python3.5/site-packages:$PYTHONPATH" 
py.test tests
+  mv "$srcdir/test_conf.py.bak" tests/test_conf.py
+}
+
+package() {
+  cd thefuck
+  python setup.py install -O1 --prefix=/usr --root="$pkgdir"
+
+  install -Dm644 LICENSE.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE.md"
+}
+
+# vim:set ts=2 sw=2 et:


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

2016-03-13 Thread Felix Yan
Date: Sunday, March 13, 2016 @ 16:52:21
  Author: fyan
Revision: 166547

upgpkg: thefuck 3.6-1

Modified:
  thefuck/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-13 14:37:11 UTC (rev 166546)
+++ PKGBUILD2016-03-13 15:52:21 UTC (rev 166547)
@@ -2,7 +2,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=thefuck
-pkgver=3.5
+pkgver=3.6
 pkgrel=1
 pkgdesc="Magnificent app which corrects your previous console command"
 arch=('any')


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

2016-03-13 Thread Jan Steffens
Date: Sunday, March 13, 2016 @ 15:51:04
  Author: heftig
Revision: 261410

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

Added:
  webkit2gtk/repos/extra-i686/PKGBUILD
(from rev 261409, webkit2gtk/trunk/PKGBUILD)
  webkit2gtk/repos/extra-i686/isnan.patch
(from rev 261409, webkit2gtk/trunk/isnan.patch)
  webkit2gtk/repos/extra-x86_64/PKGBUILD
(from rev 261409, webkit2gtk/trunk/PKGBUILD)
  webkit2gtk/repos/extra-x86_64/isnan.patch
(from rev 261409, webkit2gtk/trunk/isnan.patch)
Deleted:
  webkit2gtk/repos/extra-i686/PKGBUILD
  webkit2gtk/repos/extra-x86_64/PKGBUILD

--+
 /PKGBUILD|  106 +
 extra-i686/PKGBUILD  |   51 -
 extra-i686/isnan.patch   |   12 +
 extra-x86_64/PKGBUILD|   51 -
 extra-x86_64/isnan.patch |   12 +
 5 files changed, 130 insertions(+), 102 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-03-13 14:40:54 UTC (rev 261409)
+++ extra-i686/PKGBUILD 2016-03-13 14:51:04 UTC (rev 261410)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgname=webkit2gtk
-pkgver=2.10.7
-pkgrel=1
-pkgdesc="GTK+ Web content engine library"
-arch=('i686' 'x86_64')
-url="http://webkitgtk.org/;
-license=('custom')
-depends=('libxt' 'libxslt' 'enchant' 'geoclue2' 'gst-plugins-base-libs'
-'libsecret' 'libwebp' 'harfbuzz-icu' 'gtk3' 'libnotify' 'hyphen')
-makedepends=('gtk2' 'gperf' 'gobject-introspection' 'ruby' 'gtk-doc' 'cmake' 
'python')
-optdepends=('gtk2: Netscape plugin support'
-'gst-plugins-base: free media decoding'
-'gst-plugins-good: media decoding'
-'gst-libav: nonfree media decoding')
-options=('!emptydirs')
-source=(http://webkitgtk.org/releases/webkitgtk-${pkgver}.tar.xz)
-sha256sums=('990d62c82ed6dede31a6ff0a82d847f16b812842ff3e1093d17113627652864e')
-
-prepare() {
-  mkdir build
-
-  cd webkitgtk-$pkgver
-  sed -i '1s/python$/&2/' Tools/gtk/generate-gtkdoc
-  rm -r Source/ThirdParty/gtest/
-  rm -r Source/ThirdParty/qunit/
-}
-
-build() {
-  cd build
-  cmake -DPORT=GTK -DCMAKE_BUILD_TYPE=Release \
--DCMAKE_SKIP_RPATH=ON -DCMAKE_INSTALL_PREFIX=/usr \
--DLIB_INSTALL_DIR=/usr/lib 
-DLIBEXEC_INSTALL_DIR=/usr/lib/webkit2gtk-4.0 \
--DENABLE_GTKDOC=ON ../webkitgtk-$pkgver
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-
-  install -m755 -d "$pkgdir/usr/share/licenses/webkit2gtk"
-  cd "$srcdir/webkitgtk-$pkgver/Source"
-  for f in $(find -name 'COPYING*' -or -name 'LICENSE*'); do
-echo $f >> "$pkgdir/usr/share/licenses/webkit2gtk/LICENSE"
-cat $f >> "$pkgdir/usr/share/licenses/webkit2gtk/LICENSE"
-echo "" >> "$pkgdir/usr/share/licenses/webkit2gtk/LICENSE"
-  done
-}

Copied: webkit2gtk/repos/extra-i686/PKGBUILD (from rev 261409, 
webkit2gtk/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-03-13 14:51:04 UTC (rev 261410)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=webkit2gtk
+pkgver=2.10.8
+pkgrel=1
+pkgdesc="GTK+ Web content engine library"
+arch=('i686' 'x86_64')
+url="http://webkitgtk.org/;
+license=('custom')
+depends=('libxt' 'libxslt' 'enchant' 'geoclue2' 'gst-plugins-base-libs' 
'gst-plugins-bad'
+'libsecret' 'libwebp' 'harfbuzz-icu' 'gtk3' 'libnotify' 'hyphen')
+makedepends=('gtk2' 'gperf' 'gobject-introspection' 'ruby' 'gtk-doc' 'cmake' 
'python')
+optdepends=('gtk2: Netscape plugin support'
+'gst-plugins-base: free media decoding'
+'gst-plugins-good: media decoding'
+'gst-libav: nonfree media decoding')
+options=('!emptydirs')
+source=(http://webkitgtk.org/releases/webkitgtk-${pkgver}.tar.xz isnan.patch)
+sha256sums=('313682b23f03c457b28a7ef2d5bdb70a8174cca1d32e0a853fb36fa4dcf928a9'
+'958732bcf77befc534af25e26b57772a42b77b99d88a4904484e7c3f943b0a0e')
+
+prepare() {
+  mkdir build
+
+  cd webkitgtk-$pkgver
+  patch -Np1 -i ../isnan.patch
+  sed -i '1s/python$/&2/' Tools/gtk/generate-gtkdoc
+  rm -r Source/ThirdParty/gtest/
+  rm -r Source/ThirdParty/qunit/
+}
+
+build() {
+  cd build
+  cmake -DPORT=GTK -DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_SKIP_RPATH=ON -DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=/usr/lib 
-DLIBEXEC_INSTALL_DIR=/usr/lib/webkit2gtk-4.0 \
+-DENABLE_GTKDOC=ON ../webkitgtk-$pkgver
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+
+  install -m755 -d "$pkgdir/usr/share/licenses/webkit2gtk"
+  cd "$srcdir/webkitgtk-$pkgver/Source"
+  for f in $(find -name 'COPYING*' -or -name 'LICENSE*'); do
+echo $f >> "$pkgdir/usr/share/licenses/webkit2gtk/LICENSE"
+cat $f >> "$pkgdir/usr/share/licenses/webkit2gtk/LICENSE"
+echo "" >> 

[arch-commits] Commit in webkit2gtk/trunk (PKGBUILD isnan.patch)

2016-03-13 Thread Jan Steffens
Date: Sunday, March 13, 2016 @ 15:40:54
  Author: heftig
Revision: 261409

2.10.8

Added:
  webkit2gtk/trunk/isnan.patch
Modified:
  webkit2gtk/trunk/PKGBUILD

-+
 PKGBUILD|   10 ++
 isnan.patch |   12 
 2 files changed, 18 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-13 14:12:09 UTC (rev 261408)
+++ PKGBUILD2016-03-13 14:40:54 UTC (rev 261409)
@@ -2,13 +2,13 @@
 # Maintainer: Eric Bélanger 
 
 pkgname=webkit2gtk
-pkgver=2.10.7
+pkgver=2.10.8
 pkgrel=1
 pkgdesc="GTK+ Web content engine library"
 arch=('i686' 'x86_64')
 url="http://webkitgtk.org/;
 license=('custom')
-depends=('libxt' 'libxslt' 'enchant' 'geoclue2' 'gst-plugins-base-libs'
+depends=('libxt' 'libxslt' 'enchant' 'geoclue2' 'gst-plugins-base-libs' 
'gst-plugins-bad'
 'libsecret' 'libwebp' 'harfbuzz-icu' 'gtk3' 'libnotify' 'hyphen')
 makedepends=('gtk2' 'gperf' 'gobject-introspection' 'ruby' 'gtk-doc' 'cmake' 
'python')
 optdepends=('gtk2: Netscape plugin support'
@@ -16,13 +16,15 @@
 'gst-plugins-good: media decoding'
 'gst-libav: nonfree media decoding')
 options=('!emptydirs')
-source=(http://webkitgtk.org/releases/webkitgtk-${pkgver}.tar.xz)
-sha256sums=('990d62c82ed6dede31a6ff0a82d847f16b812842ff3e1093d17113627652864e')
+source=(http://webkitgtk.org/releases/webkitgtk-${pkgver}.tar.xz isnan.patch)
+sha256sums=('313682b23f03c457b28a7ef2d5bdb70a8174cca1d32e0a853fb36fa4dcf928a9'
+'958732bcf77befc534af25e26b57772a42b77b99d88a4904484e7c3f943b0a0e')
 
 prepare() {
   mkdir build
 
   cd webkitgtk-$pkgver
+  patch -Np1 -i ../isnan.patch
   sed -i '1s/python$/&2/' Tools/gtk/generate-gtkdoc
   rm -r Source/ThirdParty/gtest/
   rm -r Source/ThirdParty/qunit/

Added: isnan.patch
===
--- isnan.patch (rev 0)
+++ isnan.patch 2016-03-13 14:40:54 UTC (rev 261409)
@@ -0,0 +1,12 @@
+diff -u -r webkitgtk-2.10.8/Source/JavaScriptCore/runtime/Options.cpp 
webkitgtk-2.10.8-isnan/Source/JavaScriptCore/runtime/Options.cpp
+--- webkitgtk-2.10.8/Source/JavaScriptCore/runtime/Options.cpp 2016-03-11 
09:59:07.0 +0100
 webkitgtk-2.10.8-isnan/Source/JavaScriptCore/runtime/Options.cpp   
2016-03-13 13:51:55.114836547 +0100
+@@ -610,7 +610,7 @@
+ case Options::Type::unsignedType:
+ return m_entry.unsignedVal == other.m_entry.unsignedVal;
+ case Options::Type::doubleType:
+-return (m_entry.doubleVal == other.m_entry.doubleVal) || 
(isnan(m_entry.doubleVal) && isnan(other.m_entry.doubleVal));
++return (m_entry.doubleVal == other.m_entry.doubleVal) || 
(std::isnan(m_entry.doubleVal) && std::isnan(other.m_entry.doubleVal));
+ case Options::Type::int32Type:
+ return m_entry.int32Val == other.m_entry.int32Val;
+ case Options::Type::optionRangeType:


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

2016-03-13 Thread Felix Yan
Date: Sunday, March 13, 2016 @ 15:36:05
  Author: fyan
Revision: 166544

upgpkg: python-simplejson 3.8.2-1

Modified:
  python-simplejson/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-13 13:46:35 UTC (rev 166543)
+++ PKGBUILD2016-03-13 14:36:05 UTC (rev 166544)
@@ -6,8 +6,8 @@
 
 pkgbase=python-simplejson
 pkgname=("$pkgbase" 'python2-simplejson')
-pkgver=3.7.2
-pkgrel=2
+pkgver=3.8.2
+pkgrel=1
 pkgdesc='Simple, fast, extensible JSON encoder/decoder for Python'
 license=('MIT')
 arch=('x86_64' 'i686')


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

2016-03-13 Thread Felix Yan
Date: Sunday, March 13, 2016 @ 15:36:31
  Author: fyan
Revision: 166545

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-03-13 14:36:05 UTC (rev 166544)
+++ community-i686/PKGBUILD 2016-03-13 14:36:31 UTC (rev 166545)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: Jaroslav Lichtblau 
-# Contributor: Allan McRae 
-# Contributor: David Moore 
-
-pkgbase=python-simplejson
-pkgname=("$pkgbase" 'python2-simplejson')
-pkgver=3.7.2
-pkgrel=2
-pkgdesc='Simple, fast, extensible JSON encoder/decoder for Python'
-license=('MIT')
-arch=('x86_64' 'i686')
-url='https://github.com/simplejson/simplejson'
-makedepends=('python-setuptools' 'python2-setuptools' 'git')
-source=("git://github.com/simplejson/simplejson.git#tag=v$pkgver")
-md5sums=('SKIP')
-
-package_python-simplejson() {
-  depends=('python')
-
-  cd simplejson
-  python setup.py install --root="$pkgdir"
-  install -Dm644 "$srcdir/simplejson/LICENSE.txt" \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_python2-simplejson() {
-  depends=('python2')
-
-  cd simplejson
-  python2 setup.py install --root="$pkgdir"
-  install -Dm644 "$srcdir/simplejson/LICENSE.txt" \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-simplejson/repos/community-i686/PKGBUILD (from rev 166544, 
python-simplejson/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-03-13 14:36:31 UTC (rev 166545)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Jaroslav Lichtblau 
+# Contributor: Allan McRae 
+# Contributor: David Moore 
+
+pkgbase=python-simplejson
+pkgname=("$pkgbase" 'python2-simplejson')
+pkgver=3.8.2
+pkgrel=1
+pkgdesc='Simple, fast, extensible JSON encoder/decoder for Python'
+license=('MIT')
+arch=('x86_64' 'i686')
+url='https://github.com/simplejson/simplejson'
+makedepends=('python-setuptools' 'python2-setuptools' 'git')
+source=("git://github.com/simplejson/simplejson.git#tag=v$pkgver")
+md5sums=('SKIP')
+
+package_python-simplejson() {
+  depends=('python')
+
+  cd simplejson
+  python setup.py install --root="$pkgdir"
+  install -Dm644 "$srcdir/simplejson/LICENSE.txt" \
+"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_python2-simplejson() {
+  depends=('python2')
+
+  cd simplejson
+  python2 setup.py install --root="$pkgdir"
+  install -Dm644 "$srcdir/simplejson/LICENSE.txt" \
+"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-03-13 14:36:05 UTC (rev 166544)
+++ community-x86_64/PKGBUILD   2016-03-13 14:36:31 UTC (rev 166545)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: Jaroslav Lichtblau 
-# Contributor: Allan McRae 
-# Contributor: David Moore 
-
-pkgbase=python-simplejson
-pkgname=("$pkgbase" 'python2-simplejson')
-pkgver=3.7.2
-pkgrel=2
-pkgdesc='Simple, fast, extensible JSON encoder/decoder for Python'
-license=('MIT')
-arch=('x86_64' 'i686')
-url='https://github.com/simplejson/simplejson'
-makedepends=('python-setuptools' 'python2-setuptools' 'git')
-source=("git://github.com/simplejson/simplejson.git#tag=v$pkgver")
-md5sums=('SKIP')
-
-package_python-simplejson() {
-  depends=('python')
-
-  cd simplejson
-  python setup.py install --root="$pkgdir"
-  install -Dm644 "$srcdir/simplejson/LICENSE.txt" \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_python2-simplejson() {
-  depends=('python2')
-
-  cd simplejson
-  python2 setup.py install --root="$pkgdir"
-  install -Dm644 "$srcdir/simplejson/LICENSE.txt" \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-simplejson/repos/community-x86_64/PKGBUILD (from rev 166544, 

[arch-commits] Commit in openldap/repos (26 files)

2016-03-13 Thread Sébastien Luttringer
Date: Sunday, March 13, 2016 @ 15:12:09
  Author: seblu
Revision: 261408

db-move: moved openldap from [testing] to [core] (i686, x86_64)

Added:
  openldap/repos/core-i686/PKGBUILD
(from rev 261407, openldap/repos/testing-i686/PKGBUILD)
  openldap/repos/core-i686/openldap-ntlm.patch
(from rev 261407, openldap/repos/testing-i686/openldap-ntlm.patch)
  openldap/repos/core-i686/openldap.install
(from rev 261407, openldap/repos/testing-i686/openldap.install)
  openldap/repos/core-i686/openldap.sysusers
(from rev 261407, openldap/repos/testing-i686/openldap.sysusers)
  openldap/repos/core-i686/openldap.tmpfiles
(from rev 261407, openldap/repos/testing-i686/openldap.tmpfiles)
  openldap/repos/core-i686/slapd.service
(from rev 261407, openldap/repos/testing-i686/slapd.service)
  openldap/repos/core-x86_64/PKGBUILD
(from rev 261407, openldap/repos/testing-x86_64/PKGBUILD)
  openldap/repos/core-x86_64/openldap-ntlm.patch
(from rev 261407, openldap/repos/testing-x86_64/openldap-ntlm.patch)
  openldap/repos/core-x86_64/openldap.install
(from rev 261407, openldap/repos/testing-x86_64/openldap.install)
  openldap/repos/core-x86_64/openldap.sysusers
(from rev 261407, openldap/repos/testing-x86_64/openldap.sysusers)
  openldap/repos/core-x86_64/openldap.tmpfiles
(from rev 261407, openldap/repos/testing-x86_64/openldap.tmpfiles)
  openldap/repos/core-x86_64/slapd.service
(from rev 261407, openldap/repos/testing-x86_64/slapd.service)
Deleted:
  openldap/repos/core-i686/PKGBUILD
  openldap/repos/core-i686/openldap-ntlm.patch
  openldap/repos/core-i686/openldap.install
  openldap/repos/core-i686/openldap.sysusers
  openldap/repos/core-i686/openldap.tmpfiles
  openldap/repos/core-i686/slapd.service
  openldap/repos/core-x86_64/PKGBUILD
  openldap/repos/core-x86_64/openldap-ntlm.patch
  openldap/repos/core-x86_64/openldap.install
  openldap/repos/core-x86_64/openldap.sysusers
  openldap/repos/core-x86_64/openldap.tmpfiles
  openldap/repos/core-x86_64/slapd.service
  openldap/repos/testing-i686/
  openldap/repos/testing-x86_64/

-+
 /PKGBUILD   |  236 +++
 /openldap-ntlm.patch|  460 ++
 /openldap.install   |   28 ++
 /openldap.sysusers  |2 
 /openldap.tmpfiles  |6 
 /slapd.service  |   18 +
 core-i686/PKGBUILD  |  118 -
 core-i686/openldap-ntlm.patch   |  230 ---
 core-i686/openldap.install  |   14 -
 core-i686/openldap.sysusers |1 
 core-i686/openldap.tmpfiles |3 
 core-i686/slapd.service |9 
 core-x86_64/PKGBUILD|  118 -
 core-x86_64/openldap-ntlm.patch |  230 ---
 core-x86_64/openldap.install|   14 -
 core-x86_64/openldap.sysusers   |1 
 core-x86_64/openldap.tmpfiles   |3 
 core-x86_64/slapd.service   |9 
 18 files changed, 750 insertions(+), 750 deletions(-)

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


[arch-commits] Commit in virtualbox/repos (80 files)

2016-03-13 Thread Sébastien Luttringer
Date: Sunday, March 13, 2016 @ 14:46:35
  Author: seblu
Revision: 166543

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

Added:
  virtualbox/repos/community-i686/002-dri-driver-path.patch
(from rev 166542, virtualbox/trunk/002-dri-driver-path.patch)
  virtualbox/repos/community-i686/003-ogl-include-path.patch
(from rev 166542, virtualbox/trunk/003-ogl-include-path.patch)
  virtualbox/repos/community-i686/005-gsoap-build.patch
(from rev 166542, virtualbox/trunk/005-gsoap-build.patch)
  virtualbox/repos/community-i686/006-rdesktop-vrdp-keymap-path.patch
(from rev 166542, virtualbox/trunk/006-rdesktop-vrdp-keymap-path.patch)
  virtualbox/repos/community-i686/007-python2-path.patch
(from rev 166542, virtualbox/trunk/007-python2-path.patch)
  virtualbox/repos/community-i686/010-no-update.patch
(from rev 166542, virtualbox/trunk/010-no-update.patch)
  virtualbox/repos/community-i686/60-vboxdrv.rules
(from rev 166542, virtualbox/trunk/60-vboxdrv.rules)
  virtualbox/repos/community-i686/60-vboxguest.rules
(from rev 166542, virtualbox/trunk/60-vboxguest.rules)
  virtualbox/repos/community-i686/LocalConfig.kmk
(from rev 166542, virtualbox/trunk/LocalConfig.kmk)
  virtualbox/repos/community-i686/PKGBUILD
(from rev 166542, virtualbox/trunk/PKGBUILD)
  virtualbox/repos/community-i686/build.sh
(from rev 166542, virtualbox/trunk/build.sh)
  virtualbox/repos/community-i686/vboxreload
(from rev 166542, virtualbox/trunk/vboxreload)
  virtualbox/repos/community-i686/vboxservice-nox.service
(from rev 166542, virtualbox/trunk/vboxservice-nox.service)
  virtualbox/repos/community-i686/vboxservice.service
(from rev 166542, virtualbox/trunk/vboxservice.service)
  virtualbox/repos/community-i686/vboxweb.service
(from rev 166542, virtualbox/trunk/vboxweb.service)
  virtualbox/repos/community-i686/virtualbox-ext-vnc.install
(from rev 166542, virtualbox/trunk/virtualbox-ext-vnc.install)
  virtualbox/repos/community-i686/virtualbox-guest-utils.install
(from rev 166542, virtualbox/trunk/virtualbox-guest-utils.install)
  virtualbox/repos/community-i686/virtualbox-guest-utils.sysusers
(from rev 166542, virtualbox/trunk/virtualbox-guest-utils.sysusers)
  virtualbox/repos/community-i686/virtualbox.install
(from rev 166542, virtualbox/trunk/virtualbox.install)
  virtualbox/repos/community-i686/virtualbox.sysusers
(from rev 166542, virtualbox/trunk/virtualbox.sysusers)
  virtualbox/repos/community-x86_64/002-dri-driver-path.patch
(from rev 166542, virtualbox/trunk/002-dri-driver-path.patch)
  virtualbox/repos/community-x86_64/003-ogl-include-path.patch
(from rev 166542, virtualbox/trunk/003-ogl-include-path.patch)
  virtualbox/repos/community-x86_64/005-gsoap-build.patch
(from rev 166542, virtualbox/trunk/005-gsoap-build.patch)
  virtualbox/repos/community-x86_64/006-rdesktop-vrdp-keymap-path.patch
(from rev 166542, virtualbox/trunk/006-rdesktop-vrdp-keymap-path.patch)
  virtualbox/repos/community-x86_64/007-python2-path.patch
(from rev 166542, virtualbox/trunk/007-python2-path.patch)
  virtualbox/repos/community-x86_64/010-no-update.patch
(from rev 166542, virtualbox/trunk/010-no-update.patch)
  virtualbox/repos/community-x86_64/60-vboxdrv.rules
(from rev 166542, virtualbox/trunk/60-vboxdrv.rules)
  virtualbox/repos/community-x86_64/60-vboxguest.rules
(from rev 166542, virtualbox/trunk/60-vboxguest.rules)
  virtualbox/repos/community-x86_64/LocalConfig.kmk
(from rev 166542, virtualbox/trunk/LocalConfig.kmk)
  virtualbox/repos/community-x86_64/PKGBUILD
(from rev 166542, virtualbox/trunk/PKGBUILD)
  virtualbox/repos/community-x86_64/build.sh
(from rev 166542, virtualbox/trunk/build.sh)
  virtualbox/repos/community-x86_64/vboxreload
(from rev 166542, virtualbox/trunk/vboxreload)
  virtualbox/repos/community-x86_64/vboxservice-nox.service
(from rev 166542, virtualbox/trunk/vboxservice-nox.service)
  virtualbox/repos/community-x86_64/vboxservice.service
(from rev 166542, virtualbox/trunk/vboxservice.service)
  virtualbox/repos/community-x86_64/vboxweb.service
(from rev 166542, virtualbox/trunk/vboxweb.service)
  virtualbox/repos/community-x86_64/virtualbox-ext-vnc.install
(from rev 166542, virtualbox/trunk/virtualbox-ext-vnc.install)
  virtualbox/repos/community-x86_64/virtualbox-guest-utils.install
(from rev 166542, virtualbox/trunk/virtualbox-guest-utils.install)
  virtualbox/repos/community-x86_64/virtualbox-guest-utils.sysusers
(from rev 166542, virtualbox/trunk/virtualbox-guest-utils.sysusers)
  virtualbox/repos/community-x86_64/virtualbox.install
(from rev 166542, virtualbox/trunk/virtualbox.install)
  virtualbox/repos/community-x86_64/virtualbox.sysusers
(from rev 166542, virtualbox/trunk/virtualbox.sysusers)
Deleted:
  virtualbox/repos/community-i686/002-dri-driver-path.patch
  virtualbox/repos/community-i686/003-ogl-include-path.patch
  

[arch-commits] Commit in virtualbox/repos/community-x86_64 (40 files)

2016-03-13 Thread Sébastien Luttringer
Date: Sunday, March 13, 2016 @ 14:42:57
  Author: seblu
Revision: 166542

archrelease: copy trunk to community-x86_64

Added:
  virtualbox/repos/community-x86_64/002-dri-driver-path.patch
(from rev 166541, virtualbox/trunk/002-dri-driver-path.patch)
  virtualbox/repos/community-x86_64/003-ogl-include-path.patch
(from rev 166541, virtualbox/trunk/003-ogl-include-path.patch)
  virtualbox/repos/community-x86_64/005-gsoap-build.patch
(from rev 166541, virtualbox/trunk/005-gsoap-build.patch)
  virtualbox/repos/community-x86_64/006-rdesktop-vrdp-keymap-path.patch
(from rev 166541, virtualbox/trunk/006-rdesktop-vrdp-keymap-path.patch)
  virtualbox/repos/community-x86_64/007-python2-path.patch
(from rev 166541, virtualbox/trunk/007-python2-path.patch)
  virtualbox/repos/community-x86_64/010-no-update.patch
(from rev 166541, virtualbox/trunk/010-no-update.patch)
  virtualbox/repos/community-x86_64/60-vboxdrv.rules
(from rev 166541, virtualbox/trunk/60-vboxdrv.rules)
  virtualbox/repos/community-x86_64/60-vboxguest.rules
(from rev 166541, virtualbox/trunk/60-vboxguest.rules)
  virtualbox/repos/community-x86_64/LocalConfig.kmk
(from rev 166541, virtualbox/trunk/LocalConfig.kmk)
  virtualbox/repos/community-x86_64/PKGBUILD
(from rev 166541, virtualbox/trunk/PKGBUILD)
  virtualbox/repos/community-x86_64/build.sh
(from rev 166541, virtualbox/trunk/build.sh)
  virtualbox/repos/community-x86_64/vboxreload
(from rev 166541, virtualbox/trunk/vboxreload)
  virtualbox/repos/community-x86_64/vboxservice-nox.service
(from rev 166541, virtualbox/trunk/vboxservice-nox.service)
  virtualbox/repos/community-x86_64/vboxservice.service
(from rev 166541, virtualbox/trunk/vboxservice.service)
  virtualbox/repos/community-x86_64/vboxweb.service
(from rev 166541, virtualbox/trunk/vboxweb.service)
  virtualbox/repos/community-x86_64/virtualbox-ext-vnc.install
(from rev 166541, virtualbox/trunk/virtualbox-ext-vnc.install)
  virtualbox/repos/community-x86_64/virtualbox-guest-utils.install
(from rev 166541, virtualbox/trunk/virtualbox-guest-utils.install)
  virtualbox/repos/community-x86_64/virtualbox-guest-utils.sysusers
(from rev 166541, virtualbox/trunk/virtualbox-guest-utils.sysusers)
  virtualbox/repos/community-x86_64/virtualbox.install
(from rev 166541, virtualbox/trunk/virtualbox.install)
  virtualbox/repos/community-x86_64/virtualbox.sysusers
(from rev 166541, virtualbox/trunk/virtualbox.sysusers)
Deleted:
  virtualbox/repos/community-x86_64/002-dri-driver-path.patch
  virtualbox/repos/community-x86_64/003-ogl-include-path.patch
  virtualbox/repos/community-x86_64/005-gsoap-build.patch
  virtualbox/repos/community-x86_64/006-rdesktop-vrdp-keymap-path.patch
  virtualbox/repos/community-x86_64/007-python2-path.patch
  virtualbox/repos/community-x86_64/010-no-update.patch
  virtualbox/repos/community-x86_64/60-vboxdrv.rules
  virtualbox/repos/community-x86_64/60-vboxguest.rules
  virtualbox/repos/community-x86_64/LocalConfig.kmk
  virtualbox/repos/community-x86_64/PKGBUILD
  virtualbox/repos/community-x86_64/build.sh
  virtualbox/repos/community-x86_64/vboxreload
  virtualbox/repos/community-x86_64/vboxservice-nox.service
  virtualbox/repos/community-x86_64/vboxservice.service
  virtualbox/repos/community-x86_64/vboxweb.service
  virtualbox/repos/community-x86_64/virtualbox-ext-vnc.install
  virtualbox/repos/community-x86_64/virtualbox-guest-utils.install
  virtualbox/repos/community-x86_64/virtualbox-guest-utils.sysusers
  virtualbox/repos/community-x86_64/virtualbox.install
  virtualbox/repos/community-x86_64/virtualbox.sysusers

-+
 002-dri-driver-path.patch   |   56 +-
 003-ogl-include-path.patch  |   86 +--
 005-gsoap-build.patch   |   22 -
 006-rdesktop-vrdp-keymap-path.patch |   24 -
 007-python2-path.patch  |   18 
 010-no-update.patch |  198 -
 60-vboxdrv.rules|   16 
 60-vboxguest.rules  |4 
 LocalConfig.kmk |   56 +-
 PKGBUILD|  736 +-
 build.sh|6 
 vboxreload  |   74 +--
 vboxservice-nox.service |   22 -
 vboxservice.service |   24 -
 vboxweb.service |   22 -
 virtualbox-ext-vnc.install  |   50 +-
 virtualbox-guest-utils.install  |   46 +-
 virtualbox-guest-utils.sysusers |2 
 virtualbox.install  |   84 +--
 virtualbox.sysusers |2 
 20 files changed, 774 insertions(+), 774 deletions(-)

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


[arch-commits] Commit in virtualbox/repos/community-i686 (40 files)

2016-03-13 Thread Sébastien Luttringer
Date: Sunday, March 13, 2016 @ 14:41:19
  Author: seblu
Revision: 166541

archrelease: copy trunk to community-i686

Added:
  virtualbox/repos/community-i686/002-dri-driver-path.patch
(from rev 166540, virtualbox/trunk/002-dri-driver-path.patch)
  virtualbox/repos/community-i686/003-ogl-include-path.patch
(from rev 166540, virtualbox/trunk/003-ogl-include-path.patch)
  virtualbox/repos/community-i686/005-gsoap-build.patch
(from rev 166540, virtualbox/trunk/005-gsoap-build.patch)
  virtualbox/repos/community-i686/006-rdesktop-vrdp-keymap-path.patch
(from rev 166540, virtualbox/trunk/006-rdesktop-vrdp-keymap-path.patch)
  virtualbox/repos/community-i686/007-python2-path.patch
(from rev 166540, virtualbox/trunk/007-python2-path.patch)
  virtualbox/repos/community-i686/010-no-update.patch
(from rev 166540, virtualbox/trunk/010-no-update.patch)
  virtualbox/repos/community-i686/60-vboxdrv.rules
(from rev 166540, virtualbox/trunk/60-vboxdrv.rules)
  virtualbox/repos/community-i686/60-vboxguest.rules
(from rev 166540, virtualbox/trunk/60-vboxguest.rules)
  virtualbox/repos/community-i686/LocalConfig.kmk
(from rev 166540, virtualbox/trunk/LocalConfig.kmk)
  virtualbox/repos/community-i686/PKGBUILD
(from rev 166540, virtualbox/trunk/PKGBUILD)
  virtualbox/repos/community-i686/build.sh
(from rev 166540, virtualbox/trunk/build.sh)
  virtualbox/repos/community-i686/vboxreload
(from rev 166540, virtualbox/trunk/vboxreload)
  virtualbox/repos/community-i686/vboxservice-nox.service
(from rev 166540, virtualbox/trunk/vboxservice-nox.service)
  virtualbox/repos/community-i686/vboxservice.service
(from rev 166540, virtualbox/trunk/vboxservice.service)
  virtualbox/repos/community-i686/vboxweb.service
(from rev 166540, virtualbox/trunk/vboxweb.service)
  virtualbox/repos/community-i686/virtualbox-ext-vnc.install
(from rev 166540, virtualbox/trunk/virtualbox-ext-vnc.install)
  virtualbox/repos/community-i686/virtualbox-guest-utils.install
(from rev 166540, virtualbox/trunk/virtualbox-guest-utils.install)
  virtualbox/repos/community-i686/virtualbox-guest-utils.sysusers
(from rev 166540, virtualbox/trunk/virtualbox-guest-utils.sysusers)
  virtualbox/repos/community-i686/virtualbox.install
(from rev 166540, virtualbox/trunk/virtualbox.install)
  virtualbox/repos/community-i686/virtualbox.sysusers
(from rev 166540, virtualbox/trunk/virtualbox.sysusers)
Deleted:
  virtualbox/repos/community-i686/002-dri-driver-path.patch
  virtualbox/repos/community-i686/003-ogl-include-path.patch
  virtualbox/repos/community-i686/005-gsoap-build.patch
  virtualbox/repos/community-i686/006-rdesktop-vrdp-keymap-path.patch
  virtualbox/repos/community-i686/007-python2-path.patch
  virtualbox/repos/community-i686/010-no-update.patch
  virtualbox/repos/community-i686/60-vboxdrv.rules
  virtualbox/repos/community-i686/60-vboxguest.rules
  virtualbox/repos/community-i686/LocalConfig.kmk
  virtualbox/repos/community-i686/PKGBUILD
  virtualbox/repos/community-i686/build.sh
  virtualbox/repos/community-i686/vboxreload
  virtualbox/repos/community-i686/vboxservice-nox.service
  virtualbox/repos/community-i686/vboxservice.service
  virtualbox/repos/community-i686/vboxweb.service
  virtualbox/repos/community-i686/virtualbox-ext-vnc.install
  virtualbox/repos/community-i686/virtualbox-guest-utils.install
  virtualbox/repos/community-i686/virtualbox-guest-utils.sysusers
  virtualbox/repos/community-i686/virtualbox.install
  virtualbox/repos/community-i686/virtualbox.sysusers

-+
 002-dri-driver-path.patch   |   56 +-
 003-ogl-include-path.patch  |   86 +--
 005-gsoap-build.patch   |   22 -
 006-rdesktop-vrdp-keymap-path.patch |   24 -
 007-python2-path.patch  |   18 
 010-no-update.patch |  198 -
 60-vboxdrv.rules|   16 
 60-vboxguest.rules  |4 
 LocalConfig.kmk |   56 +-
 PKGBUILD|  736 +-
 build.sh|6 
 vboxreload  |   74 +--
 vboxservice-nox.service |   22 -
 vboxservice.service |   24 -
 vboxweb.service |   22 -
 virtualbox-ext-vnc.install  |   50 +-
 virtualbox-guest-utils.install  |   46 +-
 virtualbox-guest-utils.sysusers |2 
 virtualbox.install  |   84 +--
 virtualbox.sysusers |2 
 20 files changed, 774 insertions(+), 774 deletions(-)

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


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

2016-03-13 Thread Sébastien Luttringer
Date: Sunday, March 13, 2016 @ 14:29:35
  Author: seblu
Revision: 166540

upgpkg: virtualbox 5.0.16-2

- fix FS#48551

Modified:
  virtualbox/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-13 12:35:13 UTC (rev 166539)
+++ PKGBUILD2016-03-13 13:29:35 UTC (rev 166540)
@@ -11,7 +11,7 @@
  'virtualbox-guest-utils-nox'
  'virtualbox-ext-vnc')
 pkgver=5.0.16
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 url='http://virtualbox.org'
 license=('GPL' 'custom')
@@ -267,7 +267,7 @@
 # module loading
 install -Dm644 /dev/null \
 "$pkgdir/usr/lib/modules-load.d/$pkgname.conf"
-echo "vboxnetadp\nvboxnetflt\nvboxdrv\n" > \
+printf "vboxnetadp\nvboxnetflt\nvboxdrv\n" > \
 "$pkgdir/usr/lib/modules-load.d/$pkgname.conf"
 }
 
@@ -294,7 +294,7 @@
 # module loading
 install -Dm644 /dev/null \
 "$pkgdir/usr/lib/modules-load.d/$pkgname.conf"
-echo "vboxnetadp\nvboxsf\nvboxguest\n" > \
+printf "vboxnetadp\nvboxsf\nvboxguest\n" > \
 "$pkgdir/usr/lib/modules-load.d/$pkgname.conf"
 }
 


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

2016-03-13 Thread Laurent Carlier
Date: Sunday, March 13, 2016 @ 14:22:53
  Author: lcarlier
Revision: 261406

upgpkg: vulkan-docs 1.0.20160311-1

upstream update 20160311 (1.0.6)

Modified:
  vulkan-docs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-13 13:04:03 UTC (rev 261405)
+++ PKGBUILD2016-03-13 13:22:53 UTC (rev 261406)
@@ -3,9 +3,9 @@
 
 pkgbase=vulkan-docs
 pkgname=(vulkan-headers vulkan-man-pages)
-pkgver=1.0.20160304
+pkgver=1.0.20160311
 _pkgname=Vulkan-Docs
-_pkgver=1.0-core+wsi-20160304
+_pkgver=1.0-core+wsi-20160311
 pkgrel=1
 arch=(any)
 url="https://www.khronos.org/vulkan/;
@@ -13,7 +13,7 @@
 makedepends=(asciidoc)
 groups=(vulkan-devel)
 
source=("https://github.com/KhronosGroup/${_pkgname}/archive/v${_pkgver}.tar.gz;)
-md5sums=('42e8f1a137591f50e564bed50a544131')
+md5sums=('ed6bb158866d2d542a40144f7649b570')
 
 build() {
   cd "${_pkgname}-${_pkgver/+/-}/doc/specs/vulkan"


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

2016-03-13 Thread Laurent Carlier
Date: Sunday, March 13, 2016 @ 14:22:59
  Author: lcarlier
Revision: 261407

archrelease: copy trunk to extra-any

Added:
  vulkan-docs/repos/extra-any/PKGBUILD
(from rev 261406, vulkan-docs/trunk/PKGBUILD)
Deleted:
  vulkan-docs/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-03-13 13:22:53 UTC (rev 261406)
+++ PKGBUILD2016-03-13 13:22:59 UTC (rev 261407)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Laurent Carlier 
-
-pkgbase=vulkan-docs
-pkgname=(vulkan-headers vulkan-man-pages)
-pkgver=1.0.20160304
-_pkgname=Vulkan-Docs
-_pkgver=1.0-core+wsi-20160304
-pkgrel=1
-arch=(any)
-url="https://www.khronos.org/vulkan/;
-license=('custom')
-makedepends=(asciidoc)
-groups=(vulkan-devel)
-source=("https://github.com/KhronosGroup/${_pkgname}/archive/v${_pkgver}.tar.gz;)
-md5sums=('42e8f1a137591f50e564bed50a544131')
-
-build() {
-  cd "${_pkgname}-${_pkgver/+/-}/doc/specs/vulkan"
-
-  make manpages
-}
-
-package_vulkan-headers() {
-  pkgdesc="Vulkan header files"
-  cd "${_pkgname}-${_pkgver/+/-}"
-
-  install -dm755 ${pkgdir}/usr/include/vulkan
-  install -m644 src/vulkan/vk_platform.h ${pkgdir}/usr/include/vulkan/
-  install -m644 src/vulkan/vulkan.h ${pkgdir}/usr/include/vulkan
-
-  install -D -m644 doc/specs/vulkan/copyright.txt 
${pkgdir}/usr/share/licenses/${pkgname}/copyright.txt
-}
-
-package_vulkan-man-pages() {
-  pkgdesc="Vulkan man pages"
-  cd "${_pkgname}-${_pkgver/+/-}"
-
-  install -dm755 "${pkgdir}/usr/share/man/man3"
-  install -m644 doc/specs/vulkan/man/*.3 "${pkgdir}/usr/share/man/man3/"
-
-  install -D -m644 doc/specs/vulkan/copyright.txt 
${pkgdir}/usr/share/licenses/${pkgname}/copyright.txt
-}

Copied: vulkan-docs/repos/extra-any/PKGBUILD (from rev 261406, 
vulkan-docs/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-03-13 13:22:59 UTC (rev 261407)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Laurent Carlier 
+
+pkgbase=vulkan-docs
+pkgname=(vulkan-headers vulkan-man-pages)
+pkgver=1.0.20160311
+_pkgname=Vulkan-Docs
+_pkgver=1.0-core+wsi-20160311
+pkgrel=1
+arch=(any)
+url="https://www.khronos.org/vulkan/;
+license=('custom')
+makedepends=(asciidoc)
+groups=(vulkan-devel)
+source=("https://github.com/KhronosGroup/${_pkgname}/archive/v${_pkgver}.tar.gz;)
+md5sums=('ed6bb158866d2d542a40144f7649b570')
+
+build() {
+  cd "${_pkgname}-${_pkgver/+/-}/doc/specs/vulkan"
+
+  make manpages
+}
+
+package_vulkan-headers() {
+  pkgdesc="Vulkan header files"
+  cd "${_pkgname}-${_pkgver/+/-}"
+
+  install -dm755 ${pkgdir}/usr/include/vulkan
+  install -m644 src/vulkan/vk_platform.h ${pkgdir}/usr/include/vulkan/
+  install -m644 src/vulkan/vulkan.h ${pkgdir}/usr/include/vulkan
+
+  install -D -m644 doc/specs/vulkan/copyright.txt 
${pkgdir}/usr/share/licenses/${pkgname}/copyright.txt
+}
+
+package_vulkan-man-pages() {
+  pkgdesc="Vulkan man pages"
+  cd "${_pkgname}-${_pkgver/+/-}"
+
+  install -dm755 "${pkgdir}/usr/share/man/man3"
+  install -m644 doc/specs/vulkan/man/*.3 "${pkgdir}/usr/share/man/man3/"
+
+  install -D -m644 doc/specs/vulkan/copyright.txt 
${pkgdir}/usr/share/licenses/${pkgname}/copyright.txt
+}


[arch-commits] Commit in (4 files)

2016-03-13 Thread Sébastien Luttringer
Date: Sunday, March 13, 2016 @ 14:04:03
  Author: seblu
Revision: 261405

Update patching snippet with -N

Modified:
  coreutils/trunk/PKGBUILD
  file/trunk/PKGBUILD
  patch/trunk/PKGBUILD
  pcre/trunk/PKGBUILD

--+
 coreutils/trunk/PKGBUILD |2 +-
 file/trunk/PKGBUILD  |2 +-
 patch/trunk/PKGBUILD |2 +-
 pcre/trunk/PKGBUILD  |2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

Modified: coreutils/trunk/PKGBUILD
===
--- coreutils/trunk/PKGBUILD2016-03-13 12:58:09 UTC (rev 261404)
+++ coreutils/trunk/PKGBUILD2016-03-13 13:04:03 UTC (rev 261405)
@@ -26,7 +26,7 @@
   for filename in "${source[@]}"; do
 if [[ "$filename" =~ \.patch$ ]]; then
   msg2 "Applying patch $filename"
-  patch -p1 -i "$srcdir/$filename"
+  patch -p1 -N -i "$srcdir/$filename"
 fi
   done
   :

Modified: file/trunk/PKGBUILD
===
--- file/trunk/PKGBUILD 2016-03-13 12:58:09 UTC (rev 261404)
+++ file/trunk/PKGBUILD 2016-03-13 13:04:03 UTC (rev 261405)
@@ -22,7 +22,7 @@
   for filename in "${source[@]}"; do
 if [[ "$filename" =~ \.patch$ ]]; then
   msg2 "Applying patch $filename"
-  patch -p1 -i "$srcdir/$filename"
+  patch -p1 -N -i "$srcdir/$filename"
 fi
   done
   :

Modified: patch/trunk/PKGBUILD
===
--- patch/trunk/PKGBUILD2016-03-13 12:58:09 UTC (rev 261404)
+++ patch/trunk/PKGBUILD2016-03-13 13:04:03 UTC (rev 261405)
@@ -26,7 +26,7 @@
   for filename in "${source[@]}"; do
 if [[ "$filename" =~ \.patch$ ]]; then
   msg2 "Applying patch $filename"
-  patch -p1 -i "$srcdir/$filename"
+  patch -p1 -N -i "$srcdir/$filename"
 fi
   done
   :

Modified: pcre/trunk/PKGBUILD
===
--- pcre/trunk/PKGBUILD 2016-03-13 12:58:09 UTC (rev 261404)
+++ pcre/trunk/PKGBUILD 2016-03-13 13:04:03 UTC (rev 261405)
@@ -26,7 +26,7 @@
   for filename in "${source[@]}"; do
 if [[ "$filename" =~ \.patch$ ]]; then
   msg2 "Applying patch $filename"
-  patch -p1 -i "$srcdir/$filename"
+  patch -p1 -N -i "$srcdir/$filename"
 fi
   done
   :


[arch-commits] Commit in perl-tie-simple/repos/extra-any (PKGBUILD PKGBUILD)

2016-03-13 Thread Jan Steffens
Date: Sunday, March 13, 2016 @ 13:58:09
  Author: heftig
Revision: 261404

archrelease: copy trunk to extra-any

Added:
  perl-tie-simple/repos/extra-any/PKGBUILD
(from rev 261403, perl-tie-simple/trunk/PKGBUILD)
Deleted:
  perl-tie-simple/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-03-13 12:57:46 UTC (rev 261403)
+++ PKGBUILD2016-03-13 12:58:09 UTC (rev 261404)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=perl-tie-simple
-_realname=Tie-Simple
-pkgver=1.03
-pkgrel=3
-pkgdesc="Variable ties made easier: much, much, much easier..."
-arch=(any)
-license=(PerlArtistic GPL)
-depends=(perl)
-url="http://search.cpan.org/dist/Tie-Simple;
-options=('!emptydirs')
-source=("http://search.cpan.org/CPAN/authors/id/H/HA/HANENKAMP/$_realname-$pkgver.tar.gz;)
-md5sums=('198f7ec68c9b954251c4ed163ee112c7')
-
-build() {
-  cd "$srcdir/$_realname-$pkgver"
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-package() {
-  cd "$srcdir/$_realname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}

Copied: perl-tie-simple/repos/extra-any/PKGBUILD (from rev 261403, 
perl-tie-simple/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-03-13 12:58:09 UTC (rev 261404)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=perl-tie-simple
+_realname=Tie-Simple
+pkgver=1.04
+pkgrel=1
+pkgdesc="Variable ties made easier: much, much, much easier..."
+arch=(any)
+license=(PerlArtistic GPL)
+depends=(perl)
+url="http://search.cpan.org/dist/Tie-Simple;
+options=('!emptydirs')
+source=("http://search.cpan.org/CPAN/authors/id/H/HA/HANENKAMP/$_realname-$pkgver.tar.gz;)
+md5sums=('e5b49588609d6212d3b9bc808cab7aa4')
+
+build() {
+  cd "$srcdir/$_realname-$pkgver"
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+package() {
+  cd "$srcdir/$_realname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in perl-file-which/repos/extra-any (PKGBUILD PKGBUILD)

2016-03-13 Thread Jan Steffens
Date: Sunday, March 13, 2016 @ 13:57:46
  Author: heftig
Revision: 261403

archrelease: copy trunk to extra-any

Added:
  perl-file-which/repos/extra-any/PKGBUILD
(from rev 261402, perl-file-which/trunk/PKGBUILD)
Deleted:
  perl-file-which/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-03-13 12:57:18 UTC (rev 261402)
+++ PKGBUILD2016-03-13 12:57:46 UTC (rev 261403)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=perl-file-which
-_realname=File-Which
-pkgver=1.18
-pkgrel=1
-pkgdesc="Portable implementation of which"
-arch=(any)
-url="http://search.cpan.org/dist/File-Which;
-license=(GPL PerlArtistic)
-depends=(perl)
-options=('!emptydirs')
-_author=PLICEASE
-source=("http://www.cpan.org/authors/id/${_author:0:1}/${_author:0:2}/$_author/${_realname}-${pkgver}.tar.gz;)
-md5sums=('554bfb36568d828fbeee64f4b9a9faa8')
-
-build() {
-  cd "$srcdir/${_realname}-${pkgver}"
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-package() {
-  cd "$srcdir/${_realname}-${pkgver}"
-  make install DESTDIR="$pkgdir"
-}

Copied: perl-file-which/repos/extra-any/PKGBUILD (from rev 261402, 
perl-file-which/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-03-13 12:57:46 UTC (rev 261403)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=perl-file-which
+_realname=File-Which
+pkgver=1.21
+pkgrel=1
+pkgdesc="Portable implementation of which"
+arch=(any)
+url="http://search.cpan.org/dist/File-Which;
+license=(GPL PerlArtistic)
+depends=(perl)
+options=('!emptydirs')
+_author=PLICEASE
+source=("http://www.cpan.org/authors/id/${_author:0:1}/${_author:0:2}/$_author/${_realname}-${pkgver}.tar.gz;)
+md5sums=('115a6efe5d7e9621237fcb655c7a0980')
+
+build() {
+  cd "$srcdir/${_realname}-${pkgver}"
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+package() {
+  cd "$srcdir/${_realname}-${pkgver}"
+  make install DESTDIR="$pkgdir"
+}


[arch-commits] Commit in perl-compress-bzip2/repos (4 files)

2016-03-13 Thread Jan Steffens
Date: Sunday, March 13, 2016 @ 13:57:18
  Author: heftig
Revision: 261402

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

Added:
  perl-compress-bzip2/repos/extra-i686/PKGBUILD
(from rev 261401, perl-compress-bzip2/trunk/PKGBUILD)
  perl-compress-bzip2/repos/extra-x86_64/PKGBUILD
(from rev 261401, perl-compress-bzip2/trunk/PKGBUILD)
Deleted:
  perl-compress-bzip2/repos/extra-i686/PKGBUILD
  perl-compress-bzip2/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-03-13 12:56:38 UTC (rev 261401)
+++ extra-i686/PKGBUILD 2016-03-13 12:57:18 UTC (rev 261402)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=perl-compress-bzip2
-_realname=Compress-Bzip2
-pkgver=2.22
-pkgrel=1
-pkgdesc="Interface to Bzip2 compression library"
-arch=(i686 x86_64)
-license=(GPL2)
-depends=(perl bzip2)
-url="http://search.cpan.org/dist/Compress-Bzip2;
-options=('!emptydirs')
-source=("http://search.cpan.org/CPAN/authors/id/R/RU/RURBAN/$_realname-$pkgver.tar.gz;)
-md5sums=('0d01b86c3efa74e29bb975aea46b666f')
-
-build() {
-  cd "$srcdir/$_realname-$pkgver"
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-package() {
-  cd "$srcdir/$_realname-$pkgver"
-  make DESTDIR="$pkgdir" install
-
-# template start; name=perl-binary-module-dependency; version=1;
-if [[ $(find "$pkgdir/usr/lib/perl5/" -name "*.so") ]]; then
-   _perlver_min=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]);')
-   _perlver_max=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]+1);')
-   depends+=("perl>=$_perlver_min" "perl<$_perlver_max")
-fi
-# template end;
-}

Copied: perl-compress-bzip2/repos/extra-i686/PKGBUILD (from rev 261401, 
perl-compress-bzip2/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-03-13 12:57:18 UTC (rev 261402)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=perl-compress-bzip2
+_realname=Compress-Bzip2
+pkgver=2.24
+pkgrel=1
+pkgdesc="Interface to Bzip2 compression library"
+arch=(i686 x86_64)
+license=(GPL2)
+depends=(perl bzip2)
+url="http://search.cpan.org/dist/Compress-Bzip2;
+options=('!emptydirs')
+source=("http://search.cpan.org/CPAN/authors/id/R/RU/RURBAN/$_realname-$pkgver.tar.gz;)
+md5sums=('d5ef04d1e51fe45743b3044abad967d2')
+
+build() {
+  cd "$srcdir/$_realname-$pkgver"
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+package() {
+  cd "$srcdir/$_realname-$pkgver"
+  make DESTDIR="$pkgdir" install
+
+# template start; name=perl-binary-module-dependency; version=1;
+if [[ $(find "$pkgdir/usr/lib/perl5/" -name "*.so") ]]; then
+   _perlver_min=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]);')
+   _perlver_max=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]+1);')
+   depends+=("perl>=$_perlver_min" "perl<$_perlver_max")
+fi
+# template end;
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-03-13 12:56:38 UTC (rev 261401)
+++ extra-x86_64/PKGBUILD   2016-03-13 12:57:18 UTC (rev 261402)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=perl-compress-bzip2
-_realname=Compress-Bzip2
-pkgver=2.22
-pkgrel=1
-pkgdesc="Interface to Bzip2 compression library"
-arch=(i686 x86_64)
-license=(GPL2)
-depends=(perl bzip2)
-url="http://search.cpan.org/dist/Compress-Bzip2;
-options=('!emptydirs')
-source=("http://search.cpan.org/CPAN/authors/id/R/RU/RURBAN/$_realname-$pkgver.tar.gz;)
-md5sums=('0d01b86c3efa74e29bb975aea46b666f')
-
-build() {
-  cd "$srcdir/$_realname-$pkgver"
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-package() {
-  cd "$srcdir/$_realname-$pkgver"
-  make DESTDIR="$pkgdir" install
-
-# template start; name=perl-binary-module-dependency; version=1;
-if [[ $(find "$pkgdir/usr/lib/perl5/" -name "*.so") ]]; then
-   _perlver_min=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]);')
-   _perlver_max=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]+1);')
-   depends+=("perl>=$_perlver_min" "perl<$_perlver_max")
-fi
-# template end;
-}

Copied: perl-compress-bzip2/repos/extra-x86_64/PKGBUILD (from rev 261401, 
perl-compress-bzip2/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ 

[arch-commits] Commit in perl-capture-tiny/repos/extra-any (PKGBUILD PKGBUILD)

2016-03-13 Thread Jan Steffens
Date: Sunday, March 13, 2016 @ 13:56:38
  Author: heftig
Revision: 261401

archrelease: copy trunk to extra-any

Added:
  perl-capture-tiny/repos/extra-any/PKGBUILD
(from rev 261400, perl-capture-tiny/trunk/PKGBUILD)
Deleted:
  perl-capture-tiny/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-03-13 12:56:06 UTC (rev 261400)
+++ PKGBUILD2016-03-13 12:56:38 UTC (rev 261401)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Caleb Cushing 
-
-pkgname=perl-capture-tiny
-_realname=Capture-Tiny
-pkgver=0.30
-pkgrel=1
-pkgdesc="Capture STDOUT and STDERR from Perl, XS or external programs"
-arch=(any)
-license=(PerlArtistic GPL)
-depends=(perl)
-url="http://search.cpan.org/dist/Capture-Tiny;
-options=('!emptydirs')
-source=("http://search.cpan.org/CPAN/authors/id/D/DA/DAGOLDEN/$_realname-$pkgver.tar.gz;)
-md5sums=('7b0fbdbf4199724df1e53fe0b3e2ef4c')
-
-build() {
-  cd "$srcdir/$_realname-$pkgver"
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-package() {
-  cd "$srcdir/$_realname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}

Copied: perl-capture-tiny/repos/extra-any/PKGBUILD (from rev 261400, 
perl-capture-tiny/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-03-13 12:56:38 UTC (rev 261401)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Caleb Cushing 
+
+pkgname=perl-capture-tiny
+_realname=Capture-Tiny
+pkgver=0.36
+pkgrel=1
+pkgdesc="Capture STDOUT and STDERR from Perl, XS or external programs"
+arch=(any)
+license=(PerlArtistic GPL)
+depends=(perl)
+url="http://search.cpan.org/dist/Capture-Tiny;
+options=('!emptydirs')
+source=("http://search.cpan.org/CPAN/authors/id/D/DA/DAGOLDEN/$_realname-$pkgver.tar.gz;)
+md5sums=('db6444111c30ac01a76a4c118241c7b6')
+
+build() {
+  cd "$srcdir/$_realname-$pkgver"
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+package() {
+  cd "$srcdir/$_realname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in perl-tie-simple/trunk (PKGBUILD)

2016-03-13 Thread Jan Steffens
Date: Sunday, March 13, 2016 @ 13:56:06
  Author: heftig
Revision: 261400

1.04

Modified:
  perl-tie-simple/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-13 12:55:24 UTC (rev 261399)
+++ PKGBUILD2016-03-13 12:56:06 UTC (rev 261400)
@@ -3,8 +3,8 @@
 
 pkgname=perl-tie-simple
 _realname=Tie-Simple
-pkgver=1.03
-pkgrel=3
+pkgver=1.04
+pkgrel=1
 pkgdesc="Variable ties made easier: much, much, much easier..."
 arch=(any)
 license=(PerlArtistic GPL)
@@ -12,7 +12,7 @@
 url="http://search.cpan.org/dist/Tie-Simple;
 options=('!emptydirs')
 
source=("http://search.cpan.org/CPAN/authors/id/H/HA/HANENKAMP/$_realname-$pkgver.tar.gz;)
-md5sums=('198f7ec68c9b954251c4ed163ee112c7')
+md5sums=('e5b49588609d6212d3b9bc808cab7aa4')
 
 build() {
   cd "$srcdir/$_realname-$pkgver"


[arch-commits] Commit in perl-compress-bzip2/trunk (PKGBUILD)

2016-03-13 Thread Jan Steffens
Date: Sunday, March 13, 2016 @ 13:55:20
  Author: heftig
Revision: 261398

2.24

Modified:
  perl-compress-bzip2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-13 12:55:10 UTC (rev 261397)
+++ PKGBUILD2016-03-13 12:55:20 UTC (rev 261398)
@@ -3,7 +3,7 @@
 
 pkgname=perl-compress-bzip2
 _realname=Compress-Bzip2
-pkgver=2.22
+pkgver=2.24
 pkgrel=1
 pkgdesc="Interface to Bzip2 compression library"
 arch=(i686 x86_64)
@@ -12,7 +12,7 @@
 url="http://search.cpan.org/dist/Compress-Bzip2;
 options=('!emptydirs')
 
source=("http://search.cpan.org/CPAN/authors/id/R/RU/RURBAN/$_realname-$pkgver.tar.gz;)
-md5sums=('0d01b86c3efa74e29bb975aea46b666f')
+md5sums=('d5ef04d1e51fe45743b3044abad967d2')
 
 build() {
   cd "$srcdir/$_realname-$pkgver"


[arch-commits] Commit in (6 files)

2016-03-13 Thread Sébastien Luttringer
Date: Sunday, March 13, 2016 @ 13:55:10
  Author: seblu
Revision: 261397

Update patching snippet. Add -N

Modified:
  dkms/trunk/PKGBUILD
  ipset/trunk/PKGBUILD
  nftables/trunk/PKGBUILD
  quagga/trunk/PKGBUILD
  radvd/trunk/PKGBUILD
  ulogd/trunk/PKGBUILD

-+
 dkms/trunk/PKGBUILD |2 +-
 ipset/trunk/PKGBUILD|2 +-
 nftables/trunk/PKGBUILD |2 +-
 quagga/trunk/PKGBUILD   |2 +-
 radvd/trunk/PKGBUILD|2 +-
 ulogd/trunk/PKGBUILD|2 +-
 6 files changed, 6 insertions(+), 6 deletions(-)

Modified: dkms/trunk/PKGBUILD
===
--- dkms/trunk/PKGBUILD 2016-03-13 12:54:04 UTC (rev 261396)
+++ dkms/trunk/PKGBUILD 2016-03-13 12:55:10 UTC (rev 261397)
@@ -36,7 +36,7 @@
   for filename in "${source[@]}"; do
 if [[ "$filename" =~ \.patch$ ]]; then
   msg2 "Applying patch $filename"
-  patch -p1 -i "$srcdir/$filename"
+  patch -p1 -N -i "$srcdir/$filename"
 fi
   done
 

Modified: ipset/trunk/PKGBUILD
===
--- ipset/trunk/PKGBUILD2016-03-13 12:54:04 UTC (rev 261396)
+++ ipset/trunk/PKGBUILD2016-03-13 12:55:10 UTC (rev 261397)
@@ -24,7 +24,7 @@
   for filename in "${source[@]}"; do
 if [[ "$filename" =~ \.patch$ ]]; then
   msg2 "Applying patch $filename"
-  patch -p1 -i "$srcdir/$filename"
+  patch -p1 -N -i "$srcdir/$filename"
 fi
   done
   :

Modified: nftables/trunk/PKGBUILD
===
--- nftables/trunk/PKGBUILD 2016-03-13 12:54:04 UTC (rev 261396)
+++ nftables/trunk/PKGBUILD 2016-03-13 12:55:10 UTC (rev 261397)
@@ -32,7 +32,7 @@
   for filename in "${source[@]}"; do
 if [[ "$filename" =~ \.patch$ ]]; then
   msg2 "Applying patch $filename"
-  patch -p1 -i "$srcdir/$filename"
+  patch -p1 -N -i "$srcdir/$filename"
 fi
   done
   :

Modified: quagga/trunk/PKGBUILD
===
--- quagga/trunk/PKGBUILD   2016-03-13 12:54:04 UTC (rev 261396)
+++ quagga/trunk/PKGBUILD   2016-03-13 12:55:10 UTC (rev 261397)
@@ -41,7 +41,7 @@
   for filename in "${source[@]}"; do
 if [[ "$filename" =~ \.patch$ ]]; then
   msg2 "Applying patch $filename"
-  patch -p1 -i "$srcdir/$filename"
+  patch -p1 -N -i "$srcdir/$filename"
 fi
   done
   :

Modified: radvd/trunk/PKGBUILD
===
--- radvd/trunk/PKGBUILD2016-03-13 12:54:04 UTC (rev 261396)
+++ radvd/trunk/PKGBUILD2016-03-13 12:55:10 UTC (rev 261397)
@@ -27,7 +27,7 @@
   for filename in "${source[@]}"; do
 if [[ "$filename" =~ \.patch$ ]]; then
   msg2 "Applying patch $filename"
-  patch -p1 -i "$srcdir/$filename"
+  patch -p1 -N -i "$srcdir/$filename"
 fi
   done
   :

Modified: ulogd/trunk/PKGBUILD
===
--- ulogd/trunk/PKGBUILD2016-03-13 12:54:04 UTC (rev 261396)
+++ ulogd/trunk/PKGBUILD2016-03-13 12:55:10 UTC (rev 261397)
@@ -48,7 +48,7 @@
   for filename in "${source[@]}"; do
 if [[ "$filename" =~ \.patch$ ]]; then
   msg2 "Applying patch $filename"
-  patch -p1 -i "$srcdir/$filename"
+  patch -p1 -N -i "$srcdir/$filename"
 fi
   done
   :


[arch-commits] Commit in perl-file-which/trunk (PKGBUILD)

2016-03-13 Thread Jan Steffens
Date: Sunday, March 13, 2016 @ 13:55:24
  Author: heftig
Revision: 261399

1.21

Modified:
  perl-file-which/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-13 12:55:20 UTC (rev 261398)
+++ PKGBUILD2016-03-13 12:55:24 UTC (rev 261399)
@@ -4,7 +4,7 @@
 
 pkgname=perl-file-which
 _realname=File-Which
-pkgver=1.18
+pkgver=1.21
 pkgrel=1
 pkgdesc="Portable implementation of which"
 arch=(any)
@@ -14,7 +14,7 @@
 options=('!emptydirs')
 _author=PLICEASE
 
source=("http://www.cpan.org/authors/id/${_author:0:1}/${_author:0:2}/$_author/${_realname}-${pkgver}.tar.gz;)
-md5sums=('554bfb36568d828fbeee64f4b9a9faa8')
+md5sums=('115a6efe5d7e9621237fcb655c7a0980')
 
 build() {
   cd "$srcdir/${_realname}-${pkgver}"


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

2016-03-13 Thread Felix Yan
Date: Sunday, March 13, 2016 @ 09:20:05
  Author: fyan
Revision: 166469

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

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

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

Copied: idris/repos/community-staging-i686/PKGBUILD (from rev 166468, 
idris/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-13 08:20:05 UTC (rev 166469)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=idris
+pkgver=0.10.2
+pkgrel=5
+pkgdesc="Functional Programming Language with Dependent Types"
+url="http://www.idris-lang.org/;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('gmp' 'libffi' 'zlib' 'gcc')
+makedepends=("ghc=7.10.3" "haskell-annotated-wl-pprint" 
"haskell-ansi-terminal" "haskell-ansi-wl-pprint"
+ "haskell-async" "haskell-base64-bytestring" "haskell-blaze-html" 
"haskell-blaze-markup"
+ "haskell-cheapskate" "haskell-fingertree" "haskell-fsnotify" 
"haskell-mtl" "haskell-libffi"
+ "haskell-network" "haskell-optparse-applicative" 
"haskell-parsers" "haskell-safe"
+ "haskell-split" "haskell-text" "haskell-transformers-compat" 
"haskell-trifecta"
+ "haskell-uniplate" "haskell-unordered-containers" 
"haskell-utf8-string" "haskell-vector"
+ "haskell-vector-binary-instances" "haskell-zip-archive")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('797f848d073b14772e20b13507272a2bf490644e005a978423c4bf057d021d19')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgbase}" 
--datasubdir="$pkgbase" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-fFFI -fGMP # -fcurses
+LC_CTYPE=en_US.UTF-8 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.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -r "$pkgdir"/usr/{lib,share/doc}
+}

Copied: idris/repos/community-staging-x86_64/PKGBUILD (from rev 166468, 
idris/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-13 08:20:05 UTC (rev 166469)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=idris
+pkgver=0.10.2
+pkgrel=5
+pkgdesc="Functional Programming Language with Dependent Types"
+url="http://www.idris-lang.org/;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('gmp' 'libffi' 'zlib' 'gcc')
+makedepends=("ghc=7.10.3" "haskell-annotated-wl-pprint" 
"haskell-ansi-terminal" "haskell-ansi-wl-pprint"
+ "haskell-async" "haskell-base64-bytestring" "haskell-blaze-html" 
"haskell-blaze-markup"
+ "haskell-cheapskate" "haskell-fingertree" "haskell-fsnotify" 
"haskell-mtl" "haskell-libffi"
+ "haskell-network" "haskell-optparse-applicative" 
"haskell-parsers" "haskell-safe"
+ "haskell-split" "haskell-text" "haskell-transformers-compat" 
"haskell-trifecta"
+ "haskell-uniplate" "haskell-unordered-containers" 
"haskell-utf8-string" "haskell-vector"
+ "haskell-vector-binary-instances" "haskell-zip-archive")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('797f848d073b14772e20b13507272a2bf490644e005a978423c4bf057d021d19')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgbase}" 
--datasubdir="$pkgbase" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-fFFI -fGMP # -fcurses
+LC_CTYPE=en_US.UTF-8 runhaskell Setup build
+LC_CTYPE=en_US.UTF-8 runhaskell Setup haddock --hoogle --html
+runhaskell