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

2016-03-08 Thread Felix Yan
Date: Wednesday, March 9, 2016 @ 08:55:55
  Author: fyan
Revision: 165692

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

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

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

Copied: haskell-pandoc-types/repos/community-staging-i686/PKGBUILD (from rev 
165691, haskell-pandoc-types/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-09 07:55:55 UTC (rev 165692)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=pandoc-types
+pkgname=haskell-pandoc-types
+pkgver=1.16.1
+pkgrel=5
+pkgdesc="Types for representing a structured document"
+url="http://johnmacfarlane.net/pandoc";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-aeson" "haskell-syb")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+install="${pkgname}.install"
+sha256sums=('846054157d7072ca3f7260b988a6752536b42bbd32c051400e55f46229b8179e')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: 
haskell-pandoc-types/repos/community-staging-i686/haskell-pandoc-types.install 
(from rev 165691, haskell-pandoc-types/trunk/haskell-pandoc-types.install)
===
--- community-staging-i686/haskell-pandoc-types.install 
(rev 0)
+++ community-staging-i686/haskell-pandoc-types.install 2016-03-09 07:55:55 UTC 
(rev 165692)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-pandoc-types
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-pandoc-types/repos/community-staging-x86_64/PKGBUILD (from rev 
165691, haskell-pandoc-types/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-09 07:55:55 UTC (rev 165692)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=pandoc-types
+pkgname=haskell-pandoc-types
+pkgver=1.16.1
+pkgrel=5
+pkgdesc="Types for representing a structured document"
+url="http://johnmacfarlane.net/pandoc";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-aeson" "haskell-syb")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+instal

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

2016-03-08 Thread Felix Yan
Date: Wednesday, March 9, 2016 @ 08:55:29
  Author: fyan
Revision: 165691

upgpkg: haskell-pandoc-types 1.16.1-5

rebuild with persistent-2.2.4.1, path-0.5.7, persistent-sqlite-2.2.1, 
persistent-template-2.1.6, scientific-0.3.4.5

Modified:
  haskell-pandoc-types/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-09 07:53:50 UTC (rev 165690)
+++ PKGBUILD2016-03-09 07:55:29 UTC (rev 165691)
@@ -5,7 +5,7 @@
 _hkgname=pandoc-types
 pkgname=haskell-pandoc-types
 pkgver=1.16.1
-pkgrel=4
+pkgrel=5
 pkgdesc="Types for representing a structured document"
 url="http://johnmacfarlane.net/pandoc";
 license=("custom:BSD3")


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

2016-03-08 Thread Antonio Rojas
Date: Wednesday, March 9, 2016 @ 08:54:08
  Author: arojas
Revision: 261239

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

Added:
  libkface/repos/staging-i686/
  libkface/repos/staging-i686/PKGBUILD
(from rev 261238, libkface/trunk/PKGBUILD)
  libkface/repos/staging-i686/libkface.install
(from rev 261238, libkface/trunk/libkface.install)
  libkface/repos/staging-x86_64/
  libkface/repos/staging-x86_64/PKGBUILD
(from rev 261238, libkface/trunk/PKGBUILD)
  libkface/repos/staging-x86_64/libkface.install
(from rev 261238, libkface/trunk/libkface.install)

-+
 staging-i686/PKGBUILD   |   44 ++
 staging-i686/libkface.install   |   11 +
 staging-x86_64/PKGBUILD |   44 ++
 staging-x86_64/libkface.install |   11 +
 4 files changed, 110 insertions(+)

Copied: libkface/repos/staging-i686/PKGBUILD (from rev 261238, 
libkface/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-03-09 07:54:08 UTC (rev 261239)
@@ -0,0 +1,44 @@
+# $Id: PKGBUILD 226446 2014-11-19 17:09:45Z fyan $
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=libkface
+pkgver=15.12.2
+pkgrel=2
+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";
+   
libkface-opencv3.1.patch::"https://git.reviewboard.kde.org/r/126833/diff/raw/";)
+sha1sums=('374d960f3c4072c2268547c6fe11d111d8e4bce1'
+  '35f1b3aa533b384a7a8da460209d843b7c49fa30')
+
+prepare() {
+  mkdir -p build
+
+# Fix build with opencv 3.1 https://bugs.kde.org/show_bug.cgi?id=358910
+  cd $pkgname-$pkgver
+  patch -p1 -i ../libkface-opencv3.1.patch
+}
+
+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 \
+-DENABLE_OPENCV3=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Copied: libkface/repos/staging-i686/libkface.install (from rev 261238, 
libkface/trunk/libkface.install)
===
--- staging-i686/libkface.install   (rev 0)
+++ staging-i686/libkface.install   2016-03-09 07:54:08 UTC (rev 261239)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: libkface/repos/staging-x86_64/PKGBUILD (from rev 261238, 
libkface/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2016-03-09 07:54:08 UTC (rev 261239)
@@ -0,0 +1,44 @@
+# $Id: PKGBUILD 226446 2014-11-19 17:09:45Z fyan $
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=libkface
+pkgver=15.12.2
+pkgrel=2
+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";
+   
libkface-opencv3.1.patch::"https://git.reviewboard.kde.org/r/126833/diff/raw/";)
+sha1sums=('374d960f3c4072c2268547c6fe11d111d8e4bce1'
+  '35f1b3aa533b384a7a8da460209d843b7c49fa30')
+
+prepare() {
+  mkdir -p build
+
+# Fix build with opencv 3.1 https://bugs.kde.org/show_bug.cgi?id=358910
+  cd $pkgname-$pkgver
+  patch -p1 -i ../libkface-opencv3.1.patch
+}
+
+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 \
+-DENABLE_OPENCV3=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Copied: libkface/repos/staging-x86_64/libkface.install (from rev 261238, 
libkface/trunk/libkface.install)
===
--- staging-x86_64/libkface.install (rev 0)
+++ staging-x86_64/libkface.install 2016-03-09 07:54:08 UTC (rev 261239)
@@ -0,0 +1,11 @@
+post_install()

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

2016-03-08 Thread Felix Yan
Date: Wednesday, March 9, 2016 @ 08:53:50
  Author: fyan
Revision: 165690

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

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

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

Copied: haskell-yesod-persistent/repos/community-staging-i686/PKGBUILD (from 
rev 165689, haskell-yesod-persistent/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-09 07:53:50 UTC (rev 165690)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-persistent
+pkgname=haskell-yesod-persistent
+pkgver=1.4.0.3
+pkgrel=23
+pkgdesc="Some helpers for using Persistent from Yesod."
+url="http://www.yesodweb.com/";
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-blaze-builder" "haskell-conduit" 
"haskell-persistent"
+ "haskell-persistent-template" "haskell-resource-pool" 
"haskell-resourcet"
+ "haskell-yesod-core")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+install="${pkgname}.install"
+sha256sums=('6455b79eda028e12caefc9d89808fbc611ece36ef64bab3426f90a26cacf3b5f')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: 
haskell-yesod-persistent/repos/community-staging-i686/haskell-yesod-persistent.install
 (from rev 165689, 
haskell-yesod-persistent/trunk/haskell-yesod-persistent.install)
===
--- community-staging-i686/haskell-yesod-persistent.install 
(rev 0)
+++ community-staging-i686/haskell-yesod-persistent.install 2016-03-09 
07:53:50 UTC (rev 165690)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-yesod-persistent
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-yesod-persistent/repos/community-staging-x86_64/PKGBUILD (from 
rev 165689, haskell-yesod-persistent/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-09 07:53:50 UTC (rev 165690)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-persistent
+pkgname=haskell-yesod-persistent
+pkgver=1.4.0.3
+pkgrel=23
+pkgdesc="Some helpers for using Persistent from Yesod."
+url="h

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

2016-03-08 Thread Felix Yan
Date: Wednesday, March 9, 2016 @ 08:53:25
  Author: fyan
Revision: 165689

upgpkg: haskell-yesod-persistent 1.4.0.3-23

rebuild with persistent-2.2.4.1, path-0.5.7, persistent-sqlite-2.2.1, 
persistent-template-2.1.6, scientific-0.3.4.5

Modified:
  haskell-yesod-persistent/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-09 07:47:17 UTC (rev 165688)
+++ PKGBUILD2016-03-09 07:53:25 UTC (rev 165689)
@@ -5,7 +5,7 @@
 _hkgname=yesod-persistent
 pkgname=haskell-yesod-persistent
 pkgver=1.4.0.3
-pkgrel=22
+pkgrel=23
 pkgdesc="Some helpers for using Persistent from Yesod."
 url="http://www.yesodweb.com/";
 license=("MIT")


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

2016-03-08 Thread Antonio Rojas
Date: Wednesday, March 9, 2016 @ 08:53:36
  Author: arojas
Revision: 261238

opencv 3.1 rebuild

Modified:
  libkface/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-09 07:43:09 UTC (rev 261237)
+++ PKGBUILD2016-03-09 07:53:36 UTC (rev 261238)
@@ -5,7 +5,7 @@
 
 pkgname=libkface
 pkgver=15.12.2
-pkgrel=1
+pkgrel=2
 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)
@@ -13,11 +13,17 @@
 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=('374d960f3c4072c2268547c6fe11d111d8e4bce1')
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz";
+   
libkface-opencv3.1.patch::"https://git.reviewboard.kde.org/r/126833/diff/raw/";)
+sha1sums=('374d960f3c4072c2268547c6fe11d111d8e4bce1'
+  '35f1b3aa533b384a7a8da460209d843b7c49fa30')
 
 prepare() {
   mkdir -p build
+
+# Fix build with opencv 3.1 https://bugs.kde.org/show_bug.cgi?id=358910
+  cd $pkgname-$pkgver
+  patch -p1 -i ../libkface-opencv3.1.patch
 }
 
 build() {
@@ -27,7 +33,8 @@
 -DBUILD_TESTING=OFF \
 -DCMAKE_INSTALL_PREFIX=/usr \
 -DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DENABLE_OPENCV3=ON
   make
 }
 


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

2016-03-08 Thread Felix Yan
Date: Wednesday, March 9, 2016 @ 08:47:17
  Author: fyan
Revision: 165688

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

Added:
  haskell-email-validate/repos/community-staging-i686/
  haskell-email-validate/repos/community-staging-i686/PKGBUILD
(from rev 165687, haskell-email-validate/trunk/PKGBUILD)
  
haskell-email-validate/repos/community-staging-i686/haskell-email-validate.install
(from rev 165687, 
haskell-email-validate/trunk/haskell-email-validate.install)
  haskell-email-validate/repos/community-staging-x86_64/
  haskell-email-validate/repos/community-staging-x86_64/PKGBUILD
(from rev 165687, haskell-email-validate/trunk/PKGBUILD)
  
haskell-email-validate/repos/community-staging-x86_64/haskell-email-validate.install
(from rev 165687, 
haskell-email-validate/trunk/haskell-email-validate.install)

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

Copied: haskell-email-validate/repos/community-staging-i686/PKGBUILD (from rev 
165687, haskell-email-validate/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-09 07:47:17 UTC (rev 165688)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=email-validate
+pkgname=haskell-email-validate
+pkgver=2.2.0
+pkgrel=3
+pkgdesc="Validating an email address string against RFC 5322"
+url="http://porg.es/blog/email-address-validation-simpler-faster-more-correct";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-attoparsec")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+install="${pkgname}.install"
+sha256sums=('aa7fd3f02c015bbc4ae67c2f3586f16c757d54a8cf09f7a04e70045828d9cb69')
+
+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-email-validate/repos/community-staging-i686/haskell-email-validate.install
 (from rev 165687, haskell-email-validate/trunk/haskell-email-validate.install)
===
--- community-staging-i686/haskell-email-validate.install   
(rev 0)
+++ community-staging-i686/haskell-email-validate.install   2016-03-09 
07:47:17 UTC (rev 165688)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-email-validate
+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-email-validate/repos/community-staging-x86_64/PKGBUILD (from 
rev 165687, haskell-email-validate/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-09 07:47:17 UTC (rev 165688)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=email-validate
+pkgname=haskell-email-validate
+pkgver=2.2.0
+pkgrel=3
+pkgdesc="Validating an email address string against RFC 5322"
+url="http://porg.es/blog/email-address-validation-simpler-faster-more-correct";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell

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

2016-03-08 Thread Felix Yan
Date: Wednesday, March 9, 2016 @ 08:46:52
  Author: fyan
Revision: 165687

upgpkg: haskell-email-validate 2.2.0-3

rebuild with persistent-2.2.4.1, path-0.5.7, persistent-sqlite-2.2.1, 
persistent-template-2.1.6, scientific-0.3.4.5

Modified:
  haskell-email-validate/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-09 07:45:19 UTC (rev 165686)
+++ PKGBUILD2016-03-09 07:46:52 UTC (rev 165687)
@@ -5,7 +5,7 @@
 _hkgname=email-validate
 pkgname=haskell-email-validate
 pkgver=2.2.0
-pkgrel=2
+pkgrel=3
 pkgdesc="Validating an email address string against RFC 5322"
 url="http://porg.es/blog/email-address-validation-simpler-faster-more-correct";
 license=("custom:BSD3")


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

2016-03-08 Thread Felix Yan
Date: Wednesday, March 9, 2016 @ 08:45:19
  Author: fyan
Revision: 165686

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

Added:
  haskell-xss-sanitize/repos/community-staging-i686/
  haskell-xss-sanitize/repos/community-staging-i686/PKGBUILD
(from rev 165685, haskell-xss-sanitize/trunk/PKGBUILD)
  haskell-xss-sanitize/repos/community-staging-i686/haskell-xss-sanitize.install
(from rev 165685, haskell-xss-sanitize/trunk/haskell-xss-sanitize.install)
  haskell-xss-sanitize/repos/community-staging-x86_64/
  haskell-xss-sanitize/repos/community-staging-x86_64/PKGBUILD
(from rev 165685, haskell-xss-sanitize/trunk/PKGBUILD)
  
haskell-xss-sanitize/repos/community-staging-x86_64/haskell-xss-sanitize.install
(from rev 165685, haskell-xss-sanitize/trunk/haskell-xss-sanitize.install)

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

Copied: haskell-xss-sanitize/repos/community-staging-i686/PKGBUILD (from rev 
165685, haskell-xss-sanitize/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-09 07:45:19 UTC (rev 165686)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=xss-sanitize
+pkgname=haskell-xss-sanitize
+pkgver=0.3.5.6
+pkgrel=3
+pkgdesc="sanitize untrusted HTML to prevent XSS attacks"
+url="http://github.com/yesodweb/haskell-xss-sanitize";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-attoparsec" "haskell-css-text" 
"haskell-network-uri"
+ "haskell-tagsoup" "haskell-text" "haskell-utf8-string")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+install="${pkgname}.install"
+sha256sums=('008a20e0266f7e4255cb6009336bc25cfe74eda3314dff4f0da0bbd584cd58c8')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-fnetwork-uri
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: 
haskell-xss-sanitize/repos/community-staging-i686/haskell-xss-sanitize.install 
(from rev 165685, haskell-xss-sanitize/trunk/haskell-xss-sanitize.install)
===
--- community-staging-i686/haskell-xss-sanitize.install 
(rev 0)
+++ community-staging-i686/haskell-xss-sanitize.install 2016-03-09 07:45:19 UTC 
(rev 165686)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-xss-sanitize
+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-xss-sanitize/repos/community-staging-x86_64/PKGBUILD (from rev 
165685, haskell-xss-sanitize/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-09 07:45:19 UTC (rev 165686)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=xss-sanitize
+pkgname=haskell-xss-sanitize
+pkgver=0.3.5.6
+pkgrel=3
+pkgdesc="sanitize untrusted HTML to prevent XSS attacks"
+url="http://github.com/yesodweb/haskell-xss-sanitize";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskel

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

2016-03-08 Thread Felix Yan
Date: Wednesday, March 9, 2016 @ 08:44:39
  Author: fyan
Revision: 165684

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

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

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

Copied: haskell-tagstream-conduit/repos/community-staging-i686/PKGBUILD (from 
rev 165683, haskell-tagstream-conduit/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-09 07:44:39 UTC (rev 165684)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=tagstream-conduit
+pkgname=haskell-tagstream-conduit
+pkgver=0.5.5.3
+pkgrel=15
+pkgdesc="Streamlined html tag parser"
+url="http://github.com/yihuang/tagstream-conduit";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-attoparsec" "haskell-blaze-builder"
+ "haskell-case-insensitive" "haskell-conduit" "haskell-conduit-extra"
+ "haskell-data-default" "haskell-resourcet" "haskell-text"
+ "haskell-xml-conduit")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+install="${pkgname}.install"
+sha256sums=('b296e8f0ba18ae951b5bb3fc2d9d964954666df61ea9363d667f251af17134ab')
+
+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-tagstream-conduit/repos/community-staging-i686/haskell-tagstream-conduit.install
 (from rev 165683, 
haskell-tagstream-conduit/trunk/haskell-tagstream-conduit.install)
===
--- community-staging-i686/haskell-tagstream-conduit.install
(rev 0)
+++ community-staging-i686/haskell-tagstream-conduit.install2016-03-09 
07:44:39 UTC (rev 165684)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-tagstream-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-tagstream-conduit/repos/community-staging-x86_64/PKGBUILD (from 
rev 165683, haskell-tagstream-conduit/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-09 07:44:39 UTC (rev 165684)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=tagstream-conduit
+pkgname=haskell-tagstream-conduit
+pkgver=

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

2016-03-08 Thread Felix Yan
Date: Wednesday, March 9, 2016 @ 08:44:15
  Author: fyan
Revision: 165683

upgpkg: haskell-tagstream-conduit 0.5.5.3-15

rebuild with persistent-2.2.4.1, path-0.5.7, persistent-sqlite-2.2.1, 
persistent-template-2.1.6, scientific-0.3.4.5

Modified:
  haskell-tagstream-conduit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-09 07:02:12 UTC (rev 165682)
+++ PKGBUILD2016-03-09 07:44:15 UTC (rev 165683)
@@ -5,7 +5,7 @@
 _hkgname=tagstream-conduit
 pkgname=haskell-tagstream-conduit
 pkgver=0.5.5.3
-pkgrel=14
+pkgrel=15
 pkgdesc="Streamlined html tag parser"
 url="http://github.com/yihuang/tagstream-conduit";
 license=("custom:BSD3")


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

2016-03-08 Thread Felix Yan
Date: Wednesday, March 9, 2016 @ 08:44:54
  Author: fyan
Revision: 165685

upgpkg: haskell-xss-sanitize 0.3.5.6-3

rebuild with persistent-2.2.4.1, path-0.5.7, persistent-sqlite-2.2.1, 
persistent-template-2.1.6, scientific-0.3.4.5

Modified:
  haskell-xss-sanitize/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-09 07:44:39 UTC (rev 165684)
+++ PKGBUILD2016-03-09 07:44:54 UTC (rev 165685)
@@ -5,7 +5,7 @@
 _hkgname=xss-sanitize
 pkgname=haskell-xss-sanitize
 pkgver=0.3.5.6
-pkgrel=2
+pkgrel=3
 pkgdesc="sanitize untrusted HTML to prevent XSS attacks"
 url="http://github.com/yesodweb/haskell-xss-sanitize";
 license=("custom:BSD3")


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

2016-03-08 Thread Bartłomiej Piotrowski
Date: Wednesday, March 9, 2016 @ 08:43:09
  Author: bpiotrowski
Revision: 261237

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

Added:
  opencv/repos/staging-i686/PKGBUILD
(from rev 261236, opencv/trunk/PKGBUILD)
  opencv/repos/staging-x86_64/PKGBUILD
(from rev 261236, opencv/trunk/PKGBUILD)
Deleted:
  opencv/repos/staging-i686/PKGBUILD
  opencv/repos/staging-i686/opencv-ffmpeg3.patch
  opencv/repos/staging-x86_64/PKGBUILD
  opencv/repos/staging-x86_64/opencv-ffmpeg3.patch

-+
 /PKGBUILD   |  184 
 staging-i686/PKGBUILD   |   89 -
 staging-i686/opencv-ffmpeg3.patch   |  217 --
 staging-x86_64/PKGBUILD |   89 -
 staging-x86_64/opencv-ffmpeg3.patch |  217 --
 5 files changed, 184 insertions(+), 612 deletions(-)

Deleted: staging-i686/PKGBUILD
===
--- staging-i686/PKGBUILD   2016-03-09 07:42:55 UTC (rev 261236)
+++ staging-i686/PKGBUILD   2016-03-09 07:43:09 UTC (rev 261237)
@@ -1,89 +0,0 @@
-# $Id$
-# Maintainer: Ray Rashif 
-# Contributor: Tobias Powalowski 
-
-pkgbase=opencv
-pkgname=('opencv' 'opencv-samples')
-pkgver=3.1.0
-pkgrel=1
-pkgdesc="Open Source Computer Vision Library"
-arch=('i686' 'x86_64')
-license=('BSD')
-url="http://opencv.org/";
-depends=('intel-tbb' 'openexr' 'xine-lib' 'libdc1394' 'gtkglext')
-makedepends=('cmake' 'python-numpy' 'python2-numpy' 'mesa' 'eigen')
-optdepends=('opencv-samples'
-'eigen'
-'libcl: For coding with OpenCL'
-'python-numpy: Python 3 interface'
-'python2-numpy: Python 2 interface')
-#source=("http://downloads.sourceforge.net/opencvlibrary/$pkgname-$pkgver.zip";)
-source=("$pkgbase-$pkgver::https://github.com/Itseez/opencv/archive/$pkgver.zip";)
-md5sums=('6082ee2124d4066581a7386972bfd52a')
-
-_cmakeopts=('-D WITH_OPENCL=ON'
-'-D WITH_OPENGL=ON'
-'-D WITH_TBB=ON'
-'-D WITH_XINE=ON'
-'-D WITH_GSTREAMER=OFF'
-'-D BUILD_WITH_DEBUG_INFO=OFF'
-'-D BUILD_TESTS=OFF'
-'-D BUILD_PERF_TESTS=OFF'
-'-D BUILD_EXAMPLES=ON'
-'-D INSTALL_C_EXAMPLES=ON'
-'-D INSTALL_PYTHON_EXAMPLES=ON'
-'-D CMAKE_BUILD_TYPE=Release'
-'-D CMAKE_INSTALL_PREFIX=/usr'
-'-D CMAKE_SKIP_RPATH=ON'
-'-D BUILD_NEW_PYTHON_SUPPORT=ON')
-
-# SSE only available from Pentium 3 onwards (i686 is way older)
-[[ "$CARCH" = 'i686' ]] && \
-  _cmakeopts+=('-D ENABLE_SSE=OFF'
-   '-D ENABLE_SSE2=OFF'
-   '-D ENABLE_SSE3=OFF')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  cmake ${_cmakeopts[@]} .
-
-  make
-}
-
-package_opencv() {
-  options=('staticlibs')
-
-  cd "$srcdir/$pkgname-$pkgver"
-
-  make DESTDIR="$pkgdir" install
-
-  # install license file
-  install -Dm644 "$srcdir/$pkgname-$pkgver/LICENSE" \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-
-  cd "$pkgdir/usr/share"
-
-  # separate samples package; also be -R friendly
-  if [[ -d OpenCV/samples ]]; then
-mv OpenCV/samples "$srcdir/$pkgname-samples"
-mv OpenCV $pkgname # otherwise folder naming is inconsistent
-  elif [[ ! -d OpenCV ]]; then
-warning "Directory naming issue; samples package may not be built!"
-  fi
-}
-
-package_opencv-samples() {
-  pkgdesc+=" (samples)"
-  depends=("opencv=$pkgver") # sample codes change with lib/API
-  unset optdepends
-
-  mkdir -p "$pkgdir/usr/share/opencv"
-  cp -r "$srcdir/opencv-samples" "$pkgdir/usr/share/opencv/samples"
-
-  # install license file
-  install -Dm644 "$srcdir/opencv-$pkgver/LICENSE" \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: opencv/repos/staging-i686/PKGBUILD (from rev 261236, 
opencv/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-03-09 07:43:09 UTC (rev 261237)
@@ -0,0 +1,92 @@
+# $Id$
+# Maintainer: Ray Rashif 
+# Contributor: Tobias Powalowski 
+
+pkgbase=opencv
+pkgname=('opencv' 'opencv-samples')
+pkgver=3.1.0
+pkgrel=2
+pkgdesc="Open Source Computer Vision Library"
+arch=('i686' 'x86_64')
+license=('BSD')
+url="http://opencv.org/";
+depends=('intel-tbb' 'openexr' 'xine-lib' 'libdc1394' 'gtkglext')
+makedepends=('cmake' 'python-numpy' 'python2-numpy' 'mesa' 'eigen')
+optdepends=('opencv-samples'
+'eigen'
+'libcl: For coding with OpenCL'
+'python-numpy: Python 3 interface'
+'python2-numpy: Python 2 interface')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/Itseez/opencv/archive/$pkgver.zip";
+
"opencv_contrib-$pkgver.tar.gz::https://github.com/Itseez/opencv_contrib/archive/$pkgver.tar.gz";)
+md5sums=('608

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

2016-03-08 Thread Bartłomiej Piotrowski
Date: Wednesday, March 9, 2016 @ 08:42:55
  Author: bpiotrowski
Revision: 261236

upgpkg: opencv 3.1.0-2

bring back contrib modules

Modified:
  opencv/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-08 23:05:16 UTC (rev 261235)
+++ PKGBUILD2016-03-09 07:42:55 UTC (rev 261236)
@@ -5,7 +5,7 @@
 pkgbase=opencv
 pkgname=('opencv' 'opencv-samples')
 pkgver=3.1.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Open Source Computer Vision Library"
 arch=('i686' 'x86_64')
 license=('BSD')
@@ -17,9 +17,10 @@
 'libcl: For coding with OpenCL'
 'python-numpy: Python 3 interface'
 'python2-numpy: Python 2 interface')
-#source=("http://downloads.sourceforge.net/opencvlibrary/$pkgname-$pkgver.zip";)
-source=("$pkgbase-$pkgver::https://github.com/Itseez/opencv/archive/$pkgver.zip";)
-md5sums=('6082ee2124d4066581a7386972bfd52a')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/Itseez/opencv/archive/$pkgver.zip";
+
"opencv_contrib-$pkgver.tar.gz::https://github.com/Itseez/opencv_contrib/archive/$pkgver.tar.gz";)
+md5sums=('6082ee2124d4066581a7386972bfd52a'
+ 'a822839ad3ab79ff837c16785ea9dd10')
 
 _cmakeopts=('-D WITH_OPENCL=ON'
 '-D WITH_OPENGL=ON'
@@ -46,7 +47,9 @@
 build() {
   cd "$srcdir/$pkgname-$pkgver"
 
-  cmake ${_cmakeopts[@]} .
+  cmake ${_cmakeopts[@]} \
+-DOPENCV_EXTRA_MODULES_PATH="$srcdir/opencv_contrib-$pkgver/modules" \
+.
 
   make
 }


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

2016-03-08 Thread Felix Yan
Date: Wednesday, March 9, 2016 @ 08:02:12
  Author: fyan
Revision: 165682

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

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

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

Copied: haskell-xml-conduit/repos/community-staging-i686/PKGBUILD (from rev 
165681, haskell-xml-conduit/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-09 07:02:12 UTC (rev 165682)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=xml-conduit
+pkgname=haskell-xml-conduit
+pkgver=1.3.4
+pkgrel=3
+pkgdesc="Pure-Haskell utilities for dealing with XML with the conduit package."
+url="http://github.com/snoyberg/xml";
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-attoparsec" "haskell-blaze-builder" 
"haskell-text"
+ "haskell-blaze-markup" "haskell-conduit" "haskell-conduit-extra"
+ "haskell-data-default" "haskell-monad-control" "haskell-resourcet"
+ "haskell-blaze-html" "haskell-xml-types")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+install="${pkgname}.install"
+sha256sums=('1613ad696d4385a74f646e752ecd3ef576350427961e638d00fa58e01215f46d')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: 
haskell-xml-conduit/repos/community-staging-i686/haskell-xml-conduit.install 
(from rev 165681, haskell-xml-conduit/trunk/haskell-xml-conduit.install)
===
--- community-staging-i686/haskell-xml-conduit.install  
(rev 0)
+++ community-staging-i686/haskell-xml-conduit.install  2016-03-09 07:02:12 UTC 
(rev 165682)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-xml-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-xml-conduit/repos/community-staging-x86_64/PKGBUILD (from rev 
165681, haskell-xml-conduit/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-09 07:02:12 UTC (rev 165682)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=xml-conduit
+pkgname=haskell-xml-conduit
+pkgver=1.3.4
+pkgrel=3
+pkgdesc="Pure-Haskell utilities for dealing with XML with the conduit package."
+url="http://github.com/snoyberg/xml";
+li

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

2016-03-08 Thread Felix Yan
Date: Wednesday, March 9, 2016 @ 08:01:33
  Author: fyan
Revision: 165681

upgpkg: haskell-xml-conduit 1.3.4-3

rebuild with persistent-2.2.4.1, path-0.5.7, persistent-sqlite-2.2.1, 
persistent-template-2.1.6, scientific-0.3.4.5

Modified:
  haskell-xml-conduit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-09 06:56:57 UTC (rev 165680)
+++ PKGBUILD2016-03-09 07:01:33 UTC (rev 165681)
@@ -5,7 +5,7 @@
 _hkgname=xml-conduit
 pkgname=haskell-xml-conduit
 pkgver=1.3.4
-pkgrel=2
+pkgrel=3
 pkgdesc="Pure-Haskell utilities for dealing with XML with the conduit package."
 url="http://github.com/snoyberg/xml";
 license=("MIT")


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

2016-03-08 Thread Felix Yan
Date: Wednesday, March 9, 2016 @ 07:56:57
  Author: fyan
Revision: 165680

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

Added:
  haskell-css-text/repos/community-staging-i686/
  haskell-css-text/repos/community-staging-i686/PKGBUILD
(from rev 165679, haskell-css-text/trunk/PKGBUILD)
  haskell-css-text/repos/community-staging-i686/haskell-css-text.install
(from rev 165679, haskell-css-text/trunk/haskell-css-text.install)
  haskell-css-text/repos/community-staging-x86_64/
  haskell-css-text/repos/community-staging-x86_64/PKGBUILD
(from rev 165679, haskell-css-text/trunk/PKGBUILD)
  haskell-css-text/repos/community-staging-x86_64/haskell-css-text.install
(from rev 165679, haskell-css-text/trunk/haskell-css-text.install)

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

Copied: haskell-css-text/repos/community-staging-i686/PKGBUILD (from rev 
165679, haskell-css-text/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-09 06:56:57 UTC (rev 165680)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=css-text
+pkgname=haskell-css-text
+pkgver=0.1.2.1
+pkgrel=3
+pkgdesc="CSS parser and renderer."
+url="http://www.yesodweb.com/";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-attoparsec" "haskell-text")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+install="${pkgname}.install"
+sha256sums=('dc0291da7ec756e4dda9dfadef303c78750eca63d07a5ad21dc4a3079cb021f6')
+
+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-css-text/repos/community-staging-i686/haskell-css-text.install 
(from rev 165679, haskell-css-text/trunk/haskell-css-text.install)
===
--- community-staging-i686/haskell-css-text.install 
(rev 0)
+++ community-staging-i686/haskell-css-text.install 2016-03-09 06:56:57 UTC 
(rev 165680)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-css-text
+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-css-text/repos/community-staging-x86_64/PKGBUILD (from rev 
165679, haskell-css-text/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-09 06:56:57 UTC (rev 165680)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=css-text
+pkgname=haskell-css-text
+pkgver=0.1.2.1
+pkgrel=3
+pkgdesc="CSS parser and renderer."
+url="http://www.yesodweb.com/";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-attoparsec" "haskell-text")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+install="${pkgname}.install"
+sha256sums=('dc0291da7ec756e4dda9dfadef303c78750eca63d07a5ad21dc4a3079cb021f6')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+

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

2016-03-08 Thread Felix Yan
Date: Wednesday, March 9, 2016 @ 07:56:32
  Author: fyan
Revision: 165679

upgpkg: haskell-css-text 0.1.2.1-3

rebuild with persistent-2.2.4.1, path-0.5.7, persistent-sqlite-2.2.1, 
persistent-template-2.1.6, scientific-0.3.4.5

Modified:
  haskell-css-text/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-09 06:54:28 UTC (rev 165678)
+++ PKGBUILD2016-03-09 06:56:32 UTC (rev 165679)
@@ -5,7 +5,7 @@
 _hkgname=css-text
 pkgname=haskell-css-text
 pkgver=0.1.2.1
-pkgrel=2
+pkgrel=3
 pkgdesc="CSS parser and renderer."
 url="http://www.yesodweb.com/";
 license=("custom:BSD3")


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

2016-03-08 Thread Felix Yan
Date: Wednesday, March 9, 2016 @ 07:54:03
  Author: fyan
Revision: 165677

upgpkg: haskell-persistent-template 2.1.6-1

rebuild with persistent-2.2.4.1, path-0.5.7, persistent-sqlite-2.2.1, 
persistent-template-2.1.6, scientific-0.3.4.5

Modified:
  haskell-persistent-template/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-09 06:51:43 UTC (rev 165676)
+++ PKGBUILD2016-03-09 06:54:03 UTC (rev 165677)
@@ -4,8 +4,8 @@
 
 _hkgname=persistent-template
 pkgname=haskell-persistent-template
-pkgver=2.1.5
-pkgrel=19
+pkgver=2.1.6
+pkgrel=1
 pkgdesc="Type-safe, non-relational, multi-backend persistence"
 url="http://www.yesodweb.com/book/persistent";
 license=("MIT")
@@ -17,13 +17,8 @@
 options=('staticlibs')
 
source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
 install="${pkgname}.install"
-sha256sums=('d732a0e8114dae29874f3536592effc1626aea15ebef47f3355a4b426020acd1')
+sha256sums=('818a89a082bec8e812c69d2e5069468f61c23d769456736318836cbffac56653')
 
-prepare() {
-sed -e 's/aeson>= 0.7   && < 0.11/aeson
>= 0.7   \&\& < 0.12/' \
--i ${_hkgname}-${pkgver}/${_hkgname}.cabal
-}
-
 build() {
 cd "${srcdir}/${_hkgname}-${pkgver}"
 


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

2016-03-08 Thread Felix Yan
Date: Wednesday, March 9, 2016 @ 07:54:28
  Author: fyan
Revision: 165678

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

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

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

Copied: haskell-persistent-template/repos/community-staging-i686/PKGBUILD (from 
rev 165677, haskell-persistent-template/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-09 06:54:28 UTC (rev 165678)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=persistent-template
+pkgname=haskell-persistent-template
+pkgver=2.1.6
+pkgrel=1
+pkgdesc="Type-safe, non-relational, multi-backend persistence"
+url="http://www.yesodweb.com/book/persistent";
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-aeson" "haskell-aeson-compat" 
"haskell-http-api-data"
+ "haskell-monad-control" "haskell-monad-logger" "haskell-path-pieces"
+ "haskell-persistent" "haskell-tagged" "haskell-text"
+ "haskell-unordered-containers")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+install="${pkgname}.install"
+sha256sums=('818a89a082bec8e812c69d2e5069468f61c23d769456736318836cbffac56653')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: 
haskell-persistent-template/repos/community-staging-i686/haskell-persistent-template.install
 (from rev 165677, 
haskell-persistent-template/trunk/haskell-persistent-template.install)
===
--- community-staging-i686/haskell-persistent-template.install  
(rev 0)
+++ community-staging-i686/haskell-persistent-template.install  2016-03-09 
06:54:28 UTC (rev 165678)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-persistent-template
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-persistent-template/repos/community-staging-x86_64/PKGBUILD 
(from rev 165677, haskell-persistent-template/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-09 06:54:28 UTC (rev 165678)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: A

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

2016-03-08 Thread Felix Yan
Date: Wednesday, March 9, 2016 @ 07:51:43
  Author: fyan
Revision: 165676

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

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

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

Copied: haskell-yesod-core/repos/community-staging-i686/PKGBUILD (from rev 
165675, haskell-yesod-core/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-09 06:51:43 UTC (rev 165676)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-core
+pkgname=haskell-yesod-core
+pkgver=1.4.19
+pkgrel=16
+pkgdesc="Creation of type-safe, RESTful web applications."
+url="http://www.yesodweb.com/";
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-aeson" "haskell-auto-update" 
"haskell-blaze-builder"
+ "haskell-blaze-html" "haskell-blaze-markup" "haskell-byteable"
+ "haskell-case-insensitive" "haskell-cereal" "haskell-clientsession"
+ "haskell-conduit" "haskell-conduit-extra" "haskell-cookie"
+ "haskell-data-default" "haskell-exceptions" "haskell-fast-logger"
+ "haskell-http-types" "haskell-lifted-base" "haskell-monad-control"
+ "haskell-monad-logger" "haskell-mtl" "haskell-mwc-random"
+ "haskell-old-locale" "haskell-parsec" "haskell-path-pieces"
+ "haskell-primitive" "haskell-random" "haskell-resourcet" 
"haskell-safe"
+ "haskell-semigroups" "haskell-shakespeare" "haskell-text"
+ "haskell-transformers-base" "haskell-unix-compat"
+ "haskell-unordered-containers" "haskell-vector" "haskell-wai"
+ "haskell-wai-extra" "haskell-wai-logger" "haskell-warp" 
"haskell-word8")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+install="${pkgname}.install"
+sha256sums=('8425c1df703521b020b476035f572e953ac356ce6f5e35c424b29f0d5ff76ded')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: 
haskell-yesod-core/repos/community-staging-i686/haskell-yesod-core.install 
(from rev 165675, haskell-yesod-core/trunk/haskell-yesod-core.install)
===
--- community-staging-i686/haskell-yesod-core.install   
(rev 0)
+++ community-staging-i686/haskell-yesod-core.install   2016-03-09 06:51:43 UTC 
(rev 165676)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-yesod-core
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

C

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

2016-03-08 Thread Felix Yan
Date: Wednesday, March 9, 2016 @ 07:51:00
  Author: fyan
Revision: 165675

upgpkg: haskell-yesod-core 1.4.19-16

rebuild with persistent-2.2.4.1, path-0.5.7, persistent-sqlite-2.2.1, 
persistent-template-2.1.6, scientific-0.3.4.5

Modified:
  haskell-yesod-core/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-09 06:39:11 UTC (rev 165674)
+++ PKGBUILD2016-03-09 06:51:00 UTC (rev 165675)
@@ -5,7 +5,7 @@
 _hkgname=yesod-core
 pkgname=haskell-yesod-core
 pkgver=1.4.19
-pkgrel=15
+pkgrel=16
 pkgdesc="Creation of type-safe, RESTful web applications."
 url="http://www.yesodweb.com/";
 license=("MIT")


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

2016-03-08 Thread Felix Yan
Date: Wednesday, March 9, 2016 @ 07:39:11
  Author: fyan
Revision: 165674

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

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

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

Copied: haskell-wai-extra/repos/community-staging-i686/PKGBUILD (from rev 
165673, haskell-wai-extra/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-09 06:39:11 UTC (rev 165674)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=wai-extra
+pkgname=haskell-wai-extra
+pkgver=3.0.14.1
+pkgrel=3
+pkgdesc="Provides some basic WAI handlers and middleware."
+url="http://github.com/yesodweb/wai";
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-aeson" "haskell-ansi-terminal" 
"haskell-base64-bytestring"
+ "haskell-blaze-builder" "haskell-case-insensitive" "haskell-cookie"
+ "haskell-data-default-class" "haskell-fast-logger" 
"haskell-http-types"
+ "haskell-iproute" "haskell-lifted-base" "haskell-network" 
"haskell-old-locale"
+ "haskell-resourcet" "haskell-streaming-commons" "haskell-stringsearch"
+ "haskell-text" "haskell-unix-compat" "haskell-vault" "haskell-void" 
"haskell-wai"
+ "haskell-wai-logger" "haskell-word8" "haskell-zlib")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+install="${pkgname}.install"
+sha256sums=('3c76f41acf9a4351ebf51908acd3febbef1cf66481933e1e34dc99642d6054dd')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: 
haskell-wai-extra/repos/community-staging-i686/haskell-wai-extra.install (from 
rev 165673, haskell-wai-extra/trunk/haskell-wai-extra.install)
===
--- community-staging-i686/haskell-wai-extra.install
(rev 0)
+++ community-staging-i686/haskell-wai-extra.install2016-03-09 06:39:11 UTC 
(rev 165674)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-wai-extra
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-wai-extra/repos/community-staging-x86_64/PKGBUILD (from rev 
165673, haskell-wai-extra/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-09 06:39:11 UTC (rev 165674)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor:

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

2016-03-08 Thread Felix Yan
Date: Wednesday, March 9, 2016 @ 07:38:46
  Author: fyan
Revision: 165673

upgpkg: haskell-wai-extra 3.0.14.1-3

rebuild with persistent-2.2.4.1, path-0.5.7, persistent-sqlite-2.2.1, 
persistent-template-2.1.6, scientific-0.3.4.5

Modified:
  haskell-wai-extra/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-09 06:28:33 UTC (rev 165672)
+++ PKGBUILD2016-03-09 06:38:46 UTC (rev 165673)
@@ -5,7 +5,7 @@
 _hkgname=wai-extra
 pkgname=haskell-wai-extra
 pkgver=3.0.14.1
-pkgrel=2
+pkgrel=3
 pkgdesc="Provides some basic WAI handlers and middleware."
 url="http://github.com/yesodweb/wai";
 license=("MIT")


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

2016-03-08 Thread Felix Yan
Date: Wednesday, March 9, 2016 @ 07:28:33
  Author: fyan
Revision: 165672

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

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

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

Copied: haskell-shakespeare/repos/community-staging-i686/PKGBUILD (from rev 
165671, haskell-shakespeare/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-09 06:28:33 UTC (rev 165672)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=shakespeare
+pkgname=haskell-shakespeare
+pkgver=2.0.7
+pkgrel=9
+pkgdesc="A toolkit for making compile-time interpolated templates"
+url="http://www.yesodweb.com/book/shakespearean-templates";
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-aeson" "haskell-blaze-html" 
"haskell-blaze-markup"
+ "haskell-exceptions" "haskell-parsec" "haskell-scientific" 
"haskell-text"
+ "haskell-unordered-containers" "haskell-vector")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+install="${pkgname}.install"
+sha256sums=('7a567d6effb68c7b39903fb1fccee54e6a1222a4746b5135da5623c406281668')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-test_roy -f-test_coffee -f-test_export
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: 
haskell-shakespeare/repos/community-staging-i686/haskell-shakespeare.install 
(from rev 165671, haskell-shakespeare/trunk/haskell-shakespeare.install)
===
--- community-staging-i686/haskell-shakespeare.install  
(rev 0)
+++ community-staging-i686/haskell-shakespeare.install  2016-03-09 06:28:33 UTC 
(rev 165672)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-shakespeare
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-shakespeare/repos/community-staging-x86_64/PKGBUILD (from rev 
165671, haskell-shakespeare/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-09 06:28:33 UTC (rev 165672)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=shakespeare
+pkgname=haskell-shakespeare
+pkgver=2.0.7
+pkgrel=9
+pkgdesc="A toolkit for making compile-time interpolated templates"
+url="http://www.yesodweb.com/book/shakespearean-

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

2016-03-08 Thread Felix Yan
Date: Wednesday, March 9, 2016 @ 07:28:09
  Author: fyan
Revision: 165671

upgpkg: haskell-shakespeare 2.0.7-9

rebuild with persistent-2.2.4.1, path-0.5.7, persistent-sqlite-2.2.1, 
persistent-template-2.1.6, scientific-0.3.4.5

Modified:
  haskell-shakespeare/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-09 05:45:08 UTC (rev 165670)
+++ PKGBUILD2016-03-09 06:28:09 UTC (rev 165671)
@@ -5,7 +5,7 @@
 _hkgname=shakespeare
 pkgname=haskell-shakespeare
 pkgver=2.0.7
-pkgrel=8
+pkgrel=9
 pkgdesc="A toolkit for making compile-time interpolated templates"
 url="http://www.yesodweb.com/book/shakespearean-templates";
 license=("MIT")


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

2016-03-08 Thread Felix Yan
Date: Wednesday, March 9, 2016 @ 06:45:08
  Author: fyan
Revision: 165670

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

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

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

Copied: haskell-warp/repos/community-staging-i686/PKGBUILD (from rev 165669, 
haskell-warp/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-09 05:45:08 UTC (rev 165670)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=warp
+pkgname=haskell-warp
+pkgver=3.2.3
+pkgrel=5
+pkgdesc="A fast, light-weight web server for WAI applications."
+url="http://github.com/yesodweb/wai";
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-auto-update" "haskell-blaze-builder"
+ "haskell-case-insensitive" "haskell-hashable" "haskell-http-date"
+ "haskell-http-types" "haskell-http2" "haskell-iproute" 
"haskell-network"
+ "haskell-simple-sendfile" "haskell-stm" "haskell-streaming-commons"
+ "haskell-text" "haskell-unix-compat" "haskell-vault" "haskell-wai"
+ "haskell-word8")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+install="${pkgname}.install"
+sha256sums=('3a218d436cd77d41a157e67721ac59892e70f09fcd39594fc4707dabec760ee8')
+
+prepare() {
+sed -i '/bytestring-builder/d' $_hkgname-$pkgver/$_hkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-warp-debug -fallow-sendfilefd -f-network-bytestring
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: haskell-warp/repos/community-staging-i686/haskell-warp.install (from 
rev 165669, haskell-warp/trunk/haskell-warp.install)
===
--- community-staging-i686/haskell-warp.install (rev 0)
+++ community-staging-i686/haskell-warp.install 2016-03-09 05:45:08 UTC (rev 
165670)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-warp
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-warp/repos/community-staging-x86_64/PKGBUILD (from rev 165669, 
haskell-warp/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-09 05:45:08 UTC (rev 165670)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=warp
+pkgname=haskell-warp
+pkgver=3.2.3
+pkgrel=5
+pkgdesc="A fast, light-weight web server for WAI applications."
+url="http://gith

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

2016-03-08 Thread Felix Yan
Date: Wednesday, March 9, 2016 @ 06:44:42
  Author: fyan
Revision: 165669

upgpkg: haskell-warp 3.2.3-5

rebuild with persistent-2.2.4.1, path-0.5.7, persistent-sqlite-2.2.1, 
persistent-template-2.1.6, scientific-0.3.4.5

Modified:
  haskell-warp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-09 05:37:57 UTC (rev 165668)
+++ PKGBUILD2016-03-09 05:44:42 UTC (rev 165669)
@@ -5,7 +5,7 @@
 _hkgname=warp
 pkgname=haskell-warp
 pkgver=3.2.3
-pkgrel=4
+pkgrel=5
 pkgdesc="A fast, light-weight web server for WAI applications."
 url="http://github.com/yesodweb/wai";
 license=("MIT")


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

2016-03-08 Thread Felix Yan
Date: Wednesday, March 9, 2016 @ 06:37:57
  Author: fyan
Revision: 165668

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

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

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

Copied: haskell-persistent/repos/community-staging-i686/PKGBUILD (from rev 
165667, haskell-persistent/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-09 05:37:57 UTC (rev 165668)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=persistent
+pkgname=haskell-persistent
+pkgver=2.2.4.1
+pkgrel=1
+pkgdesc="Type-safe, multi-backend data serialization"
+url="http://www.yesodweb.com/book/persistent";
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-aeson" "haskell-attoparsec" 
"haskell-base64-bytestring"
+ "haskell-blaze-html" "haskell-blaze-markup" "haskell-conduit" 
"haskell-exceptions"
+ "haskell-fast-logger" "haskell-http-api-data" "haskell-lifted-base"
+ "haskell-monad-control" "haskell-monad-logger" "haskell-mtl" 
"haskell-old-locale"
+ "haskell-path-pieces" "haskell-resource-pool" "haskell-resourcet" 
"haskell-scientific"
+ "haskell-silently" "haskell-tagged" "haskell-text" 
"haskell-transformers-base"
+ "haskell-unordered-containers" "haskell-vector")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+install="${pkgname}.install"
+sha256sums=('1473bdd952854d7f5fdb5896d2df07ef1ecf301c7fdb136054f49625329d50db')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-nooverlap
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: 
haskell-persistent/repos/community-staging-i686/haskell-persistent.install 
(from rev 165667, haskell-persistent/trunk/haskell-persistent.install)
===
--- community-staging-i686/haskell-persistent.install   
(rev 0)
+++ community-staging-i686/haskell-persistent.install   2016-03-09 05:37:57 UTC 
(rev 165668)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-persistent
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-persistent/repos/community-staging-x86_64/PKGBUILD (from rev 
165667, haskell-persistent/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-09 05:37:57 UTC (

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

2016-03-08 Thread Felix Yan
Date: Wednesday, March 9, 2016 @ 06:37:33
  Author: fyan
Revision: 165667

upgpkg: haskell-persistent 2.2.4.1-1

rebuild with persistent-2.2.4.1, path-0.5.7, persistent-sqlite-2.2.1, 
persistent-template-2.1.6, scientific-0.3.4.5

Modified:
  haskell-persistent/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-09 05:27:09 UTC (rev 165666)
+++ PKGBUILD2016-03-09 05:37:33 UTC (rev 165667)
@@ -4,8 +4,8 @@
 
 _hkgname=persistent
 pkgname=haskell-persistent
-pkgver=2.2.4
-pkgrel=20
+pkgver=2.2.4.1
+pkgrel=1
 pkgdesc="Type-safe, multi-backend data serialization"
 url="http://www.yesodweb.com/book/persistent";
 license=("MIT")
@@ -20,7 +20,7 @@
 options=('staticlibs')
 
source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
 install="${pkgname}.install"
-sha256sums=('ae56121abbef8ecca7aa7c62b2e77a47e583d4dded0f8e4bfe1cd6b1fea70bbe')
+sha256sums=('1473bdd952854d7f5fdb5896d2df07ef1ecf301c7fdb136054f49625329d50db')
 
 build() {
 cd "${srcdir}/${_hkgname}-${pkgver}"


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

2016-03-08 Thread Felix Yan
Date: Wednesday, March 9, 2016 @ 06:27:09
  Author: fyan
Revision: 165666

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

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

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

Copied: haskell-aeson-compat/repos/community-staging-i686/PKGBUILD (from rev 
165665, haskell-aeson-compat/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-09 05:27:09 UTC (rev 165666)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=aeson-compat
+pkgname=haskell-aeson-compat
+pkgver=0.3.1.0
+pkgrel=5
+pkgdesc="Compatibility layer for aeson"
+url="http://hackage.haskell.org/package/${_hkgname}";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-aeson" "haskell-attoparsec" 
"haskell-exceptions" "haskell-hashable"
+ "haskell-scientific" "haskell-text" "haskell-time-locale-compat" 
"haskell-unordered-containers"
+ "haskell-vector")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+install="${pkgname}.install"
+sha256sums=('9275040d031433eb0006bce8228a0828e058d547c7d07d61ab0b22154286d736')
+
+prepare() {
+# nats is an empty package in new GHC
+sed -e '/nats/d' \
+-e 's/aeson>=0.7.0.6 && <0.11.1/aeson  
  >=0.7.0.6 \&\& <0.12/' \
+-i ${_hkgname}-${pkgver}/${_hkgname}.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: 
haskell-aeson-compat/repos/community-staging-i686/haskell-aeson-compat.install 
(from rev 165665, haskell-aeson-compat/trunk/haskell-aeson-compat.install)
===
--- community-staging-i686/haskell-aeson-compat.install 
(rev 0)
+++ community-staging-i686/haskell-aeson-compat.install 2016-03-09 05:27:09 UTC 
(rev 165666)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-aeson-compat
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-aeson-compat/repos/community-staging-x86_64/PKGBUILD (from rev 
165665, haskell-aeson-compat/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-09 05:27:09 UTC (rev 165666)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Hask

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

2016-03-08 Thread Felix Yan
Date: Wednesday, March 9, 2016 @ 06:26:45
  Author: fyan
Revision: 165665

upgpkg: haskell-aeson-compat 0.3.1.0-5

rebuild with persistent-2.2.4.1, path-0.5.7, persistent-sqlite-2.2.1, 
persistent-template-2.1.6, scientific-0.3.4.5

Modified:
  haskell-aeson-compat/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-09 05:12:11 UTC (rev 165664)
+++ PKGBUILD2016-03-09 05:26:45 UTC (rev 165665)
@@ -5,7 +5,7 @@
 _hkgname=aeson-compat
 pkgname=haskell-aeson-compat
 pkgver=0.3.1.0
-pkgrel=4
+pkgrel=5
 pkgdesc="Compatibility layer for aeson"
 url="http://hackage.haskell.org/package/${_hkgname}";
 license=("custom:BSD3")


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

2016-03-08 Thread Felix Yan
Date: Wednesday, March 9, 2016 @ 06:12:11
  Author: fyan
Revision: 165664

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

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

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

Copied: haskell-http2/repos/community-staging-i686/PKGBUILD (from rev 165663, 
haskell-http2/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-09 05:12:11 UTC (rev 165664)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http2
+pkgname=haskell-http2
+pkgver=1.5.1
+pkgrel=3
+pkgdesc="HTTP/2.0 library including frames and HPACK"
+url="http://hackage.haskell.org/package/${_hkgname}";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-aeson" "haskell-aeson-pretty" "haskell-hex"
+ "haskell-psqueues" "haskell-stm" "haskell-text" "haskell-vector")
+makedepends=('haskell-word8')
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+install="${pkgname}.install"
+sha256sums=('3beba1a59d5c533ef58c715a3b54a069b24f81170e80d662e6267a2ad218eb5d')
+
+prepare() {
+sed -i '/bytestring-builder/d' $_hkgname-$pkgver/$_hkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-devel
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: haskell-http2/repos/community-staging-i686/haskell-http2.install (from 
rev 165663, haskell-http2/trunk/haskell-http2.install)
===
--- community-staging-i686/haskell-http2.install
(rev 0)
+++ community-staging-i686/haskell-http2.install2016-03-09 05:12:11 UTC 
(rev 165664)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-http2
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-http2/repos/community-staging-x86_64/PKGBUILD (from rev 165663, 
haskell-http2/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-09 05:12:11 UTC (rev 165664)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http2
+pkgname=haskell-http2
+pkgver=1.5.1
+pkgrel=3
+pkgdesc="HTTP/2.0 library including frames and HPACK"
+url="http://hackage.haskell.org/package/${_hkgname}";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-aeson" "haskell-aeson-pretty" "haskell-hex"
+ "haskell-psqueues" "haskell-stm" "haskell-text" "h

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

2016-03-08 Thread Felix Yan
Date: Wednesday, March 9, 2016 @ 06:11:47
  Author: fyan
Revision: 165663

upgpkg: haskell-http2 1.5.1-3

rebuild with persistent-2.2.4.1, path-0.5.7, persistent-sqlite-2.2.1, 
persistent-template-2.1.6, scientific-0.3.4.5

Modified:
  haskell-http2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-09 05:08:48 UTC (rev 165662)
+++ PKGBUILD2016-03-09 05:11:47 UTC (rev 165663)
@@ -5,7 +5,7 @@
 _hkgname=http2
 pkgname=haskell-http2
 pkgver=1.5.1
-pkgrel=2
+pkgrel=3
 pkgdesc="HTTP/2.0 library including frames and HPACK"
 url="http://hackage.haskell.org/package/${_hkgname}";
 license=("custom:BSD3")


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

2016-03-08 Thread Felix Yan
Date: Wednesday, March 9, 2016 @ 06:08:48
  Author: fyan
Revision: 165662

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

Added:
  haskell-monad-logger/repos/community-staging-i686/
  haskell-monad-logger/repos/community-staging-i686/PKGBUILD
(from rev 165661, haskell-monad-logger/trunk/PKGBUILD)
  haskell-monad-logger/repos/community-staging-i686/haskell-monad-logger.install
(from rev 165661, haskell-monad-logger/trunk/haskell-monad-logger.install)
  haskell-monad-logger/repos/community-staging-x86_64/
  haskell-monad-logger/repos/community-staging-x86_64/PKGBUILD
(from rev 165661, haskell-monad-logger/trunk/PKGBUILD)
  
haskell-monad-logger/repos/community-staging-x86_64/haskell-monad-logger.install
(from rev 165661, haskell-monad-logger/trunk/haskell-monad-logger.install)

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

Copied: haskell-monad-logger/repos/community-staging-i686/PKGBUILD (from rev 
165661, haskell-monad-logger/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-09 05:08:48 UTC (rev 165662)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=monad-logger
+pkgname=haskell-monad-logger
+pkgver=0.3.18
+pkgrel=7
+pkgdesc="A class of monads which can log messages."
+url="https://github.com/kazu-yamamoto/logger";
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-blaze-builder" "haskell-conduit" 
"haskell-conduit-extra"
+ "haskell-exceptions" "haskell-fast-logger" "haskell-lifted-base"
+ "haskell-monad-control" "haskell-monad-loops" "haskell-mtl" 
"haskell-resourcet"
+ "haskell-stm" "haskell-stm-chans" "haskell-text" 
"haskell-transformers-base"
+ "haskell-transformers-compat")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+install="${pkgname}.install"
+sha256sums=('81497c19d08df93e6de5914f3adf0feecf4fcd9412e3004d2b19b4bfba05497e')
+
+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 \
+-ftemplate_haskell
+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-monad-logger/repos/community-staging-i686/haskell-monad-logger.install 
(from rev 165661, haskell-monad-logger/trunk/haskell-monad-logger.install)
===
--- community-staging-i686/haskell-monad-logger.install 
(rev 0)
+++ community-staging-i686/haskell-monad-logger.install 2016-03-09 05:08:48 UTC 
(rev 165662)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-monad-logger
+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-monad-logger/repos/community-staging-x86_64/PKGBUILD (from rev 
165661, haskell-monad-logger/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-09 05:08:48 UTC (rev 165662)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=monad-logger
+pkgname=haskell-monad-logger
+pk

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

2016-03-08 Thread Felix Yan
Date: Wednesday, March 9, 2016 @ 06:08:22
  Author: fyan
Revision: 165661

upgpkg: haskell-monad-logger 0.3.18-7

rebuild with persistent-2.2.4.1, path-0.5.7, persistent-sqlite-2.2.1, 
persistent-template-2.1.6, scientific-0.3.4.5

Modified:
  haskell-monad-logger/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-09 05:05:08 UTC (rev 165660)
+++ PKGBUILD2016-03-09 05:08:22 UTC (rev 165661)
@@ -5,7 +5,7 @@
 _hkgname=monad-logger
 pkgname=haskell-monad-logger
 pkgver=0.3.18
-pkgrel=6
+pkgrel=7
 pkgdesc="A class of monads which can log messages."
 url="https://github.com/kazu-yamamoto/logger";
 license=("MIT")


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

2016-03-08 Thread Felix Yan
Date: Wednesday, March 9, 2016 @ 06:05:08
  Author: fyan
Revision: 165660

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

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

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

Copied: haskell-http-date/repos/community-staging-i686/PKGBUILD (from rev 
165659, haskell-http-date/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-09 05:05:08 UTC (rev 165660)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http-date
+pkgname=haskell-http-date
+pkgver=0.0.6.1
+pkgrel=3
+pkgdesc="HTTP Date parser/formatter"
+url="http://hackage.haskell.org/package/${_hkgname}";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-attoparsec")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+install="${pkgname}.install"
+sha256sums=('f2e106603e2b3f710f1189e478f6c20067d9a9d21a20a633fe362b3f91807636')
+
+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-date/repos/community-staging-i686/haskell-http-date.install (from 
rev 165659, haskell-http-date/trunk/haskell-http-date.install)
===
--- community-staging-i686/haskell-http-date.install
(rev 0)
+++ community-staging-i686/haskell-http-date.install2016-03-09 05:05:08 UTC 
(rev 165660)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-http-date
+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-date/repos/community-staging-x86_64/PKGBUILD (from rev 
165659, haskell-http-date/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-09 05:05:08 UTC (rev 165660)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http-date
+pkgname=haskell-http-date
+pkgver=0.0.6.1
+pkgrel=3
+pkgdesc="HTTP Date parser/formatter"
+url="http://hackage.haskell.org/package/${_hkgname}";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-attoparsec")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+install="${pkgname}.install"
+sha256sums=('f2e106603e2b3f710f1189e478f6c20067d9a9d21a20a633fe362b3f91807636')
+
+buil

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

2016-03-08 Thread Felix Yan
Date: Wednesday, March 9, 2016 @ 06:04:38
  Author: fyan
Revision: 165659

upgpkg: haskell-http-date 0.0.6.1-3

rebuild with persistent-2.2.4.1, path-0.5.7, persistent-sqlite-2.2.1, 
persistent-template-2.1.6, scientific-0.3.4.5

Modified:
  haskell-http-date/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-09 05:00:20 UTC (rev 165658)
+++ PKGBUILD2016-03-09 05:04:38 UTC (rev 165659)
@@ -5,7 +5,7 @@
 _hkgname=http-date
 pkgname=haskell-http-date
 pkgver=0.0.6.1
-pkgrel=2
+pkgrel=3
 pkgdesc="HTTP Date parser/formatter"
 url="http://hackage.haskell.org/package/${_hkgname}";
 license=("custom:BSD3")


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

2016-03-08 Thread Felix Yan
Date: Wednesday, March 9, 2016 @ 06:00:20
  Author: fyan
Revision: 165658

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

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

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

Copied: haskell-aeson-pretty/repos/community-staging-i686/PKGBUILD (from rev 
165657, haskell-aeson-pretty/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-09 05:00:20 UTC (rev 165658)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=aeson-pretty
+pkgname=haskell-aeson-pretty
+pkgver=0.7.2
+pkgrel=10
+pkgdesc="JSON pretty-printing library and command-line tool."
+url="http://github.com/informatikr/aeson-pretty";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-aeson" "haskell-attoparsec" "haskell-cmdargs"
+ "haskell-text" "haskell-unordered-containers" "haskell-vector")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+install="${pkgname}.install"
+sha256sums=('6408b8b2bcd12cf591e4b93b4d9f5143449b33a59fbd3653f328e2515040570d')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-lib-only
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: 
haskell-aeson-pretty/repos/community-staging-i686/haskell-aeson-pretty.install 
(from rev 165657, haskell-aeson-pretty/trunk/haskell-aeson-pretty.install)
===
--- community-staging-i686/haskell-aeson-pretty.install 
(rev 0)
+++ community-staging-i686/haskell-aeson-pretty.install 2016-03-09 05:00:20 UTC 
(rev 165658)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-aeson-pretty
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-aeson-pretty/repos/community-staging-x86_64/PKGBUILD (from rev 
165657, haskell-aeson-pretty/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-09 05:00:20 UTC (rev 165658)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=aeson-pretty
+pkgname=haskell-aeson-pretty
+pkgver=0.7.2
+pkgrel=10
+pkgdesc="JSON pretty-printing library and command-line tool."
+url="http://github.com/informatikr/aeson-pretty";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-ae

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

2016-03-08 Thread Felix Yan
Date: Wednesday, March 9, 2016 @ 05:59:45
  Author: fyan
Revision: 165657

upgpkg: haskell-aeson-pretty 0.7.2-10

rebuild with persistent-2.2.4.1, path-0.5.7, persistent-sqlite-2.2.1, 
persistent-template-2.1.6, scientific-0.3.4.5

Modified:
  haskell-aeson-pretty/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-09 04:59:03 UTC (rev 165656)
+++ PKGBUILD2016-03-09 04:59:45 UTC (rev 165657)
@@ -5,7 +5,7 @@
 _hkgname=aeson-pretty
 pkgname=haskell-aeson-pretty
 pkgver=0.7.2
-pkgrel=9
+pkgrel=10
 pkgdesc="JSON pretty-printing library and command-line tool."
 url="http://github.com/informatikr/aeson-pretty";
 license=("custom:BSD3")


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

2016-03-08 Thread Felix Yan
Date: Wednesday, March 9, 2016 @ 05:59:03
  Author: fyan
Revision: 165656

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

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

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

Copied: haskell-conduit-extra/repos/community-staging-i686/PKGBUILD (from rev 
165655, haskell-conduit-extra/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-09 04:59:03 UTC (rev 165656)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=conduit-extra
+pkgname=haskell-conduit-extra
+pkgver=1.1.11
+pkgrel=2
+pkgdesc="Batteries included conduit: adapters for common libraries."
+url="http://github.com/snoyberg/conduit";
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-attoparsec" "haskell-blaze-builder" 
"haskell-conduit" "haskell-exceptions"
+ "haskell-monad-control" "haskell-network" "haskell-primitive" 
"haskell-resourcet"
+ "haskell-stm" "haskell-streaming-commons" "haskell-text" 
"haskell-transformers-base")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+install="${pkgname}.install"
+sha256sums=('670009f95b16d74d1ffab5fe7f9e667249384cdddf80b8eda32413e11861ea2f')
+
+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-extra/repos/community-staging-i686/haskell-conduit-extra.install
 (from rev 165655, haskell-conduit-extra/trunk/haskell-conduit-extra.install)
===
--- community-staging-i686/haskell-conduit-extra.install
(rev 0)
+++ community-staging-i686/haskell-conduit-extra.install2016-03-09 
04:59:03 UTC (rev 165656)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-conduit-extra
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-conduit-extra/repos/community-staging-x86_64/PKGBUILD (from rev 
165655, haskell-conduit-extra/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-09 04:59:03 UTC (rev 165656)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=conduit-extra
+pkgname=haskell-conduit-extra
+pkgver=1.1.11
+pkgrel=2
+pkgdesc="Batteries included conduit: ad

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

2016-03-08 Thread Felix Yan
Date: Wednesday, March 9, 2016 @ 05:58:32
  Author: fyan
Revision: 165655

upgpkg: haskell-conduit-extra 1.1.11-2

rebuild with persistent-2.2.4.1, path-0.5.7, persistent-sqlite-2.2.1, 
persistent-template-2.1.6, scientific-0.3.4.5

Modified:
  haskell-conduit-extra/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-09 04:52:50 UTC (rev 165654)
+++ PKGBUILD2016-03-09 04:58:32 UTC (rev 165655)
@@ -5,7 +5,7 @@
 _hkgname=conduit-extra
 pkgname=haskell-conduit-extra
 pkgver=1.1.11
-pkgrel=1
+pkgrel=2
 pkgdesc="Batteries included conduit: adapters for common libraries."
 url="http://github.com/snoyberg/conduit";
 license=("MIT")


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

2016-03-08 Thread Felix Yan
Date: Wednesday, March 9, 2016 @ 05:52:50
  Author: fyan
Revision: 165654

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

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

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

Copied: haskell-aeson/repos/community-staging-i686/PKGBUILD (from rev 165653, 
haskell-aeson/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-09 04:52:50 UTC (rev 165654)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Daniel Nagy 
+# Contributor: Daniel Micay 
+
+pkgname=haskell-aeson
+_hkgname=aeson
+pkgver=0.11.1.0
+pkgrel=2
+pkgdesc="A JSON parsing and encoding library optimized for ease of use and 
high performance."
+url="https://github.com/bos/aeson";
+license=("GPL")
+arch=('i686' 'x86_64')
+makedepends=('ghc')
+depends=("ghc=7.10.3" 'haskell-attoparsec' 'haskell-fail' 'haskell-semigroups' 
'haskell-unordered-containers'
+ 'haskell-mtl' 'haskell-syb' 'haskell-tagged' 'haskell-vector' 
'haskell-dlist')
+source=("http://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-${pkgver}.tar.gz";)
+options=('staticlibs')
+install=$pkgname.install
+md5sums=('e9b168e54ad5814447cf2674f42dbe97')
+
+build() {
+  cd "$srcdir/$_hkgname-$pkgver"
+  runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+  runhaskell Setup build
+  runhaskell Setup haddock
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+  cd "$srcdir/$_hkgname-$pkgver"
+  install -Dm744 register.sh "$pkgdir/usr/share/haskell/$pkgname/register.sh"
+  install -m744 unregister.sh 
"$pkgdir/usr/share/haskell/$pkgname/unregister.sh"
+  install -dm755 "$pkgdir/usr/share/doc/ghc/html/libraries"
+  ln -s /usr/share/doc/$pkgname/html 
"$pkgdir/usr/share/doc/ghc/html/libraries/$_hkgname"
+  runhaskell Setup copy --destdir="$pkgdir"
+  rm -f "$pkgdir/usr/share/doc/$pkgname/LICENSE"
+}

Copied: haskell-aeson/repos/community-staging-i686/haskell-aeson.install (from 
rev 165653, haskell-aeson/trunk/haskell-aeson.install)
===
--- community-staging-i686/haskell-aeson.install
(rev 0)
+++ community-staging-i686/haskell-aeson.install2016-03-09 04:52:50 UTC 
(rev 165654)
@@ -0,0 +1,23 @@
+HS_DIR=usr/share/haskell/haskell-aeson
+
+post_install() {
+  $HS_DIR/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+
+pre_upgrade() {
+  $HS_DIR/unregister.sh
+}
+
+post_upgrade() {
+  $HS_DIR/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+
+pre_remove() {
+  $HS_DIR/unregister.sh
+}
+
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-aeson/repos/community-staging-x86_64/PKGBUILD (from rev 165653, 
haskell-aeson/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-09 04:52:50 UTC (rev 165654)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Daniel Nagy 
+# Contributor: Daniel Micay 
+
+pkgname=haskell-aeson
+_hkgname=aeson
+pkgver=0.11.1.0
+pkgrel=2
+pkgdesc="A JSON parsing and encoding library optimized for ease of use and 
high performance."
+url="https://github.com/bos/aeson";
+license=("GPL")
+arch=('i686' 'x86_64')
+makedepends=('ghc')
+depends=("ghc=7.10.3" 'haskell-attoparsec' 'haskell-fail' 'haskell-semigroups' 
'haskell-unordered-containers'
+ 'haskell-mtl' 'haskell-syb' 'haskell-tagged' 'haskell-vector' 
'haskell-dlist')
+source=("http://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-${pkgver}.tar.gz";)
+options=('staticli

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

2016-03-08 Thread Felix Yan
Date: Wednesday, March 9, 2016 @ 05:52:20
  Author: fyan
Revision: 165653

upgpkg: haskell-aeson 0.11.1.0-2

rebuild with persistent-2.2.4.1, path-0.5.7, persistent-sqlite-2.2.1, 
persistent-template-2.1.6, scientific-0.3.4.5

Modified:
  haskell-aeson/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-09 04:26:34 UTC (rev 165652)
+++ PKGBUILD2016-03-09 04:52:20 UTC (rev 165653)
@@ -6,7 +6,7 @@
 pkgname=haskell-aeson
 _hkgname=aeson
 pkgver=0.11.1.0
-pkgrel=1
+pkgrel=2
 pkgdesc="A JSON parsing and encoding library optimized for ease of use and 
high performance."
 url="https://github.com/bos/aeson";
 license=("GPL")


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

2016-03-08 Thread Felix Yan
Date: Wednesday, March 9, 2016 @ 05:26:34
  Author: fyan
Revision: 165652

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

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

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

Copied: haskell-attoparsec/repos/community-staging-i686/PKGBUILD (from rev 
165651, haskell-attoparsec/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-09 04:26:34 UTC (rev 165652)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=attoparsec
+pkgname=haskell-attoparsec
+pkgver=0.13.0.1
+pkgrel=9
+pkgdesc="Fast combinator parsing for bytestrings and text"
+url="https://github.com/bos/attoparsec";
+license=("BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-scientific" "haskell-text")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+install="${pkgname}.install"
+sha256sums=('ce880acb45142eafd872e01d9af57d8dbb95c9f2b9a27f01ca9912ba4e9ef932')
+
+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-developer
+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-attoparsec/repos/community-staging-i686/haskell-attoparsec.install 
(from rev 165651, haskell-attoparsec/trunk/haskell-attoparsec.install)
===
--- community-staging-i686/haskell-attoparsec.install   
(rev 0)
+++ community-staging-i686/haskell-attoparsec.install   2016-03-09 04:26:34 UTC 
(rev 165652)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-attoparsec
+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-attoparsec/repos/community-staging-x86_64/PKGBUILD (from rev 
165651, haskell-attoparsec/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-09 04:26:34 UTC (rev 165652)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=attoparsec
+pkgname=haskell-attoparsec
+pkgver=0.13.0.1
+pkgrel=9
+pkgdesc="Fast combinator parsing for bytestrings and text"
+url="https://github.com/bos/attoparsec";
+license=("BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-scientific" "haskell-text")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+install="${pkgname}.insta

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

2016-03-08 Thread Felix Yan
Date: Wednesday, March 9, 2016 @ 05:26:11
  Author: fyan
Revision: 165651

upgpkg: haskell-attoparsec 0.13.0.1-9

rebuild with persistent-2.2.4.1, path-0.5.7, persistent-sqlite-2.2.1, 
persistent-template-2.1.6, scientific-0.3.4.5

Modified:
  haskell-attoparsec/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-09 04:22:11 UTC (rev 165650)
+++ PKGBUILD2016-03-09 04:26:11 UTC (rev 165651)
@@ -5,7 +5,7 @@
 _hkgname=attoparsec
 pkgname=haskell-attoparsec
 pkgver=0.13.0.1
-pkgrel=8
+pkgrel=9
 pkgdesc="Fast combinator parsing for bytestrings and text"
 url="https://github.com/bos/attoparsec";
 license=("BSD3")


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

2016-03-08 Thread Felix Yan
Date: Wednesday, March 9, 2016 @ 05:22:11
  Author: fyan
Revision: 165650

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

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

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

Copied: haskell-scientific/repos/community-staging-i686/PKGBUILD (from rev 
165649, haskell-scientific/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-09 04:22:11 UTC (rev 165650)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=scientific
+pkgname=haskell-scientific
+pkgver=0.3.4.5
+pkgrel=1
+pkgdesc="Numbers represented using scientific notation"
+url="https://github.com/basvandijk/scientific";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-hashable" "haskell-text" "haskell-vector")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+install="${pkgname}.install"
+sha256sums=('77d5b10a2ec8366e0a8ede82a5ba4079c4d76aab6e1ee9a7abc0c3ef37748906')
+
+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-integer-simple -fbytestring-builder
+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-scientific/repos/community-staging-i686/haskell-scientific.install 
(from rev 165649, haskell-scientific/trunk/haskell-scientific.install)
===
--- community-staging-i686/haskell-scientific.install   
(rev 0)
+++ community-staging-i686/haskell-scientific.install   2016-03-09 04:22:11 UTC 
(rev 165650)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-scientific
+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)
+}
\ No newline at end of file

Copied: haskell-scientific/repos/community-staging-x86_64/PKGBUILD (from rev 
165649, haskell-scientific/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-09 04:22:11 UTC (rev 165650)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=scientific
+pkgname=haskell-scientific
+pkgver=0.3.4.5
+pkgrel=1
+pkgdesc="Numbers represented using scientific notation"
+url="https://github.com/basvandijk/scientific";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-hashable" "haskell-text" "haskell-vector")
+options=('staticlibs')
+source=("http://hackage.haske

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

2016-03-08 Thread Felix Yan
Date: Wednesday, March 9, 2016 @ 05:21:48
  Author: fyan
Revision: 165649

upgpkg: haskell-scientific 0.3.4.5-1

Modified:
  haskell-scientific/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-09 03:44:03 UTC (rev 165648)
+++ PKGBUILD2016-03-09 04:21:48 UTC (rev 165649)
@@ -4,8 +4,8 @@
 
 _hkgname=scientific
 pkgname=haskell-scientific
-pkgver=0.3.4.4
-pkgrel=4
+pkgver=0.3.4.5
+pkgrel=1
 pkgdesc="Numbers represented using scientific notation"
 url="https://github.com/basvandijk/scientific";
 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=('f7c81e6ce6bf1161033ad4bc47b5bf164f4404d9df686dd0edadd488db25a519')
+sha256sums=('77d5b10a2ec8366e0a8ede82a5ba4079c4d76aab6e1ee9a7abc0c3ef37748906')
 
 build() {
 cd "${srcdir}/${_hkgname}-${pkgver}"


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

2016-03-08 Thread Kyle Keen
Date: Wednesday, March 9, 2016 @ 04:43:49
  Author: kkeen
Revision: 165647

upgpkg: python-terminado 0.6-1

Modified:
  python-terminado/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-09 03:37:35 UTC (rev 165646)
+++ PKGBUILD2016-03-09 03:43:49 UTC (rev 165647)
@@ -5,8 +5,8 @@
 pkgbase=python-terminado
 pkgname=(python-terminado python2-terminado)
 _pkgname=terminado
-pkgver=0.5
-pkgrel=3
+pkgver=0.6
+pkgrel=1
 pkgdesc="Terminals served to term.js using Tornado websockets"
 url="https://github.com/takluyver/terminado";
 arch=('any')
@@ -17,7 +17,7 @@
  'python2-tornado' 'python2-ptyprocess')
 
source=("http://pypi.python.org/packages/source/t/$_pkgname/$_pkgname-$pkgver.tar.gz";
 
'https://raw.githubusercontent.com/takluyver/terminado/master/LICENSE.txt')
-md5sums=('e992c6262a5f4c8952fee93da31a067e'
+md5sums=('5b6c65da27fe1ed07a9f80f0588cdaba'
  '242c3ea7df130edf77dc0e088ac1847c')
 
 prepare() {


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

2016-03-08 Thread Kyle Keen
Date: Wednesday, March 9, 2016 @ 04:44:03
  Author: kkeen
Revision: 165648

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-03-09 03:43:49 UTC (rev 165647)
+++ PKGBUILD2016-03-09 03:44:03 UTC (rev 165648)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen 
-# Contributor: Will Shanks 
-
-pkgbase=python-terminado
-pkgname=(python-terminado python2-terminado)
-_pkgname=terminado
-pkgver=0.5
-pkgrel=3
-pkgdesc="Terminals served to term.js using Tornado websockets"
-url="https://github.com/takluyver/terminado";
-arch=('any')
-license=('BSD')
-depends=('python-tornado' 'python-ptyprocess')
-makedepends=('python-setuptools' 'python2-setuptools'
- 'python-tornado' 'python-ptyprocess'
- 'python2-tornado' 'python2-ptyprocess')
-source=("http://pypi.python.org/packages/source/t/$_pkgname/$_pkgname-$pkgver.tar.gz";
-
'https://raw.githubusercontent.com/takluyver/terminado/master/LICENSE.txt')
-md5sums=('e992c6262a5f4c8952fee93da31a067e'
- '242c3ea7df130edf77dc0e088ac1847c')
-
-prepare() {
-  cd "$srcdir"
-  cp -r $_pkgname-$pkgver ${_pkgname}2-$pkgver
-}
-
-package_python-terminado() {
-  cd "$srcdir/$_pkgname-$pkgver"
-  python3 setup.py install --root="$pkgdir/" --prefix=/usr --optimize=0
-  install -Dm644 "$srcdir/LICENSE.txt" 
"$pkgdir/usr/share/licenses/python-$_pkgname/LICENSE"
-}
-
-package_python2-terminado() {
-  depends=('python2-tornado' 'python2-ptyprocess')
-  cd "$srcdir/${_pkgname}2-$pkgver"
-  python2 setup.py install --root="$pkgdir/" --prefix=/usr --optimize=0
-  install -Dm644 "$srcdir/LICENSE.txt" 
"$pkgdir/usr/share/licenses/python2-$_pkgname/LICENSE"
-}
-

Copied: python-terminado/repos/community-any/PKGBUILD (from rev 165647, 
python-terminado/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-03-09 03:44:03 UTC (rev 165648)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Kyle Keen 
+# Contributor: Will Shanks 
+
+pkgbase=python-terminado
+pkgname=(python-terminado python2-terminado)
+_pkgname=terminado
+pkgver=0.6
+pkgrel=1
+pkgdesc="Terminals served to term.js using Tornado websockets"
+url="https://github.com/takluyver/terminado";
+arch=('any')
+license=('BSD')
+depends=('python-tornado' 'python-ptyprocess')
+makedepends=('python-setuptools' 'python2-setuptools'
+ 'python-tornado' 'python-ptyprocess'
+ 'python2-tornado' 'python2-ptyprocess')
+source=("http://pypi.python.org/packages/source/t/$_pkgname/$_pkgname-$pkgver.tar.gz";
+
'https://raw.githubusercontent.com/takluyver/terminado/master/LICENSE.txt')
+md5sums=('5b6c65da27fe1ed07a9f80f0588cdaba'
+ '242c3ea7df130edf77dc0e088ac1847c')
+
+prepare() {
+  cd "$srcdir"
+  cp -r $_pkgname-$pkgver ${_pkgname}2-$pkgver
+}
+
+package_python-terminado() {
+  cd "$srcdir/$_pkgname-$pkgver"
+  python3 setup.py install --root="$pkgdir/" --prefix=/usr --optimize=0
+  install -Dm644 "$srcdir/LICENSE.txt" 
"$pkgdir/usr/share/licenses/python-$_pkgname/LICENSE"
+}
+
+package_python2-terminado() {
+  depends=('python2-tornado' 'python2-ptyprocess')
+  cd "$srcdir/${_pkgname}2-$pkgver"
+  python2 setup.py install --root="$pkgdir/" --prefix=/usr --optimize=0
+  install -Dm644 "$srcdir/LICENSE.txt" 
"$pkgdir/usr/share/licenses/python2-$_pkgname/LICENSE"
+}
+


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

2016-03-08 Thread Kyle Keen
Date: Wednesday, March 9, 2016 @ 04:37:20
  Author: kkeen
Revision: 165645

upgpkg: python-mistune 0.7.2-1

Modified:
  python-mistune/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-09 03:12:09 UTC (rev 165644)
+++ PKGBUILD2016-03-09 03:37:20 UTC (rev 165645)
@@ -1,3 +1,4 @@
+# $Id$
 # Maintainer: Kyle Keen 
 # Contributor: shmilee
 
@@ -4,7 +5,7 @@
 pkgbase=python-mistune
 _pkgname=mistune
 pkgname=('python-mistune' 'python2-mistune')
-pkgver=0.7.1
+pkgver=0.7.2
 pkgrel=1
 pkgdesc="The fastest markdown parser in pure Python with renderer feature."
 arch=('any')
@@ -13,7 +14,7 @@
 depends=('python')
 makedepends=('python-setuptools' 'python2-setuptools')
 source=("https://github.com/lepture/mistune/archive/v${pkgver}.tar.gz";)
-md5sums=('0d9c29700c670790c5b2471070d32ec2')
+md5sums=('798a72534237c25e6349d24652d0a6bc')
 
 prepare() {
   cd "$srcdir"


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

2016-03-08 Thread Kyle Keen
Date: Wednesday, March 9, 2016 @ 04:37:35
  Author: kkeen
Revision: 165646

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-03-09 03:37:20 UTC (rev 165645)
+++ PKGBUILD2016-03-09 03:37:35 UTC (rev 165646)
@@ -1,36 +0,0 @@
-# Maintainer: Kyle Keen 
-# Contributor: shmilee
-
-pkgbase=python-mistune
-_pkgname=mistune
-pkgname=('python-mistune' 'python2-mistune')
-pkgver=0.7.1
-pkgrel=1
-pkgdesc="The fastest markdown parser in pure Python with renderer feature."
-arch=('any')
-url="https://github.com/lepture/mistune";
-license=('BSD')
-depends=('python')
-makedepends=('python-setuptools' 'python2-setuptools')
-source=("https://github.com/lepture/mistune/archive/v${pkgver}.tar.gz";)
-md5sums=('0d9c29700c670790c5b2471070d32ec2')
-
-prepare() {
-  cd "$srcdir"
-  cp -r "$srcdir/$_pkgname-$pkgver" "$srcdir/${_pkgname}2-$pkgver"
-}
-
-package_python-mistune() {
-  cd "$srcdir/${_pkgname}-$pkgver"
-  python setup.py install --root="$pkgdir/"
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/python-mistune/LICENSE"
-}
-
-package_python2-mistune() {
-  depends=('python2')
-  cd "$srcdir/${_pkgname}2-$pkgver"
-  python2 setup.py install --root="$pkgdir/"
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/python2-mistune/LICENSE"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-mistune/repos/community-any/PKGBUILD (from rev 165645, 
python-mistune/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-03-09 03:37:35 UTC (rev 165646)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Kyle Keen 
+# Contributor: shmilee
+
+pkgbase=python-mistune
+_pkgname=mistune
+pkgname=('python-mistune' 'python2-mistune')
+pkgver=0.7.2
+pkgrel=1
+pkgdesc="The fastest markdown parser in pure Python with renderer feature."
+arch=('any')
+url="https://github.com/lepture/mistune";
+license=('BSD')
+depends=('python')
+makedepends=('python-setuptools' 'python2-setuptools')
+source=("https://github.com/lepture/mistune/archive/v${pkgver}.tar.gz";)
+md5sums=('798a72534237c25e6349d24652d0a6bc')
+
+prepare() {
+  cd "$srcdir"
+  cp -r "$srcdir/$_pkgname-$pkgver" "$srcdir/${_pkgname}2-$pkgver"
+}
+
+package_python-mistune() {
+  cd "$srcdir/${_pkgname}-$pkgver"
+  python setup.py install --root="$pkgdir/"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/python-mistune/LICENSE"
+}
+
+package_python2-mistune() {
+  depends=('python2')
+  cd "$srcdir/${_pkgname}2-$pkgver"
+  python2 setup.py install --root="$pkgdir/"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/python2-mistune/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:


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

2016-03-08 Thread Kyle Keen
Date: Wednesday, March 9, 2016 @ 04:12:09
  Author: kkeen
Revision: 165644

archrelease: copy trunk to community-any

Added:
  jupyter/repos/community-any/PKGBUILD
(from rev 165643, jupyter/trunk/PKGBUILD)
Deleted:
  jupyter/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-03-09 03:11:55 UTC (rev 165643)
+++ PKGBUILD2016-03-09 03:12:09 UTC (rev 165644)
@@ -1,120 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen 
-
-pkgbase=jupyter
-pkgname=(jupyter ipython2-notebook)
-pkgver=4.0.6
-pkgrel=8
-pkgdesc="A language-agnostic web-based interactive shell/notebook server."
-arch=('any')
-url="http://jupyter.org/";
-license=('BSD')
-depends=('ipython' 'python-ipykernel' 'python-setuptools'
- 'python-jinja' 'python-pyzmq' 'python-jsonschema'
- 'python-mistune' 'python-pygments')
-makedepends=('python-setuptools' 'python2-setuptools' 'npm' 'git')
-optdepends=('pandoc: notebook conversion'
-'qt5-svg: jupyter-qtconsole'
-'python-pyqt5: jupyter-qtconsole'
-'python-sip: jupyter-qtconsole')
-
-# todo: figure out which deps left with jupyter-notebook
-
-# rebundle all the parts that were split out
-# but split them out officially over time
-_ipywv=4.1.1  # ipywidgets
-_jnbcv=4.1.0  # notebook convert
-_jnbfv=4.0.1  # notebook format
-_jconv=4.1.0  # jupyter console
-_jcliv=4.1.1  # jupyter client
-_qtcv=4.2.0   # qtconsole
-
-source=("jupyter_core-$pkgver.tgz::https://github.com/jupyter/jupyter_core/archive/$pkgver.tar.gz";
-
"ipywidgets-$_ipywv.tgz::https://github.com/ipython/ipywidgets/archive/$_ipywv.tar.gz";
-
"nbconvert-$_jnbcv.tgz::https://github.com/jupyter/nbconvert/archive/$_jnbcv.tar.gz";
-
"nbformat-$_jnbfv.tgz::https://github.com/jupyter/nbformat/archive/$_jnbfv.tar.gz";
-
"jupyter_console-$_jconv.tgz::https://github.com/jupyter/jupyter_console/archive/$_jconv.tar.gz";
-
"jupyter_client-$_jcliv.tgz::https://github.com/jupyter/jupyter_client/archive/$_jcliv.tar.gz";
-
"qtconsole-$_qtcv.tgz::https://github.com/jupyter/qtconsole/archive/$_qtcv.tar.gz";)
-md5sums=('50a73c3a4a8ed047a3674d2b5274cc3b'
- '099e9b76c52839dc33604aad7a2f1a42'
- '06655576713ba1ff7cece2b92760c187'
- 'ab7172e517c9d561c0c01eef5631b4c8'
- '9c655076262760bdbeeada9d7f586237'
- '8436e4a3266a442f576cdfef39dc0e19'
- '63c8f88830e41007dc1b807f02a250f9')
-
-# qtconsole deps?
-# python-pyqt5 python-sip python-pygments python-pyzmq
-
-prepare() {
-  cd "$srcdir"
-  cp -r jupyter_core-$pkgver   python2-jupyter_core-$pkgver
-  cp -r jupyter_client-$_jcliv python2-jupyter_client-$_jcliv
-  cp -r qtconsole-$_qtcv   python2-qtconsole-$_qtcv
-}
-
-build() {
-  cd "$srcdir/ipywidgets-$_ipywv"
-  # needs node, downloads a lot of stuff
-  python3 setup.py build
-}
-
-package_jupyter() {
-  cd "$srcdir/jupyter_core-$pkgver"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/ipywidgets-$_ipywv"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/nbconvert-$_jnbcv"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/nbformat-$_jnbfv"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/jupyter_console-$_jconv"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/jupyter_client-$_jcliv"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/qtconsole-$_qtcv"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-  cd examples
-  # FS#47046 fix .desktop icon
-  sed -i 
's|^Icon=.*$|Icon=/usr/lib/python3.5/site-packages/qtconsole/resources/icon/JupyterConsole.svg|'
 \
-jupyter-qtconsole.desktop
-  install -Dm644 jupyter-qtconsole.desktop \
-"$pkgdir/usr/share/applications/jupyter-qtconsole.desktop"
-
-  cd "$srcdir"
-  install -Dm644 "jupyter_core-$pkgver/COPYING.md" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_ipython2-notebook() {
-  pkgdesc="An enhanced Interactive Python2 shell."
-  depends=('ipython2' 'python2-ipykernel' 'python2-pyzmq')
-  optdepends=('python2-pyqt5: jupyter-qtconsole-py2'
-  'qt5-svg: jupyter-qtconsole-py2'
-  'python2-sip: jupyter-qtconsole-py2')
-
-  cd "$srcdir/python2-jupyter_core-$pkgver"
-  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/python2-jupyter_client-$_jcliv"
-  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/python2-qtconsole-$_qtcv"
-  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$pkgdir/usr/bin"
-  rm jupyter
-  rm jupyter-kernelspec
-  rm jupyter-migrate
-  mv

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

2016-03-08 Thread Kyle Keen
Date: Wednesday, March 9, 2016 @ 04:11:55
  Author: kkeen
Revision: 165643

upgpkg: jupyter 4.1.0-1

Modified:
  jupyter/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-09 02:49:15 UTC (rev 165642)
+++ PKGBUILD2016-03-09 03:11:55 UTC (rev 165643)
@@ -3,8 +3,8 @@
 
 pkgbase=jupyter
 pkgname=(jupyter ipython2-notebook)
-pkgver=4.0.6
-pkgrel=8
+pkgver=4.1.0
+pkgrel=1
 pkgdesc="A language-agnostic web-based interactive shell/notebook server."
 arch=('any')
 url="http://jupyter.org/";
@@ -25,10 +25,15 @@
 _ipywv=4.1.1  # ipywidgets
 _jnbcv=4.1.0  # notebook convert
 _jnbfv=4.0.1  # notebook format
-_jconv=4.1.0  # jupyter console
-_jcliv=4.1.1  # jupyter client
+_jconv=4.1.1  # jupyter console
+_jcliv=4.2.1  # jupyter client
 _qtcv=4.2.0   # qtconsole
 
+# future order of splits:
+# python{,2}-jupyter_core
+# python{,2}-jupyter_client
+# python-ipywidgets
+
 
source=("jupyter_core-$pkgver.tgz::https://github.com/jupyter/jupyter_core/archive/$pkgver.tar.gz";
 
"ipywidgets-$_ipywv.tgz::https://github.com/ipython/ipywidgets/archive/$_ipywv.tar.gz";
 
"nbconvert-$_jnbcv.tgz::https://github.com/jupyter/nbconvert/archive/$_jnbcv.tar.gz";
@@ -36,12 +41,12 @@
 
"jupyter_console-$_jconv.tgz::https://github.com/jupyter/jupyter_console/archive/$_jconv.tar.gz";
 
"jupyter_client-$_jcliv.tgz::https://github.com/jupyter/jupyter_client/archive/$_jcliv.tar.gz";
 
"qtconsole-$_qtcv.tgz::https://github.com/jupyter/qtconsole/archive/$_qtcv.tar.gz";)
-md5sums=('50a73c3a4a8ed047a3674d2b5274cc3b'
+md5sums=('b7e928f965f68aef13fea1bf9d6384aa'
  '099e9b76c52839dc33604aad7a2f1a42'
  '06655576713ba1ff7cece2b92760c187'
  'ab7172e517c9d561c0c01eef5631b4c8'
- '9c655076262760bdbeeada9d7f586237'
- '8436e4a3266a442f576cdfef39dc0e19'
+ 'a8b077ae0a5c57e9518ac039ad5febb8'
+ '16994e5cace322c777456bc5a26502d7'
  '63c8f88830e41007dc1b807f02a250f9')
 
 # qtconsole deps?


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

2016-03-08 Thread Felix Yan
Date: Wednesday, March 9, 2016 @ 03:49:15
  Author: fyan
Revision: 165642

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-03-09 02:48:47 UTC (rev 165641)
+++ community-i686/PKGBUILD 2016-03-09 02:49:15 UTC (rev 165642)
@@ -1,75 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor  Bartłomiej Piotrowski 
-# Contributor: Thomas Dziedzic < gostrc at gmail >
-# Contributor: James Campos 
-# Contributor: BlackEagle < ike DOT devolder AT gmail DOT com >
-# Contributor: Dongsheng Cai 
-# Contributor: Masutu Subric 
-# Contributor: TIanyi Cui 
-
-pkgname=nodejs
-pkgver=5.7.1
-pkgrel=2
-pkgdesc='Evented I/O for V8 javascript'
-arch=('i686' 'x86_64')
-url='http://nodejs.org/'
-license=('MIT')
-depends=('openssl' 'zlib' 'icu' 'libuv' 'http-parser') # 'v8')
-makedepends=('python2' 'procps-ng')
-optdepends=('npm: nodejs package manager')
-source=("http://nodejs.org/dist/v$pkgver/node-v$pkgver.tar.gz";)
-sha256sums=('ecd4956335c6b86f1b72fd203abd9a833717e6800edb12208d0e3ce625330198')
-
-prepare() {
-  cd node-v$pkgver
-
-  msg 'Fixing for python2 name'
-  find -type f -exec sed \
--e 's_^#!/usr/bin/env python$_&2_' \
--e 's_^\(#!/usr/bin/python2\).[45]$_\1_' \
--e 's_^#!/usr/bin/python$_&2_' \
--e 's_^\( *exec \+\)python\( \+.*\)$_\1python2\2_'\
--e 's_^\(.*\)python\( \+-c \+.*\)$_\1python2\2_'\
--e "s_'python'_'python2'_" -i {} \;
-  find test/ -type f -exec sed 's_python _python2 _' -i {} \;
-}
-
-build() {
-  cd node-v$pkgver
-
-  export PYTHON=python2
-  ./configure \
---prefix=/usr \
---with-intl=system-icu \
---without-npm \
---shared-openssl \
---shared-zlib \
---shared-libuv \
---shared-http-parser
-# --shared-v8
-
-  make
-}
-
-check() {
-  cd node-v$pkgver
-  # One failure in 5.7.0
-  make test || warning "Tests failed"
-}
-
-package() {
-  cd node-v$pkgver
-
-  make DESTDIR="$pkgdir" install
-
-  # install docs as per user request
-  install -d "$pkgdir"/usr/share/doc/nodejs
-  cp -r doc/api/{*.html,assets} \
-"$pkgdir"/usr/share/doc/nodejs
-
-  install -D -m644 LICENSE \
-"$pkgdir"/usr/share/licenses/nodejs/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: nodejs/repos/community-i686/PKGBUILD (from rev 165641, 
nodejs/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-03-09 02:49:15 UTC (rev 165642)
@@ -0,0 +1,75 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor  Bartłomiej Piotrowski 
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: James Campos 
+# Contributor: BlackEagle < ike DOT devolder AT gmail DOT com >
+# Contributor: Dongsheng Cai 
+# Contributor: Masutu Subric 
+# Contributor: TIanyi Cui 
+
+pkgname=nodejs
+pkgver=5.7.1
+pkgrel=3
+pkgdesc='Evented I/O for V8 javascript'
+arch=('i686' 'x86_64')
+url='http://nodejs.org/'
+license=('MIT')
+depends=('openssl' 'zlib' 'icu' 'libuv' 'http-parser') # 'v8')
+makedepends=('python2' 'procps-ng')
+optdepends=('npm: nodejs package manager')
+source=("http://nodejs.org/dist/v$pkgver/node-v$pkgver.tar.gz";)
+sha256sums=('ecd4956335c6b86f1b72fd203abd9a833717e6800edb12208d0e3ce625330198')
+
+prepare() {
+  cd node-v$pkgver
+
+  msg 'Fixing for python2 name'
+  find -type f -exec sed \
+-e 's_^#!/usr/bin/env python$_&2_' \
+-e 's_^\(#!/usr/bin/python2\).[45]$_\1_' \
+-e 's_^#!/usr/bin/python$_&2_' \
+-e 's_^\( *exec \+\)python\( \+.*\)$_\1python2\2_'\
+-e 's_^\(.*\)python\( \+-c \+.*\)$_\1python2\2_'\
+-e "s_'python'_'python2'_" -i {} \;
+  find test/ -type f -exec sed 's_python _python2 _' -i {} \;
+}
+
+build() {
+  cd node-v$pkgver
+
+  export PYTHON=python2
+  ./configure \
+--prefix=/usr \
+--with-intl=system-icu \
+--without-npm \
+--shared-openssl \
+--shared-zlib \
+--shared-libuv \
+--shared-http-parser
+# --shared-v8
+
+  make
+}
+
+check() {
+  cd node-v$pkgver
+  # One failure in 5.7.0
+  make test || warning "Tests failed"
+}
+
+package() {
+  cd node-v$pkgver
+
+  make DESTDIR="$pkgdir" install
+
+  # install docs as per user request
+  install -d "$pkgdir"/usr/share/doc/nodejs
+  cp -r doc/api/{*.html,assets} \
+"$pkgdir"/usr/share/doc/nodejs
+
+  install -D -m644 LICENSE \
+"$pkgdi

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

2016-03-08 Thread Felix Yan
Date: Wednesday, March 9, 2016 @ 03:48:47
  Author: fyan
Revision: 165641

upgpkg: nodejs 5.7.1-3

rebuild with http-parser-2.6.2

Modified:
  nodejs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-09 02:27:39 UTC (rev 165640)
+++ PKGBUILD2016-03-09 02:48:47 UTC (rev 165641)
@@ -10,7 +10,7 @@
 
 pkgname=nodejs
 pkgver=5.7.1
-pkgrel=2
+pkgrel=3
 pkgdesc='Evented I/O for V8 javascript'
 arch=('i686' 'x86_64')
 url='http://nodejs.org/'


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

2016-03-08 Thread Felix Yan
Date: Wednesday, March 9, 2016 @ 03:27:11
  Author: fyan
Revision: 165639

upgpkg: http-parser 2.6.2-1

Modified:
  http-parser/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-09 02:13:15 UTC (rev 165638)
+++ PKGBUILD2016-03-09 02:27:11 UTC (rev 165639)
@@ -3,7 +3,7 @@
 # Contributor: Brian Bidulock 
 
 pkgname=http-parser
-pkgver=2.6.1
+pkgver=2.6.2
 pkgrel=1
 pkgdesc="Parser for HTTP Request/Response written in C"
 arch=('i686' 'x86_64')


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

2016-03-08 Thread Felix Yan
Date: Wednesday, March 9, 2016 @ 03:27:39
  Author: fyan
Revision: 165640

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

Added:
  http-parser/repos/community-i686/PKGBUILD
(from rev 165639, http-parser/trunk/PKGBUILD)
  http-parser/repos/community-x86_64/PKGBUILD
(from rev 165639, http-parser/trunk/PKGBUILD)
Deleted:
  http-parser/repos/community-i686/PKGBUILD
  http-parser/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-03-09 02:27:11 UTC (rev 165639)
+++ community-i686/PKGBUILD 2016-03-09 02:27:39 UTC (rev 165640)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Brian Bidulock 
-
-pkgname=http-parser
-pkgver=2.6.1
-pkgrel=1
-pkgdesc="Parser for HTTP Request/Response written in C"
-arch=('i686' 'x86_64')
-url="https://github.com/joyent/http-parser";
-license=('MIT')
-depends=('glibc')
-makedepends=('git')
-source=("$pkgname::git+https://github.com/joyent/http-parser.git#tag=v$pkgver";)
-md5sums=('SKIP')
-
-prepare() {
-  sed -i 's|-Werror||' $pkgname/Makefile
-}
-
-build() {
-  cd $pkgname
-  make library
-}
-
-check() {
-  cd $pkgname
-  make test
-}
-
-package() {
-  cd $pkgname
-  make PREFIX="$pkgdir/usr" install
-
-  install -Dm644 LICENSE-MIT \
-"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE-MIT"
-
-  ln -sf libhttp_parser.so.$pkgver "${pkgdir}/usr/lib/libhttp_parser.so"
-}

Copied: http-parser/repos/community-i686/PKGBUILD (from rev 165639, 
http-parser/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-03-09 02:27:39 UTC (rev 165640)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Brian Bidulock 
+
+pkgname=http-parser
+pkgver=2.6.2
+pkgrel=1
+pkgdesc="Parser for HTTP Request/Response written in C"
+arch=('i686' 'x86_64')
+url="https://github.com/joyent/http-parser";
+license=('MIT')
+depends=('glibc')
+makedepends=('git')
+source=("$pkgname::git+https://github.com/joyent/http-parser.git#tag=v$pkgver";)
+md5sums=('SKIP')
+
+prepare() {
+  sed -i 's|-Werror||' $pkgname/Makefile
+}
+
+build() {
+  cd $pkgname
+  make library
+}
+
+check() {
+  cd $pkgname
+  make test
+}
+
+package() {
+  cd $pkgname
+  make PREFIX="$pkgdir/usr" install
+
+  install -Dm644 LICENSE-MIT \
+"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE-MIT"
+
+  ln -sf libhttp_parser.so.$pkgver "${pkgdir}/usr/lib/libhttp_parser.so"
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-03-09 02:27:11 UTC (rev 165639)
+++ community-x86_64/PKGBUILD   2016-03-09 02:27:39 UTC (rev 165640)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Brian Bidulock 
-
-pkgname=http-parser
-pkgver=2.6.1
-pkgrel=1
-pkgdesc="Parser for HTTP Request/Response written in C"
-arch=('i686' 'x86_64')
-url="https://github.com/joyent/http-parser";
-license=('MIT')
-depends=('glibc')
-makedepends=('git')
-source=("$pkgname::git+https://github.com/joyent/http-parser.git#tag=v$pkgver";)
-md5sums=('SKIP')
-
-prepare() {
-  sed -i 's|-Werror||' $pkgname/Makefile
-}
-
-build() {
-  cd $pkgname
-  make library
-}
-
-check() {
-  cd $pkgname
-  make test
-}
-
-package() {
-  cd $pkgname
-  make PREFIX="$pkgdir/usr" install
-
-  install -Dm644 LICENSE-MIT \
-"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE-MIT"
-
-  ln -sf libhttp_parser.so.$pkgver "${pkgdir}/usr/lib/libhttp_parser.so"
-}

Copied: http-parser/repos/community-x86_64/PKGBUILD (from rev 165639, 
http-parser/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-03-09 02:27:39 UTC (rev 165640)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Brian Bidulock 
+
+pkgname=http-parser
+pkgver=2.6.2
+pkgrel=1
+pkgdesc="Parser for HTTP Request/Response written in C"
+arch=('i686' 'x86_64')
+url="https://github.com/joyent/http-parser";
+license=('MIT')
+depends=('glibc')
+makedepends=('git')
+source=("$pkgname::git+https://github.com/joyent/http-parser.git#tag=v$pkgver";)
+md5sums=('SKIP')
+
+prepare() {
+  sed -i 's|-Werror||' $pkgname/Makefile
+}
+
+build() {
+  cd $pkgname
+  make library
+}
+
+check() {
+  cd $pkgname
+  make test
+}
+
+package() {
+  cd $pkgname
+  make PREFIX="$pkgdir/usr" install
+
+  install -Dm644 LICENSE-MIT \
+"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE-MIT"
+
+  ln -sf libhttp_parser.so.$pkgver "${pkgdir}/usr/

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

2016-03-08 Thread Felix Yan
Date: Wednesday, March 9, 2016 @ 03:12:57
  Author: fyan
Revision: 165637

upgpkg: python-paste 2.0.3-1

Modified:
  python-paste/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-09 00:11:36 UTC (rev 165636)
+++ PKGBUILD2016-03-09 02:12:57 UTC (rev 165637)
@@ -5,8 +5,8 @@
 
 pkgbase=python-paste
 pkgname=(python-paste python2-paste)
-pkgver=2.0.2
-pkgrel=2
+pkgver=2.0.3
+pkgrel=1
 pkgdesc="Tools for using a Web Server Gateway Interface stack"
 arch=('any')
 url="http://pythonpaste.org/index.html";
@@ -16,9 +16,11 @@
 optdepends=('python2-flup: WSGI utilities'
 'python-openid: Support for OpenID')
 
source=("http://pypi.python.org/packages/source/P/Paste/Paste-${pkgver}.tar.gz";)
-md5sums=('4bfc8a7eaf858f6309d2ac0f40fc951c')
+md5sums=('1231e14eae62fa7ed76e9130b04bc61e')
 
 prepare() {
+  rm Paste-${pkgver}/paste/httpserver.py.orig
+
   cp -a Paste-${pkgver}{,-py2}
 
   cd Paste-${pkgver}-py2
@@ -28,18 +30,18 @@
 }
 
 build() {
-  cd "$srcdir/Paste-$pkgver"
+  cd "$srcdir"/Paste-$pkgver
   python setup.py build
 
-  cd "$srcdir/Paste-$pkgver-py2"
+  cd "$srcdir"/Paste-$pkgver-py2
   python2 setup.py build
 }
 
 check() {
-  cd "$srcdir/Paste-${pkgver}"
-  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" nosetests3 || warning "Tests failed 
under Python 3"
+  cd "$srcdir"/Paste-$pkgver
+  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" nosetests3
 
-  cd "$srcdir/Paste-${pkgver}-py2"
+  cd "$srcdir"/Paste-$pkgver-py2
   PYTHONPATH="$PWD/build/lib:$PYTHONPATH" nosetests2
 }
 
@@ -46,19 +48,17 @@
 package_python-paste() {
   depends=('python-six')
 
-  cd Paste-${pkgver}
-  python setup.py install --root="${pkgdir}" --optimize=1
+  cd Paste-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
 
-  install -Dm644 docs/license.txt 
"${pkgdir}/usr/share/licenses/$pkgname/license.txt"
-  chmod 644 
"${pkgdir}"/usr/lib/python*/site-packages/paste/evalexception/media/MochiKit.packed.js
+  install -Dm644 docs/license.txt 
"$pkgdir"/usr/share/licenses/$pkgname/license.txt
 }
 
 package_python2-paste() {
   depends=('python2-six')
 
-  cd Paste-${pkgver}-py2
-  python2 setup.py install --root="${pkgdir}" --optimize=1
+  cd Paste-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
 
-  install -Dm644 docs/license.txt 
"${pkgdir}/usr/share/licenses/$pkgname/license.txt"
-  chmod 644 
"${pkgdir}"/usr/lib/python*/site-packages/paste/evalexception/media/MochiKit.packed.js
+  install -Dm644 docs/license.txt 
"$pkgdir"/usr/share/licenses/$pkgname/license.txt
 }


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

2016-03-08 Thread Felix Yan
Date: Wednesday, March 9, 2016 @ 03:13:15
  Author: fyan
Revision: 165638

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-03-09 02:12:57 UTC (rev 165637)
+++ PKGBUILD2016-03-09 02:13:15 UTC (rev 165638)
@@ -1,64 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: David Campbell 
-# Contributor: Cilyan Olowen 
-
-pkgbase=python-paste
-pkgname=(python-paste python2-paste)
-pkgver=2.0.2
-pkgrel=2
-pkgdesc="Tools for using a Web Server Gateway Interface stack"
-arch=('any')
-url="http://pythonpaste.org/index.html";
-license=('MIT')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-six' 
'python2-six')
-checkdepends=('python-nose' 'python2-nose')
-optdepends=('python2-flup: WSGI utilities'
-'python-openid: Support for OpenID')
-source=("http://pypi.python.org/packages/source/P/Paste/Paste-${pkgver}.tar.gz";)
-md5sums=('4bfc8a7eaf858f6309d2ac0f40fc951c')
-
-prepare() {
-  cp -a Paste-${pkgver}{,-py2}
-
-  cd Paste-${pkgver}-py2
-  sed -i -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/python2|" \
- -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \
-  $(find . -name '*.py')
-}
-
-build() {
-  cd "$srcdir/Paste-$pkgver"
-  python setup.py build
-
-  cd "$srcdir/Paste-$pkgver-py2"
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir/Paste-${pkgver}"
-  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" nosetests3 || warning "Tests failed 
under Python 3"
-
-  cd "$srcdir/Paste-${pkgver}-py2"
-  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" nosetests2
-}
-
-package_python-paste() {
-  depends=('python-six')
-
-  cd Paste-${pkgver}
-  python setup.py install --root="${pkgdir}" --optimize=1
-
-  install -Dm644 docs/license.txt 
"${pkgdir}/usr/share/licenses/$pkgname/license.txt"
-  chmod 644 
"${pkgdir}"/usr/lib/python*/site-packages/paste/evalexception/media/MochiKit.packed.js
-}
-
-package_python2-paste() {
-  depends=('python2-six')
-
-  cd Paste-${pkgver}-py2
-  python2 setup.py install --root="${pkgdir}" --optimize=1
-
-  install -Dm644 docs/license.txt 
"${pkgdir}/usr/share/licenses/$pkgname/license.txt"
-  chmod 644 
"${pkgdir}"/usr/lib/python*/site-packages/paste/evalexception/media/MochiKit.packed.js
-}

Copied: python-paste/repos/community-any/PKGBUILD (from rev 165637, 
python-paste/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-03-09 02:13:15 UTC (rev 165638)
@@ -0,0 +1,64 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: David Campbell 
+# Contributor: Cilyan Olowen 
+
+pkgbase=python-paste
+pkgname=(python-paste python2-paste)
+pkgver=2.0.3
+pkgrel=1
+pkgdesc="Tools for using a Web Server Gateway Interface stack"
+arch=('any')
+url="http://pythonpaste.org/index.html";
+license=('MIT')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-six' 
'python2-six')
+checkdepends=('python-nose' 'python2-nose')
+optdepends=('python2-flup: WSGI utilities'
+'python-openid: Support for OpenID')
+source=("http://pypi.python.org/packages/source/P/Paste/Paste-${pkgver}.tar.gz";)
+md5sums=('1231e14eae62fa7ed76e9130b04bc61e')
+
+prepare() {
+  rm Paste-${pkgver}/paste/httpserver.py.orig
+
+  cp -a Paste-${pkgver}{,-py2}
+
+  cd Paste-${pkgver}-py2
+  sed -i -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/python2|" \
+ -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \
+  $(find . -name '*.py')
+}
+
+build() {
+  cd "$srcdir"/Paste-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/Paste-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/Paste-$pkgver
+  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" nosetests3
+
+  cd "$srcdir"/Paste-$pkgver-py2
+  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" nosetests2
+}
+
+package_python-paste() {
+  depends=('python-six')
+
+  cd Paste-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+
+  install -Dm644 docs/license.txt 
"$pkgdir"/usr/share/licenses/$pkgname/license.txt
+}
+
+package_python2-paste() {
+  depends=('python2-six')
+
+  cd Paste-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+
+  install -Dm644 docs/license.txt 
"$pkgdir"/usr/share/licenses/$pkgname/license.txt
+}


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

2016-03-08 Thread Sergej Pupykin
Date: Wednesday, March 9, 2016 @ 01:11:36
  Author: spupykin
Revision: 165636

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-03-08 23:47:04 UTC (rev 165635)
+++ community-i686/PKGBUILD 2016-03-09 00:11:36 UTC (rev 165636)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: mpie 
-
-pkgname=parrot
-pkgver=7.11.0
-#_rel=stable
-_rel=devel
-pkgrel=1
-pkgdesc="Standalone VM that can execute bytecode compiled dynamic languages"
-arch=('x86_64' 'i686')
-url="http://www.parrotcode.org/";
-license=('GPL')
-depends=('icu' 'openssl' 'libffi' 'gmp')
-makedepends=('perl-json')
-optdepends=('freeglut')
-options=('!makeflags')
-source=(ftp://ftp.parrot.org/pub/parrot/releases/$_rel/$pkgver/$pkgname-$pkgver.tar.bz2)
-md5sums=('d4154a63798c7369e278700e5d68697d')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  perl Configure.pl --prefix=/usr \
---parrot_is_shared \
---disable-rpath \
-   --mandir=/usr/share/man \
---optimize
-  export LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:$(pwd)/blib/lib"
-  make all parrot_utils docs html
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install-dev
-  sed -i "s#$srcdir#/usr/src#" \
-$pkgdir/usr/lib/parrot/$pkgver/tools/lib/Parrot/Config/Generated.pm
-}

Copied: parrot/repos/community-i686/PKGBUILD (from rev 165635, 
parrot/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-03-09 00:11:36 UTC (rev 165636)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: mpie 
+
+pkgname=parrot
+pkgver=8.1.0
+_rel=stable
+#_rel=devel
+pkgrel=1
+pkgdesc="Standalone VM that can execute bytecode compiled dynamic languages"
+arch=('x86_64' 'i686')
+url="http://www.parrotcode.org/";
+license=('GPL')
+depends=('icu' 'openssl' 'libffi' 'gmp')
+makedepends=('perl-json')
+optdepends=('freeglut')
+options=('!makeflags')
+source=(ftp://ftp.parrot.org/pub/parrot/releases/$_rel/$pkgver/$pkgname-$pkgver.tar.bz2)
+md5sums=('436d34ae21b20453dfdc12c86fa671cd')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  perl Configure.pl --prefix=/usr \
+--parrot_is_shared \
+--disable-rpath \
+   --mandir=/usr/share/man \
+--optimize
+  export LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:$(pwd)/blib/lib"
+  make all parrot_utils docs html
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install-dev
+  sed -i "s#$srcdir#/usr/src#" \
+$pkgdir/usr/lib/parrot/$pkgver/tools/lib/Parrot/Config/Generated.pm
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-03-08 23:47:04 UTC (rev 165635)
+++ community-x86_64/PKGBUILD   2016-03-09 00:11:36 UTC (rev 165636)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: mpie 
-
-pkgname=parrot
-pkgver=7.11.0
-#_rel=stable
-_rel=devel
-pkgrel=1
-pkgdesc="Standalone VM that can execute bytecode compiled dynamic languages"
-arch=('x86_64' 'i686')
-url="http://www.parrotcode.org/";
-license=('GPL')
-depends=('icu' 'openssl' 'libffi' 'gmp')
-makedepends=('perl-json')
-optdepends=('freeglut')
-options=('!makeflags')
-source=(ftp://ftp.parrot.org/pub/parrot/releases/$_rel/$pkgver/$pkgname-$pkgver.tar.bz2)
-md5sums=('d4154a63798c7369e278700e5d68697d')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  perl Configure.pl --prefix=/usr \
---parrot_is_shared \
---disable-rpath \
-   --mandir=/usr/share/man \
---optimize
-  export LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:$(pwd)/blib/lib"
-  make all parrot_utils docs html
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install-dev
-  sed -i "s#$srcdir#/usr/src#" \
-$pkgdir/usr/lib/parrot/$pkgver/tools/lib/Parrot/Config/Generated.pm
-}

Copied: parrot/repos/community-x86_64/PKGBUILD (from rev 165635, 
parrot/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-03-09 00:11:36 UTC (rev 165636)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: mpie 
+
+pkgname=parrot
+pkgver=8.1.0
+_rel=stable
+#_rel=devel
+pkgrel=1
+pkgd

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

2016-03-08 Thread Sergej Pupykin
Date: Wednesday, March 9, 2016 @ 00:47:04
  Author: spupykin
Revision: 165635

upgpkg: parrot 8.1.0-1

upd

Modified:
  parrot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-08 20:29:38 UTC (rev 165634)
+++ PKGBUILD2016-03-08 23:47:04 UTC (rev 165635)
@@ -3,9 +3,9 @@
 # Contributor: mpie 
 
 pkgname=parrot
-pkgver=7.11.0
-#_rel=stable
-_rel=devel
+pkgver=8.1.0
+_rel=stable
+#_rel=devel
 pkgrel=1
 pkgdesc="Standalone VM that can execute bytecode compiled dynamic languages"
 arch=('x86_64' 'i686')
@@ -16,7 +16,7 @@
 optdepends=('freeglut')
 options=('!makeflags')
 
source=(ftp://ftp.parrot.org/pub/parrot/releases/$_rel/$pkgver/$pkgname-$pkgver.tar.bz2)
-md5sums=('d4154a63798c7369e278700e5d68697d')
+md5sums=('436d34ae21b20453dfdc12c86fa671cd')
 
 build() {
   cd "$srcdir/$pkgname-$pkgver"


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

2016-03-08 Thread Anatol Pomozov
Date: Tuesday, March 8, 2016 @ 23:30:56
  Author: anatolik
Revision: 261234

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

Added:
  alsa-plugins/repos/testing-i686/
  alsa-plugins/repos/testing-i686/0001-Do-not-use-deprecated-FFmpeg-API.patch
(from rev 261233, 
alsa-plugins/trunk/0001-Do-not-use-deprecated-FFmpeg-API.patch)
  alsa-plugins/repos/testing-i686/0002-replace-avcodec_alloc_free_frame.patch
(from rev 261233, 
alsa-plugins/trunk/0002-replace-avcodec_alloc_free_frame.patch)
  alsa-plugins/repos/testing-i686/PKGBUILD
(from rev 261233, alsa-plugins/trunk/PKGBUILD)
  alsa-plugins/repos/testing-x86_64/
  alsa-plugins/repos/testing-x86_64/0001-Do-not-use-deprecated-FFmpeg-API.patch
(from rev 261233, 
alsa-plugins/trunk/0001-Do-not-use-deprecated-FFmpeg-API.patch)
  alsa-plugins/repos/testing-x86_64/0002-replace-avcodec_alloc_free_frame.patch
(from rev 261233, 
alsa-plugins/trunk/0002-replace-avcodec_alloc_free_frame.patch)
  alsa-plugins/repos/testing-x86_64/PKGBUILD
(from rev 261233, alsa-plugins/trunk/PKGBUILD)

+
 testing-i686/0001-Do-not-use-deprecated-FFmpeg-API.patch   |   26 ++
 testing-i686/0002-replace-avcodec_alloc_free_frame.patch   |   32 +++
 testing-i686/PKGBUILD  |   46 +++
 testing-x86_64/0001-Do-not-use-deprecated-FFmpeg-API.patch |   26 ++
 testing-x86_64/0002-replace-avcodec_alloc_free_frame.patch |   32 +++
 testing-x86_64/PKGBUILD|   46 +++
 6 files changed, 208 insertions(+)

Copied: 
alsa-plugins/repos/testing-i686/0001-Do-not-use-deprecated-FFmpeg-API.patch 
(from rev 261233, 
alsa-plugins/trunk/0001-Do-not-use-deprecated-FFmpeg-API.patch)
===
--- testing-i686/0001-Do-not-use-deprecated-FFmpeg-API.patch
(rev 0)
+++ testing-i686/0001-Do-not-use-deprecated-FFmpeg-API.patch2016-03-08 
22:30:56 UTC (rev 261234)
@@ -0,0 +1,26 @@
+From a257818815ce00349a76aaf6c7826070a57c06f7 Mon Sep 17 00:00:00 2001
+From: Anatol Pomozov 
+Date: Mon, 15 Feb 2016 17:40:41 -0800
+Subject: [PATCH] Do not use deprecated FFmpeg API
+
+This API as been removed in ffmpeg 3.0 (commit 2d40968dd3ff17b12f7)
+---
+ a52/pcm_a52.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/a52/pcm_a52.c b/a52/pcm_a52.c
+index 88529eb..6fad77d 100644
+--- a/a52/pcm_a52.c
 b/a52/pcm_a52.c
+@@ -39,7 +39,7 @@
+ #endif
+ 
+ #if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT(53, 34, 0)
+-#include 
++#include 
+ #include 
+ #define USE_AVCODEC_FRAME
+ #endif
+-- 
+2.7.1
+

Copied: 
alsa-plugins/repos/testing-i686/0002-replace-avcodec_alloc_free_frame.patch 
(from rev 261233, 
alsa-plugins/trunk/0002-replace-avcodec_alloc_free_frame.patch)
===
--- testing-i686/0002-replace-avcodec_alloc_free_frame.patch
(rev 0)
+++ testing-i686/0002-replace-avcodec_alloc_free_frame.patch2016-03-08 
22:30:56 UTC (rev 261234)
@@ -0,0 +1,32 @@
+--- a/a52/pcm_a52.c.orig   2016-03-04 18:21:12.606805770 +0100
 b/a52/pcm_a52.c2016-03-04 18:34:22.653240501 +0100
+@@ -62,6 +62,11 @@
+ #define AV_CODEC_ID_AC3 CODEC_ID_AC3
+ #endif
+ 
++#if LIBAVCODEC_VERSION_INT < 0x371c01
++#define av_frame_alloc avcodec_alloc_frame
++#define av_frame_free avcodec_free_frame
++#endif
++
+ struct a52_ctx {
+   snd_pcm_ioplug_t io;
+   snd_pcm_t *slave;
+@@ -513,7 +518,7 @@
+   rec->inbuf = NULL;
+   }
+ #if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT(54, 28, 0)
+-  avcodec_free_frame(&rec->frame);
++  av_frame_free(&rec->frame);
+ #else
+   av_freep(&rec->frame);
+ #endif
+@@ -557,7 +562,7 @@
+ {
+   struct a52_ctx *rec = io->private_data;
+ #ifdef USE_AVCODEC_FRAME
+-  rec->frame = avcodec_alloc_frame();
++  rec->frame = av_frame_alloc();
+   if (!rec->frame)
+   return -ENOMEM;
+   if (av_samples_alloc(rec->frame->data, rec->frame->linesize,

Copied: alsa-plugins/repos/testing-i686/PKGBUILD (from rev 261233, 
alsa-plugins/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-03-08 22:30:56 UTC (rev 261234)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Sergej Pupykin 
+# Contributor: Daniel Ehlers 
+
+pkgname=alsa-plugins
+pkgver=1.1.0
+pkgrel=3
+pkgdesc="Extra alsa plugins"
+arch=(i686 x86_64)
+url="http://www.alsa-project.org";
+license=(GPL)
+depends=(alsa-lib)
+makedepends=(libpulse jack ffmpeg)
+optdepends=('libpulse: PulseAudio plugin'
+'jack: Jack plugin'
+'ffmpeg: libavcodec resampling plugin, a52 plugin'
+'libsamplerate: libsamplerate resampling plugin'
+'speex: libs

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

2016-03-08 Thread Anatol Pomozov
Date: Tuesday, March 8, 2016 @ 23:30:22
  Author: anatolik
Revision: 261233

FS#48454 fix pcm_a52.c broken by the recent ffmpeg 3 update

The patch has been sent upstream but not reviewed yet

Added:
  alsa-plugins/trunk/0002-replace-avcodec_alloc_free_frame.patch
Modified:
  alsa-plugins/trunk/PKGBUILD

-+
 0002-replace-avcodec_alloc_free_frame.patch |   32 ++
 PKGBUILD|9 ---
 2 files changed, 38 insertions(+), 3 deletions(-)

Added: 0002-replace-avcodec_alloc_free_frame.patch
===
--- 0002-replace-avcodec_alloc_free_frame.patch (rev 0)
+++ 0002-replace-avcodec_alloc_free_frame.patch 2016-03-08 22:30:22 UTC (rev 
261233)
@@ -0,0 +1,32 @@
+--- a/a52/pcm_a52.c.orig   2016-03-04 18:21:12.606805770 +0100
 b/a52/pcm_a52.c2016-03-04 18:34:22.653240501 +0100
+@@ -62,6 +62,11 @@
+ #define AV_CODEC_ID_AC3 CODEC_ID_AC3
+ #endif
+ 
++#if LIBAVCODEC_VERSION_INT < 0x371c01
++#define av_frame_alloc avcodec_alloc_frame
++#define av_frame_free avcodec_free_frame
++#endif
++
+ struct a52_ctx {
+   snd_pcm_ioplug_t io;
+   snd_pcm_t *slave;
+@@ -513,7 +518,7 @@
+   rec->inbuf = NULL;
+   }
+ #if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT(54, 28, 0)
+-  avcodec_free_frame(&rec->frame);
++  av_frame_free(&rec->frame);
+ #else
+   av_freep(&rec->frame);
+ #endif
+@@ -557,7 +562,7 @@
+ {
+   struct a52_ctx *rec = io->private_data;
+ #ifdef USE_AVCODEC_FRAME
+-  rec->frame = avcodec_alloc_frame();
++  rec->frame = av_frame_alloc();
+   if (!rec->frame)
+   return -ENOMEM;
+   if (av_samples_alloc(rec->frame->data, rec->frame->linesize,

Modified: PKGBUILD
===
--- PKGBUILD2016-03-08 22:21:23 UTC (rev 261232)
+++ PKGBUILD2016-03-08 22:30:22 UTC (rev 261233)
@@ -5,7 +5,7 @@
 
 pkgname=alsa-plugins
 pkgver=1.1.0
-pkgrel=2
+pkgrel=3
 pkgdesc="Extra alsa plugins"
 arch=(i686 x86_64)
 url="http://www.alsa-project.org";
@@ -18,13 +18,16 @@
 'libsamplerate: libsamplerate resampling plugin'
 'speex: libspeexdsp resampling plugin')
 source=("ftp://ftp.alsa-project.org/pub/plugins/$pkgname-$pkgver.tar.bz2";
-0001-Do-not-use-deprecated-FFmpeg-API.patch)
+0001-Do-not-use-deprecated-FFmpeg-API.patch
+0002-replace-avcodec_alloc_free_frame.patch)
 sha1sums=('1436db17989468d082691b817b338e44ba932c4b'
-  '6b032eb20ea1222e78dc862e61e5dad70a8ef2bb')
+  '6b032eb20ea1222e78dc862e61e5dad70a8ef2bb'
+  'dc42d1b9ada91d26fbddad2aaf42931edf0b8e9d')
 
 prepare() {
   cd $pkgname-$pkgver
   patch -p1 < ../0001-Do-not-use-deprecated-FFmpeg-API.patch
+  patch -p1 < ../0002-replace-avcodec_alloc_free_frame.patch
 }
 
 build() {


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

2016-03-08 Thread Anatol Pomozov
Date: Tuesday, March 8, 2016 @ 23:21:23
  Author: anatolik
Revision: 261232

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

Added:
  talloc/repos/testing-i686/
  talloc/repos/testing-i686/PKGBUILD
(from rev 261231, talloc/trunk/PKGBUILD)
  talloc/repos/testing-i686/fix_test_path.patch
(from rev 261231, talloc/trunk/fix_test_path.patch)
  talloc/repos/testing-x86_64/
  talloc/repos/testing-x86_64/PKGBUILD
(from rev 261231, talloc/trunk/PKGBUILD)
  talloc/repos/testing-x86_64/fix_test_path.patch
(from rev 261231, talloc/trunk/fix_test_path.patch)

+
 testing-i686/PKGBUILD  |   47 +++
 testing-i686/fix_test_path.patch   |   13 +
 testing-x86_64/PKGBUILD|   47 +++
 testing-x86_64/fix_test_path.patch |   13 +
 4 files changed, 120 insertions(+)

Copied: talloc/repos/testing-i686/PKGBUILD (from rev 261231, 
talloc/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-03-08 22:21:23 UTC (rev 261232)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer:
+# Contributor: Tobias Powalowski 
+
+pkgname=talloc
+pkgver=2.1.6
+pkgrel=1
+pkgdesc="Hierarchical pool based memory allocator with destructors"
+arch=('i686' 'x86_64')
+license=('GPL3')
+url="http://talloc.samba.org/";
+depends=('glibc')
+makedepends=('python2' 'docbook-xsl')
+optdepends=('python2: for python bindings')
+source=(http://samba.org/ftp/${pkgname}/${pkgname}-${pkgver}.tar.{gz,asc}
+fix_test_path.patch)
+sha1sums=('bf30a1b0d3a86b686caa7fb6057c25309f2aa7cf'
+  'SKIP'
+  '6117e3dffb24bf03d54325c13b7db3b8a7eb2850')
+validpgpkeys=(9147A339719518EE9011BCB54793916113084025) # samba-b...@samba.org
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   patch -p1 < ../fix_test_path.patch
+   sed -i -e 's#python#python2#g' buildtools/bin/waf
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure --prefix=/usr \
+ --sysconfdir=/etc/samba \
+ --localstatedir=/var \
+ --bundled-libraries=NONE \
+ --builtin-libraries=replace \
+ --enable-talloc-compat1
+   make
+}
+
+check() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make check
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+}

Copied: talloc/repos/testing-i686/fix_test_path.patch (from rev 261231, 
talloc/trunk/fix_test_path.patch)
===
--- testing-i686/fix_test_path.patch(rev 0)
+++ testing-i686/fix_test_path.patch2016-03-08 22:21:23 UTC (rev 261232)
@@ -0,0 +1,13 @@
+diff --git a/wscript b/wscript
+index 9cedbbf..4432a9a 100644
+--- a/wscript
 b/wscript
+@@ -159,7 +159,7 @@ def test(ctx):
+ ret = samba_utils.RUN_COMMAND(cmd)
+ print("testsuite returned %d" % ret)
+ magic_helper_cmd = os.path.join(Utils.g_module.blddir, 
'talloc_test_magic_differs_helper')
+-magic_cmd = os.path.join(srcdir, 'lib', 'talloc',
++magic_cmd = os.path.join(srcdir,
+  'test_magic_differs.sh')
+ 
+ magic_ret = samba_utils.RUN_COMMAND(magic_cmd + " " +  magic_helper_cmd)

Copied: talloc/repos/testing-x86_64/PKGBUILD (from rev 261231, 
talloc/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-03-08 22:21:23 UTC (rev 261232)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer:
+# Contributor: Tobias Powalowski 
+
+pkgname=talloc
+pkgver=2.1.6
+pkgrel=1
+pkgdesc="Hierarchical pool based memory allocator with destructors"
+arch=('i686' 'x86_64')
+license=('GPL3')
+url="http://talloc.samba.org/";
+depends=('glibc')
+makedepends=('python2' 'docbook-xsl')
+optdepends=('python2: for python bindings')
+source=(http://samba.org/ftp/${pkgname}/${pkgname}-${pkgver}.tar.{gz,asc}
+fix_test_path.patch)
+sha1sums=('bf30a1b0d3a86b686caa7fb6057c25309f2aa7cf'
+  'SKIP'
+  '6117e3dffb24bf03d54325c13b7db3b8a7eb2850')
+validpgpkeys=(9147A339719518EE9011BCB54793916113084025) # samba-b...@samba.org
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   patch -p1 < ../fix_test_path.patch
+   sed -i -e 's#python#python2#g' buildtools/bin/waf
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure --prefix=/usr \
+ --sysconfdir=/etc/samba \
+ --localstatedir=/var \
+ --bundled-libraries=NONE \
+ --builtin-libraries=replace \
+ --enable-talloc-compat1
+   make
+}
+
+check() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make check
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+}

Copied: talloc/repos/testing-x86_64/fix_test_path.patch (from rev 261231, 
talloc/trunk/fix_test_path.patch)
===

[arch-commits] Commit in talloc/trunk (PKGBUILD fix_test_path.patch)

2016-03-08 Thread Anatol Pomozov
Date: Tuesday, March 8, 2016 @ 23:20:55
  Author: anatolik
Revision: 261231

upgpkg: talloc 2.1.6-1

Modified:
  talloc/trunk/PKGBUILD
  talloc/trunk/fix_test_path.patch

-+
 PKGBUILD|6 +++---
 fix_test_path.patch |6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-08 21:05:07 UTC (rev 261230)
+++ PKGBUILD2016-03-08 22:20:55 UTC (rev 261231)
@@ -3,7 +3,7 @@
 # Contributor: Tobias Powalowski 
 
 pkgname=talloc
-pkgver=2.1.5
+pkgver=2.1.6
 pkgrel=1
 pkgdesc="Hierarchical pool based memory allocator with destructors"
 arch=('i686' 'x86_64')
@@ -14,9 +14,9 @@
 optdepends=('python2: for python bindings')
 source=(http://samba.org/ftp/${pkgname}/${pkgname}-${pkgver}.tar.{gz,asc}
 fix_test_path.patch)
-sha1sums=('bdf3b3d8449e2c354f1ebc43d3e1058160eb4adb'
+sha1sums=('bf30a1b0d3a86b686caa7fb6057c25309f2aa7cf'
   'SKIP'
-  '34132be289f9ce1c38c8b367def8d91ac7dbb706')
+  '6117e3dffb24bf03d54325c13b7db3b8a7eb2850')
 validpgpkeys=(9147A339719518EE9011BCB54793916113084025) # samba-b...@samba.org
 
 prepare() {

Modified: fix_test_path.patch
===
--- fix_test_path.patch 2016-03-08 21:05:07 UTC (rev 261230)
+++ fix_test_path.patch 2016-03-08 22:20:55 UTC (rev 261231)
@@ -2,12 +2,12 @@
 index 9cedbbf..4432a9a 100644
 --- a/wscript
 +++ b/wscript
-@@ -158,7 +158,7 @@ def test(ctx):
- cmd = os.path.join(Utils.g_module.blddir, 'talloc_testsuite')
+@@ -159,7 +159,7 @@ def test(ctx):
  ret = samba_utils.RUN_COMMAND(cmd)
  print("testsuite returned %d" % ret)
+ magic_helper_cmd = os.path.join(Utils.g_module.blddir, 
'talloc_test_magic_differs_helper')
 -magic_cmd = os.path.join(srcdir, 'lib', 'talloc',
 +magic_cmd = os.path.join(srcdir,
   'test_magic_differs.sh')
  
- magic_ret = samba_utils.RUN_COMMAND(magic_cmd)
+ magic_ret = samba_utils.RUN_COMMAND(magic_cmd + " " +  magic_helper_cmd)


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

2016-03-08 Thread Jan Steffens
Date: Tuesday, March 8, 2016 @ 22:05:07
  Author: heftig
Revision: 261230

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

Added:
  imagemagick/repos/testing-i686/
  imagemagick/repos/testing-i686/PKGBUILD
(from rev 261229, imagemagick/trunk/PKGBUILD)
  imagemagick/repos/testing-i686/perlmagick.rpath.patch
(from rev 261229, imagemagick/trunk/perlmagick.rpath.patch)
  imagemagick/repos/testing-x86_64/
  imagemagick/repos/testing-x86_64/PKGBUILD
(from rev 261229, imagemagick/trunk/PKGBUILD)
  imagemagick/repos/testing-x86_64/perlmagick.rpath.patch
(from rev 261229, imagemagick/trunk/perlmagick.rpath.patch)

---+
 testing-i686/PKGBUILD |   98 
 testing-i686/perlmagick.rpath.patch   |   11 +++
 testing-x86_64/PKGBUILD   |   98 
 testing-x86_64/perlmagick.rpath.patch |   11 +++
 4 files changed, 218 insertions(+)

Copied: imagemagick/repos/testing-i686/PKGBUILD (from rev 261229, 
imagemagick/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-03-08 21:05:07 UTC (rev 261230)
@@ -0,0 +1,98 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgbase=imagemagick
+pkgname=('imagemagick' 'imagemagick-doc')
+pkgver=6.9.3.7
+pkgrel=1
+arch=('i686' 'x86_64')
+url="http://www.imagemagick.org/";
+license=('custom')
+makedepends=('libltdl' 'lcms2' 'libxt' 'fontconfig' 'libxext' 'ghostscript'
+ 'openexr' 'libwmf' 'librsvg' 'libxml2' 'liblqr' 'openjpeg2'
+ 'opencl-headers' 'libcl' 'libwebp' 'subversion' 'glu')
+source=(http://www.imagemagick.org/download/ImageMagick-${pkgver%.*}-${pkgver##*.}.tar.xz{,.asc}
+perlmagick.rpath.patch)
+sha1sums=('8797c074d3ae79283563f2e8e6784e3032378b23'
+  'SKIP'
+  'e143cf9d530fabf3b58023899b5cc544ba93daec')
+validpgpkeys=('D8272EF51DA223E4D05B466989AB63D48277377A')
+
+prepare() {
+  cd ImageMagick-${pkgver%.*}-${pkgver##*.}
+  sed '/AC_PATH_XTRA/d' -i configure.ac
+  autoreconf --force --install
+  patch -p0 -i "${srcdir}/perlmagick.rpath.patch"
+}
+
+build() {
+  cd ImageMagick-${pkgver%.*}-${pkgver##*.}
+  [[ $CARCH = "i686" ]] && EXTRAOPTS="--with-gcc-arch=i686"
+  [[ $CARCH = "x86_64" ]] && EXTRAOPTS="--with-gcc-arch=x86-64"
+
+  ./configure --prefix=/usr --sysconfdir=/etc --with-modules \
+--enable-hdri --with-wmf --with-openexr --with-xml \
+--with-webp --with-gslib --with-gs-font-dir=/usr/share/fonts/Type1 \
+--with-perl --with-perl-options="INSTALLDIRS=vendor" --with-lqr 
--with-rsvg \
+--enable-opencl --with-openjp2 --without-gvc --without-djvu 
--without-autotrace \
+--without-jbig --without-fpx --without-dps --without-fftw $EXTRAOPTS
+  make
+}
+
+check() {
+  cd ImageMagick-${pkgver%.*}-${pkgver##*.}
+#  make check
+}
+
+package_imagemagick() {
+  pkgdesc="An image viewing/manipulation program"
+  depends=('libltdl' 'lcms2' 'libxt' 'fontconfig' 'libxext' 'liblqr' 'libcl')
+  optdepends=('imagemagick-doc: for additional information'
+  'ghostscript: for Ghostscript support' 
+  'openexr: for OpenEXR support' 
+ 'openjpeg2: for JP2 support' 
+  'libwmf: for WMF support' 
+  'librsvg: for SVG support' 
+  'libxml2: for XML support' 
+  'libpng: for PNG support' 
+ 'libwebp: for WEBP support')
+  backup=("etc/ImageMagick-${pkgver%%.*}/coder.xml"
+  "etc/ImageMagick-${pkgver%%.*}/colors.xml"
+  "etc/ImageMagick-${pkgver%%.*}/delegates.xml"
+  "etc/ImageMagick-${pkgver%%.*}/log.xml"
+  "etc/ImageMagick-${pkgver%%.*}/magic.xml"
+  "etc/ImageMagick-${pkgver%%.*}/mime.xml"
+  "etc/ImageMagick-${pkgver%%.*}/policy.xml"
+  "etc/ImageMagick-${pkgver%%.*}/quantization-table.xml"
+  "etc/ImageMagick-${pkgver%%.*}/thresholds.xml"
+  "etc/ImageMagick-${pkgver%%.*}/type.xml"
+  "etc/ImageMagick-${pkgver%%.*}/type-dejavu.xml"
+  "etc/ImageMagick-${pkgver%%.*}/type-ghostscript.xml"
+  "etc/ImageMagick-${pkgver%%.*}/type-windows.xml")
+  options=('!docs' 'libtool' '!emptydirs')
+
+  cd ImageMagick-${pkgver%.*}-${pkgver##*.}
+  make -j1 DESTDIR="${pkgdir}" install
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/imagemagick/LICENSE"
+  install -Dm644 NOTICE "${pkgdir}/usr/share/licenses/imagemagick/NOTICE"
+
+#Cleaning
+  rm -f "${pkgdir}"/usr/lib/*.la
+
+# template start; name=perl-binary-module-dependency; version=1;
+if [[ $(find "$pkgdir/usr/lib/perl5/" -name "*.so") ]]; then
+   _perlver_min=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]);')
+   _perlver_max=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]+1);')
+   depends+=("perl>=$_perlver_min" "perl<$_perlver_max")
+fi
+# template end;
+}
+
+package_imagemagick-doc() {

[arch-commits] Commit in firefox-i18n/repos (testing-any testing-any/PKGBUILD)

2016-03-08 Thread Jan Steffens
Date: Tuesday, March 8, 2016 @ 22:01:50
  Author: heftig
Revision: 261229

archrelease: copy trunk to testing-any

Added:
  firefox-i18n/repos/testing-any/
  firefox-i18n/repos/testing-any/PKGBUILD
(from rev 261228, firefox-i18n/trunk/PKGBUILD)

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

Copied: firefox-i18n/repos/testing-any/PKGBUILD (from rev 261228, 
firefox-i18n/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2016-03-08 21:01:50 UTC (rev 261229)
@@ -0,0 +1,222 @@
+# $Id$
+# Maintainer: Thomas Baechler 
+# Contributor: Jaroslaw Swierczynski 
+# Contributor: Michal Hybner 
+# Contributor: Andrea Scarpino 
+
+pkgbase=firefox-i18n
+pkgver=45.0
+pkgrel=1
+pkgdesc="Language pack for Firefox"
+arch=('any')
+url="http://www.mozilla.com/";
+license=('MPL' 'GPL')
+depends=("firefox>=$pkgver")
+
+_languages=(
+  'ach"Acholi"'
+  'af "Afrikaans"'
+  'an "Aragonese"'
+  'ar "Arabic"'
+  'as "Assamese"'
+  'ast"Asturian"'
+  'az "Azerbaijani"'
+  'be "Belarusian"'
+  'bg "Bulgarian"'
+  'bn-BD  "Bengali (Bangladesh)"'
+  'bn-IN  "Bengali (India)"'
+  'br "Breton"'
+  'bs "Bosnian"'
+  'ca "Catalan"'
+  'cs "Czech"'
+  'cy "Welsh"'
+  'da "Danish"'
+  'de "German"'
+  'dsb"Lower Sorbian"'
+  'el "Greek"'
+  'en-GB  "English (British)"'
+  'en-US  "English (US)"'
+  'en-ZA  "English (South African)"'
+  'eo "Esperanto"'
+  'es-AR  "Spanish (Argentina)"'
+  'es-CL  "Spanish (Chile)"'
+  'es-ES  "Spanish (Spain)"'
+  'es-MX  "Spanish (Mexico)"'
+  'et "Estonian"'
+  'eu "Basque"'
+  'fa "Persian"'
+  'ff "Fulah"'
+  'fi "Finnish"'
+  'fr "French"'
+  'fy-NL  "Frisian"'
+  'ga-IE  "Irish"'
+  'gd "Gaelic (Scotland)"'
+  'gl "Galician"'
+  'gn "Guarani"'
+  'gu-IN  "Gujarati (India)"'
+  'he "Hebrew"'
+  'hi-IN  "Hindi (India)"'
+  'hr "Croatian"'
+  'hsb"Upper Sorbian"'
+  'hu "Hungarian"'
+  'hy-AM  "Armenian"'
+  'id "Indonesian"'
+  'is "Icelandic"'
+  'it "Italian"'
+  'ja "Japanese"'
+  'kk "Kazakh"'
+  'km "Khmer"'
+  'kn "Kannada"'
+  'ko "Korean"'
+  'lij"Ligurian"'
+  'lt "Lithuanian"'
+  'lv "Latvian"'
+  'mai"Maithili"'
+  'mk "Macedonian"'
+  'ml "Malayalam"'
+  'mr "Marathi"'
+  'ms "Malay"'
+  'nb-NO  "Norwegian (Bokmål)"'
+  'nl "Dutch"'
+  'nn-NO  "Norwegian (Nynorsk)"'
+  'or "Oriya"'
+  'pa-IN  "Punjabi (India)"'
+  'pl "Polish"'
+  'pt-BR  "Portuguese (Brazilian)"'
+  'pt-PT  "Portuguese (Portugal)"'
+  'rm "Romansh"'
+  'ro "Romanian"'
+  'ru "Russian"'
+  'si "Sinhala"'
+  'sk "Slovak"'
+  'sl "Slovenian"'
+  'son"Songhai"'
+  'sq "Albanian"'
+  'sr "Serbian"'
+  'sv-SE  "Swedish"'
+  'ta "Tamil"'
+  'te "Telugu"'
+  'th "Thai"'
+  'tr "Turkish"'
+  'uk "Ukrainian"'
+  'uz "Uzbek"'
+  'vi "Vietnamese"'
+  'xh "Xhosa"'
+  'zh-CN  "Chinese (Simplified)"'
+  'zh-TW  "Chinese (Traditional)"'
+)
+
+pkgname=()
+source=()
+_url=https://ftp.mozilla.org/pub/mozilla.org/firefox/releases/$pkgver/linux-i686/xpi
+
+for _lang in "${_languages[@]}"; do
+  _locale=${_lang%% *}
+  _pkgname=firefox-i18n-${_locale,,}
+
+  pkgname+=($_pkgname)
+  source+=("firefox-i18n-$pkgver-$_locale.xpi::$_url/$_locale.xpi")
+  eval "package_$_pkgname() {
+_package $_lang
+  }"
+done
+
+# Don't extract anything
+noextract=(${source[@]%%::*})
+
+_package() {
+  pkgdesc="$2 language pack for Firefox"
+  install -Dm644 firefox-i18n-$pkgver-$1.xpi \
+
"$pkgdir/usr/lib/firefox/browser/extensions/langpack-$1...@firefox.mozilla.org.xpi"
+}
+
+md5sums=('38b1fa50dca0d74c068c7fadf55b8a83'
+ '5cb7b06e3afdce998a6fd5646f678f4a'
+ 'a890a8db061a1a809664cd4d5d8f9cb1'
+ '7f8d7c5402514ac7f414e4a58ec2ceae'
+ 'ddac17c4dd6d56032a5919bc927ff610'
+ '5c2900511237af1f021859cca977fbfd'
+ 'a99021d3d9e753fd316d93cea0b2ab9e'
+ 'a7be82050e732193523bed08d59d7b90'
+ 'e055faae24e2fbaefcc8e11822ecd060'
+ 'e0e7b1f2939777fc3dd675df58844aad'
+ 'c487b8516aae3431fd05abe2001f9eb4'
+ '7599f69363885fa2490ee2599380030c'
+ '56c7fece51c2f5a38a8517e71599ab3d'
+ 'a0e4232f207d1df5acf9492b508c907b'
+ '5ca53afbe58fee97a9ff9acddc818208'
+ '6e2ad4adfba92a74dcf685795bb9a7b8'
+ '28edce5532007582cd04346463aa23fb'
+ 'f43edc08a5ce4a7846ab4e7cde2b925d'
+ '4b71b944e987e8272859e808862adaaf'
+ 'b12b05f7d9a1028cff7563a3f2868749'
+ '8bc9af34f01b420c35fdbbf29716ce44'
+ 'b5d06e513c8bd153fcdc5a22c78b4c37'
+ 'f003a3fd57a2551165ec1404ecaa200d'
+ '600ee805ffaa99e269a027484fb69b1d'
+ '160009f212ea89f3c98f0cf74ee261e4'
+

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

2016-03-08 Thread Jan Steffens
Date: Tuesday, March 8, 2016 @ 21:53:50
  Author: heftig
Revision: 261228

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

Added:
  firefox/repos/testing-i686/
  firefox/repos/testing-i686/PKGBUILD
(from rev 261227, firefox/trunk/PKGBUILD)
  firefox/repos/testing-i686/firefox-fixed-loading-icon.png
(from rev 261227, firefox/trunk/firefox-fixed-loading-icon.png)
  firefox/repos/testing-i686/firefox-install-dir.patch
(from rev 261227, firefox/trunk/firefox-install-dir.patch)
  firefox/repos/testing-i686/firefox-symbolic.svg
(from rev 261227, firefox/trunk/firefox-symbolic.svg)
  firefox/repos/testing-i686/firefox.desktop
(from rev 261227, firefox/trunk/firefox.desktop)
  firefox/repos/testing-i686/firefox.install
(from rev 261227, firefox/trunk/firefox.install)
  firefox/repos/testing-i686/mozconfig
(from rev 261227, firefox/trunk/mozconfig)
  firefox/repos/testing-i686/vendor.js
(from rev 261227, firefox/trunk/vendor.js)
  firefox/repos/testing-x86_64/
  firefox/repos/testing-x86_64/PKGBUILD
(from rev 261227, firefox/trunk/PKGBUILD)
  firefox/repos/testing-x86_64/firefox-fixed-loading-icon.png
(from rev 261227, firefox/trunk/firefox-fixed-loading-icon.png)
  firefox/repos/testing-x86_64/firefox-install-dir.patch
(from rev 261227, firefox/trunk/firefox-install-dir.patch)
  firefox/repos/testing-x86_64/firefox-symbolic.svg
(from rev 261227, firefox/trunk/firefox-symbolic.svg)
  firefox/repos/testing-x86_64/firefox.desktop
(from rev 261227, firefox/trunk/firefox.desktop)
  firefox/repos/testing-x86_64/firefox.install
(from rev 261227, firefox/trunk/firefox.install)
  firefox/repos/testing-x86_64/mozconfig
(from rev 261227, firefox/trunk/mozconfig)
  firefox/repos/testing-x86_64/vendor.js
(from rev 261227, firefox/trunk/vendor.js)

--+
 testing-i686/PKGBUILD|  125 ++
 testing-i686/firefox-install-dir.patch   |   12 
 testing-i686/firefox-symbolic.svg|   30 ++
 testing-i686/firefox.desktop |  352 +
 testing-i686/firefox.install |   13 +
 testing-i686/mozconfig   |   39 +++
 testing-i686/vendor.js   |9 
 testing-x86_64/PKGBUILD  |  125 ++
 testing-x86_64/firefox-install-dir.patch |   12 
 testing-x86_64/firefox-symbolic.svg  |   30 ++
 testing-x86_64/firefox.desktop   |  352 +
 testing-x86_64/firefox.install   |   13 +
 testing-x86_64/mozconfig |   39 +++
 testing-x86_64/vendor.js |9 
 14 files changed, 1160 insertions(+)

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


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

2016-03-08 Thread Jan Steffens
Date: Tuesday, March 8, 2016 @ 21:33:19
  Author: heftig
Revision: 261227

6.9.3.7

Modified:
  imagemagick/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-08 20:32:15 UTC (rev 261226)
+++ PKGBUILD2016-03-08 20:33:19 UTC (rev 261227)
@@ -3,7 +3,7 @@
 
 pkgbase=imagemagick
 pkgname=('imagemagick' 'imagemagick-doc')
-pkgver=6.9.3.0
+pkgver=6.9.3.7
 pkgrel=1
 arch=('i686' 'x86_64')
 url="http://www.imagemagick.org/";
@@ -13,7 +13,7 @@
  'opencl-headers' 'libcl' 'libwebp' 'subversion' 'glu')
 
source=(http://www.imagemagick.org/download/ImageMagick-${pkgver%.*}-${pkgver##*.}.tar.xz{,.asc}
 perlmagick.rpath.patch)
-sha1sums=('452b65406edca58c0dd12e563997b90b257e65b1'
+sha1sums=('8797c074d3ae79283563f2e8e6784e3032378b23'
   'SKIP'
   'e143cf9d530fabf3b58023899b5cc544ba93daec')
 validpgpkeys=('D8272EF51DA223E4D05B466989AB63D48277377A')


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

2016-03-08 Thread Sébastien Luttringer
Date: Tuesday, March 8, 2016 @ 21:32:15
  Author: seblu
Revision: 261226

archrelease: copy trunk to extra-any

Added:
  wayland-protocols/repos/extra-any/PKGBUILD
(from rev 261225, wayland-protocols/trunk/PKGBUILD)
Deleted:
  wayland-protocols/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-03-08 20:32:01 UTC (rev 261225)
+++ PKGBUILD2016-03-08 20:32:15 UTC (rev 261226)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer 
-
-pkgname=wayland-protocols
-pkgver=1.1
-pkgrel=1
-pkgdesc='Specifications of extended Wayland protocols'
-arch=('any')
-url='http://wayland.freedesktop.org'
-license=('MIT')
-makedepends=('wayland')
-source=("http://wayland.freedesktop.org/releases/$pkgname-$pkgver.tar.xz";)
-sha1sums=('62313f05ca710062192cb7b323b3e612d07fdb9e')
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  make DESTDIR="$pkgdir" install
-  install -Dm 644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: wayland-protocols/repos/extra-any/PKGBUILD (from rev 261225, 
wayland-protocols/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-03-08 20:32:15 UTC (rev 261226)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Sébastien Luttringer 
+
+pkgname=wayland-protocols
+pkgver=1.2
+pkgrel=1
+pkgdesc='Specifications of extended Wayland protocols'
+arch=('any')
+url='http://wayland.freedesktop.org'
+license=('MIT')
+makedepends=('wayland')
+source=("http://wayland.freedesktop.org/releases/$pkgname-$pkgver.tar.xz";)
+sha1sums=('45433d32d78ed5967b21aee57ac95f35f2f599f4')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR="$pkgdir" install
+  install -Dm 644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
+}
+
+# vim:set ts=2 sw=2 et:


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

2016-03-08 Thread Sébastien Luttringer
Date: Tuesday, March 8, 2016 @ 21:32:01
  Author: seblu
Revision: 261225

upgpkg: wayland-protocols 1.2-1

Modified:
  wayland-protocols/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-08 20:29:02 UTC (rev 261224)
+++ PKGBUILD2016-03-08 20:32:01 UTC (rev 261225)
@@ -2,7 +2,7 @@
 # Maintainer: Sébastien Luttringer 
 
 pkgname=wayland-protocols
-pkgver=1.1
+pkgver=1.2
 pkgrel=1
 pkgdesc='Specifications of extended Wayland protocols'
 arch=('any')
@@ -10,7 +10,7 @@
 license=('MIT')
 makedepends=('wayland')
 source=("http://wayland.freedesktop.org/releases/$pkgname-$pkgver.tar.xz";)
-sha1sums=('62313f05ca710062192cb7b323b3e612d07fdb9e')
+sha1sums=('45433d32d78ed5967b21aee57ac95f35f2f599f4')
 
 build() {
   cd $pkgname-$pkgver


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

2016-03-08 Thread Jan Steffens
Date: Tuesday, March 8, 2016 @ 21:22:10
  Author: heftig
Revision: 261222

45.0

Modified:
  firefox-i18n/trunk/PKGBUILD

--+
 PKGBUILD |  182 ++---
 1 file changed, 92 insertions(+), 90 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-08 18:18:53 UTC (rev 261221)
+++ PKGBUILD2016-03-08 20:22:10 UTC (rev 261222)
@@ -5,7 +5,7 @@
 # Contributor: Andrea Scarpino 
 
 pkgbase=firefox-i18n
-pkgver=44.0
+pkgver=45.0
 pkgrel=1
 pkgdesc="Language pack for Firefox"
 arch=('any')
@@ -52,6 +52,7 @@
   'ga-IE  "Irish"'
   'gd "Gaelic (Scotland)"'
   'gl "Galician"'
+  'gn "Guarani"'
   'gu-IN  "Gujarati (India)"'
   'he "Hebrew"'
   'hi-IN  "Hindi (India)"'
@@ -129,92 +130,93 @@
 
"$pkgdir/usr/lib/firefox/browser/extensions/langpack-$1...@firefox.mozilla.org.xpi"
 }
 
-md5sums=('ad4bfc30ad73313cd440a79abe580a05'
- '1bdb81383a7429734e0b90277d43b1f4'
- '51fa9d3b2ca74cf1af97d55a2e28bbb9'
- '257396e1545cc8926c450bdba839a2ab'
- 'd070560bbaf20da20a9c2a3cc5a74d62'
- '6fa00f798f684b8c84b391bb531aa33b'
- '0b2410b71f5427aad93a54035b3a6a58'
- '555b62a11e24b8df71e17cad7f523f1a'
- 'b1a07bb058302cee3f86ecfba35638f5'
- '6c9b74297cd63862ef19e17efdc92189'
- '39fe34bf21752999592f77b5fcc10dda'
- '7d16a43078b385990fc2255473306058'
- '7d512b7009c013106d4bd1f4fd317ced'
- '8762374312244f00af9e109c1de2b93b'
- 'ddaa560b6d0607f1eef69cc58db99d3b'
- '788a0693108bebc0b5e393e02c6a5c24'
- '8392330b2f14479cf71c4ea0a2864b4c'
- '0654073f7626e84a07c9f53a41854ad5'
- 'a35a58618a26037e696fd9930a5901e4'
- 'fa97ad18d9824a8ba6ea6a2471c1ce03'
- '2bf3aa0f59697b487e9543a7b9a92c22'
- '9aa06cd22eb48160adbbcad236b9ed76'
- 'e2cd6953daa743fcd17c3c4d6c21c21f'
- '12c0c2374e3fb263525b9e2278e46fb2'
- '72d1e05ba10bbecd42e98baa087017f7'
- 'ce593eab5d0dc8154544e3ee7e1a8a29'
- 'a7e03197f7fc44ad760d64a477936841'
- '4b5fc52f41dd7d25686254b20eef8146'
- 'f9fc8a10a9bae22378231eca00e0f73d'
- 'a7ac21fbc3ab23f3fbc33b48a21cf5be'
- '268f45c4517d6619c74cf9cfba8d3ce9'
- '01b6e230b4dbdf4f927b899b6cf2d6cf'
- 'a797699679f553210e5e64614172c36f'
- '9f30c0591aeb92a83bb5b825d1758435'
- 'c88a57354b17558787e8eb9d3843151c'
- 'b2081b08285cb0cdc6cf96e291599b23'
- '379eb1dea120bb0692160fdb52b8854c'
- '92b48d64bca09a398a3f6b9fba958ce8'
- '10c7b1f56a950a083151073a3fa42578'
- '7e5d566d88bb1f21dffecc92e785de2f'
- '474ef84d993059b30e04903622495977'
- 'fc962f1e23240b910b459a2e48990f89'
- 'e9a5f78a990f1a4520d42b86f173ea5d'
- 'ea5af5ae3ae7fe6bb086add3c7cbcf89'
- '267061b29099911ce95a4028315252bc'
- '2dd4255264246f671b23d8ba0585189f'
- '52db1effd30219ef631031b133883449'
- '357e6a7fa931fe640eaa3e54fbebea52'
- 'cf7c8a5a0870042b74214f7a5b3e9860'
- '6e6c61efa4bff26a4e0ed717eea5971d'
- 'e976f33ca440a29a61db141ef581fbb1'
- '724f8589ebac08803baa728f0cd18cd3'
- '147ff5802147d9e25321707a72780184'
- '9b3a1411956d6d8fb5a26a12f8531bdf'
- 'd4becd651e993729742bea42c4897ad7'
- 'e9b9fde40816d4819f847a5a50d40baa'
- '4c797b54cc5b3bd41372241b3fe72978'
- '62ff636d4571cfc3228f17b30542530b'
- '35e78bd6541112a573cb2d955b4acc4a'
- '8269ab9a10249731f828fea1ca239efc'
- '3b425e1376f57294aef05269b8ed1e1e'
- '6917b3da4a9005b70cdc8bb0f4fa730b'
- '937248d9e3305cfc7838fd7e5599f9a6'
- '9edbf6ddbcde80567240d367aa5fedf8'
- '31e03d903a97a95252849e69be98a544'
- 'ac1319ac3742a9a8e9aa3df339d78669'
- 'f18e916a391c31737b523ad501210c86'
- 'b000b3761359da8c01151363c6ff03ab'
- 'ddc931b2ff4b293608984cd7fe040616'
- '0bf357f1dfa52ae8fa229646f82ed013'
- 'e2d2d7afbdbefbbf05bfc677afa8ba5a'
- 'fd7baad5f7d39686a2c00d8e25bd41a1'
- '49887cc84ab304770b2bc639e13a36c8'
- '7bb54d35509e8a8147ccf9b408211e55'
- '23cf3a56839c5c044d3a5b08def3422b'
- '917d039633d643cad1ff9c31b1c5774f'
- '2b60380926852cc3ee1a35f1b6f780be'
- 'dd47536a19f2b1efe251d91b43c0bd29'
- '903cdfa1e8035b20b4d9d6678172b910'
- '29632ae3da3576f1e62a99909ee70449'
- 'f9553854207719751014488de18257eb'
- '3f2ab64219785d4cf25a9336e37a13a1'
- 'e309d50d27302ba8466cc524a6b931fd'
- 'f0fe6f7ae1b66fbb1e5f9e6d20aa46d0'
- '3fe79dca86d99eb35f4476f41ed02dcb'
- 'be52d869c085fb3655b0180d18161421'
- 'ce9e74e468fcba5f46958abdaabe2817'
- 'ba58836fbf5368aaf9544d145f726204'
- '39a06a91ed38ab22e464358256820917')
+md5sums=('38b1fa50dca0d74c068c7fadf55b8a83'
+ '5cb

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

2016-03-08 Thread Sergej Pupykin
Date: Tuesday, March 8, 2016 @ 20:59:09
  Author: spupykin
Revision: 165624

Modified:
  libfastjson/trunk/PKGBUILD(properties)

Index: libfastjson/trunk/PKGBUILD
===
--- libfastjson/trunk/PKGBUILD  2016-03-08 19:51:18 UTC (rev 165623)
+++ libfastjson/trunk/PKGBUILD  2016-03-08 19:59:09 UTC (rev 165624)

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


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

2016-03-08 Thread Sergej Pupykin
Date: Tuesday, March 8, 2016 @ 20:51:18
  Author: spupykin
Revision: 165623

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

Added:
  rsyslog/repos/community-i686/PKGBUILD
(from rev 165622, rsyslog/trunk/PKGBUILD)
  rsyslog/repos/community-i686/rsyslog.conf
(from rev 165622, rsyslog/trunk/rsyslog.conf)
  rsyslog/repos/community-i686/rsyslog.logrotate
(from rev 165622, rsyslog/trunk/rsyslog.logrotate)
  rsyslog/repos/community-x86_64/PKGBUILD
(from rev 165622, rsyslog/trunk/PKGBUILD)
  rsyslog/repos/community-x86_64/rsyslog.conf
(from rev 165622, rsyslog/trunk/rsyslog.conf)
  rsyslog/repos/community-x86_64/rsyslog.logrotate
(from rev 165622, rsyslog/trunk/rsyslog.logrotate)
Deleted:
  rsyslog/repos/community-i686/PKGBUILD
  rsyslog/repos/community-i686/gnutls.patch
  rsyslog/repos/community-i686/rsyslog.conf
  rsyslog/repos/community-i686/rsyslog.logrotate
  rsyslog/repos/community-x86_64/PKGBUILD
  rsyslog/repos/community-x86_64/gnutls.patch
  rsyslog/repos/community-x86_64/rsyslog.conf
  rsyslog/repos/community-x86_64/rsyslog.logrotate

+
 /PKGBUILD  |  118 +++
 /rsyslog.conf  |   88 ++
 /rsyslog.logrotate |   14 
 community-i686/PKGBUILD|   62 --
 community-i686/gnutls.patch|   36 --
 community-i686/rsyslog.conf|   44 -
 community-i686/rsyslog.logrotate   |7 --
 community-x86_64/PKGBUILD  |   62 --
 community-x86_64/gnutls.patch  |   36 --
 community-x86_64/rsyslog.conf  |   44 -
 community-x86_64/rsyslog.logrotate |7 --
 11 files changed, 220 insertions(+), 298 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-03-08 19:32:55 UTC (rev 165622)
+++ community-i686/PKGBUILD 2016-03-08 19:51:18 UTC (rev 165623)
@@ -1,62 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-
-pkgname=rsyslog
-pkgver=8.16.0
-pkgrel=2
-pkgdesc="An enhanced multi-threaded syslogd with a focus on security and 
reliability"
-url="http://www.rsyslog.com/";
-arch=('i686' 'x86_64')
-license=('GPL3')
-depends=('zlib' 'libestr' 'libee' 'json-c' 'systemd' 'liblogging' 'librelp')
-makedepends=('postgresql-libs>=8.4.1' 'libmariadbclient' 'net-snmp' 'gnutls'
-'python-docutils')
-optdepends=('postgresql-libs: PostgreSQL Database Support'
-   'libmariadbclient: MySQL Database Support'
-   'net-snmp'
-   'gnutls')
-backup=('etc/rsyslog.conf'
-   'etc/logrotate.d/rsyslog')
-options=('strip' 'zipman')
-source=("http://www.rsyslog.com/files/download/rsyslog/rsyslog-$pkgver.tar.gz";
-   'rsyslog.logrotate'
-   'rsyslog.conf'
-   'gnutls.patch')
-md5sums=('52916045c07ebbd3ee77c39e8465bc4d'
- '0d990373f5c70ddee989296007b4df5b'
- 'd61dd424e660eb16401121eed20d98bc'
- 'aafafdf4502f5e4de5fcfebd21499700')
-
-prepare() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-#  patch -p1 <$srcdir/gnutls.patch
-  sed -i rsyslog.service.in \
--e 's|rsyslogd -n|rsyslogd -n -i /run/rsyslogd.pid|' \
--e '/ExecStart=.*$/iPIDFile=/run/rsyslogd.pid'
-}
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr \
-  --sbindir=/usr/bin \
-  --enable-mysql \
-  --enable-pgsql \
-  --enable-mail \
-  --enable-imfile \
-  --enable-snmp \
-  --enable-gnutls \
-  --enable-inet \
-  --enable-imjournal \
-  --enable-omjournal \
-  --enable-relp \
-  --enable-impstats \
-  --with-systemdsystemunitdir=/usr/lib/systemd/system
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make install DESTDIR=${pkgdir}
-  install -D -m644 $srcdir/${pkgname}.conf ${pkgdir}/etc/${pkgname}.conf
-  install -D -m644 $srcdir/${pkgname}.logrotate 
${pkgdir}/etc/logrotate.d/${pkgname}
-}

Copied: rsyslog/repos/community-i686/PKGBUILD (from rev 165622, 
rsyslog/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-03-08 19:51:18 UTC (rev 165623)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+
+pkgname=rsyslog
+pkgver=8.17.0
+pkgrel=1
+pkgdesc="An enhanced multi-threaded syslogd with a focus on security and 
reliability"
+url="http://www.rsyslog.com/";
+arch=('i686' 'x86_64')
+license=('GPL3')
+depends=('zlib' 'libestr' 'libee' 'json-c' 'systemd' 'liblogging' 'librelp' 
'libfastjson')
+makedepends=('postgresql-libs>=8.4.1' 'libmariadbclient' 'net-snmp' 'gnutls'
+'python-docutils')
+optdepends=('postgresql-libs: PostgreSQL Database Support'
+   'libmariadbclient: MySQL Datab

[arch-commits] Commit in rsyslog/trunk (PKGBUILD gnutls.patch)

2016-03-08 Thread Sergej Pupykin
Date: Tuesday, March 8, 2016 @ 20:32:55
  Author: spupykin
Revision: 165622

upgpkg: rsyslog 8.17.0-1

upd

Modified:
  rsyslog/trunk/PKGBUILD
Deleted:
  rsyslog/trunk/gnutls.patch

--+
 PKGBUILD |   15 ++-
 gnutls.patch |   36 
 2 files changed, 6 insertions(+), 45 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-08 19:28:36 UTC (rev 165621)
+++ PKGBUILD2016-03-08 19:32:55 UTC (rev 165622)
@@ -2,13 +2,13 @@
 # Maintainer: Sergej Pupykin 
 
 pkgname=rsyslog
-pkgver=8.16.0
-pkgrel=2
+pkgver=8.17.0
+pkgrel=1
 pkgdesc="An enhanced multi-threaded syslogd with a focus on security and 
reliability"
 url="http://www.rsyslog.com/";
 arch=('i686' 'x86_64')
 license=('GPL3')
-depends=('zlib' 'libestr' 'libee' 'json-c' 'systemd' 'liblogging' 'librelp')
+depends=('zlib' 'libestr' 'libee' 'json-c' 'systemd' 'liblogging' 'librelp' 
'libfastjson')
 makedepends=('postgresql-libs>=8.4.1' 'libmariadbclient' 'net-snmp' 'gnutls'
 'python-docutils')
 optdepends=('postgresql-libs: PostgreSQL Database Support'
@@ -20,16 +20,13 @@
 options=('strip' 'zipman')
 source=("http://www.rsyslog.com/files/download/rsyslog/rsyslog-$pkgver.tar.gz";
'rsyslog.logrotate'
-   'rsyslog.conf'
-   'gnutls.patch')
-md5sums=('52916045c07ebbd3ee77c39e8465bc4d'
+   'rsyslog.conf')
+md5sums=('fadc26576a783afdf11f64beca278bc9'
  '0d990373f5c70ddee989296007b4df5b'
- 'd61dd424e660eb16401121eed20d98bc'
- 'aafafdf4502f5e4de5fcfebd21499700')
+ 'd61dd424e660eb16401121eed20d98bc')
 
 prepare() {
   cd ${srcdir}/${pkgname}-${pkgver}
-#  patch -p1 <$srcdir/gnutls.patch
   sed -i rsyslog.service.in \
 -e 's|rsyslogd -n|rsyslogd -n -i /run/rsyslogd.pid|' \
 -e '/ExecStart=.*$/iPIDFile=/run/rsyslogd.pid'

Deleted: gnutls.patch
===
--- gnutls.patch2016-03-08 19:28:36 UTC (rev 165621)
+++ gnutls.patch2016-03-08 19:32:55 UTC (rev 165622)
@@ -1,36 +0,0 @@
-diff -wbBur rsyslog-8.9.0.org/runtime/nsd_gtls.c 
rsyslog-8.9.0/runtime/nsd_gtls.c
 rsyslog-8.9.0.org/runtime/nsd_gtls.c   2015-03-29 16:00:04.0 
+0300
-+++ rsyslog-8.9.0/runtime/nsd_gtls.c   2015-04-16 15:42:44.701275194 +0300
-@@ -231,13 +231,13 @@
- gtlsClientCertCallback(gnutls_session_t session,
-   __attribute__((unused)) const gnutls_datum_t* req_ca_rdn, int 
__attribute__((unused)) nreqs,
-   __attribute__((unused)) const gnutls_pk_algorithm_t* 
sign_algos, int __attribute__((unused)) sign_algos_length,
--  gnutls_retr_st *st)
-+  gnutls_retr2_st *st)
- {
-   nsd_gtls_t *pThis;
- 
-   pThis = (nsd_gtls_t*) gnutls_session_get_ptr(session);
- 
--  st->type = GNUTLS_CRT_X509;
-+  st->cert_type = GNUTLS_CRT_X509;
-   st->ncerts = 1;
-   st->cert.x509 = &pThis->ourCert;
-   st->key.x509 = pThis->ourKey;
-@@ -1673,14 +1673,14 @@
-   gnutls_session_set_ptr(pThis->sess, (void*)pThis);
-   iRet = gtlsLoadOurCertKey(pThis); /* first load .pem files */
-   if(iRet == RS_RET_OK) {
--  gnutls_certificate_client_set_retrieve_function(xcred, 
gtlsClientCertCallback);
-+  gnutls_certificate_set_retrieve_function(xcred, 
gtlsClientCertCallback);
-   } else if(iRet != RS_RET_CERTLESS) {
-   FINALIZE; /* we have an error case! */
-   }
- 
-   /* Use default priorities */
-   CHKgnutls(gnutls_set_default_priority(pThis->sess));
--  CHKgnutls(gnutls_certificate_type_set_priority(pThis->sess, 
cert_type_priority));
-+  CHKgnutls(gnutls_set_default_priority(pThis->sess));
- 
-   /* put the x509 credentials to the current session */
-   CHKgnutls(gnutls_credentials_set(pThis->sess, GNUTLS_CRD_CERTIFICATE, 
xcred));


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

2016-03-08 Thread Sergej Pupykin
Date: Tuesday, March 8, 2016 @ 20:28:36
  Author: spupykin
Revision: 165621

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

Added:
  libfastjson/repos/community-i686/
  libfastjson/repos/community-i686/PKGBUILD
(from rev 165620, libfastjson/trunk/PKGBUILD)
  libfastjson/repos/community-x86_64/
  libfastjson/repos/community-x86_64/PKGBUILD
(from rev 165620, libfastjson/trunk/PKGBUILD)

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

Copied: libfastjson/repos/community-i686/PKGBUILD (from rev 165620, 
libfastjson/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-03-08 19:28:36 UTC (rev 165621)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Bob Gregory 
+
+pkgname=libfastjson
+pkgver=0.99.2
+pkgrel=1
+pkgdesc="A performance-focused json library for C"
+arch=('i686' 'x86_64')
+url="https://github.com/rsyslog/libfastjson";
+license=('GPL')
+depends=()
+source=(https://github.com/rsyslog/$pkgname/archive/v$pkgver.tar.gz)
+md5sums=('72c71fcc8ca9f6d2fd84a42f27f21124')
+
+build() {
+  cd "$pkgname-$pkgver"
+  autoreconf -fvi
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir/" install
+}

Copied: libfastjson/repos/community-x86_64/PKGBUILD (from rev 165620, 
libfastjson/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-03-08 19:28:36 UTC (rev 165621)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Bob Gregory 
+
+pkgname=libfastjson
+pkgver=0.99.2
+pkgrel=1
+pkgdesc="A performance-focused json library for C"
+arch=('i686' 'x86_64')
+url="https://github.com/rsyslog/libfastjson";
+license=('GPL')
+depends=()
+source=(https://github.com/rsyslog/$pkgname/archive/v$pkgver.tar.gz)
+md5sums=('72c71fcc8ca9f6d2fd84a42f27f21124')
+
+build() {
+  cd "$pkgname-$pkgver"
+  autoreconf -fvi
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir/" install
+}


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

2016-03-08 Thread Sergej Pupykin
Date: Tuesday, March 8, 2016 @ 20:14:15
  Author: spupykin
Revision: 165620

upgpkg: libfastjson 0.99.2-1

upd

Modified:
  libfastjson/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-08 19:09:24 UTC (rev 165619)
+++ PKGBUILD2016-03-08 19:14:15 UTC (rev 165620)
@@ -11,7 +11,7 @@
 license=('GPL')
 depends=()
 source=(https://github.com/rsyslog/$pkgname/archive/v$pkgver.tar.gz)
-md5sums=('205b35b870ea60621923814edb4f5a94')
+md5sums=('72c71fcc8ca9f6d2fd84a42f27f21124')
 
 build() {
   cd "$pkgname-$pkgver"


[arch-commits] Commit in libfastjson (.SRCINFO)

2016-03-08 Thread Sergej Pupykin
Date: Tuesday, March 8, 2016 @ 20:09:24
  Author: spupykin
Revision: 165619

Deleted:
  libfastjson/.SRCINFO

--+
 .SRCINFO |   14 --
 1 file changed, 14 deletions(-)

Deleted: .SRCINFO
===
--- .SRCINFO2016-03-08 19:08:01 UTC (rev 165618)
+++ .SRCINFO2016-03-08 19:09:24 UTC (rev 165619)
@@ -1,14 +0,0 @@
-# Generated by mksrcinfo v8
-# Fri Feb  5 10:11:52 UTC 2016
-pkgbase = libfastjson
-   pkgdesc = A performance-focused json library for C
-   pkgver = 0.99.0
-   pkgrel = 1
-   arch = i686
-   arch = x86_64
-   license = GPL
-   source = https://github.com/rsyslog/libfastjson/archive/v0.99.0.tar.gz
-   md5sums = 205b35b870ea60621923814edb4f5a94
-
-pkgname = libfastjson
-


[arch-commits] Commit in (5 files)

2016-03-08 Thread Sergej Pupykin
Date: Tuesday, March 8, 2016 @ 20:08:01
  Author: spupykin
Revision: 165618

Added:
  libfastjson/
  libfastjson/.SRCINFO
  libfastjson/repos/
  libfastjson/trunk/
  libfastjson/trunk/PKGBUILD

+
 .SRCINFO   |   14 ++
 trunk/PKGBUILD |   26 ++
 2 files changed, 40 insertions(+)

Added: libfastjson/.SRCINFO
===
--- libfastjson/.SRCINFO(rev 0)
+++ libfastjson/.SRCINFO2016-03-08 19:08:01 UTC (rev 165618)
@@ -0,0 +1,14 @@
+# Generated by mksrcinfo v8
+# Fri Feb  5 10:11:52 UTC 2016
+pkgbase = libfastjson
+   pkgdesc = A performance-focused json library for C
+   pkgver = 0.99.0
+   pkgrel = 1
+   arch = i686
+   arch = x86_64
+   license = GPL
+   source = https://github.com/rsyslog/libfastjson/archive/v0.99.0.tar.gz
+   md5sums = 205b35b870ea60621923814edb4f5a94
+
+pkgname = libfastjson
+

Added: libfastjson/trunk/PKGBUILD
===
--- libfastjson/trunk/PKGBUILD  (rev 0)
+++ libfastjson/trunk/PKGBUILD  2016-03-08 19:08:01 UTC (rev 165618)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Bob Gregory 
+
+pkgname=libfastjson
+pkgver=0.99.2
+pkgrel=1
+pkgdesc="A performance-focused json library for C"
+arch=('i686' 'x86_64')
+url="https://github.com/rsyslog/libfastjson";
+license=('GPL')
+depends=()
+source=(https://github.com/rsyslog/$pkgname/archive/v$pkgver.tar.gz)
+md5sums=('205b35b870ea60621923814edb4f5a94')
+
+build() {
+  cd "$pkgname-$pkgver"
+  autoreconf -fvi
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir/" install
+}


[arch-commits] Commit in opencv/trunk (opencv-ffmpeg3.patch)

2016-03-08 Thread Bartłomiej Piotrowski
Date: Tuesday, March 8, 2016 @ 19:18:53
  Author: bpiotrowski
Revision: 261221

Remove not used patch

Deleted:
  opencv/trunk/opencv-ffmpeg3.patch

--+
 opencv-ffmpeg3.patch |  217 -
 1 file changed, 217 deletions(-)

Deleted: opencv-ffmpeg3.patch
===
--- opencv-ffmpeg3.patch2016-03-08 18:07:02 UTC (rev 261220)
+++ opencv-ffmpeg3.patch2016-03-08 18:18:53 UTC (rev 261221)
@@ -1,217 +0,0 @@
 opencv-2.4.9.1+dfsg.orig/modules/highgui/src/cap_ffmpeg_impl.hpp
-+++ opencv-2.4.9.1+dfsg/modules/highgui/src/cap_ffmpeg_impl.hpp
-@@ -136,9 +136,9 @@ extern "C" {
- #define CV_WARN(message) fprintf(stderr, "warning: %s (%s:%d)\n", message, 
__FILE__, __LINE__)
- #endif
- 
--/* PIX_FMT_RGBA32 macro changed in newer ffmpeg versions */
--#ifndef PIX_FMT_RGBA32
--#define PIX_FMT_RGBA32 PIX_FMT_RGB32
-+/* AV_PIX_FMT_RGBA32 macro changed in newer ffmpeg versions */
-+#ifndef AV_PIX_FMT_RGBA32
-+#define AV_PIX_FMT_RGBA32 AV_PIX_FMT_RGB32
- #endif
- 
- #define CALC_FFMPEG_VERSION(a,b,c) ( a<<16 | b<<8 | c )
-@@ -304,7 +304,7 @@ {
- // FFmpeg and Libav added avcodec_free_frame in different versions.
- #if LIBAVCODEC_BUILD >= (LIBAVCODEC_VERSION_MICRO >= 100 \
- ? CALC_FFMPEG_VERSION(54, 59, 100) : CALC_FFMPEG_VERSION(54, 28, 0))
--avcodec_free_frame(&picture);
-+av_frame_free(&picture);
- #else
- av_free(picture);
- #endif
-@@ -572,13 +572,13 @@ bool CvCapture_FFMPEG::open( const char*
- 
- video_stream = i;
- video_st = ic->streams[i];
--picture = avcodec_alloc_frame();
-+picture = av_frame_alloc();
- 
- rgb_picture.data[0] = (uint8_t*)malloc(
--avpicture_get_size( PIX_FMT_BGR24,
-+avpicture_get_size( AV_PIX_FMT_BGR24,
- enc->width, enc->height ));
- avpicture_fill( (AVPicture*)&rgb_picture, rgb_picture.data[0],
--PIX_FMT_BGR24, enc->width, enc->height );
-+AV_PIX_FMT_BGR24, enc->width, enc->height );
- 
- frame.width = enc->width;
- frame.height = enc->height;
-@@ -670,7 +670,7 @@ bool CvCapture_FFMPEG::retrieveFrame(int
- if( !video_st || !picture->data[0] )
- return false;
- 
--avpicture_fill((AVPicture*)&rgb_picture, rgb_picture.data[0], 
PIX_FMT_RGB24,
-+avpicture_fill((AVPicture*)&rgb_picture, rgb_picture.data[0], 
AV_PIX_FMT_RGB24,
-video_st->codec->width, video_st->codec->height);
- 
- if( img_convert_ctx == NULL ||
-@@ -688,7 +688,7 @@ bool CvCapture_FFMPEG::retrieveFrame(int
- video_st->codec->width, video_st->codec->height,
- video_st->codec->pix_fmt,
- video_st->codec->width, video_st->codec->height,
--PIX_FMT_BGR24,
-+AV_PIX_FMT_BGR24,
- SWS_BICUBIC,
- NULL, NULL, NULL
- );
-@@ -1001,10 +1001,10 @@ static AVFrame * icv_alloc_picture_FFMPE
- uint8_t * picture_buf;
- int size;
- 
--picture = avcodec_alloc_frame();
-+picture = av_frame_alloc();
- if (!picture)
- return NULL;
--size = avpicture_get_size( (PixelFormat) pix_fmt, width, height);
-+size = avpicture_get_size( (AVPixelFormat) pix_fmt, width, height);
- if(alloc){
- picture_buf = (uint8_t *) malloc(size);
- if (!picture_buf)
-@@ -1013,7 +1013,7 @@ static AVFrame * icv_alloc_picture_FFMPE
- return NULL;
- }
- avpicture_fill((AVPicture *)picture, picture_buf,
--   (PixelFormat) pix_fmt, width, height);
-+   (AVPixelFormat) pix_fmt, width, height);
- }
- else {
- }
-@@ -1096,7 +1096,7 @@ static AVStream *icv_add_video_stream_FF
- }
- 
- c->gop_size = 12; /* emit one intra frame every twelve frames at most */
--c->pix_fmt = (PixelFormat) pixel_format;
-+c->pix_fmt = (AVPixelFormat) pixel_format;
- 
- if (c->codec_id == CV_CODEC(CODEC_ID_MPEG2VIDEO)) {
- c->max_b_frames = 2;
-@@ -1220,12 +1220,12 @@ bool CvVideoWriter_FFMPEG::writeFrame( c
- }
- 
- // check parameters
--if (input_pix_fmt == PIX_FMT_BGR24) {
-+if (input_pix_fmt == AV_PIX_FMT_BGR24) {
- if (cn != 3) {
- return false;
- }
- }
--else if (input_pix_fmt == PIX_FMT_GRAY8) {
-+else if (input_pix_fmt == AV_PIX_FMT_GRAY8) {
- if (cn != 1) {
- return false;
- }
-@@ -1238,13 +1238,13 @@ bool CvVideoWriter_FFMPEG::writeFrame( c
- assert( input_picture );
- // let input_picture point to the raw data buffer of 'image'
- avpicture_fill((AVPicture *)input_picture, (uint8_t *) data,
--   (PixelFormat)input_pix_fmt, width, height);
-+  

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

2016-03-08 Thread Jan Steffens
Date: Tuesday, March 8, 2016 @ 19:07:02
  Author: heftig
Revision: 261220

45.0

Added:
  firefox/trunk/firefox-symbolic.svg
Modified:
  firefox/trunk/PKGBUILD
Deleted:
  firefox/trunk/firefox-quicktime.patch

-+
 PKGBUILD|   17 ++---
 firefox-quicktime.patch |  144 --
 firefox-symbolic.svg|   30 +
 3 files changed, 38 insertions(+), 153 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-08 17:42:50 UTC (rev 261219)
+++ PKGBUILD2016-03-08 18:07:02 UTC (rev 261220)
@@ -3,14 +3,14 @@
 # Contributor: Jakub Schmidtke 
 
 pkgname=firefox
-pkgver=44.0.2
-pkgrel=2
+pkgver=45.0
+pkgrel=1
 pkgdesc="Standalone web browser from mozilla.org"
 arch=('i686' 'x86_64')
 license=('MPL' 'GPL' 'LGPL')
 url="https://www.mozilla.org/firefox/";
 depends=('gtk3' 'gtk2' 'mozilla-common' 'libxt' 'startup-notification' 
'mime-types'
- 'dbus-glib' 'alsa-lib' 'ffmpeg2.8' 'desktop-file-utils' 
'hicolor-icon-theme'
+ 'dbus-glib' 'alsa-lib' 'ffmpeg' 'desktop-file-utils' 
'hicolor-icon-theme'
  'libvpx' 'icu' 'libevent' 'nss' 'hunspell' 'sqlite' 'ttf-font')
 makedepends=('unzip' 'zip' 'diffutils' 'python2' 'yasm' 'mesa' 'imake' 'gconf'
  'xorg-server-xvfb' 'libpulse' 'inetutils')
@@ -23,14 +23,14 @@
 firefox.desktop
 firefox-install-dir.patch
 vendor.js
-firefox-quicktime.patch
+firefox-symbolic.svg
 firefox-fixed-loading-icon.png)
-sha256sums=('0bb28841a9268c50cbb239f759f16f55b3a624f679c68965158beaa0a83a2d9e'
+sha256sums=('36ab0f09b1b1df071a8aafa673c6286d99c18dc06cecbb70d1bb2021fbf379f1'
 'a7a5dffa8df27a8f4d1e034c5fc10b39d69068be92ee3f40e8ee7980a68655a6'
 'c202e5e18da1eeddd2e1d81cb3436813f11e44585ca7357c4c5f1bddd4bec826'
 'd86e41d87363656ee62e12543e2f5181aadcff448e406ef3218e91865ae775cd'
 '4b50e9aec03432e21b44d18c4c97b2630bace606b033f7d556c9d3e3eb0f4fa4'
-'6b731ca36e7688aeb24685da702e0af0475e6671072fc96464fbbed49d0bbd50'
+'a2474b32b9b2d7e0fb53a4c89715507ad1c194bef77713d798fa39d507def9e9'
 '68e3a5b47c6d175cc95b98b069a15205f027cab83af9e075818d38610feb6213')
 validpgpkeys=('2B90598A745E992F315E22C58AB132963A06537A')
 
@@ -52,9 +52,6 @@
 prepare() {
   cd $pkgname-$pkgver
 
-  # https://bugzilla.mozilla.org/show_bug.cgi?id=1244523
-  patch -Np1 -i ../firefox-quicktime.patch
-
   cp ../mozconfig .mozconfig
   patch -Np1 -i ../firefox-install-dir.patch
 
@@ -111,6 +108,8 @@
 "$pkgdir/usr/share/icons/hicolor/192x192/apps/firefox.png"
   install -Dm644 browser/branding/official/content/about-l...@2x.png \
 "$pkgdir/usr/share/icons/hicolor/384x384/apps/firefox.png"
+  install -Dm644 ../firefox-symbolic.svg \
+"$pkgdir/usr/share/icons/hicolor/symbolic/apps/firefox-symbolic.svg"
 
   install -Dm644 ../firefox.desktop \
 "$pkgdir/usr/share/applications/firefox.desktop"

Deleted: firefox-quicktime.patch
===
--- firefox-quicktime.patch 2016-03-08 17:42:50 UTC (rev 261219)
+++ firefox-quicktime.patch 2016-03-08 18:07:02 UTC (rev 261220)
@@ -1,144 +0,0 @@
-
-# HG changeset patch
-# User John Lin 
-# Date 1447265580 -3600
-# Node ID aeb7ece8cbd40280f27ec3631f4f9e5b8b52c5a9
-# Parent  22d372a893d764554af0edb7e47f817af93b2114
-Bug 1211802 - Recognize 'avc?' as mp4 video. r=jya
-
-diff --git a/toolkit/components/mediasniffer/nsMediaSniffer.cpp 
b/toolkit/components/mediasniffer/nsMediaSniffer.cpp
 a/toolkit/components/mediasniffer/nsMediaSniffer.cpp
-+++ b/toolkit/components/mediasniffer/nsMediaSniffer.cpp
-@@ -36,16 +36,17 @@ nsMediaSnifferEntry nsMediaSniffer::sSni
-   PATTERN_ENTRY("\xFF\xFF\xFF\xFF\x00\x00\x00\x00\xFF\xFF\xFF\xFF", 
"RIFF\x00\x00\x00\x00WAVE", AUDIO_WAV),
-   // mp3 with ID3 tags, the string "ID3".
-   PATTERN_ENTRY("\xFF\xFF\xFF", "ID3", AUDIO_MP3)
- };
- 
- // For a complete list of file types, see http://www.ftyps.com/index.html
- nsMediaSnifferEntry sFtypEntries[] = {
-   PATTERN_ENTRY("\xFF\xFF\xFF", "mp4", VIDEO_MP4), // Could be mp41 or mp42.
-+  PATTERN_ENTRY("\xFF\xFF\xFF", "avc", VIDEO_MP4), // Could be avc1, avc2, ...
-   PATTERN_ENTRY("\xFF\xFF\xFF", "3gp", VIDEO_3GPP), // Could be 3gp4, 3gp5, 
...
-   PATTERN_ENTRY("\xFF\xFF\xFF\xFF", "M4A ", AUDIO_MP4),
-   PATTERN_ENTRY("\xFF\xFF\xFF\xFF", "M4P ", AUDIO_MP4)
- };
- 
- static bool MatchesBrands(const uint8_t aData[4], nsACString& aSniffedType)
- {
-   for (size_t i = 0; i < mozilla::ArrayLength(sFtypEntries); ++i) {
-
-
-# HG changeset patch
-# User Jean-Yves Avenard 
-# Date 1454373529 -39600
-# Node ID f7d66b2782266c066f2efecc9f066af01472ffb5
-# Parent  b237f1bffcfd9b7c7da767ffa54dbf4ed7b68321
-Bug 1244523: P1. Allow video/quicktime mimetype. r=cpearce
-
-It's just like video/mp4
-
-
-diff --git a/dom/media/fmp4/MP4Decoder.cpp b/dom/media/f

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

2016-03-08 Thread Bartłomiej Piotrowski
Date: Tuesday, March 8, 2016 @ 18:42:32
  Author: bpiotrowski
Revision: 261218

upgpkg: opencv 3.1.0-1

new upstream release

Modified:
  opencv/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-08 11:52:25 UTC (rev 261217)
+++ PKGBUILD2016-03-08 17:42:32 UTC (rev 261218)
@@ -4,7 +4,7 @@
 
 pkgbase=opencv
 pkgname=('opencv' 'opencv-samples')
-pkgver=2.4.12.3
+pkgver=3.1.0
 pkgrel=1
 pkgdesc="Open Source Computer Vision Library"
 arch=('i686' 'x86_64')
@@ -11,15 +11,15 @@
 license=('BSD')
 url="http://opencv.org/";
 depends=('intel-tbb' 'openexr' 'xine-lib' 'libdc1394' 'gtkglext')
-makedepends=('cmake' 'python2-numpy' 'mesa' 'eigen2')
+makedepends=('cmake' 'python-numpy' 'python2-numpy' 'mesa' 'eigen')
 optdepends=('opencv-samples'
-'eigen2'
+'eigen'
 'libcl: For coding with OpenCL'
-'python2-numpy: Python 2.x interface')
+'python-numpy: Python 3 interface'
+'python2-numpy: Python 2 interface')
 #source=("http://downloads.sourceforge.net/opencvlibrary/$pkgname-$pkgver.zip";)
-source=("$pkgbase-$pkgver::https://github.com/Itseez/opencv/archive/$pkgver.zip";
 opencv-ffmpeg3.patch)
-md5sums=('eaede6500e9c2d56683196b0576db1f7'
- 'c752f3e83ebb021171fdd04aa7fb2e5a')
+source=("$pkgbase-$pkgver::https://github.com/Itseez/opencv/archive/$pkgver.zip";)
+md5sums=('6082ee2124d4066581a7386972bfd52a')
 
 _cmakeopts=('-D WITH_OPENCL=ON'
 '-D WITH_OPENGL=ON'
@@ -34,7 +34,8 @@
 '-D INSTALL_PYTHON_EXAMPLES=ON'
 '-D CMAKE_BUILD_TYPE=Release'
 '-D CMAKE_INSTALL_PREFIX=/usr'
-'-D CMAKE_SKIP_RPATH=ON')
+'-D CMAKE_SKIP_RPATH=ON'
+'-D BUILD_NEW_PYTHON_SUPPORT=ON')
 
 # SSE only available from Pentium 3 onwards (i686 is way older)
 [[ "$CARCH" = 'i686' ]] && \
@@ -42,15 +43,6 @@
'-D ENABLE_SSE2=OFF'
'-D ENABLE_SSE3=OFF')
 
-# all x64 CPUs support SSE2 but not SSE3
-[[ "$CARCH" = 'x86_64' ]] && _cmakeopts+=('-D ENABLE_SSE3=OFF')
-
-prepare() {
-  cd $pkgname-$pkgver
-# Fix build with ffmpeg 3.0 (Debian)
-  patch -p1 -i ../opencv-ffmpeg3.patch
-}
-
 build() {
   cd "$srcdir/$pkgname-$pkgver"
 


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

2016-03-08 Thread Bartłomiej Piotrowski
Date: Tuesday, March 8, 2016 @ 18:42:50
  Author: bpiotrowski
Revision: 261219

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

Added:
  opencv/repos/staging-i686/
  opencv/repos/staging-i686/PKGBUILD
(from rev 261218, opencv/trunk/PKGBUILD)
  opencv/repos/staging-i686/opencv-ffmpeg3.patch
(from rev 261218, opencv/trunk/opencv-ffmpeg3.patch)
  opencv/repos/staging-x86_64/
  opencv/repos/staging-x86_64/PKGBUILD
(from rev 261218, opencv/trunk/PKGBUILD)
  opencv/repos/staging-x86_64/opencv-ffmpeg3.patch
(from rev 261218, opencv/trunk/opencv-ffmpeg3.patch)

-+
 staging-i686/PKGBUILD   |   89 +
 staging-i686/opencv-ffmpeg3.patch   |  217 ++
 staging-x86_64/PKGBUILD |   89 +
 staging-x86_64/opencv-ffmpeg3.patch |  217 ++
 4 files changed, 612 insertions(+)

Copied: opencv/repos/staging-i686/PKGBUILD (from rev 261218, 
opencv/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-03-08 17:42:50 UTC (rev 261219)
@@ -0,0 +1,89 @@
+# $Id$
+# Maintainer: Ray Rashif 
+# Contributor: Tobias Powalowski 
+
+pkgbase=opencv
+pkgname=('opencv' 'opencv-samples')
+pkgver=3.1.0
+pkgrel=1
+pkgdesc="Open Source Computer Vision Library"
+arch=('i686' 'x86_64')
+license=('BSD')
+url="http://opencv.org/";
+depends=('intel-tbb' 'openexr' 'xine-lib' 'libdc1394' 'gtkglext')
+makedepends=('cmake' 'python-numpy' 'python2-numpy' 'mesa' 'eigen')
+optdepends=('opencv-samples'
+'eigen'
+'libcl: For coding with OpenCL'
+'python-numpy: Python 3 interface'
+'python2-numpy: Python 2 interface')
+#source=("http://downloads.sourceforge.net/opencvlibrary/$pkgname-$pkgver.zip";)
+source=("$pkgbase-$pkgver::https://github.com/Itseez/opencv/archive/$pkgver.zip";)
+md5sums=('6082ee2124d4066581a7386972bfd52a')
+
+_cmakeopts=('-D WITH_OPENCL=ON'
+'-D WITH_OPENGL=ON'
+'-D WITH_TBB=ON'
+'-D WITH_XINE=ON'
+'-D WITH_GSTREAMER=OFF'
+'-D BUILD_WITH_DEBUG_INFO=OFF'
+'-D BUILD_TESTS=OFF'
+'-D BUILD_PERF_TESTS=OFF'
+'-D BUILD_EXAMPLES=ON'
+'-D INSTALL_C_EXAMPLES=ON'
+'-D INSTALL_PYTHON_EXAMPLES=ON'
+'-D CMAKE_BUILD_TYPE=Release'
+'-D CMAKE_INSTALL_PREFIX=/usr'
+'-D CMAKE_SKIP_RPATH=ON'
+'-D BUILD_NEW_PYTHON_SUPPORT=ON')
+
+# SSE only available from Pentium 3 onwards (i686 is way older)
+[[ "$CARCH" = 'i686' ]] && \
+  _cmakeopts+=('-D ENABLE_SSE=OFF'
+   '-D ENABLE_SSE2=OFF'
+   '-D ENABLE_SSE3=OFF')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  cmake ${_cmakeopts[@]} .
+
+  make
+}
+
+package_opencv() {
+  options=('staticlibs')
+
+  cd "$srcdir/$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+
+  # install license file
+  install -Dm644 "$srcdir/$pkgname-$pkgver/LICENSE" \
+"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  cd "$pkgdir/usr/share"
+
+  # separate samples package; also be -R friendly
+  if [[ -d OpenCV/samples ]]; then
+mv OpenCV/samples "$srcdir/$pkgname-samples"
+mv OpenCV $pkgname # otherwise folder naming is inconsistent
+  elif [[ ! -d OpenCV ]]; then
+warning "Directory naming issue; samples package may not be built!"
+  fi
+}
+
+package_opencv-samples() {
+  pkgdesc+=" (samples)"
+  depends=("opencv=$pkgver") # sample codes change with lib/API
+  unset optdepends
+
+  mkdir -p "$pkgdir/usr/share/opencv"
+  cp -r "$srcdir/opencv-samples" "$pkgdir/usr/share/opencv/samples"
+
+  # install license file
+  install -Dm644 "$srcdir/opencv-$pkgver/LICENSE" \
+"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: opencv/repos/staging-i686/opencv-ffmpeg3.patch (from rev 261218, 
opencv/trunk/opencv-ffmpeg3.patch)
===
--- staging-i686/opencv-ffmpeg3.patch   (rev 0)
+++ staging-i686/opencv-ffmpeg3.patch   2016-03-08 17:42:50 UTC (rev 261219)
@@ -0,0 +1,217 @@
+--- opencv-2.4.9.1+dfsg.orig/modules/highgui/src/cap_ffmpeg_impl.hpp
 opencv-2.4.9.1+dfsg/modules/highgui/src/cap_ffmpeg_impl.hpp
+@@ -136,9 +136,9 @@ extern "C" {
+ #define CV_WARN(message) fprintf(stderr, "warning: %s (%s:%d)\n", message, 
__FILE__, __LINE__)
+ #endif
+ 
+-/* PIX_FMT_RGBA32 macro changed in newer ffmpeg versions */
+-#ifndef PIX_FMT_RGBA32
+-#define PIX_FMT_RGBA32 PIX_FMT_RGB32
++/* AV_PIX_FMT_RGBA32 macro changed in newer ffmpeg versions */
++#ifndef AV_PIX_FMT_RGBA32
++#define AV_PIX_FMT_RGBA32 AV_PIX_FMT_RGB32
+ #endif
+ 
+ #define CALC_FFMPEG_VERSION(a,b,c) ( a<<16 | b<<8 | c )
+@@ -304,7 +304,7 @@ {
+ // FFmpeg and Libav added avcodec_free_frame in different versions.
+ #

[arch-commits] Commit in owncloud-app-contacts/trunk (PKGBUILD)

2016-03-08 Thread Sergej Pupykin
Date: Tuesday, March 8, 2016 @ 16:54:26
  Author: spupykin
Revision: 165616

upgpkg: owncloud-app-contacts 2:1.0.0.0-1

upd

Modified:
  owncloud-app-contacts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-08 15:42:01 UTC (rev 165615)
+++ PKGBUILD2016-03-08 15:54:26 UTC (rev 165616)
@@ -3,7 +3,7 @@
 
 pkgname=owncloud-app-contacts
 epoch=2
-pkgver=0.0.0.3
+pkgver=1.0.0.0
 pkgrel=1
 pkgdesc="Contacts app for owncloud"
 arch=('any')
@@ -13,7 +13,7 @@
 makedepends=()
 options=('!strip')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/owncloud/contacts/archive/v$pkgver.tar.gz";)
-md5sums=('e7ac4cead5009cc20b534e75a21267a6')
+md5sums=('c8e28f8d3557d24c98d16a235ac3b60c')
 
 package() {
   install -d ${pkgdir}/usr/share/webapps/owncloud/apps


[arch-commits] Commit in owncloud-app-contacts/repos/community-any (PKGBUILD PKGBUILD)

2016-03-08 Thread Sergej Pupykin
Date: Tuesday, March 8, 2016 @ 16:54:36
  Author: spupykin
Revision: 165617

archrelease: copy trunk to community-any

Added:
  owncloud-app-contacts/repos/community-any/PKGBUILD
(from rev 165616, owncloud-app-contacts/trunk/PKGBUILD)
Deleted:
  owncloud-app-contacts/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-03-08 15:54:26 UTC (rev 165616)
+++ PKGBUILD2016-03-08 15:54:36 UTC (rev 165617)
@@ -1,21 +0,0 @@
-# $Id: PKGBUILD 103944 2014-01-13 20:31:53Z spupykin $
-# Maintainer: Sergej Pupykin 
-
-pkgname=owncloud-app-contacts
-epoch=1
-pkgver=0.5.0.0
-pkgrel=1
-pkgdesc="Contacts app for owncloud"
-arch=('any')
-url="http://owncloud.org/";
-license=('GPL')
-depends=('owncloud')
-makedepends=()
-options=('!strip')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/owncloud/contacts/archive/v$pkgver.tar.gz";)
-md5sums=('8739b4fd78a50769922d5b2291774c03')
-
-package() {
-  install -d ${pkgdir}/usr/share/webapps/owncloud/apps
-  cp -a ${srcdir}/contacts-$pkgver 
${pkgdir}/usr/share/webapps/owncloud/apps/contacts
-}

Copied: owncloud-app-contacts/repos/community-any/PKGBUILD (from rev 165616, 
owncloud-app-contacts/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-03-08 15:54:36 UTC (rev 165617)
@@ -0,0 +1,21 @@
+# $Id: PKGBUILD 103944 2014-01-13 20:31:53Z spupykin $
+# Maintainer: Sergej Pupykin 
+
+pkgname=owncloud-app-contacts
+epoch=2
+pkgver=1.0.0.0
+pkgrel=1
+pkgdesc="Contacts app for owncloud"
+arch=('any')
+url="http://owncloud.org/";
+license=('GPL')
+depends=('owncloud')
+makedepends=()
+options=('!strip')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/owncloud/contacts/archive/v$pkgver.tar.gz";)
+md5sums=('c8e28f8d3557d24c98d16a235ac3b60c')
+
+package() {
+  install -d ${pkgdir}/usr/share/webapps/owncloud/apps
+  cp -a ${srcdir}/contacts-$pkgver 
${pkgdir}/usr/share/webapps/owncloud/apps/contacts
+}


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

2016-03-08 Thread Sergej Pupykin
Date: Tuesday, March 8, 2016 @ 16:42:01
  Author: spupykin
Revision: 165615

archrelease: copy trunk to community-any

Added:
  arch-wiki-docs/repos/community-any/PKGBUILD
(from rev 165614, arch-wiki-docs/trunk/PKGBUILD)
Deleted:
  arch-wiki-docs/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-03-08 15:41:49 UTC (rev 165614)
+++ PKGBUILD2016-03-08 15:42:01 UTC (rev 165615)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-
-pkgname=arch-wiki-docs
-pkgdesc="Pages from Arch Wiki optimized for offline browsing"
-pkgver=20150813
-pkgrel=1
-arch=('any')
-url="https://github.com/lahwaacz/arch-wiki-docs";
-license=('FDL')
-options=('!strip')
-makedepends=('git' 'python' 'python-simplemediawiki' 'python-lxml' 
'python-cssselect')
-source=('git://github.com/lahwaacz/arch-wiki-docs.git')
-md5sums=('SKIP')
-
-pkgver() {
-  date "+%Y%m%d"
-}
-
-prepare() {
-  cd "$pkgname"
-  LANG=en_US.UTF-8 python arch-wiki-docs.py --output-directory 
"$srcdir/build_wiki" --clean --safe-filenames
-}
-
-package() {
-  install -dm755 "$pkgdir/usr/share/doc/arch-wiki/html"
-  cp -r "$srcdir"/build_wiki/* "$pkgdir/usr/share/doc/arch-wiki/html/"
-}

Copied: arch-wiki-docs/repos/community-any/PKGBUILD (from rev 165614, 
arch-wiki-docs/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-03-08 15:42:01 UTC (rev 165615)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+
+pkgname=arch-wiki-docs
+pkgdesc="Pages from Arch Wiki optimized for offline browsing"
+pkgver=20160308
+_commit=c184e253b4105181e91a60da5120f422ed423355
+pkgrel=1
+arch=('any')
+url="https://github.com/lahwaacz/arch-wiki-docs";
+license=('FDL')
+options=('!strip')
+makedepends=('git' 'python' 'python-simplemediawiki' 'python-lxml' 
'python-cssselect')
+source=("git://github.com/lahwaacz/arch-wiki-docs.git#commit=${_commit}")
+md5sums=('SKIP')
+
+pkgver() {
+  date "+%Y%m%d"
+}
+
+prepare() {
+  cd "$pkgname"
+  LANG=en_US.UTF-8 python arch-wiki-docs.py --output-directory 
"$srcdir/build_wiki" --clean --safe-filenames
+}
+
+package() {
+  install -dm755 "$pkgdir/usr/share/doc/arch-wiki/html"
+  cp -r "$srcdir"/build_wiki/* "$pkgdir/usr/share/doc/arch-wiki/html/"
+}


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

2016-03-08 Thread Sergej Pupykin
Date: Tuesday, March 8, 2016 @ 16:41:49
  Author: spupykin
Revision: 165614

upgpkg: arch-wiki-docs 20160308-1

upd

Modified:
  arch-wiki-docs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-08 14:53:31 UTC (rev 165613)
+++ PKGBUILD2016-03-08 15:41:49 UTC (rev 165614)
@@ -3,7 +3,8 @@
 
 pkgname=arch-wiki-docs
 pkgdesc="Pages from Arch Wiki optimized for offline browsing"
-pkgver=20150813
+pkgver=20160308
+_commit=c184e253b4105181e91a60da5120f422ed423355
 pkgrel=1
 arch=('any')
 url="https://github.com/lahwaacz/arch-wiki-docs";
@@ -10,7 +11,7 @@
 license=('FDL')
 options=('!strip')
 makedepends=('git' 'python' 'python-simplemediawiki' 'python-lxml' 
'python-cssselect')
-source=('git://github.com/lahwaacz/arch-wiki-docs.git')
+source=("git://github.com/lahwaacz/arch-wiki-docs.git#commit=${_commit}")
 md5sums=('SKIP')
 
 pkgver() {


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

2016-03-08 Thread Johannes Löthberg
Date: Tuesday, March 8, 2016 @ 15:47:00
  Author: demize
Revision: 165610

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-03-08 14:46:42 UTC (rev 165609)
+++ PKGBUILD2016-03-08 14:47:00 UTC (rev 165610)
@@ -1,22 +0,0 @@
-# Maintainer: Johannes Löthberg 
-
-pkgname=python-pafy
-pkgver=0.4.3
-pkgrel=1
-
-pkgdesc="Python API for YouTube"
-url="http://np1.github.io/pafy";
-arch=('any')
-license=('GPL3')
-
-depends=('python' 'youtube-dl')
-optdepends=('ffmpeg: fix issues with audio file downloads')
-
-source=("python-pafy-$pkgver.tar.gz::https://github.com/np1/pafy/archive/v$pkgver.tar.gz";)
-
-sha1sums=('6d16dc5c5d88d473b9bedeb9d5d3f41ba7bcd7d6')
-
-package() {
-   cd pafy-$pkgver
-   python setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python-pafy/repos/community-any/PKGBUILD (from rev 165609, 
python-pafy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-03-08 14:47:00 UTC (rev 165610)
@@ -0,0 +1,24 @@
+# Maintainer: Johannes Löthberg 
+
+pkgname=python-pafy
+pkgver=0.5.0
+pkgrel=1
+
+pkgdesc="Python API for YouTube"
+url="http://np1.github.io/pafy";
+arch=('any')
+license=('GPL3')
+
+depends=('python')
+makedepends=('python-setuptools')
+optdepends=('ffmpeg: fix issues with audio file downloads'
+'youtube-dl: alternative backend')
+
+source=("python-pafy-$pkgver.tar.gz::https://github.com/np1/pafy/archive/v$pkgver.tar.gz";)
+
+sha1sums=('6c8edbe897a1b80b5657bca0d8015abf6bb387f3')
+
+package() {
+   cd pafy-$pkgver
+   python setup.py install --root="$pkgdir" --optimize=1
+}


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

2016-03-08 Thread Alexander Rødseth
Date: Tuesday, March 8, 2016 @ 15:53:31
  Author: arodseth
Revision: 165613

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

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

+
 /PKGBUILD  |  104 +++
 /gummi.install |   28 ++
 community-i686/PKGBUILD|   51 ---
 community-i686/gummi.install   |   14 -
 community-x86_64/PKGBUILD  |   51 ---
 community-x86_64/gummi.install |   14 -
 6 files changed, 132 insertions(+), 130 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-03-08 14:52:06 UTC (rev 165612)
+++ community-i686/PKGBUILD 2016-03-08 14:53:31 UTC (rev 165613)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-# Contributor: Thomas Dziedzic < gostrc at gmail >
-# Contributor: Sergio A. Morales 
-# Contributor: soeren 
-
-pkgname=gummi
-pkgver=0.7.4
-pkgrel=1
-pkgdesc='Simple LaTex editor for GTK users'
-arch=('x86_64' 'i686')
-url='https://github.com/aitjcize/Gummi' # Using the GTK3 fork, for now
-#url='http://gummi.midnightcoding.org/'
-license=('MIT')
-depends=('texlive-core' 'gtkspell3' 'gtksourceview3' 'poppler-glib' 
'desktop-file-utils')
-makedepends=('glib2' 'gtk3' 'pango' 'poppler' 'intltool' 'setconf' 'git')
-install="$pkgname.install"
-source=("git://github.com/aitjcize/Gummi#tag=$pkgver") # Using the GTK3 fork, 
for now
-#source=("git://github.com/alexandervdm/gummi#tag=$pkgver") # 0.6.6
-md5sums=('SKIP')
-
-prepare() {
-  cd "${pkgname^}"
-
-  find . -type f -print0 | xargs -0 sed -i "s|0.6.5|$pkgver|g"
-  setconf autogen.sh AM_VERSION ''
-  ./autogen.sh
-  setconf Makefile.in PACKAGE_VERSION "'"$pkgver"'"
-  setconf data/misc/Makefile.in PACKAGE_VERSION "'"$pkgver"'"
-  echo $pkgver > dev/latest
-  autoreconf
-  setconf configure PACKAGE_VERSION "'"$pkgver"'"
-  setconf configure PACKAGE_STRING "'""Gummi $pkgver (GTK3 fork)""'"
-  setconf configure PACKAGE_BUGREPORT "'https://bugs.archlinux.org/'"
-}
-
-build() {
-  cd "${pkgname^}"
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${pkgname^}"
-
-  make DESTDIR="$pkgdir" install
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gummi/repos/community-i686/PKGBUILD (from rev 165612, 
gummi/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-03-08 14:53:31 UTC (rev 165613)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Sergio A. Morales 
+# Contributor: soeren 
+
+pkgname=gummi
+pkgver=0.6.6
+epoch=1
+pkgrel=1
+pkgdesc='Simple LaTex editor for GTK users'
+arch=('x86_64' 'i686')
+url='http://gummi.midnightcoding.org/'
+#url='https://github.com/aitjcize/Gummi' # GTK3 fork
+license=('MIT')
+depends=('texlive-core' 'gtkspell' 'gtksourceview2' 'poppler-glib' 
'desktop-file-utils')
+makedepends=('glib2' 'gtk2' 'pango' 'poppler' 'intltool' 'setconf' 'git')
+install="$pkgname.install"
+source=("git://github.com/alexandervdm/gummi#tag=$pkgver")
+#source=("git://github.com/aitjcize/Gummi#tag=$pkgver") # GTK3 fork
+md5sums=('SKIP')
+
+prepare() {
+  cd "$pkgname"
+
+  # TODO: Simplify
+  setconf autogen.sh AM_VERSION ''
+  ./autogen.sh
+  setconf Makefile.in PACKAGE_VERSION "'"$pkgver"'"
+  setconf data/misc/Makefile.in PACKAGE_VERSION "'"$pkgver"'"
+  echo $pkgver > dev/latest
+  autoreconf
+  setconf configure PACKAGE_VERSION "'"$pkgver"'"
+  setconf configure PACKAGE_STRING "'""Gummi $pkgver""'"
+  setconf configure PACKAGE_BUGREPORT "'https://bugs.archlinux.org/'"
+}
+
+build() {
+  cd "$pkgname"
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$pkgname"
+
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/gummi.install
===
--- community-i686/gummi.install2016-03-08 14:52:06 UTC (rev 165612)
+++ community-i686/gummi.install2016-03-08 14:53:31 UTC (rev 165613)
@@ -1,14 +0,0 @@
-post_upgrade() {
-  gtk-update-icon-cache -q -f -t /usr/share/icons/hicolor
-  update-desktop-database -q
-}
-
-post_inst

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

2016-03-08 Thread Alexander Rødseth
Date: Tuesday, March 8, 2016 @ 15:52:06
  Author: arodseth
Revision: 165612

upgpkg: gummi 1:0.6.6-1

Modified:
  gummi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-08 14:48:46 UTC (rev 165611)
+++ PKGBUILD2016-03-08 14:52:06 UTC (rev 165612)
@@ -5,24 +5,25 @@
 # Contributor: soeren 
 
 pkgname=gummi
-pkgver=0.7.4
+pkgver=0.6.6
+epoch=1
 pkgrel=1
 pkgdesc='Simple LaTex editor for GTK users'
 arch=('x86_64' 'i686')
-url='https://github.com/aitjcize/Gummi' # Using the GTK3 fork, for now
-#url='http://gummi.midnightcoding.org/'
+url='http://gummi.midnightcoding.org/'
+#url='https://github.com/aitjcize/Gummi' # GTK3 fork
 license=('MIT')
-depends=('texlive-core' 'gtkspell3' 'gtksourceview3' 'poppler-glib' 
'desktop-file-utils')
-makedepends=('glib2' 'gtk3' 'pango' 'poppler' 'intltool' 'setconf' 'git')
+depends=('texlive-core' 'gtkspell' 'gtksourceview2' 'poppler-glib' 
'desktop-file-utils')
+makedepends=('glib2' 'gtk2' 'pango' 'poppler' 'intltool' 'setconf' 'git')
 install="$pkgname.install"
-source=("git://github.com/aitjcize/Gummi#tag=$pkgver") # Using the GTK3 fork, 
for now
-#source=("git://github.com/alexandervdm/gummi#tag=$pkgver") # 0.6.6
+source=("git://github.com/alexandervdm/gummi#tag=$pkgver")
+#source=("git://github.com/aitjcize/Gummi#tag=$pkgver") # GTK3 fork
 md5sums=('SKIP')
 
 prepare() {
-  cd "${pkgname^}"
+  cd "$pkgname"
 
-  find . -type f -print0 | xargs -0 sed -i "s|0.6.5|$pkgver|g"
+  # TODO: Simplify
   setconf autogen.sh AM_VERSION ''
   ./autogen.sh
   setconf Makefile.in PACKAGE_VERSION "'"$pkgver"'"
@@ -30,12 +31,12 @@
   echo $pkgver > dev/latest
   autoreconf
   setconf configure PACKAGE_VERSION "'"$pkgver"'"
-  setconf configure PACKAGE_STRING "'""Gummi $pkgver (GTK3 fork)""'"
+  setconf configure PACKAGE_STRING "'""Gummi $pkgver""'"
   setconf configure PACKAGE_BUGREPORT "'https://bugs.archlinux.org/'"
 }
 
 build() {
-  cd "${pkgname^}"
+  cd "$pkgname"
 
   ./configure --prefix=/usr
   make
@@ -42,7 +43,7 @@
 }
 
 package() {
-  cd "${pkgname^}"
+  cd "$pkgname"
 
   make DESTDIR="$pkgdir" install
   install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"


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

2016-03-08 Thread Johannes Löthberg
Date: Tuesday, March 8, 2016 @ 15:48:46
  Author: demize
Revision: 165611

archrelease: copy trunk to community-any

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

--+
 PKGBUILD |   48 
 1 file changed, 24 insertions(+), 24 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-03-08 14:47:00 UTC (rev 165610)
+++ PKGBUILD2016-03-08 14:48:46 UTC (rev 165611)
@@ -1,24 +0,0 @@
-# Maintainer: Johannes Löthberg 
-
-pkgname=python-pafy
-pkgver=0.5.0
-pkgrel=1
-
-pkgdesc="Python API for YouTube"
-url="http://np1.github.io/pafy";
-arch=('any')
-license=('GPL3')
-
-depends=('python')
-makedepends=('python-setuptools')
-optdepends=('ffmpeg: fix issues with audio file downloads'
-'youtube-dl: alternative backend')
-
-source=("python-pafy-$pkgver.tar.gz::https://github.com/np1/pafy/archive/v$pkgver.tar.gz";)
-
-sha1sums=('6c8edbe897a1b80b5657bca0d8015abf6bb387f3')
-
-package() {
-   cd pafy-$pkgver
-   python setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python-pafy/repos/community-any/PKGBUILD (from rev 165610, 
python-pafy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-03-08 14:48:46 UTC (rev 165611)
@@ -0,0 +1,24 @@
+# Maintainer: Johannes Löthberg 
+
+pkgname=python-pafy
+pkgver=0.5.0
+pkgrel=1
+
+pkgdesc="Python API for YouTube"
+url="http://np1.github.io/pafy";
+arch=('any')
+license=('GPL3')
+
+depends=('python')
+makedepends=('python-setuptools')
+optdepends=('ffmpeg: fix issues with audio file downloads'
+'youtube-dl: alternative backend')
+
+source=("python-pafy-$pkgver.tar.gz::https://github.com/np1/pafy/archive/v$pkgver.tar.gz";)
+
+sha1sums=('6c8edbe897a1b80b5657bca0d8015abf6bb387f3')
+
+package() {
+   cd pafy-$pkgver
+   python setup.py install --root="$pkgdir" --optimize=1
+}


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

2016-03-08 Thread Johannes Löthberg
Date: Tuesday, March 8, 2016 @ 15:46:42
  Author: demize
Revision: 165609

upgpkg: python-pafy 0.5.0-1

Modified:
  python-pafy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-08 14:19:44 UTC (rev 165608)
+++ PKGBUILD2016-03-08 14:46:42 UTC (rev 165609)
@@ -1,7 +1,7 @@
 # Maintainer: Johannes Löthberg 
 
 pkgname=python-pafy
-pkgver=0.4.3
+pkgver=0.5.0
 pkgrel=1
 
 pkgdesc="Python API for YouTube"
@@ -9,12 +9,14 @@
 arch=('any')
 license=('GPL3')
 
-depends=('python' 'youtube-dl')
-optdepends=('ffmpeg: fix issues with audio file downloads')
+depends=('python')
+makedepends=('python-setuptools')
+optdepends=('ffmpeg: fix issues with audio file downloads'
+'youtube-dl: alternative backend')
 
 
source=("python-pafy-$pkgver.tar.gz::https://github.com/np1/pafy/archive/v$pkgver.tar.gz";)
 
-sha1sums=('6d16dc5c5d88d473b9bedeb9d5d3f41ba7bcd7d6')
+sha1sums=('6c8edbe897a1b80b5657bca0d8015abf6bb387f3')
 
 package() {
cd pafy-$pkgver


[arch-commits] Commit in owncloud-app-calendar/trunk (PKGBUILD)

2016-03-08 Thread Sergej Pupykin
Date: Tuesday, March 8, 2016 @ 15:19:05
  Author: spupykin
Revision: 165603

upgpkg: owncloud-app-calendar 1:1.0-1

upd

Modified:
  owncloud-app-calendar/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-08 14:19:02 UTC (rev 165602)
+++ PKGBUILD2016-03-08 14:19:05 UTC (rev 165603)
@@ -3,9 +3,8 @@
 
 pkgname=owncloud-app-calendar
 epoch=1
-pkgver=1.0alpha2git
-_commit=cb2447f5c5afe091e14f2b7b7d133cd3452f9657
-pkgrel=3
+pkgver=1.0
+pkgrel=1
 pkgdesc="Calendar app for owncloud"
 arch=('any')
 url="http://owncloud.org/";
@@ -13,12 +12,10 @@
 depends=('owncloud')
 makedepends=()
 options=('!strip')
-#source=("$pkgname-$pkgver.tar.gz::https://github.com/owncloud/calendar-rework/archive/v${pkgver/alpha/-alpha}.tar.gz";)
-source=("$pkgname-$pkgver-${_commit}.tar.gz::https://github.com/owncloud/calendar/archive/${_commit}.tar.gz";)
-md5sums=('e8623e3b480c720fbc48c34642a03c6e')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/owncloud/calendar-rework/archive/v${pkgver}.tar.gz";)
+md5sums=('e9f40fccdafa6c8cd8c028f4d5fddf24')
 
 package() {
   install -d ${pkgdir}/usr/share/webapps/owncloud/apps
-#  cp -a ${srcdir}/calendar-${pkgver/alpha/-alpha} 
${pkgdir}/usr/share/webapps/owncloud/apps/calendar
-  cp -a ${srcdir}/calendar-${_commit} 
${pkgdir}/usr/share/webapps/owncloud/apps/calendar
+  cp -a ${srcdir}/calendar-${pkgver} 
${pkgdir}/usr/share/webapps/owncloud/apps/calendar
 }


[arch-commits] Commit in owncloud-app-gallery/repos/community-any (PKGBUILD PKGBUILD)

2016-03-08 Thread Sergej Pupykin
Date: Tuesday, March 8, 2016 @ 15:19:44
  Author: spupykin
Revision: 165608

archrelease: copy trunk to community-any

Added:
  owncloud-app-gallery/repos/community-any/PKGBUILD
(from rev 165607, owncloud-app-gallery/trunk/PKGBUILD)
Deleted:
  owncloud-app-gallery/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-03-08 14:19:34 UTC (rev 165607)
+++ PKGBUILD2016-03-08 14:19:44 UTC (rev 165608)
@@ -1,20 +0,0 @@
-# $Id: PKGBUILD 103944 2014-01-13 20:31:53Z spupykin $
-# Maintainer: Sergej Pupykin 
-
-pkgname=owncloud-app-gallery
-pkgver=8.2.2
-pkgrel=1
-pkgdesc="Gallery app for owncloud"
-arch=('any')
-url="http://owncloud.org/";
-license=('GPL')
-depends=('owncloud')
-makedepends=()
-options=('!strip')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/owncloud/gallery/archive/v$pkgver.tar.gz";)
-md5sums=('c8ab21007b846e1c3f52a7b56c7eb3b8')
-
-package() {
-  install -d ${pkgdir}/usr/share/webapps/owncloud/apps
-  cp -a ${srcdir}/gallery-$pkgver 
${pkgdir}/usr/share/webapps/owncloud/apps/gallery
-}

Copied: owncloud-app-gallery/repos/community-any/PKGBUILD (from rev 165607, 
owncloud-app-gallery/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-03-08 14:19:44 UTC (rev 165608)
@@ -0,0 +1,20 @@
+# $Id: PKGBUILD 103944 2014-01-13 20:31:53Z spupykin $
+# Maintainer: Sergej Pupykin 
+
+pkgname=owncloud-app-gallery
+pkgver=9.0.0
+pkgrel=1
+pkgdesc="Gallery app for owncloud"
+arch=('any')
+url="http://owncloud.org/";
+license=('GPL')
+depends=('owncloud')
+makedepends=()
+options=('!strip')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/owncloud/gallery/archive/v$pkgver.tar.gz";)
+md5sums=('a4d155022cebc25f2ad547418a67e852')
+
+package() {
+  install -d ${pkgdir}/usr/share/webapps/owncloud/apps
+  cp -a ${srcdir}/gallery-$pkgver 
${pkgdir}/usr/share/webapps/owncloud/apps/gallery
+}


[arch-commits] Commit in owncloud-app-documents/repos/community-any (2 files)

2016-03-08 Thread Sergej Pupykin
Date: Tuesday, March 8, 2016 @ 15:19:30
  Author: spupykin
Revision: 165606

archrelease: copy trunk to community-any

Added:
  owncloud-app-documents/repos/community-any/PKGBUILD
(from rev 165605, owncloud-app-documents/trunk/PKGBUILD)
Deleted:
  owncloud-app-documents/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-03-08 14:19:20 UTC (rev 165605)
+++ PKGBUILD2016-03-08 14:19:30 UTC (rev 165606)
@@ -1,21 +0,0 @@
-# $Id: PKGBUILD 103944 2014-01-13 20:31:53Z spupykin $
-# Maintainer: Sergej Pupykin 
-
-pkgname=owncloud-app-documents
-epoch=1
-pkgver=8.2.2
-pkgrel=1
-pkgdesc="Documents app for owncloud"
-arch=('any')
-url="http://owncloud.org/";
-license=('GPL')
-depends=('owncloud')
-makedepends=()
-options=('!strip')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/owncloud/documents/archive/v$pkgver.tar.gz";)
-md5sums=('75d6e4de15bdb4ca784f39b468893f9e')
-
-package() {
-  install -d ${pkgdir}/usr/share/webapps/owncloud/apps
-  cp -a ${srcdir}/documents-$pkgver 
${pkgdir}/usr/share/webapps/owncloud/apps/documents
-}

Copied: owncloud-app-documents/repos/community-any/PKGBUILD (from rev 165605, 
owncloud-app-documents/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-03-08 14:19:30 UTC (rev 165606)
@@ -0,0 +1,21 @@
+# $Id: PKGBUILD 103944 2014-01-13 20:31:53Z spupykin $
+# Maintainer: Sergej Pupykin 
+
+pkgname=owncloud-app-documents
+epoch=1
+pkgver=9.0.0
+pkgrel=1
+pkgdesc="Documents app for owncloud"
+arch=('any')
+url="http://owncloud.org/";
+license=('GPL')
+depends=('owncloud')
+makedepends=()
+options=('!strip')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/owncloud/documents/archive/v$pkgver.tar.gz";)
+md5sums=('fdbd3757d1bdbadfd3e0e81670db746a')
+
+package() {
+  install -d ${pkgdir}/usr/share/webapps/owncloud/apps
+  cp -a ${srcdir}/documents-$pkgver 
${pkgdir}/usr/share/webapps/owncloud/apps/documents
+}


[arch-commits] Commit in owncloud-app-calendar/repos/community-any (PKGBUILD PKGBUILD)

2016-03-08 Thread Sergej Pupykin
Date: Tuesday, March 8, 2016 @ 15:19:15
  Author: spupykin
Revision: 165604

archrelease: copy trunk to community-any

Added:
  owncloud-app-calendar/repos/community-any/PKGBUILD
(from rev 165603, owncloud-app-calendar/trunk/PKGBUILD)
Deleted:
  owncloud-app-calendar/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-03-08 14:19:05 UTC (rev 165603)
+++ PKGBUILD2016-03-08 14:19:15 UTC (rev 165604)
@@ -1,21 +0,0 @@
-# $Id: PKGBUILD 103944 2014-01-13 20:31:53Z spupykin $
-# Maintainer: Sergej Pupykin 
-
-pkgname=owncloud-app-calendar
-epoch=1
-pkgver=0.8.1
-pkgrel=1
-pkgdesc="Calendar app for owncloud"
-arch=('any')
-url="http://owncloud.org/";
-license=('GPL')
-depends=('owncloud')
-makedepends=()
-options=('!strip')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/owncloud/calendar/archive/v$pkgver.tar.gz";)
-md5sums=('8a59d4d58add424da2dd55d074a6cc72')
-
-package() {
-  install -d ${pkgdir}/usr/share/webapps/owncloud/apps
-  cp -a ${srcdir}/calendar-$pkgver 
${pkgdir}/usr/share/webapps/owncloud/apps/calendar
-}

Copied: owncloud-app-calendar/repos/community-any/PKGBUILD (from rev 165603, 
owncloud-app-calendar/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-03-08 14:19:15 UTC (rev 165604)
@@ -0,0 +1,21 @@
+# $Id: PKGBUILD 103944 2014-01-13 20:31:53Z spupykin $
+# Maintainer: Sergej Pupykin 
+
+pkgname=owncloud-app-calendar
+epoch=1
+pkgver=1.0
+pkgrel=1
+pkgdesc="Calendar app for owncloud"
+arch=('any')
+url="http://owncloud.org/";
+license=('GPL')
+depends=('owncloud')
+makedepends=()
+options=('!strip')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/owncloud/calendar-rework/archive/v${pkgver}.tar.gz";)
+md5sums=('e9f40fccdafa6c8cd8c028f4d5fddf24')
+
+package() {
+  install -d ${pkgdir}/usr/share/webapps/owncloud/apps
+  cp -a ${srcdir}/calendar-${pkgver} 
${pkgdir}/usr/share/webapps/owncloud/apps/calendar
+}


[arch-commits] Commit in owncloud-app-gallery/trunk (PKGBUILD)

2016-03-08 Thread Sergej Pupykin
Date: Tuesday, March 8, 2016 @ 15:19:34
  Author: spupykin
Revision: 165607

upgpkg: owncloud-app-gallery 9.0.0-1

upd

Modified:
  owncloud-app-gallery/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-08 14:19:30 UTC (rev 165606)
+++ PKGBUILD2016-03-08 14:19:34 UTC (rev 165607)
@@ -2,7 +2,7 @@
 # Maintainer: Sergej Pupykin 
 
 pkgname=owncloud-app-gallery
-pkgver=9.0.0RC3
+pkgver=9.0.0
 pkgrel=1
 pkgdesc="Gallery app for owncloud"
 arch=('any')
@@ -12,7 +12,7 @@
 makedepends=()
 options=('!strip')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/owncloud/gallery/archive/v$pkgver.tar.gz";)
-md5sums=('ea5585c13fdd0209d7a98f22801e89d9')
+md5sums=('a4d155022cebc25f2ad547418a67e852')
 
 package() {
   install -d ${pkgdir}/usr/share/webapps/owncloud/apps


[arch-commits] Commit in owncloud-app-documents/trunk (PKGBUILD)

2016-03-08 Thread Sergej Pupykin
Date: Tuesday, March 8, 2016 @ 15:19:20
  Author: spupykin
Revision: 165605

upgpkg: owncloud-app-documents 1:9.0.0-1

upd

Modified:
  owncloud-app-documents/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-08 14:19:15 UTC (rev 165604)
+++ PKGBUILD2016-03-08 14:19:20 UTC (rev 165605)
@@ -3,7 +3,7 @@
 
 pkgname=owncloud-app-documents
 epoch=1
-pkgver=9.0.0RC3
+pkgver=9.0.0
 pkgrel=1
 pkgdesc="Documents app for owncloud"
 arch=('any')
@@ -13,7 +13,7 @@
 makedepends=()
 options=('!strip')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/owncloud/documents/archive/v$pkgver.tar.gz";)
-md5sums=('527b205a1d21457da059ad76627f7d21')
+md5sums=('fdbd3757d1bdbadfd3e0e81670db746a')
 
 package() {
   install -d ${pkgdir}/usr/share/webapps/owncloud/apps


[arch-commits] Commit in owncloud-app-bookmarks/trunk (PKGBUILD)

2016-03-08 Thread Sergej Pupykin
Date: Tuesday, March 8, 2016 @ 15:18:52
  Author: spupykin
Revision: 165601

upgpkg: owncloud-app-bookmarks 9.0.0-1

upd

Modified:
  owncloud-app-bookmarks/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-03-08 14:18:47 UTC (rev 165600)
+++ PKGBUILD2016-03-08 14:18:52 UTC (rev 165601)
@@ -2,7 +2,7 @@
 # Maintainer: Sergej Pupykin 
 
 pkgname=owncloud-app-bookmarks
-pkgver=9.0.0RC3
+pkgver=9.0.0
 pkgrel=1
 pkgdesc="Bookmarks app for owncloud"
 arch=('any')
@@ -12,7 +12,7 @@
 makedepends=()
 options=('!strip')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/owncloud/bookmarks/archive/v$pkgver.tar.gz";)
-md5sums=('b493ad50f1cbc847c23851f18c1fc0b0')
+md5sums=('c5fd88bc2a89a53a0f4db783f97a3b4d')
 
 package() {
   install -d ${pkgdir}/usr/share/webapps/owncloud/apps


  1   2   >