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

2016-03-22 Thread Felix Yan
Date: Wednesday, March 23, 2016 @ 06:56:17
  Author: fyan
Revision: 167991

upgpkg: haskell-authenticate 1.3.3-22

rebuild with aeson-0.11.1.3, hakyll-4.7.5.2, wai-extra-3.0.15

Modified:
  haskell-authenticate/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-23 05:54:14 UTC (rev 167990)
+++ PKGBUILD2016-03-23 05:56:17 UTC (rev 167991)
@@ -5,7 +5,7 @@
 _hkgname=authenticate
 pkgname=haskell-authenticate
 pkgver=1.3.3
-pkgrel=21
+pkgrel=22
 pkgdesc="Authentication methods for Haskell web applications."
 url="http://github.com/yesodweb/authenticate;
 license=("custom:BSD3")


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

2016-03-22 Thread Felix Yan
Date: Wednesday, March 23, 2016 @ 06:56:42
  Author: fyan
Revision: 167992

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 167991, haskell-authenticate/trunk/PKGBUILD)
  haskell-authenticate/repos/community-staging-i686/haskell-authenticate.install
(from rev 167991, haskell-authenticate/trunk/haskell-authenticate.install)
  haskell-authenticate/repos/community-staging-x86_64/
  haskell-authenticate/repos/community-staging-x86_64/PKGBUILD
(from rev 167991, haskell-authenticate/trunk/PKGBUILD)
  
haskell-authenticate/repos/community-staging-x86_64/haskell-authenticate.install
(from rev 167991, 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 
167991, haskell-authenticate/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-23 05:56:42 UTC (rev 167992)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=authenticate
+pkgname=haskell-authenticate
+pkgver=1.3.3
+pkgrel=22
+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 167991, haskell-authenticate/trunk/haskell-authenticate.install)
===
--- community-staging-i686/haskell-authenticate.install 
(rev 0)
+++ community-staging-i686/haskell-authenticate.install 2016-03-23 05:56:42 UTC 
(rev 167992)
@@ -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 
167991, haskell-authenticate/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-23 05:56:42 UTC (rev 167992)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# 

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

2016-03-22 Thread Felix Yan
Date: Wednesday, March 23, 2016 @ 06:54:14
  Author: fyan
Revision: 167990

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 167989, haskell-yesod-form/trunk/PKGBUILD)
  haskell-yesod-form/repos/community-staging-i686/haskell-yesod-form.install
(from rev 167989, 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 167989, haskell-yesod-form/trunk/PKGBUILD)
  haskell-yesod-form/repos/community-staging-x86_64/haskell-yesod-form.install
(from rev 167989, 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 
167989, haskell-yesod-form/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-23 05:54:14 UTC (rev 167990)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-form
+pkgname=haskell-yesod-form
+pkgver=1.4.6
+pkgrel=29
+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 167989, 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-23 05:54:14 UTC 
(rev 167990)
@@ -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 
167989, haskell-yesod-form/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-23 05:54:14 UTC (rev 167990)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Felix Yan 

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

2016-03-22 Thread Felix Yan
Date: Wednesday, March 23, 2016 @ 06:53:48
  Author: fyan
Revision: 167989

upgpkg: haskell-yesod-form 1.4.6-29

rebuild with aeson-0.11.1.3, hakyll-4.7.5.2, wai-extra-3.0.15

Modified:
  haskell-yesod-form/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-23 05:35:02 UTC (rev 167988)
+++ PKGBUILD2016-03-23 05:53:48 UTC (rev 167989)
@@ -5,7 +5,7 @@
 _hkgname=yesod-form
 pkgname=haskell-yesod-form
 pkgver=1.4.6
-pkgrel=28
+pkgrel=29
 pkgdesc="Form handling support for Yesod Web Framework"
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2016-03-22 Thread Felix Yan
Date: Wednesday, March 23, 2016 @ 06:35:02
  Author: fyan
Revision: 167988

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 167987, haskell-pandoc-types/trunk/PKGBUILD)
  haskell-pandoc-types/repos/community-staging-i686/haskell-pandoc-types.install
(from rev 167987, 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 167987, haskell-pandoc-types/trunk/PKGBUILD)
  
haskell-pandoc-types/repos/community-staging-x86_64/haskell-pandoc-types.install
(from rev 167987, 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 
167987, haskell-pandoc-types/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-23 05:35:02 UTC (rev 167988)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=pandoc-types
+pkgname=haskell-pandoc-types
+pkgver=1.16.1
+pkgrel=9
+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 167987, 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-23 05:35:02 UTC 
(rev 167988)
@@ -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 
167987, haskell-pandoc-types/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-23 05:35:02 UTC (rev 167988)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=pandoc-types
+pkgname=haskell-pandoc-types
+pkgver=1.16.1
+pkgrel=9
+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-22 Thread Felix Yan
Date: Wednesday, March 23, 2016 @ 06:34:40
  Author: fyan
Revision: 167987

upgpkg: haskell-pandoc-types 1.16.1-9

rebuild with aeson-0.11.1.3, hakyll-4.7.5.2, wai-extra-3.0.15

Modified:
  haskell-pandoc-types/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-23 05:33:22 UTC (rev 167986)
+++ PKGBUILD2016-03-23 05:34:40 UTC (rev 167987)
@@ -5,7 +5,7 @@
 _hkgname=pandoc-types
 pkgname=haskell-pandoc-types
 pkgver=1.16.1
-pkgrel=8
+pkgrel=9
 pkgdesc="Types for representing a structured document"
 url="http://johnmacfarlane.net/pandoc;
 license=("custom:BSD3")


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

2016-03-22 Thread Felix Yan
Date: Wednesday, March 23, 2016 @ 06:33:22
  Author: fyan
Revision: 167986

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

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

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

Copied: haskell-yesod-persistent/repos/community-staging-i686/PKGBUILD (from 
rev 167985, haskell-yesod-persistent/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-23 05:33:22 UTC (rev 167986)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-persistent
+pkgname=haskell-yesod-persistent
+pkgver=1.4.0.3
+pkgrel=28
+pkgdesc="Some helpers for using Persistent from Yesod."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-blaze-builder" "haskell-conduit" 
"haskell-persistent"
+ "haskell-persistent-template" "haskell-resource-pool" 
"haskell-resourcet"
+ "haskell-yesod-core")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('6455b79eda028e12caefc9d89808fbc611ece36ef64bab3426f90a26cacf3b5f')
+
+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-persistent/repos/community-staging-i686/haskell-yesod-persistent.install
 (from rev 167985, 
haskell-yesod-persistent/trunk/haskell-yesod-persistent.install)
===
--- community-staging-i686/haskell-yesod-persistent.install 
(rev 0)
+++ community-staging-i686/haskell-yesod-persistent.install 2016-03-23 
05:33:22 UTC (rev 167986)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-yesod-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-yesod-persistent/repos/community-staging-x86_64/PKGBUILD (from 
rev 167985, haskell-yesod-persistent/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-23 05:33:22 UTC (rev 167986)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-persistent

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

2016-03-22 Thread Felix Yan
Date: Wednesday, March 23, 2016 @ 06:32:58
  Author: fyan
Revision: 167985

upgpkg: haskell-yesod-persistent 1.4.0.3-28

rebuild with aeson-0.11.1.3, hakyll-4.7.5.2, wai-extra-3.0.15

Modified:
  haskell-yesod-persistent/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-23 04:37:17 UTC (rev 167984)
+++ PKGBUILD2016-03-23 05:32:58 UTC (rev 167985)
@@ -5,7 +5,7 @@
 _hkgname=yesod-persistent
 pkgname=haskell-yesod-persistent
 pkgver=1.4.0.3
-pkgrel=27
+pkgrel=28
 pkgdesc="Some helpers for using Persistent from Yesod."
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2016-03-22 Thread Felix Yan
Date: Wednesday, March 23, 2016 @ 05:37:17
  Author: fyan
Revision: 167984

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 167983, haskell-persistent-template/trunk/PKGBUILD)
  
haskell-persistent-template/repos/community-staging-i686/haskell-persistent-template.install
(from rev 167983, 
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 167983, haskell-persistent-template/trunk/PKGBUILD)
  
haskell-persistent-template/repos/community-staging-x86_64/haskell-persistent-template.install
(from rev 167983, 
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 167983, haskell-persistent-template/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-23 04:37:17 UTC (rev 167984)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=persistent-template
+pkgname=haskell-persistent-template
+pkgver=2.1.6
+pkgrel=5
+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 167983, 
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-23 
04:37:17 UTC (rev 167984)
@@ -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 167983, haskell-persistent-template/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-23 04:37:17 UTC (rev 167984)
@@ -0,0 +1,45 

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

2016-03-22 Thread Felix Yan
Date: Wednesday, March 23, 2016 @ 05:36:53
  Author: fyan
Revision: 167983

upgpkg: haskell-persistent-template 2.1.6-5

rebuild with aeson-0.11.1.3, hakyll-4.7.5.2, wai-extra-3.0.15

Modified:
  haskell-persistent-template/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-23 04:35:27 UTC (rev 167982)
+++ PKGBUILD2016-03-23 04:36:53 UTC (rev 167983)
@@ -5,7 +5,7 @@
 _hkgname=persistent-template
 pkgname=haskell-persistent-template
 pkgver=2.1.6
-pkgrel=4
+pkgrel=5
 pkgdesc="Type-safe, non-relational, multi-backend persistence"
 url="http://www.yesodweb.com/book/persistent;
 license=("MIT")


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

2016-03-22 Thread Felix Yan
Date: Wednesday, March 23, 2016 @ 05:35:27
  Author: fyan
Revision: 167982

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 167981, haskell-yesod-core/trunk/PKGBUILD)
  haskell-yesod-core/repos/community-staging-i686/haskell-yesod-core.install
(from rev 167981, 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 167981, haskell-yesod-core/trunk/PKGBUILD)
  haskell-yesod-core/repos/community-staging-x86_64/haskell-yesod-core.install
(from rev 167981, 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 
167981, haskell-yesod-core/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-23 04:35:27 UTC (rev 167982)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-core
+pkgname=haskell-yesod-core
+pkgver=1.4.19
+pkgrel=21
+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 167981, 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-23 04:35:27 UTC 
(rev 167982)
@@ -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-22 Thread Felix Yan
Date: Wednesday, March 23, 2016 @ 05:34:53
  Author: fyan
Revision: 167981

upgpkg: haskell-yesod-core 1.4.19-21

rebuild with aeson-0.11.1.3, hakyll-4.7.5.2, wai-extra-3.0.15

Modified:
  haskell-yesod-core/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-23 04:28:58 UTC (rev 167980)
+++ PKGBUILD2016-03-23 04:34:53 UTC (rev 167981)
@@ -5,7 +5,7 @@
 _hkgname=yesod-core
 pkgname=haskell-yesod-core
 pkgver=1.4.19
-pkgrel=20
+pkgrel=21
 pkgdesc="Creation of type-safe, RESTful web applications."
 url="http://www.yesodweb.com/;
 license=("MIT")


[arch-commits] Commit in perl-package-deprecationmanager/repos/community-any (2 files)

2016-03-22 Thread Felix Yan
Date: Wednesday, March 23, 2016 @ 05:28:58
  Author: fyan
Revision: 167980

archrelease: copy trunk to community-any

Added:
  perl-package-deprecationmanager/repos/community-any/PKGBUILD
(from rev 167979, perl-package-deprecationmanager/trunk/PKGBUILD)
Deleted:
  perl-package-deprecationmanager/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-03-23 04:28:41 UTC (rev 167979)
+++ PKGBUILD2016-03-23 04:28:58 UTC (rev 167980)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Jonathan Steel 
-# Contributor: Justin Davis (juster) 
-
-pkgname=perl-package-deprecationmanager
-pkgver=0.15
-pkgrel=1
-pkgdesc="Manage deprecation warnings for your distribution"
-arch=('any')
-license=('Artistic2.0')
-options=('!emptydirs')
-depends=('perl-params-util' 'perl-sub-install' 'perl-package-stash' 
'perl-module-implementation')
-checkdepends=('perl-test-fatal' 'perl-test-warnings')
-url="https://metacpan.org/release/Package-DeprecationManager;
-source=(http://search.cpan.org/CPAN/authors/id/D/DR/DROLSKY/Package-DeprecationManager-$pkgver.tar.gz)
-md5sums=('121b7ab5aa5fe06f79670f4bb78c808e')
-
-build() {
-  cd "$srcdir/Package-DeprecationManager-$pkgver"
-  perl Makefile.PL
-  make
-}
-
-check() {
-  cd "$srcdir/Package-DeprecationManager-$pkgver"
-  make test
-}
-
-package() {
-  cd "$srcdir/Package-DeprecationManager-$pkgver"
-  make install INSTALLDIRS=vendor DESTDIR="$pkgdir"
-  find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
-}

Copied: perl-package-deprecationmanager/repos/community-any/PKGBUILD (from rev 
167979, perl-package-deprecationmanager/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-03-23 04:28:58 UTC (rev 167980)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Jonathan Steel 
+# Contributor: Justin Davis (juster) 
+
+pkgname=perl-package-deprecationmanager
+pkgver=0.16
+pkgrel=1
+pkgdesc="Manage deprecation warnings for your distribution"
+arch=('any')
+license=('Artistic2.0')
+depends=('perl-params-util' 'perl-sub-install' 'perl-sub-name' 
'perl-package-stash'
+ 'perl-module-implementation' 'perl-namespace-autoclean')
+checkdepends=('perl-test-fatal' 'perl-test-warnings')
+options=('!emptydirs')
+url="https://metacpan.org/release/Package-DeprecationManager;
+source=(http://search.cpan.org/CPAN/authors/id/D/DR/DROLSKY/Package-DeprecationManager-$pkgver.tar.gz)
+md5sums=('6d457e26f23daeff18ae74b57ab57274')
+
+build() {
+  cd "$srcdir"/Package-DeprecationManager-$pkgver
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd "$srcdir"/Package-DeprecationManager-$pkgver
+  make test
+}
+
+package() {
+  cd "$srcdir"/Package-DeprecationManager-$pkgver
+  make install DESTDIR="$pkgdir"
+}


[arch-commits] Commit in perl-package-deprecationmanager/trunk (PKGBUILD)

2016-03-22 Thread Felix Yan
Date: Wednesday, March 23, 2016 @ 05:28:41
  Author: fyan
Revision: 167979

upgpkg: perl-package-deprecationmanager 0.16-1

Modified:
  perl-package-deprecationmanager/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-23 04:25:55 UTC (rev 167978)
+++ PKGBUILD2016-03-23 04:28:41 UTC (rev 167979)
@@ -4,31 +4,31 @@
 # Contributor: Justin Davis (juster) 
 
 pkgname=perl-package-deprecationmanager
-pkgver=0.15
+pkgver=0.16
 pkgrel=1
 pkgdesc="Manage deprecation warnings for your distribution"
 arch=('any')
 license=('Artistic2.0')
+depends=('perl-params-util' 'perl-sub-install' 'perl-sub-name' 
'perl-package-stash'
+ 'perl-module-implementation' 'perl-namespace-autoclean')
+checkdepends=('perl-test-fatal' 'perl-test-warnings')
 options=('!emptydirs')
-depends=('perl-params-util' 'perl-sub-install' 'perl-package-stash' 
'perl-module-implementation')
-checkdepends=('perl-test-fatal' 'perl-test-warnings')
 url="https://metacpan.org/release/Package-DeprecationManager;
 
source=(http://search.cpan.org/CPAN/authors/id/D/DR/DROLSKY/Package-DeprecationManager-$pkgver.tar.gz)
-md5sums=('121b7ab5aa5fe06f79670f4bb78c808e')
+md5sums=('6d457e26f23daeff18ae74b57ab57274')
 
 build() {
-  cd "$srcdir/Package-DeprecationManager-$pkgver"
-  perl Makefile.PL
+  cd "$srcdir"/Package-DeprecationManager-$pkgver
+  perl Makefile.PL INSTALLDIRS=vendor
   make
 }
 
 check() {
-  cd "$srcdir/Package-DeprecationManager-$pkgver"
+  cd "$srcdir"/Package-DeprecationManager-$pkgver
   make test
 }
 
 package() {
-  cd "$srcdir/Package-DeprecationManager-$pkgver"
-  make install INSTALLDIRS=vendor DESTDIR="$pkgdir"
-  find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
+  cd "$srcdir"/Package-DeprecationManager-$pkgver
+  make install DESTDIR="$pkgdir"
 }


[arch-commits] Commit in perl-namespace-autoclean/repos (2 files)

2016-03-22 Thread Felix Yan
Date: Wednesday, March 23, 2016 @ 05:25:55
  Author: fyan
Revision: 167978

archrelease: copy trunk to community-any

Added:
  perl-namespace-autoclean/repos/community-any/
  perl-namespace-autoclean/repos/community-any/PKGBUILD
(from rev 167977, perl-namespace-autoclean/trunk/PKGBUILD)

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

Copied: perl-namespace-autoclean/repos/community-any/PKGBUILD (from rev 167977, 
perl-namespace-autoclean/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2016-03-23 04:25:55 UTC (rev 167978)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: John D Jones III AKA jnbek 
+# Generator  : CPANPLUS::Dist::Arch 1.32
+
+pkgname=perl-namespace-autoclean
+pkgver=0.28
+pkgrel=1
+pkgdesc="Keep imports out of your namespace"
+arch=('any')
+license=('PerlArtistic' 'GPL')
+url='https://metacpan.org/release/namespace-autoclean'
+depends=('perl-b-hooks-endofscope' 'perl-sub-identify' 'perl-namespace-clean')
+checkdepends=('perl-test-requires' 'perl-moo' 'perl-sub-name' 'perl-mouse')
+options=('!emptydirs')
+source=("http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/namespace-autoclean-$pkgver.tar.gz;)
+sha512sums=('2541f69862b334fcfe30059d025668175de1b182a5c8ee8f2619bf1d661c316a38fe2014f274bb23e887cd36959f98abb297154ac8ceb600e2e93cbd4a75e28d')
+
+build() {
+  cd "$srcdir"/namespace-autoclean-$pkgver
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd "$srcdir"/namespace-autoclean-$pkgver
+  make test
+}
+
+package() {
+  cd "$srcdir"/namespace-autoclean-$pkgver
+  make DESTDIR="$pkgdir"/ install
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in (4 files)

2016-03-22 Thread Felix Yan
Date: Wednesday, March 23, 2016 @ 05:25:27
  Author: fyan
Revision: 167977

addpkg: perl-namespace-autoclean 0.28-1

Added:
  perl-namespace-autoclean/
  perl-namespace-autoclean/repos/
  perl-namespace-autoclean/trunk/
  perl-namespace-autoclean/trunk/PKGBUILD

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

Added: perl-namespace-autoclean/trunk/PKGBUILD
===
--- perl-namespace-autoclean/trunk/PKGBUILD (rev 0)
+++ perl-namespace-autoclean/trunk/PKGBUILD 2016-03-23 04:25:27 UTC (rev 
167977)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: John D Jones III AKA jnbek 
+# Generator  : CPANPLUS::Dist::Arch 1.32
+
+pkgname=perl-namespace-autoclean
+pkgver=0.28
+pkgrel=1
+pkgdesc="Keep imports out of your namespace"
+arch=('any')
+license=('PerlArtistic' 'GPL')
+url='https://metacpan.org/release/namespace-autoclean'
+depends=('perl-b-hooks-endofscope' 'perl-sub-identify' 'perl-namespace-clean')
+checkdepends=('perl-test-requires' 'perl-moo' 'perl-sub-name' 'perl-mouse')
+options=('!emptydirs')
+source=("http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/namespace-autoclean-$pkgver.tar.gz;)
+sha512sums=('2541f69862b334fcfe30059d025668175de1b182a5c8ee8f2619bf1d661c316a38fe2014f274bb23e887cd36959f98abb297154ac8ceb600e2e93cbd4a75e28d')
+
+build() {
+  cd "$srcdir"/namespace-autoclean-$pkgver
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd "$srcdir"/namespace-autoclean-$pkgver
+  make test
+}
+
+package() {
+  cd "$srcdir"/namespace-autoclean-$pkgver
+  make DESTDIR="$pkgdir"/ install
+}
+
+# vim:set ts=2 sw=2 et:


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


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

2016-03-22 Thread Felix Yan
Date: Wednesday, March 23, 2016 @ 05:21:27
  Author: fyan
Revision: 167976

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

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

+
 /PKGBUILD  |   96 +++
 /haskell-wai-extra.install |   36 +++
 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 ---
 6 files changed, 132 insertions(+), 132 deletions(-)

Deleted: community-staging-i686/PKGBUILD
===
--- community-staging-i686/PKGBUILD 2016-03-23 04:20:57 UTC (rev 167975)
+++ community-staging-i686/PKGBUILD 2016-03-23 04:21:27 UTC (rev 167976)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Arch Haskell Team 
-
-_hkgname=wai-extra
-pkgname=haskell-wai-extra
-pkgver=3.0.14.3
-pkgrel=2
-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=('563fc88bf2aab69fa11db2074fb36e03a9f39bf7f1676f321673bf2c6d0ce127')
-
-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/PKGBUILD (from rev 
167975, haskell-wai-extra/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-23 04:21:27 UTC (rev 167976)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=wai-extra
+pkgname=haskell-wai-extra
+pkgver=3.0.15
+pkgrel=1
+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" 

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

2016-03-22 Thread Felix Yan
Date: Wednesday, March 23, 2016 @ 05:20:57
  Author: fyan
Revision: 167975

upgpkg: haskell-wai-extra 3.0.15-1

rebuild with aeson-0.11.1.3, hakyll-4.7.5.2, wai-extra-3.0.15

Modified:
  haskell-wai-extra/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-23 04:16:05 UTC (rev 167974)
+++ PKGBUILD2016-03-23 04:20:57 UTC (rev 167975)
@@ -4,8 +4,8 @@
 
 _hkgname=wai-extra
 pkgname=haskell-wai-extra
-pkgver=3.0.14.3
-pkgrel=2
+pkgver=3.0.15
+pkgrel=1
 pkgdesc="Provides some basic WAI handlers and middleware."
 url="http://github.com/yesodweb/wai;
 license=("MIT")
@@ -20,7 +20,7 @@
 options=('staticlibs')
 
source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
 install="${pkgname}.install"
-sha256sums=('563fc88bf2aab69fa11db2074fb36e03a9f39bf7f1676f321673bf2c6d0ce127')
+sha256sums=('6629e2f2db30e3b7f70ef96b06f4a0df32c7b9093eec30d9ad79919826ec4270')
 
 build() {
 cd "${srcdir}/${_hkgname}-${pkgver}"


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

2016-03-22 Thread Felix Yan
Date: Wednesday, March 23, 2016 @ 05:16:05
  Author: fyan
Revision: 167974

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 167973, haskell-aeson-compat/trunk/PKGBUILD)
  haskell-aeson-compat/repos/community-staging-i686/haskell-aeson-compat.install
(from rev 167973, 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 167973, haskell-aeson-compat/trunk/PKGBUILD)
  
haskell-aeson-compat/repos/community-staging-x86_64/haskell-aeson-compat.install
(from rev 167973, 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 
167973, haskell-aeson-compat/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-23 04:16:05 UTC (rev 167974)
@@ -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=9
+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 167973, 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-23 04:16:05 UTC 
(rev 167974)
@@ -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 
167973, haskell-aeson-compat/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-23 04:16:05 UTC (rev 167974)
@@ -0,0 +1,51 @@
+# 

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

2016-03-22 Thread Felix Yan
Date: Wednesday, March 23, 2016 @ 05:15:09
  Author: fyan
Revision: 167973

upgpkg: haskell-aeson-compat 0.3.1.0-9

rebuild with aeson-0.11.1.3, hakyll-4.7.5.2, wai-extra-3.0.15

Modified:
  haskell-aeson-compat/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-23 04:14:00 UTC (rev 167972)
+++ PKGBUILD2016-03-23 04:15:09 UTC (rev 167973)
@@ -5,7 +5,7 @@
 _hkgname=aeson-compat
 pkgname=haskell-aeson-compat
 pkgver=0.3.1.0
-pkgrel=8
+pkgrel=9
 pkgdesc="Compatibility layer for aeson"
 url="http://hackage.haskell.org/package/${_hkgname};
 license=("custom:BSD3")


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

2016-03-22 Thread Felix Yan
Date: Wednesday, March 23, 2016 @ 05:14:00
  Author: fyan
Revision: 167972

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 167971, haskell-shakespeare/trunk/PKGBUILD)
  haskell-shakespeare/repos/community-staging-i686/haskell-shakespeare.install
(from rev 167971, haskell-shakespeare/trunk/haskell-shakespeare.install)
  haskell-shakespeare/repos/community-staging-x86_64/
  haskell-shakespeare/repos/community-staging-x86_64/PKGBUILD
(from rev 167971, haskell-shakespeare/trunk/PKGBUILD)
  haskell-shakespeare/repos/community-staging-x86_64/haskell-shakespeare.install
(from rev 167971, 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 
167971, haskell-shakespeare/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-23 04:14:00 UTC (rev 167972)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=shakespeare
+pkgname=haskell-shakespeare
+pkgver=2.0.7
+pkgrel=13
+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 167971, haskell-shakespeare/trunk/haskell-shakespeare.install)
===
--- community-staging-i686/haskell-shakespeare.install  
(rev 0)
+++ community-staging-i686/haskell-shakespeare.install  2016-03-23 04:14:00 UTC 
(rev 167972)
@@ -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 
167971, haskell-shakespeare/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-23 04:14:00 UTC (rev 167972)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=shakespeare
+pkgname=haskell-shakespeare
+pkgver=2.0.7
+pkgrel=13

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

2016-03-22 Thread Felix Yan
Date: Wednesday, March 23, 2016 @ 05:13:04
  Author: fyan
Revision: 167971

upgpkg: haskell-shakespeare 2.0.7-13

rebuild with aeson-0.11.1.3, hakyll-4.7.5.2, wai-extra-3.0.15

Modified:
  haskell-shakespeare/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-23 04:10:01 UTC (rev 167970)
+++ PKGBUILD2016-03-23 04:13:04 UTC (rev 167971)
@@ -5,7 +5,7 @@
 _hkgname=shakespeare
 pkgname=haskell-shakespeare
 pkgver=2.0.7
-pkgrel=12
+pkgrel=13
 pkgdesc="A toolkit for making compile-time interpolated templates"
 url="http://www.yesodweb.com/book/shakespearean-templates;
 license=("MIT")


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

2016-03-22 Thread Felix Yan
Date: Wednesday, March 23, 2016 @ 05:10:01
  Author: fyan
Revision: 167970

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 167969, haskell-warp/trunk/PKGBUILD)
  haskell-warp/repos/community-staging-i686/haskell-warp.install
(from rev 167969, haskell-warp/trunk/haskell-warp.install)
  haskell-warp/repos/community-staging-x86_64/
  haskell-warp/repos/community-staging-x86_64/PKGBUILD
(from rev 167969, haskell-warp/trunk/PKGBUILD)
  haskell-warp/repos/community-staging-x86_64/haskell-warp.install
(from rev 167969, 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 167969, 
haskell-warp/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-23 04:10:01 UTC (rev 167970)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=warp
+pkgname=haskell-warp
+pkgver=3.2.3
+pkgrel=10
+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 167969, haskell-warp/trunk/haskell-warp.install)
===
--- community-staging-i686/haskell-warp.install (rev 0)
+++ community-staging-i686/haskell-warp.install 2016-03-23 04:10:01 UTC (rev 
167970)
@@ -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 167969, 
haskell-warp/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-23 04:10:01 UTC (rev 167970)
@@ -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-22 Thread Felix Yan
Date: Wednesday, March 23, 2016 @ 05:09:36
  Author: fyan
Revision: 167969

upgpkg: haskell-warp 3.2.3-10

rebuild with aeson-0.11.1.3, hakyll-4.7.5.2, wai-extra-3.0.15

Modified:
  haskell-warp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-23 04:05:27 UTC (rev 167968)
+++ PKGBUILD2016-03-23 04:09:36 UTC (rev 167969)
@@ -5,7 +5,7 @@
 _hkgname=warp
 pkgname=haskell-warp
 pkgver=3.2.3
-pkgrel=9
+pkgrel=10
 pkgdesc="A fast, light-weight web server for WAI applications."
 url="http://github.com/yesodweb/wai;
 license=("MIT")


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

2016-03-22 Thread Felix Yan
Date: Wednesday, March 23, 2016 @ 05:05:27
  Author: fyan
Revision: 167968

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 167967, haskell-wai-extra/trunk/PKGBUILD)
  haskell-wai-extra/repos/community-staging-i686/haskell-wai-extra.install
(from rev 167967, 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 167967, haskell-wai-extra/trunk/PKGBUILD)
  haskell-wai-extra/repos/community-staging-x86_64/haskell-wai-extra.install
(from rev 167967, 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 
167967, haskell-wai-extra/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-23 04:05:27 UTC (rev 167968)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=wai-extra
+pkgname=haskell-wai-extra
+pkgver=3.0.14.3
+pkgrel=2
+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=('563fc88bf2aab69fa11db2074fb36e03a9f39bf7f1676f321673bf2c6d0ce127')
+
+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 167967, 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-23 04:05:27 UTC 
(rev 167968)
@@ -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 
167967, haskell-wai-extra/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-23 04:05:27 UTC (rev 167968)
@@ -0,0 +1,48 

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

2016-03-22 Thread Felix Yan
Date: Wednesday, March 23, 2016 @ 05:05:00
  Author: fyan
Revision: 167967

upgpkg: haskell-wai-extra 3.0.14.3-2

rebuild with aeson-0.11.1.3, hakyll-4.7.5.2, wai-extra-3.0.15

Modified:
  haskell-wai-extra/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-23 04:02:24 UTC (rev 167966)
+++ PKGBUILD2016-03-23 04:05:00 UTC (rev 167967)
@@ -5,7 +5,7 @@
 _hkgname=wai-extra
 pkgname=haskell-wai-extra
 pkgver=3.0.14.3
-pkgrel=1
+pkgrel=2
 pkgdesc="Provides some basic WAI handlers and middleware."
 url="http://github.com/yesodweb/wai;
 license=("MIT")


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

2016-03-22 Thread Felix Yan
Date: Wednesday, March 23, 2016 @ 05:02:24
  Author: fyan
Revision: 167966

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 167965, haskell-persistent/trunk/PKGBUILD)
  haskell-persistent/repos/community-staging-i686/haskell-persistent.install
(from rev 167965, haskell-persistent/trunk/haskell-persistent.install)
  haskell-persistent/repos/community-staging-x86_64/
  haskell-persistent/repos/community-staging-x86_64/PKGBUILD
(from rev 167965, haskell-persistent/trunk/PKGBUILD)
  haskell-persistent/repos/community-staging-x86_64/haskell-persistent.install
(from rev 167965, 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 
167965, haskell-persistent/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-23 04:02:24 UTC (rev 167966)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=persistent
+pkgname=haskell-persistent
+pkgver=2.2.4.1
+pkgrel=5
+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 167965, haskell-persistent/trunk/haskell-persistent.install)
===
--- community-staging-i686/haskell-persistent.install   
(rev 0)
+++ community-staging-i686/haskell-persistent.install   2016-03-23 04:02:24 UTC 
(rev 167966)
@@ -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 
167965, haskell-persistent/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ 

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

2016-03-22 Thread Felix Yan
Date: Wednesday, March 23, 2016 @ 05:01:40
  Author: fyan
Revision: 167965

upgpkg: haskell-persistent 2.2.4.1-5

rebuild with aeson-0.11.1.3, hakyll-4.7.5.2, wai-extra-3.0.15

Modified:
  haskell-persistent/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-23 03:50:39 UTC (rev 167964)
+++ PKGBUILD2016-03-23 04:01:40 UTC (rev 167965)
@@ -5,7 +5,7 @@
 _hkgname=persistent
 pkgname=haskell-persistent
 pkgver=2.2.4.1
-pkgrel=4
+pkgrel=5
 pkgdesc="Type-safe, multi-backend data serialization"
 url="http://www.yesodweb.com/book/persistent;
 license=("MIT")


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

2016-03-22 Thread Felix Yan
Date: Wednesday, March 23, 2016 @ 04:50:39
  Author: fyan
Revision: 167964

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 167963, haskell-http2/trunk/PKGBUILD)
  haskell-http2/repos/community-staging-i686/haskell-http2.install
(from rev 167963, haskell-http2/trunk/haskell-http2.install)
  haskell-http2/repos/community-staging-x86_64/
  haskell-http2/repos/community-staging-x86_64/PKGBUILD
(from rev 167963, haskell-http2/trunk/PKGBUILD)
  haskell-http2/repos/community-staging-x86_64/haskell-http2.install
(from rev 167963, 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 167963, 
haskell-http2/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-23 03:50:39 UTC (rev 167964)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http2
+pkgname=haskell-http2
+pkgver=1.5.4
+pkgrel=3
+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=('f3851948d57fd532f37b1f74d2d975272ff7da218720b5f519765f1c274f257e')
+
+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 167963, haskell-http2/trunk/haskell-http2.install)
===
--- community-staging-i686/haskell-http2.install
(rev 0)
+++ community-staging-i686/haskell-http2.install2016-03-23 03:50:39 UTC 
(rev 167964)
@@ -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 167963, 
haskell-http2/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-23 03:50:39 UTC (rev 167964)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http2
+pkgname=haskell-http2
+pkgver=1.5.4
+pkgrel=3
+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-22 Thread Felix Yan
Date: Wednesday, March 23, 2016 @ 04:50:13
  Author: fyan
Revision: 167963

upgpkg: haskell-http2 1.5.4-3

rebuild with aeson-0.11.1.3, hakyll-4.7.5.2, wai-extra-3.0.15

Modified:
  haskell-http2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-23 03:37:33 UTC (rev 167962)
+++ PKGBUILD2016-03-23 03:50:13 UTC (rev 167963)
@@ -5,7 +5,7 @@
 _hkgname=http2
 pkgname=haskell-http2
 pkgver=1.5.4
-pkgrel=2
+pkgrel=3
 pkgdesc="HTTP/2.0 library including frames and HPACK"
 url="http://hackage.haskell.org/package/${_hkgname};
 license=("custom:BSD3")


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

2016-03-22 Thread Felix Yan
Date: Wednesday, March 23, 2016 @ 04:37:33
  Author: fyan
Revision: 167962

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

Added:
  php-mongodb/repos/community-i686/PKGBUILD
(from rev 167961, php-mongodb/trunk/PKGBUILD)
  php-mongodb/repos/community-i686/mongodb.ini
(from rev 167961, php-mongodb/trunk/mongodb.ini)
  php-mongodb/repos/community-i686/php-mongodb.install
(from rev 167961, php-mongodb/trunk/php-mongodb.install)
  php-mongodb/repos/community-x86_64/PKGBUILD
(from rev 167961, php-mongodb/trunk/PKGBUILD)
  php-mongodb/repos/community-x86_64/mongodb.ini
(from rev 167961, php-mongodb/trunk/mongodb.ini)
  php-mongodb/repos/community-x86_64/php-mongodb.install
(from rev 167961, 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-23 03:36:46 UTC (rev 167961)
+++ community-i686/PKGBUILD 2016-03-23 03:37:33 UTC (rev 167962)
@@ -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.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"
-}

Copied: php-mongodb/repos/community-i686/PKGBUILD (from rev 167961, 
php-mongodb/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-03-23 03:37:33 UTC (rev 167962)
@@ -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.5
+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=('b3b9acec35663b0665d01f786e4d9b90a32c0e361d8b296527f1d7b2e4028bee'
+'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-23 03:36:46 UTC (rev 167961)
+++ community-i686/mongodb.ini  2016-03-23 03:37:33 UTC (rev 167962)
@@ -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 167961, 
php-mongodb/trunk/mongodb.ini)
===
--- community-i686/mongodb.ini  (rev 0)
+++ 

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

2016-03-22 Thread Felix Yan
Date: Wednesday, March 23, 2016 @ 04:36:46
  Author: fyan
Revision: 167961

upgpkg: php-mongodb 1.1.5-1

Modified:
  php-mongodb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-23 03:28:53 UTC (rev 167960)
+++ PKGBUILD2016-03-23 03:36:46 UTC (rev 167961)
@@ -5,7 +5,7 @@
 # Contributor: Jarek Sedlacek 
 
 pkgname=php-mongodb
-pkgver=1.1.4
+pkgver=1.1.5
 pkgrel=1
 pkgdesc="MongoDB driver for PHP"
 arch=("i686" "x86_64")
@@ -19,7 +19,7 @@
"http://pecl.php.net/get/mongodb-$pkgver.tgz;
"mongodb.ini"
 )
-sha256sums=('c6aee3b480d2e53b95ce9f4838c08d3f19722fccdb68c57ca11869cad4c3ff8a'
+sha256sums=('b3b9acec35663b0665d01f786e4d9b90a32c0e361d8b296527f1d7b2e4028bee'
 '242b9ffea6bd84f813c7fc2a767eaa89f83577c5ff10ff36aecec2ca308ff72b')
 
 build() {


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

2016-03-22 Thread Felix Yan
Date: Wednesday, March 23, 2016 @ 04:28:53
  Author: fyan
Revision: 167960

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 167959, haskell-aeson-pretty/trunk/PKGBUILD)
  haskell-aeson-pretty/repos/community-staging-i686/haskell-aeson-pretty.install
(from rev 167959, 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 167959, haskell-aeson-pretty/trunk/PKGBUILD)
  
haskell-aeson-pretty/repos/community-staging-x86_64/haskell-aeson-pretty.install
(from rev 167959, 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 
167959, haskell-aeson-pretty/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-23 03:28:53 UTC (rev 167960)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=aeson-pretty
+pkgname=haskell-aeson-pretty
+pkgver=0.7.2
+pkgrel=14
+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 167959, 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-23 03:28:53 UTC 
(rev 167960)
@@ -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 
167959, haskell-aeson-pretty/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-23 03:28:53 UTC (rev 167960)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=aeson-pretty
+pkgname=haskell-aeson-pretty
+pkgver=0.7.2
+pkgrel=14
+pkgdesc="JSON pretty-printing library and command-line tool."

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

2016-03-22 Thread Felix Yan
Date: Wednesday, March 23, 2016 @ 04:28:28
  Author: fyan
Revision: 167959

upgpkg: haskell-aeson-pretty 0.7.2-14

rebuild with aeson-0.11.1.3, hakyll-4.7.5.2, wai-extra-3.0.15

Modified:
  haskell-aeson-pretty/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-23 03:24:59 UTC (rev 167958)
+++ PKGBUILD2016-03-23 03:28:28 UTC (rev 167959)
@@ -5,7 +5,7 @@
 _hkgname=aeson-pretty
 pkgname=haskell-aeson-pretty
 pkgver=0.7.2
-pkgrel=13
+pkgrel=14
 pkgdesc="JSON pretty-printing library and command-line tool."
 url="http://github.com/informatikr/aeson-pretty;
 license=("custom:BSD3")


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

2016-03-22 Thread Gaetan Bisson
Date: Wednesday, March 23, 2016 @ 04:24:59
  Author: bisson
Revision: 167958

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-03-23 03:24:24 UTC (rev 167957)
+++ community-i686/PKGBUILD 2016-03-23 03:24:59 UTC (rev 167958)
@@ -1,27 +0,0 @@
-# $Id$
-# Contributor: lp76 
-# Contributor: Daenyth 
-# Maintainer: Gaetan Bisson 
-
-pkgname=ncdu
-pkgver=1.11
-pkgrel=2
-pkgdesc='Disk usage analyzer with an ncurses interface'
-url='http://dev.yorhel.nl/ncdu/'
-license=('custom:MIT')
-depends=('ncurses')
-arch=('i686' 'x86_64')
-source=("http://dev.yorhel.nl/download/${pkgname}-${pkgver}.tar.gz;)
-sha1sums=('8f22d713e6d2b28e1f501eee2bd1e03b0c8d')
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   ./configure --prefix=/usr
-   make
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}" install
-   install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: ncdu/repos/community-i686/PKGBUILD (from rev 167957, 
ncdu/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-03-23 03:24:59 UTC (rev 167958)
@@ -0,0 +1,27 @@
+# $Id$
+# Contributor: lp76 
+# Contributor: Daenyth 
+# Maintainer: Gaetan Bisson 
+
+pkgname=ncdu
+pkgver=1.11
+pkgrel=3
+pkgdesc='Disk usage analyzer with an ncurses interface'
+url='https://dev.yorhel.nl/ncdu'
+license=('custom:MIT')
+depends=('ncurses')
+arch=('i686' 'x86_64')
+source=("http://dev.yorhel.nl/download/${pkgname}-${pkgver}.tar.gz;)
+sha1sums=('8f22d713e6d2b28e1f501eee2bd1e03b0c8d')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure --prefix=/usr
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+   install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-03-23 03:24:24 UTC (rev 167957)
+++ community-x86_64/PKGBUILD   2016-03-23 03:24:59 UTC (rev 167958)
@@ -1,27 +0,0 @@
-# $Id$
-# Contributor: lp76 
-# Contributor: Daenyth 
-# Maintainer: Gaetan Bisson 
-
-pkgname=ncdu
-pkgver=1.11
-pkgrel=2
-pkgdesc='Disk usage analyzer with an ncurses interface'
-url='http://dev.yorhel.nl/ncdu/'
-license=('custom:MIT')
-depends=('ncurses')
-arch=('i686' 'x86_64')
-source=("http://dev.yorhel.nl/download/${pkgname}-${pkgver}.tar.gz;)
-sha1sums=('8f22d713e6d2b28e1f501eee2bd1e03b0c8d')
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   ./configure --prefix=/usr
-   make
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}" install
-   install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: ncdu/repos/community-x86_64/PKGBUILD (from rev 167957, 
ncdu/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-03-23 03:24:59 UTC (rev 167958)
@@ -0,0 +1,27 @@
+# $Id$
+# Contributor: lp76 
+# Contributor: Daenyth 
+# Maintainer: Gaetan Bisson 
+
+pkgname=ncdu
+pkgver=1.11
+pkgrel=3
+pkgdesc='Disk usage analyzer with an ncurses interface'
+url='https://dev.yorhel.nl/ncdu'
+license=('custom:MIT')
+depends=('ncurses')
+arch=('i686' 'x86_64')
+source=("http://dev.yorhel.nl/download/${pkgname}-${pkgver}.tar.gz;)
+sha1sums=('8f22d713e6d2b28e1f501eee2bd1e03b0c8d')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure --prefix=/usr
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+   install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}


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

2016-03-22 Thread Gaetan Bisson
Date: Wednesday, March 23, 2016 @ 04:24:24
  Author: bisson
Revision: 167957

fix FS#48661

Modified:
  ncdu/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-23 03:14:12 UTC (rev 167956)
+++ PKGBUILD2016-03-23 03:24:24 UTC (rev 167957)
@@ -5,9 +5,9 @@
 
 pkgname=ncdu
 pkgver=1.11
-pkgrel=2
+pkgrel=3
 pkgdesc='Disk usage analyzer with an ncurses interface'
-url='http://dev.yorhel.nl/ncdu/'
+url='https://dev.yorhel.nl/ncdu'
 license=('custom:MIT')
 depends=('ncurses')
 arch=('i686' 'x86_64')


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

2016-03-22 Thread Felix Yan
Date: Wednesday, March 23, 2016 @ 04:13:47
  Author: fyan
Revision: 167955

upgpkg: haskell-aeson 0.11.1.3-1

rebuild with aeson-0.11.1.3, hakyll-4.7.5.2, wai-extra-3.0.15

Modified:
  haskell-aeson/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-23 02:45:31 UTC (rev 167954)
+++ PKGBUILD2016-03-23 03:13:47 UTC (rev 167955)
@@ -5,8 +5,8 @@
 
 pkgname=haskell-aeson
 _hkgname=aeson
-pkgver=0.11.1.1
-pkgrel=2
+pkgver=0.11.1.3
+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=('d19fcee1b540c76d6f92ad957c30ae75')
+md5sums=('5b30b4cfa56ea19a4263beae3f324f1d')
 
 build() {
   cd "$srcdir/$_hkgname-$pkgver"


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

2016-03-22 Thread Felix Yan
Date: Wednesday, March 23, 2016 @ 04:14:12
  Author: fyan
Revision: 167956

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 167955, haskell-aeson/trunk/PKGBUILD)
  haskell-aeson/repos/community-staging-i686/haskell-aeson.install
(from rev 167955, haskell-aeson/trunk/haskell-aeson.install)
  haskell-aeson/repos/community-staging-x86_64/
  haskell-aeson/repos/community-staging-x86_64/PKGBUILD
(from rev 167955, haskell-aeson/trunk/PKGBUILD)
  haskell-aeson/repos/community-staging-x86_64/haskell-aeson.install
(from rev 167955, 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 167955, 
haskell-aeson/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-23 03:14:12 UTC (rev 167956)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Daniel Nagy 
+# Contributor: Daniel Micay 
+
+pkgname=haskell-aeson
+_hkgname=aeson
+pkgver=0.11.1.3
+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=('5b30b4cfa56ea19a4263beae3f324f1d')
+
+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 167955, haskell-aeson/trunk/haskell-aeson.install)
===
--- community-staging-i686/haskell-aeson.install
(rev 0)
+++ community-staging-i686/haskell-aeson.install2016-03-23 03:14:12 UTC 
(rev 167956)
@@ -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 167955, 
haskell-aeson/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-23 03:14:12 UTC (rev 167956)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Daniel Nagy 
+# Contributor: Daniel Micay 
+
+pkgname=haskell-aeson
+_hkgname=aeson
+pkgver=0.11.1.3
+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 perl-socket6/repos (4 files)

2016-03-22 Thread Felix Yan
Date: Wednesday, March 23, 2016 @ 03:46:31
  Author: fyan
Revision: 262439

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

Added:
  perl-socket6/repos/extra-i686/PKGBUILD
(from rev 262438, perl-socket6/trunk/PKGBUILD)
  perl-socket6/repos/extra-x86_64/PKGBUILD
(from rev 262438, perl-socket6/trunk/PKGBUILD)
Deleted:
  perl-socket6/repos/extra-i686/PKGBUILD
  perl-socket6/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-03-23 02:46:01 UTC (rev 262438)
+++ extra-i686/PKGBUILD 2016-03-23 02:46:31 UTC (rev 262439)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Florian Pritz 
-
-pkgname=perl-socket6
-pkgver=0.26
-pkgrel=1
-pkgdesc="A getaddrinfo/getnameinfo support module"
-arch=('i686' 'x86_64')
-url='http://search.cpan.org/dist/Socket6'
-license=('PerlArtistic' 'GPL')
-depends=('perl')
-options=('!emptydirs')
-source=(http://search.cpan.org/CPAN/authors/id/U/UM/UMEMOTO/Socket6-$pkgver.tar.gz)
-sha1sums=('40c84ffdc8bbac4fbbf89aae396361d59875b75d')
-
-build() {
-  cd Socket6-$pkgver
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd Socket6-$pkgver
-  make test
-}
-
-package() {
-  cd Socket6-$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-socket6/repos/extra-i686/PKGBUILD (from rev 262438, 
perl-socket6/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-03-23 02:46:31 UTC (rev 262439)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Florian Pritz 
+
+pkgname=perl-socket6
+pkgver=0.27
+pkgrel=1
+pkgdesc="A getaddrinfo/getnameinfo support module"
+arch=('i686' 'x86_64')
+url='http://search.cpan.org/dist/Socket6'
+license=('PerlArtistic' 'GPL')
+depends=('perl')
+options=('!emptydirs')
+source=(http://search.cpan.org/CPAN/authors/id/U/UM/UMEMOTO/Socket6-$pkgver.tar.gz)
+sha1sums=('f7d2b7628ab9873c4ba9410c336ed44640695225')
+
+build() {
+  cd Socket6-$pkgver
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd Socket6-$pkgver
+  make test
+}
+
+package() {
+  cd Socket6-$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-23 02:46:01 UTC (rev 262438)
+++ extra-x86_64/PKGBUILD   2016-03-23 02:46:31 UTC (rev 262439)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Florian Pritz 
-
-pkgname=perl-socket6
-pkgver=0.26
-pkgrel=1
-pkgdesc="A getaddrinfo/getnameinfo support module"
-arch=('i686' 'x86_64')
-url='http://search.cpan.org/dist/Socket6'
-license=('PerlArtistic' 'GPL')
-depends=('perl')
-options=('!emptydirs')
-source=(http://search.cpan.org/CPAN/authors/id/U/UM/UMEMOTO/Socket6-$pkgver.tar.gz)
-sha1sums=('40c84ffdc8bbac4fbbf89aae396361d59875b75d')
-
-build() {
-  cd Socket6-$pkgver
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd Socket6-$pkgver
-  make test
-}
-
-package() {
-  cd Socket6-$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-socket6/repos/extra-x86_64/PKGBUILD (from rev 262438, 
perl-socket6/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-03-23 

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

2016-03-22 Thread Felix Yan
Date: Wednesday, March 23, 2016 @ 03:46:01
  Author: fyan
Revision: 262438

upgpkg: perl-socket6 0.27-1

Modified:
  perl-socket6/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-23 00:12:36 UTC (rev 262437)
+++ PKGBUILD2016-03-23 02:46:01 UTC (rev 262438)
@@ -3,7 +3,7 @@
 # Contributor: Florian Pritz 
 
 pkgname=perl-socket6
-pkgver=0.26
+pkgver=0.27
 pkgrel=1
 pkgdesc="A getaddrinfo/getnameinfo support module"
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 depends=('perl')
 options=('!emptydirs')
 
source=(http://search.cpan.org/CPAN/authors/id/U/UM/UMEMOTO/Socket6-$pkgver.tar.gz)
-sha1sums=('40c84ffdc8bbac4fbbf89aae396361d59875b75d')
+sha1sums=('f7d2b7628ab9873c4ba9410c336ed44640695225')
 
 build() {
   cd Socket6-$pkgver


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

2016-03-22 Thread Felix Yan
Date: Wednesday, March 23, 2016 @ 03:45:31
  Author: fyan
Revision: 167954

archrelease: copy trunk to community-any

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

--+
 PKGBUILD |  152 ++---
 1 file changed, 76 insertions(+), 76 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-03-23 02:45:13 UTC (rev 167953)
+++ PKGBUILD2016-03-23 02:45:31 UTC (rev 167954)
@@ -1,76 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: mutantmonkey 
-
-pkgbase=python-kombu
-pkgname=('python-kombu' 'python2-kombu')
-pkgver=3.0.34
-pkgrel=1
-pkgdesc='A messaging library for Python'
-arch=('any')
-url="http://kombu.readthedocs.org/;
-license=('BSD')
-options=('!emptydirs')
-makedepends=('python-anyjson' 'python2-anyjson' 'git')
-checkdepends=('python-redis' 'python2-redis' 'python-yaml' 'python2-yaml' 
'python-msgpack' 'python2-msgpack'
-  'python-boto' 'python2-boto' 'python-pycurl' 'python2-pycurl' 
'python-nose' 'python2-nose'
-  'python-amqp' 'python2-amqp' 'python-mock' 'python2-mock' 
'python-pymongo' 'python2-pymongo'
-  'python2-librabbitmq' 'python-couchdb' 'python2-couchdb' 
'python-sqlalchemy' 'python2-sqlalchemy')
-source=("git+https://github.com/celery/kombu.git#tag=v$pkgver;)
-sha256sums=('SKIP')
-
-prepare() {
-  cp -a kombu{,-py2}
-}
-
-check() {
-  cd kombu
-  nosetests3 -v
-
-  cd ../kombu-py2
-  nosetests2 -v
-}
-
-package_python-kombu() {
-  depends=('python-amqp' 'python-anyjson')
-  optdepends=('python-pymongo: for MongoDB support'
-  'python-msgpack: for MessagePack support'
-  'python-pyro: for Pyro support'
-  'python-redis: for Redis support'
-  'python-sqlalchemy: for SQLAlchemy support'
-  'python-boto: for Amazon SQS support'
-  'python-yaml: for YAML support'
-  'python-pyzmq: for ZeroMQ support'
-  'python-couchdb: for CouchDB support')
-  # 'python-softlayer-messaging: for SoftLayer Message Queue 
support': Not packaged yet
-  # 'python-kazoo: for Zookeeper support': Not packaged yet
-  # 'python-librabbitmq: C optimization for AMQP transport' Not 
available for python 3 yet
-  # 'python-beanstalkc: for Beanstalk Support' Not available for 
python 3 yet
-
-  cd "$srcdir/kombu"
-  python setup.py install --root="$pkgdir/" --optimize=1
-  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_python2-kombu() {
-  depends=('python2-amqp' 'python2-anyjson')
-  optdepends=('python2-pymongo: for MongoDB support'
-  'python2-msgpack: for MessagePack support'
-  'python2-pyro: for Pyro support'
-  'python2-redis: for Redis support'
-  'python2-sqlalchemy: for SQLAlchemy support'
-  'python2-boto: for Amazon SQS support'
-  'python2-yaml: for YAML support'
-  'python2-pyzmq: for ZeroMQ support'
-  'python2-librabbitmq: C optimization for AMQP transport'
-  'python2-couchdb: for CouchDB support')
-  # 'python2-softlayer-messaging: for SoftLayer Message Queue 
support': Not packaged yet
-  # 'python2-kazoo: for Zookeeper support': Not packaged yet
-  # 'python2-beanstalkc: for Beanstalk Support' Not packaged yet
-
-  cd "$srcdir/kombu-py2"
-  python2 setup.py install --root="$pkgdir/" --optimize=1
-  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-kombu/repos/community-any/PKGBUILD (from rev 167953, 
python-kombu/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-03-23 02:45:31 UTC (rev 167954)
@@ -0,0 +1,76 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: mutantmonkey 
+
+pkgbase=python-kombu
+pkgname=('python-kombu' 'python2-kombu')
+pkgver=3.0.35
+pkgrel=1
+pkgdesc='A messaging library for Python'
+arch=('any')
+url="http://kombu.readthedocs.org/;
+license=('BSD')
+options=('!emptydirs')
+makedepends=('python-anyjson' 'python2-anyjson' 'git')
+checkdepends=('python-redis' 'python2-redis' 'python-yaml' 'python2-yaml' 
'python-msgpack' 'python2-msgpack'
+  'python-boto' 'python2-boto' 'python-pycurl' 'python2-pycurl' 
'python-nose' 'python2-nose'
+  'python-amqp' 'python2-amqp' 'python-mock' 'python2-mock' 
'python-pymongo' 'python2-pymongo'
+  'python2-librabbitmq' 'python-couchdb' 'python2-couchdb' 
'python-sqlalchemy' 'python2-sqlalchemy')

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

2016-03-22 Thread Felix Yan
Date: Wednesday, March 23, 2016 @ 03:45:13
  Author: fyan
Revision: 167953

upgpkg: python-kombu 3.0.35-1

Modified:
  python-kombu/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-23 02:40:07 UTC (rev 167952)
+++ PKGBUILD2016-03-23 02:45:13 UTC (rev 167953)
@@ -4,7 +4,7 @@
 
 pkgbase=python-kombu
 pkgname=('python-kombu' 'python2-kombu')
-pkgver=3.0.34
+pkgver=3.0.35
 pkgrel=1
 pkgdesc='A messaging library for Python'
 arch=('any')
@@ -24,10 +24,10 @@
 }
 
 check() {
-  cd kombu
+  cd "$srcdir"/kombu
   nosetests3 -v
 
-  cd ../kombu-py2
+  cd "$srcdir"/kombu-py2
   nosetests2 -v
 }
 
@@ -47,9 +47,9 @@
   # 'python-librabbitmq: C optimization for AMQP transport' Not 
available for python 3 yet
   # 'python-beanstalkc: for Beanstalk Support' Not available for 
python 3 yet
 
-  cd "$srcdir/kombu"
-  python setup.py install --root="$pkgdir/" --optimize=1
-  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+  cd "$srcdir"/kombu
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 }
 
 package_python2-kombu() {
@@ -68,9 +68,9 @@
   # 'python2-kazoo: for Zookeeper support': Not packaged yet
   # 'python2-beanstalkc: for Beanstalk Support' Not packaged yet
 
-  cd "$srcdir/kombu-py2"
-  python2 setup.py install --root="$pkgdir/" --optimize=1
-  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+  cd "$srcdir"/kombu-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 }
 
 # vim:set ts=2 sw=2 et:


[arch-commits] Commit in nodejs-grunt-cli/repos/community-any (PKGBUILD PKGBUILD)

2016-03-22 Thread Felix Yan
Date: Wednesday, March 23, 2016 @ 03:40:07
  Author: fyan
Revision: 167952

archrelease: copy trunk to community-any

Added:
  nodejs-grunt-cli/repos/community-any/PKGBUILD
(from rev 167951, nodejs-grunt-cli/trunk/PKGBUILD)
Deleted:
  nodejs-grunt-cli/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-03-23 02:39:50 UTC (rev 167951)
+++ PKGBUILD2016-03-23 02:40:07 UTC (rev 167952)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Mario Finelli 
-# Contributor: Andy Weidenbaum 
-# Contributor: Peter Wu 
-
-_npmname=grunt-cli
-pkgname=nodejs-$_npmname
-pkgver=1.0.0
-pkgrel=1
-pkgdesc="The grunt command line interface."
-arch=('any')
-url="http://gruntjs.com/;
-license=('MIT')
-depends=('nodejs')
-makedepends=('npm')
-source=("https://registry.npmjs.org/$_npmname/-/$_npmname-$pkgver.tgz;)
-noextract=($_npmname-$pkgver.tgz)
-sha256sums=('fd291e3d1a84b839d93735c771f0f87ede281487ddb7764dc37ecc271ca1fc43')
-
-package() {
-  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$_npmname-$pkgver.tgz
-  rm -r "$pkgdir"/usr/etc
-  mkdir -p "$pkgdir/usr/share/licenses/$pkgname"
-  ln -s "../../../lib/node_modules/$_npmname/LICENSE-MIT" 
"$pkgdir/usr/share/licenses/$pkgname/"
-}

Copied: nodejs-grunt-cli/repos/community-any/PKGBUILD (from rev 167951, 
nodejs-grunt-cli/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-03-23 02:40:07 UTC (rev 167952)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Mario Finelli 
+# Contributor: Andy Weidenbaum 
+# Contributor: Peter Wu 
+
+_npmname=grunt-cli
+pkgname=nodejs-$_npmname
+pkgver=1.0.1
+pkgrel=1
+pkgdesc="The grunt command line interface."
+arch=('any')
+url="http://gruntjs.com/;
+license=('MIT')
+depends=('nodejs')
+makedepends=('npm')
+source=("https://registry.npmjs.org/$_npmname/-/$_npmname-$pkgver.tgz;)
+noextract=($_npmname-$pkgver.tgz)
+sha256sums=('d8d1cd41a627e937e4f8b521b1d59200afffc10cdf0d0b07cc55f58940e74a2e')
+
+package() {
+  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$_npmname-$pkgver.tgz
+  rm -r "$pkgdir"/usr/etc
+  mkdir -p "$pkgdir/usr/share/licenses/$pkgname"
+  ln -s "../../../lib/node_modules/$_npmname/LICENSE-MIT" 
"$pkgdir/usr/share/licenses/$pkgname/"
+}


[arch-commits] Commit in nodejs-grunt-cli/trunk (PKGBUILD)

2016-03-22 Thread Felix Yan
Date: Wednesday, March 23, 2016 @ 03:39:50
  Author: fyan
Revision: 167951

upgpkg: nodejs-grunt-cli 1.0.1-1

Modified:
  nodejs-grunt-cli/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-23 00:13:20 UTC (rev 167950)
+++ PKGBUILD2016-03-23 02:39:50 UTC (rev 167951)
@@ -6,7 +6,7 @@
 
 _npmname=grunt-cli
 pkgname=nodejs-$_npmname
-pkgver=1.0.0
+pkgver=1.0.1
 pkgrel=1
 pkgdesc="The grunt command line interface."
 arch=('any')
@@ -16,7 +16,7 @@
 makedepends=('npm')
 source=("https://registry.npmjs.org/$_npmname/-/$_npmname-$pkgver.tgz;)
 noextract=($_npmname-$pkgver.tgz)
-sha256sums=('fd291e3d1a84b839d93735c771f0f87ede281487ddb7764dc37ecc271ca1fc43')
+sha256sums=('d8d1cd41a627e937e4f8b521b1d59200afffc10cdf0d0b07cc55f58940e74a2e')
 
 package() {
   npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$_npmname-$pkgver.tgz


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

2016-03-22 Thread Gaetan Bisson
Date: Wednesday, March 23, 2016 @ 01:13:20
  Author: bisson
Revision: 167950

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

Added:
  subsurface-marble/repos/community-i686/PKGBUILD
(from rev 167949, subsurface-marble/repos/community-testing-i686/PKGBUILD)
  subsurface-marble/repos/community-x86_64/PKGBUILD
(from rev 167949, subsurface-marble/repos/community-testing-x86_64/PKGBUILD)
Deleted:
  subsurface-marble/repos/community-i686/PKGBUILD
  subsurface-marble/repos/community-testing-i686/
  subsurface-marble/repos/community-testing-x86_64/
  subsurface-marble/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-03-23 00:13:19 UTC (rev 167949)
+++ community-i686/PKGBUILD 2016-03-23 00:13:20 UTC (rev 167950)
@@ -1,51 +0,0 @@
-# $Id$
-# Contributor: Francois Boulogne 
-# Maintainer: Gaetan Bisson 
-
-pkgname=subsurface-marble
-_pkgname=marble-subsurface-branch
-pkgver=4.5.3
-pkgrel=1
-pkgdesc='Virtual Globe'
-url='http://git.subsurface-divelog.org/'
-license=('GPL' 'LGPL' 'FDL')
-arch=('i686' 'x86_64')
-makedepends=('cmake')
-depends=('qt5-'{script,svg,tools,webkit} 'marble-data')
-source=("http://subsurface-divelog.org/downloads/${_pkgname}-${pkgver}.tgz;)
-sha1sums=('77e562c5f7b28e4fef5bba788183c616c8f505fe')
-
-build() {
-   cd "${srcdir}/${_pkgname}-${pkgver}"
-   cmake \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DCMAKE_BUILD_TYPE=Release \
-   -DQT5BUILD=ON \
-   -DQTONLY=ON \
-   -DBUILD_MARBLE_APPS=OFF \
-   -DBUILD_MARBLE_EXAMPLES=OFF \
-   -DBUILD_MARBLE_TESTS=OFF \
-   -DBUILD_MARBLE_TOOLS=OFF \
-   -DBUILD_TESTING=OFF \
-   -DWITH_DESIGNER_PLUGIN=OFF \
-   -DBUILD_WITH_DBUS=OFF \
-   .
-}
-
-package() {
-   cd "${srcdir}/${_pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}" install
-
-   cd "${pkgdir}/usr"
-   mv include subsurface
-   install -d include
-   mv subsurface include
-rm -fr share/{appdata,icons}
-
-   # Provided by marble-data, avoids conflicts.
-   rm share/marble/cmake/FindMarble.cmake
-   rm -fr share/marble/data
-
-   # Conflicts with libastro
-   rm lib/libastro.so{,.1,.0.17.20}
-}

Copied: subsurface-marble/repos/community-i686/PKGBUILD (from rev 167949, 
subsurface-marble/repos/community-testing-i686/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-03-23 00:13:20 UTC (rev 167950)
@@ -0,0 +1,51 @@
+# $Id$
+# Contributor: Francois Boulogne 
+# Maintainer: Gaetan Bisson 
+
+pkgname=subsurface-marble
+_pkgname=marble-subsurface-branch
+pkgver=4.5.4
+pkgrel=1
+pkgdesc='Virtual Globe'
+url='http://git.subsurface-divelog.org/'
+license=('GPL' 'LGPL' 'FDL')
+arch=('i686' 'x86_64')
+makedepends=('cmake')
+depends=('qt5-'{script,svg,tools,webkit} 'marble-data')
+source=("http://subsurface-divelog.org/downloads/${_pkgname}-${pkgver}.tgz;)
+sha1sums=('a244fd261c087bd96d6d96d474fcf824f13323eb')
+
+build() {
+   cd "${srcdir}/${_pkgname}-${pkgver}"
+   cmake \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DQT5BUILD=ON \
+   -DQTONLY=ON \
+   -DBUILD_MARBLE_APPS=OFF \
+   -DBUILD_MARBLE_EXAMPLES=OFF \
+   -DBUILD_MARBLE_TESTS=OFF \
+   -DBUILD_MARBLE_TOOLS=OFF \
+   -DBUILD_TESTING=OFF \
+   -DWITH_DESIGNER_PLUGIN=OFF \
+   -DBUILD_WITH_DBUS=OFF \
+   .
+}
+
+package() {
+   cd "${srcdir}/${_pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+
+   cd "${pkgdir}/usr"
+   mv include subsurface
+   install -d include
+   mv subsurface include
+rm -fr share/{appdata,icons}
+
+   # Provided by marble-data, avoids conflicts.
+   rm share/marble/cmake/FindMarble.cmake
+   rm -fr share/marble/data
+
+   # Conflicts with libastro
+   rm lib/libastro.so{,.1,.0.17.20}
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-03-23 00:13:19 UTC (rev 167949)
+++ community-x86_64/PKGBUILD   2016-03-23 00:13:20 UTC (rev 167950)
@@ -1,51 +0,0 @@
-# $Id$
-# Contributor: Francois Boulogne 
-# Maintainer: Gaetan Bisson 
-
-pkgname=subsurface-marble

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

2016-03-22 Thread Gaetan Bisson
Date: Wednesday, March 23, 2016 @ 01:12:36
  Author: bisson
Revision: 262437

db-move: moved testdisk from [testing] to [extra] (i686, x86_64)

Added:
  testdisk/repos/extra-i686/PKGBUILD
(from rev 262436, testdisk/repos/testing-i686/PKGBUILD)
  testdisk/repos/extra-x86_64/PKGBUILD
(from rev 262436, testdisk/repos/testing-x86_64/PKGBUILD)
Deleted:
  testdisk/repos/extra-i686/PKGBUILD
  testdisk/repos/extra-x86_64/PKGBUILD
  testdisk/repos/testing-i686/
  testdisk/repos/testing-x86_64/

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-03-23 00:12:34 UTC (rev 262436)
+++ extra-i686/PKGBUILD 2016-03-23 00:12:36 UTC (rev 262437)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Tobias Powalowski 
-# Contributor: Sergej Pupykin 
-# Contributor: Michal Krenek 
-
-pkgname=testdisk
-pkgver=7.0
-pkgrel=2
-pkgdesc="Checks and undeletes partitions + PhotoRec, signature based recovery 
tool"
-arch=('i686' 'x86_64')
-url="http://www.cgsecurity.org/index.html?testdisk.html;
-license=('GPL')
-depends=('libjpeg' 'openssl' 'progsreiserfs' 'ntfsprogs')
-source=(http://www.cgsecurity.org/$pkgname-$pkgver.tar.bz2)
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  ./configure --prefix=/usr \
-  --without-ewf \
-  --enable-sudo
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}
-md5sums=('f0cfe4ca9dd35f2878b2704251665e9f')

Copied: testdisk/repos/extra-i686/PKGBUILD (from rev 262436, 
testdisk/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-03-23 00:12:36 UTC (rev 262437)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Tobias Powalowski 
+# Contributor: Sergej Pupykin 
+# Contributor: Michal Krenek 
+
+pkgname=testdisk
+pkgver=7.0
+pkgrel=3
+pkgdesc="Checks and undeletes partitions + PhotoRec, signature based recovery 
tool"
+arch=('i686' 'x86_64')
+url="http://www.cgsecurity.org/index.html?testdisk.html;
+license=('GPL')
+depends=('libjpeg' 'openssl' 'progsreiserfs' 'ntfsprogs')
+source=(http://www.cgsecurity.org/$pkgname-$pkgver.tar.bz2)
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure --prefix=/usr \
+  --without-ewf \
+  --enable-sudo
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}
+md5sums=('f0cfe4ca9dd35f2878b2704251665e9f')

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-03-23 00:12:34 UTC (rev 262436)
+++ extra-x86_64/PKGBUILD   2016-03-23 00:12:36 UTC (rev 262437)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Tobias Powalowski 
-# Contributor: Sergej Pupykin 
-# Contributor: Michal Krenek 
-
-pkgname=testdisk
-pkgver=7.0
-pkgrel=2
-pkgdesc="Checks and undeletes partitions + PhotoRec, signature based recovery 
tool"
-arch=('i686' 'x86_64')
-url="http://www.cgsecurity.org/index.html?testdisk.html;
-license=('GPL')
-depends=('libjpeg' 'openssl' 'progsreiserfs' 'ntfsprogs')
-source=(http://www.cgsecurity.org/$pkgname-$pkgver.tar.bz2)
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  ./configure --prefix=/usr \
-  --without-ewf \
-  --enable-sudo
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}
-md5sums=('f0cfe4ca9dd35f2878b2704251665e9f')

Copied: testdisk/repos/extra-x86_64/PKGBUILD (from rev 262436, 
testdisk/repos/testing-x86_64/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-03-23 00:12:36 UTC (rev 262437)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Tobias Powalowski 
+# Contributor: Sergej Pupykin 
+# Contributor: Michal Krenek 
+
+pkgname=testdisk
+pkgver=7.0
+pkgrel=3
+pkgdesc="Checks and undeletes partitions + PhotoRec, signature based recovery 
tool"
+arch=('i686' 'x86_64')
+url="http://www.cgsecurity.org/index.html?testdisk.html;
+license=('GPL')
+depends=('libjpeg' 'openssl' 'progsreiserfs' 'ntfsprogs')
+source=(http://www.cgsecurity.org/$pkgname-$pkgver.tar.bz2)
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure --prefix=/usr \
+  --without-ewf \
+  --enable-sudo
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make 

[arch-commits] Commit in subsurface/repos (10 files)

2016-03-22 Thread Gaetan Bisson
Date: Wednesday, March 23, 2016 @ 01:13:17
  Author: bisson
Revision: 167948

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

Added:
  subsurface/repos/community-i686/PKGBUILD
(from rev 167947, subsurface/repos/community-testing-i686/PKGBUILD)
  subsurface/repos/community-i686/install
(from rev 167947, subsurface/repos/community-testing-i686/install)
  subsurface/repos/community-x86_64/PKGBUILD
(from rev 167947, subsurface/repos/community-testing-x86_64/PKGBUILD)
  subsurface/repos/community-x86_64/install
(from rev 167947, subsurface/repos/community-testing-x86_64/install)
Deleted:
  subsurface/repos/community-i686/PKGBUILD
  subsurface/repos/community-i686/install
  subsurface/repos/community-testing-i686/
  subsurface/repos/community-testing-x86_64/
  subsurface/repos/community-x86_64/PKGBUILD
  subsurface/repos/community-x86_64/install

---+
 /PKGBUILD |   82 
 /install  |   22 +++
 community-i686/PKGBUILD   |   41 --
 community-i686/install|   11 -
 community-x86_64/PKGBUILD |   41 --
 community-x86_64/install  |   11 -
 6 files changed, 104 insertions(+), 104 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-03-23 00:12:47 UTC (rev 167947)
+++ community-i686/PKGBUILD 2016-03-23 00:13:17 UTC (rev 167948)
@@ -1,41 +0,0 @@
-# $Id$
-# Contributor: Francois Boulogne 
-# Maintainer: Gaetan Bisson 
-
-pkgname=subsurface
-_pkgname=Subsurface
-pkgver=4.5.3
-pkgrel=1
-pkgdesc='Divelog program'
-url='http://subsurface-divelog.org/'
-license=('GPL2')
-arch=('i686' 'x86_64')
-makedepends=('cmake' 'asciidoc')
-depends=('libzip' 'libxml2' 'libxslt' 'sqlite' 'libusb' 'libgit2'
- 'subsurface-libdc' 'subsurface-marble'
- 'qt5-connectivity' 'grantlee-qt5')
-source=("http://subsurface-divelog.org/downloads/${_pkgname}-${pkgver}.tgz;)
-sha1sums=('46981e8ecf4c51094851ee089f4725c3c0f47b62')
-
-install=install
-
-prepare() {
-   cd "${srcdir}/${_pkgname}-${pkgver}"
-   sed 's:
+
+pkgname=subsurface
+_pkgname=Subsurface
+pkgver=4.5.4
+pkgrel=1
+pkgdesc='Divelog program'
+url='http://subsurface-divelog.org/'
+license=('GPL2')
+arch=('i686' 'x86_64')
+makedepends=('cmake' 'asciidoc')
+depends=('libzip' 'libxml2' 'libxslt' 'sqlite' 'libusb' 'libgit2'
+ 'subsurface-libdc' 'subsurface-marble'
+ 'qt5-connectivity' 'grantlee-qt5')
+source=("http://subsurface-divelog.org/downloads/${_pkgname}-${pkgver}.tgz;)
+sha1sums=('e4ff548171b0a317a1f3f762bde2f62fd2152088')
+
+install=install
+
+prepare() {
+   cd "${srcdir}/${_pkgname}-${pkgver}"
+   sed 's:/dev/null && gtk-update-icon-cache -q -t 
-f usr/share/icons/hicolor
+}
+
+post_install() {
+   post_upgrade
+}
+
+post_remove() {
+   post_upgrade
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-03-23 00:12:47 UTC (rev 167947)
+++ community-x86_64/PKGBUILD   2016-03-23 00:13:17 UTC (rev 167948)
@@ -1,41 +0,0 @@
-# $Id$
-# Contributor: Francois Boulogne 
-# Maintainer: Gaetan Bisson 
-
-pkgname=subsurface
-_pkgname=Subsurface
-pkgver=4.5.3
-pkgrel=1
-pkgdesc='Divelog program'
-url='http://subsurface-divelog.org/'
-license=('GPL2')
-arch=('i686' 'x86_64')
-makedepends=('cmake' 'asciidoc')
-depends=('libzip' 'libxml2' 'libxslt' 'sqlite' 'libusb' 'libgit2'
- 'subsurface-libdc' 'subsurface-marble'
- 'qt5-connectivity' 'grantlee-qt5')
-source=("http://subsurface-divelog.org/downloads/${_pkgname}-${pkgver}.tgz;)
-sha1sums=('46981e8ecf4c51094851ee089f4725c3c0f47b62')
-
-install=install
-
-prepare() {
-   cd "${srcdir}/${_pkgname}-${pkgver}"
-   sed 's:
+
+pkgname=subsurface
+_pkgname=Subsurface
+pkgver=4.5.4
+pkgrel=1
+pkgdesc='Divelog program'
+url='http://subsurface-divelog.org/'
+license=('GPL2')
+arch=('i686' 'x86_64')
+makedepends=('cmake' 'asciidoc')
+depends=('libzip' 'libxml2' 'libxslt' 'sqlite' 'libusb' 'libgit2'
+ 'subsurface-libdc' 'subsurface-marble'
+ 'qt5-connectivity' 

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

2016-03-22 Thread Gaetan Bisson
Date: Wednesday, March 23, 2016 @ 01:13:19
  Author: bisson
Revision: 167949

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

Added:
  subsurface-libdc/repos/community-i686/PKGBUILD
(from rev 167948, subsurface-libdc/repos/community-testing-i686/PKGBUILD)
  subsurface-libdc/repos/community-x86_64/PKGBUILD
(from rev 167948, subsurface-libdc/repos/community-testing-x86_64/PKGBUILD)
Deleted:
  subsurface-libdc/repos/community-i686/PKGBUILD
  subsurface-libdc/repos/community-testing-i686/
  subsurface-libdc/repos/community-testing-x86_64/
  subsurface-libdc/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-03-23 00:13:17 UTC (rev 167948)
+++ community-i686/PKGBUILD 2016-03-23 00:13:19 UTC (rev 167949)
@@ -1,33 +0,0 @@
-# $Id$
-# Contributor: Francois Boulogne 
-# Maintainer: Gaetan Bisson 
-
-pkgname=subsurface-libdc
-_pkgname=libdivecomputer-subsurface-branch
-pkgver=4.5.3
-pkgrel=1
-pkgdesc='Library for communication with dive computers'
-url='http://git.subsurface-divelog.org/'
-license=('LGPL')
-arch=('i686' 'x86_64')
-source=("http://subsurface-divelog.org/downloads/${_pkgname}-${pkgver}.tgz;)
-sha1sums=('71d00cc1d10b6b4026922a44707b05c1aba76343')
-
-conflicts=('libdivecomputer')
-provides=('libdivecomputer')
-replaces=('libdivecomputer')
-
-build() {
-   cd "${srcdir}/${_pkgname}-${pkgver}"
-   autoreconf --install
-   ./configure \
-   --prefix=/usr \
-   --program-prefix=libdc- \
-
-   make
-}
-
-package() {
-   cd "${srcdir}/${_pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}" install
-}

Copied: subsurface-libdc/repos/community-i686/PKGBUILD (from rev 167948, 
subsurface-libdc/repos/community-testing-i686/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-03-23 00:13:19 UTC (rev 167949)
@@ -0,0 +1,34 @@
+# $Id$
+# Contributor: Francois Boulogne 
+# Maintainer: Gaetan Bisson 
+
+pkgname=subsurface-libdc
+_pkgname=libdivecomputer-subsurface-branch
+pkgver=4.5.4
+pkgrel=1
+pkgdesc='Library for communication with dive computers'
+url='http://git.subsurface-divelog.org/'
+license=('LGPL')
+arch=('i686' 'x86_64')
+source=("http://subsurface-divelog.org/downloads/${_pkgname}-${pkgver}.tgz;)
+sha1sums=('fc9e7bee669b03475c2556797f640eea8fa7a3d0')
+
+conflicts=('libdivecomputer')
+provides=('libdivecomputer')
+replaces=('libdivecomputer')
+
+build() {
+   cd "${srcdir}/${_pkgname}-${pkgver}"
+   autoreconf --install
+   ./configure \
+   --prefix=/usr \
+   --program-prefix=libdc- \
+   --disable-examples # chokes on dctool_parse for now
+
+   make
+}
+
+package() {
+   cd "${srcdir}/${_pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-03-23 00:13:17 UTC (rev 167948)
+++ community-x86_64/PKGBUILD   2016-03-23 00:13:19 UTC (rev 167949)
@@ -1,33 +0,0 @@
-# $Id$
-# Contributor: Francois Boulogne 
-# Maintainer: Gaetan Bisson 
-
-pkgname=subsurface-libdc
-_pkgname=libdivecomputer-subsurface-branch
-pkgver=4.5.3
-pkgrel=1
-pkgdesc='Library for communication with dive computers'
-url='http://git.subsurface-divelog.org/'
-license=('LGPL')
-arch=('i686' 'x86_64')
-source=("http://subsurface-divelog.org/downloads/${_pkgname}-${pkgver}.tgz;)
-sha1sums=('71d00cc1d10b6b4026922a44707b05c1aba76343')
-
-conflicts=('libdivecomputer')
-provides=('libdivecomputer')
-replaces=('libdivecomputer')
-
-build() {
-   cd "${srcdir}/${_pkgname}-${pkgver}"
-   autoreconf --install
-   ./configure \
-   --prefix=/usr \
-   --program-prefix=libdc- \
-
-   make
-}
-
-package() {
-   cd "${srcdir}/${_pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}" install
-}

Copied: subsurface-libdc/repos/community-x86_64/PKGBUILD (from rev 167948, 
subsurface-libdc/repos/community-testing-x86_64/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-03-23 00:13:19 UTC (rev 167949)
@@ -0,0 +1,34 @@
+# $Id$
+# Contributor: Francois Boulogne 
+# Maintainer: Gaetan Bisson 
+
+pkgname=subsurface-libdc
+_pkgname=libdivecomputer-subsurface-branch
+pkgver=4.5.4
+pkgrel=1

[arch-commits] Commit in ntfs-3g/repos (6 files)

2016-03-22 Thread Gaetan Bisson
Date: Wednesday, March 23, 2016 @ 01:12:34
  Author: bisson
Revision: 262436

db-move: moved ntfs-3g from [testing] to [extra] (i686, x86_64)

Added:
  ntfs-3g/repos/extra-i686/PKGBUILD
(from rev 262435, ntfs-3g/repos/testing-i686/PKGBUILD)
  ntfs-3g/repos/extra-x86_64/PKGBUILD
(from rev 262435, ntfs-3g/repos/testing-x86_64/PKGBUILD)
Deleted:
  ntfs-3g/repos/extra-i686/PKGBUILD
  ntfs-3g/repos/extra-x86_64/PKGBUILD
  ntfs-3g/repos/testing-i686/
  ntfs-3g/repos/testing-x86_64/

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-03-22 21:17:15 UTC (rev 262435)
+++ extra-i686/PKGBUILD 2016-03-23 00:12:34 UTC (rev 262436)
@@ -1,47 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson 
-# Contributor: Tom Gundersen 
-# Contributor: Ronald van Haren 
-# Contributor: Thomas B�chler 
-
-pkgname=ntfs-3g
-_pkgname=ntfs-3g_ntfsprogs
-pkgver=2015.3.14
-pkgrel=1
-pkgdesc='NTFS filesystem driver and utilities'
-url='http://www.tuxera.com/community/open-source-ntfs-3g/'
-arch=('i686' 'x86_64')
-license=('GPL2')
-depends=('util-linux' 'fuse')
-source=("http://tuxera.com/opensource/${_pkgname}-${pkgver}.tgz;)
-sha1sums=('0ebd9adffd5a6ddcfbacade6be8efe1eba4b1a08')
-
-conflicts=('ntfsprogs')
-provides=('ntfsprogs')
-replaces=('ntfsprogs')
-
-prepare() {
-   cd "${srcdir}/${_pkgname}-${pkgver}"
-   sed 's|$(DESTDIR)/sbin|$(DESTDIR)/usr/bin|' -i 
{ntfsprogs,src}/Makefile.in
-}
-
-build() {
-   cd "${srcdir}/${_pkgname}-${pkgver}"
-   ./configure \
-   --prefix=/usr \
-   --sbin=/usr/bin \
-   --mandir=/usr/share/man \
-   --disable-ldconfig \
-   --disable-static \
-   --with-fuse=external \
-   --enable-posix-acls \
-   --enable-extras \
-
-   make
-}
-
-package_ntfs-3g() {
-   cd "${srcdir}/${_pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}" rootbindir=/usr/bin rootsbindir=/usr/bin 
rootlibdir=/usr/lib install
-   ln -s /usr/bin/ntfs-3g "${pkgdir}/usr/bin/mount.ntfs"
-}

Copied: ntfs-3g/repos/extra-i686/PKGBUILD (from rev 262435, 
ntfs-3g/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-03-23 00:12:34 UTC (rev 262436)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Tom Gundersen 
+# Contributor: Ronald van Haren 
+# Contributor: Thomas B�chler 
+
+pkgname=ntfs-3g
+_pkgname=ntfs-3g_ntfsprogs
+pkgver=2016.2.22
+pkgrel=1
+pkgdesc='NTFS filesystem driver and utilities'
+url='http://www.tuxera.com/community/open-source-ntfs-3g/'
+arch=('i686' 'x86_64')
+license=('GPL2')
+depends=('util-linux' 'fuse')
+source=("http://tuxera.com/opensource/${_pkgname}-${pkgver}.tgz;)
+sha1sums=('382df40c366711003cf24d2342033c23e2580b42')
+
+conflicts=('ntfsprogs')
+provides=('ntfsprogs')
+replaces=('ntfsprogs')
+
+prepare() {
+   cd "${srcdir}/${_pkgname}-${pkgver}"
+   sed 's|$(DESTDIR)/sbin|$(DESTDIR)/usr/bin|' -i 
{ntfsprogs,src}/Makefile.in
+}
+
+build() {
+   cd "${srcdir}/${_pkgname}-${pkgver}"
+   ./configure \
+   --prefix=/usr \
+   --sbin=/usr/bin \
+   --mandir=/usr/share/man \
+   --disable-ldconfig \
+   --disable-static \
+   --with-fuse=external \
+   --enable-posix-acls \
+   --enable-extras \
+
+   make
+}
+
+package_ntfs-3g() {
+   cd "${srcdir}/${_pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" rootbindir=/usr/bin rootsbindir=/usr/bin 
rootlibdir=/usr/lib install
+   ln -s /usr/bin/ntfs-3g "${pkgdir}/usr/bin/mount.ntfs"
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-03-22 21:17:15 UTC (rev 262435)
+++ extra-x86_64/PKGBUILD   2016-03-23 00:12:34 UTC (rev 262436)
@@ -1,47 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson 
-# Contributor: Tom Gundersen 
-# Contributor: Ronald van Haren 
-# Contributor: Thomas B�chler 
-
-pkgname=ntfs-3g
-_pkgname=ntfs-3g_ntfsprogs
-pkgver=2015.3.14
-pkgrel=1
-pkgdesc='NTFS filesystem driver and utilities'
-url='http://www.tuxera.com/community/open-source-ntfs-3g/'
-arch=('i686' 'x86_64')
-license=('GPL2')
-depends=('util-linux' 'fuse')
-source=("http://tuxera.com/opensource/${_pkgname}-${pkgver}.tgz;)
-sha1sums=('0ebd9adffd5a6ddcfbacade6be8efe1eba4b1a08')
-
-conflicts=('ntfsprogs')
-provides=('ntfsprogs')
-replaces=('ntfsprogs')
-
-prepare() {
-   cd 

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

2016-03-22 Thread Gaetan Bisson
Date: Wednesday, March 23, 2016 @ 01:12:47
  Author: bisson
Revision: 167947

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

Added:
  partclone/repos/community-i686/PKGBUILD
(from rev 167946, partclone/repos/community-testing-i686/PKGBUILD)
  partclone/repos/community-x86_64/PKGBUILD
(from rev 167946, partclone/repos/community-testing-x86_64/PKGBUILD)
Deleted:
  partclone/repos/community-i686/PKGBUILD
  partclone/repos/community-testing-i686/
  partclone/repos/community-testing-x86_64/
  partclone/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-03-22 21:58:54 UTC (rev 167946)
+++ community-i686/PKGBUILD 2016-03-23 00:12:47 UTC (rev 167947)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Jonathan Steel 
-# Contrinutor: Dan Serban
-# Contributor: Franz Burgmann
-# Contributor: Todd Partridge (Gen2ly)
-# Contributor: Ivan Sichmann Freitas
-
-pkgname=partclone
-pkgver=0.2.87
-pkgrel=1
-pkgdesc="Utilities to save and restore used blocks on a partition"
-arch=('i686' 'x86_64')
-url="http://partclone.org;
-license=('GPL')
-depends=('progsreiserfs' 'ntfs-3g' 'nilfs-utils')
-source=(http://partclone.nchc.org.tw/download/testing/${pkgname}_$pkgver.orig.tar.gz)
-md5sums=('e06ffe1bf5ef463937ecb9ac2f38d4fe')
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure --prefix=/usr --enable-extfs --enable-reiserfs --enable-fat \
---enable-hfsp --enable-btrfs --enable-ncursesw --enable-ntfs \
---enable-exfat --enable-f2fs --enable-minix --enable-nilfs2 --enable-xfs \
---sbindir=/usr/bin
-
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  make PREFIX=/usr DESTDIR="$pkgdir" install
-}

Copied: partclone/repos/community-i686/PKGBUILD (from rev 167946, 
partclone/repos/community-testing-i686/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-03-23 00:12:47 UTC (rev 167947)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Jonathan Steel 
+# Contrinutor: Dan Serban
+# Contributor: Franz Burgmann
+# Contributor: Todd Partridge (Gen2ly)
+# Contributor: Ivan Sichmann Freitas
+
+pkgname=partclone
+pkgver=0.2.87
+pkgrel=2
+pkgdesc="Utilities to save and restore used blocks on a partition"
+arch=('i686' 'x86_64')
+url="http://partclone.org;
+license=('GPL')
+depends=('progsreiserfs' 'ntfs-3g' 'nilfs-utils')
+source=(http://partclone.nchc.org.tw/download/testing/${pkgname}_$pkgver.orig.tar.gz)
+md5sums=('e06ffe1bf5ef463937ecb9ac2f38d4fe')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr --enable-extfs --enable-reiserfs --enable-fat \
+--enable-hfsp --enable-btrfs --enable-ncursesw --enable-ntfs \
+--enable-exfat --enable-f2fs --enable-minix --enable-nilfs2 --enable-xfs \
+--sbindir=/usr/bin
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make PREFIX=/usr DESTDIR="$pkgdir" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-03-22 21:58:54 UTC (rev 167946)
+++ community-x86_64/PKGBUILD   2016-03-23 00:12:47 UTC (rev 167947)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Jonathan Steel 
-# Contrinutor: Dan Serban
-# Contributor: Franz Burgmann
-# Contributor: Todd Partridge (Gen2ly)
-# Contributor: Ivan Sichmann Freitas
-
-pkgname=partclone
-pkgver=0.2.87
-pkgrel=1
-pkgdesc="Utilities to save and restore used blocks on a partition"
-arch=('i686' 'x86_64')
-url="http://partclone.org;
-license=('GPL')
-depends=('progsreiserfs' 'ntfs-3g' 'nilfs-utils')
-source=(http://partclone.nchc.org.tw/download/testing/${pkgname}_$pkgver.orig.tar.gz)
-md5sums=('e06ffe1bf5ef463937ecb9ac2f38d4fe')
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure --prefix=/usr --enable-extfs --enable-reiserfs --enable-fat \
---enable-hfsp --enable-btrfs --enable-ncursesw --enable-ntfs \
---enable-exfat --enable-f2fs --enable-minix --enable-nilfs2 --enable-xfs \
---sbindir=/usr/bin
-
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  make PREFIX=/usr DESTDIR="$pkgdir" install
-}

Copied: partclone/repos/community-x86_64/PKGBUILD (from rev 167946, 
partclone/repos/community-testing-x86_64/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-03-23 00:12:47 UTC (rev 167947)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Jonathan Steel 
+# Contrinutor: Dan Serban
+# Contributor: Franz Burgmann
+# Contributor: Todd Partridge (Gen2ly)
+# Contributor: Ivan 

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

2016-03-22 Thread Gaetan Bisson
Date: Tuesday, March 22, 2016 @ 22:58:52
  Author: bisson
Revision: 167944

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

Added:
  subsurface/repos/community-testing-i686/
  subsurface/repos/community-testing-i686/PKGBUILD
(from rev 167943, subsurface/repos/community-staging-i686/PKGBUILD)
  subsurface/repos/community-testing-i686/install
(from rev 167943, subsurface/repos/community-staging-i686/install)
  subsurface/repos/community-testing-x86_64/
  subsurface/repos/community-testing-x86_64/PKGBUILD
(from rev 167943, subsurface/repos/community-staging-x86_64/PKGBUILD)
  subsurface/repos/community-testing-x86_64/install
(from rev 167943, subsurface/repos/community-staging-x86_64/install)
Deleted:
  subsurface/repos/community-staging-i686/
  subsurface/repos/community-staging-x86_64/

---+
 community-testing-i686/PKGBUILD   |   41 
 community-testing-i686/install|   11 +
 community-testing-x86_64/PKGBUILD |   41 
 community-testing-x86_64/install  |   11 +
 4 files changed, 104 insertions(+)

Copied: subsurface/repos/community-testing-i686/PKGBUILD (from rev 167943, 
subsurface/repos/community-staging-i686/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2016-03-22 21:58:52 UTC (rev 167944)
@@ -0,0 +1,41 @@
+# $Id$
+# Contributor: Francois Boulogne 
+# Maintainer: Gaetan Bisson 
+
+pkgname=subsurface
+_pkgname=Subsurface
+pkgver=4.5.4
+pkgrel=1
+pkgdesc='Divelog program'
+url='http://subsurface-divelog.org/'
+license=('GPL2')
+arch=('i686' 'x86_64')
+makedepends=('cmake' 'asciidoc')
+depends=('libzip' 'libxml2' 'libxslt' 'sqlite' 'libusb' 'libgit2'
+ 'subsurface-libdc' 'subsurface-marble'
+ 'qt5-connectivity' 'grantlee-qt5')
+source=("http://subsurface-divelog.org/downloads/${_pkgname}-${pkgver}.tgz;)
+sha1sums=('e4ff548171b0a317a1f3f762bde2f62fd2152088')
+
+install=install
+
+prepare() {
+   cd "${srcdir}/${_pkgname}-${pkgver}"
+   sed 's:
+
+pkgname=subsurface
+_pkgname=Subsurface
+pkgver=4.5.4
+pkgrel=1
+pkgdesc='Divelog program'
+url='http://subsurface-divelog.org/'
+license=('GPL2')
+arch=('i686' 'x86_64')
+makedepends=('cmake' 'asciidoc')
+depends=('libzip' 'libxml2' 'libxslt' 'sqlite' 'libusb' 'libgit2'
+ 'subsurface-libdc' 'subsurface-marble'
+ 'qt5-connectivity' 'grantlee-qt5')
+source=("http://subsurface-divelog.org/downloads/${_pkgname}-${pkgver}.tgz;)
+sha1sums=('e4ff548171b0a317a1f3f762bde2f62fd2152088')
+
+install=install
+
+prepare() {
+   cd "${srcdir}/${_pkgname}-${pkgver}"
+   sed 's:

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

2016-03-22 Thread Gaetan Bisson
Date: Tuesday, March 22, 2016 @ 22:58:53
  Author: bisson
Revision: 167945

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

Added:
  subsurface-marble/repos/community-testing-i686/
  subsurface-marble/repos/community-testing-i686/PKGBUILD
(from rev 167944, subsurface-marble/repos/community-staging-i686/PKGBUILD)
  subsurface-marble/repos/community-testing-x86_64/
  subsurface-marble/repos/community-testing-x86_64/PKGBUILD
(from rev 167944, subsurface-marble/repos/community-staging-x86_64/PKGBUILD)
Deleted:
  subsurface-marble/repos/community-staging-i686/
  subsurface-marble/repos/community-staging-x86_64/

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

Copied: subsurface-marble/repos/community-testing-i686/PKGBUILD (from rev 
167944, subsurface-marble/repos/community-staging-i686/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2016-03-22 21:58:53 UTC (rev 167945)
@@ -0,0 +1,51 @@
+# $Id$
+# Contributor: Francois Boulogne 
+# Maintainer: Gaetan Bisson 
+
+pkgname=subsurface-marble
+_pkgname=marble-subsurface-branch
+pkgver=4.5.4
+pkgrel=1
+pkgdesc='Virtual Globe'
+url='http://git.subsurface-divelog.org/'
+license=('GPL' 'LGPL' 'FDL')
+arch=('i686' 'x86_64')
+makedepends=('cmake')
+depends=('qt5-'{script,svg,tools,webkit} 'marble-data')
+source=("http://subsurface-divelog.org/downloads/${_pkgname}-${pkgver}.tgz;)
+sha1sums=('a244fd261c087bd96d6d96d474fcf824f13323eb')
+
+build() {
+   cd "${srcdir}/${_pkgname}-${pkgver}"
+   cmake \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DQT5BUILD=ON \
+   -DQTONLY=ON \
+   -DBUILD_MARBLE_APPS=OFF \
+   -DBUILD_MARBLE_EXAMPLES=OFF \
+   -DBUILD_MARBLE_TESTS=OFF \
+   -DBUILD_MARBLE_TOOLS=OFF \
+   -DBUILD_TESTING=OFF \
+   -DWITH_DESIGNER_PLUGIN=OFF \
+   -DBUILD_WITH_DBUS=OFF \
+   .
+}
+
+package() {
+   cd "${srcdir}/${_pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+
+   cd "${pkgdir}/usr"
+   mv include subsurface
+   install -d include
+   mv subsurface include
+rm -fr share/{appdata,icons}
+
+   # Provided by marble-data, avoids conflicts.
+   rm share/marble/cmake/FindMarble.cmake
+   rm -fr share/marble/data
+
+   # Conflicts with libastro
+   rm lib/libastro.so{,.1,.0.17.20}
+}

Copied: subsurface-marble/repos/community-testing-x86_64/PKGBUILD (from rev 
167944, subsurface-marble/repos/community-staging-x86_64/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2016-03-22 21:58:53 UTC (rev 167945)
@@ -0,0 +1,51 @@
+# $Id$
+# Contributor: Francois Boulogne 
+# Maintainer: Gaetan Bisson 
+
+pkgname=subsurface-marble
+_pkgname=marble-subsurface-branch
+pkgver=4.5.4
+pkgrel=1
+pkgdesc='Virtual Globe'
+url='http://git.subsurface-divelog.org/'
+license=('GPL' 'LGPL' 'FDL')
+arch=('i686' 'x86_64')
+makedepends=('cmake')
+depends=('qt5-'{script,svg,tools,webkit} 'marble-data')
+source=("http://subsurface-divelog.org/downloads/${_pkgname}-${pkgver}.tgz;)
+sha1sums=('a244fd261c087bd96d6d96d474fcf824f13323eb')
+
+build() {
+   cd "${srcdir}/${_pkgname}-${pkgver}"
+   cmake \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DQT5BUILD=ON \
+   -DQTONLY=ON \
+   -DBUILD_MARBLE_APPS=OFF \
+   -DBUILD_MARBLE_EXAMPLES=OFF \
+   -DBUILD_MARBLE_TESTS=OFF \
+   -DBUILD_MARBLE_TOOLS=OFF \
+   -DBUILD_TESTING=OFF \
+   -DWITH_DESIGNER_PLUGIN=OFF \
+   -DBUILD_WITH_DBUS=OFF \
+   .
+}
+
+package() {
+   cd "${srcdir}/${_pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+
+   cd "${pkgdir}/usr"
+   mv include subsurface
+   install -d include
+   mv subsurface include
+rm -fr share/{appdata,icons}
+
+   # Provided by marble-data, avoids conflicts.
+   rm share/marble/cmake/FindMarble.cmake
+   rm -fr share/marble/data
+
+   # Conflicts with libastro
+   rm lib/libastro.so{,.1,.0.17.20}
+}


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

2016-03-22 Thread Gaetan Bisson
Date: Tuesday, March 22, 2016 @ 22:58:54
  Author: bisson
Revision: 167946

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

Added:
  subsurface-libdc/repos/community-testing-i686/
  subsurface-libdc/repos/community-testing-i686/PKGBUILD
(from rev 167945, subsurface-libdc/repos/community-staging-i686/PKGBUILD)
  subsurface-libdc/repos/community-testing-x86_64/
  subsurface-libdc/repos/community-testing-x86_64/PKGBUILD
(from rev 167945, subsurface-libdc/repos/community-staging-x86_64/PKGBUILD)
Deleted:
  subsurface-libdc/repos/community-staging-i686/
  subsurface-libdc/repos/community-staging-x86_64/

---+
 community-testing-i686/PKGBUILD   |   34 ++
 community-testing-x86_64/PKGBUILD |   34 ++
 2 files changed, 68 insertions(+)

Copied: subsurface-libdc/repos/community-testing-i686/PKGBUILD (from rev 
167945, subsurface-libdc/repos/community-staging-i686/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2016-03-22 21:58:54 UTC (rev 167946)
@@ -0,0 +1,34 @@
+# $Id$
+# Contributor: Francois Boulogne 
+# Maintainer: Gaetan Bisson 
+
+pkgname=subsurface-libdc
+_pkgname=libdivecomputer-subsurface-branch
+pkgver=4.5.4
+pkgrel=1
+pkgdesc='Library for communication with dive computers'
+url='http://git.subsurface-divelog.org/'
+license=('LGPL')
+arch=('i686' 'x86_64')
+source=("http://subsurface-divelog.org/downloads/${_pkgname}-${pkgver}.tgz;)
+sha1sums=('fc9e7bee669b03475c2556797f640eea8fa7a3d0')
+
+conflicts=('libdivecomputer')
+provides=('libdivecomputer')
+replaces=('libdivecomputer')
+
+build() {
+   cd "${srcdir}/${_pkgname}-${pkgver}"
+   autoreconf --install
+   ./configure \
+   --prefix=/usr \
+   --program-prefix=libdc- \
+   --disable-examples # chokes on dctool_parse for now
+
+   make
+}
+
+package() {
+   cd "${srcdir}/${_pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+}

Copied: subsurface-libdc/repos/community-testing-x86_64/PKGBUILD (from rev 
167945, subsurface-libdc/repos/community-staging-x86_64/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2016-03-22 21:58:54 UTC (rev 167946)
@@ -0,0 +1,34 @@
+# $Id$
+# Contributor: Francois Boulogne 
+# Maintainer: Gaetan Bisson 
+
+pkgname=subsurface-libdc
+_pkgname=libdivecomputer-subsurface-branch
+pkgver=4.5.4
+pkgrel=1
+pkgdesc='Library for communication with dive computers'
+url='http://git.subsurface-divelog.org/'
+license=('LGPL')
+arch=('i686' 'x86_64')
+source=("http://subsurface-divelog.org/downloads/${_pkgname}-${pkgver}.tgz;)
+sha1sums=('fc9e7bee669b03475c2556797f640eea8fa7a3d0')
+
+conflicts=('libdivecomputer')
+provides=('libdivecomputer')
+replaces=('libdivecomputer')
+
+build() {
+   cd "${srcdir}/${_pkgname}-${pkgver}"
+   autoreconf --install
+   ./configure \
+   --prefix=/usr \
+   --program-prefix=libdc- \
+   --disable-examples # chokes on dctool_parse for now
+
+   make
+}
+
+package() {
+   cd "${srcdir}/${_pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+}


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

2016-03-22 Thread Gaetan Bisson
Date: Tuesday, March 22, 2016 @ 22:55:49
  Author: bisson
Revision: 167943

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

Added:
  subsurface/repos/community-staging-i686/
  subsurface/repos/community-staging-i686/PKGBUILD
(from rev 167942, subsurface/trunk/PKGBUILD)
  subsurface/repos/community-staging-i686/install
(from rev 167942, subsurface/trunk/install)
  subsurface/repos/community-staging-x86_64/
  subsurface/repos/community-staging-x86_64/PKGBUILD
(from rev 167942, subsurface/trunk/PKGBUILD)
  subsurface/repos/community-staging-x86_64/install
(from rev 167942, subsurface/trunk/install)

---+
 community-staging-i686/PKGBUILD   |   41 
 community-staging-i686/install|   11 +
 community-staging-x86_64/PKGBUILD |   41 
 community-staging-x86_64/install  |   11 +
 4 files changed, 104 insertions(+)

Copied: subsurface/repos/community-staging-i686/PKGBUILD (from rev 167942, 
subsurface/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-22 21:55:49 UTC (rev 167943)
@@ -0,0 +1,41 @@
+# $Id$
+# Contributor: Francois Boulogne 
+# Maintainer: Gaetan Bisson 
+
+pkgname=subsurface
+_pkgname=Subsurface
+pkgver=4.5.4
+pkgrel=1
+pkgdesc='Divelog program'
+url='http://subsurface-divelog.org/'
+license=('GPL2')
+arch=('i686' 'x86_64')
+makedepends=('cmake' 'asciidoc')
+depends=('libzip' 'libxml2' 'libxslt' 'sqlite' 'libusb' 'libgit2'
+ 'subsurface-libdc' 'subsurface-marble'
+ 'qt5-connectivity' 'grantlee-qt5')
+source=("http://subsurface-divelog.org/downloads/${_pkgname}-${pkgver}.tgz;)
+sha1sums=('e4ff548171b0a317a1f3f762bde2f62fd2152088')
+
+install=install
+
+prepare() {
+   cd "${srcdir}/${_pkgname}-${pkgver}"
+   sed 's:
+
+pkgname=subsurface
+_pkgname=Subsurface
+pkgver=4.5.4
+pkgrel=1
+pkgdesc='Divelog program'
+url='http://subsurface-divelog.org/'
+license=('GPL2')
+arch=('i686' 'x86_64')
+makedepends=('cmake' 'asciidoc')
+depends=('libzip' 'libxml2' 'libxslt' 'sqlite' 'libusb' 'libgit2'
+ 'subsurface-libdc' 'subsurface-marble'
+ 'qt5-connectivity' 'grantlee-qt5')
+source=("http://subsurface-divelog.org/downloads/${_pkgname}-${pkgver}.tgz;)
+sha1sums=('e4ff548171b0a317a1f3f762bde2f62fd2152088')
+
+install=install
+
+prepare() {
+   cd "${srcdir}/${_pkgname}-${pkgver}"
+   sed 's:

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

2016-03-22 Thread Gaetan Bisson
Date: Tuesday, March 22, 2016 @ 22:55:23
  Author: bisson
Revision: 167942

upstream update

Modified:
  subsurface/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-22 20:35:20 UTC (rev 167941)
+++ PKGBUILD2016-03-22 21:55:23 UTC (rev 167942)
@@ -4,7 +4,7 @@
 
 pkgname=subsurface
 _pkgname=Subsurface
-pkgver=4.5.3
+pkgver=4.5.4
 pkgrel=1
 pkgdesc='Divelog program'
 url='http://subsurface-divelog.org/'
@@ -15,7 +15,7 @@
  'subsurface-libdc' 'subsurface-marble'
  'qt5-connectivity' 'grantlee-qt5')
 source=("http://subsurface-divelog.org/downloads/${_pkgname}-${pkgver}.tgz;)
-sha1sums=('46981e8ecf4c51094851ee089f4725c3c0f47b62')
+sha1sums=('e4ff548171b0a317a1f3f762bde2f62fd2152088')
 
 install=install
 


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

2016-03-22 Thread Jan de Groot
Date: Tuesday, March 22, 2016 @ 22:17:10
  Author: jgc
Revision: 262434

upgpkg: nautilus 3.19.93-1

Modified:
  nautilus/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-22 21:14:43 UTC (rev 262433)
+++ PKGBUILD2016-03-22 21:17:10 UTC (rev 262434)
@@ -3,7 +3,7 @@
 
 pkgbase=nautilus
 pkgname=(nautilus libnautilus-extension)
-pkgver=3.18.5
+pkgver=3.19.93
 pkgrel=1
 pkgdesc="GNOME file manager"
 arch=(i686 x86_64)
@@ -10,15 +10,12 @@
 license=(GPL)
 depends=(libexif gnome-desktop exempi gvfs desktop-file-utils dconf 
  libtracker-sparql nautilus-sendto)
-makedepends=(intltool gobject-introspection python packagekit)
+makedepends=(intltool gobject-introspection python packagekit python2)
 url="http://www.gnome.org;
 options=('!emptydirs')
 
source=(http://download.gnome.org/sources/$pkgbase/${pkgver:0:4}/$pkgbase-$pkgver.tar.xz)
-sha256sums=('60a927c0522b4cced9d8f62baed2ee5e2fd4305be4523eb5bc44805971a6cc15')
+sha256sums=('5aa3aa4e07bb4d66e884c7cc89968e657cabe9df0c4d3419a487a6303478d912')
 
-prepare() {
-  cd $pkgbase-$pkgver
-}
 
 build() {
   cd $pkgbase-$pkgver
@@ -26,8 +23,9 @@
   --localstatedir=/var --disable-static \
   --libexecdir=/usr/lib/nautilus \
   --disable-update-mimedb \
-  --disable-schemas-compile
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' -e 's/if test 
"$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then/  
func_append compile_command " -Wl,-O1,--as-needed"\n  func_append 
finalize_command " -Wl,-O1,--as-needed"\n\0/' libtool
+  --disable-schemas-compile \
+  --disable-selinux
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
   make
 }
 


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

2016-03-22 Thread Jan de Groot
Date: Tuesday, March 22, 2016 @ 22:17:15
  Author: jgc
Revision: 262435

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  nautilus/repos/gnome-unstable-i686/
  nautilus/repos/gnome-unstable-i686/PKGBUILD
(from rev 262434, nautilus/trunk/PKGBUILD)
  nautilus/repos/gnome-unstable-i686/nautilus.install
(from rev 262434, nautilus/trunk/nautilus.install)
  nautilus/repos/gnome-unstable-x86_64/
  nautilus/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 262434, nautilus/trunk/PKGBUILD)
  nautilus/repos/gnome-unstable-x86_64/nautilus.install
(from rev 262434, nautilus/trunk/nautilus.install)

+
 gnome-unstable-i686/PKGBUILD   |   54 +++
 gnome-unstable-i686/nautilus.install   |   14 
 gnome-unstable-x86_64/PKGBUILD |   54 +++
 gnome-unstable-x86_64/nautilus.install |   14 
 4 files changed, 136 insertions(+)

Copied: nautilus/repos/gnome-unstable-i686/PKGBUILD (from rev 262434, 
nautilus/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2016-03-22 21:17:15 UTC (rev 262435)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgbase=nautilus
+pkgname=(nautilus libnautilus-extension)
+pkgver=3.19.93
+pkgrel=1
+pkgdesc="GNOME file manager"
+arch=(i686 x86_64)
+license=(GPL)
+depends=(libexif gnome-desktop exempi gvfs desktop-file-utils dconf 
+ libtracker-sparql nautilus-sendto)
+makedepends=(intltool gobject-introspection python packagekit python2)
+url="http://www.gnome.org;
+options=('!emptydirs')
+source=(http://download.gnome.org/sources/$pkgbase/${pkgver:0:4}/$pkgbase-$pkgver.tar.xz)
+sha256sums=('5aa3aa4e07bb4d66e884c7cc89968e657cabe9df0c4d3419a487a6303478d912')
+
+
+build() {
+  cd $pkgbase-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-static \
+  --libexecdir=/usr/lib/nautilus \
+  --disable-update-mimedb \
+  --disable-schemas-compile \
+  --disable-selinux
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package_nautilus() {
+  depends+=(libnautilus-extension)
+  groups=(gnome)
+  install=nautilus.install
+
+  cd $pkgbase-$pkgver
+  make DESTDIR="$pkgdir" install
+
+### Split libnautilus-extension
+  cd ..
+  mkdir -p n-e/usr/{lib,share}
+  mv "$pkgdir"/usr/include n-e/usr
+  mv "$pkgdir"/usr/lib/{girepository-1.0,pkgconfig} n-e/usr/lib
+  mv "$pkgdir"/usr/lib/libnautilus-extension.so* n-e/usr/lib
+  mv "$pkgdir"/usr/share/{gir-1.0,gtk-doc} n-e/usr/share
+}
+
+package_libnautilus-extension() {
+  pkgdesc="Library for extending the $pkgdesc"
+  depends=(gtk3)
+
+  mv n-e/* "$pkgdir"
+}

Copied: nautilus/repos/gnome-unstable-i686/nautilus.install (from rev 262434, 
nautilus/trunk/nautilus.install)
===
--- gnome-unstable-i686/nautilus.install(rev 0)
+++ gnome-unstable-i686/nautilus.install2016-03-22 21:17:15 UTC (rev 
262435)
@@ -0,0 +1,14 @@
+post_install() {
+  glib-compile-schemas /usr/share/glib-2.0/schemas
+  update-desktop-database -q
+  gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+  update-mime-database /usr/share/mime > /dev/null
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Copied: nautilus/repos/gnome-unstable-x86_64/PKGBUILD (from rev 262434, 
nautilus/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2016-03-22 21:17:15 UTC (rev 262435)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgbase=nautilus
+pkgname=(nautilus libnautilus-extension)
+pkgver=3.19.93
+pkgrel=1
+pkgdesc="GNOME file manager"
+arch=(i686 x86_64)
+license=(GPL)
+depends=(libexif gnome-desktop exempi gvfs desktop-file-utils dconf 
+ libtracker-sparql nautilus-sendto)
+makedepends=(intltool gobject-introspection python packagekit python2)
+url="http://www.gnome.org;
+options=('!emptydirs')
+source=(http://download.gnome.org/sources/$pkgbase/${pkgver:0:4}/$pkgbase-$pkgver.tar.xz)
+sha256sums=('5aa3aa4e07bb4d66e884c7cc89968e657cabe9df0c4d3419a487a6303478d912')
+
+
+build() {
+  cd $pkgbase-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-static \
+  --libexecdir=/usr/lib/nautilus \
+  --disable-update-mimedb \
+  --disable-schemas-compile \
+  --disable-selinux
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package_nautilus() {
+  depends+=(libnautilus-extension)
+  groups=(gnome)
+  install=nautilus.install
+
+  cd $pkgbase-$pkgver
+  make DESTDIR="$pkgdir" install
+
+### 

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

2016-03-22 Thread Jan de Groot
Date: Tuesday, March 22, 2016 @ 22:14:43
  Author: jgc
Revision: 262433

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  evolution/repos/gnome-unstable-i686/
  evolution/repos/gnome-unstable-i686/PKGBUILD
(from rev 262432, evolution/trunk/PKGBUILD)
  evolution/repos/gnome-unstable-i686/evolution.install
(from rev 262432, evolution/trunk/evolution.install)
  evolution/repos/gnome-unstable-x86_64/
  evolution/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 262432, evolution/trunk/PKGBUILD)
  evolution/repos/gnome-unstable-x86_64/evolution.install
(from rev 262432, evolution/trunk/evolution.install)

-+
 gnome-unstable-i686/PKGBUILD|   70 ++
 gnome-unstable-i686/evolution.install   |   19 
 gnome-unstable-x86_64/PKGBUILD  |   70 ++
 gnome-unstable-x86_64/evolution.install |   19 
 4 files changed, 178 insertions(+)

Copied: evolution/repos/gnome-unstable-i686/PKGBUILD (from rev 262432, 
evolution/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2016-03-22 21:14:43 UTC (rev 262433)
@@ -0,0 +1,70 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgbase=evolution
+pkgname=('evolution' 'evolution-bogofilter' 'evolution-spamassassin')
+pkgver=3.20.0
+pkgrel=1
+pkgdesc="Manage your email, contacts and schedule"
+arch=(i686 x86_64)
+license=(GPL)
+makedepends=(intltool itstool docbook-xsl networkmanager bogofilter 
spamassassin highlight gnome-desktop evolution-data-server libcanberra libpst 
libytnef desktop-file-utils dconf gtkspell3 webkitgtk libcryptui gnome-common 
gtk-doc)
+options=('!emptydirs')
+url=https://wiki.gnome.org/Apps/Evolution
+source=(https://download.gnome.org/sources/$pkgbase/${pkgver:0:4}/$pkgbase-$pkgver.tar.xz)
+sha256sums=('6bd0cc0c077363a29026a5194062d981d0b0aa9ffea9e7ffcec1f1fdbe9b502e')
+
+prepare() {
+  cd $pkgname-$pkgver
+}
+
+build() {
+  cd $pkgbase-$pkgver
+
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var \
+  --libexecdir=/usr/lib \
+  --enable-nss=yes \
+  --with-openldap=yes \
+  --enable-smime=yes \
+  --disable-schemas-compile \
+  --disable-autoar \
+  --enable-gtk-doc
+  
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+package_evolution() {
+  depends=(gnome-desktop evolution-data-server libcanberra libpst libytnef
+   desktop-file-utils dconf gtkspell3 libcryptui webkitgtk)
+  install=evolution.install
+  optdepends=('highlight: text highlight plugin'
+  'evolution-spamassassin: Spamassassin spam check plugin'
+  'evolution-bogofilter: Bogofilter spam check plugin')
+  groups=('gnome-extra')
+
+  cd $pkgbase-$pkgver
+  make DESTDIR="$pkgdir" install
+
+  mkdir ../plugins
+  mv "$pkgdir/usr/lib/evolution/modules/module-bogofilter.so" ../plugins/
+  mv "$pkgdir/usr/lib/evolution/modules/module-spamassassin.so" ../plugins/
+  mv "$pkgdir/usr/share/appdata/evolution-bogofilter.metainfo.xml" ../plugins/
+  mv "$pkgdir/usr/share/appdata/evolution-spamassassin.metainfo.xml" 
../plugins/
+}
+
+
+package_evolution-bogofilter() {
+  depends=("evolution=$pkgver" 'bogofilter')
+  install -Dm755 plugins/module-bogofilter.so 
"$pkgdir/usr/lib/evolution/modules/module-bogofilter.so"
+  install -Dm644 plugins/evolution-bogofilter.metainfo.xml 
"$pkgdir/usr/share/appdata/evolution-bogofilter.metainfo.xml"
+}
+
+package_evolution-spamassassin() {
+  depends=("evolution=$pkgver" 'spamassassin')
+  install -Dm755 plugins/module-spamassassin.so 
"$pkgdir/usr/lib/evolution/modules/module-spamassassin.so"
+  install -Dm644 plugins/evolution-spamassassin.metainfo.xml 
"$pkgdir/usr/share/appdata/evolution-spamassassin.metainfo.xml"
+}

Copied: evolution/repos/gnome-unstable-i686/evolution.install (from rev 262432, 
evolution/trunk/evolution.install)
===
--- gnome-unstable-i686/evolution.install   (rev 0)
+++ gnome-unstable-i686/evolution.install   2016-03-22 21:14:43 UTC (rev 
262433)
@@ -0,0 +1,19 @@
+post_install() {
+  glib-compile-schemas /usr/share/glib-2.0/schemas
+  update-desktop-database -q
+  gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+}
+
+pre_upgrade() {
+  if [ -f /usr/share/gconf/schemas/evolution.schemas ]; then
+gconfpkg --uninstall evolution
+  fi
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Copied: evolution/repos/gnome-unstable-x86_64/PKGBUILD (from rev 262432, 
evolution/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD   

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

2016-03-22 Thread Jan de Groot
Date: Tuesday, March 22, 2016 @ 22:14:37
  Author: jgc
Revision: 262432

upgpkg: evolution 3.20.0-1

Modified:
  evolution/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-22 21:00:46 UTC (rev 262431)
+++ PKGBUILD2016-03-22 21:14:37 UTC (rev 262432)
@@ -4,7 +4,7 @@
 
 pkgbase=evolution
 pkgname=('evolution' 'evolution-bogofilter' 'evolution-spamassassin')
-pkgver=3.18.5.2
+pkgver=3.20.0
 pkgrel=1
 pkgdesc="Manage your email, contacts and schedule"
 arch=(i686 x86_64)
@@ -13,7 +13,7 @@
 options=('!emptydirs')
 url=https://wiki.gnome.org/Apps/Evolution
 
source=(https://download.gnome.org/sources/$pkgbase/${pkgver:0:4}/$pkgbase-$pkgver.tar.xz)
-sha256sums=('3331bee17fc660df9e83f0e070cc2494a9335108e400c889f3a2edf0c293a643')
+sha256sums=('6bd0cc0c077363a29026a5194062d981d0b0aa9ffea9e7ffcec1f1fdbe9b502e')
 
 prepare() {
   cd $pkgname-$pkgver
@@ -32,7 +32,7 @@
   --disable-autoar \
   --enable-gtk-doc
   
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' -e 's/if test 
"$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then/  
func_append compile_command " -Wl,-O1,--as-needed"\n  func_append 
finalize_command " -Wl,-O1,--as-needed"\n\0/' libtool
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
 
   make
 }


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

2016-03-22 Thread Jan de Groot
Date: Tuesday, March 22, 2016 @ 22:00:40
  Author: jgc
Revision: 262430

upgpkg: ekiga 4.0.1-18

Modified:
  ekiga/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-22 20:49:36 UTC (rev 262429)
+++ PKGBUILD2016-03-22 21:00:40 UTC (rev 262430)
@@ -4,7 +4,7 @@
 
 pkgname=ekiga
 pkgver=4.0.1
-pkgrel=17
+pkgrel=18
 pkgdesc="VOIP/Videoconferencing app with full SIP and H.323 support 
(GnomeMeeting expanded and renamed)"
 url="http://www.ekiga.org;
 license=(GPL)
@@ -22,6 +22,7 @@
   ./configure --prefix=/usr --sysconfdir=/etc \
   --localstatedir=/var --disable-schemas-install \
   --disable-scrollkeeper --enable-dbus --enable-avahi
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
   make
 }
 


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

2016-03-22 Thread Jan de Groot
Date: Tuesday, March 22, 2016 @ 22:00:46
  Author: jgc
Revision: 262431

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  ekiga/repos/gnome-unstable-i686/
  ekiga/repos/gnome-unstable-i686/PKGBUILD
(from rev 262430, ekiga/trunk/PKGBUILD)
  ekiga/repos/gnome-unstable-i686/ekiga.install
(from rev 262430, ekiga/trunk/ekiga.install)
  ekiga/repos/gnome-unstable-x86_64/
  ekiga/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 262430, ekiga/trunk/PKGBUILD)
  ekiga/repos/gnome-unstable-x86_64/ekiga.install
(from rev 262430, ekiga/trunk/ekiga.install)

-+
 gnome-unstable-i686/PKGBUILD|   36 ++
 gnome-unstable-i686/ekiga.install   |   22 
 gnome-unstable-x86_64/PKGBUILD  |   36 ++
 gnome-unstable-x86_64/ekiga.install |   22 
 4 files changed, 116 insertions(+)

Copied: ekiga/repos/gnome-unstable-i686/PKGBUILD (from rev 262430, 
ekiga/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2016-03-22 21:00:46 UTC (rev 262431)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Tom K 
+
+pkgname=ekiga
+pkgver=4.0.1
+pkgrel=18
+pkgdesc="VOIP/Videoconferencing app with full SIP and H.323 support 
(GnomeMeeting expanded and renamed)"
+url="http://www.ekiga.org;
+license=(GPL)
+arch=(i686 x86_64)
+depends=('opal' 'boost-libs' 'libxv' 'libnotify' 'avahi' 'gtk2' 'gconf')
+makedepends=('intltool' 'gnome-doc-utils' 'evolution-data-server' 'boost' 
'gnome-icon-theme')
+optdepends=('evolution-data-server: Evolution integration')
+options=(!emptydirs)
+install=ekiga.install
+source=(https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('5f4f491c9496cf65ba057a9345d6bb0278f4eca07bcda5baeecf50bfcd9a4a3b')
+
+build() {
+  cd "$pkgname-$pkgver"
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-schemas-install \
+  --disable-scrollkeeper --enable-dbus --enable-avahi
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 install
+
+  install -m755 -d "$pkgdir/usr/share/gconf/schemas"
+  gconf-merge-schema "$pkgdir/usr/share/gconf/schemas/$pkgname.schemas" 
--domain ekiga "$pkgdir"/etc/gconf/schemas/*.schemas
+  rm -f "$pkgdir"/etc/gconf/schemas/*.schemas
+}

Copied: ekiga/repos/gnome-unstable-i686/ekiga.install (from rev 262430, 
ekiga/trunk/ekiga.install)
===
--- gnome-unstable-i686/ekiga.install   (rev 0)
+++ gnome-unstable-i686/ekiga.install   2016-03-22 21:00:46 UTC (rev 262431)
@@ -0,0 +1,22 @@
+pkgname=ekiga
+
+post_install() {
+  gconfpkg --install $pkgname
+  gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+}
+
+pre_upgrade() {
+  pre_remove $1
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  gconfpkg --uninstall $pkgname
+}
+
+post_remove() {
+  gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+}

Copied: ekiga/repos/gnome-unstable-x86_64/PKGBUILD (from rev 262430, 
ekiga/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2016-03-22 21:00:46 UTC (rev 262431)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Tom K 
+
+pkgname=ekiga
+pkgver=4.0.1
+pkgrel=18
+pkgdesc="VOIP/Videoconferencing app with full SIP and H.323 support 
(GnomeMeeting expanded and renamed)"
+url="http://www.ekiga.org;
+license=(GPL)
+arch=(i686 x86_64)
+depends=('opal' 'boost-libs' 'libxv' 'libnotify' 'avahi' 'gtk2' 'gconf')
+makedepends=('intltool' 'gnome-doc-utils' 'evolution-data-server' 'boost' 
'gnome-icon-theme')
+optdepends=('evolution-data-server: Evolution integration')
+options=(!emptydirs)
+install=ekiga.install
+source=(https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('5f4f491c9496cf65ba057a9345d6bb0278f4eca07bcda5baeecf50bfcd9a4a3b')
+
+build() {
+  cd "$pkgname-$pkgver"
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-schemas-install \
+  --disable-scrollkeeper --enable-dbus --enable-avahi
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 install
+
+  install -m755 -d "$pkgdir/usr/share/gconf/schemas"
+  gconf-merge-schema "$pkgdir/usr/share/gconf/schemas/$pkgname.schemas" 
--domain ekiga "$pkgdir"/etc/gconf/schemas/*.schemas

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

2016-03-22 Thread Anatol Pomozov
Date: Tuesday, March 22, 2016 @ 21:35:20
  Author: anatolik
Revision: 167941

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

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

+
 /PKGBUILD  |  154 +++
 /tarantool.install |   44 ++
 community-i686/PKGBUILD|   77 -
 community-i686/tarantool.install   |   22 -
 community-x86_64/PKGBUILD  |   77 -
 community-x86_64/tarantool.install |   22 -
 6 files changed, 198 insertions(+), 198 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-03-22 20:34:44 UTC (rev 167940)
+++ community-i686/PKGBUILD 2016-03-22 20:35:20 UTC (rev 167941)
@@ -1,77 +0,0 @@
-# $Id$
-# Maintainer: Anatol Pomozov 
-
-pkgname=tarantool
-_commit=7051de689bb397afd72f313b011ba7287d9c86b0
-pkgver=1.6.8.r537
-pkgrel=1
-pkgdesc='Lua application server integrated with a database management system'
-arch=(i686 x86_64)
-url='http://www.tarantool.org'
-license=(BSD)
-depends=(readline ncurses zlib libyaml)
-makedepends=(git cmake systemd)
-checkdepends=(python2-daemon python2-gevent python2-tarantool)
-install=tarantool.install
-source=(git://github.com/tarantool/tarantool.git#commit=$_commit
-git://github.com/tarantool/luajit.git
-git://github.com/tarantool/msgpuck.git
-git://github.com/rtsisyk/luafun.git
-git://github.com/tarantool/sophia.git
-git://github.com/tarantool/test-run.git
-git://github.com/tarantool/small.git)
-sha1sums=('SKIP'
-  'SKIP'
-  'SKIP'
-  'SKIP'
-  'SKIP'
-  'SKIP'
-  'SKIP')
-
-pkgver() {
-  cd tarantool
-  git describe | sed 's/^v//; s/-/.r/; s/-.*//'
-}
-
-build() {
-  cd tarantool
-
-  # tarantool uses git submodule, handle this
-  git submodule init
-  git config -f .gitmodules 'submodule.third_party/luajit.url' "$srcdir/luajit"
-  git config -f .gitmodules 'submodule.src/lib/msgpuck.url' "$srcdir/msgpuck"
-  git config -f .gitmodules 'submodule.third_party/luafun.url' "$srcdir/luafun"
-  git config -f .gitmodules 'submodule.sophia.url' "$srcdir/sophia"
-  git config -f .gitmodules 'submodule.test-run.url' "$srcdir/test-run"
-  git config -f .gitmodules 'submodule.src/lib/small.url' "$srcdir/small"
-  git submodule sync
-  git submodule update
-
-  cmake \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_BINDIR=/usr/bin \
--DCMAKE_INSTALL_SYSCONFDIR=/etc \
--DCMAKE_INSTALL_LIBDIR=/usr/lib \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_SKIP_RPATH=ON \
--DENABLE_BUNDLED_LIBYAML:BOOL=OFF \
--DENABLE_BACKTRACE:BOOL=ON \
--DWITH_SYSTEMD:BOOL=ON \
--DENABLE_DIST:BOOL=ON \
-.
-
-  make
-}
-
-check() {
-  cd tarantool/test
-  ./test-run.py --suite box
-}
-
-package() {
-  cd tarantool
-  make install DESTDIR="$pkgdir"
-
-  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-  rm -r "$pkgdir/var/run"
-}

Copied: tarantool/repos/community-i686/PKGBUILD (from rev 167940, 
tarantool/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-03-22 20:35:20 UTC (rev 167941)
@@ -0,0 +1,77 @@
+# $Id$
+# Maintainer: Anatol Pomozov 
+
+pkgname=tarantool
+_commit=d52bda2ca5ca18a351d74a09bc51877a03cf8f65
+pkgver=1.6.8.r583
+pkgrel=1
+pkgdesc='Lua application server integrated with a database management system'
+arch=(i686 x86_64)
+url='http://www.tarantool.org'
+license=(BSD)
+depends=(readline ncurses zlib libyaml)
+makedepends=(git cmake systemd)
+checkdepends=(python2-daemon python2-gevent python2-tarantool)
+install=tarantool.install
+source=(git://github.com/tarantool/tarantool.git#commit=$_commit
+git://github.com/tarantool/luajit.git
+git://github.com/tarantool/msgpuck.git
+git://github.com/rtsisyk/luafun.git
+git://github.com/tarantool/sophia.git
+git://github.com/tarantool/test-run.git
+git://github.com/tarantool/small.git)
+sha1sums=('SKIP'
+  'SKIP'
+  'SKIP'
+  'SKIP'
+  'SKIP'
+  'SKIP'
+  'SKIP')
+
+pkgver() {
+  cd 

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

2016-03-22 Thread Jan de Groot
Date: Tuesday, March 22, 2016 @ 21:34:01
  Author: jgc
Revision: 262425

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  gvfs/repos/gnome-unstable-i686/
  gvfs/repos/gnome-unstable-i686/PKGBUILD
(from rev 262424, gvfs/trunk/PKGBUILD)
  gvfs/repos/gnome-unstable-i686/gvfs-module.install
(from rev 262424, gvfs/trunk/gvfs-module.install)
  gvfs/repos/gnome-unstable-i686/gvfs-nfs.install
(from rev 262424, gvfs/trunk/gvfs-nfs.install)
  gvfs/repos/gnome-unstable-i686/gvfs-smb.install
(from rev 262424, gvfs/trunk/gvfs-smb.install)
  gvfs/repos/gnome-unstable-i686/gvfs.install
(from rev 262424, gvfs/trunk/gvfs.install)
  gvfs/repos/gnome-unstable-x86_64/
  gvfs/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 262424, gvfs/trunk/PKGBUILD)
  gvfs/repos/gnome-unstable-x86_64/gvfs-module.install
(from rev 262424, gvfs/trunk/gvfs-module.install)
  gvfs/repos/gnome-unstable-x86_64/gvfs-nfs.install
(from rev 262424, gvfs/trunk/gvfs-nfs.install)
  gvfs/repos/gnome-unstable-x86_64/gvfs-smb.install
(from rev 262424, gvfs/trunk/gvfs-smb.install)
  gvfs/repos/gnome-unstable-x86_64/gvfs.install
(from rev 262424, gvfs/trunk/gvfs.install)

---+
 gnome-unstable-i686/PKGBUILD  |  145 
 gnome-unstable-i686/gvfs-module.install   |7 +
 gnome-unstable-i686/gvfs-nfs.install  |8 +
 gnome-unstable-i686/gvfs-smb.install  |   12 ++
 gnome-unstable-i686/gvfs.install  |   14 ++
 gnome-unstable-x86_64/PKGBUILD|  145 
 gnome-unstable-x86_64/gvfs-module.install |7 +
 gnome-unstable-x86_64/gvfs-nfs.install|8 +
 gnome-unstable-x86_64/gvfs-smb.install|   12 ++
 gnome-unstable-x86_64/gvfs.install|   14 ++
 10 files changed, 372 insertions(+)

Copied: gvfs/repos/gnome-unstable-i686/PKGBUILD (from rev 262424, 
gvfs/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2016-03-22 20:34:01 UTC (rev 262425)
@@ -0,0 +1,145 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgbase=gvfs
+pkgname=(gvfs gvfs-{smb,afc,gphoto2,goa,mtp,nfs,google})
+pkgdesc="Virtual filesystem implementation for GIO"
+pkgver=1.28.0
+pkgrel=1
+arch=(i686 x86_64)
+license=(LGPL)
+depends=(avahi dconf fuse libarchive libcdio-paranoia libsoup udisks2 libsecret
+ libbluray libgudev gcr)
+makedepends=(dbus intltool libgphoto2 libimobiledevice smbclient docbook-xsl
+ gtk3 libmtp gnome-online-accounts libnfs libgdata)
+url="http://www.gnome.org;
+groups=(gnome)
+source=(https://download.gnome.org/sources/$pkgbase/${pkgver:0:4}/$pkgbase-$pkgver.tar.xz)
+sha256sums=('cf72fc0adf0ca702ead5b3fab3c1fa46b09678eb7c1290de7e30bb7cbaf5f704')
+
+prepare() {
+  cd "$pkgbase-$pkgver"
+}
+
+build() {
+  cd "$pkgbase-$pkgver"
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-static \
+  --libexecdir=/usr/lib/gvfs \
+  --with-bash-completion-dir=/usr/share/bash-completion/completions
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package_gvfs() {
+  replaces=(gvfs-{obexftp,afp})
+  optdepends=('gvfs-afc: AFC (mobile devices) support'
+  'gvfs-smb: SMB/CIFS (Windows client) support'
+  'gvfs-gphoto2: gphoto2 (PTP camera/MTP media player) support'
+  'gvfs-mtp: MTP device support'
+  'gvfs-goa: gnome-online-accounts (e.g. OwnCloud) support'
+  'gvfs-nfs: NFS support'
+  'gvfs-google: Google Drive support'
+  'gtk3: Recent files support')
+  install=gvfs.install
+
+  cd "$pkgbase-$pkgver"
+  sed -e 's/^am__append_4/#am__append_4/' \
+  -e 's/^am__append_5/#am__append_5/' \
+  -e 's/^am__append_6/#am__append_6/' \
+  -e 's/^am__append_7/#am__append_7/' \
+  -i monitor/Makefile
+  make DESTDIR="$pkgdir" install
+
+  cd "$pkgdir"
+  rm usr/lib/gvfs/gvfsd-{smb,smb-browse,afc,gphoto2,mtp,nfs,google}
+  rm usr/share/gvfs/mounts/{smb,smb-browse,afc,gphoto2,mtp,nfs,google}.mount
+  rm usr/share/glib-2.0/schemas/org.gnome.system.smb.gschema.xml
+  rm usr/share/GConf/gsettings/gvfs-smb.convert
+}
+
+package_gvfs-smb() {
+  pkgdesc+=" (SMB/CIFS backend; Windows client)"
+  depends=("gvfs=$pkgver" smbclient)
+  install=gvfs-smb.install
+
+  cd "$pkgbase-$pkgver/daemon"
+  install -m755 -d "$pkgdir/usr/lib/gvfs"
+  install -m755 -d "$pkgdir/usr/share/gvfs/mounts"
+
+  install -m755 .libs/gvfsd-smb{,-browse} "$pkgdir/usr/lib/gvfs/"
+  install -m644 smb{,-browse}.mount "$pkgdir/usr/share/gvfs/mounts/"
+
+  install -Dm644 org.gnome.system.smb.gschema.xml \
+"$pkgdir/usr/share/glib-2.0/schemas/org.gnome.system.smb.gschema.xml"
+  install -Dm644 gvfs-smb.convert \
+"$pkgdir/usr/share/GConf/gsettings/gvfs-smb.convert"
+}
+

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

2016-03-22 Thread Jan de Groot
Date: Tuesday, March 22, 2016 @ 21:33:51
  Author: jgc
Revision: 262424

upgpkg: gvfs 1.28.0-1

Modified:
  gvfs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-22 20:28:32 UTC (rev 262423)
+++ PKGBUILD2016-03-22 20:33:51 UTC (rev 262424)
@@ -4,7 +4,7 @@
 pkgbase=gvfs
 pkgname=(gvfs gvfs-{smb,afc,gphoto2,goa,mtp,nfs,google})
 pkgdesc="Virtual filesystem implementation for GIO"
-pkgver=1.26.3
+pkgver=1.28.0
 pkgrel=1
 arch=(i686 x86_64)
 license=(LGPL)
@@ -15,7 +15,7 @@
 url="http://www.gnome.org;
 groups=(gnome)
 
source=(https://download.gnome.org/sources/$pkgbase/${pkgver:0:4}/$pkgbase-$pkgver.tar.xz)
-sha256sums=('a70f75fa60d66f3f478c0c8aec43d0e43455a8cc75a4dfa8029e51c816401b4a')
+sha256sums=('cf72fc0adf0ca702ead5b3fab3c1fa46b09678eb7c1290de7e30bb7cbaf5f704')
 
 prepare() {
   cd "$pkgbase-$pkgver"
@@ -27,6 +27,7 @@
   --localstatedir=/var --disable-static \
   --libexecdir=/usr/lib/gvfs \
   --with-bash-completion-dir=/usr/share/bash-completion/completions
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
   make
 }
 


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

2016-03-22 Thread Jan de Groot
Date: Tuesday, March 22, 2016 @ 21:28:32
  Author: jgc
Revision: 262423

archrelease: copy trunk to gnome-unstable-any

Added:
  gnome-weather/repos/gnome-unstable-any/
  gnome-weather/repos/gnome-unstable-any/PKGBUILD
(from rev 262422, gnome-weather/trunk/PKGBUILD)
  gnome-weather/repos/gnome-unstable-any/gnome-weather.install
(from rev 262422, gnome-weather/trunk/gnome-weather.install)

---+
 PKGBUILD  |   27 +++
 gnome-weather.install |   12 
 2 files changed, 39 insertions(+)

Copied: gnome-weather/repos/gnome-unstable-any/PKGBUILD (from rev 262422, 
gnome-weather/trunk/PKGBUILD)
===
--- gnome-unstable-any/PKGBUILD (rev 0)
+++ gnome-unstable-any/PKGBUILD 2016-03-22 20:28:32 UTC (rev 262423)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=gnome-weather
+pkgver=3.20.0
+pkgrel=1
+pkgdesc="Access current weather conditions and forecasts"
+arch=(any)
+url="https://www.gnome.org/;
+license=(GPL)
+depends=(gtk3 gjs libgweather geoclue2)
+makedepends=(intltool gobject-introspection)
+groups=(gnome-extra)
+install=gnome-weather.install
+source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgname}/${pkgver:0:4}/${pkgname}-${pkgver}.tar.xz)
+sha256sums=('3d56c59715656c9031b42f4803ee22776a954cd0587f465590ea0f43cec5b46a')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Copied: gnome-weather/repos/gnome-unstable-any/gnome-weather.install (from rev 
262422, gnome-weather/trunk/gnome-weather.install)
===
--- gnome-unstable-any/gnome-weather.install(rev 0)
+++ gnome-unstable-any/gnome-weather.install2016-03-22 20:28:32 UTC (rev 
262423)
@@ -0,0 +1,12 @@
+post_install() {
+  glib-compile-schemas /usr/share/glib-2.0/schemas
+  gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}


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

2016-03-22 Thread Jan de Groot
Date: Tuesday, March 22, 2016 @ 21:28:28
  Author: jgc
Revision: 262422

upgpkg: gnome-weather 3.20.0-1

Modified:
  gnome-weather/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-22 20:26:27 UTC (rev 262421)
+++ PKGBUILD2016-03-22 20:28:28 UTC (rev 262422)
@@ -2,18 +2,18 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgname=gnome-weather
-pkgver=3.18.1
+pkgver=3.20.0
 pkgrel=1
 pkgdesc="Access current weather conditions and forecasts"
 arch=(any)
 url="https://www.gnome.org/;
 license=(GPL)
-depends=(gtk3 gjs libgweather)
+depends=(gtk3 gjs libgweather geoclue2)
 makedepends=(intltool gobject-introspection)
 groups=(gnome-extra)
 install=gnome-weather.install
 
source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgname}/${pkgver:0:4}/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('d0cbe0ee6e9f9332e30836d72c9a462ecc908a97402943c33cd6e61d08323fdf')
+sha256sums=('3d56c59715656c9031b42f4803ee22776a954cd0587f465590ea0f43cec5b46a')
 
 build() {
   cd $pkgname-$pkgver


[arch-commits] Commit in gnome-system-monitor/repos (6 files)

2016-03-22 Thread Jan de Groot
Date: Tuesday, March 22, 2016 @ 21:26:27
  Author: jgc
Revision: 262421

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  gnome-system-monitor/repos/gnome-unstable-i686/
  gnome-system-monitor/repos/gnome-unstable-i686/PKGBUILD
(from rev 262420, gnome-system-monitor/trunk/PKGBUILD)
  gnome-system-monitor/repos/gnome-unstable-i686/gnome-system-monitor.install
(from rev 262420, gnome-system-monitor/trunk/gnome-system-monitor.install)
  gnome-system-monitor/repos/gnome-unstable-x86_64/
  gnome-system-monitor/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 262420, gnome-system-monitor/trunk/PKGBUILD)
  gnome-system-monitor/repos/gnome-unstable-x86_64/gnome-system-monitor.install
(from rev 262420, gnome-system-monitor/trunk/gnome-system-monitor.install)

+
 gnome-unstable-i686/PKGBUILD   |   30 +++
 gnome-unstable-i686/gnome-system-monitor.install   |   11 ++
 gnome-unstable-x86_64/PKGBUILD |   30 +++
 gnome-unstable-x86_64/gnome-system-monitor.install |   11 ++
 4 files changed, 82 insertions(+)

Copied: gnome-system-monitor/repos/gnome-unstable-i686/PKGBUILD (from rev 
262420, gnome-system-monitor/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2016-03-22 20:26:27 UTC (rev 262421)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgname=gnome-system-monitor
+pkgver=3.20.0
+pkgrel=1
+pkgdesc="A system monitor for GNOME"
+arch=(i686 x86_64)
+license=('GPL')
+depends=('libgtop' 'gtkmm3' 'librsvg' 'systemd' 'libwnck3')
+makedepends=('itstool' 'docbook-xsl' 'intltool' 'desktop-file-utils' 
'appdata-tools')
+options=(!emptydirs)
+url="http://www.gnome.org;
+groups=('gnome')
+install=gnome-system-monitor.install
+source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('00981b6334ab35cfa186013f1ea0f815bc472c49da4b6764dd716f87e4b49033')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--libexecdir=/usr/lib/$pkgname --enable-systemd --enable-wnck
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Copied: 
gnome-system-monitor/repos/gnome-unstable-i686/gnome-system-monitor.install 
(from rev 262420, gnome-system-monitor/trunk/gnome-system-monitor.install)
===
--- gnome-unstable-i686/gnome-system-monitor.install
(rev 0)
+++ gnome-unstable-i686/gnome-system-monitor.install2016-03-22 20:26:27 UTC 
(rev 262421)
@@ -0,0 +1,11 @@
+post_install() {
+glib-compile-schemas /usr/share/glib-2.0/schemas
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}

Copied: gnome-system-monitor/repos/gnome-unstable-x86_64/PKGBUILD (from rev 
262420, gnome-system-monitor/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2016-03-22 20:26:27 UTC (rev 262421)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgname=gnome-system-monitor
+pkgver=3.20.0
+pkgrel=1
+pkgdesc="A system monitor for GNOME"
+arch=(i686 x86_64)
+license=('GPL')
+depends=('libgtop' 'gtkmm3' 'librsvg' 'systemd' 'libwnck3')
+makedepends=('itstool' 'docbook-xsl' 'intltool' 'desktop-file-utils' 
'appdata-tools')
+options=(!emptydirs)
+url="http://www.gnome.org;
+groups=('gnome')
+install=gnome-system-monitor.install
+source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('00981b6334ab35cfa186013f1ea0f815bc472c49da4b6764dd716f87e4b49033')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--libexecdir=/usr/lib/$pkgname --enable-systemd --enable-wnck
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Copied: 
gnome-system-monitor/repos/gnome-unstable-x86_64/gnome-system-monitor.install 
(from rev 262420, gnome-system-monitor/trunk/gnome-system-monitor.install)
===
--- gnome-unstable-x86_64/gnome-system-monitor.install  
(rev 0)
+++ gnome-unstable-x86_64/gnome-system-monitor.install  2016-03-22 20:26:27 UTC 
(rev 262421)
@@ -0,0 +1,11 @@
+post_install() {
+glib-compile-schemas /usr/share/glib-2.0/schemas
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}


[arch-commits] Commit in gnome-system-monitor/trunk (PKGBUILD)

2016-03-22 Thread Jan de Groot
Date: Tuesday, March 22, 2016 @ 21:26:22
  Author: jgc
Revision: 262420

upgpkg: gnome-system-monitor 3.20.0-1

Modified:
  gnome-system-monitor/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-22 20:23:22 UTC (rev 262419)
+++ PKGBUILD2016-03-22 20:26:22 UTC (rev 262420)
@@ -3,8 +3,8 @@
 # Contributor: Jan de Groot 
 
 pkgname=gnome-system-monitor
-pkgver=3.18.2
-pkgrel=2
+pkgver=3.20.0
+pkgrel=1
 pkgdesc="A system monitor for GNOME"
 arch=(i686 x86_64)
 license=('GPL')
@@ -15,7 +15,7 @@
 groups=('gnome')
 install=gnome-system-monitor.install
 
source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('9e4a5d6aefa362448f301907fe07f3889e3dd7824922ceef8c48a7808be3e666')
+sha256sums=('00981b6334ab35cfa186013f1ea0f815bc472c49da4b6764dd716f87e4b49033')
 
 build() {
   cd $pkgname-$pkgver


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

2016-03-22 Thread Jan de Groot
Date: Tuesday, March 22, 2016 @ 21:23:22
  Author: jgc
Revision: 262419

archrelease: copy trunk to gnome-unstable-any

Added:
  gnome-backgrounds/repos/gnome-unstable-any/
  gnome-backgrounds/repos/gnome-unstable-any/PKGBUILD
(from rev 262418, gnome-backgrounds/trunk/PKGBUILD)

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

Copied: gnome-backgrounds/repos/gnome-unstable-any/PKGBUILD (from rev 262418, 
gnome-backgrounds/trunk/PKGBUILD)
===
--- gnome-unstable-any/PKGBUILD (rev 0)
+++ gnome-unstable-any/PKGBUILD 2016-03-22 20:23:22 UTC (rev 262419)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=gnome-backgrounds
+pkgver=3.20
+pkgrel=1
+pkgdesc="Background images and data for GNOME"
+arch=(any)
+makedepends=('intltool')
+url="http://www.gnome.org;
+license=('GPL')
+groups=('gnome')
+source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('d66c6e165e5c16b79ee4ab83102fa73fa20ce4e14191036ee68e8e82cf537127')
+
+build() {
+  cd "$pkgname-$pkgver"
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}


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

2016-03-22 Thread Jan de Groot
Date: Tuesday, March 22, 2016 @ 21:23:17
  Author: jgc
Revision: 262418

upgpkg: gnome-backgrounds 3.20-1

Modified:
  gnome-backgrounds/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-22 20:21:47 UTC (rev 262417)
+++ PKGBUILD2016-03-22 20:23:17 UTC (rev 262418)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot 
 
 pkgname=gnome-backgrounds
-pkgver=3.18.0
+pkgver=3.20
 pkgrel=1
 pkgdesc="Background images and data for GNOME"
 arch=(any)
@@ -11,7 +11,7 @@
 license=('GPL')
 groups=('gnome')
 
source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('aa560f0e5f12a308dd36aaac2fff32916abd61d42f47b4bc42c8c7011bf2a7b9')
+sha256sums=('d66c6e165e5c16b79ee4ab83102fa73fa20ce4e14191036ee68e8e82cf537127')
 
 build() {
   cd "$pkgname-$pkgver"


[arch-commits] Commit in gnome-shell-extensions/repos (3 files)

2016-03-22 Thread Jan de Groot
Date: Tuesday, March 22, 2016 @ 21:21:47
  Author: jgc
Revision: 262417

archrelease: copy trunk to gnome-unstable-any

Added:
  gnome-shell-extensions/repos/gnome-unstable-any/
  gnome-shell-extensions/repos/gnome-unstable-any/PKGBUILD
(from rev 262416, gnome-shell-extensions/trunk/PKGBUILD)
  gnome-shell-extensions/repos/gnome-unstable-any/gnome-shell-extensions.install
(from rev 262416, 
gnome-shell-extensions/trunk/gnome-shell-extensions.install)

+
 PKGBUILD   |   28 
 gnome-shell-extensions.install |   11 +++
 2 files changed, 39 insertions(+)

Copied: gnome-shell-extensions/repos/gnome-unstable-any/PKGBUILD (from rev 
262416, gnome-shell-extensions/trunk/PKGBUILD)
===
--- gnome-unstable-any/PKGBUILD (rev 0)
+++ gnome-unstable-any/PKGBUILD 2016-03-22 20:21:47 UTC (rev 262417)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=gnome-shell-extensions
+pkgver=3.20.0
+pkgrel=1
+pkgdesc="Extensions for GNOME shell, including classic mode"
+arch=(any)
+url="https://wiki.gnome.org/Projects/GnomeShell/Extensions;
+license=(GPL2)
+depends=(gnome-shell)
+makedepends=(intltool)
+optdepends=('nautilus: gnome-classic session')
+install=gnome-shell-extensions.install
+groups=('gnome')
+source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('cc97e8627245038821c9f61e684a56c4dfc08c5f86e38d7a6750da0fc40acc87')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --libexecdir=/usr/lib/gnome-session 
--enable-extensions=all
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Copied: 
gnome-shell-extensions/repos/gnome-unstable-any/gnome-shell-extensions.install 
(from rev 262416, gnome-shell-extensions/trunk/gnome-shell-extensions.install)
===
--- gnome-unstable-any/gnome-shell-extensions.install   
(rev 0)
+++ gnome-unstable-any/gnome-shell-extensions.install   2016-03-22 20:21:47 UTC 
(rev 262417)
@@ -0,0 +1,11 @@
+post_install() {
+  glib-compile-schemas usr/share/glib-2.0/schemas
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}


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

2016-03-22 Thread Jelle van der Waa
Date: Tuesday, March 22, 2016 @ 20:52:29
  Author: jelle
Revision: 167939

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

Added:
  termite/repos/community-i686/PKGBUILD
(from rev 167938, termite/trunk/PKGBUILD)
  termite/repos/community-x86_64/PKGBUILD
(from rev 167938, termite/trunk/PKGBUILD)
Deleted:
  termite/repos/community-i686/PKGBUILD
  termite/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-22 19:52:15 UTC (rev 167938)
+++ community-i686/PKGBUILD 2016-03-22 19:52:29 UTC (rev 167939)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Daniel Micay 
-
-pkgname=('termite' 'termite-terminfo')
-pkgver=11
-pkgrel=2
-arch=('i686' 'x86_64')
-url="https://github.com/thestinger/termite/;
-license=('LGPL')
-makedepends=('git' 'vte3-ng' 'ncurses')
-source=("git://github.com/thestinger/termite#tag=v$pkgver")
-md5sums=('SKIP')
-
-build() {
-  cd $pkgbase
-  git submodule update --init
-  make
-}
-
-package_termite() {
-  pkgdesc="A simple VTE-based terminal"
-  depends=('vte3-ng' 'termite-terminfo')
-  backup=(etc/xdg/termite/config)
-
-  cd $pkgbase
-  make PREFIX=/usr DESTDIR="$pkgdir" install
-  rm -rf "$pkgdir/usr/share/terminfo"
-  install -Dm644 config "$pkgdir/etc/xdg/termite/config"
-}
-
-package_termite-terminfo() {
-  pkgdesc='Terminfo for Termite, a simple VTE-based terminal'
-
-  cd $pkgbase
-  install -d "$pkgdir/usr/share/terminfo"
-  tic -x termite.terminfo -o "$pkgdir/usr/share/terminfo"
-}

Copied: termite/repos/community-i686/PKGBUILD (from rev 167938, 
termite/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-03-22 19:52:29 UTC (rev 167939)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Daniel Micay 
+
+pkgname=('termite' 'termite-terminfo')
+pkgver=11
+pkgrel=3
+arch=('i686' 'x86_64')
+url="https://github.com/thestinger/termite/;
+license=('LGPL')
+makedepends=('git' 'vte3-ng' 'ncurses')
+source=("git://github.com/thestinger/termite#tag=v$pkgver")
+md5sums=('SKIP')
+
+build() {
+  cd $pkgbase
+  git submodule update --init
+  make
+}
+
+package_termite() {
+  pkgdesc="A simple VTE-based terminal"
+  depends=('vte3-ng' 'termite-terminfo')
+  backup=(etc/xdg/termite/config)
+
+  cd $pkgbase
+  make PREFIX=/usr DESTDIR="$pkgdir" install
+  rm -rf "$pkgdir/usr/share/terminfo"
+  install -Dm644 config "$pkgdir/etc/xdg/termite/config"
+}
+
+package_termite-terminfo() {
+  pkgdesc='Terminfo for Termite, a simple VTE-based terminal'
+
+  cd $pkgbase
+  install -d "$pkgdir/usr/share/terminfo"
+  tic -x termite.terminfo -o "$pkgdir/usr/share/terminfo"
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-03-22 19:52:15 UTC (rev 167938)
+++ community-x86_64/PKGBUILD   2016-03-22 19:52:29 UTC (rev 167939)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Daniel Micay 
-
-pkgname=('termite' 'termite-terminfo')
-pkgver=11
-pkgrel=2
-arch=('i686' 'x86_64')
-url="https://github.com/thestinger/termite/;
-license=('LGPL')
-makedepends=('git' 'vte3-ng' 'ncurses')
-source=("git://github.com/thestinger/termite#tag=v$pkgver")
-md5sums=('SKIP')
-
-build() {
-  cd $pkgbase
-  git submodule update --init
-  make
-}
-
-package_termite() {
-  pkgdesc="A simple VTE-based terminal"
-  depends=('vte3-ng' 'termite-terminfo')
-  backup=(etc/xdg/termite/config)
-
-  cd $pkgbase
-  make PREFIX=/usr DESTDIR="$pkgdir" install
-  rm -rf "$pkgdir/usr/share/terminfo"
-  install -Dm644 config "$pkgdir/etc/xdg/termite/config"
-}
-
-package_termite-terminfo() {
-  pkgdesc='Terminfo for Termite, a simple VTE-based terminal'
-
-  cd $pkgbase
-  install -d "$pkgdir/usr/share/terminfo"
-  tic -x termite.terminfo -o "$pkgdir/usr/share/terminfo"
-}

Copied: termite/repos/community-x86_64/PKGBUILD (from rev 167938, 
termite/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-03-22 19:52:29 UTC (rev 167939)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Daniel Micay 
+
+pkgname=('termite' 'termite-terminfo')
+pkgver=11
+pkgrel=3
+arch=('i686' 'x86_64')
+url="https://github.com/thestinger/termite/;
+license=('LGPL')
+makedepends=('git' 'vte3-ng' 'ncurses')
+source=("git://github.com/thestinger/termite#tag=v$pkgver")
+md5sums=('SKIP')
+
+build() {
+  cd $pkgbase
+  git submodule update --init
+  make
+}
+

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

2016-03-22 Thread Jelle van der Waa
Date: Tuesday, March 22, 2016 @ 20:49:13
  Author: jelle
Revision: 167936

upgpkg: python-pytz 2016.2-1

Modified:
  python-pytz/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-22 19:44:20 UTC (rev 167935)
+++ PKGBUILD2016-03-22 19:49:13 UTC (rev 167936)
@@ -4,7 +4,7 @@
 # Contributor: William Rea 
 
 pkgname=('python-pytz' 'python2-pytz')
-pkgver=2016.1
+pkgver=2016.2
 pkgrel=1
 arch=('any')
 url="http://pypi.python.org/pypi/pytz;
@@ -12,7 +12,7 @@
 makedepends=('python' 'python2')
 
source=(http://pypi.python.org/packages/source/p/pytz/pytz-$pkgver.tar.gz{,.asc})
 validpgpkeys=('C7ECC365AB6F255E1EB9BA1701FA998FBAC6374A')
-md5sums=('2c1b3cb491431ffa5f5c64d9d53ad329'
+md5sums=('18b3c555232aa8c9319d84871c453728'
  'SKIP')
 
 build(){


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

2016-03-22 Thread Jelle van der Waa
Date: Tuesday, March 22, 2016 @ 20:49:22
  Author: jelle
Revision: 167937

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-03-22 19:49:13 UTC (rev 167936)
+++ PKGBUILD2016-03-22 19:49:22 UTC (rev 167937)
@@ -1,58 +0,0 @@
-# Maintainer: Stefan Husmann 
-# Maintainer: Jelle van der Waa 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: William Rea 
-
-pkgname=('python-pytz' 'python2-pytz')
-pkgver=2016.1
-pkgrel=1
-arch=('any')
-url="http://pypi.python.org/pypi/pytz;
-license=("MIT")
-makedepends=('python' 'python2')
-source=(http://pypi.python.org/packages/source/p/pytz/pytz-$pkgver.tar.gz{,.asc})
-validpgpkeys=('C7ECC365AB6F255E1EB9BA1701FA998FBAC6374A')
-md5sums=('2c1b3cb491431ffa5f5c64d9d53ad329'
- 'SKIP')
-
-build(){
-cd $srcdir
-cp -rf pytz-$pkgver pytz2-$pkgver
-}
-
-check(){
-cd $srcdir/pytz-$pkgver/pytz/tests
-
-python3 test_tzinfo.py
-
-python2 test_tzinfo.py
-}
-
-package_python-pytz(){
-depends=('python')
-pkgdesc="Cross platform time zone library for Python"
-
-cd $srcdir/pytz-$pkgver
-
-# Fix locale https://github.com/ipython/ipython/issues/2057
-export LC_ALL=en_US.UTF-8
-
-python3 setup.py install --root=$pkgdir/
-
-install -D LICENSE.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-
-package_python2-pytz(){
-depends=('python2')
-pkgdesc="Cross platform time zone library for Python"
-
-cd $srcdir/pytz2-$pkgver
-
-# python 2 fix
-sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_' pytz/tzfile.py
-
-python2 setup.py install --root="$pkgdir/"
-
-install -D LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: python-pytz/repos/community-any/PKGBUILD (from rev 167936, 
python-pytz/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-03-22 19:49:22 UTC (rev 167937)
@@ -0,0 +1,58 @@
+# Maintainer: Stefan Husmann 
+# Maintainer: Jelle van der Waa 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: William Rea 
+
+pkgname=('python-pytz' 'python2-pytz')
+pkgver=2016.2
+pkgrel=1
+arch=('any')
+url="http://pypi.python.org/pypi/pytz;
+license=("MIT")
+makedepends=('python' 'python2')
+source=(http://pypi.python.org/packages/source/p/pytz/pytz-$pkgver.tar.gz{,.asc})
+validpgpkeys=('C7ECC365AB6F255E1EB9BA1701FA998FBAC6374A')
+md5sums=('18b3c555232aa8c9319d84871c453728'
+ 'SKIP')
+
+build(){
+cd $srcdir
+cp -rf pytz-$pkgver pytz2-$pkgver
+}
+
+check(){
+cd $srcdir/pytz-$pkgver/pytz/tests
+
+python3 test_tzinfo.py
+
+python2 test_tzinfo.py
+}
+
+package_python-pytz(){
+depends=('python')
+pkgdesc="Cross platform time zone library for Python"
+
+cd $srcdir/pytz-$pkgver
+
+# Fix locale https://github.com/ipython/ipython/issues/2057
+export LC_ALL=en_US.UTF-8
+
+python3 setup.py install --root=$pkgdir/
+
+install -D LICENSE.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+
+package_python2-pytz(){
+depends=('python2')
+pkgdesc="Cross platform time zone library for Python"
+
+cd $srcdir/pytz2-$pkgver
+
+# python 2 fix
+sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_' pytz/tzfile.py
+
+python2 setup.py install --root="$pkgdir/"
+
+install -D LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2016-03-22 Thread Jelle van der Waa
Date: Tuesday, March 22, 2016 @ 20:44:07
  Author: jelle
Revision: 167934

upgpkg: vte3-ng 0.44.0.a-1

Modified:
  vte3-ng/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-22 19:15:31 UTC (rev 167933)
+++ PKGBUILD2016-03-22 19:44:07 UTC (rev 167934)
@@ -2,7 +2,7 @@
 # Maintainer: Daniel Micay 
 
 pkgname=vte3-ng
-_basever=0.42.4
+_basever=0.44.0
 pkgver=$_basever.a
 pkgrel=1
 pkgdesc="Enhanced Virtual Terminal Emulator widget for use with GTK3"
@@ -9,11 +9,11 @@
 arch=('i686' 'x86_64')
 license=('LGPL')
 options=('!emptydirs')
-depends=('gtk3' 'vte-common')
+depends=('gtk3' 'vte-common' 'pcre2')
 makedepends=('intltool' 'gobject-introspection' 'gtk3' 'vala' 'gtk-doc' 
'gperf')
 url="https://github.com/thestinger/vte-ng;
 source=(https://github.com/thestinger/vte-ng/archive/$pkgver.tar.gz)
-sha256sums=('97f1572b1080614b9dcf261a8abe4c7bfd840f7dc91e9bb29ffe310525b28443')
+sha256sums=('bfa4f4148a63e8b730ab272792f55d03c8afa632bb5c28a440e1a5a8134c4b1b')
 provides=(vte3=$_basever vte3-select-text=$_basever)
 conflicts=(vte3 vte3-select-text)
 replaces=(vte3-select-text)


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

2016-03-22 Thread Jelle van der Waa
Date: Tuesday, March 22, 2016 @ 20:44:20
  Author: jelle
Revision: 167935

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

Added:
  vte3-ng/repos/community-i686/PKGBUILD
(from rev 167934, vte3-ng/trunk/PKGBUILD)
  vte3-ng/repos/community-x86_64/PKGBUILD
(from rev 167934, vte3-ng/trunk/PKGBUILD)
Deleted:
  vte3-ng/repos/community-i686/PKGBUILD
  vte3-ng/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-03-22 19:44:07 UTC (rev 167934)
+++ community-i686/PKGBUILD 2016-03-22 19:44:20 UTC (rev 167935)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Daniel Micay 
-
-pkgname=vte3-ng
-_basever=0.42.4
-pkgver=$_basever.a
-pkgrel=1
-pkgdesc="Enhanced Virtual Terminal Emulator widget for use with GTK3"
-arch=('i686' 'x86_64')
-license=('LGPL')
-options=('!emptydirs')
-depends=('gtk3' 'vte-common')
-makedepends=('intltool' 'gobject-introspection' 'gtk3' 'vala' 'gtk-doc' 
'gperf')
-url="https://github.com/thestinger/vte-ng;
-source=(https://github.com/thestinger/vte-ng/archive/$pkgver.tar.gz)
-sha256sums=('97f1572b1080614b9dcf261a8abe4c7bfd840f7dc91e9bb29ffe310525b28443')
-provides=(vte3=$_basever vte3-select-text=$_basever)
-conflicts=(vte3 vte3-select-text)
-replaces=(vte3-select-text)
-
-build() {
-  cd "vte-ng-$pkgver"
-  ./autogen.sh --prefix=/usr --sysconfdir=/etc \
-  --libexecdir=/usr/lib/vte \
-  --localstatedir=/var --disable-static \
-  --enable-introspection
-  make
-}
-
-package() {
-  cd "vte-ng-$pkgver"
-  make DESTDIR="$pkgdir" install
-
-  rm "$pkgdir/etc/profile.d/vte.sh"
-}

Copied: vte3-ng/repos/community-i686/PKGBUILD (from rev 167934, 
vte3-ng/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-03-22 19:44:20 UTC (rev 167935)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Daniel Micay 
+
+pkgname=vte3-ng
+_basever=0.44.0
+pkgver=$_basever.a
+pkgrel=1
+pkgdesc="Enhanced Virtual Terminal Emulator widget for use with GTK3"
+arch=('i686' 'x86_64')
+license=('LGPL')
+options=('!emptydirs')
+depends=('gtk3' 'vte-common' 'pcre2')
+makedepends=('intltool' 'gobject-introspection' 'gtk3' 'vala' 'gtk-doc' 
'gperf')
+url="https://github.com/thestinger/vte-ng;
+source=(https://github.com/thestinger/vte-ng/archive/$pkgver.tar.gz)
+sha256sums=('bfa4f4148a63e8b730ab272792f55d03c8afa632bb5c28a440e1a5a8134c4b1b')
+provides=(vte3=$_basever vte3-select-text=$_basever)
+conflicts=(vte3 vte3-select-text)
+replaces=(vte3-select-text)
+
+build() {
+  cd "vte-ng-$pkgver"
+  ./autogen.sh --prefix=/usr --sysconfdir=/etc \
+  --libexecdir=/usr/lib/vte \
+  --localstatedir=/var --disable-static \
+  --enable-introspection
+  make
+}
+
+package() {
+  cd "vte-ng-$pkgver"
+  make DESTDIR="$pkgdir" install
+
+  rm "$pkgdir/etc/profile.d/vte.sh"
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-03-22 19:44:07 UTC (rev 167934)
+++ community-x86_64/PKGBUILD   2016-03-22 19:44:20 UTC (rev 167935)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Daniel Micay 
-
-pkgname=vte3-ng
-_basever=0.42.4
-pkgver=$_basever.a
-pkgrel=1
-pkgdesc="Enhanced Virtual Terminal Emulator widget for use with GTK3"
-arch=('i686' 'x86_64')
-license=('LGPL')
-options=('!emptydirs')
-depends=('gtk3' 'vte-common')
-makedepends=('intltool' 'gobject-introspection' 'gtk3' 'vala' 'gtk-doc' 
'gperf')
-url="https://github.com/thestinger/vte-ng;
-source=(https://github.com/thestinger/vte-ng/archive/$pkgver.tar.gz)
-sha256sums=('97f1572b1080614b9dcf261a8abe4c7bfd840f7dc91e9bb29ffe310525b28443')
-provides=(vte3=$_basever vte3-select-text=$_basever)
-conflicts=(vte3 vte3-select-text)
-replaces=(vte3-select-text)
-
-build() {
-  cd "vte-ng-$pkgver"
-  ./autogen.sh --prefix=/usr --sysconfdir=/etc \
-  --libexecdir=/usr/lib/vte \
-  --localstatedir=/var --disable-static \
-  --enable-introspection
-  make
-}
-
-package() {
-  cd "vte-ng-$pkgver"
-  make DESTDIR="$pkgdir" install
-
-  rm "$pkgdir/etc/profile.d/vte.sh"
-}

Copied: vte3-ng/repos/community-x86_64/PKGBUILD (from rev 167934, 
vte3-ng/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-03-22 19:44:20 UTC (rev 167935)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Daniel Micay 
+
+pkgname=vte3-ng
+_basever=0.44.0
+pkgver=$_basever.a
+pkgrel=1

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

2016-03-22 Thread Sergej Pupykin
Date: Tuesday, March 22, 2016 @ 20:15:31
  Author: spupykin
Revision: 167933

archrelease: copy trunk to community-any

Added:
  phpmyadmin/repos/community-any/PKGBUILD
(from rev 167932, phpmyadmin/trunk/PKGBUILD)
Deleted:
  phpmyadmin/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-03-22 19:15:21 UTC (rev 167932)
+++ PKGBUILD2016-03-22 19:15:31 UTC (rev 167933)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Sergej Pupykin 
-# Contributor: tobias 
-# Contributor: Manolis Tzanidakis 
-# Contributor: Simon Lackerbauer 
-
-pkgname=phpmyadmin
-pkgver=4.5.5.1
-pkgrel=1
-pkgdesc='PHP and hence web-based tool to administrate MySQL over the WWW'
-arch=('any')
-url='http://www.phpmyadmin.net'
-license=('GPL')
-depends=('mariadb-clients' 'php')
-optdepends=('php-mcrypt: to use phpMyAdmin internal authentication')
-backup=(etc/webapps/phpmyadmin/config.inc.php)
-source=(https://files.phpmyadmin.net/phpMyAdmin/$pkgver/phpMyAdmin-$pkgver-all-languages.tar.xz)
-md5sums=('3b5fde694affef997edbf55f10f15832')
-
-package() {
-  _instdir="$pkgdir"/usr/share/webapps/phpMyAdmin
-  mkdir -p "$_instdir" "$pkgdir"/etc/webapps/phpmyadmin
-  cd "$_instdir"
-
-  cp -ra "$srcdir"/phpMyAdmin-$pkgver-all-languages/* .
-
-  ln -s /etc/webapps/phpmyadmin/config.inc.php "$_instdir"/config.inc.php
-  cp "$_instdir"/config.sample.inc.php 
"$pkgdir"/etc/webapps/phpmyadmin/config.inc.php
-}

Copied: phpmyadmin/repos/community-any/PKGBUILD (from rev 167932, 
phpmyadmin/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-03-22 19:15:31 UTC (rev 167933)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer:
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Sergej Pupykin 
+# Contributor: tobias 
+# Contributor: Manolis Tzanidakis 
+# Contributor: Simon Lackerbauer 
+
+pkgname=phpmyadmin
+pkgver=4.6.0
+pkgrel=1
+pkgdesc='PHP and hence web-based tool to administrate MySQL over the WWW'
+arch=('any')
+url='http://www.phpmyadmin.net'
+license=('GPL')
+depends=('mariadb-clients' 'php')
+optdepends=('php-mcrypt: to use phpMyAdmin internal authentication')
+backup=(etc/webapps/phpmyadmin/config.inc.php)
+source=(https://files.phpmyadmin.net/phpMyAdmin/$pkgver/phpMyAdmin-$pkgver-all-languages.tar.xz)
+md5sums=('1d4bb07731b7e6c3201e6b75c6c1f265')
+
+package() {
+  _instdir="$pkgdir"/usr/share/webapps/phpMyAdmin
+  mkdir -p "$_instdir" "$pkgdir"/etc/webapps/phpmyadmin
+  cd "$_instdir"
+
+  cp -ra "$srcdir"/phpMyAdmin-$pkgver-all-languages/* .
+
+  ln -s /etc/webapps/phpmyadmin/config.inc.php "$_instdir"/config.inc.php
+  cp "$_instdir"/config.sample.inc.php 
"$pkgdir"/etc/webapps/phpmyadmin/config.inc.php
+}


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

2016-03-22 Thread Sergej Pupykin
Date: Tuesday, March 22, 2016 @ 20:15:21
  Author: spupykin
Revision: 167932

upgpkg: phpmyadmin 4.6.0-1

upd

Modified:
  phpmyadmin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-22 19:12:27 UTC (rev 167931)
+++ PKGBUILD2016-03-22 19:15:21 UTC (rev 167932)
@@ -7,7 +7,7 @@
 # Contributor: Simon Lackerbauer 
 
 pkgname=phpmyadmin
-pkgver=4.5.5.1
+pkgver=4.6.0
 pkgrel=1
 pkgdesc='PHP and hence web-based tool to administrate MySQL over the WWW'
 arch=('any')
@@ -17,7 +17,7 @@
 optdepends=('php-mcrypt: to use phpMyAdmin internal authentication')
 backup=(etc/webapps/phpmyadmin/config.inc.php)
 
source=(https://files.phpmyadmin.net/phpMyAdmin/$pkgver/phpMyAdmin-$pkgver-all-languages.tar.xz)
-md5sums=('3b5fde694affef997edbf55f10f15832')
+md5sums=('1d4bb07731b7e6c3201e6b75c6c1f265')
 
 package() {
   _instdir="$pkgdir"/usr/share/webapps/phpMyAdmin


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

2016-03-22 Thread Sergej Pupykin
Date: Tuesday, March 22, 2016 @ 20:12:08
  Author: spupykin
Revision: 167930

upgpkg: mcabber 1.0.2-2

upd

Modified:
  mcabber/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-22 19:05:48 UTC (rev 167929)
+++ PKGBUILD2016-03-22 19:12:08 UTC (rev 167930)
@@ -5,7 +5,7 @@
 
 pkgname=mcabber
 pkgver=1.0.2
-pkgrel=1
+pkgrel=2
 pkgdesc="A small Jabber console client, includes features: SSL, PGP, MUC, UTF8"
 arch=('i686' 'x86_64')
 url="http://www.lilotux.net/~mikael/mcabber/;


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

2016-03-22 Thread Sergej Pupykin
Date: Tuesday, March 22, 2016 @ 20:12:27
  Author: spupykin
Revision: 167931

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-03-22 19:12:08 UTC (rev 167930)
+++ community-i686/PKGBUILD 2016-03-22 19:12:27 UTC (rev 167931)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Thorsten Töpper 
-# Contributor:  3ED 
-
-pkgname=mcabber
-pkgver=1.0.2
-pkgrel=1
-pkgdesc="A small Jabber console client, includes features: SSL, PGP, MUC, UTF8"
-arch=('i686' 'x86_64')
-url="http://www.lilotux.net/~mikael/mcabber/;
-license=('GPL')
-depends=('ncurses' 'glib2' 'loudmouth' 'gpgme' 'libotr' 'aspell')
-makedepends=('pkg-config')
-source=(http://www.lilotux.net/~mikael/mcabber/files/$pkgname-${pkgver/_/-}.tar.bz2)
-md5sums=('3e264b15aa41f4ae43c8f9c87c6fbb43')
-
-build() {
-  cd "${srcdir}"/$pkgname-${pkgver/_/-}
-  ./configure --prefix=/usr --enable-hgcset \
-  --mandir=/usr/share/man \
-  --enable-aspell --enable-otr
-  make
-}
-
-package() {
-  cd "${srcdir}"/$pkgname-${pkgver/_/-}
-
-  make DESTDIR="${pkgdir}" install
-  mkdir -p "${pkgdir}"/usr/share/mcabber/example
-  msg "Copying mcabberrc.example to usr/share/mcabber/example/mcabberrc"
-  cp -a "${srcdir}"/$pkgname-${pkgver/_/-}/mcabberrc.example \
-   "${pkgdir}"/usr/share/mcabber/example/mcabberrc
-}
-

Copied: mcabber/repos/community-i686/PKGBUILD (from rev 167930, 
mcabber/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-03-22 19:12:27 UTC (rev 167931)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Thorsten Töpper 
+# Contributor:  3ED 
+
+pkgname=mcabber
+pkgver=1.0.2
+pkgrel=2
+pkgdesc="A small Jabber console client, includes features: SSL, PGP, MUC, UTF8"
+arch=('i686' 'x86_64')
+url="http://www.lilotux.net/~mikael/mcabber/;
+license=('GPL')
+depends=('ncurses' 'glib2' 'loudmouth' 'gpgme' 'libotr' 'aspell')
+makedepends=('pkg-config')
+source=(http://www.lilotux.net/~mikael/mcabber/files/$pkgname-${pkgver/_/-}.tar.bz2)
+md5sums=('3e264b15aa41f4ae43c8f9c87c6fbb43')
+
+build() {
+  cd "${srcdir}"/$pkgname-${pkgver/_/-}
+  ./configure --prefix=/usr --enable-hgcset \
+  --mandir=/usr/share/man \
+  --enable-aspell --enable-otr
+  make
+}
+
+package() {
+  cd "${srcdir}"/$pkgname-${pkgver/_/-}
+
+  make DESTDIR="${pkgdir}" install
+  mkdir -p "${pkgdir}"/usr/share/mcabber/example
+  msg "Copying mcabberrc.example to usr/share/mcabber/example/mcabberrc"
+  cp -a "${srcdir}"/$pkgname-${pkgver/_/-}/mcabberrc.example \
+   "${pkgdir}"/usr/share/mcabber/example/mcabberrc
+}
+

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-03-22 19:12:08 UTC (rev 167930)
+++ community-x86_64/PKGBUILD   2016-03-22 19:12:27 UTC (rev 167931)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Thorsten Töpper 
-# Contributor:  3ED 
-
-pkgname=mcabber
-pkgver=1.0.2
-pkgrel=1
-pkgdesc="A small Jabber console client, includes features: SSL, PGP, MUC, UTF8"
-arch=('i686' 'x86_64')
-url="http://www.lilotux.net/~mikael/mcabber/;
-license=('GPL')
-depends=('ncurses' 'glib2' 'loudmouth' 'gpgme' 'libotr' 'aspell')
-makedepends=('pkg-config')
-source=(http://www.lilotux.net/~mikael/mcabber/files/$pkgname-${pkgver/_/-}.tar.bz2)
-md5sums=('3e264b15aa41f4ae43c8f9c87c6fbb43')
-
-build() {
-  cd "${srcdir}"/$pkgname-${pkgver/_/-}
-  ./configure --prefix=/usr --enable-hgcset \
-  --mandir=/usr/share/man \
-  --enable-aspell --enable-otr
-  make
-}
-
-package() {
-  cd "${srcdir}"/$pkgname-${pkgver/_/-}
-
-  make DESTDIR="${pkgdir}" install
-  mkdir -p "${pkgdir}"/usr/share/mcabber/example
-  msg "Copying mcabberrc.example to usr/share/mcabber/example/mcabberrc"
-  cp -a "${srcdir}"/$pkgname-${pkgver/_/-}/mcabberrc.example \
-   "${pkgdir}"/usr/share/mcabber/example/mcabberrc
-}
-

Copied: mcabber/repos/community-x86_64/PKGBUILD (from rev 167930, 
mcabber/trunk/PKGBUILD)

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

2016-03-22 Thread Gaetan Bisson
Date: Tuesday, March 22, 2016 @ 20:05:48
  Author: bisson
Revision: 167929

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

Added:
  subsurface-libdc/repos/community-staging-i686/
  subsurface-libdc/repos/community-staging-i686/PKGBUILD
(from rev 167928, subsurface-libdc/trunk/PKGBUILD)
  subsurface-libdc/repos/community-staging-x86_64/
  subsurface-libdc/repos/community-staging-x86_64/PKGBUILD
(from rev 167928, subsurface-libdc/trunk/PKGBUILD)

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

Copied: subsurface-libdc/repos/community-staging-i686/PKGBUILD (from rev 
167928, subsurface-libdc/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-22 19:05:48 UTC (rev 167929)
@@ -0,0 +1,34 @@
+# $Id$
+# Contributor: Francois Boulogne 
+# Maintainer: Gaetan Bisson 
+
+pkgname=subsurface-libdc
+_pkgname=libdivecomputer-subsurface-branch
+pkgver=4.5.4
+pkgrel=1
+pkgdesc='Library for communication with dive computers'
+url='http://git.subsurface-divelog.org/'
+license=('LGPL')
+arch=('i686' 'x86_64')
+source=("http://subsurface-divelog.org/downloads/${_pkgname}-${pkgver}.tgz;)
+sha1sums=('fc9e7bee669b03475c2556797f640eea8fa7a3d0')
+
+conflicts=('libdivecomputer')
+provides=('libdivecomputer')
+replaces=('libdivecomputer')
+
+build() {
+   cd "${srcdir}/${_pkgname}-${pkgver}"
+   autoreconf --install
+   ./configure \
+   --prefix=/usr \
+   --program-prefix=libdc- \
+   --disable-examples # chokes on dctool_parse for now
+
+   make
+}
+
+package() {
+   cd "${srcdir}/${_pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+}

Copied: subsurface-libdc/repos/community-staging-x86_64/PKGBUILD (from rev 
167928, subsurface-libdc/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-22 19:05:48 UTC (rev 167929)
@@ -0,0 +1,34 @@
+# $Id$
+# Contributor: Francois Boulogne 
+# Maintainer: Gaetan Bisson 
+
+pkgname=subsurface-libdc
+_pkgname=libdivecomputer-subsurface-branch
+pkgver=4.5.4
+pkgrel=1
+pkgdesc='Library for communication with dive computers'
+url='http://git.subsurface-divelog.org/'
+license=('LGPL')
+arch=('i686' 'x86_64')
+source=("http://subsurface-divelog.org/downloads/${_pkgname}-${pkgver}.tgz;)
+sha1sums=('fc9e7bee669b03475c2556797f640eea8fa7a3d0')
+
+conflicts=('libdivecomputer')
+provides=('libdivecomputer')
+replaces=('libdivecomputer')
+
+build() {
+   cd "${srcdir}/${_pkgname}-${pkgver}"
+   autoreconf --install
+   ./configure \
+   --prefix=/usr \
+   --program-prefix=libdc- \
+   --disable-examples # chokes on dctool_parse for now
+
+   make
+}
+
+package() {
+   cd "${srcdir}/${_pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+}


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

2016-03-22 Thread Gaetan Bisson
Date: Tuesday, March 22, 2016 @ 20:02:24
  Author: bisson
Revision: 167928

upstream update

Modified:
  subsurface-libdc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-22 18:36:32 UTC (rev 167927)
+++ PKGBUILD2016-03-22 19:02:24 UTC (rev 167928)
@@ -4,7 +4,7 @@
 
 pkgname=subsurface-libdc
 _pkgname=libdivecomputer-subsurface-branch
-pkgver=4.5.3
+pkgver=4.5.4
 pkgrel=1
 pkgdesc='Library for communication with dive computers'
 url='http://git.subsurface-divelog.org/'
@@ -11,7 +11,7 @@
 license=('LGPL')
 arch=('i686' 'x86_64')
 source=("http://subsurface-divelog.org/downloads/${_pkgname}-${pkgver}.tgz;)
-sha1sums=('71d00cc1d10b6b4026922a44707b05c1aba76343')
+sha1sums=('fc9e7bee669b03475c2556797f640eea8fa7a3d0')
 
 conflicts=('libdivecomputer')
 provides=('libdivecomputer')
@@ -23,6 +23,7 @@
./configure \
--prefix=/usr \
--program-prefix=libdc- \
+   --disable-examples # chokes on dctool_parse for now
 
make
 }


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

2016-03-22 Thread Jonathan Steel
Date: Tuesday, March 22, 2016 @ 19:36:32
  Author: jsteel
Revision: 167927

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

Added:
  obs-studio/repos/community-i686/PKGBUILD
(from rev 167926, obs-studio/trunk/PKGBUILD)
  obs-studio/repos/community-i686/obs-studio.install
(from rev 167926, obs-studio/trunk/obs-studio.install)
  obs-studio/repos/community-x86_64/PKGBUILD
(from rev 167926, obs-studio/trunk/PKGBUILD)
  obs-studio/repos/community-x86_64/obs-studio.install
(from rev 167926, obs-studio/trunk/obs-studio.install)
Deleted:
  obs-studio/repos/community-i686/PKGBUILD
  obs-studio/repos/community-i686/obs-studio.install
  obs-studio/repos/community-x86_64/PKGBUILD
  obs-studio/repos/community-x86_64/obs-studio.install

-+
 /PKGBUILD   |   70 ++
 /obs-studio.install |   22 ++
 community-i686/PKGBUILD |   35 -
 community-i686/obs-studio.install   |   11 -
 community-x86_64/PKGBUILD   |   35 -
 community-x86_64/obs-studio.install |   11 -
 6 files changed, 92 insertions(+), 92 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-03-22 18:36:15 UTC (rev 167926)
+++ community-i686/PKGBUILD 2016-03-22 18:36:32 UTC (rev 167927)
@@ -1,35 +0,0 @@
-# Maintainer: Jonathan Steel 
-# Contributor: Benjamin Klettbach 
-
-pkgname=obs-studio
-pkgver=0.13.3
-pkgrel=1
-pkgdesc="Free, open source software for live streaming and recording"
-arch=('i686' 'x86_64')
-url="https://obsproject.com;
-license=('GPL2')
-depends=('ffmpeg' 'jansson' 'libxinerama' 'libxkbcommon-x11'
- 'qt5-x11extras' 'curl' 'jack' 'gtk-update-icon-cache')
-makedepends=('cmake' 'libfdk-aac' 'libxcomposite' 'x264')
-optdepends=('libfdk-aac: FDK AAC codec support'
-'libxcomposite: XComposite capture support')
-install=$pkgname.install
-source=($pkgname-$pkgver.tar.gz::https://github.com/jp9000/obs-studio/archive/$pkgver.tar.gz)
-md5sums=('808def7e08d6030c77dc2735c74d0b6a')
-
-build() {
-  cd $pkgname-$pkgver
-
-  mkdir -p build; cd build
-
-  cmake -DCMAKE_INSTALL_PREFIX="/usr" \
--DOBS_VERSION_OVERRIDE="$pkgver-$pkgrel" ..
-
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver/build
-
-  make install DESTDIR="$pkgdir"
-}

Copied: obs-studio/repos/community-i686/PKGBUILD (from rev 167926, 
obs-studio/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-03-22 18:36:32 UTC (rev 167927)
@@ -0,0 +1,35 @@
+# Maintainer: Jonathan Steel 
+# Contributor: Benjamin Klettbach 
+
+pkgname=obs-studio
+pkgver=0.13.4
+pkgrel=1
+pkgdesc="Free, open source software for live streaming and recording"
+arch=('i686' 'x86_64')
+url="https://obsproject.com;
+license=('GPL2')
+depends=('ffmpeg' 'jansson' 'libxinerama' 'libxkbcommon-x11'
+ 'qt5-x11extras' 'curl' 'jack' 'gtk-update-icon-cache')
+makedepends=('cmake' 'libfdk-aac' 'libxcomposite' 'x264')
+optdepends=('libfdk-aac: FDK AAC codec support'
+'libxcomposite: XComposite capture support')
+install=$pkgname.install
+source=($pkgname-$pkgver.tar.gz::https://github.com/jp9000/obs-studio/archive/$pkgver.tar.gz)
+md5sums=('eb37239c07b2e6c90fe16e2900e7a8c9')
+
+build() {
+  cd $pkgname-$pkgver
+
+  mkdir -p build; cd build
+
+  cmake -DCMAKE_INSTALL_PREFIX="/usr" \
+-DOBS_VERSION_OVERRIDE="$pkgver-$pkgrel" ..
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver/build
+
+  make install DESTDIR="$pkgdir"
+}

Deleted: community-i686/obs-studio.install
===
--- community-i686/obs-studio.install   2016-03-22 18:36:15 UTC (rev 167926)
+++ community-i686/obs-studio.install   2016-03-22 18:36:32 UTC (rev 167927)
@@ -1,11 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: obs-studio/repos/community-i686/obs-studio.install (from rev 167926, 
obs-studio/trunk/obs-studio.install)
===
--- community-i686/obs-studio.install   (rev 0)
+++ community-i686/obs-studio.install   2016-03-22 18:36:32 UTC (rev 167927)
@@ -0,0 +1,11 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-03-22 18:36:15 UTC (rev 167926)
+++ community-x86_64/PKGBUILD   2016-03-22 18:36:32 UTC (rev 167927)
@@ -1,35 +0,0 @@
-# Maintainer: 

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

2016-03-22 Thread Jonathan Steel
Date: Tuesday, March 22, 2016 @ 19:36:15
  Author: jsteel
Revision: 167926

upgpkg: obs-studio 0.13.4-1

Modified:
  obs-studio/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-22 17:57:13 UTC (rev 167925)
+++ PKGBUILD2016-03-22 18:36:15 UTC (rev 167926)
@@ -2,7 +2,7 @@
 # Contributor: Benjamin Klettbach 
 
 pkgname=obs-studio
-pkgver=0.13.3
+pkgver=0.13.4
 pkgrel=1
 pkgdesc="Free, open source software for live streaming and recording"
 arch=('i686' 'x86_64')
@@ -15,7 +15,7 @@
 'libxcomposite: XComposite capture support')
 install=$pkgname.install
 
source=($pkgname-$pkgver.tar.gz::https://github.com/jp9000/obs-studio/archive/$pkgver.tar.gz)
-md5sums=('808def7e08d6030c77dc2735c74d0b6a')
+md5sums=('eb37239c07b2e6c90fe16e2900e7a8c9')
 
 build() {
   cd $pkgname-$pkgver


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

2016-03-22 Thread Anatol Pomozov
Date: Tuesday, March 22, 2016 @ 18:57:13
  Author: anatolik
Revision: 167925

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-03-22 17:56:35 UTC (rev 167924)
+++ community-i686/PKGBUILD 2016-03-22 17:57:13 UTC (rev 167925)
@@ -1,72 +0,0 @@
-# $Id$
-# Maintainer: Anatol Pomozov 
-# Contributor: Jonne Haß 
-
-pkgname=crystal
-pkgver=0.13.0
-pkgrel=1
-_binary_rel=1
-pkgdesc='The Crystal Programming Language'
-arch=(i686 x86_64)
-url='http://crystal-lang.org'
-license=(Apache)
-depends=(gc libatomic_ops pcre libpcl libevent libffi)
-# depend on previous llvm version until 
https://github.com/manastech/crystal/issues/1614 is resolved
-makedepends=(libxml2 llvm35)
-checkdepends=(libyaml libxml2 gmp git)
-optdepends=('shards: crystal language package manager'
-'libyaml: For YAML support'
-'gmp: For BigInt support'
-'libxml2: For XML support')
-source=(crystal-$pkgver.tar.gz::https://github.com/manastech/crystal/archive/$pkgver.tar.gz)
-source_i686+=(https://github.com/manastech/crystal/releases/download/$pkgver/$pkgname-$pkgver-$_binary_rel-linux-i686.tar.gz)
-source_x86_64+=(https://github.com/manastech/crystal/releases/download/$pkgver/$pkgname-$pkgver-$_binary_rel-linux-x86_64.tar.gz)
-sha256sums=('abada1d7bd411dca52ac0df2124a188d61301bdcd1fc75e8419a24496ee8ff42')
-sha256sums_i686=('c99d3513d46a0195625b637d0b3d3ab2b93794575b4cace973ad2f35d9f33105')
-sha256sums_x86_64=('43946bad44378f92dd92edaf0fcb04312755c635dd1670eca8387160dd2cefa0')
-
-prepare() {
-  cd $pkgname-$pkgver
-  sed -i 's|Please install shards: https://github.com/ysbaddaden/shards|Please 
install shards: pacman -S shards|' src/compiler/crystal/command.cr
-}
-
-build() {
-  cd $pkgname-$pkgver
-
-  make release=1 \
-   PATH="$srcdir/$pkgname-$pkgver-$_binary_rel/bin:$PATH" \
-   CRYSTAL_PATH="$srcdir/$pkgname-$pkgver/src" \
-   CRYSTAL_CONFIG_VERSION="$pkgver" \
-   CRYSTAL_CONFIG_PATH="libs:/usr/lib/crystal"
-  make doc
-}
-
-check() {
-  cd $pkgname-$pkgver
-
-  make spec CRYSTAL_PATH="$srcdir/$pkgname-$pkgver/src" \
-CRYSTAL_CONFIG_VERSION="$pkgver"
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  # /usr/bin/crystalcompiled executable
-  # /usr/lib/crystal/   compiler src & core libs
-  # /usr/share/doc/crystal/api  api docs
-  # /usr/share/doc/crystal/samples/ samples
-
-  install -Dm755 ".build/crystal" "$pkgdir/usr/bin/crystal"
-
-  install -dm755 "$pkgdir/usr/lib"
-  cp -r src "$pkgdir/usr/lib/crystal"
-
-  install -dm755 "$pkgdir/usr/share/doc/crystal"
-  cp -r doc "$pkgdir/usr/share/doc/crystal/api"
-  cp -r samples "$pkgdir/usr/share/doc/crystal/"
-
-  install -Dm644 etc/completion.bash 
"$pkgdir/usr/share/bash-completion/completions/crystal"
-  install -Dm644 etc/completion.zsh 
"$pkgdir/usr/share/zsh/site-functions/_crystal"
-
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: crystal/repos/community-i686/PKGBUILD (from rev 167924, 
crystal/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-03-22 17:57:13 UTC (rev 167925)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Anatol Pomozov 
+# Contributor: Jonne Haß 
+
+pkgname=crystal
+pkgver=0.14.1
+pkgrel=1
+_binary_rel=1
+pkgdesc='The Crystal Programming Language'
+arch=(i686 x86_64)
+url='http://crystal-lang.org'
+license=(Apache)
+depends=(gc libatomic_ops pcre libevent libffi)
+# depend on previous llvm version until 
https://github.com/crystal-lang/crystal/issues/1614 is resolved
+makedepends=(libxml2 llvm35)
+checkdepends=(libyaml libxml2 gmp git)
+optdepends=('shards: crystal language package manager'
+'libyaml: For YAML support'
+'gmp: For BigInt support'
+'libxml2: For XML support')
+source=(crystal-$pkgver.tar.gz::https://github.com/crystal-lang/crystal/archive/$pkgver.tar.gz)
+source_i686+=(https://github.com/crystal-lang/crystal/releases/download/$pkgver/$pkgname-$pkgver-$_binary_rel-linux-i686.tar.gz)

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

2016-03-22 Thread Anatol Pomozov
Date: Tuesday, March 22, 2016 @ 18:56:35
  Author: anatolik
Revision: 167924

upgpkg: crystal 0.14.1-1

Modified:
  crystal/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-22 17:29:47 UTC (rev 167923)
+++ PKGBUILD2016-03-22 17:56:35 UTC (rev 167924)
@@ -3,7 +3,7 @@
 # Contributor: Jonne Haß 
 
 pkgname=crystal
-pkgver=0.13.0
+pkgver=0.14.1
 pkgrel=1
 _binary_rel=1
 pkgdesc='The Crystal Programming Language'
@@ -10,8 +10,8 @@
 arch=(i686 x86_64)
 url='http://crystal-lang.org'
 license=(Apache)
-depends=(gc libatomic_ops pcre libpcl libevent libffi)
-# depend on previous llvm version until 
https://github.com/manastech/crystal/issues/1614 is resolved
+depends=(gc libatomic_ops pcre libevent libffi)
+# depend on previous llvm version until 
https://github.com/crystal-lang/crystal/issues/1614 is resolved
 makedepends=(libxml2 llvm35)
 checkdepends=(libyaml libxml2 gmp git)
 optdepends=('shards: crystal language package manager'
@@ -18,12 +18,12 @@
 'libyaml: For YAML support'
 'gmp: For BigInt support'
 'libxml2: For XML support')
-source=(crystal-$pkgver.tar.gz::https://github.com/manastech/crystal/archive/$pkgver.tar.gz)
-source_i686+=(https://github.com/manastech/crystal/releases/download/$pkgver/$pkgname-$pkgver-$_binary_rel-linux-i686.tar.gz)
-source_x86_64+=(https://github.com/manastech/crystal/releases/download/$pkgver/$pkgname-$pkgver-$_binary_rel-linux-x86_64.tar.gz)
-sha256sums=('abada1d7bd411dca52ac0df2124a188d61301bdcd1fc75e8419a24496ee8ff42')
-sha256sums_i686=('c99d3513d46a0195625b637d0b3d3ab2b93794575b4cace973ad2f35d9f33105')
-sha256sums_x86_64=('43946bad44378f92dd92edaf0fcb04312755c635dd1670eca8387160dd2cefa0')
+source=(crystal-$pkgver.tar.gz::https://github.com/crystal-lang/crystal/archive/$pkgver.tar.gz)
+source_i686+=(https://github.com/crystal-lang/crystal/releases/download/$pkgver/$pkgname-$pkgver-$_binary_rel-linux-i686.tar.gz)
+source_x86_64+=(https://github.com/crystal-lang/crystal/releases/download/$pkgver/$pkgname-$pkgver-$_binary_rel-linux-x86_64.tar.gz)
+sha256sums=('2f593ea68683e26cd8971619b3860b15b85048f27648e34b7ed5a41116ad2ecb')
+sha256sums_i686=('3671c57acfb3d3d270a3681e34f255a8fade94cf6142bf035d5a06ea7f4dac30')
+sha256sums_x86_64=('75b964f1d04c55251036789f48cde1109b715e07edeb0cbde585a36461d4e8c8')
 
 prepare() {
   cd $pkgname-$pkgver


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

2016-03-22 Thread Anatol Pomozov
Date: Tuesday, March 22, 2016 @ 18:49:15
  Author: anatolik
Revision: 262406

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

Added:
  jsoncpp/repos/testing-i686/PKGBUILD
(from rev 262405, jsoncpp/trunk/PKGBUILD)
  jsoncpp/repos/testing-x86_64/PKGBUILD
(from rev 262405, jsoncpp/trunk/PKGBUILD)
Deleted:
  jsoncpp/repos/testing-i686/PKGBUILD
  jsoncpp/repos/testing-x86_64/PKGBUILD

-+
 /PKGBUILD   |   76 ++
 testing-i686/PKGBUILD   |   38 ---
 testing-x86_64/PKGBUILD |   38 ---
 3 files changed, 76 insertions(+), 76 deletions(-)

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2016-03-22 17:44:52 UTC (rev 262405)
+++ testing-i686/PKGBUILD   2016-03-22 17:49:15 UTC (rev 262406)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-# Contributor: Jonahtan Schaeffer 
-# COntributor: Drake Arconis 
-
-pkgname=jsoncpp
-pkgver=1.7.0
-pkgrel=1
-pkgdesc='A C++ library for interacting with JSON'
-url='https://github.com/open-source-parsers/jsoncpp'
-license=('MIT' 'custom:Public_Domain')
-arch=('i686' 'x86_64')
-depends=('gcc-libs')
-makedepends=('cmake')
-source=(${pkgname}-${pkgver}.tar.gz::"https://github.com/open-source-parsers/${pkgname}/archive/${pkgver}.tar.gz;)
-md5sums=('df6200236b4f42704f5692262bb8f866')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  cmake \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DBUILD_SHARED_LIBS=ON \
--DBUILD_STATIC_LIBS=OFF
-  make
-}
-
-check() {
-  cd ${pkgname}-${pkgver}
-  make test
-}
-
-package() {
-  cd  ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}
-

Copied: jsoncpp/repos/testing-i686/PKGBUILD (from rev 262405, 
jsoncpp/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-03-22 17:49:15 UTC (rev 262406)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Jonahtan Schaeffer 
+# COntributor: Drake Arconis 
+
+pkgname=jsoncpp
+pkgver=1.7.1
+pkgrel=1
+pkgdesc='A C++ library for interacting with JSON'
+url='https://github.com/open-source-parsers/jsoncpp'
+license=('MIT' 'custom:Public_Domain')
+arch=('i686' 'x86_64')
+depends=('gcc-libs')
+makedepends=('cmake')
+source=(${pkgname}-${pkgver}.tar.gz::"https://github.com/open-source-parsers/${pkgname}/archive/${pkgver}.tar.gz;)
+md5sums=('c075c61212b01d7350105395135a71d0')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  cmake \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DBUILD_SHARED_LIBS=ON \
+-DBUILD_STATIC_LIBS=OFF
+  make
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  make test
+}
+
+package() {
+  cd  ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}
+

Deleted: testing-x86_64/PKGBUILD
===
--- testing-x86_64/PKGBUILD 2016-03-22 17:44:52 UTC (rev 262405)
+++ testing-x86_64/PKGBUILD 2016-03-22 17:49:15 UTC (rev 262406)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-# Contributor: Jonahtan Schaeffer 
-# COntributor: Drake Arconis 
-
-pkgname=jsoncpp
-pkgver=1.7.0
-pkgrel=1
-pkgdesc='A C++ library for interacting with JSON'
-url='https://github.com/open-source-parsers/jsoncpp'
-license=('MIT' 'custom:Public_Domain')
-arch=('i686' 'x86_64')
-depends=('gcc-libs')
-makedepends=('cmake')
-source=(${pkgname}-${pkgver}.tar.gz::"https://github.com/open-source-parsers/${pkgname}/archive/${pkgver}.tar.gz;)
-md5sums=('df6200236b4f42704f5692262bb8f866')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  cmake \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DBUILD_SHARED_LIBS=ON \
--DBUILD_STATIC_LIBS=OFF
-  make
-}
-
-check() {
-  cd ${pkgname}-${pkgver}
-  make test
-}
-
-package() {
-  cd  ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}
-

Copied: jsoncpp/repos/testing-x86_64/PKGBUILD (from rev 262405, 
jsoncpp/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-03-22 17:49:15 UTC (rev 262406)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Jonahtan Schaeffer 
+# COntributor: Drake Arconis 
+
+pkgname=jsoncpp

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

2016-03-22 Thread Anatol Pomozov
Date: Tuesday, March 22, 2016 @ 18:44:52
  Author: anatolik
Revision: 262405

upgpkg: jsoncpp 1.7.1-1

Modified:
  jsoncpp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-22 16:17:15 UTC (rev 262404)
+++ PKGBUILD2016-03-22 17:44:52 UTC (rev 262405)
@@ -4,7 +4,7 @@
 # COntributor: Drake Arconis 
 
 pkgname=jsoncpp
-pkgver=1.7.0
+pkgver=1.7.1
 pkgrel=1
 pkgdesc='A C++ library for interacting with JSON'
 url='https://github.com/open-source-parsers/jsoncpp'
@@ -13,7 +13,7 @@
 depends=('gcc-libs')
 makedepends=('cmake')
 
source=(${pkgname}-${pkgver}.tar.gz::"https://github.com/open-source-parsers/${pkgname}/archive/${pkgver}.tar.gz;)
-md5sums=('df6200236b4f42704f5692262bb8f866')
+md5sums=('c075c61212b01d7350105395135a71d0')
 
 build() {
   cd ${pkgname}-${pkgver}


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

2016-03-22 Thread Gaetan Bisson
Date: Tuesday, March 22, 2016 @ 18:29:47
  Author: bisson
Revision: 167923

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

Added:
  subsurface-marble/repos/community-staging-i686/
  subsurface-marble/repos/community-staging-i686/PKGBUILD
(from rev 167922, subsurface-marble/trunk/PKGBUILD)
  subsurface-marble/repos/community-staging-x86_64/
  subsurface-marble/repos/community-staging-x86_64/PKGBUILD
(from rev 167922, subsurface-marble/trunk/PKGBUILD)

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

Copied: subsurface-marble/repos/community-staging-i686/PKGBUILD (from rev 
167922, subsurface-marble/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-22 17:29:47 UTC (rev 167923)
@@ -0,0 +1,51 @@
+# $Id$
+# Contributor: Francois Boulogne 
+# Maintainer: Gaetan Bisson 
+
+pkgname=subsurface-marble
+_pkgname=marble-subsurface-branch
+pkgver=4.5.4
+pkgrel=1
+pkgdesc='Virtual Globe'
+url='http://git.subsurface-divelog.org/'
+license=('GPL' 'LGPL' 'FDL')
+arch=('i686' 'x86_64')
+makedepends=('cmake')
+depends=('qt5-'{script,svg,tools,webkit} 'marble-data')
+source=("http://subsurface-divelog.org/downloads/${_pkgname}-${pkgver}.tgz;)
+sha1sums=('a244fd261c087bd96d6d96d474fcf824f13323eb')
+
+build() {
+   cd "${srcdir}/${_pkgname}-${pkgver}"
+   cmake \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DQT5BUILD=ON \
+   -DQTONLY=ON \
+   -DBUILD_MARBLE_APPS=OFF \
+   -DBUILD_MARBLE_EXAMPLES=OFF \
+   -DBUILD_MARBLE_TESTS=OFF \
+   -DBUILD_MARBLE_TOOLS=OFF \
+   -DBUILD_TESTING=OFF \
+   -DWITH_DESIGNER_PLUGIN=OFF \
+   -DBUILD_WITH_DBUS=OFF \
+   .
+}
+
+package() {
+   cd "${srcdir}/${_pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+
+   cd "${pkgdir}/usr"
+   mv include subsurface
+   install -d include
+   mv subsurface include
+rm -fr share/{appdata,icons}
+
+   # Provided by marble-data, avoids conflicts.
+   rm share/marble/cmake/FindMarble.cmake
+   rm -fr share/marble/data
+
+   # Conflicts with libastro
+   rm lib/libastro.so{,.1,.0.17.20}
+}

Copied: subsurface-marble/repos/community-staging-x86_64/PKGBUILD (from rev 
167922, subsurface-marble/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-22 17:29:47 UTC (rev 167923)
@@ -0,0 +1,51 @@
+# $Id$
+# Contributor: Francois Boulogne 
+# Maintainer: Gaetan Bisson 
+
+pkgname=subsurface-marble
+_pkgname=marble-subsurface-branch
+pkgver=4.5.4
+pkgrel=1
+pkgdesc='Virtual Globe'
+url='http://git.subsurface-divelog.org/'
+license=('GPL' 'LGPL' 'FDL')
+arch=('i686' 'x86_64')
+makedepends=('cmake')
+depends=('qt5-'{script,svg,tools,webkit} 'marble-data')
+source=("http://subsurface-divelog.org/downloads/${_pkgname}-${pkgver}.tgz;)
+sha1sums=('a244fd261c087bd96d6d96d474fcf824f13323eb')
+
+build() {
+   cd "${srcdir}/${_pkgname}-${pkgver}"
+   cmake \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DQT5BUILD=ON \
+   -DQTONLY=ON \
+   -DBUILD_MARBLE_APPS=OFF \
+   -DBUILD_MARBLE_EXAMPLES=OFF \
+   -DBUILD_MARBLE_TESTS=OFF \
+   -DBUILD_MARBLE_TOOLS=OFF \
+   -DBUILD_TESTING=OFF \
+   -DWITH_DESIGNER_PLUGIN=OFF \
+   -DBUILD_WITH_DBUS=OFF \
+   .
+}
+
+package() {
+   cd "${srcdir}/${_pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+
+   cd "${pkgdir}/usr"
+   mv include subsurface
+   install -d include
+   mv subsurface include
+rm -fr share/{appdata,icons}
+
+   # Provided by marble-data, avoids conflicts.
+   rm share/marble/cmake/FindMarble.cmake
+   rm -fr share/marble/data
+
+   # Conflicts with libastro
+   rm lib/libastro.so{,.1,.0.17.20}
+}


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

2016-03-22 Thread Gaetan Bisson
Date: Tuesday, March 22, 2016 @ 18:29:19
  Author: bisson
Revision: 167922

upstream update

Modified:
  subsurface-marble/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-22 16:27:24 UTC (rev 167921)
+++ PKGBUILD2016-03-22 17:29:19 UTC (rev 167922)
@@ -4,7 +4,7 @@
 
 pkgname=subsurface-marble
 _pkgname=marble-subsurface-branch
-pkgver=4.5.3
+pkgver=4.5.4
 pkgrel=1
 pkgdesc='Virtual Globe'
 url='http://git.subsurface-divelog.org/'
@@ -13,7 +13,7 @@
 makedepends=('cmake')
 depends=('qt5-'{script,svg,tools,webkit} 'marble-data')
 source=("http://subsurface-divelog.org/downloads/${_pkgname}-${pkgver}.tgz;)
-sha1sums=('77e562c5f7b28e4fef5bba788183c616c8f505fe')
+sha1sums=('a244fd261c087bd96d6d96d474fcf824f13323eb')
 
 build() {
cd "${srcdir}/${_pkgname}-${pkgver}"


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

2016-03-22 Thread Felix Yan
Date: Tuesday, March 22, 2016 @ 17:23:34
  Author: fyan
Revision: 167919

archrelease: copy trunk to community-any

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

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

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-03-22 16:22:40 UTC (rev 167918)
+++ PKGBUILD2016-03-22 16:23:34 UTC (rev 167919)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Alexander Rødseth 
-# Contributor: Marcel Huber 
-# Contributor: Illarion Kovalchuk 
-
-pkgname=jenkins
-pkgver=1.653
-pkgrel=1
-pkgdesc='Extendable continuous integration server (latest)'
-arch=('any')
-url='http://jenkins-ci.org/'
-license=('MIT')
-depends=('java-runtime' 'ttf-dejavu' 'libcups')
-provides=('jenkins-ci')
-conflicts=('jenkins-ci')
-replaces=('jenkins-ci')

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

2016-03-22 Thread Sergej Pupykin
Date: Tuesday, March 22, 2016 @ 17:27:00
  Author: spupykin
Revision: 167920

upgpkg: tuxguitar 1.3.2-1

upd

Modified:
  tuxguitar/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-22 16:23:34 UTC (rev 167919)
+++ PKGBUILD2016-03-22 16:27:00 UTC (rev 167920)
@@ -3,7 +3,7 @@
 # Contributor: |AhIoRoS| < ahio...@gmail.com >
 
 pkgname=tuxguitar
-pkgver=1.3.1
+pkgver=1.3.2
 pkgrel=1
 _jdk=java-7-openjdk
 pkgdesc="multitrack guitar tablature editor and player"
@@ -18,7 +18,7 @@
 
source=(tuxguitar-src-$pkgver.tar.gz::http://downloads.sourceforge.net/project/tuxguitar/TuxGuitar/TuxGuitar-$pkgver/tuxguitar-$pkgver-src.tar.gz
tuxguitar.desktop
tuxguitar.xml)
-md5sums=('d4e60f2b669d3b05ca15b72c6f0cdd56'
+md5sums=('ba436b4558dc3ca054b395d8d7e38c50'
  '0afa7f3248b9317d73ad8ccdc5e5aaf0'
  '59ce4eb8dcc0d0dde81e6cf2820aa9b0')
 


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

2016-03-22 Thread Sergej Pupykin
Date: Tuesday, March 22, 2016 @ 17:27:24
  Author: spupykin
Revision: 167921

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

Added:
  tuxguitar/repos/community-i686/PKGBUILD
(from rev 167920, tuxguitar/trunk/PKGBUILD)
  tuxguitar/repos/community-i686/tuxguitar.desktop
(from rev 167920, tuxguitar/trunk/tuxguitar.desktop)
  tuxguitar/repos/community-i686/tuxguitar.install
(from rev 167920, tuxguitar/trunk/tuxguitar.install)
  tuxguitar/repos/community-i686/tuxguitar.xml
(from rev 167920, tuxguitar/trunk/tuxguitar.xml)
  tuxguitar/repos/community-x86_64/PKGBUILD
(from rev 167920, tuxguitar/trunk/PKGBUILD)
  tuxguitar/repos/community-x86_64/tuxguitar.desktop
(from rev 167920, tuxguitar/trunk/tuxguitar.desktop)
  tuxguitar/repos/community-x86_64/tuxguitar.install
(from rev 167920, tuxguitar/trunk/tuxguitar.install)
  tuxguitar/repos/community-x86_64/tuxguitar.xml
(from rev 167920, tuxguitar/trunk/tuxguitar.xml)
Deleted:
  tuxguitar/repos/community-i686/PKGBUILD
  tuxguitar/repos/community-i686/tuxguitar.desktop
  tuxguitar/repos/community-i686/tuxguitar.install
  tuxguitar/repos/community-i686/tuxguitar.xml
  tuxguitar/repos/community-x86_64/PKGBUILD
  tuxguitar/repos/community-x86_64/tuxguitar.desktop
  tuxguitar/repos/community-x86_64/tuxguitar.install
  tuxguitar/repos/community-x86_64/tuxguitar.xml

+
 /PKGBUILD  |  166 +++
 /tuxguitar.desktop |   26 +
 /tuxguitar.install |   22 
 /tuxguitar.xml |   36 +++
 community-i686/PKGBUILD|   83 -
 community-i686/tuxguitar.desktop   |   13 --
 community-i686/tuxguitar.install   |   11 --
 community-i686/tuxguitar.xml   |   18 ---
 community-x86_64/PKGBUILD  |   83 -
 community-x86_64/tuxguitar.desktop |   13 --
 community-x86_64/tuxguitar.install |   11 --
 community-x86_64/tuxguitar.xml |   18 ---
 12 files changed, 250 insertions(+), 250 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-03-22 16:27:00 UTC (rev 167920)
+++ community-i686/PKGBUILD 2016-03-22 16:27:24 UTC (rev 167921)
@@ -1,83 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: |AhIoRoS| < ahio...@gmail.com >
-
-pkgname=tuxguitar
-pkgver=1.3.1
-pkgrel=1
-_jdk=java-7-openjdk
-pkgdesc="multitrack guitar tablature editor and player"
-arch=('i686' 'x86_64')
-#url="http://www.herac.com.ar/contenidos/tuxguitar.html;
-url="http://sourceforge.net/projects/tuxguitar;
-license=('LGPL')
-depends=('java-runtime' 'swt' 'alsa-lib')
-makedepends=('unzip' 'zip' 'apache-ant' 'jack' 'fluidsynth' 'java-environment' 
'maven')
-optdepends=('fluidsynth')
-install=tuxguitar.install
-source=(tuxguitar-src-$pkgver.tar.gz::http://downloads.sourceforge.net/project/tuxguitar/TuxGuitar/TuxGuitar-$pkgver/tuxguitar-$pkgver-src.tar.gz
-   tuxguitar.desktop
-   tuxguitar.xml)
-md5sums=('d4e60f2b669d3b05ca15b72c6f0cdd56'
- '0afa7f3248b9317d73ad8ccdc5e5aaf0'
- '59ce4eb8dcc0d0dde81e6cf2820aa9b0')
-
-prepare() {
-  cd $srcdir
-  cat >gcj <$pkgdir/usr/bin/tuxguitar <
+# Contributor: |AhIoRoS| < ahio...@gmail.com >
+
+pkgname=tuxguitar
+pkgver=1.3.2
+pkgrel=1
+_jdk=java-7-openjdk
+pkgdesc="multitrack guitar tablature editor and player"
+arch=('i686' 'x86_64')
+#url="http://www.herac.com.ar/contenidos/tuxguitar.html;
+url="http://sourceforge.net/projects/tuxguitar;
+license=('LGPL')
+depends=('java-runtime' 'swt' 'alsa-lib')
+makedepends=('unzip' 'zip' 'apache-ant' 'jack' 'fluidsynth' 'java-environment' 
'maven')
+optdepends=('fluidsynth')
+install=tuxguitar.install
+source=(tuxguitar-src-$pkgver.tar.gz::http://downloads.sourceforge.net/project/tuxguitar/TuxGuitar/TuxGuitar-$pkgver/tuxguitar-$pkgver-src.tar.gz
+   tuxguitar.desktop
+   tuxguitar.xml)
+md5sums=('ba436b4558dc3ca054b395d8d7e38c50'
+ '0afa7f3248b9317d73ad8ccdc5e5aaf0'
+ '59ce4eb8dcc0d0dde81e6cf2820aa9b0')
+
+prepare() {
+  cd $srcdir
+  cat >gcj <$pkgdir/usr/bin/tuxguitar <
-http://www.freedesktop.org/standards/shared-mime-info;>
-   
-   TuxGuitar file
-   
-   
-   
-   GuitarPro file
-   
-   
-   
-   
-   
-   
-   PowerTab file
-   
-   
-

Copied: tuxguitar/repos/community-i686/tuxguitar.xml (from rev 167920, 
tuxguitar/trunk/tuxguitar.xml)
===
--- community-i686/tuxguitar.xml(rev 0)
+++ community-i686/tuxguitar.xml2016-03-22 16:27:24 UTC (rev 167921)
@@ -0,0 +1,18 @@
+
+http://www.freedesktop.org/standards/shared-mime-info;>
+   
+   TuxGuitar file
+   
+   

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

2016-03-22 Thread Felix Yan
Date: Tuesday, March 22, 2016 @ 17:22:40
  Author: fyan
Revision: 167918

upgpkg: jenkins 1.654-1

Modified:
  jenkins/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-22 16:22:07 UTC (rev 167917)
+++ PKGBUILD2016-03-22 16:22:40 UTC (rev 167918)
@@ -5,7 +5,7 @@
 # Contributor: Illarion Kovalchuk 
 
 pkgname=jenkins
-pkgver=1.653
+pkgver=1.654
 pkgrel=1
 pkgdesc='Extendable continuous integration server (latest)'
 arch=('any')
@@ -25,7 +25,7 @@
 'jenkins.tmpfiles'
 'jenkins.sysusers'
 'LICENSE')
-sha512sums=('ec6a3e9e2d45e026efd1366adc91a539eb3585a6aa900e2e3913ad5fffd9512252b11e24bc33409acfd87823f5376714b0e4473c26370c27ebe334860e8b0156'
+sha512sums=('9e006f1dc6f4953251ce95d2e3ac9608838b880e188bffb285d3b70b580f3be1d6c3ed6e848ddd053c5a671dd093b0c596b00faff7380a81ef27cfd16b3883e4'
 
'3a8421cef3953d899c150609f959cf5d5dd6d08d079a5e0f48bfece4f3c80491722b9e90ef841fddb87401c226b8338297c5c4e83e55a33ef8d6e387de3048d0'
 
'a336b006d3711abb75b49a2e12c09ee61cf3275a2cdbbd3676480e2f6ca8ba0fb4b9c08f3f9da193252c4fca827e9a1d5eaad847d0a889445693427ae1571fe7'
 
'a845a7147be54affc586dfce9a188ec24c92e673e88dec0b62da386d2e597de6ecda103429008562abd897f179a52c37cf2188ebc65b8c636efd07d707e18f90'


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

2016-03-22 Thread Felix Yan
Date: Tuesday, March 22, 2016 @ 17:22:07
  Author: fyan
Revision: 167917

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

Added:
  lxqt-config/repos/community-testing-i686/
  lxqt-config/repos/community-testing-i686/PKGBUILD
(from rev 167916, lxqt-config/trunk/PKGBUILD)
  lxqt-config/repos/community-testing-x86_64/
  lxqt-config/repos/community-testing-x86_64/PKGBUILD
(from rev 167916, lxqt-config/trunk/PKGBUILD)

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

Copied: lxqt-config/repos/community-testing-i686/PKGBUILD (from rev 167916, 
lxqt-config/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2016-03-22 16:22:07 UTC (rev 167917)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Jerome Leclanche 
+
+pkgname=lxqt-config
+pkgver=0.10.0
+pkgrel=4
+pkgdesc="LXQt system configuration."
+arch=("i686" "x86_64")
+groups=("lxqt")
+url="http://lxqt.org;
+license=("LGPL2.1")
+depends=("liblxqt" "libkscreen" "libxcursor" "qt5-svg")
+makedepends=("cmake" "qt5-tools")
+source=(
+   "https://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;
+   "https://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz.asc;
+)
+sha256sums=(
+   "4567be4653f2f1f9ff156126250a08d7b480f627fa1410484d49f65ba5dab9b4"
+   "SKIP"
+)
+validpgpkeys=("169704C6FB490C6892C7F23C37E0AF1FDA48F373")
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake "$srcdir/$pkgname-$pkgver" \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_INSTALL_LIBDIR=lib
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR="$pkgdir" install
+}

Copied: lxqt-config/repos/community-testing-x86_64/PKGBUILD (from rev 167916, 
lxqt-config/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2016-03-22 16:22:07 UTC (rev 167917)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Jerome Leclanche 
+
+pkgname=lxqt-config
+pkgver=0.10.0
+pkgrel=4
+pkgdesc="LXQt system configuration."
+arch=("i686" "x86_64")
+groups=("lxqt")
+url="http://lxqt.org;
+license=("LGPL2.1")
+depends=("liblxqt" "libkscreen" "libxcursor" "qt5-svg")
+makedepends=("cmake" "qt5-tools")
+source=(
+   "https://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz;
+   "https://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz.asc;
+)
+sha256sums=(
+   "4567be4653f2f1f9ff156126250a08d7b480f627fa1410484d49f65ba5dab9b4"
+   "SKIP"
+)
+validpgpkeys=("169704C6FB490C6892C7F23C37E0AF1FDA48F373")
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake "$srcdir/$pkgname-$pkgver" \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_INSTALL_LIBDIR=lib
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR="$pkgdir" install
+}


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

2016-03-22 Thread Felix Yan
Date: Tuesday, March 22, 2016 @ 17:17:59
  Author: fyan
Revision: 167916

upgpkg: lxqt-config 0.10.0-4

rebuild with libkscreen 5.6.0

Modified:
  lxqt-config/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-22 16:06:25 UTC (rev 167915)
+++ PKGBUILD2016-03-22 16:17:59 UTC (rev 167916)
@@ -3,7 +3,7 @@
 
 pkgname=lxqt-config
 pkgver=0.10.0
-pkgrel=3
+pkgrel=4
 pkgdesc="LXQt system configuration."
 arch=("i686" "x86_64")
 groups=("lxqt")


[arch-commits] Commit in gnome-maps/trunk (PKGBUILD gnome-maps.install)

2016-03-22 Thread Jan de Groot
Date: Tuesday, March 22, 2016 @ 17:17:08
  Author: jgc
Revision: 262403

upgpkg: gnome-maps 3.20.0-1

Modified:
  gnome-maps/trunk/PKGBUILD
  gnome-maps/trunk/gnome-maps.install

+
 PKGBUILD   |5 +++--
 gnome-maps.install |1 +
 2 files changed, 4 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-22 16:07:20 UTC (rev 262402)
+++ PKGBUILD2016-03-22 16:17:08 UTC (rev 262403)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot 
 
 pkgname=gnome-maps
-pkgver=3.18.2
+pkgver=3.20.0
 pkgrel=1
 pkgdesc="A simple GNOME 3 maps application"
 arch=(i686 x86_64)
@@ -13,11 +13,12 @@
 groups=('gnome-extra')
 install=gnome-maps.install
 
source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('693ff1559252eabe5d8c9c7354333b5aa1996e870936456d15706a0e0bac9278')
+sha256sums=('91827901fd7f88db99b3a0d8d45a8a0161568f5ebf48cd2ccead7735242d592e')
 
 build() {
   cd $pkgname-$pkgver
   ./configure --prefix=/usr --disable-schemas-compile
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
   make
 }
 

Modified: gnome-maps.install
===
--- gnome-maps.install  2016-03-22 16:07:20 UTC (rev 262402)
+++ gnome-maps.install  2016-03-22 16:17:08 UTC (rev 262403)
@@ -1,5 +1,6 @@
 post_install() {
   glib-compile-schemas usr/share/glib-2.0/schemas
+  update-desktop-database -q
   gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
 }
 


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

2016-03-22 Thread Jan de Groot
Date: Tuesday, March 22, 2016 @ 17:17:15
  Author: jgc
Revision: 262404

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  gnome-maps/repos/gnome-unstable-i686/
  gnome-maps/repos/gnome-unstable-i686/PKGBUILD
(from rev 262403, gnome-maps/trunk/PKGBUILD)
  gnome-maps/repos/gnome-unstable-i686/gnome-maps.install
(from rev 262403, gnome-maps/trunk/gnome-maps.install)
  gnome-maps/repos/gnome-unstable-x86_64/
  gnome-maps/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 262403, gnome-maps/trunk/PKGBUILD)
  gnome-maps/repos/gnome-unstable-x86_64/gnome-maps.install
(from rev 262403, gnome-maps/trunk/gnome-maps.install)

--+
 gnome-unstable-i686/PKGBUILD |   28 
 gnome-unstable-i686/gnome-maps.install   |   13 +
 gnome-unstable-x86_64/PKGBUILD   |   28 
 gnome-unstable-x86_64/gnome-maps.install |   13 +
 4 files changed, 82 insertions(+)

Copied: gnome-maps/repos/gnome-unstable-i686/PKGBUILD (from rev 262403, 
gnome-maps/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2016-03-22 16:17:15 UTC (rev 262404)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=gnome-maps
+pkgver=3.20.0
+pkgrel=1
+pkgdesc="A simple GNOME 3 maps application"
+arch=(i686 x86_64)
+license=('GPL')
+url="https://live.gnome.org/Maps;
+depends=(geocode-glib geoclue2 gjs libchamplain gnome-themes-standard libgee 
folks gfbgraph)
+makedepends=(intltool gobject-introspection)
+groups=('gnome-extra')
+install=gnome-maps.install
+source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('91827901fd7f88db99b3a0d8d45a8a0161568f5ebf48cd2ccead7735242d592e')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --disable-schemas-compile
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make -j1 DESTDIR="${pkgdir}" install
+}

Copied: gnome-maps/repos/gnome-unstable-i686/gnome-maps.install (from rev 
262403, gnome-maps/trunk/gnome-maps.install)
===
--- gnome-unstable-i686/gnome-maps.install  (rev 0)
+++ gnome-unstable-i686/gnome-maps.install  2016-03-22 16:17:15 UTC (rev 
262404)
@@ -0,0 +1,13 @@
+post_install() {
+  glib-compile-schemas usr/share/glib-2.0/schemas
+  update-desktop-database -q
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Copied: gnome-maps/repos/gnome-unstable-x86_64/PKGBUILD (from rev 262403, 
gnome-maps/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2016-03-22 16:17:15 UTC (rev 262404)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=gnome-maps
+pkgver=3.20.0
+pkgrel=1
+pkgdesc="A simple GNOME 3 maps application"
+arch=(i686 x86_64)
+license=('GPL')
+url="https://live.gnome.org/Maps;
+depends=(geocode-glib geoclue2 gjs libchamplain gnome-themes-standard libgee 
folks gfbgraph)
+makedepends=(intltool gobject-introspection)
+groups=('gnome-extra')
+install=gnome-maps.install
+source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('91827901fd7f88db99b3a0d8d45a8a0161568f5ebf48cd2ccead7735242d592e')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --disable-schemas-compile
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make -j1 DESTDIR="${pkgdir}" install
+}

Copied: gnome-maps/repos/gnome-unstable-x86_64/gnome-maps.install (from rev 
262403, gnome-maps/trunk/gnome-maps.install)
===
--- gnome-unstable-x86_64/gnome-maps.install(rev 0)
+++ gnome-unstable-x86_64/gnome-maps.install2016-03-22 16:17:15 UTC (rev 
262404)
@@ -0,0 +1,13 @@
+post_install() {
+  glib-compile-schemas usr/share/glib-2.0/schemas
+  update-desktop-database -q
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}


[arch-commits] Commit in plasma-meta/repos (testing-any testing-any/PKGBUILD)

2016-03-22 Thread Felix Yan
Date: Tuesday, March 22, 2016 @ 17:01:18
  Author: fyan
Revision: 262400

archrelease: copy trunk to testing-any

Added:
  plasma-meta/repos/testing-any/
  plasma-meta/repos/testing-any/PKGBUILD
(from rev 262399, plasma-meta/trunk/PKGBUILD)

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

Copied: plasma-meta/repos/testing-any/PKGBUILD (from rev 262399, 
plasma-meta/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2016-03-22 16:01:18 UTC (rev 262400)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=plasma-meta
+pkgver=5.6
+pkgrel=1
+pkgdesc='Meta package to install KDE Plasma'
+arch=(any)
+url='https://www.archlinux.org/'
+license=(GPL)
+depends=(bluedevil
+ drkonqi
+ kde-gtk-config
+ kdeplasma-addons
+ khelpcenter
+ kinfocenter
+ ksysguard
+ kscreen
+ ksshaskpass
+ kwrited
+ oxygen
+ plasma-desktop
+ plasma-nm
+ plasma-workspace-wallpapers
+plasma-mediacenter
+plasma-pa
+plasma-sdk
+kwayland-integration
+kwallet-pam
+kgamma5
+user-manager
+sddm-kcm
+breeze-gtk
+)


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

2016-03-22 Thread Felix Yan
Date: Tuesday, March 22, 2016 @ 17:00:18
  Author: fyan
Revision: 262399

upgpkg: plasma-meta 5.6-1

Modified:
  plasma-meta/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-22 15:47:38 UTC (rev 262398)
+++ PKGBUILD2016-03-22 16:00:18 UTC (rev 262399)
@@ -4,7 +4,7 @@
 
 pkgname=plasma-meta
 pkgver=5.6
-pkgrel=0.1
+pkgrel=1
 pkgdesc='Meta package to install KDE Plasma'
 arch=(any)
 url='https://www.archlinux.org/'


  1   2   3   >