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

2016-01-12 Thread Felix Yan
Date: Wednesday, January 13, 2016 @ 03:42:45
  Author: fyan
Revision: 156211

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

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

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

Copied: haskell-x509/repos/community-staging-i686/PKGBUILD (from rev 156210, 
haskell-x509/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-01-13 02:42:45 UTC (rev 156211)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=x509
+pkgname=haskell-x509
+pkgver=1.6.3
+pkgrel=6
+pkgdesc="X509 reader and writer"
+url="http://github.com/vincenthz/hs-certificate;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-asn1-encoding" "haskell-asn1-parse" 
"haskell-asn1-types"
+ "haskell-cryptonite" "haskell-hourglass" "haskell-memory" 
"haskell-mtl" "haskell-pem")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('36c62877046e7ecd6c913da4c21264e18eb56f7cba7abb5d41c42e95845fbade')
+
+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-x509/repos/community-staging-i686/haskell-x509.install (from 
rev 156210, haskell-x509/trunk/haskell-x509.install)
===
--- community-staging-i686/haskell-x509.install (rev 0)
+++ community-staging-i686/haskell-x509.install 2016-01-13 02:42:45 UTC (rev 
156211)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-x509
+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-x509/repos/community-staging-x86_64/PKGBUILD (from rev 156210, 
haskell-x509/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-01-13 02:42:45 UTC (rev 156211)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=x509
+pkgname=haskell-x509
+pkgver=1.6.3
+pkgrel=6
+pkgdesc="X509 reader and writer"
+url="http://github.com/vincenthz/hs-certificate;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-asn1-encoding" "haskell-asn1-parse" 
"haskell-asn1-types"
+ "haskell-cryptonite" "haskell-hourglass" "haskell-memory" 
"haskell-mtl" "haskell-pem")
+options=('staticlibs')

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

2016-01-12 Thread Felix Yan
Date: Wednesday, January 13, 2016 @ 03:42:15
  Author: fyan
Revision: 156210

upgpkg: haskell-x509 1.6.3-6

rebuild with memory-0.11

Modified:
  haskell-x509/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-01-13 02:39:42 UTC (rev 156209)
+++ PKGBUILD2016-01-13 02:42:15 UTC (rev 156210)
@@ -5,7 +5,7 @@
 _hkgname=x509
 pkgname=haskell-x509
 pkgver=1.6.3
-pkgrel=5
+pkgrel=6
 pkgdesc="X509 reader and writer"
 url="http://github.com/vincenthz/hs-certificate;
 license=("custom:BSD3")


[arch-commits] Commit in (5 files)

2016-01-12 Thread Felix Yan
Date: Wednesday, January 13, 2016 @ 03:55:14
  Author: fyan
Revision: 156220

addpkg: haskell-word8 0.1.2-1

Added:
  haskell-word8/
  haskell-word8/repos/
  haskell-word8/trunk/
  haskell-word8/trunk/PKGBUILD
  haskell-word8/trunk/haskell-word8.install

---+
 PKGBUILD  |   42 ++
 haskell-word8.install |   18 ++
 2 files changed, 60 insertions(+)

Added: haskell-word8/trunk/PKGBUILD
===
--- haskell-word8/trunk/PKGBUILD(rev 0)
+++ haskell-word8/trunk/PKGBUILD2016-01-13 02:55:14 UTC (rev 156220)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=word8
+pkgname=haskell-word8
+pkgver=0.1.2
+pkgrel=1
+pkgdesc="Word8 library"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('3cbae3755a078ecff46524b3f6e0018f7e796e6dac9c710fe09b433c544676dd')
+
+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"
+}


Property changes on: haskell-word8/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: haskell-word8/trunk/haskell-word8.install
===
--- haskell-word8/trunk/haskell-word8.install   (rev 0)
+++ haskell-word8/trunk/haskell-word8.install   2016-01-13 02:55:14 UTC (rev 
156220)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-word8
+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)
+}


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

2016-01-12 Thread Felix Yan
Date: Wednesday, January 13, 2016 @ 04:06:57
  Author: fyan
Revision: 156225

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

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

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

Copied: haskell-tls/repos/community-staging-i686/PKGBUILD (from rev 156224, 
haskell-tls/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-01-13 03:06:57 UTC (rev 156225)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=tls
+pkgname=haskell-tls
+pkgver=1.3.4
+pkgrel=6
+pkgdesc="TLS/SSL protocol native implementation (Server and Client)"
+url="http://github.com/vincenthz/hs-tls;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-asn1-encoding" "haskell-asn1-types" 
"haskell-async" "haskell-cereal"
+ "haskell-cryptonite" "haskell-data-default-class" "haskell-memory" 
"haskell-mtl"
+ "haskell-network" "haskell-x509" "haskell-x509-store" 
"haskell-x509-validation")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('49fff2bd6b420bb57f7cc78445f9a17547a5ff4a72e29135695c9cc2d91e19c1')
+
+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-hans -fnetwork -fcompat
+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-tls/repos/community-staging-i686/haskell-tls.install (from rev 
156224, haskell-tls/trunk/haskell-tls.install)
===
--- community-staging-i686/haskell-tls.install  (rev 0)
+++ community-staging-i686/haskell-tls.install  2016-01-13 03:06:57 UTC (rev 
156225)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-tls
+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-tls/repos/community-staging-x86_64/PKGBUILD (from rev 156224, 
haskell-tls/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-01-13 03:06:57 UTC (rev 156225)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=tls
+pkgname=haskell-tls
+pkgver=1.3.4
+pkgrel=6
+pkgdesc="TLS/SSL protocol native implementation (Server and Client)"
+url="http://github.com/vincenthz/hs-tls;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-asn1-encoding" 

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

2016-01-12 Thread Felix Yan
Date: Wednesday, January 13, 2016 @ 04:06:27
  Author: fyan
Revision: 156224

upgpkg: haskell-tls 1.3.4-6

rebuild with memory-0.11

Modified:
  haskell-tls/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-01-13 02:56:35 UTC (rev 156223)
+++ PKGBUILD2016-01-13 03:06:27 UTC (rev 156224)
@@ -5,7 +5,7 @@
 _hkgname=tls
 pkgname=haskell-tls
 pkgver=1.3.4
-pkgrel=5
+pkgrel=6
 pkgdesc="TLS/SSL protocol native implementation (Server and Client)"
 url="http://github.com/vincenthz/hs-tls;
 license=("custom:BSD3")


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

2016-01-12 Thread Felix Yan
Date: Wednesday, January 13, 2016 @ 04:44:39
  Author: fyan
Revision: 156256

upgpkg: pandoc 1.16.0.1-2

rebuild with memory-0.11, split-0.2.3

Modified:
  pandoc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-01-13 03:42:23 UTC (rev 156255)
+++ PKGBUILD2016-01-13 03:44:39 UTC (rev 156256)
@@ -5,7 +5,7 @@
 pkgbase=pandoc
 pkgname=(pandoc haskell-pandoc)
 pkgver=1.16.0.1
-pkgrel=1
+pkgrel=2
 pkgdesc="Conversion between markup formats"
 url="http://pandoc.org;
 license=("GPL")


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

2016-01-12 Thread Felix Yan
Date: Wednesday, January 13, 2016 @ 04:45:11
  Author: fyan
Revision: 156257

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

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

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

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

Copied: pandoc/repos/community-staging-i686/haskell-pandoc.install (from rev 
156256, pandoc/trunk/haskell-pandoc.install)
===
--- community-staging-i686/haskell-pandoc.install   
(rev 0)
+++ community-staging-i686/haskell-pandoc.install   2016-01-13 03:45:11 UTC 
(rev 156257)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-pandoc
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd 

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

2016-01-12 Thread Felix Yan
Date: Wednesday, January 13, 2016 @ 04:45:20
  Author: fyan
Revision: 156258

upgpkg: haskell-http-conduit 2.1.8-14

rebuild with memory-0.11, split-0.2.3

Modified:
  haskell-http-conduit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-01-13 03:45:11 UTC (rev 156257)
+++ PKGBUILD2016-01-13 03:45:20 UTC (rev 156258)
@@ -5,7 +5,7 @@
 _hkgname=http-conduit
 pkgname=haskell-http-conduit
 pkgver=2.1.8
-pkgrel=13
+pkgrel=14
 pkgdesc="HTTP client package with conduit interface and HTTPS support"
 url="http://www.yesodweb.com/book/http-conduit;
 license=("custom:BSD3")


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

2016-01-12 Thread Gaetan Bisson
Date: Wednesday, January 13, 2016 @ 08:14:36
  Author: bisson
Revision: 258154

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

Added:
  zip/repos/extra-i686/PKGBUILD
(from rev 258153, zip/trunk/PKGBUILD)
  zip/repos/extra-i686/zipnote.patch
(from rev 258153, zip/trunk/zipnote.patch)
  zip/repos/extra-x86_64/PKGBUILD
(from rev 258153, zip/trunk/PKGBUILD)
  zip/repos/extra-x86_64/zipnote.patch
(from rev 258153, zip/trunk/zipnote.patch)
Deleted:
  zip/repos/extra-i686/PKGBUILD
  zip/repos/extra-x86_64/PKGBUILD

+
 /PKGBUILD  |   78 +++
 extra-i686/PKGBUILD|   36 ---
 extra-i686/zipnote.patch   |   13 +++
 extra-x86_64/PKGBUILD  |   36 ---
 extra-x86_64/zipnote.patch |   13 +++
 5 files changed, 104 insertions(+), 72 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-13 07:13:54 UTC (rev 258153)
+++ extra-i686/PKGBUILD 2016-01-13 07:14:36 UTC (rev 258154)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson 
-# Contributor: dorphell 
-
-pkgname=zip
-pkgver=3.0
-_pkgver=${pkgver/./}
-pkgrel=6
-pkgdesc='Compressor/archiver for creating and modifying zipfiles'
-url='http://www.info-zip.org/Zip.html'
-arch=('i686' 'x86_64')
-license=('custom')
-depends=('bzip2')
-source=("http://downloads.sourceforge.net/infozip/${pkgname}${_pkgver}.tar.gz;)
-sha1sums=('c9f4099ecf2772b53c2dd4a8e508064ce015d182')
-
-options=('!makeflags')
-
-prepare() {
-   cd "${srcdir}/${pkgname}${_pkgver}"
-   sed -e "/^CFLAGS_NOOPT =/s/\$/ $CPPFLAGS $CFLAGS/" -i unix/Makefile
-   sed -e "s/^LFLAGS1=''/LFLAGS1=$LDFLAGS/" -i unix/configure
-}
-
-build() {
-   cd "${srcdir}/${pkgname}${_pkgver}"
-   make -f unix/Makefile prefix=/usr generic_gcc
-}
-
-package() {
-   cd "${srcdir}/${pkgname}${_pkgver}"
-   make -f unix/Makefile prefix="${pkgdir}"/usr \
-   MANDIR=${pkgdir}/usr/share/man/man1 \
-   install
-   install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: zip/repos/extra-i686/PKGBUILD (from rev 258153, zip/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-13 07:14:36 UTC (rev 258154)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: dorphell 
+
+pkgname=zip
+pkgver=3.0
+_pkgver=${pkgver/./}
+pkgrel=7
+pkgdesc='Compressor/archiver for creating and modifying zipfiles'
+url='http://www.info-zip.org/Zip.html'
+arch=('i686' 'x86_64')
+license=('custom')
+depends=('bzip2')
+source=("http://downloads.sourceforge.net/infozip/${pkgname}${_pkgver}.tar.gz;
+'zipnote.patch')
+sha1sums=('c9f4099ecf2772b53c2dd4a8e508064ce015d182'
+  'bb7301ba3339af9b9837dfc323777393f5c53a65')
+
+options=('!makeflags')
+
+prepare() {
+   cd "${srcdir}/${pkgname}${_pkgver}"
+   sed -e "/^CFLAGS_NOOPT =/s/\$/ $CPPFLAGS $CFLAGS/" -i unix/Makefile
+   sed -e "s/^LFLAGS1=''/LFLAGS1=$LDFLAGS/" -i unix/configure
+   patch -p1 -i ../zipnote.patch
+}
+
+build() {
+   cd "${srcdir}/${pkgname}${_pkgver}"
+   make -f unix/Makefile prefix=/usr generic_gcc
+}
+
+package() {
+   cd "${srcdir}/${pkgname}${_pkgver}"
+   make -f unix/Makefile prefix="${pkgdir}"/usr \
+   MANDIR=${pkgdir}/usr/share/man/man1 \
+   install
+   install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}

Copied: zip/repos/extra-i686/zipnote.patch (from rev 258153, 
zip/trunk/zipnote.patch)
===
--- extra-i686/zipnote.patch(rev 0)
+++ extra-i686/zipnote.patch2016-01-13 07:14:36 UTC (rev 258154)
@@ -0,0 +1,13 @@
+diff --git a/zipnote.c b/zipnote.c
+index 5e02cb6..996f012 100644
+--- a/zipnote.c
 b/zipnote.c
+@@ -661,7 +661,7 @@ char **argv;/* command line tokens */
+ if ((r = zipcopy(z)) != ZE_OK)
+   ziperr(r, "was copying an entry");
+   }
+-  fclose(x);
++  fclose(in_file);
+ 
+   /* Write central directory and end of central directory with new comments */
+   if ((c = zftello(y)) == (zoff_t)-1)/* get start of central */

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-13 07:13:54 UTC (rev 258153)
+++ extra-x86_64/PKGBUILD   2016-01-13 07:14:36 UTC (rev 258154)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson 
-# Contributor: dorphell 
-
-pkgname=zip
-pkgver=3.0
-_pkgver=${pkgver/./}
-pkgrel=6
-pkgdesc='Compressor/archiver for creating and modifying zipfiles'

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

2016-01-12 Thread Jan Steffens
Date: Wednesday, January 13, 2016 @ 08:37:15
  Author: heftig
Revision: 258155

1.1.2

Modified:
  opus/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-01-13 07:14:36 UTC (rev 258154)
+++ PKGBUILD2016-01-13 07:37:15 UTC (rev 258155)
@@ -5,7 +5,7 @@
 # Contributor: pumbur
 
 pkgname=opus
-pkgver=1.1.1
+pkgver=1.1.2
 pkgrel=1
 pkgdesc="Codec designed for interactive speech and audio transmission over the 
Internet"
 arch=(i686 x86_64)
@@ -13,11 +13,12 @@
 license=(BSD)
 depends=(glibc)
 source=(http://downloads.us.xiph.org/releases/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('cfb354d4c65217ca32a762f8ab15f2ac')
+md5sums=('1f08a661bc72930187893a07f3741a91')
 
 build() {
   cd $pkgname-$pkgver
-  ./configure --prefix=/usr --enable-custom-modes --disable-static
+  ./configure --prefix=/usr --enable-custom-modes --disable-static \
+--enable-intrinsics --enable-rtcd
   make
 }
 


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

2016-01-12 Thread Jan Steffens
Date: Wednesday, January 13, 2016 @ 08:38:24
  Author: heftig
Revision: 258156

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-13 07:37:15 UTC (rev 258155)
+++ extra-i686/PKGBUILD 2016-01-13 07:38:24 UTC (rev 258156)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-# Contributor: DrZaius 
-# Contributor: pumbur
-
-pkgname=opus
-pkgver=1.1.1
-pkgrel=1
-pkgdesc="Codec designed for interactive speech and audio transmission over the 
Internet"
-arch=(i686 x86_64)
-url="http://www.opus-codec.org/;
-license=(BSD)
-depends=(glibc)
-source=(http://downloads.us.xiph.org/releases/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('cfb354d4c65217ca32a762f8ab15f2ac')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --enable-custom-modes --disable-static
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: opus/repos/extra-i686/PKGBUILD (from rev 258155, opus/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-13 07:38:24 UTC (rev 258156)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+# Contributor: DrZaius 
+# Contributor: pumbur
+
+pkgname=opus
+pkgver=1.1.2
+pkgrel=1
+pkgdesc="Codec designed for interactive speech and audio transmission over the 
Internet"
+arch=(i686 x86_64)
+url="http://www.opus-codec.org/;
+license=(BSD)
+depends=(glibc)
+source=(http://downloads.us.xiph.org/releases/$pkgname/$pkgname-$pkgver.tar.gz)
+md5sums=('1f08a661bc72930187893a07f3741a91')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --enable-custom-modes --disable-static \
+--enable-intrinsics --enable-rtcd
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-13 07:37:15 UTC (rev 258155)
+++ extra-x86_64/PKGBUILD   2016-01-13 07:38:24 UTC (rev 258156)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-# Contributor: DrZaius 
-# Contributor: pumbur
-
-pkgname=opus
-pkgver=1.1.1
-pkgrel=1
-pkgdesc="Codec designed for interactive speech and audio transmission over the 
Internet"
-arch=(i686 x86_64)
-url="http://www.opus-codec.org/;
-license=(BSD)
-depends=(glibc)
-source=(http://downloads.us.xiph.org/releases/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('cfb354d4c65217ca32a762f8ab15f2ac')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --enable-custom-modes --disable-static
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: opus/repos/extra-x86_64/PKGBUILD (from rev 258155, opus/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-01-13 07:38:24 UTC (rev 258156)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+# Contributor: DrZaius 
+# Contributor: pumbur
+
+pkgname=opus
+pkgver=1.1.2
+pkgrel=1
+pkgdesc="Codec designed for interactive speech and audio transmission over the 
Internet"
+arch=(i686 x86_64)
+url="http://www.opus-codec.org/;
+license=(BSD)
+depends=(glibc)
+source=(http://downloads.us.xiph.org/releases/$pkgname/$pkgname-$pkgver.tar.gz)
+md5sums=('1f08a661bc72930187893a07f3741a91')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr 

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

2016-01-12 Thread Felix Yan
Date: Wednesday, January 13, 2016 @ 03:25:10
  Author: fyan
Revision: 156199

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

Added:
  haskell-optparse-simple/repos/community-i686/
  haskell-optparse-simple/repos/community-i686/PKGBUILD
(from rev 156198, haskell-optparse-simple/trunk/PKGBUILD)
  haskell-optparse-simple/repos/community-i686/haskell-optparse-simple.install
(from rev 156198, 
haskell-optparse-simple/trunk/haskell-optparse-simple.install)
  haskell-optparse-simple/repos/community-x86_64/
  haskell-optparse-simple/repos/community-x86_64/PKGBUILD
(from rev 156198, haskell-optparse-simple/trunk/PKGBUILD)
  haskell-optparse-simple/repos/community-x86_64/haskell-optparse-simple.install
(from rev 156198, 
haskell-optparse-simple/trunk/haskell-optparse-simple.install)

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

Copied: haskell-optparse-simple/repos/community-i686/PKGBUILD (from rev 156198, 
haskell-optparse-simple/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-01-13 02:25:10 UTC (rev 156199)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=optparse-simple
+pkgname=haskell-optparse-simple
+pkgver=0.0.3
+pkgrel=1
+pkgdesc="Simple interface to optparse-applicative"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-either" "haskell-gitrev" 
"haskell-optparse-applicative")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('4547f0a6c1bd959b1d9c3c2a5fabee39ac9a19dffabbb2d75461a2d461df8c7e')
+
+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-optparse-simple/repos/community-i686/haskell-optparse-simple.install 
(from rev 156198, haskell-optparse-simple/trunk/haskell-optparse-simple.install)
===
--- community-i686/haskell-optparse-simple.install  
(rev 0)
+++ community-i686/haskell-optparse-simple.install  2016-01-13 02:25:10 UTC 
(rev 156199)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-optparse-simple
+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-optparse-simple/repos/community-x86_64/PKGBUILD (from rev 
156198, haskell-optparse-simple/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-01-13 02:25:10 UTC (rev 156199)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=optparse-simple
+pkgname=haskell-optparse-simple
+pkgver=0.0.3
+pkgrel=1
+pkgdesc="Simple interface to optparse-applicative"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-either" "haskell-gitrev" 

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

2016-01-12 Thread Felix Yan
Date: Wednesday, January 13, 2016 @ 03:39:11
  Author: fyan
Revision: 156208

upgpkg: haskell-cryptonite 0.10-2

rebuild with memory-0.11

Modified:
  haskell-cryptonite/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-01-13 02:39:06 UTC (rev 156207)
+++ PKGBUILD2016-01-13 02:39:11 UTC (rev 156208)
@@ -5,7 +5,7 @@
 _hkgname=cryptonite
 pkgname=haskell-cryptonite
 pkgver=0.10
-pkgrel=1
+pkgrel=2
 pkgdesc="Cryptography Primitives sink"
 url="https://github.com/vincenthz/cryptonite;
 license=("custom:BSD3")


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

2016-01-12 Thread Felix Yan
Date: Wednesday, January 13, 2016 @ 03:39:42
  Author: fyan
Revision: 156209

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

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

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

Copied: haskell-cryptonite/repos/community-staging-i686/PKGBUILD (from rev 
156208, haskell-cryptonite/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-01-13 02:39:42 UTC (rev 156209)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=cryptonite
+pkgname=haskell-cryptonite
+pkgver=0.10
+pkgrel=2
+pkgdesc="Cryptography Primitives sink"
+url="https://github.com/vincenthz/cryptonite;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-memory")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('55343f018f78de480ea1e7f09dd72307ce0b5eb5e82331512370d5b01ac9735b')
+
+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 \
+-fsupport_deepseq -finteger-gmp -f-support_pclmuldq 
-fsupport_rdrand -fsupport_aesni
+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-cryptonite/repos/community-staging-i686/haskell-cryptonite.install 
(from rev 156208, haskell-cryptonite/trunk/haskell-cryptonite.install)
===
--- community-staging-i686/haskell-cryptonite.install   
(rev 0)
+++ community-staging-i686/haskell-cryptonite.install   2016-01-13 02:39:42 UTC 
(rev 156209)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-cryptonite
+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-cryptonite/repos/community-staging-x86_64/PKGBUILD (from rev 
156208, haskell-cryptonite/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-01-13 02:39:42 UTC (rev 156209)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=cryptonite
+pkgname=haskell-cryptonite
+pkgver=0.10
+pkgrel=2
+pkgdesc="Cryptography Primitives sink"
+url="https://github.com/vincenthz/cryptonite;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-memory")
+options=('staticlibs')

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

2016-01-12 Thread Felix Yan
Date: Wednesday, January 13, 2016 @ 03:39:06
  Author: fyan
Revision: 156207

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

Added:
  haskell-retry/repos/community-i686/
  haskell-retry/repos/community-i686/PKGBUILD
(from rev 156206, haskell-retry/trunk/PKGBUILD)
  haskell-retry/repos/community-i686/haskell-retry.install
(from rev 156206, haskell-retry/trunk/haskell-retry.install)
  haskell-retry/repos/community-x86_64/
  haskell-retry/repos/community-x86_64/PKGBUILD
(from rev 156206, haskell-retry/trunk/PKGBUILD)
  haskell-retry/repos/community-x86_64/haskell-retry.install
(from rev 156206, haskell-retry/trunk/haskell-retry.install)

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

Copied: haskell-retry/repos/community-i686/PKGBUILD (from rev 156206, 
haskell-retry/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-01-13 02:39:06 UTC (rev 156207)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=retry
+pkgname=haskell-retry
+pkgver=0.7.0.1
+pkgrel=1
+pkgdesc="Retry combinators for monadic actions that may fail"
+url="http://github.com/Soostone/retry;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-data-default-class" "haskell-exceptions"
+ "haskell-random")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('7ab82a1ba52eaf2a98186ff853d26fa0f54f676939739b2d2bd8735e0406486a')
+
+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-retry/repos/community-i686/haskell-retry.install (from rev 
156206, haskell-retry/trunk/haskell-retry.install)
===
--- community-i686/haskell-retry.install(rev 0)
+++ community-i686/haskell-retry.install2016-01-13 02:39:06 UTC (rev 
156207)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-retry
+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-retry/repos/community-x86_64/PKGBUILD (from rev 156206, 
haskell-retry/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-01-13 02:39:06 UTC (rev 156207)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=retry
+pkgname=haskell-retry
+pkgver=0.7.0.1
+pkgrel=1
+pkgdesc="Retry combinators for monadic actions that may fail"
+url="http://github.com/Soostone/retry;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-data-default-class" "haskell-exceptions"
+ "haskell-random")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('7ab82a1ba52eaf2a98186ff853d26fa0f54f676939739b2d2bd8735e0406486a')
+
+build() {
+cd 

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

2016-01-12 Thread Felix Yan
Date: Wednesday, January 13, 2016 @ 03:55:49
  Author: fyan
Revision: 156221

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

Added:
  haskell-word8/repos/community-i686/
  haskell-word8/repos/community-i686/PKGBUILD
(from rev 156220, haskell-word8/trunk/PKGBUILD)
  haskell-word8/repos/community-i686/haskell-word8.install
(from rev 156220, haskell-word8/trunk/haskell-word8.install)
  haskell-word8/repos/community-x86_64/
  haskell-word8/repos/community-x86_64/PKGBUILD
(from rev 156220, haskell-word8/trunk/PKGBUILD)
  haskell-word8/repos/community-x86_64/haskell-word8.install
(from rev 156220, haskell-word8/trunk/haskell-word8.install)

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

Copied: haskell-word8/repos/community-i686/PKGBUILD (from rev 156220, 
haskell-word8/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-01-13 02:55:49 UTC (rev 156221)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=word8
+pkgname=haskell-word8
+pkgver=0.1.2
+pkgrel=1
+pkgdesc="Word8 library"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('3cbae3755a078ecff46524b3f6e0018f7e796e6dac9c710fe09b433c544676dd')
+
+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-word8/repos/community-i686/haskell-word8.install (from rev 
156220, haskell-word8/trunk/haskell-word8.install)
===
--- community-i686/haskell-word8.install(rev 0)
+++ community-i686/haskell-word8.install2016-01-13 02:55:49 UTC (rev 
156221)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-word8
+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-word8/repos/community-x86_64/PKGBUILD (from rev 156220, 
haskell-word8/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-01-13 02:55:49 UTC (rev 156221)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=word8
+pkgname=haskell-word8
+pkgver=0.1.2
+pkgrel=1
+pkgdesc="Word8 library"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('3cbae3755a078ecff46524b3f6e0018f7e796e6dac9c710fe09b433c544676dd')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+

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

2016-01-12 Thread Felix Yan
Date: Wednesday, January 13, 2016 @ 03:56:35
  Author: fyan
Revision: 156223

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

Added:
  haskell-x509-system/repos/community-staging-i686/
  haskell-x509-system/repos/community-staging-i686/PKGBUILD
(from rev 156222, haskell-x509-system/trunk/PKGBUILD)
  haskell-x509-system/repos/community-staging-i686/haskell-x509-system.install
(from rev 156222, haskell-x509-system/trunk/haskell-x509-system.install)
  haskell-x509-system/repos/community-staging-x86_64/
  haskell-x509-system/repos/community-staging-x86_64/PKGBUILD
(from rev 156222, haskell-x509-system/trunk/PKGBUILD)
  haskell-x509-system/repos/community-staging-x86_64/haskell-x509-system.install
(from rev 156222, haskell-x509-system/trunk/haskell-x509-system.install)

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

Copied: haskell-x509-system/repos/community-staging-i686/PKGBUILD (from rev 
156222, haskell-x509-system/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-01-13 02:56:35 UTC (rev 156223)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=x509-system
+pkgname=haskell-x509-system
+pkgver=1.6.3
+pkgrel=3
+pkgdesc="Handle per-operating-system X.509 accessors and storage"
+url="http://github.com/vincenthz/hs-certificate;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-mtl" "haskell-pem" "haskell-x509" 
"haskell-x509-store")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('24237c3df1bf692fcf7bade432970ee2eb06db7437fa0e95986ef7535a68f6e0')
+
+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-x509-system/repos/community-staging-i686/haskell-x509-system.install 
(from rev 156222, haskell-x509-system/trunk/haskell-x509-system.install)
===
--- community-staging-i686/haskell-x509-system.install  
(rev 0)
+++ community-staging-i686/haskell-x509-system.install  2016-01-13 02:56:35 UTC 
(rev 156223)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-x509-system
+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-x509-system/repos/community-staging-x86_64/PKGBUILD (from rev 
156222, haskell-x509-system/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-01-13 02:56:35 UTC (rev 156223)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=x509-system
+pkgname=haskell-x509-system
+pkgver=1.6.3
+pkgrel=3
+pkgdesc="Handle per-operating-system X.509 accessors and storage"
+url="http://github.com/vincenthz/hs-certificate;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-mtl" 

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

2016-01-12 Thread Felix Yan
Date: Wednesday, January 13, 2016 @ 03:56:05
  Author: fyan
Revision: 156222

upgpkg: haskell-x509-system 1.6.3-3

rebuild with memory-0.11

Modified:
  haskell-x509-system/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-01-13 02:55:49 UTC (rev 156221)
+++ PKGBUILD2016-01-13 02:56:05 UTC (rev 156222)
@@ -5,7 +5,7 @@
 _hkgname=x509-system
 pkgname=haskell-x509-system
 pkgver=1.6.3
-pkgrel=2
+pkgrel=3
 pkgdesc="Handle per-operating-system X.509 accessors and storage"
 url="http://github.com/vincenthz/hs-certificate;
 license=("custom:BSD3")


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

2016-01-12 Thread Felix Yan
Date: Wednesday, January 13, 2016 @ 04:41:52
  Author: fyan
Revision: 156254

upgpkg: haskell-conduit-combinators 1.0.3-2

rebuild with memory-0.11, split-0.2.3

Modified:
  haskell-conduit-combinators/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-01-13 03:36:49 UTC (rev 156253)
+++ PKGBUILD2016-01-13 03:41:52 UTC (rev 156254)
@@ -5,7 +5,7 @@
 _hkgname=conduit-combinators
 pkgname=haskell-conduit-combinators
 pkgver=1.0.3
-pkgrel=1
+pkgrel=2
 pkgdesc="Commonly used conduit functions, for both chunked and unchunked data"
 url="https://github.com/fpco/conduit-combinators;
 license=("MIT")


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

2016-01-12 Thread Felix Yan
Date: Wednesday, January 13, 2016 @ 05:00:12
  Author: fyan
Revision: 156261

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

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

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

Copied: pandoc-citeproc/repos/community-staging-i686/PKGBUILD (from rev 156260, 
pandoc-citeproc/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-01-13 04:00:12 UTC (rev 156261)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgbase=pandoc-citeproc
+pkgname=(pandoc-citeproc haskell-pandoc-citeproc)
+pkgver=0.9
+pkgrel=7
+pkgdesc="Supports using pandoc with citeproc"
+url="http://hackage.haskell.org/package/${pkgbase};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+makedepends=("ghc=7.10.3" "haskell-aeson" "haskell-aeson-pretty" 
"haskell-attoparsec"
+ "haskell-data-default" "haskell-hs-bibutils" "haskell-mtl"
+ "haskell-old-locale" "haskell-pandoc" "haskell-pandoc-types" 
"haskell-parsec"
+ "haskell-rfc5051" "haskell-setenv" "haskell-split" "haskell-syb"
+ "haskell-tagsoup" "haskell-temporary" "haskell-text" 
"haskell-text-icu"
+ "haskell-unordered-containers" "haskell-vector" 
"haskell-xml-conduit" "haskell-yaml")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${pkgbase}/${pkgver}/${pkgbase}-${pkgver}.tar.gz;)
+sha256sums=('ae880aa27b5fcaf93886844bd9473c764329dc96211482bf014f350335887fbd')
+
+build() {
+cd "${srcdir}/${pkgbase}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgbase}" 
--datasubdir="$pkgbase" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-debug -f-test_citeproc -funicode_collation -f-embed_data_files 
-fbibutils
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package_pandoc-citeproc() {
+depends=('pandoc' 'icu')
+
+cd "${srcdir}/${pkgbase}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -r "$pkgdir"/usr/{lib,share/doc}
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_haskell-pandoc-citeproc() {
+pkgdesc="Supports using pandoc with citeproc (docs and libraries)"
+depends=("${makedepends[@]}" 'pandoc-citeproc')
+install="haskell-pandoc-citeproc.install"
+
+cd "${srcdir}/${pkgbase}-${pkgver}"
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgbase}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${pkgbase}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -r "$pkgdir"/usr/share/{pandoc-citeproc,man} "$pkgdir"/usr/bin
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: 
pandoc-citeproc/repos/community-staging-i686/haskell-pandoc-citeproc.install 
(from rev 156260, pandoc-citeproc/trunk/haskell-pandoc-citeproc.install)
===
--- community-staging-i686/haskell-pandoc-citeproc.install  
(rev 0)
+++ community-staging-i686/haskell-pandoc-citeproc.install  2016-01-13 
04:00:12 UTC (rev 156261)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-pandoc-citeproc
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; 

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

2016-01-12 Thread Felix Yan
Date: Wednesday, January 13, 2016 @ 04:59:38
  Author: fyan
Revision: 156260

upgpkg: pandoc-citeproc 0.9-7

rebuild with memory-0.11, split-0.2.3

Modified:
  pandoc-citeproc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-01-13 03:45:50 UTC (rev 156259)
+++ PKGBUILD2016-01-13 03:59:38 UTC (rev 156260)
@@ -5,7 +5,7 @@
 pkgbase=pandoc-citeproc
 pkgname=(pandoc-citeproc haskell-pandoc-citeproc)
 pkgver=0.9
-pkgrel=6
+pkgrel=7
 pkgdesc="Supports using pandoc with citeproc"
 url="http://hackage.haskell.org/package/${pkgbase};
 license=("custom:BSD3")


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

2016-01-12 Thread Felix Yan
Date: Wednesday, January 13, 2016 @ 05:00:56
  Author: fyan
Revision: 156262

upgpkg: pandoc-crossref 0.1.6.3-3

rebuild with memory-0.11, split-0.2.3

Modified:
  pandoc-crossref/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-01-13 04:00:12 UTC (rev 156261)
+++ PKGBUILD2016-01-13 04:00:56 UTC (rev 156262)
@@ -5,7 +5,7 @@
 pkgbase=pandoc-crossref
 pkgname=(pandoc-crossref haskell-pandoc-crossref)
 pkgver=0.1.6.3
-pkgrel=2
+pkgrel=3
 pkgdesc="Pandoc filter for cross-references"
 url="http://hackage.haskell.org/package/${pkgbase};
 license=("GPL2")


[arch-commits] Commit in android-tools/trunk (PKGBUILD build.sh generate_build.rb)

2016-01-12 Thread Anatol Pomozov
Date: Wednesday, January 13, 2016 @ 07:41:16
  Author: anatolik
Revision: 156291

upgpkg: android-tools 6.0.1_r10-1

Modified:
  android-tools/trunk/PKGBUILD
  android-tools/trunk/build.sh
  android-tools/trunk/generate_build.rb

---+
 PKGBUILD  |6 +++---
 build.sh  |   22 +++---
 generate_build.rb |2 +-
 3 files changed, 15 insertions(+), 15 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-01-13 06:27:34 UTC (rev 156290)
+++ PKGBUILD2016-01-13 06:41:16 UTC (rev 156291)
@@ -16,7 +16,7 @@
 
git+https://android.googlesource.com/platform/system/extras#tag=android-$pkgver
 
git+https://android.googlesource.com/platform/external/libselinux#tag=android-$pkgver
 
git+https://android.googlesource.com/platform/external/f2fs-tools#tag=android-$pkgver
-build.sh
+build.sh # regenerate this file with generate_build.rb tool
 fix_build.patch
 bash_completion) # Bash completion file was taken from 
https://github.com/mbrubeck/android-completion
 sha1sums=('SKIP'
@@ -23,12 +23,12 @@
   'SKIP'
   'SKIP'
   'SKIP'
-  '2bf75e141d4dbbc04ad23c19b3d5e67300de3edd'
+  'd47604b60cc123641d52eed8f6495265725bf9d3'
   '40a978209b6d1bbf99e04b8bd5fca6429b97f1b1'
   'e1bd94fd4dd260af3c068496071d67738d431aec')
 
 prepare() {
-  patch -p1 < ../fix_build.patch
+  patch -p1 < fix_build.patch
 }
 
 build() {

Modified: build.sh
===
--- build.sh2016-01-13 06:27:34 UTC (rev 156290)
+++ build.sh2016-01-13 06:41:16 UTC (rev 156291)
@@ -56,17 +56,17 @@
 gcc -o core/libsparse/sparse_read.c.o -std=gnu11 $CFLAGS $CPPFLAGS 
-Icore/libsparse/include -c core/libsparse/sparse_read.c
 g++ -o core/libziparchive/zip_archive.cc.o -std=gnu++11 $CXXFLAGS $CPPFLAGS 
-Icore/base/include -Icore/include -c core/libziparchive/zip_archive.cc
 g++ -o core/libutils/FileMap.cpp.o -std=gnu++11 $CXXFLAGS $CPPFLAGS 
-Icore/include -c core/libutils/FileMap.cpp
-gcc -o extras/ext4_utils/make_ext4fs.c.o -std=gnu11 $CFLAGS $CPPFLAGS 
-Icore/libsparse/include -Icore/include -c extras/ext4_utils/make_ext4fs.c
-gcc -o extras/ext4_utils/ext4fixup.c.o -std=gnu11 $CFLAGS $CPPFLAGS 
-Icore/libsparse/include -Icore/include -c extras/ext4_utils/ext4fixup.c
-gcc -o extras/ext4_utils/ext4_utils.c.o -std=gnu11 $CFLAGS $CPPFLAGS 
-Icore/libsparse/include -Icore/include -c extras/ext4_utils/ext4_utils.c
-gcc -o extras/ext4_utils/allocate.c.o -std=gnu11 $CFLAGS $CPPFLAGS 
-Icore/libsparse/include -Icore/include -c extras/ext4_utils/allocate.c
-gcc -o extras/ext4_utils/contents.c.o -std=gnu11 $CFLAGS $CPPFLAGS 
-Icore/libsparse/include -Icore/include -c extras/ext4_utils/contents.c
-gcc -o extras/ext4_utils/extent.c.o -std=gnu11 $CFLAGS $CPPFLAGS 
-Icore/libsparse/include -Icore/include -c extras/ext4_utils/extent.c
-gcc -o extras/ext4_utils/indirect.c.o -std=gnu11 $CFLAGS $CPPFLAGS 
-Icore/libsparse/include -Icore/include -c extras/ext4_utils/indirect.c
-gcc -o extras/ext4_utils/sha1.c.o -std=gnu11 $CFLAGS $CPPFLAGS 
-Icore/libsparse/include -Icore/include -c extras/ext4_utils/sha1.c
-gcc -o extras/ext4_utils/wipe.c.o -std=gnu11 $CFLAGS $CPPFLAGS 
-Icore/libsparse/include -Icore/include -c extras/ext4_utils/wipe.c
-gcc -o extras/ext4_utils/crc16.c.o -std=gnu11 $CFLAGS $CPPFLAGS 
-Icore/libsparse/include -Icore/include -c extras/ext4_utils/crc16.c
-gcc -o extras/ext4_utils/ext4_sb.c.o -std=gnu11 $CFLAGS $CPPFLAGS 
-Icore/libsparse/include -Icore/include -c extras/ext4_utils/ext4_sb.c
+gcc -o extras/ext4_utils/make_ext4fs.c.o -std=gnu11 $CFLAGS $CPPFLAGS 
-Icore/libsparse/include -Icore/include -Ilibselinux/include -c 
extras/ext4_utils/make_ext4fs.c
+gcc -o extras/ext4_utils/ext4fixup.c.o -std=gnu11 $CFLAGS $CPPFLAGS 
-Icore/libsparse/include -Icore/include -Ilibselinux/include -c 
extras/ext4_utils/ext4fixup.c
+gcc -o extras/ext4_utils/ext4_utils.c.o -std=gnu11 $CFLAGS $CPPFLAGS 
-Icore/libsparse/include -Icore/include -Ilibselinux/include -c 
extras/ext4_utils/ext4_utils.c
+gcc -o extras/ext4_utils/allocate.c.o -std=gnu11 $CFLAGS $CPPFLAGS 
-Icore/libsparse/include -Icore/include -Ilibselinux/include -c 
extras/ext4_utils/allocate.c
+gcc -o extras/ext4_utils/contents.c.o -std=gnu11 $CFLAGS $CPPFLAGS 
-Icore/libsparse/include -Icore/include -Ilibselinux/include -c 
extras/ext4_utils/contents.c
+gcc -o extras/ext4_utils/extent.c.o -std=gnu11 $CFLAGS $CPPFLAGS 
-Icore/libsparse/include -Icore/include -Ilibselinux/include -c 
extras/ext4_utils/extent.c
+gcc -o extras/ext4_utils/indirect.c.o -std=gnu11 $CFLAGS $CPPFLAGS 
-Icore/libsparse/include -Icore/include -Ilibselinux/include -c 
extras/ext4_utils/indirect.c
+gcc -o extras/ext4_utils/sha1.c.o -std=gnu11 $CFLAGS $CPPFLAGS 
-Icore/libsparse/include -Icore/include -Ilibselinux/include -c 
extras/ext4_utils/sha1.c
+gcc -o 

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

2016-01-12 Thread Anatol Pomozov
Date: Wednesday, January 13, 2016 @ 07:42:16
  Author: anatolik
Revision: 156292

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

Added:
  android-tools/repos/community-testing-i686/
  android-tools/repos/community-testing-i686/PKGBUILD
(from rev 156291, android-tools/trunk/PKGBUILD)
  android-tools/repos/community-testing-i686/bash_completion
(from rev 156291, android-tools/trunk/bash_completion)
  android-tools/repos/community-testing-i686/build.sh
(from rev 156291, android-tools/trunk/build.sh)
  android-tools/repos/community-testing-i686/fix_build.patch
(from rev 156291, android-tools/trunk/fix_build.patch)
  android-tools/repos/community-testing-i686/generate_build.rb
(from rev 156291, android-tools/trunk/generate_build.rb)
  android-tools/repos/community-testing-x86_64/
  android-tools/repos/community-testing-x86_64/PKGBUILD
(from rev 156291, android-tools/trunk/PKGBUILD)
  android-tools/repos/community-testing-x86_64/bash_completion
(from rev 156291, android-tools/trunk/bash_completion)
  android-tools/repos/community-testing-x86_64/build.sh
(from rev 156291, android-tools/trunk/build.sh)
  android-tools/repos/community-testing-x86_64/fix_build.patch
(from rev 156291, android-tools/trunk/fix_build.patch)
  android-tools/repos/community-testing-x86_64/generate_build.rb
(from rev 156291, android-tools/trunk/generate_build.rb)

+
 community-testing-i686/PKGBUILD|   42 +
 community-testing-i686/bash_completion |  203 +++
 community-testing-i686/build.sh|   77 ++
 community-testing-i686/fix_build.patch |   31 
 community-testing-i686/generate_build.rb   |  171 ++
 community-testing-x86_64/PKGBUILD  |   42 +
 community-testing-x86_64/bash_completion   |  203 +++
 community-testing-x86_64/build.sh  |   77 ++
 community-testing-x86_64/fix_build.patch   |   31 
 community-testing-x86_64/generate_build.rb |  171 ++
 10 files changed, 1048 insertions(+)

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


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

2016-01-12 Thread Felix Yan
Date: Wednesday, January 13, 2016 @ 03:50:00
  Author: fyan
Revision: 156218

upgpkg: haskell-x509-validation 1.6.3-6

rebuild with memory-0.11

Modified:
  haskell-x509-validation/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-01-13 02:47:54 UTC (rev 156217)
+++ PKGBUILD2016-01-13 02:50:00 UTC (rev 156218)
@@ -5,7 +5,7 @@
 _hkgname=x509-validation
 pkgname=haskell-x509-validation
 pkgver=1.6.3
-pkgrel=5
+pkgrel=6
 pkgdesc="X.509 Certificate and CRL validation"
 url="http://github.com/vincenthz/hs-certificate;
 license=("custom:BSD3")


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

2016-01-12 Thread Felix Yan
Date: Wednesday, January 13, 2016 @ 03:50:33
  Author: fyan
Revision: 156219

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

Added:
  haskell-x509-validation/repos/community-staging-i686/
  haskell-x509-validation/repos/community-staging-i686/PKGBUILD
(from rev 156218, haskell-x509-validation/trunk/PKGBUILD)
  
haskell-x509-validation/repos/community-staging-i686/haskell-x509-validation.install
(from rev 156218, 
haskell-x509-validation/trunk/haskell-x509-validation.install)
  haskell-x509-validation/repos/community-staging-x86_64/
  haskell-x509-validation/repos/community-staging-x86_64/PKGBUILD
(from rev 156218, haskell-x509-validation/trunk/PKGBUILD)
  
haskell-x509-validation/repos/community-staging-x86_64/haskell-x509-validation.install
(from rev 156218, 
haskell-x509-validation/trunk/haskell-x509-validation.install)

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

Copied: haskell-x509-validation/repos/community-staging-i686/PKGBUILD (from rev 
156218, haskell-x509-validation/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-01-13 02:50:33 UTC (rev 156219)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=x509-validation
+pkgname=haskell-x509-validation
+pkgver=1.6.3
+pkgrel=6
+pkgdesc="X.509 Certificate and CRL validation"
+url="http://github.com/vincenthz/hs-certificate;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-asn1-encoding" "haskell-asn1-types" 
"haskell-byteable"
+ "haskell-cryptonite" "haskell-data-default-class" "haskell-hourglass"
+ "haskell-memory" "haskell-mtl" "haskell-pem" "haskell-x509" 
"haskell-x509-store")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('80b7d3beef9dda913c7cc7c890ab703d6030574df2a62df1939036184cd921e3')
+
+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-x509-validation/repos/community-staging-i686/haskell-x509-validation.install
 (from rev 156218, 
haskell-x509-validation/trunk/haskell-x509-validation.install)
===
--- community-staging-i686/haskell-x509-validation.install  
(rev 0)
+++ community-staging-i686/haskell-x509-validation.install  2016-01-13 
02:50:33 UTC (rev 156219)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-x509-validation
+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-x509-validation/repos/community-staging-x86_64/PKGBUILD (from 
rev 156218, haskell-x509-validation/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-01-13 02:50:33 UTC (rev 156219)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+

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

2016-01-12 Thread Felix Yan
Date: Wednesday, January 13, 2016 @ 04:16:18
  Author: fyan
Revision: 156228

upgpkg: haskell-http-client-tls 0.2.2-17

rebuild with memory-0.11

Modified:
  haskell-http-client-tls/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-01-13 03:10:27 UTC (rev 156227)
+++ PKGBUILD2016-01-13 03:16:18 UTC (rev 156228)
@@ -5,7 +5,7 @@
 _hkgname=http-client-tls
 pkgname=haskell-http-client-tls
 pkgver=0.2.2
-pkgrel=16
+pkgrel=17
 pkgdesc="http-client backend using the connection package and tls library"
 url="https://github.com/snoyberg/http-client;
 license=("MIT")


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

2016-01-12 Thread Felix Yan
Date: Wednesday, January 13, 2016 @ 04:42:23
  Author: fyan
Revision: 156255

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

Added:
  haskell-conduit-combinators/repos/community-staging-i686/
  haskell-conduit-combinators/repos/community-staging-i686/PKGBUILD
(from rev 156254, haskell-conduit-combinators/trunk/PKGBUILD)
  
haskell-conduit-combinators/repos/community-staging-i686/haskell-conduit-combinators.install
(from rev 156254, 
haskell-conduit-combinators/trunk/haskell-conduit-combinators.install)
  haskell-conduit-combinators/repos/community-staging-x86_64/
  haskell-conduit-combinators/repos/community-staging-x86_64/PKGBUILD
(from rev 156254, haskell-conduit-combinators/trunk/PKGBUILD)
  
haskell-conduit-combinators/repos/community-staging-x86_64/haskell-conduit-combinators.install
(from rev 156254, 
haskell-conduit-combinators/trunk/haskell-conduit-combinators.install)

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

Copied: haskell-conduit-combinators/repos/community-staging-i686/PKGBUILD (from 
rev 156254, haskell-conduit-combinators/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-01-13 03:42:23 UTC (rev 156255)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=conduit-combinators
+pkgname=haskell-conduit-combinators
+pkgver=1.0.3
+pkgrel=2
+pkgdesc="Commonly used conduit functions, for both chunked and unchunked data"
+url="https://github.com/fpco/conduit-combinators;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-base16-bytestring" "haskell-base64-bytestring"
+ "haskell-chunked-data" "haskell-conduit" "haskell-conduit-extra"
+ "haskell-monad-control" "haskell-mono-traversable" 
"haskell-mwc-random"
+ "haskell-primitive" "haskell-resourcet" "haskell-text"
+ "haskell-transformers-base" "haskell-unix-compat" "haskell-vector"
+ "haskell-void")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('29c1f3dd854d11212474692c6c3a4158ed2929e8443ff2878eee5ea1ed6700bf')
+
+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-conduit-combinators/repos/community-staging-i686/haskell-conduit-combinators.install
 (from rev 156254, 
haskell-conduit-combinators/trunk/haskell-conduit-combinators.install)
===
--- community-staging-i686/haskell-conduit-combinators.install  
(rev 0)
+++ community-staging-i686/haskell-conduit-combinators.install  2016-01-13 
03:42:23 UTC (rev 156255)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-conduit-combinators
+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-conduit-combinators/repos/community-staging-x86_64/PKGBUILD 
(from rev 156254, haskell-conduit-combinators/trunk/PKGBUILD)
===
--- 

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

2016-01-12 Thread Anatol Pomozov
Date: Wednesday, January 13, 2016 @ 07:27:34
  Author: anatolik
Revision: 156290

Redo build system for the package

Android does build system refactoring and cleanup and a lot of thing
has changed since 5 rtelease. Create a script to generate build instrcutions.
It reduces maintanence to keep build instructions up-to-date.

Added:
  android-tools/trunk/build.sh
  android-tools/trunk/fix_build.patch
  android-tools/trunk/generate_build.rb
Modified:
  android-tools/trunk/PKGBUILD
Deleted:
  android-tools/trunk/Makefile

---+
 Makefile  |  101 --
 PKGBUILD  |   17 ++---
 build.sh  |   77 +++
 fix_build.patch   |   31 +
 generate_build.rb |  171 
 5 files changed, 288 insertions(+), 109 deletions(-)

Deleted: Makefile
===
--- Makefile2016-01-13 04:48:44 UTC (rev 156289)
+++ Makefile2016-01-13 06:27:34 UTC (rev 156290)
@@ -1,101 +0,0 @@
-all: mkbootimg fastboot adb
-
-install:
-   install -m755 -d $(DESTDIR)/usr/bin
-   install -m755 -t $(DESTDIR)/usr/bin mkbootimg fastboot adb
-
-clean:
-   rm -f **/*.o
-
-.PHONY: clean
-
-
-
-
-MKBOOTIMG_SRCS += $(wildcard core/libmincrypt/*.c)
-MKBOOTIMG_SRCS += core/mkbootimg/mkbootimg.c
-
-MKBOOTIMG_CFLAGS += -Icore/include
-
-mkbootimg: $(MKBOOTIMG_SRCS)
-   $(CC) -o $@ $(CFLAGS) $(MKBOOTIMG_CFLAGS) $(LDFLAGS) $(MKBOOTIMG_LIBS) 
$(MKBOOTIMG_SRCS)
-
-
-
-
-ADB_SRCS += core/adb/adb.c
-ADB_SRCS += core/adb/adb_auth_host.c
-ADB_SRCS += core/adb/adb_client.c
-ADB_SRCS += core/adb/commandline.c
-ADB_SRCS += core/adb/console.c
-ADB_SRCS += core/adb/fdevent.c
-ADB_SRCS += core/adb/file_sync_client.c
-ADB_SRCS += core/adb/get_my_path_linux.c
-ADB_SRCS += core/adb/services.c
-ADB_SRCS += core/adb/sockets.c
-ADB_SRCS += core/adb/transport.c
-ADB_SRCS += core/adb/transport_local.c
-ADB_SRCS += core/adb/transport_usb.c
-ADB_SRCS += core/adb/usb_linux.c
-ADB_SRCS += core/adb/usb_vendors.c
-ADB_SRCS += core/libcutils/load_file.c
-ADB_SRCS += core/libcutils/socket_inaddr_any_server.c
-ADB_SRCS += core/libcutils/socket_local_client.c
-ADB_SRCS += core/libcutils/socket_local_server.c
-ADB_SRCS += core/libcutils/socket_loopback_client.c
-ADB_SRCS += core/libcutils/socket_loopback_server.c
-ADB_SRCS += core/libcutils/socket_network_client.c
-ADB_SRCS += core/libzipfile/centraldir.c
-ADB_SRCS += core/libzipfile/zipfile.c
-
-ADB_CFLAGS  += -DADB_HOST=1 -DHAVE_FORKEXEC=1 -DHAVE_OFF64_T=1 -DHAVE_TERMIO_H 
-I core/include -I core/adb
-ADB_LIBS += -lcrypto -lpthread -lz
-
-adb: $(ADB_SRCS)
-   $(CC) -o $@ $(CFLAGS) $(ADB_CFLAGS) $(LDFLAGS) $(ADB_SRCS) $(ADB_LIBS)
-
-
-
-FASTBOOT_SRCS += core/fastboot/bootimg.c
-FASTBOOT_SRCS += core/fastboot/engine.c
-FASTBOOT_SRCS += core/fastboot/fastboot.c
-FASTBOOT_SRCS += core/fastboot/protocol.c
-FASTBOOT_SRCS += core/fastboot/usb_linux.c
-FASTBOOT_SRCS += core/fastboot/util_linux.c
-FASTBOOT_SRCS += core/fastboot/util.c
-FASTBOOT_SRCS += core/fastboot/fs.c
-FASTBOOT_SRCS += core/libsparse/backed_block.c
-FASTBOOT_SRCS += core/libsparse/output_file.c
-FASTBOOT_SRCS += core/libsparse/sparse.c
-FASTBOOT_SRCS += core/libsparse/sparse_crc32.c
-FASTBOOT_SRCS += core/libsparse/sparse_err.c
-FASTBOOT_SRCS += core/libsparse/sparse_read.c
-FASTBOOT_SRCS += core/libzipfile/centraldir.c
-FASTBOOT_SRCS += core/libzipfile/zipfile.c
-FASTBOOT_SRCS += extras/ext4_utils/allocate.c
-FASTBOOT_SRCS += extras/ext4_utils/contents.c
-FASTBOOT_SRCS += extras/ext4_utils/crc16.c
-FASTBOOT_SRCS += extras/ext4_utils/ext4_utils.c
-FASTBOOT_SRCS += extras/ext4_utils/ext4_sb.c
-FASTBOOT_SRCS += extras/ext4_utils/extent.c
-FASTBOOT_SRCS += extras/ext4_utils/indirect.c
-FASTBOOT_SRCS += extras/ext4_utils/make_ext4fs.c
-FASTBOOT_SRCS += extras/ext4_utils/sha1.c
-FASTBOOT_SRCS += extras/ext4_utils/uuid.c
-FASTBOOT_SRCS += extras/ext4_utils/wipe.c
-FASTBOOT_SRCS += extras/f2fs_utils/f2fs_utils.c
-FASTBOOT_SRCS += extras/f2fs_utils/f2fs_dlutils.c
-FASTBOOT_SRCS += extras/f2fs_utils/f2fs_ioutils.c
-FASTBOOT_SRCS += libselinux/src/callbacks.c
-FASTBOOT_SRCS += libselinux/src/check_context.c
-FASTBOOT_SRCS += libselinux/src/freecon.c
-FASTBOOT_SRCS += libselinux/src/init.c
-FASTBOOT_SRCS += libselinux/src/label.c
-FASTBOOT_SRCS += libselinux/src/label_android_property.c
-FASTBOOT_SRCS += libselinux/src/label_file.c
-
-FASTBOOT_CFLAGS  += -DHAVE_OFF64_T=1 -std=gnu99 -I core/mkbootimg -I 
core/libsparse/include -I core/include -I extras/ext4_utils -I 
extras/f2fs_utils -I libselinux/include -I f2fs-tools/include -I f2fs-tools/mkfs
-FASTBOOT_LIBS += -lz -ldl -lpcre
-
-fastboot: $(FASTBOOT_SRCS)
-   $(CC) -o $@ $(CFLAGS) $(FASTBOOT_CFLAGS) $(LDFLAGS) $(FASTBOOT_SRCS) 
$(FASTBOOT_LIBS)

Modified: PKGBUILD
===
--- PKGBUILD2016-01-13 04:48:44 UTC (rev 156289)
+++ PKGBUILD2016-01-13 

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

2016-01-12 Thread Felix Yan
Date: Wednesday, January 13, 2016 @ 03:20:22
  Author: fyan
Revision: 156196

upgpkg: haskell-asn1-types 0.3.2-2

rebuild with memory-0.11

Modified:
  haskell-asn1-types/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-01-13 02:16:53 UTC (rev 156195)
+++ PKGBUILD2016-01-13 02:20:22 UTC (rev 156196)
@@ -5,7 +5,7 @@
 _hkgname=asn1-types
 pkgname=haskell-asn1-types
 pkgver=0.3.2
-pkgrel=1
+pkgrel=2
 pkgdesc="ASN.1 types"
 url="http://github.com/vincenthz/hs-asn1-types;
 license=("custom:BSD3")


[arch-commits] Commit in (5 files)

2016-01-12 Thread Felix Yan
Date: Wednesday, January 13, 2016 @ 03:32:24
  Author: fyan
Revision: 156200

addpkg: haskell-project-template 0.2.0-1

Added:
  haskell-project-template/
  haskell-project-template/repos/
  haskell-project-template/trunk/
  haskell-project-template/trunk/PKGBUILD
  haskell-project-template/trunk/haskell-project-template.install

--+
 PKGBUILD |   44 +
 haskell-project-template.install |   18 +++
 2 files changed, 62 insertions(+)

Added: haskell-project-template/trunk/PKGBUILD
===
--- haskell-project-template/trunk/PKGBUILD (rev 0)
+++ haskell-project-template/trunk/PKGBUILD 2016-01-13 02:32:24 UTC (rev 
156200)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=project-template
+pkgname=haskell-project-template
+pkgver=0.2.0
+pkgrel=1
+pkgdesc="Specify Haskell project templates and generate files"
+url="https://github.com/fpco/haskell-ide;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-base64-bytestring" "haskell-conduit"
+ "haskell-conduit-extra" "haskell-mtl" "haskell-resourcet"
+ "haskell-text")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('aeabd7d1785b31abaffc78f02d9dda67d57d01822755f09614bfc65e99506310')
+
+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"
+}


Property changes on: haskell-project-template/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: haskell-project-template/trunk/haskell-project-template.install
===
--- haskell-project-template/trunk/haskell-project-template.install 
(rev 0)
+++ haskell-project-template/trunk/haskell-project-template.install 
2016-01-13 02:32:24 UTC (rev 156200)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-project-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)
+}


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

2016-01-12 Thread Felix Yan
Date: Wednesday, January 13, 2016 @ 03:32:56
  Author: fyan
Revision: 156201

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

Added:
  haskell-project-template/repos/community-i686/
  haskell-project-template/repos/community-i686/PKGBUILD
(from rev 156200, haskell-project-template/trunk/PKGBUILD)
  haskell-project-template/repos/community-i686/haskell-project-template.install
(from rev 156200, 
haskell-project-template/trunk/haskell-project-template.install)
  haskell-project-template/repos/community-x86_64/
  haskell-project-template/repos/community-x86_64/PKGBUILD
(from rev 156200, haskell-project-template/trunk/PKGBUILD)
  
haskell-project-template/repos/community-x86_64/haskell-project-template.install
(from rev 156200, 
haskell-project-template/trunk/haskell-project-template.install)

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

Copied: haskell-project-template/repos/community-i686/PKGBUILD (from rev 
156200, haskell-project-template/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-01-13 02:32:56 UTC (rev 156201)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=project-template
+pkgname=haskell-project-template
+pkgver=0.2.0
+pkgrel=1
+pkgdesc="Specify Haskell project templates and generate files"
+url="https://github.com/fpco/haskell-ide;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-base64-bytestring" "haskell-conduit"
+ "haskell-conduit-extra" "haskell-mtl" "haskell-resourcet"
+ "haskell-text")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('aeabd7d1785b31abaffc78f02d9dda67d57d01822755f09614bfc65e99506310')
+
+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-project-template/repos/community-i686/haskell-project-template.install 
(from rev 156200, 
haskell-project-template/trunk/haskell-project-template.install)
===
--- community-i686/haskell-project-template.install 
(rev 0)
+++ community-i686/haskell-project-template.install 2016-01-13 02:32:56 UTC 
(rev 156201)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-project-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-project-template/repos/community-x86_64/PKGBUILD (from rev 
156200, haskell-project-template/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-01-13 02:32:56 UTC (rev 156201)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=project-template
+pkgname=haskell-project-template
+pkgver=0.2.0
+pkgrel=1
+pkgdesc="Specify Haskell project templates and generate files"
+url="https://github.com/fpco/haskell-ide;

[arch-commits] Commit in (5 files)

2016-01-12 Thread Felix Yan
Date: Wednesday, January 13, 2016 @ 03:42:50
  Author: fyan
Revision: 156212

addpkg: haskell-text-binary 0.2.1-1

Added:
  haskell-text-binary/
  haskell-text-binary/repos/
  haskell-text-binary/trunk/
  haskell-text-binary/trunk/PKGBUILD
  haskell-text-binary/trunk/haskell-text-binary.install

-+
 PKGBUILD|   42 ++
 haskell-text-binary.install |   18 ++
 2 files changed, 60 insertions(+)

Added: haskell-text-binary/trunk/PKGBUILD
===
--- haskell-text-binary/trunk/PKGBUILD  (rev 0)
+++ haskell-text-binary/trunk/PKGBUILD  2016-01-13 02:42:50 UTC (rev 156212)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=text-binary
+pkgname=haskell-text-binary
+pkgver=0.2.1
+pkgrel=1
+pkgdesc="Binary instances for text types"
+url="https://github.com/kawu/text-binary;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-text")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('df22f237ebfe8c813be289d40e86ce3590ccc9c33c41053f4234b5672dc7ea02')
+
+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"
+}


Property changes on: haskell-text-binary/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: haskell-text-binary/trunk/haskell-text-binary.install
===
--- haskell-text-binary/trunk/haskell-text-binary.install   
(rev 0)
+++ haskell-text-binary/trunk/haskell-text-binary.install   2016-01-13 
02:42:50 UTC (rev 156212)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-text-binary
+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)
+}


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

2016-01-12 Thread Felix Yan
Date: Wednesday, January 13, 2016 @ 03:43:21
  Author: fyan
Revision: 156213

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

Added:
  haskell-text-binary/repos/community-i686/
  haskell-text-binary/repos/community-i686/PKGBUILD
(from rev 156212, haskell-text-binary/trunk/PKGBUILD)
  haskell-text-binary/repos/community-i686/haskell-text-binary.install
(from rev 156212, haskell-text-binary/trunk/haskell-text-binary.install)
  haskell-text-binary/repos/community-x86_64/
  haskell-text-binary/repos/community-x86_64/PKGBUILD
(from rev 156212, haskell-text-binary/trunk/PKGBUILD)
  haskell-text-binary/repos/community-x86_64/haskell-text-binary.install
(from rev 156212, haskell-text-binary/trunk/haskell-text-binary.install)

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

Copied: haskell-text-binary/repos/community-i686/PKGBUILD (from rev 156212, 
haskell-text-binary/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-01-13 02:43:21 UTC (rev 156213)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=text-binary
+pkgname=haskell-text-binary
+pkgver=0.2.1
+pkgrel=1
+pkgdesc="Binary instances for text types"
+url="https://github.com/kawu/text-binary;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-text")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('df22f237ebfe8c813be289d40e86ce3590ccc9c33c41053f4234b5672dc7ea02')
+
+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-text-binary/repos/community-i686/haskell-text-binary.install 
(from rev 156212, haskell-text-binary/trunk/haskell-text-binary.install)
===
--- community-i686/haskell-text-binary.install  (rev 0)
+++ community-i686/haskell-text-binary.install  2016-01-13 02:43:21 UTC (rev 
156213)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-text-binary
+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-text-binary/repos/community-x86_64/PKGBUILD (from rev 156212, 
haskell-text-binary/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-01-13 02:43:21 UTC (rev 156213)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=text-binary
+pkgname=haskell-text-binary
+pkgver=0.2.1
+pkgrel=1
+pkgdesc="Binary instances for text types"
+url="https://github.com/kawu/text-binary;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-text")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('df22f237ebfe8c813be289d40e86ce3590ccc9c33c41053f4234b5672dc7ea02')
+
+build() {
+cd 

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

2016-01-12 Thread Felix Yan
Date: Wednesday, January 13, 2016 @ 04:18:12
  Author: fyan
Revision: 156231

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

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

+
 community-staging-i686/PKGBUILD|   46 +++
 community-staging-i686/haskell-split.install   |   18 +
 community-staging-x86_64/PKGBUILD  |   46 +++
 community-staging-x86_64/haskell-split.install |   18 +
 4 files changed, 128 insertions(+)

Copied: haskell-split/repos/community-staging-i686/PKGBUILD (from rev 156230, 
haskell-split/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-01-13 03:18:12 UTC (rev 156231)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=split
+pkgname=haskell-split
+pkgver=0.2.3
+pkgrel=1
+pkgdesc="Combinator library for splitting lists."
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('a6d100e433fa27eda72127475ba9c55481ca4105cfbb6ff55b67023d00ccead9')
+
+prepare() {
+sed -i 's/build-depends: base <4.8/build-depends: base <4.9/' 
${_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-split/repos/community-staging-i686/haskell-split.install (from 
rev 156230, haskell-split/trunk/haskell-split.install)
===
--- community-staging-i686/haskell-split.install
(rev 0)
+++ community-staging-i686/haskell-split.install2016-01-13 03:18:12 UTC 
(rev 156231)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-split
+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-split/repos/community-staging-x86_64/PKGBUILD (from rev 156230, 
haskell-split/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-01-13 03:18:12 UTC (rev 156231)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=split
+pkgname=haskell-split
+pkgver=0.2.3
+pkgrel=1
+pkgdesc="Combinator library for splitting lists."
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)

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

2016-01-12 Thread Jan Steffens
Date: Wednesday, January 13, 2016 @ 08:54:00
  Author: heftig
Revision: 156295

3.6

Modified:
  rubinius/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-01-13 07:06:36 UTC (rev 156294)
+++ PKGBUILD2016-01-13 07:54:00 UTC (rev 156295)
@@ -3,7 +3,7 @@
 
 pkgbase=rubinius
 pkgname=(rubinius rubinius-ruby)
-pkgver=3.0
+pkgver=3.6
 pkgrel=1
 pkgdesc="Ruby runtime written in Ruby, designed for concurrency"
 arch=(i686 x86_64)
@@ -14,7 +14,7 @@
 options=(!emptydirs)
 source=(http://releases.rubinius.com/${pkgbase}-${pkgver}.tar.bz2
 gemrc dirs.patch)
-sha256sums=('fd4c9687af6e29939100610a231f13951ed763a9028c85878505f313857c43ca'
+sha256sums=('25b5913bba06511170e365643579ccfc193c1c4e74dbe6ea4b37dcabdcd8f6ad'
 '4bb7eb2fe66e396ed16b589cdb656831407b39ad4e138d88536754c0448ac614'
 'a9922b199730c059c26781af45adc46401811ff2e6840c4aeb49da4fa41acdd9')
 
@@ -61,7 +61,7 @@
   DESTDIR="$pkgdir" rake install
 
   mkdir -p "$pkgdir/usr/share/ri"
-  ln -s 2.2.0 "$pkgdir/usr/share/ri/2.1"
+  ln -s 2.3.0 "$pkgdir/usr/share/ri/2.2"
 
   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/rubinius/LICENSE"
 


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

2016-01-12 Thread Felix Yan
Date: Wednesday, January 13, 2016 @ 03:38:08
  Author: fyan
Revision: 156205

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

Added:
  haskell-asn1-parse/repos/community-staging-i686/
  haskell-asn1-parse/repos/community-staging-i686/PKGBUILD
(from rev 156204, haskell-asn1-parse/trunk/PKGBUILD)
  haskell-asn1-parse/repos/community-staging-i686/haskell-asn1-parse.install
(from rev 156204, haskell-asn1-parse/trunk/haskell-asn1-parse.install)
  haskell-asn1-parse/repos/community-staging-x86_64/
  haskell-asn1-parse/repos/community-staging-x86_64/PKGBUILD
(from rev 156204, haskell-asn1-parse/trunk/PKGBUILD)
  haskell-asn1-parse/repos/community-staging-x86_64/haskell-asn1-parse.install
(from rev 156204, haskell-asn1-parse/trunk/haskell-asn1-parse.install)

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

Copied: haskell-asn1-parse/repos/community-staging-i686/PKGBUILD (from rev 
156204, haskell-asn1-parse/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-01-13 02:38:08 UTC (rev 156205)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=asn1-parse
+pkgname=haskell-asn1-parse
+pkgver=0.9.4
+pkgrel=4
+pkgdesc="Simple monadic parser for ASN1 stream types."
+url="https://github.com/vincenthz/hs-asn1;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-asn1-encoding" "haskell-asn1-types")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('c6a328f570c69db73f8d2416f9251e8a03753f90d5d19e76cbe69509a3ceb708')
+
+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-asn1-parse/repos/community-staging-i686/haskell-asn1-parse.install 
(from rev 156204, haskell-asn1-parse/trunk/haskell-asn1-parse.install)
===
--- community-staging-i686/haskell-asn1-parse.install   
(rev 0)
+++ community-staging-i686/haskell-asn1-parse.install   2016-01-13 02:38:08 UTC 
(rev 156205)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-asn1-parse
+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-asn1-parse/repos/community-staging-x86_64/PKGBUILD (from rev 
156204, haskell-asn1-parse/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-01-13 02:38:08 UTC (rev 156205)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=asn1-parse
+pkgname=haskell-asn1-parse
+pkgver=0.9.4
+pkgrel=4
+pkgdesc="Simple monadic parser for ASN1 stream types."
+url="https://github.com/vincenthz/hs-asn1;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-asn1-encoding" "haskell-asn1-types")
+options=('staticlibs')

[arch-commits] Commit in (5 files)

2016-01-12 Thread Felix Yan
Date: Wednesday, January 13, 2016 @ 03:38:34
  Author: fyan
Revision: 156206

addpkg: haskell-retry 0.7.0.1-1

Added:
  haskell-retry/
  haskell-retry/repos/
  haskell-retry/trunk/
  haskell-retry/trunk/PKGBUILD
  haskell-retry/trunk/haskell-retry.install

---+
 PKGBUILD  |   43 +++
 haskell-retry.install |   18 ++
 2 files changed, 61 insertions(+)

Added: haskell-retry/trunk/PKGBUILD
===
--- haskell-retry/trunk/PKGBUILD(rev 0)
+++ haskell-retry/trunk/PKGBUILD2016-01-13 02:38:34 UTC (rev 156206)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=retry
+pkgname=haskell-retry
+pkgver=0.7.0.1
+pkgrel=1
+pkgdesc="Retry combinators for monadic actions that may fail"
+url="http://github.com/Soostone/retry;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-data-default-class" "haskell-exceptions"
+ "haskell-random")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('7ab82a1ba52eaf2a98186ff853d26fa0f54f676939739b2d2bd8735e0406486a')
+
+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"
+}


Property changes on: haskell-retry/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: haskell-retry/trunk/haskell-retry.install
===
--- haskell-retry/trunk/haskell-retry.install   (rev 0)
+++ haskell-retry/trunk/haskell-retry.install   2016-01-13 02:38:34 UTC (rev 
156206)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-retry
+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)
+}


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

2016-01-12 Thread Felix Yan
Date: Wednesday, January 13, 2016 @ 03:37:37
  Author: fyan
Revision: 156204

upgpkg: haskell-asn1-parse 0.9.4-4

rebuild with memory-0.11

Modified:
  haskell-asn1-parse/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-01-13 02:33:39 UTC (rev 156203)
+++ PKGBUILD2016-01-13 02:37:37 UTC (rev 156204)
@@ -5,7 +5,7 @@
 _hkgname=asn1-parse
 pkgname=haskell-asn1-parse
 pkgver=0.9.4
-pkgrel=3
+pkgrel=4
 pkgdesc="Simple monadic parser for ASN1 stream types."
 url="https://github.com/vincenthz/hs-asn1;
 license=("custom:BSD3")


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

2016-01-12 Thread Felix Yan
Date: Wednesday, January 13, 2016 @ 04:10:27
  Author: fyan
Revision: 156227

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

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

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

Copied: haskell-connection/repos/community-staging-i686/PKGBUILD (from rev 
156226, haskell-connection/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-01-13 03:10:27 UTC (rev 156227)
@@ -0,0 +1,43 @@
+# $Id: PKGBUILD 143584 2015-10-10 10:28:35Z fyan $
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=connection
+pkgname=haskell-connection
+pkgver=0.2.5
+pkgrel=11
+pkgdesc="Simple and easy network connections API"
+url="http://github.com/vincenthz/hs-connection;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-byteable" "haskell-data-default-class" 
"haskell-network" "haskell-socks"
+ "haskell-tls" "haskell-x509" "haskell-x509-store" 
"haskell-x509-system" "haskell-x509-validation")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('8895d4427985202ac439b884deb4b5675ccba3d9498fce3687f1542b4ba21124')
+
+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-connection/repos/community-staging-i686/haskell-connection.install 
(from rev 156226, haskell-connection/trunk/haskell-connection.install)
===
--- community-staging-i686/haskell-connection.install   
(rev 0)
+++ community-staging-i686/haskell-connection.install   2016-01-13 03:10:27 UTC 
(rev 156227)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-connection
+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-connection/repos/community-staging-x86_64/PKGBUILD (from rev 
156226, haskell-connection/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-01-13 03:10:27 UTC (rev 156227)
@@ -0,0 +1,43 @@
+# $Id: PKGBUILD 143584 2015-10-10 10:28:35Z fyan $
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=connection
+pkgname=haskell-connection
+pkgver=0.2.5
+pkgrel=11
+pkgdesc="Simple and easy network 

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

2016-01-12 Thread Felix Yan
Date: Wednesday, January 13, 2016 @ 04:09:56
  Author: fyan
Revision: 156226

upgpkg: haskell-connection 0.2.5-11

rebuild with memory-0.11

Modified:
  haskell-connection/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-01-13 03:06:57 UTC (rev 156225)
+++ PKGBUILD2016-01-13 03:09:56 UTC (rev 156226)
@@ -5,7 +5,7 @@
 _hkgname=connection
 pkgname=haskell-connection
 pkgver=0.2.5
-pkgrel=10
+pkgrel=11
 pkgdesc="Simple and easy network connections API"
 url="http://github.com/vincenthz/hs-connection;
 license=("custom:BSD3")


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

2016-01-12 Thread Felix Yan
Date: Wednesday, January 13, 2016 @ 04:36:49
  Author: fyan
Revision: 156253

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

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

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

Copied: haskell-chunked-data/repos/community-staging-i686/PKGBUILD (from rev 
156252, haskell-chunked-data/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-01-13 03:36:49 UTC (rev 156253)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=chunked-data
+pkgname=haskell-chunked-data
+pkgver=0.2.0
+pkgrel=2
+pkgdesc="Typeclasses for dealing with various chunked data representations"
+url="https://github.com/fpco/chunked-data;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-blaze-builder" "haskell-mono-traversable"
+ "haskell-semigroups" "haskell-text" "haskell-vector")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('9aa0f3c81f9b0d7c1dde206501415f01638f20eebfbe1386dfd802bcc1bab272')
+
+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-chunked-data/repos/community-staging-i686/haskell-chunked-data.install 
(from rev 156252, haskell-chunked-data/trunk/haskell-chunked-data.install)
===
--- community-staging-i686/haskell-chunked-data.install 
(rev 0)
+++ community-staging-i686/haskell-chunked-data.install 2016-01-13 03:36:49 UTC 
(rev 156253)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-chunked-data
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-chunked-data/repos/community-staging-x86_64/PKGBUILD (from rev 
156252, haskell-chunked-data/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-01-13 03:36:49 UTC (rev 156253)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=chunked-data
+pkgname=haskell-chunked-data
+pkgver=0.2.0
+pkgrel=2
+pkgdesc="Typeclasses for dealing with various chunked data representations"
+url="https://github.com/fpco/chunked-data;

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

2016-01-12 Thread Felix Yan
Date: Wednesday, January 13, 2016 @ 04:36:19
  Author: fyan
Revision: 156252

upgpkg: haskell-chunked-data 0.2.0-2

rebuild with memory-0.11, split-0.2.3

Modified:
  haskell-chunked-data/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-01-13 03:27:42 UTC (rev 156251)
+++ PKGBUILD2016-01-13 03:36:19 UTC (rev 156252)
@@ -5,7 +5,7 @@
 _hkgname=chunked-data
 pkgname=haskell-chunked-data
 pkgver=0.2.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Typeclasses for dealing with various chunked data representations"
 url="https://github.com/fpco/chunked-data;
 license=("MIT")


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

2016-01-12 Thread Felix Yan
Date: Wednesday, January 13, 2016 @ 04:45:50
  Author: fyan
Revision: 156259

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

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

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

Copied: haskell-http-conduit/repos/community-staging-i686/PKGBUILD (from rev 
156258, haskell-http-conduit/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-01-13 03:45:50 UTC (rev 156259)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http-conduit
+pkgname=haskell-http-conduit
+pkgver=2.1.8
+pkgrel=14
+pkgdesc="HTTP client package with conduit interface and HTTPS support"
+url="http://www.yesodweb.com/book/http-conduit;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-conduit" "haskell-http-client" 
"haskell-http-client-tls"
+ "haskell-http-types" "haskell-lifted-base" "haskell-monad-control" 
"haskell-mtl"
+ "haskell-resourcet")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('550d86ea9ee6dd90994a460c5c85ddc861fb5c0f007304dc4a2e2035f980ea3d')
+
+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-http-conduit/repos/community-staging-i686/haskell-http-conduit.install 
(from rev 156258, haskell-http-conduit/trunk/haskell-http-conduit.install)
===
--- community-staging-i686/haskell-http-conduit.install 
(rev 0)
+++ community-staging-i686/haskell-http-conduit.install 2016-01-13 03:45:50 UTC 
(rev 156259)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-http-conduit
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-http-conduit/repos/community-staging-x86_64/PKGBUILD (from rev 
156258, haskell-http-conduit/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-01-13 03:45:50 UTC (rev 156259)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http-conduit
+pkgname=haskell-http-conduit
+pkgver=2.1.8
+pkgrel=14
+pkgdesc="HTTP client package with conduit 

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

2016-01-12 Thread Felix Yan
Date: Wednesday, January 13, 2016 @ 08:05:46
  Author: fyan
Revision: 156293

upgpkg: jenkins 1.644-1

Modified:
  jenkins/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-01-13 06:42:16 UTC (rev 156292)
+++ PKGBUILD2016-01-13 07:05:46 UTC (rev 156293)
@@ -5,7 +5,7 @@
 # Contributor: Illarion Kovalchuk 
 
 pkgname=jenkins
-pkgver=1.643
+pkgver=1.644
 pkgrel=1
 pkgdesc='Extendable continuous integration server (latest)'
 arch=('any')
@@ -25,7 +25,7 @@
 'jenkins.tmpfiles'
 'jenkins.sysusers'
 'LICENSE')
-sha512sums=('a39c123b9ea9d5da64b9b1e6dde5987bc3968024bd17465aead3c037eef3e9a61e87dd360b77ba8eea30f4dde7db34a55a6a222a924a327e549148d7034d747f'
+sha512sums=('8a94569372048587af6cf763cd4aa2566413a9fca9adb868f874ccb4258b4c68548210d1f11d2f051785233355300649a3f376a3b338b742b2ef62e05f92b58e'
 
'3a8421cef3953d899c150609f959cf5d5dd6d08d079a5e0f48bfece4f3c80491722b9e90ef841fddb87401c226b8338297c5c4e83e55a33ef8d6e387de3048d0'
 
'a336b006d3711abb75b49a2e12c09ee61cf3275a2cdbbd3676480e2f6ca8ba0fb4b9c08f3f9da193252c4fca827e9a1d5eaad847d0a889445693427ae1571fe7'
 
'a845a7147be54affc586dfce9a188ec24c92e673e88dec0b62da386d2e597de6ecda103429008562abd897f179a52c37cf2188ebc65b8c636efd07d707e18f90'


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

2016-01-12 Thread Felix Yan
Date: Wednesday, January 13, 2016 @ 08:06:36
  Author: fyan
Revision: 156294

archrelease: copy trunk to community-any

Added:
  jenkins/repos/community-any/LICENSE
(from rev 156293, jenkins/trunk/LICENSE)
  jenkins/repos/community-any/PKGBUILD
(from rev 156293, jenkins/trunk/PKGBUILD)
  jenkins/repos/community-any/jenkins.conf
(from rev 156293, jenkins/trunk/jenkins.conf)
  jenkins/repos/community-any/jenkins.install
(from rev 156293, jenkins/trunk/jenkins.install)
  jenkins/repos/community-any/jenkins.service
(from rev 156293, jenkins/trunk/jenkins.service)
  jenkins/repos/community-any/jenkins.sysusers
(from rev 156293, jenkins/trunk/jenkins.sysusers)
  jenkins/repos/community-any/jenkins.tmpfiles
(from rev 156293, 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-01-13 07:05:46 UTC (rev 156293)
+++ LICENSE 2016-01-13 07:06:36 UTC (rev 156294)
@@ -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 156293, 
jenkins/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2016-01-13 07:06:36 UTC (rev 156294)
@@ -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-01-13 07:05:46 UTC (rev 156293)
+++ PKGBUILD2016-01-13 07:06:36 UTC (rev 156294)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Alexander Rødseth 
-# Contributor: Marcel Huber 
-# Contributor: Illarion Kovalchuk 
-
-pkgname=jenkins
-pkgver=1.643
-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')

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

2016-01-12 Thread Felix Yan
Date: Wednesday, January 13, 2016 @ 03:33:39
  Author: fyan
Revision: 156203

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

Added:
  haskell-asn1-encoding/repos/community-staging-i686/
  haskell-asn1-encoding/repos/community-staging-i686/PKGBUILD
(from rev 156202, haskell-asn1-encoding/trunk/PKGBUILD)
  
haskell-asn1-encoding/repos/community-staging-i686/haskell-asn1-encoding.install
(from rev 156202, haskell-asn1-encoding/trunk/haskell-asn1-encoding.install)
  haskell-asn1-encoding/repos/community-staging-x86_64/
  haskell-asn1-encoding/repos/community-staging-x86_64/PKGBUILD
(from rev 156202, haskell-asn1-encoding/trunk/PKGBUILD)
  
haskell-asn1-encoding/repos/community-staging-x86_64/haskell-asn1-encoding.install
(from rev 156202, haskell-asn1-encoding/trunk/haskell-asn1-encoding.install)

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

Copied: haskell-asn1-encoding/repos/community-staging-i686/PKGBUILD (from rev 
156202, haskell-asn1-encoding/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-01-13 02:33:39 UTC (rev 156203)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=asn1-encoding
+pkgname=haskell-asn1-encoding
+pkgver=0.9.3
+pkgrel=4
+pkgdesc="ASN1 data reader and writer in RAW, BER and DER forms"
+url="http://github.com/vincenthz/hs-asn1;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-asn1-types" "haskell-hourglass")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('90d7e05806977e683a468a4112270c9745c07f52452915db6a8fb19b752d7106')
+
+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-asn1-encoding/repos/community-staging-i686/haskell-asn1-encoding.install
 (from rev 156202, haskell-asn1-encoding/trunk/haskell-asn1-encoding.install)
===
--- community-staging-i686/haskell-asn1-encoding.install
(rev 0)
+++ community-staging-i686/haskell-asn1-encoding.install2016-01-13 
02:33:39 UTC (rev 156203)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-asn1-encoding
+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-asn1-encoding/repos/community-staging-x86_64/PKGBUILD (from rev 
156202, haskell-asn1-encoding/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-01-13 02:33:39 UTC (rev 156203)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=asn1-encoding
+pkgname=haskell-asn1-encoding
+pkgver=0.9.3
+pkgrel=4
+pkgdesc="ASN1 data reader and writer in RAW, BER and DER forms"
+url="http://github.com/vincenthz/hs-asn1;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')

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

2016-01-12 Thread Felix Yan
Date: Wednesday, January 13, 2016 @ 03:33:09
  Author: fyan
Revision: 156202

upgpkg: haskell-asn1-encoding 0.9.3-4

rebuild with memory-0.11

Modified:
  haskell-asn1-encoding/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-01-13 02:32:56 UTC (rev 156201)
+++ PKGBUILD2016-01-13 02:33:09 UTC (rev 156202)
@@ -5,7 +5,7 @@
 _hkgname=asn1-encoding
 pkgname=haskell-asn1-encoding
 pkgver=0.9.3
-pkgrel=3
+pkgrel=4
 pkgdesc="ASN1 data reader and writer in RAW, BER and DER forms"
 url="http://github.com/vincenthz/hs-asn1;
 license=("custom:BSD3")


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

2016-01-12 Thread Felix Yan
Date: Wednesday, January 13, 2016 @ 03:46:16
  Author: fyan
Revision: 156215

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

Added:
  haskell-x509-store/repos/community-staging-i686/
  haskell-x509-store/repos/community-staging-i686/PKGBUILD
(from rev 156214, haskell-x509-store/trunk/PKGBUILD)
  haskell-x509-store/repos/community-staging-i686/haskell-x509-store.install
(from rev 156214, haskell-x509-store/trunk/haskell-x509-store.install)
  haskell-x509-store/repos/community-staging-x86_64/
  haskell-x509-store/repos/community-staging-x86_64/PKGBUILD
(from rev 156214, haskell-x509-store/trunk/PKGBUILD)
  haskell-x509-store/repos/community-staging-x86_64/haskell-x509-store.install
(from rev 156214, haskell-x509-store/trunk/haskell-x509-store.install)

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

Copied: haskell-x509-store/repos/community-staging-i686/PKGBUILD (from rev 
156214, haskell-x509-store/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-01-13 02:46:16 UTC (rev 156215)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=x509-store
+pkgname=haskell-x509-store
+pkgver=1.6.1
+pkgrel=6
+pkgdesc="X.509 collection accessing and storing methods"
+url="http://github.com/vincenthz/hs-certificate;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-asn1-encoding" "haskell-asn1-types" 
"haskell-mtl"
+ "haskell-cryptonite" "haskell-pem" "haskell-x509")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('83d69d2f5ce39fceaeca8e4dcc6d9ebe8a8e94f55d9c23b06cc7a58844e94b05')
+
+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-x509-store/repos/community-staging-i686/haskell-x509-store.install 
(from rev 156214, haskell-x509-store/trunk/haskell-x509-store.install)
===
--- community-staging-i686/haskell-x509-store.install   
(rev 0)
+++ community-staging-i686/haskell-x509-store.install   2016-01-13 02:46:16 UTC 
(rev 156215)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-x509-store
+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-x509-store/repos/community-staging-x86_64/PKGBUILD (from rev 
156214, haskell-x509-store/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-01-13 02:46:16 UTC (rev 156215)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=x509-store
+pkgname=haskell-x509-store
+pkgver=1.6.1
+pkgrel=6
+pkgdesc="X.509 collection accessing and storing methods"
+url="http://github.com/vincenthz/hs-certificate;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" 

[arch-commits] Commit in (5 files)

2016-01-12 Thread Felix Yan
Date: Wednesday, January 13, 2016 @ 03:47:20
  Author: fyan
Revision: 156216

addpkg: haskell-vector-binary-instances 0.2.1.0-1

Added:
  haskell-vector-binary-instances/
  haskell-vector-binary-instances/repos/
  haskell-vector-binary-instances/trunk/
  haskell-vector-binary-instances/trunk/PKGBUILD
  haskell-vector-binary-instances/trunk/haskell-vector-binary-instances.install

-+
 PKGBUILD|   42 ++
 haskell-vector-binary-instances.install |   18 
 2 files changed, 60 insertions(+)

Added: haskell-vector-binary-instances/trunk/PKGBUILD
===
--- haskell-vector-binary-instances/trunk/PKGBUILD  
(rev 0)
+++ haskell-vector-binary-instances/trunk/PKGBUILD  2016-01-13 02:47:20 UTC 
(rev 156216)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=vector-binary-instances
+pkgname=haskell-vector-binary-instances
+pkgver=0.2.1.0
+pkgrel=1
+pkgdesc="Instances of Data.Binary and Data.Serialize for vector"
+url="https://github.com/bos/vector-binary-instances;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-cereal" "haskell-vector")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('9450018a61ee5a62b802c1b2cfe8d289b7c8f3debeb0f8828679a4c085d31909')
+
+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"
+}


Property changes on: haskell-vector-binary-instances/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: 
haskell-vector-binary-instances/trunk/haskell-vector-binary-instances.install
===
--- 
haskell-vector-binary-instances/trunk/haskell-vector-binary-instances.install   
(rev 0)
+++ 
haskell-vector-binary-instances/trunk/haskell-vector-binary-instances.install   
2016-01-13 02:47:20 UTC (rev 156216)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-vector-binary-instances
+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)
+}


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

2016-01-12 Thread Felix Yan
Date: Wednesday, January 13, 2016 @ 05:01:28
  Author: fyan
Revision: 156263

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

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

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

Copied: pandoc-crossref/repos/community-staging-i686/PKGBUILD (from rev 156262, 
pandoc-crossref/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-01-13 04:01:28 UTC (rev 156263)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgbase=pandoc-crossref
+pkgname=(pandoc-crossref haskell-pandoc-crossref)
+pkgver=0.1.6.3
+pkgrel=3
+pkgdesc="Pandoc filter for cross-references"
+url="http://hackage.haskell.org/package/${pkgbase};
+license=("GPL2")
+arch=('i686' 'x86_64')
+makedepends=("ghc=7.10.3" "haskell-data-default" "haskell-mtl" 
"haskell-pandoc" "haskell-pandoc-types"
+ "haskell-yaml")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${pkgbase}/${pkgver}/${pkgbase}-${pkgver}.tar.gz;)
+sha256sums=('7ec41e6fa2acf6826889670e7636b209a6833872de3b65034891a402b7bd356b')
+
+build() {
+cd "${srcdir}/${pkgbase}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgbase}" 
--datasubdir="$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_pandoc-crossref() {
+depends=('pandoc')
+
+cd "${srcdir}/${pkgbase}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -r "$pkgdir"/usr/{lib,share}
+}
+
+package_haskell-pandoc-crossref() {
+pkgdesc="Pandoc filter for cross-references (docs and libraries)"
+depends=("${makedepends[@]}" 'pandoc-crossref')
+install="haskell-pandoc-crossref.install"
+
+cd "${srcdir}/${pkgbase}-${pkgver}"
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgbase}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${pkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -r "$pkgdir"/usr/bin
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE.md"
+}

Copied: 
pandoc-crossref/repos/community-staging-i686/haskell-pandoc-crossref.install 
(from rev 156262, pandoc-crossref/trunk/haskell-pandoc-crossref.install)
===
--- community-staging-i686/haskell-pandoc-crossref.install  
(rev 0)
+++ community-staging-i686/haskell-pandoc-crossref.install  2016-01-13 
04:01:28 UTC (rev 156263)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-pandoc-crossref
+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: pandoc-crossref/repos/community-staging-x86_64/PKGBUILD (from rev 
156262, pandoc-crossref/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-01-13 04:01:28 UTC (rev 156263)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Felix Yan 

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

2016-01-12 Thread Felix Yan
Date: Wednesday, January 13, 2016 @ 03:20:52
  Author: fyan
Revision: 156197

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

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

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

Copied: haskell-asn1-types/repos/community-staging-i686/PKGBUILD (from rev 
156196, haskell-asn1-types/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-01-13 02:20:52 UTC (rev 156197)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=asn1-types
+pkgname=haskell-asn1-types
+pkgver=0.3.2
+pkgrel=2
+pkgdesc="ASN.1 types"
+url="http://github.com/vincenthz/hs-asn1-types;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-hourglass" "haskell-memory")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('0c571fff4a10559c6a630d4851ba3cdf1d558185ce3dcfca1136f9883d647217')
+
+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-asn1-types/repos/community-staging-i686/haskell-asn1-types.install 
(from rev 156196, haskell-asn1-types/trunk/haskell-asn1-types.install)
===
--- community-staging-i686/haskell-asn1-types.install   
(rev 0)
+++ community-staging-i686/haskell-asn1-types.install   2016-01-13 02:20:52 UTC 
(rev 156197)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-asn1-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-asn1-types/repos/community-staging-x86_64/PKGBUILD (from rev 
156196, haskell-asn1-types/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-01-13 02:20:52 UTC (rev 156197)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=asn1-types
+pkgname=haskell-asn1-types
+pkgver=0.3.2
+pkgrel=2
+pkgdesc="ASN.1 types"
+url="http://github.com/vincenthz/hs-asn1-types;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-hourglass" "haskell-memory")
+options=('staticlibs')

[arch-commits] Commit in (5 files)

2016-01-12 Thread Felix Yan
Date: Wednesday, January 13, 2016 @ 03:24:35
  Author: fyan
Revision: 156198

addpkg: haskell-optparse-simple 0.0.3-1

Added:
  haskell-optparse-simple/
  haskell-optparse-simple/repos/
  haskell-optparse-simple/trunk/
  haskell-optparse-simple/trunk/PKGBUILD
  haskell-optparse-simple/trunk/haskell-optparse-simple.install

-+
 PKGBUILD|   42 ++
 haskell-optparse-simple.install |   18 
 2 files changed, 60 insertions(+)

Added: haskell-optparse-simple/trunk/PKGBUILD
===
--- haskell-optparse-simple/trunk/PKGBUILD  (rev 0)
+++ haskell-optparse-simple/trunk/PKGBUILD  2016-01-13 02:24:35 UTC (rev 
156198)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=optparse-simple
+pkgname=haskell-optparse-simple
+pkgver=0.0.3
+pkgrel=1
+pkgdesc="Simple interface to optparse-applicative"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-either" "haskell-gitrev" 
"haskell-optparse-applicative")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('4547f0a6c1bd959b1d9c3c2a5fabee39ac9a19dffabbb2d75461a2d461df8c7e')
+
+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"
+}


Property changes on: haskell-optparse-simple/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: haskell-optparse-simple/trunk/haskell-optparse-simple.install
===
--- haskell-optparse-simple/trunk/haskell-optparse-simple.install   
(rev 0)
+++ haskell-optparse-simple/trunk/haskell-optparse-simple.install   
2016-01-13 02:24:35 UTC (rev 156198)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-optparse-simple
+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)
+}


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

2016-01-12 Thread Felix Yan
Date: Wednesday, January 13, 2016 @ 03:45:46
  Author: fyan
Revision: 156214

upgpkg: haskell-x509-store 1.6.1-6

rebuild with memory-0.11

Modified:
  haskell-x509-store/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-01-13 02:43:21 UTC (rev 156213)
+++ PKGBUILD2016-01-13 02:45:46 UTC (rev 156214)
@@ -5,7 +5,7 @@
 _hkgname=x509-store
 pkgname=haskell-x509-store
 pkgver=1.6.1
-pkgrel=5
+pkgrel=6
 pkgdesc="X.509 collection accessing and storing methods"
 url="http://github.com/vincenthz/hs-certificate;
 license=("custom:BSD3")


[arch-commits] Commit in haskell-http-client-tls/repos (6 files)

2016-01-12 Thread Felix Yan
Date: Wednesday, January 13, 2016 @ 04:16:47
  Author: fyan
Revision: 156229

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

Added:
  haskell-http-client-tls/repos/community-staging-i686/
  haskell-http-client-tls/repos/community-staging-i686/PKGBUILD
(from rev 156228, haskell-http-client-tls/trunk/PKGBUILD)
  
haskell-http-client-tls/repos/community-staging-i686/haskell-http-client-tls.install
(from rev 156228, 
haskell-http-client-tls/trunk/haskell-http-client-tls.install)
  haskell-http-client-tls/repos/community-staging-x86_64/
  haskell-http-client-tls/repos/community-staging-x86_64/PKGBUILD
(from rev 156228, haskell-http-client-tls/trunk/PKGBUILD)
  
haskell-http-client-tls/repos/community-staging-x86_64/haskell-http-client-tls.install
(from rev 156228, 
haskell-http-client-tls/trunk/haskell-http-client-tls.install)

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

Copied: haskell-http-client-tls/repos/community-staging-i686/PKGBUILD (from rev 
156228, haskell-http-client-tls/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-01-13 03:16:47 UTC (rev 156229)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http-client-tls
+pkgname=haskell-http-client-tls
+pkgver=0.2.2
+pkgrel=17
+pkgdesc="http-client backend using the connection package and tls library"
+url="https://github.com/snoyberg/http-client;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-connection" "haskell-data-default-class" 
"haskell-http-client"
+ "haskell-network" "haskell-tls")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('451e5833a1f07fdc162fde4371ac92986932d5c38f9969ace7babb020bc80128')
+
+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-http-client-tls/repos/community-staging-i686/haskell-http-client-tls.install
 (from rev 156228, 
haskell-http-client-tls/trunk/haskell-http-client-tls.install)
===
--- community-staging-i686/haskell-http-client-tls.install  
(rev 0)
+++ community-staging-i686/haskell-http-client-tls.install  2016-01-13 
03:16:47 UTC (rev 156229)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-http-client-tls
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-http-client-tls/repos/community-staging-x86_64/PKGBUILD (from 
rev 156228, haskell-http-client-tls/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-01-13 03:16:47 UTC (rev 156229)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http-client-tls
+pkgname=haskell-http-client-tls
+pkgver=0.2.2
+pkgrel=17

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

2016-01-12 Thread Felix Yan
Date: Wednesday, January 13, 2016 @ 04:17:42
  Author: fyan
Revision: 156230

upgpkg: haskell-split 0.2.3-1

Modified:
  haskell-split/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-01-13 03:16:47 UTC (rev 156229)
+++ PKGBUILD2016-01-13 03:17:42 UTC (rev 156230)
@@ -4,8 +4,8 @@
 
 _hkgname=split
 pkgname=haskell-split
-pkgver=0.2.2
-pkgrel=2
+pkgver=0.2.3
+pkgrel=1
 pkgdesc="Combinator library for splitting lists."
 url="http://hackage.haskell.org/package/${_hkgname};
 license=("custom:BSD3")
@@ -14,7 +14,7 @@
 options=('staticlibs')
 
source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
 install="${pkgname}.install"
-sha256sums=('f9cf9e571357f227aed5be9a78f5bbf78ef55c99df2edf7fdc659acc1f904375')
+sha256sums=('a6d100e433fa27eda72127475ba9c55481ca4105cfbb6ff55b67023d00ccead9')
 
 prepare() {
 sed -i 's/build-depends: base <4.8/build-depends: base <4.9/' 
${_hkgname}-${pkgver}/${_hkgname}.cabal


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

2016-01-12 Thread Felix Yan
Date: Wednesday, January 13, 2016 @ 05:47:32
  Author: fyan
Revision: 156267

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

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

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

Copied: haskell-hakyll/repos/community-staging-i686/PKGBUILD (from rev 156266, 
haskell-hakyll/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-01-13 04:47:32 UTC (rev 156267)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hakyll
+pkgname=haskell-hakyll
+pkgver=4.7.5.1
+pkgrel=7
+pkgdesc="A static website compiler library"
+url="http://jaspervdj.be/hakyll;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-blaze-html" "haskell-blaze-markup" 
"haskell-cmdargs"
+ "haskell-cryptohash" "haskell-data-default" "haskell-http-conduit"
+ "haskell-http-types" "haskell-lrucache" "haskell-mtl" 
"haskell-network"
+ "haskell-network-uri" "haskell-pandoc" "haskell-pandoc-citeproc"
+ "haskell-parsec" "haskell-random" "haskell-regex-base" 
"haskell-regex-tdfa"
+ "haskell-tagsoup" "haskell-text" "haskell-time-locale-compat")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('39efc15d8d9bce1f151587f1556be8daac58c1d3fe6596458f0e9122a659b310')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-fcheckexternal -f-watchserver -f-previewserver
+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-hakyll/repos/community-staging-i686/haskell-hakyll.install 
(from rev 156266, haskell-hakyll/trunk/haskell-hakyll.install)
===
--- community-staging-i686/haskell-hakyll.install   
(rev 0)
+++ community-staging-i686/haskell-hakyll.install   2016-01-13 04:47:32 UTC 
(rev 156267)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-hakyll
+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-hakyll/repos/community-staging-x86_64/PKGBUILD (from rev 
156266, haskell-hakyll/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-01-13 04:47:32 UTC (rev 156267)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+

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

2016-01-12 Thread Felix Yan
Date: Wednesday, January 13, 2016 @ 05:47:03
  Author: fyan
Revision: 156266

upgpkg: haskell-hakyll 4.7.5.1-7

rebuild with memory-0.11, split-0.2.3

Modified:
  haskell-hakyll/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-01-13 04:46:52 UTC (rev 156265)
+++ PKGBUILD2016-01-13 04:47:03 UTC (rev 156266)
@@ -5,7 +5,7 @@
 _hkgname=hakyll
 pkgname=haskell-hakyll
 pkgver=4.7.5.1
-pkgrel=6
+pkgrel=7
 pkgdesc="A static website compiler library"
 url="http://jaspervdj.be/hakyll;
 license=("custom:BSD3")


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

2016-01-12 Thread Felix Yan
Date: Wednesday, January 13, 2016 @ 05:46:52
  Author: fyan
Revision: 156265

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

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

+
 community-staging-i686/PKGBUILD|   85 +++
 community-staging-i686/haskell-stack.install   |   18 
 community-staging-x86_64/PKGBUILD  |   85 +++
 community-staging-x86_64/haskell-stack.install |   18 
 4 files changed, 206 insertions(+)

Copied: stack/repos/community-staging-i686/PKGBUILD (from rev 156264, 
stack/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-01-13 04:46:52 UTC (rev 156265)
@@ -0,0 +1,85 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgbase=stack
+pkgname=(stack haskell-stack)
+pkgver=1.0.0
+pkgrel=1
+pkgdesc="The Haskell Tool Stack"
+url="https://github.com/commercialhaskell/stack;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+makedepends=("ghc=7.10.3" "haskell-aeson" "haskell-ansi-terminal" 
"haskell-async"
+ "haskell-attoparsec" "haskell-base16-bytestring" 
"haskell-base64-bytestring"
+ "haskell-bifunctors" "haskell-binary-tagged" 
"haskell-blaze-builder"
+ "haskell-byteable" "haskell-conduit" "haskell-conduit-combinators"
+ "haskell-conduit-extra" "haskell-cryptohash" 
"haskell-cryptohash-conduit"
+ "haskell-edit-distance" "haskell-either" "haskell-email-validate"
+ "haskell-enclosed-exceptions" "haskell-errors" 
"haskell-exceptions"
+ "haskell-extra" "haskell-fast-logger" "haskell-file-embed" 
"haskell-filelock"
+ "haskell-fsnotify" "haskell-gitrev" "haskell-hashable" 
"haskell-hastache"
+ "haskell-http-client" "haskell-http-client-tls" 
"haskell-http-conduit"
+ "haskell-http-types" "haskell-lifted-base" "haskell-monad-control"
+ "haskell-monad-logger" "haskell-monad-loops" "haskell-mtl" 
"haskell-old-locale"
+ "haskell-optparse-applicative" "haskell-optparse-simple" 
"haskell-path"
+ "haskell-persistent" "haskell-persistent-sqlite" 
"haskell-persistent-template"
+ "haskell-project-template" "haskell-resourcet" "haskell-retry" 
"haskell-safe"
+ "haskell-semigroups" "haskell-split" "haskell-stm" 
"haskell-streaming-commons"
+ "haskell-tar" "haskell-temporary" "haskell-text" 
"haskell-text-binary"
+ "haskell-transformers-base" "haskell-unix-compat" 
"haskell-unordered-containers"
+ "haskell-uuid" "haskell-vector" "haskell-vector-binary-instances" 
"haskell-void"
+ "haskell-word8" "haskell-yaml" "haskell-zlib")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${pkgbase}/${pkgver}/${pkgbase}-${pkgver}.tar.gz;)
+sha256sums=('cd2f606d390fe521b6ba0794de87edcba64c4af66856af09594907c2b4f4751d')
+
+prepare() {
+sed -e 's/async >=2.0.2 && <2.1,/async >=2.0.2 \&\& <2.2,/' \
+-e 's/errors >=2.0.1 && <2.1,/errors >=2.0.1 \&\& <2.2,/' \
+-e 's/gitrev ==1.1.*,/gitrev >= 1.1 \&\& < 1.3,/' \
+-e 's/tar >=0.4.1.0 && <0.5,/tar >=0.4.1.0 \&\& <0.6,/' \
+-i ${pkgbase}-${pkgver}/${pkgbase}.cabal
+}
+
+build() {
+cd "${srcdir}/${pkgbase}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgbase}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-disable-git-info -f-integration-tests
+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_stack() {
+depends=('gmp' 'libffi' 'zlib')
+
+cd "${srcdir}/${pkgbase}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -r "$pkgdir"/usr/{lib,share/doc}
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+
+"${pkgdir}"/usr/bin/stack --bash-completion-script /usr/bin/stack > 
stack_completion_script
+install -Dm644 stack_completion_script 
"${pkgdir}/usr/share/bash-completion/completions/stack"
+}
+

[arch-commits] Commit in zip/trunk (PKGBUILD zipnote.patch)

2016-01-12 Thread Gaetan Bisson
Date: Wednesday, January 13, 2016 @ 08:13:54
  Author: bisson
Revision: 258153

fix FS#47713

Added:
  zip/trunk/zipnote.patch
Modified:
  zip/trunk/PKGBUILD

---+
 PKGBUILD  |9 ++---
 zipnote.patch |   13 +
 2 files changed, 19 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-01-13 06:57:29 UTC (rev 258152)
+++ PKGBUILD2016-01-13 07:13:54 UTC (rev 258153)
@@ -5,14 +5,16 @@
 pkgname=zip
 pkgver=3.0
 _pkgver=${pkgver/./}
-pkgrel=6
+pkgrel=7
 pkgdesc='Compressor/archiver for creating and modifying zipfiles'
 url='http://www.info-zip.org/Zip.html'
 arch=('i686' 'x86_64')
 license=('custom')
 depends=('bzip2')
-source=("http://downloads.sourceforge.net/infozip/${pkgname}${_pkgver}.tar.gz;)
-sha1sums=('c9f4099ecf2772b53c2dd4a8e508064ce015d182')
+source=("http://downloads.sourceforge.net/infozip/${pkgname}${_pkgver}.tar.gz;
+'zipnote.patch')
+sha1sums=('c9f4099ecf2772b53c2dd4a8e508064ce015d182'
+  'bb7301ba3339af9b9837dfc323777393f5c53a65')
 
 options=('!makeflags')
 
@@ -20,6 +22,7 @@
cd "${srcdir}/${pkgname}${_pkgver}"
sed -e "/^CFLAGS_NOOPT =/s/\$/ $CPPFLAGS $CFLAGS/" -i unix/Makefile
sed -e "s/^LFLAGS1=''/LFLAGS1=$LDFLAGS/" -i unix/configure
+   patch -p1 -i ../zipnote.patch
 }
 
 build() {

Added: zipnote.patch
===
--- zipnote.patch   (rev 0)
+++ zipnote.patch   2016-01-13 07:13:54 UTC (rev 258153)
@@ -0,0 +1,13 @@
+diff --git a/zipnote.c b/zipnote.c
+index 5e02cb6..996f012 100644
+--- a/zipnote.c
 b/zipnote.c
+@@ -661,7 +661,7 @@ char **argv;/* command line tokens */
+ if ((r = zipcopy(z)) != ZE_OK)
+   ziperr(r, "was copying an entry");
+   }
+-  fclose(x);
++  fclose(in_file);
+ 
+   /* Write central directory and end of central directory with new comments */
+   if ((c = zftello(y)) == (zoff_t)-1)/* get start of central */


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

2016-01-12 Thread Felix Yan
Date: Wednesday, January 13, 2016 @ 03:47:54
  Author: fyan
Revision: 156217

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

Added:
  haskell-vector-binary-instances/repos/community-i686/
  haskell-vector-binary-instances/repos/community-i686/PKGBUILD
(from rev 156216, haskell-vector-binary-instances/trunk/PKGBUILD)
  
haskell-vector-binary-instances/repos/community-i686/haskell-vector-binary-instances.install
(from rev 156216, 
haskell-vector-binary-instances/trunk/haskell-vector-binary-instances.install)
  haskell-vector-binary-instances/repos/community-x86_64/
  haskell-vector-binary-instances/repos/community-x86_64/PKGBUILD
(from rev 156216, haskell-vector-binary-instances/trunk/PKGBUILD)
  
haskell-vector-binary-instances/repos/community-x86_64/haskell-vector-binary-instances.install
(from rev 156216, 
haskell-vector-binary-instances/trunk/haskell-vector-binary-instances.install)

--+
 community-i686/PKGBUILD  |   42 +
 community-i686/haskell-vector-binary-instances.install   |   18 +
 community-x86_64/PKGBUILD|   42 +
 community-x86_64/haskell-vector-binary-instances.install |   18 +
 4 files changed, 120 insertions(+)

Copied: haskell-vector-binary-instances/repos/community-i686/PKGBUILD (from rev 
156216, haskell-vector-binary-instances/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-01-13 02:47:54 UTC (rev 156217)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=vector-binary-instances
+pkgname=haskell-vector-binary-instances
+pkgver=0.2.1.0
+pkgrel=1
+pkgdesc="Instances of Data.Binary and Data.Serialize for vector"
+url="https://github.com/bos/vector-binary-instances;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-cereal" "haskell-vector")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('9450018a61ee5a62b802c1b2cfe8d289b7c8f3debeb0f8828679a4c085d31909')
+
+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-vector-binary-instances/repos/community-i686/haskell-vector-binary-instances.install
 (from rev 156216, 
haskell-vector-binary-instances/trunk/haskell-vector-binary-instances.install)
===
--- community-i686/haskell-vector-binary-instances.install  
(rev 0)
+++ community-i686/haskell-vector-binary-instances.install  2016-01-13 
02:47:54 UTC (rev 156217)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-vector-binary-instances
+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-vector-binary-instances/repos/community-x86_64/PKGBUILD (from 
rev 156216, haskell-vector-binary-instances/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-01-13 02:47:54 UTC (rev 156217)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=vector-binary-instances
+pkgname=haskell-vector-binary-instances
+pkgver=0.2.1.0

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

2016-01-12 Thread Felix Yan
Date: Wednesday, January 13, 2016 @ 04:27:42
  Author: fyan
Revision: 156251

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

Added:
  haskell-mono-traversable/repos/community-staging-i686/
  haskell-mono-traversable/repos/community-staging-i686/PKGBUILD
(from rev 156250, haskell-mono-traversable/trunk/PKGBUILD)
  
haskell-mono-traversable/repos/community-staging-i686/haskell-mono-traversable.install
(from rev 156250, 
haskell-mono-traversable/trunk/haskell-mono-traversable.install)
  haskell-mono-traversable/repos/community-staging-x86_64/
  haskell-mono-traversable/repos/community-staging-x86_64/PKGBUILD
(from rev 156250, haskell-mono-traversable/trunk/PKGBUILD)
  
haskell-mono-traversable/repos/community-staging-x86_64/haskell-mono-traversable.install
(from rev 156250, 
haskell-mono-traversable/trunk/haskell-mono-traversable.install)

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

Copied: haskell-mono-traversable/repos/community-staging-i686/PKGBUILD (from 
rev 156250, haskell-mono-traversable/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-01-13 03:27:42 UTC (rev 156251)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=mono-traversable
+pkgname=haskell-mono-traversable
+pkgver=0.10.0.1
+pkgrel=2
+pkgdesc="Type classes for mapping, folding, and traversing monomorphic 
containers"
+url="https://github.com/snoyberg/mono-traversable;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-comonad" "haskell-dlist" 
"haskell-dlist-instances"
+ "haskell-hashable" "haskell-semigroupoids" "haskell-semigroups"
+ "haskell-split" "haskell-text" "haskell-unordered-containers"
+ "haskell-vector" "haskell-vector-algorithms" 
"haskell-vector-instances")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('2e25c24ed3cf644cd4818cfb6d4e122cffcac2a375f0edb544b6814f871af45d')
+
+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-mono-traversable/repos/community-staging-i686/haskell-mono-traversable.install
 (from rev 156250, 
haskell-mono-traversable/trunk/haskell-mono-traversable.install)
===
--- community-staging-i686/haskell-mono-traversable.install 
(rev 0)
+++ community-staging-i686/haskell-mono-traversable.install 2016-01-13 
03:27:42 UTC (rev 156251)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-mono-traversable
+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-mono-traversable/repos/community-staging-x86_64/PKGBUILD (from 
rev 156250, haskell-mono-traversable/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-01-13 03:27:42 UTC (rev 156251)
@@ -0,0 +1,45 @@
+# $Id$
+# 

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

2016-01-12 Thread Felix Yan
Date: Wednesday, January 13, 2016 @ 04:27:01
  Author: fyan
Revision: 156250

upgpkg: haskell-mono-traversable 0.10.0.1-2
ld with memory-0.11, split-0.2.3

Modified:
  haskell-mono-traversable/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-01-13 03:25:13 UTC (rev 156249)
+++ PKGBUILD2016-01-13 03:27:01 UTC (rev 156250)
@@ -5,7 +5,7 @@
 _hkgname=mono-traversable
 pkgname=haskell-mono-traversable
 pkgver=0.10.0.1
-pkgrel=1
+pkgrel=2
 pkgdesc="Type classes for mapping, folding, and traversing monomorphic 
containers"
 url="https://github.com/snoyberg/mono-traversable;
 license=("MIT")


[arch-commits] Commit in (5 files)

2016-01-12 Thread Felix Yan
Date: Wednesday, January 13, 2016 @ 05:46:20
  Author: fyan
Revision: 156264

addpkg: stack 1.0.0-1

Added:
  stack/
  stack/repos/
  stack/trunk/
  stack/trunk/PKGBUILD
  stack/trunk/haskell-stack.install

---+
 PKGBUILD  |   85 
 haskell-stack.install |   18 ++
 2 files changed, 103 insertions(+)

Added: stack/trunk/PKGBUILD
===
--- stack/trunk/PKGBUILD(rev 0)
+++ stack/trunk/PKGBUILD2016-01-13 04:46:20 UTC (rev 156264)
@@ -0,0 +1,85 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgbase=stack
+pkgname=(stack haskell-stack)
+pkgver=1.0.0
+pkgrel=1
+pkgdesc="The Haskell Tool Stack"
+url="https://github.com/commercialhaskell/stack;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+makedepends=("ghc=7.10.3" "haskell-aeson" "haskell-ansi-terminal" 
"haskell-async"
+ "haskell-attoparsec" "haskell-base16-bytestring" 
"haskell-base64-bytestring"
+ "haskell-bifunctors" "haskell-binary-tagged" 
"haskell-blaze-builder"
+ "haskell-byteable" "haskell-conduit" "haskell-conduit-combinators"
+ "haskell-conduit-extra" "haskell-cryptohash" 
"haskell-cryptohash-conduit"
+ "haskell-edit-distance" "haskell-either" "haskell-email-validate"
+ "haskell-enclosed-exceptions" "haskell-errors" 
"haskell-exceptions"
+ "haskell-extra" "haskell-fast-logger" "haskell-file-embed" 
"haskell-filelock"
+ "haskell-fsnotify" "haskell-gitrev" "haskell-hashable" 
"haskell-hastache"
+ "haskell-http-client" "haskell-http-client-tls" 
"haskell-http-conduit"
+ "haskell-http-types" "haskell-lifted-base" "haskell-monad-control"
+ "haskell-monad-logger" "haskell-monad-loops" "haskell-mtl" 
"haskell-old-locale"
+ "haskell-optparse-applicative" "haskell-optparse-simple" 
"haskell-path"
+ "haskell-persistent" "haskell-persistent-sqlite" 
"haskell-persistent-template"
+ "haskell-project-template" "haskell-resourcet" "haskell-retry" 
"haskell-safe"
+ "haskell-semigroups" "haskell-split" "haskell-stm" 
"haskell-streaming-commons"
+ "haskell-tar" "haskell-temporary" "haskell-text" 
"haskell-text-binary"
+ "haskell-transformers-base" "haskell-unix-compat" 
"haskell-unordered-containers"
+ "haskell-uuid" "haskell-vector" "haskell-vector-binary-instances" 
"haskell-void"
+ "haskell-word8" "haskell-yaml" "haskell-zlib")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${pkgbase}/${pkgver}/${pkgbase}-${pkgver}.tar.gz;)
+sha256sums=('cd2f606d390fe521b6ba0794de87edcba64c4af66856af09594907c2b4f4751d')
+
+prepare() {
+sed -e 's/async >=2.0.2 && <2.1,/async >=2.0.2 \&\& <2.2,/' \
+-e 's/errors >=2.0.1 && <2.1,/errors >=2.0.1 \&\& <2.2,/' \
+-e 's/gitrev ==1.1.*,/gitrev >= 1.1 \&\& < 1.3,/' \
+-e 's/tar >=0.4.1.0 && <0.5,/tar >=0.4.1.0 \&\& <0.6,/' \
+-i ${pkgbase}-${pkgver}/${pkgbase}.cabal
+}
+
+build() {
+cd "${srcdir}/${pkgbase}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgbase}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-disable-git-info -f-integration-tests
+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_stack() {
+depends=('gmp' 'libffi' 'zlib')
+
+cd "${srcdir}/${pkgbase}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -r "$pkgdir"/usr/{lib,share/doc}
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+
+"${pkgdir}"/usr/bin/stack --bash-completion-script /usr/bin/stack > 
stack_completion_script
+install -Dm644 stack_completion_script 
"${pkgdir}/usr/share/bash-completion/completions/stack"
+}
+
+package_haskell-stack() {
+pkgdesc="The Haskell Tool Stack (docs and libraries)"
+depends=("${makedepends[@]}" 'stack')
+install="haskell-stack.install"
+
+cd "${srcdir}/${pkgbase}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${pkgbase}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+rm -rf "${pkgdir}/usr/bin"
+}


Property 

[arch-commits] Commit in samba/repos (56 files)

2016-01-12 Thread Tobias Powalowski
Date: Wednesday, January 13, 2016 @ 07:57:29
  Author: tpowa
Revision: 258152

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

Added:
  samba/repos/extra-i686/0001-s4-lib-tls-use-gnutls_priority_set_direct.patch
(from rev 258151, 
samba/trunk/0001-s4-lib-tls-use-gnutls_priority_set_direct.patch)
  samba/repos/extra-i686/PKGBUILD
(from rev 258151, samba/trunk/PKGBUILD)
  samba/repos/extra-i686/nmbd.service
(from rev 258151, samba/trunk/nmbd.service)
  samba/repos/extra-i686/samba-4.0.3-fix_pidl_with_gcc48.patch
(from rev 258151, samba/trunk/samba-4.0.3-fix_pidl_with_gcc48.patch)
  samba/repos/extra-i686/samba.conf
(from rev 258151, samba/trunk/samba.conf)
  samba/repos/extra-i686/samba.conf.d
(from rev 258151, samba/trunk/samba.conf.d)
  samba/repos/extra-i686/samba.install
(from rev 258151, samba/trunk/samba.install)
  samba/repos/extra-i686/samba.logrotate
(from rev 258151, samba/trunk/samba.logrotate)
  samba/repos/extra-i686/samba.pam
(from rev 258151, samba/trunk/samba.pam)
  samba/repos/extra-i686/samba.service
(from rev 258151, samba/trunk/samba.service)
  samba/repos/extra-i686/smbd.service
(from rev 258151, samba/trunk/smbd.service)
  samba/repos/extra-i686/smbd.socket
(from rev 258151, samba/trunk/smbd.socket)
  samba/repos/extra-i686/smbd@.service
(from rev 258151, samba/trunk/smbd@.service)
  samba/repos/extra-i686/winbindd.service
(from rev 258151, samba/trunk/winbindd.service)
  samba/repos/extra-x86_64/0001-s4-lib-tls-use-gnutls_priority_set_direct.patch
(from rev 258151, 
samba/trunk/0001-s4-lib-tls-use-gnutls_priority_set_direct.patch)
  samba/repos/extra-x86_64/PKGBUILD
(from rev 258151, samba/trunk/PKGBUILD)
  samba/repos/extra-x86_64/nmbd.service
(from rev 258151, samba/trunk/nmbd.service)
  samba/repos/extra-x86_64/samba-4.0.3-fix_pidl_with_gcc48.patch
(from rev 258151, samba/trunk/samba-4.0.3-fix_pidl_with_gcc48.patch)
  samba/repos/extra-x86_64/samba.conf
(from rev 258151, samba/trunk/samba.conf)
  samba/repos/extra-x86_64/samba.conf.d
(from rev 258151, samba/trunk/samba.conf.d)
  samba/repos/extra-x86_64/samba.install
(from rev 258151, samba/trunk/samba.install)
  samba/repos/extra-x86_64/samba.logrotate
(from rev 258151, samba/trunk/samba.logrotate)
  samba/repos/extra-x86_64/samba.pam
(from rev 258151, samba/trunk/samba.pam)
  samba/repos/extra-x86_64/samba.service
(from rev 258151, samba/trunk/samba.service)
  samba/repos/extra-x86_64/smbd.service
(from rev 258151, samba/trunk/smbd.service)
  samba/repos/extra-x86_64/smbd.socket
(from rev 258151, samba/trunk/smbd.socket)
  samba/repos/extra-x86_64/smbd@.service
(from rev 258151, samba/trunk/smbd@.service)
  samba/repos/extra-x86_64/winbindd.service
(from rev 258151, samba/trunk/winbindd.service)
Deleted:
  samba/repos/extra-i686/0001-s4-lib-tls-use-gnutls_priority_set_direct.patch
  samba/repos/extra-i686/PKGBUILD
  samba/repos/extra-i686/nmbd.service
  samba/repos/extra-i686/samba-4.0.3-fix_pidl_with_gcc48.patch
  samba/repos/extra-i686/samba.conf
  samba/repos/extra-i686/samba.conf.d
  samba/repos/extra-i686/samba.install
  samba/repos/extra-i686/samba.logrotate
  samba/repos/extra-i686/samba.pam
  samba/repos/extra-i686/samba.service
  samba/repos/extra-i686/smbd.service
  samba/repos/extra-i686/smbd.socket
  samba/repos/extra-i686/smbd@.service
  samba/repos/extra-i686/winbindd.service
  samba/repos/extra-x86_64/0001-s4-lib-tls-use-gnutls_priority_set_direct.patch
  samba/repos/extra-x86_64/PKGBUILD
  samba/repos/extra-x86_64/nmbd.service
  samba/repos/extra-x86_64/samba-4.0.3-fix_pidl_with_gcc48.patch
  samba/repos/extra-x86_64/samba.conf
  samba/repos/extra-x86_64/samba.conf.d
  samba/repos/extra-x86_64/samba.install
  samba/repos/extra-x86_64/samba.logrotate
  samba/repos/extra-x86_64/samba.pam
  samba/repos/extra-x86_64/samba.service
  samba/repos/extra-x86_64/smbd.service
  samba/repos/extra-x86_64/smbd.socket
  samba/repos/extra-x86_64/smbd@.service
  samba/repos/extra-x86_64/winbindd.service

---+
 /0001-s4-lib-tls-use-gnutls_priority_set_direct.patch |  138 ++
 /PKGBUILD |  514 
++
 /nmbd.service |   24 
 /samba-4.0.3-fix_pidl_with_gcc48.patch|  120 ++
 /samba.conf   |4 
 /samba.conf.d |   36 
 /samba.install|   28 
 /samba.logrotate  |   18 
 /samba.pam|6 
 /samba.service|   28 
 /smbd.service |   24 
 /smbd.socket

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

2016-01-12 Thread Tobias Powalowski
Date: Wednesday, January 13, 2016 @ 07:57:01
  Author: tpowa
Revision: 258151

upgpkg: samba 4.3.4-1

bump to latest version

Modified:
  samba/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-01-12 22:50:48 UTC (rev 258150)
+++ PKGBUILD2016-01-13 06:57:01 UTC (rev 258151)
@@ -10,11 +10,11 @@
 
 pkgbase=samba
 pkgname=('libwbclient' 'smbclient' 'samba')
-pkgver=4.3.3
+pkgver=4.3.4
 # We use the 'A' to fake out pacman's version comparators.  Samba chooses
 # to append 'a','b',etc to their subsequent releases, which pacman
 # misconstrues as alpha, beta, etc.  Bad samba!
-_realver=4.3.3
+_realver=4.3.4
 pkgrel=1
 arch=(i686 x86_64)
 url="http://www.samba.org;
@@ -243,7 +243,7 @@
   # copy ldap example
   install -D -m644 ${srcdir}/samba-${_realver}/examples/LDAP/samba.schema 
${pkgdir}/usr/share/doc/samba/examples/LDAP/samba.schema
 }
-md5sums=('d7e2bef4deb00178eb310d7b0da3ef8e'
+md5sums=('48df803c6c6c475a714cae82a2dc219e'
  'SKIP'
  '5697da77590ec092cc8a883bae06093c'
  '96f82c38f3f540b53f3e5144900acf17'


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

2016-01-12 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 08:59:30
  Author: arojas
Revision: 258044

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

Added:
  kdiamond/repos/extra-i686/PKGBUILD
(from rev 258043, kdiamond/trunk/PKGBUILD)
  kdiamond/repos/extra-i686/kdiamond.install
(from rev 258043, kdiamond/trunk/kdiamond.install)
  kdiamond/repos/extra-x86_64/PKGBUILD
(from rev 258043, kdiamond/trunk/PKGBUILD)
  kdiamond/repos/extra-x86_64/kdiamond.install
(from rev 258043, kdiamond/trunk/kdiamond.install)
Deleted:
  kdiamond/repos/extra-i686/PKGBUILD
  kdiamond/repos/extra-i686/kdiamond.install
  kdiamond/repos/extra-x86_64/PKGBUILD
  kdiamond/repos/extra-x86_64/kdiamond.install

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:59:10 UTC (rev 258043)
+++ extra-i686/PKGBUILD 2016-01-12 07:59:30 UTC (rev 258044)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=kdiamond
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="A single player puzzle game"
-url="http://kde.org/applications/games/kdiamond/;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde-applications' 'kdegames')
-depends=('libkdegames' 'knotifyconfig' 'hicolor-icon-theme')
-makedepends=('extra-cmake-modules' 'python' 'kdoctools')
-install=${pkgname}.install
-conflicts=('kdegames-kdiamond')
-replaces=('kdegames-kdiamond')
-source=("http://download.kde.org/stable/applications/${pkgver}/src/kdiamond-${pkgver}.tar.xz;)
-sha1sums=('22ae55d1381a3d88950688feaac2b8d8da6af5be')
-
-build() {
-  mkdir -p build
-  cd build
-  cmake ../kdiamond-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: kdiamond/repos/extra-i686/PKGBUILD (from rev 258043, 
kdiamond/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:59:30 UTC (rev 258044)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdiamond
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="A single player puzzle game"
+url="http://kde.org/applications/games/kdiamond/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdegames')
+depends=('libkdegames' 'knotifyconfig' 'hicolor-icon-theme')
+makedepends=('extra-cmake-modules' 'python' 'kdoctools')
+install=${pkgname}.install
+conflicts=('kdegames-kdiamond')
+replaces=('kdegames-kdiamond')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kdiamond-${pkgver}.tar.xz;)
+sha1sums=('66500346f76c2c4024a29388fcb9f1e769781e99')
+
+build() {
+  mkdir -p build
+  cd build
+  cmake ../kdiamond-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-i686/kdiamond.install
===
--- extra-i686/kdiamond.install 2016-01-12 07:59:10 UTC (rev 258043)
+++ extra-i686/kdiamond.install 2016-01-12 07:59:30 UTC (rev 258044)
@@ -1,11 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: kdiamond/repos/extra-i686/kdiamond.install (from rev 258043, 
kdiamond/trunk/kdiamond.install)
===
--- extra-i686/kdiamond.install (rev 0)
+++ extra-i686/kdiamond.install 2016-01-12 07:59:30 UTC (rev 258044)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 07:59:10 UTC (rev 258043)
+++ extra-x86_64/PKGBUILD   2016-01-12 07:59:30 UTC (rev 258044)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=kdiamond
-pkgver=15.12.0
-pkgrel=1

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

2016-01-12 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 08:59:53
  Author: arojas
Revision: 258045

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

Added:
  kfourinline/repos/extra-i686/PKGBUILD
(from rev 258044, kfourinline/trunk/PKGBUILD)
  kfourinline/repos/extra-i686/kfourinline.install
(from rev 258044, kfourinline/trunk/kfourinline.install)
  kfourinline/repos/extra-x86_64/PKGBUILD
(from rev 258044, kfourinline/trunk/PKGBUILD)
  kfourinline/repos/extra-x86_64/kfourinline.install
(from rev 258044, kfourinline/trunk/kfourinline.install)
Deleted:
  kfourinline/repos/extra-i686/PKGBUILD
  kfourinline/repos/extra-i686/kfourinline.install
  kfourinline/repos/extra-x86_64/PKGBUILD
  kfourinline/repos/extra-x86_64/kfourinline.install

--+
 /PKGBUILD|   70 +
 /kfourinline.install |   24 
 extra-i686/PKGBUILD  |   35 --
 extra-i686/kfourinline.install   |   12 --
 extra-x86_64/PKGBUILD|   35 --
 extra-x86_64/kfourinline.install |   12 --
 6 files changed, 94 insertions(+), 94 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 07:59:30 UTC (rev 258044)
+++ extra-i686/PKGBUILD 2016-01-12 07:59:53 UTC (rev 258045)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=kfourinline
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="A four-in-a-row game"
-url="http://kde.org/applications/games/kfourinline/;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde-applications' 'kdegames')
-depends=('libkdegames' 'knotifyconfig' 'hicolor-icon-theme')
-makedepends=('extra-cmake-modules' 'python' 'kdoctools')
-install=${pkgname}.install
-conflicts=('kdegames-kfourinline')
-replaces=('kdegames-kfourinline')
-source=("http://download.kde.org/stable/applications/${pkgver}/src/kfourinline-${pkgver}.tar.xz;)
-sha1sums=('60fbe1e8df449f3c2d3c757ac6b03527afc95715')
-
-build() {
-  mkdir -p build
-  cd build
-  cmake ../kfourinline-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: kfourinline/repos/extra-i686/PKGBUILD (from rev 258044, 
kfourinline/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 07:59:53 UTC (rev 258045)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kfourinline
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="A four-in-a-row game"
+url="http://kde.org/applications/games/kfourinline/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdegames')
+depends=('libkdegames' 'knotifyconfig' 'hicolor-icon-theme')
+makedepends=('extra-cmake-modules' 'python' 'kdoctools')
+install=${pkgname}.install
+conflicts=('kdegames-kfourinline')
+replaces=('kdegames-kfourinline')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kfourinline-${pkgver}.tar.xz;)
+sha1sums=('d5561201ca7f5b02c99b90fcf26cfc74525c49bf')
+
+build() {
+  mkdir -p build
+  cd build
+  cmake ../kfourinline-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-i686/kfourinline.install
===
--- extra-i686/kfourinline.install  2016-01-12 07:59:30 UTC (rev 258044)
+++ extra-i686/kfourinline.install  2016-01-12 07:59:53 UTC (rev 258045)
@@ -1,12 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-   update-desktop-database -q
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: kfourinline/repos/extra-i686/kfourinline.install (from rev 258044, 
kfourinline/trunk/kfourinline.install)
===
--- extra-i686/kfourinline.install  (rev 0)
+++ extra-i686/kfourinline.install  2016-01-12 07:59:53 UTC (rev 258045)
@@ -0,0 +1,12 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+   update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 07:59:30 UTC (rev 258044)
+++ extra-x86_64/PKGBUILD   2016-01-12 

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

2016-01-12 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 09:08:27
  Author: arojas
Revision: 258063

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

Added:
  kdegames-ksirk/repos/extra-i686/PKGBUILD
(from rev 258062, kdegames-ksirk/trunk/PKGBUILD)
  kdegames-ksirk/repos/extra-i686/kdegames-ksirk.install
(from rev 258062, kdegames-ksirk/trunk/kdegames-ksirk.install)
  kdegames-ksirk/repos/extra-x86_64/PKGBUILD
(from rev 258062, kdegames-ksirk/trunk/PKGBUILD)
  kdegames-ksirk/repos/extra-x86_64/kdegames-ksirk.install
(from rev 258062, kdegames-ksirk/trunk/kdegames-ksirk.install)
Deleted:
  kdegames-ksirk/repos/extra-i686/PKGBUILD
  kdegames-ksirk/repos/extra-i686/kdegames-ksirk.install
  kdegames-ksirk/repos/extra-x86_64/PKGBUILD
  kdegames-ksirk/repos/extra-x86_64/kdegames-ksirk.install

-+
 /PKGBUILD   |   64 ++
 /kdegames-ksirk.install |   22 +++
 extra-i686/PKGBUILD |   32 -
 extra-i686/kdegames-ksirk.install   |   11 -
 extra-x86_64/PKGBUILD   |   32 -
 extra-x86_64/kdegames-ksirk.install |   11 -
 6 files changed, 86 insertions(+), 86 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 08:07:38 UTC (rev 258062)
+++ extra-i686/PKGBUILD 2016-01-12 08:08:27 UTC (rev 258063)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=kdegames-ksirk
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="A computerized version of a well known strategy game"
-url="http://kde.org/applications/games/ksirk/;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde-applications' 'kdegames')
-depends=('kdebase-runtime' 'libkdegames4')
-makedepends=('cmake' 'automoc4')
-install=${pkgname}.install
-source=("http://download.kde.org/stable/applications/${pkgver}/src/ksirk-${pkgver}.tar.xz;)
-sha1sums=('8781be0f612ab5b9ddcd3c18b7b14f7104159117')
-
-build() {
-  mkdir -p build
-  cd build
-  cmake ../ksirk-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: kdegames-ksirk/repos/extra-i686/PKGBUILD (from rev 258062, 
kdegames-ksirk/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 08:08:27 UTC (rev 258063)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdegames-ksirk
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="A computerized version of a well known strategy game"
+url="http://kde.org/applications/games/ksirk/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames4')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/applications/${pkgver}/src/ksirk-${pkgver}.tar.xz;)
+sha1sums=('64e37609d2decaf8774034baa8c4c26ece296308')
+
+build() {
+  mkdir -p build
+  cd build
+  cmake ../ksirk-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-i686/kdegames-ksirk.install
===
--- extra-i686/kdegames-ksirk.install   2016-01-12 08:07:38 UTC (rev 258062)
+++ extra-i686/kdegames-ksirk.install   2016-01-12 08:08:27 UTC (rev 258063)
@@ -1,11 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: kdegames-ksirk/repos/extra-i686/kdegames-ksirk.install (from rev 
258062, kdegames-ksirk/trunk/kdegames-ksirk.install)
===
--- extra-i686/kdegames-ksirk.install   (rev 0)
+++ extra-i686/kdegames-ksirk.install   2016-01-12 08:08:27 UTC (rev 258063)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 08:07:38 UTC (rev 258062)
+++ extra-x86_64/PKGBUILD   2016-01-12 08:08:27 UTC (rev 258063)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=kdegames-ksirk
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="A computerized version of a 

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

2016-01-12 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 09:07:38
  Author: arojas
Revision: 258062

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

Added:
  kshisen/repos/extra-i686/PKGBUILD
(from rev 258061, kshisen/trunk/PKGBUILD)
  kshisen/repos/extra-i686/kshisen.install
(from rev 258061, kshisen/trunk/kshisen.install)
  kshisen/repos/extra-x86_64/PKGBUILD
(from rev 258061, kshisen/trunk/PKGBUILD)
  kshisen/repos/extra-x86_64/kshisen.install
(from rev 258061, kshisen/trunk/kshisen.install)
Deleted:
  kshisen/repos/extra-i686/PKGBUILD
  kshisen/repos/extra-i686/kshisen.install
  kshisen/repos/extra-x86_64/PKGBUILD
  kshisen/repos/extra-x86_64/kshisen.install

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 08:07:16 UTC (rev 258061)
+++ extra-i686/PKGBUILD 2016-01-12 08:07:38 UTC (rev 258062)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=kshisen
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="A solitaire-like game played using the standard set of Mahjong tiles"
-url="http://kde.org/applications/games/kshisen/;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde-applications' 'kdegames')
-depends=('libkdegames' 'libkmahjongg' 'hicolor-icon-theme')
-makedepends=('extra-cmake-modules' 'python' 'kdoctools')
-install=${pkgname}.install
-conflicts=('kdegames-kshisen')
-replaces=('kdegames-kshisen')
-source=("http://download.kde.org/stable/applications/${pkgver}/src/kshisen-${pkgver}.tar.xz;)
-sha1sums=('f7569ab3ee80a2cbcd70bc0c1f033076020ed346')
-
-build() {
-  mkdir -p build
-  cd build
-  cmake ../kshisen-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: kshisen/repos/extra-i686/PKGBUILD (from rev 258061, 
kshisen/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 08:07:38 UTC (rev 258062)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kshisen
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="A solitaire-like game played using the standard set of Mahjong tiles"
+url="http://kde.org/applications/games/kshisen/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdegames')
+depends=('libkdegames' 'libkmahjongg' 'hicolor-icon-theme')
+makedepends=('extra-cmake-modules' 'python' 'kdoctools')
+install=${pkgname}.install
+conflicts=('kdegames-kshisen')
+replaces=('kdegames-kshisen')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kshisen-${pkgver}.tar.xz;)
+sha1sums=('cd5099b90322de066a69b68a218ab8bb4b6143ec')
+
+build() {
+  mkdir -p build
+  cd build
+  cmake ../kshisen-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-i686/kshisen.install
===
--- extra-i686/kshisen.install  2016-01-12 08:07:16 UTC (rev 258061)
+++ extra-i686/kshisen.install  2016-01-12 08:07:38 UTC (rev 258062)
@@ -1,11 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: kshisen/repos/extra-i686/kshisen.install (from rev 258061, 
kshisen/trunk/kshisen.install)
===
--- extra-i686/kshisen.install  (rev 0)
+++ extra-i686/kshisen.install  2016-01-12 08:07:38 UTC (rev 258062)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 08:07:16 UTC (rev 258061)
+++ extra-x86_64/PKGBUILD   2016-01-12 08:07:38 UTC (rev 258062)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=kshisen

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

2016-01-12 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 09:07:16
  Author: arojas
Revision: 258061

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

Added:
  kdegames-kreversi/repos/extra-i686/PKGBUILD
(from rev 258060, kdegames-kreversi/trunk/PKGBUILD)
  kdegames-kreversi/repos/extra-i686/kdegames-kreversi.install
(from rev 258060, kdegames-kreversi/trunk/kdegames-kreversi.install)
  kdegames-kreversi/repos/extra-x86_64/PKGBUILD
(from rev 258060, kdegames-kreversi/trunk/PKGBUILD)
  kdegames-kreversi/repos/extra-x86_64/kdegames-kreversi.install
(from rev 258060, kdegames-kreversi/trunk/kdegames-kreversi.install)
Deleted:
  kdegames-kreversi/repos/extra-i686/PKGBUILD
  kdegames-kreversi/repos/extra-i686/kdegames-kreversi.install
  kdegames-kreversi/repos/extra-x86_64/PKGBUILD
  kdegames-kreversi/repos/extra-x86_64/kdegames-kreversi.install

+
 /PKGBUILD  |   64 +++
 /kdegames-kreversi.install |   22 ++
 extra-i686/PKGBUILD|   32 ---
 extra-i686/kdegames-kreversi.install   |   11 -
 extra-x86_64/PKGBUILD  |   32 ---
 extra-x86_64/kdegames-kreversi.install |   11 -
 6 files changed, 86 insertions(+), 86 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 08:06:49 UTC (rev 258060)
+++ extra-i686/PKGBUILD 2016-01-12 08:07:16 UTC (rev 258061)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=kdegames-kreversi
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="A simple one player strategy game played against the computer"
-url="http://kde.org/applications/games/kreversi/;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde-applications' 'kdegames')
-depends=('kdebase-runtime' 'libkdegames4')
-makedepends=('cmake' 'automoc4')
-install=${pkgname}.install
-source=("http://download.kde.org/stable/applications/${pkgver}/src/kreversi-${pkgver}.tar.xz;)
-sha1sums=('2f9eb507051582b961a0ba8f4ffef2982da461a8')
-
-build() {
-  mkdir -p build
-  cd build
-  cmake ../kreversi-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: kdegames-kreversi/repos/extra-i686/PKGBUILD (from rev 258060, 
kdegames-kreversi/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 08:07:16 UTC (rev 258061)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdegames-kreversi
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="A simple one player strategy game played against the computer"
+url="http://kde.org/applications/games/kreversi/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames4')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kreversi-${pkgver}.tar.xz;)
+sha1sums=('fc2507c60320684605953861d3afaaf71589f303')
+
+build() {
+  mkdir -p build
+  cd build
+  cmake ../kreversi-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-i686/kdegames-kreversi.install
===
--- extra-i686/kdegames-kreversi.install2016-01-12 08:06:49 UTC (rev 
258060)
+++ extra-i686/kdegames-kreversi.install2016-01-12 08:07:16 UTC (rev 
258061)
@@ -1,11 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: kdegames-kreversi/repos/extra-i686/kdegames-kreversi.install (from rev 
258060, kdegames-kreversi/trunk/kdegames-kreversi.install)
===
--- extra-i686/kdegames-kreversi.install(rev 0)
+++ extra-i686/kdegames-kreversi.install2016-01-12 08:07:16 UTC (rev 
258061)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 08:06:49 UTC (rev 258060)
+++ extra-x86_64/PKGBUILD   2016-01-12 08:07:16 UTC (rev 258061)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 

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

2016-01-12 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 09:17:56
  Author: arojas
Revision: 258073

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

Added:
  gwenview/repos/extra-i686/PKGBUILD
(from rev 258072, gwenview/trunk/PKGBUILD)
  gwenview/repos/extra-i686/gwenview.install
(from rev 258072, gwenview/trunk/gwenview.install)
  gwenview/repos/extra-x86_64/PKGBUILD
(from rev 258072, gwenview/trunk/PKGBUILD)
  gwenview/repos/extra-x86_64/gwenview.install
(from rev 258072, gwenview/trunk/gwenview.install)
Deleted:
  gwenview/repos/extra-i686/PKGBUILD
  gwenview/repos/extra-i686/gwenview.install
  gwenview/repos/extra-x86_64/PKGBUILD
  gwenview/repos/extra-x86_64/gwenview.install

---+
 /PKGBUILD |   84 
 /gwenview.install |   24 +++
 extra-i686/PKGBUILD   |   42 
 extra-i686/gwenview.install   |   12 -
 extra-x86_64/PKGBUILD |   42 
 extra-x86_64/gwenview.install |   12 -
 6 files changed, 108 insertions(+), 108 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 08:16:59 UTC (rev 258072)
+++ extra-i686/PKGBUILD 2016-01-12 08:17:56 UTC (rev 258073)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=gwenview
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="A fast and easy to use image viewer for KDE"
-url='http://kde.org/applications/graphics/gwenview/'
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde-applications' 'kdegraphics')
-depends=('kded' 'kactivities' 'baloo' 'kdelibs4support' 'libkipi' 'libkdcraw')
-optdepends=('qt5-imageformats: support for tiff, webp, and more image formats'
-'kimageformats: support for dds, xcf, exr, psd, and more image 
formats')
-makedepends=('extra-cmake-modules' 'kdoctools' 'python')
-replaces=('kdegraphics-gwenview')
-conflicts=('kdegraphics-gwenview')
-install=$pkgname.install
-source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
-sha1sums=('4eb0916975ac776ac77b266e53ba8df50f96c0a4')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIB_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DGWENVIEW_SEMANTICINFO_BACKEND="Baloo" \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: gwenview/repos/extra-i686/PKGBUILD (from rev 258072, 
gwenview/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 08:17:56 UTC (rev 258073)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=gwenview
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="A fast and easy to use image viewer for KDE"
+url='http://kde.org/applications/graphics/gwenview/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdegraphics')
+depends=('kded' 'kactivities' 'baloo' 'kdelibs4support' 'libkipi' 'libkdcraw')
+optdepends=('qt5-imageformats: support for tiff, webp, and more image formats'
+'kimageformats: support for dds, xcf, exr, psd, and more image 
formats')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+replaces=('kdegraphics-gwenview')
+conflicts=('kdegraphics-gwenview')
+install=$pkgname.install
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+sha1sums=('2e10577a03e013b389324d02f7cf508eb842d717')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DGWENVIEW_SEMANTICINFO_BACKEND="Baloo" \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-i686/gwenview.install
===
--- extra-i686/gwenview.install 2016-01-12 08:16:59 UTC (rev 258072)
+++ extra-i686/gwenview.install 2016-01-12 08:17:56 UTC (rev 258073)
@@ -1,12 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-update-desktop-database -q
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: gwenview/repos/extra-i686/gwenview.install (from rev 258072, 
gwenview/trunk/gwenview.install)
===
--- extra-i686/gwenview.install (rev 0)
+++ extra-i686/gwenview.install 2016-01-12 08:17:56 UTC (rev 

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

2016-01-12 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 09:25:07
  Author: arojas
Revision: 258079

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

Added:
  libkface/repos/extra-i686/PKGBUILD
(from rev 258078, libkface/trunk/PKGBUILD)
  libkface/repos/extra-i686/libkface.install
(from rev 258078, libkface/trunk/libkface.install)
  libkface/repos/extra-x86_64/PKGBUILD
(from rev 258078, libkface/trunk/PKGBUILD)
  libkface/repos/extra-x86_64/libkface.install
(from rev 258078, libkface/trunk/libkface.install)
Deleted:
  libkface/repos/extra-i686/PKGBUILD
  libkface/repos/extra-i686/libkface.install
  libkface/repos/extra-x86_64/PKGBUILD
  libkface/repos/extra-x86_64/libkface.install

---+
 /PKGBUILD |   74 
 /libkface.install |   22 +++
 extra-i686/PKGBUILD   |   37 
 extra-i686/libkface.install   |   11 -
 extra-x86_64/PKGBUILD |   37 
 extra-x86_64/libkface.install |   11 -
 6 files changed, 96 insertions(+), 96 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 08:23:50 UTC (rev 258078)
+++ extra-i686/PKGBUILD 2016-01-12 08:25:07 UTC (rev 258079)
@@ -1,37 +0,0 @@
-# $Id: PKGBUILD 226446 2014-11-19 17:09:45Z fyan $
-# Maintainer: Felix Yan 
-# Maintainer: Antonio Rojas 
-# Contributor: Andrea Scarpino 
-
-pkgname=libkface
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="A Qt/C++ wrapper around LibFace library to perform face recognition 
and detection over pictures"
-url="https://projects.kde.org/projects/kde/kdegraphics/libs/libkface;
-arch=(i686 x86_64)
-license=(GPL LGPL FDL)
-depends=(qt5-base opencv)
-makedepends=(extra-cmake-modules)
-install=$pkgname.install
-source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
-sha1sums=('2b19fa4fd87e4226c327c6e9c0362d8dc7903654')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: libkface/repos/extra-i686/PKGBUILD (from rev 258078, 
libkface/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 08:25:07 UTC (rev 258079)
@@ -0,0 +1,37 @@
+# $Id: PKGBUILD 226446 2014-11-19 17:09:45Z fyan $
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=libkface
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="A Qt/C++ wrapper around LibFace library to perform face recognition 
and detection over pictures"
+url="https://projects.kde.org/projects/kde/kdegraphics/libs/libkface;
+arch=(i686 x86_64)
+license=(GPL LGPL FDL)
+depends=(qt5-base opencv)
+makedepends=(extra-cmake-modules)
+install=$pkgname.install
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+sha1sums=('2eb3d01b68efd034d960ce3149032cfbb0f31400')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-i686/libkface.install
===
--- extra-i686/libkface.install 2016-01-12 08:23:50 UTC (rev 258078)
+++ extra-i686/libkface.install 2016-01-12 08:25:07 UTC (rev 258079)
@@ -1,11 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: libkface/repos/extra-i686/libkface.install (from rev 258078, 
libkface/trunk/libkface.install)
===
--- extra-i686/libkface.install (rev 0)
+++ extra-i686/libkface.install 2016-01-12 08:25:07 UTC (rev 258079)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 08:23:50 UTC (rev 258078)
+++ extra-x86_64/PKGBUILD   2016-01-12 08:25:07 UTC (rev 258079)
@@ -1,37 +0,0 @@
-# $Id: PKGBUILD 226446 2014-11-19 17:09:45Z fyan $
-# Maintainer: 

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

2016-01-12 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 09:32:32
  Author: arojas
Revision: 258087

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

Added:
  dragon/repos/extra-i686/PKGBUILD
(from rev 258086, dragon/trunk/PKGBUILD)
  dragon/repos/extra-i686/dragon.install
(from rev 258086, dragon/trunk/dragon.install)
  dragon/repos/extra-x86_64/PKGBUILD
(from rev 258086, dragon/trunk/PKGBUILD)
  dragon/repos/extra-x86_64/dragon.install
(from rev 258086, dragon/trunk/dragon.install)
Deleted:
  dragon/repos/extra-i686/PKGBUILD
  dragon/repos/extra-i686/dragon.install
  dragon/repos/extra-x86_64/PKGBUILD
  dragon/repos/extra-x86_64/dragon.install

-+
 /PKGBUILD   |   78 ++
 /dragon.install |   26 ++
 extra-i686/PKGBUILD |   39 -
 extra-i686/dragon.install   |   13 ---
 extra-x86_64/PKGBUILD   |   39 -
 extra-x86_64/dragon.install |   13 ---
 6 files changed, 104 insertions(+), 104 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 08:32:11 UTC (rev 258086)
+++ extra-i686/PKGBUILD 2016-01-12 08:32:32 UTC (rev 258087)
@@ -1,39 +0,0 @@
-# Maintainer: Antonio Rojas  
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=dragon
-pkgver=15.12.0
-pkgrel=1
-pkgdesc='A multimedia player where the focus is on simplicity, instead of 
features'
-arch=(i686 x86_64)
-url='http://kde.org/applications/multimedia/dragon'
-license=(GPL)
-depends=(hicolor-icon-theme kparts)
-makedepends=(extra-cmake-modules kdoctools python)
-conflicts=(kdemultimedia-dragonplayer)
-replaces=(kdemultimedia-dragonplayer)
-groups=(kde-applications kdemultimedia)
-source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
-install=$pkgname.install
-md5sums=('d62f7d2cfa3a87a01e69787c3eeef448')
-
-prepare() {
-  mkdir -p build
-}
-
-build() { 
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DLIB_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}
-

Copied: dragon/repos/extra-i686/PKGBUILD (from rev 258086, 
dragon/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 08:32:32 UTC (rev 258087)
@@ -0,0 +1,39 @@
+# Maintainer: Antonio Rojas  
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=dragon
+pkgver=15.12.1
+pkgrel=1
+pkgdesc='A multimedia player where the focus is on simplicity, instead of 
features'
+arch=(i686 x86_64)
+url='http://kde.org/applications/multimedia/dragon'
+license=(GPL)
+depends=(hicolor-icon-theme kparts)
+makedepends=(extra-cmake-modules kdoctools python)
+conflicts=(kdemultimedia-dragonplayer)
+replaces=(kdemultimedia-dragonplayer)
+groups=(kde-applications kdemultimedia)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+install=$pkgname.install
+md5sums=('dd7e3198133c9db91844cf42f89b6068')
+
+prepare() {
+  mkdir -p build
+}
+
+build() { 
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DLIB_INSTALL_DIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}
+

Deleted: extra-i686/dragon.install
===
--- extra-i686/dragon.install   2016-01-12 08:32:11 UTC (rev 258086)
+++ extra-i686/dragon.install   2016-01-12 08:32:32 UTC (rev 258087)
@@ -1,13 +0,0 @@
-post_install() {
-xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-update-desktop-database -q
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-post_install
-}
-

Copied: dragon/repos/extra-i686/dragon.install (from rev 258086, 
dragon/trunk/dragon.install)
===
--- extra-i686/dragon.install   (rev 0)
+++ extra-i686/dragon.install   2016-01-12 08:32:32 UTC (rev 258087)
@@ -0,0 +1,13 @@
+post_install() {
+xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+update-desktop-database -q
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}
+

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 08:32:11 UTC (rev 258086)
+++ extra-x86_64/PKGBUILD   2016-01-12 08:32:32 UTC (rev 258087)
@@ -1,39 +0,0 @@
-# Maintainer: Antonio Rojas  

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

2016-01-12 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 09:32:55
  Author: arojas
Revision: 258088

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 08:32:32 UTC (rev 258087)
+++ extra-i686/PKGBUILD 2016-01-12 08:32:55 UTC (rev 258088)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-# Maintainer: Felix Yan 
-
-pkgname=ffmpegthumbs
-pkgver=15.12.0
-pkgrel=1
-pkgdesc='FFmpeg-based thumbnail creator for video files'
-url='https://projects.kde.org/ffmpegthumbs'
-arch=(i686 x86_64)
-license=(GPL LGPL FDL)
-#groups=(kde-applications kdemultimedia)
-depends=(kio ffmpeg)
-makedepends=(extra-cmake-modules git)
-replaces=(kdemultimedia-ffmpegthumbs)
-source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
-md5sums=('2e0f2da2d7e0ca9209968aff279267fb')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: ffmpegthumbs/repos/extra-i686/PKGBUILD (from rev 258087, 
ffmpegthumbs/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 08:32:55 UTC (rev 258088)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+
+pkgname=ffmpegthumbs
+pkgver=15.12.1
+pkgrel=1
+pkgdesc='FFmpeg-based thumbnail creator for video files'
+url='https://projects.kde.org/ffmpegthumbs'
+arch=(i686 x86_64)
+license=(GPL LGPL FDL)
+groups=(kde-applications kdemultimedia)
+depends=(kio ffmpeg)
+makedepends=(extra-cmake-modules git)
+replaces=(kdemultimedia-ffmpegthumbs)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+md5sums=('46dc14567b8f54a7c1c936f9809a6af9')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 08:32:32 UTC (rev 258087)
+++ extra-x86_64/PKGBUILD   2016-01-12 08:32:55 UTC (rev 258088)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-# Maintainer: Felix Yan 
-
-pkgname=ffmpegthumbs
-pkgver=15.12.0
-pkgrel=1
-pkgdesc='FFmpeg-based thumbnail creator for video files'
-url='https://projects.kde.org/ffmpegthumbs'
-arch=(i686 x86_64)
-license=(GPL LGPL FDL)
-#groups=(kde-applications kdemultimedia)
-depends=(kio ffmpeg)
-makedepends=(extra-cmake-modules git)
-replaces=(kdemultimedia-ffmpegthumbs)
-source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
-md5sums=('2e0f2da2d7e0ca9209968aff279267fb')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: ffmpegthumbs/repos/extra-x86_64/PKGBUILD (from rev 258087, 
ffmpegthumbs/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-01-12 08:32:55 UTC (rev 258088)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+
+pkgname=ffmpegthumbs
+pkgver=15.12.1
+pkgrel=1
+pkgdesc='FFmpeg-based thumbnail creator for video files'
+url='https://projects.kde.org/ffmpegthumbs'
+arch=(i686 x86_64)
+license=(GPL LGPL FDL)
+groups=(kde-applications kdemultimedia)
+depends=(kio ffmpeg)
+makedepends=(extra-cmake-modules git)

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

2016-01-12 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 09:31:47
  Author: arojas
Revision: 258085

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

Added:
  kdegraphics-thumbnailers/repos/extra-i686/PKGBUILD
(from rev 258084, kdegraphics-thumbnailers/trunk/PKGBUILD)
  kdegraphics-thumbnailers/repos/extra-x86_64/PKGBUILD
(from rev 258084, kdegraphics-thumbnailers/trunk/PKGBUILD)
Deleted:
  kdegraphics-thumbnailers/repos/extra-i686/PKGBUILD
  kdegraphics-thumbnailers/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 08:31:15 UTC (rev 258084)
+++ extra-i686/PKGBUILD 2016-01-12 08:31:47 UTC (rev 258085)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Maintainer: Antonio Rojas 
-# Contributor: Andrea Scarpino 
-
-pkgname=kdegraphics-thumbnailers
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="Thumbnailers for various graphics file formats"
-url="https://projects.kde.org/projects/kde/kdegraphics/kdegraphics-thumbnailers;
-arch=(i686 x86_64)
-license=(GPL LGPL FDL)
-depends=(libkexiv2 libkdcraw kio)
-makedepends=(extra-cmake-modules)
-source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
-sha1sums=('284fb3881a11d7f449920dac0903179bf7b32563')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: kdegraphics-thumbnailers/repos/extra-i686/PKGBUILD (from rev 258084, 
kdegraphics-thumbnailers/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 08:31:47 UTC (rev 258085)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdegraphics-thumbnailers
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="Thumbnailers for various graphics file formats"
+url="https://projects.kde.org/projects/kde/kdegraphics/kdegraphics-thumbnailers;
+arch=(i686 x86_64)
+license=(GPL LGPL FDL)
+depends=(libkexiv2 libkdcraw kio)
+makedepends=(extra-cmake-modules)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+sha1sums=('8a26bf4b03d3b0623f5668e33fc80498c23d0e93')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 08:31:15 UTC (rev 258084)
+++ extra-x86_64/PKGBUILD   2016-01-12 08:31:47 UTC (rev 258085)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Maintainer: Antonio Rojas 
-# Contributor: Andrea Scarpino 
-
-pkgname=kdegraphics-thumbnailers
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="Thumbnailers for various graphics file formats"
-url="https://projects.kde.org/projects/kde/kdegraphics/kdegraphics-thumbnailers;
-arch=(i686 x86_64)
-license=(GPL LGPL FDL)
-depends=(libkexiv2 libkdcraw kio)
-makedepends=(extra-cmake-modules)
-source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
-sha1sums=('284fb3881a11d7f449920dac0903179bf7b32563')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: kdegraphics-thumbnailers/repos/extra-x86_64/PKGBUILD (from rev 258084, 
kdegraphics-thumbnailers/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-01-12 08:31:47 UTC (rev 258085)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdegraphics-thumbnailers
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="Thumbnailers for various graphics file 

[arch-commits] Commit in kdemultimedia-audiocd-kio/repos (4 files)

2016-01-12 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 09:32:11
  Author: arojas
Revision: 258086

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

Added:
  kdemultimedia-audiocd-kio/repos/extra-i686/PKGBUILD
(from rev 258085, kdemultimedia-audiocd-kio/trunk/PKGBUILD)
  kdemultimedia-audiocd-kio/repos/extra-x86_64/PKGBUILD
(from rev 258085, kdemultimedia-audiocd-kio/trunk/PKGBUILD)
Deleted:
  kdemultimedia-audiocd-kio/repos/extra-i686/PKGBUILD
  kdemultimedia-audiocd-kio/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 08:31:47 UTC (rev 258085)
+++ extra-i686/PKGBUILD 2016-01-12 08:32:11 UTC (rev 258086)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=kdemultimedia-audiocd-kio
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="Kioslave for accessing audio CDs"
-url='https://projects.kde.org/projects/kde/kdemultimedia/audiocd-kio'
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-depends=('libkcddb' 'libkcompactdisc' 'lame')
-makedepends=('cmake' 'automoc4')
-groups=('kde-applications' 'kdemultimedia')
-replaces=('kdemultimedia-kioslave')
-conflicts=('kdemultimedia-kioslave')
-source=("http://download.kde.org/stable/applications/${pkgver}/src/audiocd-kio-${pkgver}.tar.xz;)
-sha1sums=('836d81463c230ae5a46e82279c606d5e952a0a79')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../audiocd-kio-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}"/build
-  make DESTDIR="${pkgdir}" install
-}

Copied: kdemultimedia-audiocd-kio/repos/extra-i686/PKGBUILD (from rev 258085, 
kdemultimedia-audiocd-kio/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 08:32:11 UTC (rev 258086)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdemultimedia-audiocd-kio
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="Kioslave for accessing audio CDs"
+url='https://projects.kde.org/projects/kde/kdemultimedia/audiocd-kio'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('libkcddb' 'libkcompactdisc' 'lame')
+makedepends=('cmake' 'automoc4')
+groups=('kde-applications' 'kdemultimedia')
+replaces=('kdemultimedia-kioslave')
+conflicts=('kdemultimedia-kioslave')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/audiocd-kio-${pkgver}.tar.xz;)
+sha1sums=('f09eb468a9122a8528716ae60cd7f98fb97a9cbf')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../audiocd-kio-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 08:31:47 UTC (rev 258085)
+++ extra-x86_64/PKGBUILD   2016-01-12 08:32:11 UTC (rev 258086)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=kdemultimedia-audiocd-kio
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="Kioslave for accessing audio CDs"
-url='https://projects.kde.org/projects/kde/kdemultimedia/audiocd-kio'
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-depends=('libkcddb' 'libkcompactdisc' 'lame')
-makedepends=('cmake' 'automoc4')
-groups=('kde-applications' 'kdemultimedia')
-replaces=('kdemultimedia-kioslave')
-conflicts=('kdemultimedia-kioslave')
-source=("http://download.kde.org/stable/applications/${pkgver}/src/audiocd-kio-${pkgver}.tar.xz;)
-sha1sums=('836d81463c230ae5a46e82279c606d5e952a0a79')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../audiocd-kio-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}"/build
-  make DESTDIR="${pkgdir}" install
-}

Copied: kdemultimedia-audiocd-kio/repos/extra-x86_64/PKGBUILD (from rev 258085, 
kdemultimedia-audiocd-kio/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-01-12 08:32:11 UTC (rev 258086)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 

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

2016-01-12 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 09:31:15
  Author: arojas
Revision: 258084

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

Added:
  kdegraphics-svgpart/repos/extra-i686/PKGBUILD
(from rev 258083, kdegraphics-svgpart/trunk/PKGBUILD)
  kdegraphics-svgpart/repos/extra-x86_64/PKGBUILD
(from rev 258083, kdegraphics-svgpart/trunk/PKGBUILD)
Deleted:
  kdegraphics-svgpart/repos/extra-i686/PKGBUILD
  kdegraphics-svgpart/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 08:30:11 UTC (rev 258083)
+++ extra-i686/PKGBUILD 2016-01-12 08:31:15 UTC (rev 258084)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=kdegraphics-svgpart
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="A KPart for viewing SVGs"
-url="https://projects.kde.org/projects/kde/kdegraphics/svgpart;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-depends=('kdelibs')
-makedepends=('cmake' 'automoc4')
-replaces=('kdegraphics-libs')
-conflicts=('kdegraphics-libs')
-source=("http://download.kde.org/stable/applications/${pkgver}/src/svgpart-${pkgver}.tar.xz;)
-sha1sums=('a963d61e5bc6164f0af1a3687df0d4f42d62a7be')
-
-build() {
-  cd "${srcdir}"
-  mkdir -p build
-  cd build
-  cmake ../svgpart-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}"/build
-  make DESTDIR="${pkgdir}" install
-}

Copied: kdegraphics-svgpart/repos/extra-i686/PKGBUILD (from rev 258083, 
kdegraphics-svgpart/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 08:31:15 UTC (rev 258084)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdegraphics-svgpart
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="A KPart for viewing SVGs"
+url="https://projects.kde.org/projects/kde/kdegraphics/svgpart;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdelibs')
+makedepends=('cmake' 'automoc4')
+replaces=('kdegraphics-libs')
+conflicts=('kdegraphics-libs')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/svgpart-${pkgver}.tar.xz;)
+sha1sums=('699698609c8cd0ee02704decc89229ad1539d560')
+
+build() {
+  cd "${srcdir}"
+  mkdir -p build
+  cd build
+  cmake ../svgpart-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 08:30:11 UTC (rev 258083)
+++ extra-x86_64/PKGBUILD   2016-01-12 08:31:15 UTC (rev 258084)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=kdegraphics-svgpart
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="A KPart for viewing SVGs"
-url="https://projects.kde.org/projects/kde/kdegraphics/svgpart;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-depends=('kdelibs')
-makedepends=('cmake' 'automoc4')
-replaces=('kdegraphics-libs')
-conflicts=('kdegraphics-libs')
-source=("http://download.kde.org/stable/applications/${pkgver}/src/svgpart-${pkgver}.tar.xz;)
-sha1sums=('a963d61e5bc6164f0af1a3687df0d4f42d62a7be')
-
-build() {
-  cd "${srcdir}"
-  mkdir -p build
-  cd build
-  cmake ../svgpart-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}"/build
-  make DESTDIR="${pkgdir}" install
-}

Copied: kdegraphics-svgpart/repos/extra-x86_64/PKGBUILD (from rev 258083, 
kdegraphics-svgpart/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-01-12 08:31:15 UTC (rev 258084)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdegraphics-svgpart
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="A KPart for viewing SVGs"
+url="https://projects.kde.org/projects/kde/kdegraphics/svgpart;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdelibs')
+makedepends=('cmake' 'automoc4')
+replaces=('kdegraphics-libs')
+conflicts=('kdegraphics-libs')

[arch-commits] Commit in kdenetwork-zeroconf-ioslave/repos (4 files)

2016-01-12 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 09:38:30
  Author: arojas
Revision: 258101

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

Added:
  kdenetwork-zeroconf-ioslave/repos/extra-i686/PKGBUILD
(from rev 258100, kdenetwork-zeroconf-ioslave/trunk/PKGBUILD)
  kdenetwork-zeroconf-ioslave/repos/extra-x86_64/PKGBUILD
(from rev 258100, kdenetwork-zeroconf-ioslave/trunk/PKGBUILD)
Deleted:
  kdenetwork-zeroconf-ioslave/repos/extra-i686/PKGBUILD
  kdenetwork-zeroconf-ioslave/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 08:38:12 UTC (rev 258100)
+++ extra-i686/PKGBUILD 2016-01-12 08:38:30 UTC (rev 258101)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=kdenetwork-zeroconf-ioslave
-pkgver=15.12.0
-pkgrel=1
-pkgdesc='Network Monitor for DNS-SD services (Zeroconf)'
-url='https://projects.kde.org/projects/kde/kdenetwork/zeroconf-ioslave'
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde-applications' 'kdenetwork')
-depends=('kdelibs')
-makedepends=('cmake' 'automoc4')
-conflicts=('kdenetwork-kdnssd')
-replaces=('kdenetwork-kdnssd')
-source=("http://download.kde.org/stable/applications/${pkgver}/src/zeroconf-ioslave-${pkgver}.tar.xz;)
-sha1sums=('015f7acfeb3e77a3139322567e5026a11490973c')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../zeroconf-ioslave-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=$pkgdir install
-}

Copied: kdenetwork-zeroconf-ioslave/repos/extra-i686/PKGBUILD (from rev 258100, 
kdenetwork-zeroconf-ioslave/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 08:38:30 UTC (rev 258101)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdenetwork-zeroconf-ioslave
+pkgver=15.12.1
+pkgrel=1
+pkgdesc='Network Monitor for DNS-SD services (Zeroconf)'
+url='https://projects.kde.org/projects/kde/kdenetwork/zeroconf-ioslave'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdenetwork')
+depends=('kdelibs')
+makedepends=('cmake' 'automoc4')
+conflicts=('kdenetwork-kdnssd')
+replaces=('kdenetwork-kdnssd')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/zeroconf-ioslave-${pkgver}.tar.xz;)
+sha1sums=('ec91b8bf0e5d641139987d9788fe26b4e6bbfa0b')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../zeroconf-ioslave-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 08:38:12 UTC (rev 258100)
+++ extra-x86_64/PKGBUILD   2016-01-12 08:38:30 UTC (rev 258101)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=kdenetwork-zeroconf-ioslave
-pkgver=15.12.0
-pkgrel=1
-pkgdesc='Network Monitor for DNS-SD services (Zeroconf)'
-url='https://projects.kde.org/projects/kde/kdenetwork/zeroconf-ioslave'
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde-applications' 'kdenetwork')
-depends=('kdelibs')
-makedepends=('cmake' 'automoc4')
-conflicts=('kdenetwork-kdnssd')
-replaces=('kdenetwork-kdnssd')
-source=("http://download.kde.org/stable/applications/${pkgver}/src/zeroconf-ioslave-${pkgver}.tar.xz;)
-sha1sums=('015f7acfeb3e77a3139322567e5026a11490973c')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../zeroconf-ioslave-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=$pkgdir install
-}

Copied: kdenetwork-zeroconf-ioslave/repos/extra-x86_64/PKGBUILD (from rev 
258100, kdenetwork-zeroconf-ioslave/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-01-12 08:38:30 UTC (rev 258101)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdenetwork-zeroconf-ioslave
+pkgver=15.12.1

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

2016-01-12 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 09:38:48
  Author: arojas
Revision: 258102

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

Added:
  kio-extras/repos/extra-i686/PKGBUILD
(from rev 258101, kio-extras/trunk/PKGBUILD)
  kio-extras/repos/extra-i686/kio-extras.install
(from rev 258101, kio-extras/trunk/kio-extras.install)
  kio-extras/repos/extra-x86_64/PKGBUILD
(from rev 258101, kio-extras/trunk/PKGBUILD)
  kio-extras/repos/extra-x86_64/kio-extras.install
(from rev 258101, kio-extras/trunk/kio-extras.install)
Deleted:
  kio-extras/repos/extra-i686/PKGBUILD
  kio-extras/repos/extra-i686/kio-extras.install
  kio-extras/repos/extra-x86_64/PKGBUILD
  kio-extras/repos/extra-x86_64/kio-extras.install

-+
 /PKGBUILD   |   78 ++
 /kio-extras.install |   22 ++
 extra-i686/PKGBUILD |   39 ---
 extra-i686/kio-extras.install   |   11 -
 extra-x86_64/PKGBUILD   |   39 ---
 extra-x86_64/kio-extras.install |   11 -
 6 files changed, 100 insertions(+), 100 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 08:38:30 UTC (rev 258101)
+++ extra-i686/PKGBUILD 2016-01-12 08:38:48 UTC (rev 258102)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Maintainer: Antonio Rojas 
-# Contributor: Andrea Scarpino 
-
-pkgname=kio-extras
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="Additional components to increase the functionality of KIO"
-arch=(i686 x86_64)
-url='https://projects.kde.org/projects/kde/workspace/kio-extras'
-license=(LGPL)
-depends=(kdelibs4support khtml kdnssd libssh smbclient exiv2 openexr openslp 
libmtp kpty)
-makedepends=(extra-cmake-modules kdoctools)
-groups=(kde-applications kdenetwork)
-install=$pkgname.install
-source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
-md5sums=('819bf5ec77953460993529076e0b9023')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIB_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}
-

Copied: kio-extras/repos/extra-i686/PKGBUILD (from rev 258101, 
kio-extras/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 08:38:48 UTC (rev 258102)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=kio-extras
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="Additional components to increase the functionality of KIO"
+arch=(i686 x86_64)
+url='https://projects.kde.org/projects/kde/workspace/kio-extras'
+license=(LGPL)
+depends=(kdelibs4support khtml kdnssd libssh smbclient exiv2 openexr openslp 
libmtp kpty)
+makedepends=(extra-cmake-modules kdoctools)
+groups=(kde-applications kdenetwork)
+install=$pkgname.install
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+md5sums=('5a45e9df178f3bba38f257be6e026f22')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}
+

Deleted: extra-i686/kio-extras.install
===
--- extra-i686/kio-extras.install   2016-01-12 08:38:30 UTC (rev 258101)
+++ extra-i686/kio-extras.install   2016-01-12 08:38:48 UTC (rev 258102)
@@ -1,11 +0,0 @@
-post_install() {
-update-mime-database usr/share/mime &> /dev/null
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-post_install
-}

Copied: kio-extras/repos/extra-i686/kio-extras.install (from rev 258101, 
kio-extras/trunk/kio-extras.install)
===
--- extra-i686/kio-extras.install   (rev 0)
+++ extra-i686/kio-extras.install   2016-01-12 08:38:48 UTC (rev 258102)
@@ -0,0 +1,11 @@
+post_install() {
+update-mime-database usr/share/mime &> /dev/null
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 08:38:30 UTC (rev 258101)
+++ extra-x86_64/PKGBUILD   2016-01-12 08:38:48 UTC (rev 258102)
@@ -1,39 +0,0 

[arch-commits] Commit in telepathy-kde-approver/repos (4 files)

2016-01-12 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 09:39:27
  Author: arojas
Revision: 258104

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

Added:
  telepathy-kde-approver/repos/extra-i686/PKGBUILD
(from rev 258103, telepathy-kde-approver/trunk/PKGBUILD)
  telepathy-kde-approver/repos/extra-x86_64/PKGBUILD
(from rev 258103, telepathy-kde-approver/trunk/PKGBUILD)
Deleted:
  telepathy-kde-approver/repos/extra-i686/PKGBUILD
  telepathy-kde-approver/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-01-12 08:39:07 UTC (rev 258103)
+++ extra-i686/PKGBUILD 2016-01-12 08:39:27 UTC (rev 258104)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-# Contributor: Laurent Carlier 
-# Contributor: Antonio Rojas 
-
-pkgname=telepathy-kde-approver
-_pkgname=ktp-approver
-pkgver=15.12.0
-pkgrel=1
-pkgdesc='KDE Channel Approver for Telepathy'
-arch=('i686' 'x86_64')
-url='http://community.kde.org/Real-Time_Communication_and_Collaboration'
-license=('GPL')
-groups=('kde-applications' 'kdenetwork' 'telepathy-kde')
-depends=('telepathy-qt5' 'knotifications' 'kservice')
-makedepends=('extra-cmake-modules' 'kdoctools' 'python')
-source=("http://download.kde.org/stable/applications/${pkgver}/src/$_pkgname-${pkgver}.tar.xz;)
-md5sums=('9cae2163e6fce531c893b526713c8780')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$_pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DLIB_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DSYSCONF_INSTALL_DIR=/etc 
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: telepathy-kde-approver/repos/extra-i686/PKGBUILD (from rev 258103, 
telepathy-kde-approver/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 08:39:27 UTC (rev 258104)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Laurent Carlier 
+# Contributor: Antonio Rojas 
+
+pkgname=telepathy-kde-approver
+_pkgname=ktp-approver
+pkgver=15.12.1
+pkgrel=1
+pkgdesc='KDE Channel Approver for Telepathy'
+arch=('i686' 'x86_64')
+url='http://community.kde.org/Real-Time_Communication_and_Collaboration'
+license=('GPL')
+groups=('kde-applications' 'kdenetwork' 'telepathy-kde')
+depends=('telepathy-qt5' 'knotifications' 'kservice')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/$_pkgname-${pkgver}.tar.xz;)
+md5sums=('447886670771908b5671bb4f8202df7e')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$_pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DLIB_INSTALL_DIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DSYSCONF_INSTALL_DIR=/etc 
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 08:39:07 UTC (rev 258103)
+++ extra-x86_64/PKGBUILD   2016-01-12 08:39:27 UTC (rev 258104)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-# Contributor: Laurent Carlier 
-# Contributor: Antonio Rojas 
-
-pkgname=telepathy-kde-approver
-_pkgname=ktp-approver
-pkgver=15.12.0
-pkgrel=1
-pkgdesc='KDE Channel Approver for Telepathy'
-arch=('i686' 'x86_64')
-url='http://community.kde.org/Real-Time_Communication_and_Collaboration'
-license=('GPL')
-groups=('kde-applications' 'kdenetwork' 'telepathy-kde')
-depends=('telepathy-qt5' 'knotifications' 'kservice')
-makedepends=('extra-cmake-modules' 'kdoctools' 'python')
-source=("http://download.kde.org/stable/applications/${pkgver}/src/$_pkgname-${pkgver}.tar.xz;)
-md5sums=('9cae2163e6fce531c893b526713c8780')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$_pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DLIB_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DSYSCONF_INSTALL_DIR=/etc 
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: telepathy-kde-approver/repos/extra-x86_64/PKGBUILD (from rev 258103, 
telepathy-kde-approver/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD  

[arch-commits] Commit in telepathy-kde-auth-handler/repos (4 files)

2016-01-12 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 09:39:46
  Author: arojas
Revision: 258105

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

Added:
  telepathy-kde-auth-handler/repos/extra-i686/PKGBUILD
(from rev 258104, telepathy-kde-auth-handler/trunk/PKGBUILD)
  telepathy-kde-auth-handler/repos/extra-x86_64/PKGBUILD
(from rev 258104, telepathy-kde-auth-handler/trunk/PKGBUILD)
Deleted:
  telepathy-kde-auth-handler/repos/extra-i686/PKGBUILD
  telepathy-kde-auth-handler/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-01-12 08:39:27 UTC (rev 258104)
+++ extra-i686/PKGBUILD 2016-01-12 08:39:46 UTC (rev 258105)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-# Contributor: Laurent Carlier 
-# Contributor: Antonio Rojas 
-
-pkgname=telepathy-kde-auth-handler
-_pkgname=ktp-auth-handler
-pkgver=15.12.0
-pkgrel=1
-pkgdesc='Provide UI/KWallet Integration For Passwords and SSL Errors on 
Account Connect'
-arch=('i686' 'x86_64')
-url='http://community.kde.org/Real-Time_Communication_and_Collaboration'
-license=('GPL')
-groups=('kde-applications' 'kdenetwork' 'telepathy-kde')
-depends=('qca-qt5' 'telepathy-kde-common-internals' 'kdewebkit')
-makedepends=('extra-cmake-modules')
-source=("http://download.kde.org/stable/applications/${pkgver}/src/$_pkgname-${pkgver}.tar.xz;)
-md5sums=('9d7dccfbaebbb115f750161ab0f70938')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$_pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DLIB_INSTALL_DIR=lib \
--DLIBEXEC_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: telepathy-kde-auth-handler/repos/extra-i686/PKGBUILD (from rev 258104, 
telepathy-kde-auth-handler/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 08:39:46 UTC (rev 258105)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Laurent Carlier 
+# Contributor: Antonio Rojas 
+
+pkgname=telepathy-kde-auth-handler
+_pkgname=ktp-auth-handler
+pkgver=15.12.1
+pkgrel=1
+pkgdesc='Provide UI/KWallet Integration For Passwords and SSL Errors on 
Account Connect'
+arch=('i686' 'x86_64')
+url='http://community.kde.org/Real-Time_Communication_and_Collaboration'
+license=('GPL')
+groups=('kde-applications' 'kdenetwork' 'telepathy-kde')
+depends=('qca-qt5' 'telepathy-kde-common-internals' 'kdewebkit')
+makedepends=('extra-cmake-modules')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/$_pkgname-${pkgver}.tar.xz;)
+md5sums=('9bb60dc4424837d99a32a0c483be0abb')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$_pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DLIB_INSTALL_DIR=lib \
+-DLIBEXEC_INSTALL_DIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 08:39:27 UTC (rev 258104)
+++ extra-x86_64/PKGBUILD   2016-01-12 08:39:46 UTC (rev 258105)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-# Contributor: Laurent Carlier 
-# Contributor: Antonio Rojas 
-
-pkgname=telepathy-kde-auth-handler
-_pkgname=ktp-auth-handler
-pkgver=15.12.0
-pkgrel=1
-pkgdesc='Provide UI/KWallet Integration For Passwords and SSL Errors on 
Account Connect'
-arch=('i686' 'x86_64')
-url='http://community.kde.org/Real-Time_Communication_and_Collaboration'
-license=('GPL')
-groups=('kde-applications' 'kdenetwork' 'telepathy-kde')
-depends=('qca-qt5' 'telepathy-kde-common-internals' 'kdewebkit')
-makedepends=('extra-cmake-modules')
-source=("http://download.kde.org/stable/applications/${pkgver}/src/$_pkgname-${pkgver}.tar.xz;)
-md5sums=('9d7dccfbaebbb115f750161ab0f70938')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$_pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DLIB_INSTALL_DIR=lib \
--DLIBEXEC_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: telepathy-kde-auth-handler/repos/extra-x86_64/PKGBUILD (from rev 

[arch-commits] Commit in telepathy-kde-contact-runner/repos (4 files)

2016-01-12 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 09:40:23
  Author: arojas
Revision: 258107

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

Added:
  telepathy-kde-contact-runner/repos/extra-i686/PKGBUILD
(from rev 258106, telepathy-kde-contact-runner/trunk/PKGBUILD)
  telepathy-kde-contact-runner/repos/extra-x86_64/PKGBUILD
(from rev 258106, telepathy-kde-contact-runner/trunk/PKGBUILD)
Deleted:
  telepathy-kde-contact-runner/repos/extra-i686/PKGBUILD
  telepathy-kde-contact-runner/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 08:40:03 UTC (rev 258106)
+++ extra-i686/PKGBUILD 2016-01-12 08:40:23 UTC (rev 258107)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-# Contributor: Laurent Carlier 
-# Contributor: Antonio Rojas 
-
-pkgname=telepathy-kde-contact-runner
-_pkgname=ktp-contact-runner
-pkgver=15.12.0
-pkgrel=1
-pkgdesc='KRunner plugin for KDE Telepathy'
-arch=('i686' 'x86_64')
-url='http://community.kde.org/Real-Time_Communication_and_Collaboration'
-license=('GPL')
-groups=('kde-applications' 'kdenetwork' 'telepathy-kde')
-depends=('telepathy-kde-common-internals' 'krunner')
-makedepends=('extra-cmake-modules' 'kdoctools' 'python')
-source=("http://download.kde.org/stable/applications/${pkgver}/src/$_pkgname-${pkgver}.tar.xz;)
-md5sums=('46f6558abb4daf2cb1c635b07f7778cf')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$_pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DLIB_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: telepathy-kde-contact-runner/repos/extra-i686/PKGBUILD (from rev 
258106, telepathy-kde-contact-runner/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 08:40:23 UTC (rev 258107)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Laurent Carlier 
+# Contributor: Antonio Rojas 
+
+pkgname=telepathy-kde-contact-runner
+_pkgname=ktp-contact-runner
+pkgver=15.12.1
+pkgrel=1
+pkgdesc='KRunner plugin for KDE Telepathy'
+arch=('i686' 'x86_64')
+url='http://community.kde.org/Real-Time_Communication_and_Collaboration'
+license=('GPL')
+groups=('kde-applications' 'kdenetwork' 'telepathy-kde')
+depends=('telepathy-kde-common-internals' 'krunner')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/$_pkgname-${pkgver}.tar.xz;)
+md5sums=('46e024f56b2610162572483fe83cde02')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$_pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DLIB_INSTALL_DIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 08:40:03 UTC (rev 258106)
+++ extra-x86_64/PKGBUILD   2016-01-12 08:40:23 UTC (rev 258107)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-# Contributor: Laurent Carlier 
-# Contributor: Antonio Rojas 
-
-pkgname=telepathy-kde-contact-runner
-_pkgname=ktp-contact-runner
-pkgver=15.12.0
-pkgrel=1
-pkgdesc='KRunner plugin for KDE Telepathy'
-arch=('i686' 'x86_64')
-url='http://community.kde.org/Real-Time_Communication_and_Collaboration'
-license=('GPL')
-groups=('kde-applications' 'kdenetwork' 'telepathy-kde')
-depends=('telepathy-kde-common-internals' 'krunner')
-makedepends=('extra-cmake-modules' 'kdoctools' 'python')
-source=("http://download.kde.org/stable/applications/${pkgver}/src/$_pkgname-${pkgver}.tar.xz;)
-md5sums=('46f6558abb4daf2cb1c635b07f7778cf')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$_pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DLIB_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: telepathy-kde-contact-runner/repos/extra-x86_64/PKGBUILD (from rev 
258106, telepathy-kde-contact-runner/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ 

[arch-commits] Commit in telepathy-kde-accounts-kcm/repos (4 files)

2016-01-12 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 09:39:07
  Author: arojas
Revision: 258103

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

Added:
  telepathy-kde-accounts-kcm/repos/extra-i686/PKGBUILD
(from rev 258102, telepathy-kde-accounts-kcm/trunk/PKGBUILD)
  telepathy-kde-accounts-kcm/repos/extra-x86_64/PKGBUILD
(from rev 258102, telepathy-kde-accounts-kcm/trunk/PKGBUILD)
Deleted:
  telepathy-kde-accounts-kcm/repos/extra-i686/PKGBUILD
  telepathy-kde-accounts-kcm/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-01-12 08:38:48 UTC (rev 258102)
+++ extra-i686/PKGBUILD 2016-01-12 08:39:07 UTC (rev 258103)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-# Contributor: Laurent Carlier 
-# Contributor: Antonio Rojas 
-
-pkgname=telepathy-kde-accounts-kcm
-_pkgname=ktp-accounts-kcm
-pkgver=15.12.0
-pkgrel=1
-pkgdesc='KCM Module for configuring Telepathy Instant Messaging Accounts'
-arch=('i686' 'x86_64')
-url='http://community.kde.org/Real-Time_Communication_and_Collaboration'
-license=('GPL')
-groups=('kde-applications' 'kdenetwork' 'telepathy-kde')
-depends=('telepathy-qt5' 'kaccounts-providers')
-makedepends=('extra-cmake-modules' 'intltool')
-optdepends=('telepathy-gabble: XMPP/Jabber accounts support' 'telepathy-haze: 
account types supported by Pidgin/libpurple')
-source=("http://download.kde.org/stable/applications/${pkgver}/src/$_pkgname-${pkgver}.tar.xz;)
-md5sums=('d88e008515bb09c029e3e331413350f9')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$_pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DLIB_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: telepathy-kde-accounts-kcm/repos/extra-i686/PKGBUILD (from rev 258102, 
telepathy-kde-accounts-kcm/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 08:39:07 UTC (rev 258103)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Laurent Carlier 
+# Contributor: Antonio Rojas 
+
+pkgname=telepathy-kde-accounts-kcm
+_pkgname=ktp-accounts-kcm
+pkgver=15.12.1
+pkgrel=1
+pkgdesc='KCM Module for configuring Telepathy Instant Messaging Accounts'
+arch=('i686' 'x86_64')
+url='http://community.kde.org/Real-Time_Communication_and_Collaboration'
+license=('GPL')
+groups=('kde-applications' 'kdenetwork' 'telepathy-kde')
+depends=('telepathy-qt5' 'kaccounts-providers')
+makedepends=('extra-cmake-modules' 'intltool')
+optdepends=('telepathy-gabble: XMPP/Jabber accounts support' 'telepathy-haze: 
account types supported by Pidgin/libpurple')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/$_pkgname-${pkgver}.tar.xz;)
+md5sums=('563445872f46bed5ed707e60c4445140')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$_pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DLIB_INSTALL_DIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 08:38:48 UTC (rev 258102)
+++ extra-x86_64/PKGBUILD   2016-01-12 08:39:07 UTC (rev 258103)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-# Contributor: Laurent Carlier 
-# Contributor: Antonio Rojas 
-
-pkgname=telepathy-kde-accounts-kcm
-_pkgname=ktp-accounts-kcm
-pkgver=15.12.0
-pkgrel=1
-pkgdesc='KCM Module for configuring Telepathy Instant Messaging Accounts'
-arch=('i686' 'x86_64')
-url='http://community.kde.org/Real-Time_Communication_and_Collaboration'
-license=('GPL')
-groups=('kde-applications' 'kdenetwork' 'telepathy-kde')
-depends=('telepathy-qt5' 'kaccounts-providers')
-makedepends=('extra-cmake-modules' 'intltool')
-optdepends=('telepathy-gabble: XMPP/Jabber accounts support' 'telepathy-haze: 
account types supported by Pidgin/libpurple')
-source=("http://download.kde.org/stable/applications/${pkgver}/src/$_pkgname-${pkgver}.tar.xz;)
-md5sums=('d88e008515bb09c029e3e331413350f9')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$_pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
-

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

2016-01-12 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 09:46:08
  Author: arojas
Revision: 258122

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

Added:
  okteta/repos/extra-i686/PKGBUILD
(from rev 258121, okteta/trunk/PKGBUILD)
  okteta/repos/extra-i686/okteta.install
(from rev 258121, okteta/trunk/okteta.install)
  okteta/repos/extra-x86_64/PKGBUILD
(from rev 258121, okteta/trunk/PKGBUILD)
  okteta/repos/extra-x86_64/okteta.install
(from rev 258121, okteta/trunk/okteta.install)
Deleted:
  okteta/repos/extra-i686/PKGBUILD
  okteta/repos/extra-i686/okteta.install
  okteta/repos/extra-x86_64/PKGBUILD
  okteta/repos/extra-x86_64/okteta.install

-+
 /PKGBUILD   |   80 ++
 /okteta.install |   24 
 extra-i686/PKGBUILD |   40 -
 extra-i686/okteta.install   |   12 --
 extra-x86_64/PKGBUILD   |   40 -
 extra-x86_64/okteta.install |   12 --
 6 files changed, 104 insertions(+), 104 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 08:45:48 UTC (rev 258121)
+++ extra-i686/PKGBUILD 2016-01-12 08:46:08 UTC (rev 258122)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=okteta
-pkgver=15.12.0
-pkgrel=1
-pkgdesc='Hex Editor'
-url='http://kde.org/applications/utilities/okteta/'
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde-applications' 'kdesdk')
-depends=('kcmutils' 'kparts' 'knewstuff' 'qca-qt5' 'hicolor-icon-theme')
-makedepends=('extra-cmake-modules' 'kdoctools' 'python' 'qt5-tools')
-replaces=('kdesdk-okteta')
-conflicts=('kdesdk-okteta<4.14.3-2')
-install=${pkgname}.install
-source=("http://download.kde.org/stable/applications/${pkgver}/src/okteta-${pkgver}.tar.xz;)
-sha1sums=('c3bc9f0d3b79b56372e9985d9c6d6dabcff67b81')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../okteta-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DSYSCONF_INSTALL_DIR=/etc \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: okteta/repos/extra-i686/PKGBUILD (from rev 258121, 
okteta/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 08:46:08 UTC (rev 258122)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=okteta
+pkgver=15.12.1
+pkgrel=1
+pkgdesc='Hex Editor'
+url='http://kde.org/applications/utilities/okteta/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdesdk')
+depends=('kcmutils' 'kparts' 'knewstuff' 'qca-qt5' 'hicolor-icon-theme')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python' 'qt5-tools')
+replaces=('kdesdk-okteta')
+conflicts=('kdesdk-okteta<4.14.3-2')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/applications/${pkgver}/src/okteta-${pkgver}.tar.xz;)
+sha1sums=('deccd7fe078b2c1c7ca10645deeed6c3684c5b22')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../okteta-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DSYSCONF_INSTALL_DIR=/etc \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-i686/okteta.install
===
--- extra-i686/okteta.install   2016-01-12 08:45:48 UTC (rev 258121)
+++ extra-i686/okteta.install   2016-01-12 08:46:08 UTC (rev 258122)
@@ -1,12 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-   update-mime-database usr/share/mime &> /dev/null
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: okteta/repos/extra-i686/okteta.install (from rev 258121, 
okteta/trunk/okteta.install)
===
--- extra-i686/okteta.install   (rev 0)
+++ extra-i686/okteta.install   2016-01-12 08:46:08 UTC (rev 258122)
@@ -0,0 +1,12 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+   update-mime-database usr/share/mime &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 08:45:48 UTC (rev 258121)
+++ extra-x86_64/PKGBUILD  

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

2016-01-12 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 09:45:26
  Author: arojas
Revision: 258120

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

Added:
  kompare/repos/extra-i686/PKGBUILD
(from rev 258119, kompare/trunk/PKGBUILD)
  kompare/repos/extra-i686/kompare.install
(from rev 258119, kompare/trunk/kompare.install)
  kompare/repos/extra-x86_64/PKGBUILD
(from rev 258119, kompare/trunk/PKGBUILD)
  kompare/repos/extra-x86_64/kompare.install
(from rev 258119, kompare/trunk/kompare.install)
Deleted:
  kompare/repos/extra-i686/PKGBUILD
  kompare/repos/extra-i686/kompare.install
  kompare/repos/extra-x86_64/PKGBUILD
  kompare/repos/extra-x86_64/kompare.install

--+
 /PKGBUILD|   78 +
 /kompare.install |   24 
 extra-i686/PKGBUILD  |   39 
 extra-i686/kompare.install   |   12 --
 extra-x86_64/PKGBUILD|   39 
 extra-x86_64/kompare.install |   12 --
 6 files changed, 102 insertions(+), 102 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 08:45:06 UTC (rev 258119)
+++ extra-i686/PKGBUILD 2016-01-12 08:45:26 UTC (rev 258120)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=kompare
-pkgver=15.12.0
-pkgrel=1
-pkgdesc='Diff/Patch Frontend'
-url='http://kde.org/applications/development/kompare/'
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde-applications' 'kdesdk')
-depends=('libkomparediff2' 'ktexteditor' 'hicolor-icon-theme')
-makedepends=('extra-cmake-modules' 'python' 'kdoctools')
-install=${pkgname}.install
-conflicts=('kdesdk-kompare')
-replaces=('kdesdk-kompare')
-source=("http://download.kde.org/stable/applications/${pkgver}/src/kompare-${pkgver}.tar.xz;)
-sha1sums=('b3dfcdaaad5caa6d4bb2fa49e1cdae41fbc5d452')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=$pkgdir install
-}

Copied: kompare/repos/extra-i686/PKGBUILD (from rev 258119, 
kompare/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 08:45:26 UTC (rev 258120)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kompare
+pkgver=15.12.1
+pkgrel=1
+pkgdesc='Diff/Patch Frontend'
+url='http://kde.org/applications/development/kompare/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdesdk')
+depends=('libkomparediff2' 'ktexteditor' 'hicolor-icon-theme')
+makedepends=('extra-cmake-modules' 'python' 'kdoctools')
+install=${pkgname}.install
+conflicts=('kdesdk-kompare')
+replaces=('kdesdk-kompare')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kompare-${pkgver}.tar.xz;)
+sha1sums=('791150fb07f00cf513075791f14cc1fe8ac953be')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}

Deleted: extra-i686/kompare.install
===
--- extra-i686/kompare.install  2016-01-12 08:45:06 UTC (rev 258119)
+++ extra-i686/kompare.install  2016-01-12 08:45:26 UTC (rev 258120)
@@ -1,12 +0,0 @@
-post_install() {
-xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-update-desktop-database -q
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-post_install
-}

Copied: kompare/repos/extra-i686/kompare.install (from rev 258119, 
kompare/trunk/kompare.install)
===
--- extra-i686/kompare.install  (rev 0)
+++ extra-i686/kompare.install  2016-01-12 08:45:26 UTC (rev 258120)
@@ -0,0 +1,12 @@
+post_install() {
+xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+update-desktop-database -q
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 08:45:06 UTC (rev 258119)
+++ extra-x86_64/PKGBUILD   2016-01-12 08:45:26 UTC (rev 258120)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea 

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

2016-01-12 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 09:45:48
  Author: arojas
Revision: 258121

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

Added:
  lokalize/repos/extra-i686/PKGBUILD
(from rev 258120, lokalize/trunk/PKGBUILD)
  lokalize/repos/extra-i686/fix-python2-path.patch
(from rev 258120, lokalize/trunk/fix-python2-path.patch)
  lokalize/repos/extra-i686/lokalize.install
(from rev 258120, lokalize/trunk/lokalize.install)
  lokalize/repos/extra-x86_64/PKGBUILD
(from rev 258120, lokalize/trunk/PKGBUILD)
  lokalize/repos/extra-x86_64/fix-python2-path.patch
(from rev 258120, lokalize/trunk/fix-python2-path.patch)
  lokalize/repos/extra-x86_64/lokalize.install
(from rev 258120, lokalize/trunk/lokalize.install)
Deleted:
  lokalize/repos/extra-i686/PKGBUILD
  lokalize/repos/extra-i686/fix-python2-path.patch
  lokalize/repos/extra-i686/lokalize.install
  lokalize/repos/extra-x86_64/PKGBUILD
  lokalize/repos/extra-x86_64/fix-python2-path.patch
  lokalize/repos/extra-x86_64/lokalize.install

-+
 /PKGBUILD   |   84 ++
 /fix-python2-path.patch |   44 +
 /lokalize.install   |   24 +
 extra-i686/PKGBUILD |   42 -
 extra-i686/fix-python2-path.patch   |   22 
 extra-i686/lokalize.install |   12 
 extra-x86_64/PKGBUILD   |   42 -
 extra-x86_64/fix-python2-path.patch |   22 
 extra-x86_64/lokalize.install   |   12 
 9 files changed, 152 insertions(+), 152 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 08:45:26 UTC (rev 258120)
+++ extra-i686/PKGBUILD 2016-01-12 08:45:48 UTC (rev 258121)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=lokalize
-pkgver=15.12.0
-pkgrel=1
-pkgdesc='Computer-Aided Translation System'
-url='http://kde.org/applications/development/lokalize/'
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde-applications' 'kdesdk')
-depends=('kross' 'hunspell' 'hicolor-icon-theme')
-makedepends=('extra-cmake-modules' 'python' 'kdoctools')
-install=${pkgname}.install
-conflicts=('kdesdk-lokalize')
-replaces=('kdesdk-lokalize')
-source=("http://download.kde.org/stable/applications/${pkgver}/src/lokalize-${pkgver}.tar.xz;)
-sha1sums=('8bddbb18a8df7473d7b4ed562762c9e49f438a29')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../lokalize-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=$pkgdir install
-
-  # Fix python 2 path
-  sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' \
-"${pkgdir}"/usr/share/lokalize/scripts/odf/xliffmerge.py
-}

Copied: lokalize/repos/extra-i686/PKGBUILD (from rev 258120, 
lokalize/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 08:45:48 UTC (rev 258121)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=lokalize
+pkgver=15.12.1
+pkgrel=1
+pkgdesc='Computer-Aided Translation System'
+url='http://kde.org/applications/development/lokalize/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdesdk')
+depends=('kross' 'hunspell' 'hicolor-icon-theme')
+makedepends=('extra-cmake-modules' 'python' 'kdoctools')
+install=${pkgname}.install
+conflicts=('kdesdk-lokalize')
+replaces=('kdesdk-lokalize')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/lokalize-${pkgver}.tar.xz;)
+sha1sums=('d94940ec84d7b92ebd4781cdff70e7738056b432')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../lokalize-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+
+  # Fix python 2 path
+  sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' \
+"${pkgdir}"/usr/share/lokalize/scripts/odf/xliffmerge.py
+}

Deleted: extra-i686/fix-python2-path.patch
===
--- extra-i686/fix-python2-path.patch   2016-01-12 08:45:26 UTC (rev 258120)
+++ extra-i686/fix-python2-path.patch   2016-01-12 08:45:48 UTC (rev 258121)
@@ -1,22 +0,0 @@
 kdesdk-4.5.80/lokalize/scripts/msgmerge.py~2010-11-24 
11:22:42.12002 +0100
-+++ kdesdk-4.5.80/lokalize/scripts/msgmerge.py 2010-11-24 11:22:42.14670 
+0100
-@@ -114,7 +114,7 @@
- print >>sys.stderr, 

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

2016-01-12 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 09:59:08
  Author: arojas
Revision: 258143

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

Added:
  kdelibs/repos/extra-i686/PKGBUILD
(from rev 258142, kdelibs/trunk/PKGBUILD)
  kdelibs/repos/extra-i686/archlinux-menu.patch
(from rev 258142, kdelibs/trunk/archlinux-menu.patch)
  kdelibs/repos/extra-i686/kde-applications-menu.patch
(from rev 258142, kdelibs/trunk/kde-applications-menu.patch)
  kdelibs/repos/extra-i686/kdelibs.install
(from rev 258142, kdelibs/trunk/kdelibs.install)
  kdelibs/repos/extra-i686/qt4.patch
(from rev 258142, kdelibs/trunk/qt4.patch)
  kdelibs/repos/extra-x86_64/PKGBUILD
(from rev 258142, kdelibs/trunk/PKGBUILD)
  kdelibs/repos/extra-x86_64/archlinux-menu.patch
(from rev 258142, kdelibs/trunk/archlinux-menu.patch)
  kdelibs/repos/extra-x86_64/kde-applications-menu.patch
(from rev 258142, kdelibs/trunk/kde-applications-menu.patch)
  kdelibs/repos/extra-x86_64/kdelibs.install
(from rev 258142, kdelibs/trunk/kdelibs.install)
  kdelibs/repos/extra-x86_64/qt4.patch
(from rev 258142, kdelibs/trunk/qt4.patch)
Deleted:
  kdelibs/repos/extra-i686/PKGBUILD
  kdelibs/repos/extra-i686/archlinux-menu.patch
  kdelibs/repos/extra-i686/kde-applications-menu.patch
  kdelibs/repos/extra-i686/kdelibs.install
  kdelibs/repos/extra-i686/qt4.patch
  kdelibs/repos/extra-x86_64/PKGBUILD
  kdelibs/repos/extra-x86_64/archlinux-menu.patch
  kdelibs/repos/extra-x86_64/kde-applications-menu.patch
  kdelibs/repos/extra-x86_64/kdelibs.install
  kdelibs/repos/extra-x86_64/qt4.patch

--+
 /PKGBUILD|  124 +
 /archlinux-menu.patch|   44 ++
 /kde-applications-menu.patch |   44 ++
 /kdelibs.install |   26 ++
 /qt4.patch   |   22 +
 extra-i686/PKGBUILD  |   62 --
 extra-i686/archlinux-menu.patch  |   22 -
 extra-i686/kde-applications-menu.patch   |   22 -
 extra-i686/kdelibs.install   |   13 ---
 extra-i686/qt4.patch |   11 --
 extra-x86_64/PKGBUILD|   62 --
 extra-x86_64/archlinux-menu.patch|   22 -
 extra-x86_64/kde-applications-menu.patch |   22 -
 extra-x86_64/kdelibs.install |   13 ---
 extra-x86_64/qt4.patch   |   11 --
 15 files changed, 260 insertions(+), 260 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 08:52:38 UTC (rev 258142)
+++ extra-i686/PKGBUILD 2016-01-12 08:59:08 UTC (rev 258143)
@@ -1,62 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=kdelibs
-pkgver=4.14.15
-_kdeappver=15.12.0
-pkgrel=2
-pkgdesc="KDE Core Libraries"
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/kdelibs'
-license=('GPL' 'LGPL' 'FDL')
-depends=('attica-qt4' 'libxss' 'krb5' 'qca-qt4' 'libdbusmenu-qt4' 'polkit-qt4'
-'shared-mime-info' 'enchant' 'giflib' 'jasper' 'openexr' 'strigi'
-'docbook-xsl' 'upower' 'udisks2' 'libxcursor' 'phonon-qt4'
-'media-player-info' 'libxtst' 'libutempter' 'qtwebkit' 'icu')
-makedepends=('cmake' 'automoc4' 'avahi' 'libgl' 'hspell' 'mesa')
-install=$pkgname.install
-source=("http://download.kde.org/stable/applications/${_kdeappver}/src/$pkgname-$pkgver.tar.xz;
-'kde-applications-menu.patch' 'archlinux-menu.patch' 'qt4.patch')
-sha1sums=('7a50824fbcd2a4a72c8780da7b1425b038415419'
-  '86ee8c8660f19de8141ac99cd6943964d97a1ed7'
-  '63a850ab4196b9d06934f2b4a13acd9f7739bc67'
-  'ed1f57ee661e5c7440efcaba7e51d2554709701c')
-
-prepare() {
-   mkdir -p build
-   cd ${pkgname}-${pkgver}
-   # avoid file conflict with gnome-menus
-   patch -p1 -i ../kde-applications-menu.patch
-   # add Archlinux menu entry
-   patch -p1 -i ../archlinux-menu.patch
-   # qmake refers to Qt5
-   patch -p1 -i ../qt4.patch
-}
-
-build() {
-   cd build
-   cmake ../$pkgname-$pkgver \
-   -DCMAKE_BUILD_TYPE=Release \
-   -DKDE4_BUILD_TESTS=OFF \
-   -DCMAKE_SKIP_RPATH=ON \
-   -DKDE_DISTRIBUTION_TEXT='Arch Linux' \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DSYSCONF_INSTALL_DIR=/etc \
-   -DLOCALE_INSTALL_DIR=/usr/share/locale/kde4 \
-   -DKDE_DEFAULT_HOME='.kde4' \
-   -DWITH_FAM=OFF \
-   -DWITH_SOLID_UDISKS2=ON
-   make
-}
-
-package() {
-   cd build
-   make DESTDIR="$pkgdir" install
-
-   # cert bundle seems to be hardcoded
-   # link it to the one from ca-certificates
-   rm -f 

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

2016-01-12 Thread Felix Yan
Date: Tuesday, January 12, 2016 @ 10:35:19
  Author: fyan
Revision: 156072

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

Added:
  haskell-hinotify/repos/community-i686/
  haskell-hinotify/repos/community-i686/PKGBUILD
(from rev 156071, haskell-hinotify/trunk/PKGBUILD)
  haskell-hinotify/repos/community-i686/haskell-hinotify.install
(from rev 156071, haskell-hinotify/trunk/haskell-hinotify.install)
  haskell-hinotify/repos/community-x86_64/
  haskell-hinotify/repos/community-x86_64/PKGBUILD
(from rev 156071, haskell-hinotify/trunk/PKGBUILD)
  haskell-hinotify/repos/community-x86_64/haskell-hinotify.install
(from rev 156071, haskell-hinotify/trunk/haskell-hinotify.install)

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

Copied: haskell-hinotify/repos/community-i686/PKGBUILD (from rev 156071, 
haskell-hinotify/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-01-12 09:35:19 UTC (rev 156072)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hinotify
+pkgname=haskell-hinotify
+pkgver=0.3.8.1
+pkgrel=1
+pkgdesc="Haskell binding to inotify"
+url="https://github.com/kolmodin/hinotify.git;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('37d46e32c362ff1e2d9c8d79a553e0d2e59e009d46708163fb05a07e1a71810d')
+
+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-hinotify/repos/community-i686/haskell-hinotify.install (from 
rev 156071, haskell-hinotify/trunk/haskell-hinotify.install)
===
--- community-i686/haskell-hinotify.install (rev 0)
+++ community-i686/haskell-hinotify.install 2016-01-12 09:35:19 UTC (rev 
156072)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-hinotify
+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-hinotify/repos/community-x86_64/PKGBUILD (from rev 156071, 
haskell-hinotify/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-01-12 09:35:19 UTC (rev 156072)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hinotify
+pkgname=haskell-hinotify
+pkgver=0.3.8.1
+pkgrel=1
+pkgdesc="Haskell binding to inotify"
+url="https://github.com/kolmodin/hinotify.git;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('37d46e32c362ff1e2d9c8d79a553e0d2e59e009d46708163fb05a07e1a71810d')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \

[arch-commits] Commit in deepin-dbus-factory/repos (6 files)

2016-01-12 Thread Felix Yan
Date: Tuesday, January 12, 2016 @ 11:03:18
  Author: fyan
Revision: 156087

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

Added:
  deepin-dbus-factory/repos/community-staging-i686/
  deepin-dbus-factory/repos/community-staging-i686/PKGBUILD
(from rev 156086, deepin-dbus-factory/trunk/PKGBUILD)
  deepin-dbus-factory/repos/community-staging-i686/fix-arch.patch
(from rev 156086, deepin-dbus-factory/trunk/fix-arch.patch)
  deepin-dbus-factory/repos/community-staging-x86_64/
  deepin-dbus-factory/repos/community-staging-x86_64/PKGBUILD
(from rev 156086, deepin-dbus-factory/trunk/PKGBUILD)
  deepin-dbus-factory/repos/community-staging-x86_64/fix-arch.patch
(from rev 156086, deepin-dbus-factory/trunk/fix-arch.patch)

-+
 community-staging-i686/PKGBUILD |   33 ++
 community-staging-i686/fix-arch.patch   |   13 +++
 community-staging-x86_64/PKGBUILD   |   33 ++
 community-staging-x86_64/fix-arch.patch |   13 +++
 4 files changed, 92 insertions(+)

Copied: deepin-dbus-factory/repos/community-staging-i686/PKGBUILD (from rev 
156086, deepin-dbus-factory/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-01-12 10:03:18 UTC (rev 156087)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-dbus-factory
+pkgver=3.0.1
+pkgrel=1
+pkgdesc='QML DBus factory for DDE'
+arch=('i686' 'x86_64')
+url="https://gitcafe.com/Deepin/dbus-factory;
+license=('GPL3')
+depends=('qt5-declarative')
+makedepends=('git' 'deepin-dbus-generator')
+source=("git+https://cr.deepin.io/dbus-factory.git#tag=$pkgver;
+fix-arch.patch)
+sha256sums=('SKIP'
+'0195e1258534ef14d8ec63cde5389f8cfad39d5308ab8ddf73966018a34bd300')
+
+prepare() {
+  cd dbus-factory
+  patch -p1 -i ../fix-arch.patch
+}
+
+build(){
+  cd dbus-factory
+  make build-qml
+}
+
+package() {
+  cd dbus-factory
+  make DESTDIR="${pkgdir}" install-qml
+}

Copied: deepin-dbus-factory/repos/community-staging-i686/fix-arch.patch (from 
rev 156086, deepin-dbus-factory/trunk/fix-arch.patch)
===
--- community-staging-i686/fix-arch.patch   (rev 0)
+++ community-staging-i686/fix-arch.patch   2016-01-12 10:03:18 UTC (rev 
156087)
@@ -0,0 +1,13 @@
+diff -ruN a/in.json/Makefile b/in.json/Makefile
+--- a/in.json/Makefile  2014-12-30 20:01:39.978997830 +0100
 b/in.json/Makefile  2014-12-30 20:08:45.569012561 +0100
+@@ -1,7 +1,7 @@
+ PREFIX  = /usr
+ 
+-GOPATH := $(shell go env GOPATH)
+-QT5_LIBDIR ?= $(PREFIX)/lib/qt5
++GOPATH := $(PREFIX)/lib/go
++QT5_LIBDIR ?= $(PREFIX)/lib/qt
+ QMLDIR ?= $(QT5_LIBDIR)/qml
+ 
+ JSONS  := $(wildcard *.in.json)

Copied: deepin-dbus-factory/repos/community-staging-x86_64/PKGBUILD (from rev 
156086, deepin-dbus-factory/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-01-12 10:03:18 UTC (rev 156087)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-dbus-factory
+pkgver=3.0.1
+pkgrel=1
+pkgdesc='QML DBus factory for DDE'
+arch=('i686' 'x86_64')
+url="https://gitcafe.com/Deepin/dbus-factory;
+license=('GPL3')
+depends=('qt5-declarative')
+makedepends=('git' 'deepin-dbus-generator')
+source=("git+https://cr.deepin.io/dbus-factory.git#tag=$pkgver;
+fix-arch.patch)
+sha256sums=('SKIP'
+'0195e1258534ef14d8ec63cde5389f8cfad39d5308ab8ddf73966018a34bd300')
+
+prepare() {
+  cd dbus-factory
+  patch -p1 -i ../fix-arch.patch
+}
+
+build(){
+  cd dbus-factory
+  make build-qml
+}
+
+package() {
+  cd dbus-factory
+  make DESTDIR="${pkgdir}" install-qml
+}

Copied: deepin-dbus-factory/repos/community-staging-x86_64/fix-arch.patch (from 
rev 156086, deepin-dbus-factory/trunk/fix-arch.patch)
===
--- community-staging-x86_64/fix-arch.patch (rev 0)
+++ community-staging-x86_64/fix-arch.patch 2016-01-12 10:03:18 UTC (rev 
156087)
@@ -0,0 +1,13 @@
+diff -ruN a/in.json/Makefile b/in.json/Makefile
+--- a/in.json/Makefile  2014-12-30 20:01:39.978997830 +0100
 b/in.json/Makefile  2014-12-30 20:08:45.569012561 +0100
+@@ -1,7 +1,7 @@
+ PREFIX  = /usr
+ 
+-GOPATH := $(shell go env GOPATH)
+-QT5_LIBDIR ?= $(PREFIX)/lib/qt5
++GOPATH := $(PREFIX)/lib/go
++QT5_LIBDIR ?= $(PREFIX)/lib/qt
+ QMLDIR ?= $(QT5_LIBDIR)/qml
+ 
+ 

[arch-commits] Commit in (5 files)

2016-01-12 Thread Felix Yan
Date: Tuesday, January 12, 2016 @ 11:02:40
  Author: fyan
Revision: 156085

addpkg: haskell-ieee754 0.7.6-1

Added:
  haskell-ieee754/
  haskell-ieee754/repos/
  haskell-ieee754/trunk/
  haskell-ieee754/trunk/PKGBUILD
  haskell-ieee754/trunk/haskell-ieee754.install

-+
 PKGBUILD|   42 ++
 haskell-ieee754.install |   18 ++
 2 files changed, 60 insertions(+)

Added: haskell-ieee754/trunk/PKGBUILD
===
--- haskell-ieee754/trunk/PKGBUILD  (rev 0)
+++ haskell-ieee754/trunk/PKGBUILD  2016-01-12 10:02:40 UTC (rev 156085)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=ieee754
+pkgname=haskell-ieee754
+pkgver=0.7.6
+pkgrel=1
+pkgdesc="Utilities for dealing with IEEE floating point numbers"
+url="http://github.com/patperry/hs-ieee754;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('5840644e8adbb243adc63d112c8bec3c3996af21a6c1262ce30c1e2b1034450f')
+
+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"
+}


Property changes on: haskell-ieee754/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: haskell-ieee754/trunk/haskell-ieee754.install
===
--- haskell-ieee754/trunk/haskell-ieee754.install   
(rev 0)
+++ haskell-ieee754/trunk/haskell-ieee754.install   2016-01-12 10:02:40 UTC 
(rev 156085)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-ieee754
+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)
+}


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

2016-01-12 Thread Felix Yan
Date: Tuesday, January 12, 2016 @ 11:02:44
  Author: fyan
Revision: 156086

upgpkg: deepin-dbus-factory 3.0.1-1

Modified:
  deepin-dbus-factory/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-01-12 10:02:40 UTC (rev 156085)
+++ PKGBUILD2016-01-12 10:02:44 UTC (rev 156086)
@@ -4,7 +4,7 @@
 # Contributor: Xu Fasheng 
 
 pkgname=deepin-dbus-factory
-pkgver=3.0.0
+pkgver=3.0.1
 pkgrel=1
 pkgdesc='QML DBus factory for DDE'
 arch=('i686' 'x86_64')


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

2016-01-12 Thread Felix Yan
Date: Tuesday, January 12, 2016 @ 11:02:27
  Author: fyan
Revision: 156084

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

Added:
  deepin-desktop/repos/community-staging-i686/
  deepin-desktop/repos/community-staging-i686/PKGBUILD
(from rev 156083, deepin-desktop/trunk/PKGBUILD)
  deepin-desktop/repos/community-staging-x86_64/
  deepin-desktop/repos/community-staging-x86_64/PKGBUILD
(from rev 156083, deepin-desktop/trunk/PKGBUILD)

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

Copied: deepin-desktop/repos/community-staging-i686/PKGBUILD (from rev 156083, 
deepin-desktop/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-01-12 10:02:27 UTC (rev 156084)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-desktop
+pkgver=3.0.3
+pkgrel=1
+pkgdesc='Deepin desktop-environment - Desktop module'
+arch=('i686' 'x86_64')
+url="https://github.com/linuxdeepin/dde-desktop;
+license=('GPL3')
+depends=('deepin-file-manager' 'deepin-nautilus-properties' 'gsettings-qt'
+ 'deepin-daemon' 'libdui' 'startdde' 'deepin-dock' 'gtk2' 'qt5-svg'
+ 'qt5-x11extras')
+makedepends=('git')
+conflicts=('dde-desktop')
+replaces=('dde-desktop')
+groups=('deepin')
+source=("git+https://cr.deepin.io/dde/dde-desktop.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+build(){
+  cd dde-desktop
+  qmake-qt5 PREFIX=/usr
+  make
+}
+
+package() {
+  cd dde-desktop
+  make INSTALL_ROOT="${pkgdir}" install
+}

Copied: deepin-desktop/repos/community-staging-x86_64/PKGBUILD (from rev 
156083, deepin-desktop/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-01-12 10:02:27 UTC (rev 156084)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-desktop
+pkgver=3.0.3
+pkgrel=1
+pkgdesc='Deepin desktop-environment - Desktop module'
+arch=('i686' 'x86_64')
+url="https://github.com/linuxdeepin/dde-desktop;
+license=('GPL3')
+depends=('deepin-file-manager' 'deepin-nautilus-properties' 'gsettings-qt'
+ 'deepin-daemon' 'libdui' 'startdde' 'deepin-dock' 'gtk2' 'qt5-svg'
+ 'qt5-x11extras')
+makedepends=('git')
+conflicts=('dde-desktop')
+replaces=('dde-desktop')
+groups=('deepin')
+source=("git+https://cr.deepin.io/dde/dde-desktop.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+build(){
+  cd dde-desktop
+  qmake-qt5 PREFIX=/usr
+  make
+}
+
+package() {
+  cd dde-desktop
+  make INSTALL_ROOT="${pkgdir}" install
+}


[arch-commits] Commit in (5 files)

2016-01-12 Thread Felix Yan
Date: Tuesday, January 12, 2016 @ 11:12:53
  Author: fyan
Revision: 156098

addpkg: haskell-hastache 0.6.1-1

Added:
  haskell-hastache/
  haskell-hastache/repos/
  haskell-hastache/trunk/
  haskell-hastache/trunk/PKGBUILD
  haskell-hastache/trunk/haskell-hastache.install

--+
 PKGBUILD |   43 +++
 haskell-hastache.install |   18 ++
 2 files changed, 61 insertions(+)

Added: haskell-hastache/trunk/PKGBUILD
===
--- haskell-hastache/trunk/PKGBUILD (rev 0)
+++ haskell-hastache/trunk/PKGBUILD 2016-01-12 10:12:53 UTC (rev 156098)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hastache
+pkgname=haskell-hastache
+pkgver=0.6.1
+pkgrel=1
+pkgdesc="Haskell implementation of Mustache templates"
+url="http://github.com/lymar/hastache;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-blaze-builder" "haskell-ieee754" "haskell-mtl"
+ "haskell-syb" "haskell-text")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('8c8f89669d6125201d7163385ea9055ab8027a69d1513259f8fbdd53c244b464')
+
+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"
+}


Property changes on: haskell-hastache/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: haskell-hastache/trunk/haskell-hastache.install
===
--- haskell-hastache/trunk/haskell-hastache.install 
(rev 0)
+++ haskell-hastache/trunk/haskell-hastache.install 2016-01-12 10:12:53 UTC 
(rev 156098)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-hastache
+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)
+}


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

2016-01-12 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 09:06:49
  Author: arojas
Revision: 258060

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

Added:
  kpatience/repos/extra-i686/PKGBUILD
(from rev 258059, kpatience/trunk/PKGBUILD)
  kpatience/repos/extra-i686/kpatience.install
(from rev 258059, kpatience/trunk/kpatience.install)
  kpatience/repos/extra-x86_64/PKGBUILD
(from rev 258059, kpatience/trunk/PKGBUILD)
  kpatience/repos/extra-x86_64/kpatience.install
(from rev 258059, kpatience/trunk/kpatience.install)
Deleted:
  kpatience/repos/extra-i686/PKGBUILD
  kpatience/repos/extra-i686/kpatience.install
  kpatience/repos/extra-x86_64/PKGBUILD
  kpatience/repos/extra-x86_64/kpatience.install

+
 /PKGBUILD  |   72 +++
 /kpatience.install |   26 ++
 extra-i686/PKGBUILD|   36 ---
 extra-i686/kpatience.install   |   13 ---
 extra-x86_64/PKGBUILD  |   36 ---
 extra-x86_64/kpatience.install |   13 ---
 6 files changed, 98 insertions(+), 98 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 08:06:27 UTC (rev 258059)
+++ extra-i686/PKGBUILD 2016-01-12 08:06:49 UTC (rev 258060)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=kpatience
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="Offers a selection of solitaire card games"
-url="http://kde.org/applications/games/kpatience/;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde-applications' 'kdegames')
-depends=('libkdegames' 'knotifyconfig' 'hicolor-icon-theme')
-makedepends=('extra-cmake-modules' 'python' 'kdoctools')
-install=${pkgname}.install
-conflicts=('kdegames-kpatience')
-replaces=('kdegames-kpatience')
-source=("http://download.kde.org/stable/applications/${pkgver}/src/kpat-${pkgver}.tar.xz;)
-sha1sums=('ac6b85f6f44df328b73dd3b82ab339d6f6f9e21a')
-
-build() {
-  mkdir -p build
-  cd build
-  cmake ../kpat-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: kpatience/repos/extra-i686/PKGBUILD (from rev 258059, 
kpatience/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 08:06:49 UTC (rev 258060)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kpatience
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="Offers a selection of solitaire card games"
+url="http://kde.org/applications/games/kpatience/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdegames')
+depends=('libkdegames' 'knotifyconfig' 'hicolor-icon-theme')
+makedepends=('extra-cmake-modules' 'python' 'kdoctools')
+install=${pkgname}.install
+conflicts=('kdegames-kpatience')
+replaces=('kdegames-kpatience')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kpat-${pkgver}.tar.xz;)
+sha1sums=('02b970a703763aa300eaf860f46a13bcce7bd979')
+
+build() {
+  mkdir -p build
+  cd build
+  cmake ../kpat-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-i686/kpatience.install
===
--- extra-i686/kpatience.install2016-01-12 08:06:27 UTC (rev 258059)
+++ extra-i686/kpatience.install2016-01-12 08:06:49 UTC (rev 258060)
@@ -1,13 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-   update-desktop-database -q
-   update-mime-database usr/share/mime &> /dev/null
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: kpatience/repos/extra-i686/kpatience.install (from rev 258059, 
kpatience/trunk/kpatience.install)
===
--- extra-i686/kpatience.install(rev 0)
+++ extra-i686/kpatience.install2016-01-12 08:06:49 UTC (rev 258060)
@@ -0,0 +1,13 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+   update-desktop-database -q
+   update-mime-database usr/share/mime &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Deleted: extra-x86_64/PKGBUILD

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

2016-01-12 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 09:04:54
  Author: arojas
Revision: 258057

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

Added:
  kdegames-kolf/repos/extra-i686/PKGBUILD
(from rev 258056, kdegames-kolf/trunk/PKGBUILD)
  kdegames-kolf/repos/extra-i686/kdegames-kolf.install
(from rev 258056, kdegames-kolf/trunk/kdegames-kolf.install)
  kdegames-kolf/repos/extra-x86_64/PKGBUILD
(from rev 258056, kdegames-kolf/trunk/PKGBUILD)
  kdegames-kolf/repos/extra-x86_64/kdegames-kolf.install
(from rev 258056, kdegames-kolf/trunk/kdegames-kolf.install)
Deleted:
  kdegames-kolf/repos/extra-i686/PKGBUILD
  kdegames-kolf/repos/extra-i686/kdegames-kolf.install
  kdegames-kolf/repos/extra-x86_64/PKGBUILD
  kdegames-kolf/repos/extra-x86_64/kdegames-kolf.install

+
 /PKGBUILD  |   64 +++
 /kdegames-kolf.install |   24 +
 extra-i686/PKGBUILD|   32 -
 extra-i686/kdegames-kolf.install   |   12 --
 extra-x86_64/PKGBUILD  |   32 -
 extra-x86_64/kdegames-kolf.install |   12 --
 6 files changed, 88 insertions(+), 88 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 08:03:50 UTC (rev 258056)
+++ extra-i686/PKGBUILD 2016-01-12 08:04:54 UTC (rev 258057)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=kdegames-kolf
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="A miniature golf game with 2d top-down view"
-url="http://kde.org/applications/games/kolf/;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde-applications' 'kdegames')
-depends=('kdebase-runtime' 'libkdegames4')
-makedepends=('cmake' 'automoc4')
-install=${pkgname}.install
-source=("http://download.kde.org/stable/applications/${pkgver}/src/kolf-${pkgver}.tar.xz;)
-sha1sums=('b848a8de2df3d0459f1fa3021efed2c5721c1acd')
-
-build() {
-  mkdir -p build
-  cd build
-  cmake ../kolf-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: kdegames-kolf/repos/extra-i686/PKGBUILD (from rev 258056, 
kdegames-kolf/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 08:04:54 UTC (rev 258057)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdegames-kolf
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="A miniature golf game with 2d top-down view"
+url="http://kde.org/applications/games/kolf/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames4')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kolf-${pkgver}.tar.xz;)
+sha1sums=('5ca4bfb063673e62269c1c8f3c20e79155cc53f1')
+
+build() {
+  mkdir -p build
+  cd build
+  cmake ../kolf-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-i686/kdegames-kolf.install
===
--- extra-i686/kdegames-kolf.install2016-01-12 08:03:50 UTC (rev 258056)
+++ extra-i686/kdegames-kolf.install2016-01-12 08:04:54 UTC (rev 258057)
@@ -1,12 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-   update-desktop-database -q
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: kdegames-kolf/repos/extra-i686/kdegames-kolf.install (from rev 258056, 
kdegames-kolf/trunk/kdegames-kolf.install)
===
--- extra-i686/kdegames-kolf.install(rev 0)
+++ extra-i686/kdegames-kolf.install2016-01-12 08:04:54 UTC (rev 258057)
@@ -0,0 +1,12 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+   update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 08:03:50 UTC (rev 258056)
+++ extra-x86_64/PKGBUILD   2016-01-12 08:04:54 UTC (rev 258057)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=kdegames-kolf
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="A miniature 

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

2016-01-12 Thread Felix Yan
Date: Tuesday, January 12, 2016 @ 09:04:47
  Author: fyan
Revision: 156062

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

Added:
  haskell-errors/repos/community-i686/
  haskell-errors/repos/community-i686/PKGBUILD
(from rev 156061, haskell-errors/trunk/PKGBUILD)
  haskell-errors/repos/community-i686/haskell-errors.install
(from rev 156061, haskell-errors/trunk/haskell-errors.install)
  haskell-errors/repos/community-x86_64/
  haskell-errors/repos/community-x86_64/PKGBUILD
(from rev 156061, haskell-errors/trunk/PKGBUILD)
  haskell-errors/repos/community-x86_64/haskell-errors.install
(from rev 156061, haskell-errors/trunk/haskell-errors.install)

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

Copied: haskell-errors/repos/community-i686/PKGBUILD (from rev 156061, 
haskell-errors/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-01-12 08:04:47 UTC (rev 156062)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=errors
+pkgname=haskell-errors
+pkgver=2.1.0
+pkgrel=1
+pkgdesc="Simplified error-handling"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-safe" "haskell-transformers-compat"
+ "haskell-unexceptionalio")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('8689fa17307692eed702a87460506e407f746f2ac1fa2183953cc6204bda0658')
+
+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-errors/repos/community-i686/haskell-errors.install (from rev 
156061, haskell-errors/trunk/haskell-errors.install)
===
--- community-i686/haskell-errors.install   (rev 0)
+++ community-i686/haskell-errors.install   2016-01-12 08:04:47 UTC (rev 
156062)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-errors
+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-errors/repos/community-x86_64/PKGBUILD (from rev 156061, 
haskell-errors/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-01-12 08:04:47 UTC (rev 156062)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=errors
+pkgname=haskell-errors
+pkgver=2.1.0
+pkgrel=1
+pkgdesc="Simplified error-handling"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-safe" "haskell-transformers-compat"
+ "haskell-unexceptionalio")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('8689fa17307692eed702a87460506e407f746f2ac1fa2183953cc6204bda0658')
+
+build() {
+cd 

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

2016-01-12 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 09:06:04
  Author: arojas
Revision: 258058

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

Added:
  kollision/repos/extra-i686/PKGBUILD
(from rev 258057, kollision/trunk/PKGBUILD)
  kollision/repos/extra-i686/kollision.install
(from rev 258057, kollision/trunk/kollision.install)
  kollision/repos/extra-x86_64/PKGBUILD
(from rev 258057, kollision/trunk/PKGBUILD)
  kollision/repos/extra-x86_64/kollision.install
(from rev 258057, kollision/trunk/kollision.install)
Deleted:
  kollision/repos/extra-i686/PKGBUILD
  kollision/repos/extra-i686/kollision.install
  kollision/repos/extra-x86_64/PKGBUILD
  kollision/repos/extra-x86_64/kollision.install

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 08:04:54 UTC (rev 258057)
+++ extra-i686/PKGBUILD 2016-01-12 08:06:04 UTC (rev 258058)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=kollision
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="A simple ball dodging game"
-url="http://kde.org/applications/games/kollision/;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde-applications' 'kdegames')
-depends=('libkdegames' 'knotifyconfig' 'hicolor-icon-theme')
-makedepends=('extra-cmake-modules' 'kdoctools' 'python')
-install=${pkgname}.install
-conflicts=('kdegames-kollision')
-replaces=('kdegames-kollision')
-source=("http://download.kde.org/stable/applications/${pkgver}/src/kollision-${pkgver}.tar.xz;)
-sha1sums=('a1f2f9ba27d21e16087eb5f9f5d1bc1d131e1e10')
-
-build() {
-  mkdir -p build
-  cd build
-  cmake ../kollision-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: kollision/repos/extra-i686/PKGBUILD (from rev 258057, 
kollision/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 08:06:04 UTC (rev 258058)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kollision
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="A simple ball dodging game"
+url="http://kde.org/applications/games/kollision/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdegames')
+depends=('libkdegames' 'knotifyconfig' 'hicolor-icon-theme')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+install=${pkgname}.install
+conflicts=('kdegames-kollision')
+replaces=('kdegames-kollision')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kollision-${pkgver}.tar.xz;)
+sha1sums=('597aa42a308e22ccd845eacb352e5ea960c5ce0e')
+
+build() {
+  mkdir -p build
+  cd build
+  cmake ../kollision-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-i686/kollision.install
===
--- extra-i686/kollision.install2016-01-12 08:04:54 UTC (rev 258057)
+++ extra-i686/kollision.install2016-01-12 08:06:04 UTC (rev 258058)
@@ -1,11 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: kollision/repos/extra-i686/kollision.install (from rev 258057, 
kollision/trunk/kollision.install)
===
--- extra-i686/kollision.install(rev 0)
+++ extra-i686/kollision.install2016-01-12 08:06:04 UTC (rev 258058)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 08:04:54 UTC (rev 258057)
+++ extra-x86_64/PKGBUILD   2016-01-12 08:06:04 UTC (rev 258058)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 

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

2016-01-12 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 09:06:27
  Author: arojas
Revision: 258059

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

Added:
  kdegames-konquest/repos/extra-i686/PKGBUILD
(from rev 258058, kdegames-konquest/trunk/PKGBUILD)
  kdegames-konquest/repos/extra-i686/kdegames-konquest.install
(from rev 258058, kdegames-konquest/trunk/kdegames-konquest.install)
  kdegames-konquest/repos/extra-x86_64/PKGBUILD
(from rev 258058, kdegames-konquest/trunk/PKGBUILD)
  kdegames-konquest/repos/extra-x86_64/kdegames-konquest.install
(from rev 258058, kdegames-konquest/trunk/kdegames-konquest.install)
Deleted:
  kdegames-konquest/repos/extra-i686/PKGBUILD
  kdegames-konquest/repos/extra-i686/kdegames-konquest.install
  kdegames-konquest/repos/extra-x86_64/PKGBUILD
  kdegames-konquest/repos/extra-x86_64/kdegames-konquest.install

+
 /PKGBUILD  |   64 +++
 /kdegames-konquest.install |   22 ++
 extra-i686/PKGBUILD|   32 ---
 extra-i686/kdegames-konquest.install   |   11 -
 extra-x86_64/PKGBUILD  |   32 ---
 extra-x86_64/kdegames-konquest.install |   11 -
 6 files changed, 86 insertions(+), 86 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 08:06:04 UTC (rev 258058)
+++ extra-i686/PKGBUILD 2016-01-12 08:06:27 UTC (rev 258059)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=kdegames-konquest
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="The KDE version of Gnu-Lactic"
-url="http://kde.org/applications/games/konquest/;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde-applications' 'kdegames')
-depends=('kdebase-runtime' 'libkdegames4')
-makedepends=('cmake' 'automoc4')
-install=${pkgname}.install
-source=("http://download.kde.org/stable/applications/${pkgver}/src/konquest-${pkgver}.tar.xz;)
-sha1sums=('c77ef5e45abd1928f851f26b564732832a0067d3')
-
-build() {
-  mkdir -p build
-  cd build
-  cmake ../konquest-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: kdegames-konquest/repos/extra-i686/PKGBUILD (from rev 258058, 
kdegames-konquest/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 08:06:27 UTC (rev 258059)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdegames-konquest
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="The KDE version of Gnu-Lactic"
+url="http://kde.org/applications/games/konquest/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames4')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=("http://download.kde.org/stable/applications/${pkgver}/src/konquest-${pkgver}.tar.xz;)
+sha1sums=('62fb11c052ad15541fcd3cb39f29c9ef138d8e5f')
+
+build() {
+  mkdir -p build
+  cd build
+  cmake ../konquest-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-i686/kdegames-konquest.install
===
--- extra-i686/kdegames-konquest.install2016-01-12 08:06:04 UTC (rev 
258058)
+++ extra-i686/kdegames-konquest.install2016-01-12 08:06:27 UTC (rev 
258059)
@@ -1,11 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: kdegames-konquest/repos/extra-i686/kdegames-konquest.install (from rev 
258058, kdegames-konquest/trunk/kdegames-konquest.install)
===
--- extra-i686/kdegames-konquest.install(rev 0)
+++ extra-i686/kdegames-konquest.install2016-01-12 08:06:27 UTC (rev 
258059)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-12 08:06:04 UTC (rev 258058)
+++ extra-x86_64/PKGBUILD   2016-01-12 08:06:27 UTC (rev 258059)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 

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

2016-01-12 Thread Antonio Rojas
Date: Tuesday, January 12, 2016 @ 09:14:39
  Author: arojas
Revision: 258068

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

Added:
  ktuberling/repos/extra-i686/PKGBUILD
(from rev 258067, ktuberling/trunk/PKGBUILD)
  ktuberling/repos/extra-i686/ktuberling.install
(from rev 258067, ktuberling/trunk/ktuberling.install)
  ktuberling/repos/extra-x86_64/PKGBUILD
(from rev 258067, ktuberling/trunk/PKGBUILD)
  ktuberling/repos/extra-x86_64/ktuberling.install
(from rev 258067, ktuberling/trunk/ktuberling.install)
Deleted:
  ktuberling/repos/extra-i686/PKGBUILD
  ktuberling/repos/extra-i686/ktuberling.install
  ktuberling/repos/extra-x86_64/PKGBUILD
  ktuberling/repos/extra-x86_64/ktuberling.install

-+
 /PKGBUILD   |   78 ++
 /ktuberling.install |   24 +++
 extra-i686/PKGBUILD |   39 ---
 extra-i686/ktuberling.install   |   12 -
 extra-x86_64/PKGBUILD   |   39 ---
 extra-x86_64/ktuberling.install |   12 -
 6 files changed, 102 insertions(+), 102 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-12 08:13:22 UTC (rev 258067)
+++ extra-i686/PKGBUILD 2016-01-12 08:14:39 UTC (rev 258068)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Maintainer: Antonio Rojas 
-# Contributor: Andrea Scarpino 
-
-pkgname=ktuberling
-pkgver=15.12.0
-pkgrel=1
-pkgdesc="A simple constructor game suitable for children and adults alike"
-url="http://kde.org/applications/games/ktuberling/;
-arch=(i686 x86_64)
-license=(GPL LGPL FDL)
-groups=(kde-applications kdegames)
-depends=(hicolor-icon-theme libkdegames knotifyconfig)
-makedepends=(extra-cmake-modules kdoctools kdelibs4support)
-conflicts=(kdegames-ktuberling)
-replaces=(kdegames-ktuberling)
-install=$pkgname.install
-source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
-sha1sums=('70fcfe09cb2d296c30ada8c1e36233b0e683637f')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: ktuberling/repos/extra-i686/PKGBUILD (from rev 258067, 
ktuberling/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-12 08:14:39 UTC (rev 258068)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=ktuberling
+pkgver=15.12.1
+pkgrel=1
+pkgdesc="A simple constructor game suitable for children and adults alike"
+url="http://kde.org/applications/games/ktuberling/;
+arch=(i686 x86_64)
+license=(GPL LGPL FDL)
+groups=(kde-applications kdegames)
+depends=(hicolor-icon-theme libkdegames knotifyconfig)
+makedepends=(extra-cmake-modules kdoctools kdelibs4support)
+conflicts=(kdegames-ktuberling)
+replaces=(kdegames-ktuberling)
+install=$pkgname.install
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+sha1sums=('c07cf873984a5f819d6c1f389811ab8422d52cab')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-i686/ktuberling.install
===
--- extra-i686/ktuberling.install   2016-01-12 08:13:22 UTC (rev 258067)
+++ extra-i686/ktuberling.install   2016-01-12 08:14:39 UTC (rev 258068)
@@ -1,12 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-   update-desktop-database -q
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: ktuberling/repos/extra-i686/ktuberling.install (from rev 258067, 
ktuberling/trunk/ktuberling.install)
===
--- extra-i686/ktuberling.install   (rev 0)
+++ extra-i686/ktuberling.install   2016-01-12 08:14:39 UTC (rev 258068)
@@ -0,0 +1,12 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+   update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Deleted: extra-x86_64/PKGBUILD

  1   2   3   >