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

2016-02-23 Thread Felix Yan
Date: Wednesday, February 24, 2016 @ 08:52:58
  Author: fyan
Revision: 163257

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

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

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

Copied: haskell-wai-app-static/repos/community-staging-i686/PKGBUILD (from rev 
163256, haskell-wai-app-static/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-02-24 07:52:58 UTC (rev 163257)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=wai-app-static
+pkgname=haskell-wai-app-static
+pkgver=3.1.4.1
+pkgrel=17
+pkgdesc="WAI application for static serving"
+url="http://www.yesodweb.com/book/web-application-interface;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-base64-bytestring" "haskell-blaze-builder"
+ "haskell-blaze-html" "haskell-blaze-markup" "haskell-byteable"
+ "haskell-cryptohash" "haskell-cryptohash-conduit" "haskell-file-embed"
+ "haskell-http-date" "haskell-http-types" "haskell-mime-types"
+ "haskell-old-locale" "haskell-optparse-applicative" "haskell-text"
+ "haskell-unix-compat" "haskell-unordered-containers" "haskell-wai"
+ "haskell-wai-extra" "haskell-warp" "haskell-zlib")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('7280e15192be2d80b2505da152ea828c448e1466401fc4a02e87052ce3515bd4')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-print
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: 
haskell-wai-app-static/repos/community-staging-i686/haskell-wai-app-static.install
 (from rev 163256, haskell-wai-app-static/trunk/haskell-wai-app-static.install)
===
--- community-staging-i686/haskell-wai-app-static.install   
(rev 0)
+++ community-staging-i686/haskell-wai-app-static.install   2016-02-24 
07:52:58 UTC (rev 163257)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-wai-app-static
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-wai-app-static/repos/community-staging-x86_64/PKGBUILD (from 
rev 163256, haskell-wai-app-static/trunk/PKGBUILD)
===
--- 

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

2016-02-23 Thread Felix Yan
Date: Wednesday, February 24, 2016 @ 08:52:36
  Author: fyan
Revision: 163256

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

rebuild with cryptohash-0.11.7, cryptonite-0.13, hjsmin-0.1.5.3, http2-1.5.0, 
warp-3.2.3

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

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-24 06:30:23 UTC (rev 163255)
+++ PKGBUILD2016-02-24 07:52:36 UTC (rev 163256)
@@ -5,7 +5,7 @@
 _hkgname=wai-app-static
 pkgname=haskell-wai-app-static
 pkgver=3.1.4.1
-pkgrel=16
+pkgrel=17
 pkgdesc="WAI application for static serving"
 url="http://www.yesodweb.com/book/web-application-interface;
 license=("MIT")


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

2016-02-23 Thread Felix Yan
Date: Wednesday, February 24, 2016 @ 07:30:23
  Author: fyan
Revision: 163255

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

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

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

Copied: haskell-yesod-auth/repos/community-staging-i686/PKGBUILD (from rev 
163254, haskell-yesod-auth/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-02-24 06:30:23 UTC (rev 163255)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-auth
+pkgname=haskell-yesod-auth
+pkgver=1.4.12
+pkgrel=14
+pkgdesc="Authentication for Yesod."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-aeson" "haskell-authenticate" 
"haskell-base16-bytestring"
+ "haskell-base64-bytestring" "haskell-blaze-builder" 
"haskell-blaze-html"
+ "haskell-blaze-markup" "haskell-byteable" "haskell-conduit" 
"haskell-conduit-extra"
+ "haskell-cryptohash" "haskell-data-default" "haskell-email-validate"
+ "haskell-file-embed" "haskell-http-client" "haskell-http-conduit"
+ "haskell-http-types" "haskell-lifted-base" "haskell-mime-mail" 
"haskell-network-uri"
+ "haskell-nonce" "haskell-persistent" "haskell-persistent-template" 
"haskell-random"
+ "haskell-resourcet" "haskell-safe" "haskell-shakespeare" 
"haskell-text"
+ "haskell-unordered-containers" "haskell-wai" "haskell-yesod-core" 
"haskell-yesod-form"
+ "haskell-yesod-persistent")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('d1baf7dc08ee591fd8ba50a8e64a377a3a8d42575963b44e50ab0c145c2d9fa7')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-fnetwork-uri
+runhaskell Setup build
+LC_CTYPE=en_US.UTF-8 runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: 
haskell-yesod-auth/repos/community-staging-i686/haskell-yesod-auth.install 
(from rev 163254, haskell-yesod-auth/trunk/haskell-yesod-auth.install)
===
--- community-staging-i686/haskell-yesod-auth.install   
(rev 0)
+++ community-staging-i686/haskell-yesod-auth.install   2016-02-24 06:30:23 UTC 
(rev 163255)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-yesod-auth
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: 

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

2016-02-23 Thread Felix Yan
Date: Wednesday, February 24, 2016 @ 07:29:58
  Author: fyan
Revision: 163254

upgpkg: haskell-yesod-auth 1.4.12-14

rebuild with cryptohash-0.11.7, cryptonite-0.13, hjsmin-0.1.5.3, http2-1.5.0, 
warp-3.2.3

Modified:
  haskell-yesod-auth/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-24 01:18:26 UTC (rev 163253)
+++ PKGBUILD2016-02-24 06:29:58 UTC (rev 163254)
@@ -5,7 +5,7 @@
 _hkgname=yesod-auth
 pkgname=haskell-yesod-auth
 pkgver=1.4.12
-pkgrel=13
+pkgrel=14
 pkgdesc="Authentication for Yesod."
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2016-02-23 Thread Jan Steffens
Date: Wednesday, February 24, 2016 @ 06:33:31
  Author: heftig
Revision: 260211

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-02-24 05:32:13 UTC (rev 260210)
+++ extra-i686/PKGBUILD 2016-02-24 05:33:31 UTC (rev 260211)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgbase=(harfbuzz)
-pkgname=(harfbuzz harfbuzz-icu)
-pkgver=1.2.0
-pkgrel=1
-pkgdesc="OpenType text shaping engine"
-arch=(i686 x86_64)
-url="http://www.freedesktop.org/wiki/Software/HarfBuzz;
-license=(MIT)
-makedepends=(glib2 freetype2 graphite cairo icu gobject-introspection gtk-doc 
ragel)
-source=(http://www.freedesktop.org/software/harfbuzz/release/${pkgbase}-${pkgver}.tar.bz2)
-sha256sums=('79ff5305153d15931fbdda80c9612783b0283dee44f4c2af71aa37353daaa685')
-
-prepare() {
-  mkdir path
-  ln -s /usr/bin/python2 path/python
-
-  cd $pkgbase-$pkgver
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd $pkgbase-$pkgver
-  ./configure --prefix=/usr \
---with-glib --with-freetype --with-cairo --with-icu --with-graphite2 \
---with-gobject --enable-doc
-  make
-}
-
-check() {
-  cd $pkgbase-$pkgver
-  PATH="$srcdir/path:$PATH" make check
-}
-
-package_harfbuzz() {
-  depends=(glib2 freetype2 graphite)
-  optdepends=('cairo: hb-view program')
-
-  cd $pkgbase-$pkgver
-  make DESTDIR="$pkgdir" install
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/harfbuzz/COPYING"
-
-# Split harfbuzz-icu
-  mkdir -p ../hb-icu/usr/{include/harfbuzz,lib/pkgconfig}; cd ../hb-icu
-  mv "$pkgdir"/usr/lib/libharfbuzz-icu* ./usr/lib
-  mv "$pkgdir"/usr/lib/pkgconfig/harfbuzz-icu.pc ./usr/lib/pkgconfig
-  mv "$pkgdir"/usr/include/harfbuzz/hb-icu.h ./usr/include/harfbuzz
-}
-
-package_harfbuzz-icu(){
-  pkgdesc="$pkgdesc (ICU integration)"
-  depends=(harfbuzz icu)
-
-  mv hb-icu/* "$pkgdir"
-
-  install -Dm644 $pkgbase-$pkgver/COPYING 
"$pkgdir/usr/share/licenses/harfbuzz-icu/COPYING"
-}

Copied: harfbuzz/repos/extra-i686/PKGBUILD (from rev 260210, 
harfbuzz/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-02-24 05:33:31 UTC (rev 260211)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgbase=(harfbuzz)
+pkgname=(harfbuzz harfbuzz-icu)
+pkgver=1.2.1
+pkgrel=1
+pkgdesc="OpenType text shaping engine"
+arch=(i686 x86_64)
+url="http://www.freedesktop.org/wiki/Software/HarfBuzz;
+license=(MIT)
+makedepends=(glib2 freetype2 graphite cairo icu gobject-introspection gtk-doc 
ragel)
+source=(http://www.freedesktop.org/software/harfbuzz/release/${pkgbase}-${pkgver}.tar.bz2)
+sha256sums=('0c189aa386c5ea8d7c315adf273f56f48f412081a367b3f92abc2d0855fa2226')
+
+prepare() {
+  mkdir path
+  ln -s /usr/bin/python2 path/python
+
+  cd $pkgbase-$pkgver
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgbase-$pkgver
+  ./configure --prefix=/usr \
+--with-glib --with-freetype --with-cairo --with-icu --with-graphite2 \
+--with-gobject --enable-doc
+  make
+}
+
+check() {
+  cd $pkgbase-$pkgver
+  PATH="$srcdir/path:$PATH" make check
+}
+
+package_harfbuzz() {
+  depends=(glib2 freetype2 graphite)
+  optdepends=('cairo: hb-view program')
+
+  cd $pkgbase-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/harfbuzz/COPYING"
+
+# Split harfbuzz-icu
+  mkdir -p ../hb-icu/usr/{include/harfbuzz,lib/pkgconfig}; cd ../hb-icu
+  mv "$pkgdir"/usr/lib/libharfbuzz-icu* ./usr/lib
+  mv "$pkgdir"/usr/lib/pkgconfig/harfbuzz-icu.pc ./usr/lib/pkgconfig
+  mv "$pkgdir"/usr/include/harfbuzz/hb-icu.h ./usr/include/harfbuzz
+}
+
+package_harfbuzz-icu(){
+  pkgdesc="$pkgdesc (ICU integration)"
+  depends=(harfbuzz icu)
+
+  mv hb-icu/* "$pkgdir"
+
+  install -Dm644 $pkgbase-$pkgver/COPYING 
"$pkgdir/usr/share/licenses/harfbuzz-icu/COPYING"
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-02-24 05:32:13 UTC (rev 260210)
+++ extra-x86_64/PKGBUILD   2016-02-24 05:33:31 UTC (rev 260211)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgbase=(harfbuzz)
-pkgname=(harfbuzz harfbuzz-icu)
-pkgver=1.2.0
-pkgrel=1
-pkgdesc="OpenType text shaping engine"
-arch=(i686 x86_64)

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

2016-02-23 Thread Jan Steffens
Date: Wednesday, February 24, 2016 @ 06:32:13
  Author: heftig
Revision: 260210

1.2.1

Modified:
  harfbuzz/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-24 00:30:16 UTC (rev 260209)
+++ PKGBUILD2016-02-24 05:32:13 UTC (rev 260210)
@@ -3,7 +3,7 @@
 
 pkgbase=(harfbuzz)
 pkgname=(harfbuzz harfbuzz-icu)
-pkgver=1.2.0
+pkgver=1.2.1
 pkgrel=1
 pkgdesc="OpenType text shaping engine"
 arch=(i686 x86_64)
@@ -11,7 +11,7 @@
 license=(MIT)
 makedepends=(glib2 freetype2 graphite cairo icu gobject-introspection gtk-doc 
ragel)
 
source=(http://www.freedesktop.org/software/harfbuzz/release/${pkgbase}-${pkgver}.tar.bz2)
-sha256sums=('79ff5305153d15931fbdda80c9612783b0283dee44f4c2af71aa37353daaa685')
+sha256sums=('0c189aa386c5ea8d7c315adf273f56f48f412081a367b3f92abc2d0855fa2226')
 
 prepare() {
   mkdir path


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

2016-02-23 Thread Felix Yan
Date: Wednesday, February 24, 2016 @ 02:18:11
  Author: fyan
Revision: 163252

upgpkg: python-hypothesis 3.0.3-1

Modified:
  python-hypothesis/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-24 00:22:25 UTC (rev 163251)
+++ PKGBUILD2016-02-24 01:18:11 UTC (rev 163252)
@@ -3,7 +3,7 @@
 
 pkgbase=python-hypothesis
 pkgname=('python-hypothesis' 'python2-hypothesis')
-pkgver=3.0.2
+pkgver=3.0.3
 pkgrel=1
 pkgdesc="Advanced Quickcheck style testing library for Python"
 arch=('any')


[arch-commits] Commit in python-hypothesis/repos/community-testing-any (2 files)

2016-02-23 Thread Felix Yan
Date: Wednesday, February 24, 2016 @ 02:18:26
  Author: fyan
Revision: 163253

archrelease: copy trunk to community-testing-any

Added:
  python-hypothesis/repos/community-testing-any/PKGBUILD
(from rev 163252, python-hypothesis/trunk/PKGBUILD)
Deleted:
  python-hypothesis/repos/community-testing-any/PKGBUILD

--+
 PKGBUILD |  130 ++---
 1 file changed, 65 insertions(+), 65 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-02-24 01:18:11 UTC (rev 163252)
+++ PKGBUILD2016-02-24 01:18:26 UTC (rev 163253)
@@ -1,65 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgbase=python-hypothesis
-pkgname=('python-hypothesis' 'python2-hypothesis')
-pkgver=3.0.2
-pkgrel=1
-pkgdesc="Advanced Quickcheck style testing library for Python"
-arch=('any')
-license=('MPL')
-url="https://hypothesis.readthedocs.org;
-makedepends=('python-setuptools' 'python2-setuptools' 'python2-enum34' 'git')
-checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'flake8' 
'python2-flake8'
-  'python-pytz' 'python2-pytz' 'python-django' 'python2-django' 
'python-numpy'
-  'python2-numpy' 'python-fake-factory' 'python2-fake-factory' 
'python-flaky'
-  'python2-flaky' 'python-pytest-benchmark' 
'python2-pytest-benchmark')
-source=("git+https://github.com/DRMacIver/hypothesis.git#tag=$pkgver;)
-sha512sums=('SKIP')
-
-prepare() {
-  cp -a hypothesis{,-py2}
-}
-
-build() {
-  cd "$srcdir/hypothesis"
-  python setup.py build
-
-  cd "$srcdir/hypothesis-py2"
-  python2 setup.py build
-}
-
-check() {(
-  # I dunno how to fix pytest w/django tests :/
-
-  cd "$srcdir/hypothesis"
-  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" LC_CTYPE=en_US.UTF-8 python setup.py 
ptr
-
-  cd "$srcdir/hypothesis-py2"
-  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" LC_CTYPE=en_US.UTF-8 python2 
setup.py ptr
-  ) || warning "Tests failed"
-}
-
-package_python-hypothesis() {
-  depends=('python')
-  optdepends=('python-pytz: for datetime and django module'
-  'python-fake-factory: for fakefactory and django module'
-  'python-django: for django module'
-  'python-numpy: for numpy module'
-  'python-pytest: for pytest module')
-
-  cd hypothesis
-  python setup.py install --root="${pkgdir}" --optimize=1
-}
-
-package_python2-hypothesis() {
-  depends=('python2-enum34')
-  optdepends=('python2-pytz: for datetime and django module'
-  'python2-fake-factory: for fakefactory and django module'
-  'python2-django: for django module'
-  'python2-numpy: for numpy module'
-  'python2-pytest: for pytest module')
-
-  cd hypothesis-py2
-  python2 setup.py install --root="${pkgdir}" --optimize=1
-}

Copied: python-hypothesis/repos/community-testing-any/PKGBUILD (from rev 
163252, python-hypothesis/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-02-24 01:18:26 UTC (rev 163253)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-hypothesis
+pkgname=('python-hypothesis' 'python2-hypothesis')
+pkgver=3.0.3
+pkgrel=1
+pkgdesc="Advanced Quickcheck style testing library for Python"
+arch=('any')
+license=('MPL')
+url="https://hypothesis.readthedocs.org;
+makedepends=('python-setuptools' 'python2-setuptools' 'python2-enum34' 'git')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'flake8' 
'python2-flake8'
+  'python-pytz' 'python2-pytz' 'python-django' 'python2-django' 
'python-numpy'
+  'python2-numpy' 'python-fake-factory' 'python2-fake-factory' 
'python-flaky'
+  'python2-flaky' 'python-pytest-benchmark' 
'python2-pytest-benchmark')
+source=("git+https://github.com/DRMacIver/hypothesis.git#tag=$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  cp -a hypothesis{,-py2}
+}
+
+build() {
+  cd "$srcdir/hypothesis"
+  python setup.py build
+
+  cd "$srcdir/hypothesis-py2"
+  python2 setup.py build
+}
+
+check() {(
+  # I dunno how to fix pytest w/django tests :/
+
+  cd "$srcdir/hypothesis"
+  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" LC_CTYPE=en_US.UTF-8 python setup.py 
ptr
+
+  cd "$srcdir/hypothesis-py2"
+  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" LC_CTYPE=en_US.UTF-8 python2 
setup.py ptr
+  ) || warning "Tests failed"
+}
+
+package_python-hypothesis() {
+  depends=('python')
+  optdepends=('python-pytz: for datetime and django module'
+  'python-fake-factory: for fakefactory and django module'
+  'python-django: for django module'
+  'python-numpy: for numpy module'
+  'python-pytest: for pytest module')
+
+  cd hypothesis
+  python setup.py install --root="${pkgdir}" --optimize=1
+}
+
+package_python2-hypothesis() {
+  depends=('python2-enum34')
+  

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

2016-02-23 Thread Allan McRae
Date: Wednesday, February 24, 2016 @ 01:30:16
  Author: allan
Revision: 260209

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

Added:
  binutils/repos/testing-i686/
  binutils/repos/testing-i686/PKGBUILD
(from rev 260208, binutils/trunk/PKGBUILD)
  binutils/repos/testing-i686/binutils-e9c1bdad.patch
(from rev 260208, binutils/trunk/binutils-e9c1bdad.patch)
  binutils/repos/testing-i686/binutils.install
(from rev 260208, binutils/trunk/binutils.install)
  binutils/repos/testing-x86_64/
  binutils/repos/testing-x86_64/PKGBUILD
(from rev 260208, binutils/trunk/PKGBUILD)
  binutils/repos/testing-x86_64/binutils-e9c1bdad.patch
(from rev 260208, binutils/trunk/binutils-e9c1bdad.patch)
  binutils/repos/testing-x86_64/binutils.install
(from rev 260208, binutils/trunk/binutils.install)

+
 testing-i686/PKGBUILD  |   70 +++
 testing-i686/binutils-e9c1bdad.patch   |   78 +++
 testing-i686/binutils.install  |   17 ++
 testing-x86_64/PKGBUILD|   70 +++
 testing-x86_64/binutils-e9c1bdad.patch |   78 +++
 testing-x86_64/binutils.install|   17 ++
 6 files changed, 330 insertions(+)

Copied: binutils/repos/testing-i686/PKGBUILD (from rev 260208, 
binutils/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-02-24 00:30:16 UTC (rev 260209)
@@ -0,0 +1,70 @@
+# $Id$
+# Maintainer: Allan McRae 
+
+# toolchain build order: 
linux-api-headers->glibc->binutils->gcc->binutils->glibc
+
+pkgname=binutils
+pkgver=2.26
+pkgrel=2
+_commit=a4496709
+pkgdesc="A set of programs to assemble and manipulate binary and object files"
+arch=('i686' 'x86_64')
+url="http://www.gnu.org/software/binutils/;
+license=('GPL')
+groups=('base-devel')
+depends=('glibc>=2.23' 'zlib')
+makedepends=('git')
+checkdepends=('dejagnu' 'bc')
+conflicts=('binutils-multilib')
+replaces=('binutils-multilib')
+options=('staticlibs' '!distcc' '!ccache')
+install=binutils.install
+source=(git://sourceware.org/git/binutils-gdb.git#commit=${_commit})
+md5sums=('SKIP')
+
+prepare() {
+  cd binutils-gdb
+
+  # hack! - libiberty configure tests for header files using "$CPP $CPPFLAGS"
+  sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" libiberty/configure
+
+  mkdir ${srcdir}/binutils-build
+}
+
+build() {
+  cd binutils-build
+
+  ../binutils-gdb/configure --prefix=/usr \
+--with-lib-path=/usr/lib:/usr/local/lib \
+--with-bugurl=https://bugs.archlinux.org/ \
+--enable-threads --enable-shared --with-pic \
+--enable-ld=default --enable-gold --enable-plugins \
+--enable-deterministic-archives \
+--disable-werror --disable-gdb
+
+  # check the host environment and makes sure all the necessary tools are 
available
+  make configure-host
+
+  make tooldir=/usr
+}
+
+check() {
+  cd binutils-build
+  
+  # unset LDFLAGS as testsuite makes assumptions about which ones are active
+  # ignore failures in gold testsuite...
+  make -k LDFLAGS="" check || true
+}
+
+package() {
+  cd binutils-build
+  make prefix=${pkgdir}/usr tooldir=${pkgdir}/usr install
+
+  # Remove unwanted files
+  rm ${pkgdir}/usr/share/man/man1/{dlltool,nlmconv,windres,windmc}*
+
+  # No shared linking to these files outside binutils
+  rm ${pkgdir}/usr/lib/lib{bfd,opcodes}.so
+  echo "INPUT ( /usr/lib/libbfd.a -liberty -lz -ldl )" > 
"$pkgdir"/usr/lib/libbfd.so
+  echo "INPUT ( /usr/lib/libopcodes.a -lbfd )" > 
"$pkgdir"/usr/lib/libopcodes.so
+}

Copied: binutils/repos/testing-i686/binutils-e9c1bdad.patch (from rev 260208, 
binutils/trunk/binutils-e9c1bdad.patch)
===
--- testing-i686/binutils-e9c1bdad.patch(rev 0)
+++ testing-i686/binutils-e9c1bdad.patch2016-02-24 00:30:16 UTC (rev 
260209)
@@ -0,0 +1,78 @@
+diff --git a/gold/layout.cc b/gold/layout.cc
+index bcdaac8..7836640 100644
+--- a/gold/layout.cc
 b/gold/layout.cc
+@@ -4873,7 +4873,8 @@ Layout::finish_dynamic_section(const Input_objects* 
input_objects,
+ flags |= elfcpp::DF_STATIC_TLS;
+   if (parameters->options().origin())
+ flags |= elfcpp::DF_ORIGIN;
+-  if (parameters->options().Bsymbolic())
++  if (parameters->options().Bsymbolic()
++  && !parameters->options().have_dynamic_list())
+ {
+   flags |= elfcpp::DF_SYMBOLIC;
+   // Add DT_SYMBOLIC for compatibility with older loaders.
+diff --git a/gold/options.cc b/gold/options.cc
+index 7eb8f27..7f1f69e 100644
+--- a/gold/options.cc
 b/gold/options.cc
+@@ -1200,13 +1200,6 @@ General_options::finalize()
+   // in the path, as appropriate.
+   this->add_sysroot();
+ 
+-  // --dynamic-list overrides -Bsymbolic and -Bsymbolic-functions.
+-  if 

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

2016-02-23 Thread Allan McRae
Date: Wednesday, February 24, 2016 @ 01:29:07
  Author: allan
Revision: 260208

upgpkg: binutils 2.26-2

fix linker scripts

Modified:
  binutils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-24 00:01:09 UTC (rev 260207)
+++ PKGBUILD2016-02-24 00:29:07 UTC (rev 260208)
@@ -5,7 +5,7 @@
 
 pkgname=binutils
 pkgver=2.26
-pkgrel=1
+pkgrel=2
 _commit=a4496709
 pkgdesc="A set of programs to assemble and manipulate binary and object files"
 arch=('i686' 'x86_64')
@@ -65,6 +65,6 @@
 
   # No shared linking to these files outside binutils
   rm ${pkgdir}/usr/lib/lib{bfd,opcodes}.so
-  echo "INPUT ( %{_libdir}/libbfd.a -liberty -lz -ldl )" > 
"$pkgdir"/usr/lib/libbfd.so
-  echo "INPUT ( %{_libdir}/libopcodes.a -lbfd )" > 
"$pkgdir"/usr/lib/libopcodes.so
+  echo "INPUT ( /usr/lib/libbfd.a -liberty -lz -ldl )" > 
"$pkgdir"/usr/lib/libbfd.so
+  echo "INPUT ( /usr/lib/libopcodes.a -lbfd )" > 
"$pkgdir"/usr/lib/libopcodes.so
 }


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

2016-02-23 Thread Levente Polyak
Date: Wednesday, February 24, 2016 @ 01:22:25
  Author: anthraxx
Revision: 163251

archrelease: copy trunk to community-any

Added:
  websocketpp/repos/community-any/PKGBUILD
(from rev 163250, websocketpp/trunk/PKGBUILD)
Deleted:
  websocketpp/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-02-24 00:22:19 UTC (rev 163250)
+++ PKGBUILD2016-02-24 00:22:25 UTC (rev 163251)
@@ -1,50 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Kuba Serafinowski 
-# Contributor: Daichi Shinozaki 
-# Contributor: skydrome 
-# Contributor: MTsoul
-
-pkgname=websocketpp
-pkgver=0.6.0
-pkgrel=2
-pkgdesc='C++/Boost Asio based websocket client/server library'
-url='http://www.zaphoyd.com/websocketpp/'
-arch=('any')
-license=('BSD')
-optdepends=(
-  'openssl: TLS socket component support'
-  'asio: alternative asio transport support'
-  'boost: non C++11 environments support'
-  'boost-libs: non C++11 environments support'
-)
-makedepends=('cmake' 'boost' 'boost-libs' 'scons')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/zaphoyd/${pkgname}/archive/${pkgver}.tar.gz)
-sha512sums=('55dbb8d1666ae0d35d4b46ec2c375c9d3d66f57a473f526175a63bc147279c12bd8e605e5812a68ef45d8b6f51f4cfd6e61a1b971d223b5dc6e5528a6937fef8')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  WSPP_ENABLE_CPP11=1 \
-BOOST_LIBS=/usr/lib \
-BOOST_INCLUDES=/usr/include/boost \
-scons "${MAKEFLAGS}"
-  (cd build
-cmake -DCMAKE_INSTALL_PREFIX=/usr ..
-  )
-}
-
-check() {
-  cd ${pkgname}-${pkgver}
-  WSPP_ENABLE_CPP11=1 \
-BOOST_LIBS=/usr/lib \
-BOOST_INCLUDES=/usr/include/boost \
-scons test
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make -C build DESTDIR="${pkgdir}" install
-  install -Dm 644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  install -Dm 644 readme.md "${pkgdir}/usr/share/doc/${pkgname}/README"
-}
-
-# vim: ts=2 sw=2 et:

Copied: websocketpp/repos/community-any/PKGBUILD (from rev 163250, 
websocketpp/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-02-24 00:22:25 UTC (rev 163251)
@@ -0,0 +1,50 @@
+# Maintainer: Levente Polyak 
+# Contributor: Kuba Serafinowski 
+# Contributor: Daichi Shinozaki 
+# Contributor: skydrome 
+# Contributor: MTsoul
+
+pkgname=websocketpp
+pkgver=0.7.0
+pkgrel=1
+pkgdesc='C++/Boost Asio based websocket client/server library'
+url='http://www.zaphoyd.com/websocketpp/'
+arch=('any')
+license=('BSD')
+optdepends=(
+  'openssl: TLS socket component support'
+  'asio: alternative asio transport support'
+  'boost: non C++11 environments support'
+  'boost-libs: non C++11 environments support'
+)
+makedepends=('cmake' 'boost' 'boost-libs' 'scons')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/zaphoyd/${pkgname}/archive/${pkgver}.tar.gz)
+sha512sums=('91a86d4f5120db3f474169bb146f865f82167b1e9eedabec8793b31005e4ce3d22083283bc1b9f9e37fa0da835addcb2b68260a27c753852c06b3b1bb2f3c12e')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  WSPP_ENABLE_CPP11=1 \
+BOOST_LIBS=/usr/lib \
+BOOST_INCLUDES=/usr/include/boost \
+scons "${MAKEFLAGS}"
+  (cd build
+cmake -DCMAKE_INSTALL_PREFIX=/usr ..
+  )
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  WSPP_ENABLE_CPP11=1 \
+BOOST_LIBS=/usr/lib \
+BOOST_INCLUDES=/usr/include/boost \
+scons test
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make -C build DESTDIR="${pkgdir}" install
+  install -Dm 644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -Dm 644 readme.md "${pkgdir}/usr/share/doc/${pkgname}/README"
+}
+
+# vim: ts=2 sw=2 et:


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

2016-02-23 Thread Levente Polyak
Date: Wednesday, February 24, 2016 @ 01:22:19
  Author: anthraxx
Revision: 163250

upgpkg: websocketpp 0.7.0-1

Modified:
  websocketpp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-24 00:17:17 UTC (rev 163249)
+++ PKGBUILD2016-02-24 00:22:19 UTC (rev 163250)
@@ -5,8 +5,8 @@
 # Contributor: MTsoul
 
 pkgname=websocketpp
-pkgver=0.6.0
-pkgrel=2
+pkgver=0.7.0
+pkgrel=1
 pkgdesc='C++/Boost Asio based websocket client/server library'
 url='http://www.zaphoyd.com/websocketpp/'
 arch=('any')
@@ -19,7 +19,7 @@
 )
 makedepends=('cmake' 'boost' 'boost-libs' 'scons')
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/zaphoyd/${pkgname}/archive/${pkgver}.tar.gz)
-sha512sums=('55dbb8d1666ae0d35d4b46ec2c375c9d3d66f57a473f526175a63bc147279c12bd8e605e5812a68ef45d8b6f51f4cfd6e61a1b971d223b5dc6e5528a6937fef8')
+sha512sums=('91a86d4f5120db3f474169bb146f865f82167b1e9eedabec8793b31005e4ce3d22083283bc1b9f9e37fa0da835addcb2b68260a27c753852c06b3b1bb2f3c12e')
 
 build() {
   cd ${pkgname}-${pkgver}


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

2016-02-23 Thread Levente Polyak
Date: Wednesday, February 24, 2016 @ 01:16:43
  Author: anthraxx
Revision: 163246

upgpkg: afl 2.04b-1

Modified:
  afl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-23 22:58:57 UTC (rev 163245)
+++ PKGBUILD2016-02-24 00:16:43 UTC (rev 163246)
@@ -2,7 +2,7 @@
 # Contributor: spider-mario 
 
 pkgname=afl
-pkgver=2.03b
+pkgver=2.04b
 pkgrel=1
 pkgdesc='Security-oriented fuzzer using compile-time instrumentation and 
genetic algorithms'
 url="http://lcamtuf.coredump.cx/afl/;
@@ -20,7 +20,7 @@
 replaces=('american-fuzzy-lop')
 options=('!emptydirs' '!strip')
 
source=(${pkgname}-${pkgver}.tgz::http://lcamtuf.coredump.cx/${pkgname}/releases/${pkgname}-${pkgver}.tgz)
-sha512sums=('9b15574e30cb065900e43f2fd7b97e34b2d9e43a37f84423c9022c6363c7d0a211aaf1adaa52f389484e717abcd0929d330a8fb8e661d906b2818dfcf6987c96')
+sha512sums=('d09d36bf85f6a36fc981b6804202b01fba84b2b879647de9211df89e77ca58e526f5b2158a6fa5f1a647e8b588b20fd34cb012011728537d61b4924a22a866db')
 
 build() {
   cd ${pkgname}-${pkgver}


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

2016-02-23 Thread Levente Polyak
Date: Wednesday, February 24, 2016 @ 01:17:07
  Author: anthraxx
Revision: 163248

upgpkg: valabind 0.10.0-1

Modified:
  valabind/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-24 00:16:53 UTC (rev 163247)
+++ PKGBUILD2016-02-24 00:17:07 UTC (rev 163248)
@@ -1,8 +1,8 @@
 # Maintainer: Levente Polyak 
 
 pkgname=valabind
-pkgver=0.9.2
-pkgrel=3
+pkgver=0.10.0
+pkgrel=1
 pkgdesc="Tool to parse vala or vapi files to transform them into swig 
interface files, C++, NodeJS-ffi or GIR"
 url="http://radare.org;
 arch=('i686' 'x86_64')
@@ -9,7 +9,7 @@
 license=('GPL3')
 depends=('vala' 'swig' 'sh')
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/radare/${pkgname}/archive/${pkgver}.tar.gz)
-sha512sums=('204b74a851dc052afeecfb7b98e8b8a4e3ae5e05c7bda3213f38a4f30e144cfc9a1ad9fc5197ae1dd8e2ff931df87cce7810ce37c900e4d8e287abaecef43b9b')
+sha512sums=('8a1cb5d9c0960df0832d7c72a5204a24ec56f7ced9defe80636670502d6807db63af31fb3d0b0970bb35e27c907455270aa1b898ab1a8818373a271849fb388d')
 
 build() {
   cd ${pkgname}-${pkgver}


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

2016-02-23 Thread Levente Polyak
Date: Wednesday, February 24, 2016 @ 01:17:17
  Author: anthraxx
Revision: 163249

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-02-24 00:17:07 UTC (rev 163248)
+++ community-i686/PKGBUILD 2016-02-24 00:17:17 UTC (rev 163249)
@@ -1,24 +0,0 @@
-# Maintainer: Levente Polyak 
-
-pkgname=valabind
-pkgver=0.9.2
-pkgrel=3
-pkgdesc="Tool to parse vala or vapi files to transform them into swig 
interface files, C++, NodeJS-ffi or GIR"
-url="http://radare.org;
-arch=('i686' 'x86_64')
-license=('GPL3')
-depends=('vala' 'swig' 'sh')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/radare/${pkgname}/archive/${pkgver}.tar.gz)
-sha512sums=('204b74a851dc052afeecfb7b98e8b8a4e3ae5e05c7bda3213f38a4f30e144cfc9a1ad9fc5197ae1dd8e2ff931df87cce7810ce37c900e4d8e287abaecef43b9b')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-}
-
-# vim: ts=2 sw=2 et:

Copied: valabind/repos/community-i686/PKGBUILD (from rev 163248, 
valabind/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-02-24 00:17:17 UTC (rev 163249)
@@ -0,0 +1,24 @@
+# Maintainer: Levente Polyak 
+
+pkgname=valabind
+pkgver=0.10.0
+pkgrel=1
+pkgdesc="Tool to parse vala or vapi files to transform them into swig 
interface files, C++, NodeJS-ffi or GIR"
+url="http://radare.org;
+arch=('i686' 'x86_64')
+license=('GPL3')
+depends=('vala' 'swig' 'sh')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/radare/${pkgname}/archive/${pkgver}.tar.gz)
+sha512sums=('8a1cb5d9c0960df0832d7c72a5204a24ec56f7ced9defe80636670502d6807db63af31fb3d0b0970bb35e27c907455270aa1b898ab1a8818373a271849fb388d')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-02-24 00:17:07 UTC (rev 163248)
+++ community-x86_64/PKGBUILD   2016-02-24 00:17:17 UTC (rev 163249)
@@ -1,24 +0,0 @@
-# Maintainer: Levente Polyak 
-
-pkgname=valabind
-pkgver=0.9.2
-pkgrel=3
-pkgdesc="Tool to parse vala or vapi files to transform them into swig 
interface files, C++, NodeJS-ffi or GIR"
-url="http://radare.org;
-arch=('i686' 'x86_64')
-license=('GPL3')
-depends=('vala' 'swig' 'sh')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/radare/${pkgname}/archive/${pkgver}.tar.gz)
-sha512sums=('204b74a851dc052afeecfb7b98e8b8a4e3ae5e05c7bda3213f38a4f30e144cfc9a1ad9fc5197ae1dd8e2ff931df87cce7810ce37c900e4d8e287abaecef43b9b')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-}
-
-# vim: ts=2 sw=2 et:

Copied: valabind/repos/community-x86_64/PKGBUILD (from rev 163248, 
valabind/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-02-24 00:17:17 UTC (rev 163249)
@@ -0,0 +1,24 @@
+# Maintainer: Levente Polyak 
+
+pkgname=valabind
+pkgver=0.10.0
+pkgrel=1
+pkgdesc="Tool to parse vala or vapi files to transform them into swig 
interface files, C++, NodeJS-ffi or GIR"
+url="http://radare.org;
+arch=('i686' 'x86_64')
+license=('GPL3')
+depends=('vala' 'swig' 'sh')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/radare/${pkgname}/archive/${pkgver}.tar.gz)
+sha512sums=('8a1cb5d9c0960df0832d7c72a5204a24ec56f7ced9defe80636670502d6807db63af31fb3d0b0970bb35e27c907455270aa1b898ab1a8818373a271849fb388d')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:


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

2016-02-23 Thread Levente Polyak
Date: Wednesday, February 24, 2016 @ 01:16:53
  Author: anthraxx
Revision: 163247

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

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

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

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

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

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

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

2016-02-23 Thread Gaetan Bisson
Date: Wednesday, February 24, 2016 @ 01:01:09
  Author: bisson
Revision: 260207

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

Added:
  mpd/repos/testing-i686/PKGBUILD
(from rev 260206, mpd/trunk/PKGBUILD)
  mpd/repos/testing-i686/conf
(from rev 260206, mpd/trunk/conf)
  mpd/repos/testing-i686/install
(from rev 260206, mpd/trunk/install)
  mpd/repos/testing-i686/tmpfiles.d
(from rev 260206, mpd/trunk/tmpfiles.d)
  mpd/repos/testing-x86_64/PKGBUILD
(from rev 260206, mpd/trunk/PKGBUILD)
  mpd/repos/testing-x86_64/conf
(from rev 260206, mpd/trunk/conf)
  mpd/repos/testing-x86_64/install
(from rev 260206, mpd/trunk/install)
  mpd/repos/testing-x86_64/tmpfiles.d
(from rev 260206, mpd/trunk/tmpfiles.d)
Deleted:
  mpd/repos/testing-i686/PKGBUILD
  mpd/repos/testing-i686/conf
  mpd/repos/testing-i686/install
  mpd/repos/testing-i686/tmpfiles.d
  mpd/repos/testing-x86_64/PKGBUILD
  mpd/repos/testing-x86_64/conf
  mpd/repos/testing-x86_64/install
  mpd/repos/testing-x86_64/tmpfiles.d

---+
 /PKGBUILD |  110 
 /conf |   12 
 /install  |   22 
 /tmpfiles.d   |2 
 testing-i686/PKGBUILD |   54 -
 testing-i686/conf |6 --
 testing-i686/install  |   11 
 testing-i686/tmpfiles.d   |1 
 testing-x86_64/PKGBUILD   |   54 -
 testing-x86_64/conf   |6 --
 testing-x86_64/install|   11 
 testing-x86_64/tmpfiles.d |1 
 12 files changed, 146 insertions(+), 144 deletions(-)

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2016-02-23 23:59:51 UTC (rev 260206)
+++ testing-i686/PKGBUILD   2016-02-24 00:01:09 UTC (rev 260207)
@@ -1,54 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson 
-# Contributor: Angel Velasquez 
-# Contributor: Andrea Scarpino 
-# Contributor: Damir Perisa 
-# Contributor: Ben 
-
-pkgname=mpd
-pkgver=0.19.13
-pkgrel=1
-pkgdesc='Flexible, powerful, server-side application for playing music'
-url='http://www.musicpd.org/'
-license=('GPL')
-arch=('i686' 'x86_64')
-depends=('libao' 'ffmpeg' 'libmodplug' 'audiofile' 'libshout' 'libmad' 'curl' 
'faad2'
- 'sqlite' 'jack' 'libmms' 'wavpack' 'avahi' 'libid3tag' 'yajl' 
'libmpdclient'
- 'icu' 'libupnp' 'libnfs' 'libsamplerate' 'libsoxr' 'smbclient')
-makedepends=('boost' 'doxygen')
-source=("http://www.musicpd.org/download/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;
-'tmpfiles.d'
-'conf')
-sha1sums=('1bbd8a9d80018d47867b205ea00e76bef9bbc351'
-  'f4d5922abb69abb739542d8e93f4dfd748acdad7'
-  '291fd5cda9f0845834a553017327c4586bd853f6')
-
-backup=('etc/mpd.conf')
-install=install
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   ./configure \
-   --prefix=/usr \
-   --sysconfdir=/etc \
-   --enable-libmpdclient \
-   --enable-jack \
-   --enable-soundcloud \
-   --enable-pipe-output \
-   --enable-pulse \
-   --disable-sidplay \
-   --with-systemdsystemunitdir=/usr/lib/systemd/system
-   make
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}" install
-   install -Dm644 ../conf "${pkgdir}"/etc/mpd.conf
-   install -Dm644 ../tmpfiles.d "${pkgdir}"/usr/lib/tmpfiles.d/mpd.conf
-   install -d -g 45 -o 45 "${pkgdir}"/var/lib/mpd{,/playlists}
-
-   install -Dm644 "${pkgdir}"/usr/lib/systemd/{system,user}/mpd.service
-   sed '/\[Service\]/a User=mpd' -i 
"${pkgdir}"/usr/lib/systemd/system/mpd.service
-   sed '/WantedBy=/c WantedBy=default.target' -i 
"${pkgdir}"/usr/lib/systemd/{system,user}/mpd.service
-}

Copied: mpd/repos/testing-i686/PKGBUILD (from rev 260206, mpd/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-02-24 00:01:09 UTC (rev 260207)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Angel Velasquez 
+# Contributor: Andrea Scarpino 
+# Contributor: Damir Perisa 
+# Contributor: Ben 
+
+pkgname=mpd
+pkgver=0.19.13
+pkgrel=1
+pkgdesc='Flexible, powerful, server-side application for playing music'
+url='http://www.musicpd.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+depends=('libao' 'ffmpeg' 'libmodplug' 'audiofile' 'libshout' 'libmad' 'curl' 
'faad2'
+ 'sqlite' 'jack' 'libmms' 'wavpack' 'avahi' 'libid3tag' 'yajl' 
'libmpdclient'
+ 'icu' 'libupnp' 'libnfs' 'libsamplerate' 'libsoxr' 

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

2016-02-23 Thread Gaetan Bisson
Date: Wednesday, February 24, 2016 @ 00:59:51
  Author: bisson
Revision: 260206

oopsy

Modified:
  mpd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-23 23:58:40 UTC (rev 260205)
+++ PKGBUILD2016-02-23 23:59:51 UTC (rev 260206)
@@ -16,10 +16,11 @@
  'sqlite' 'jack' 'libmms' 'wavpack' 'avahi' 'libid3tag' 'yajl' 
'libmpdclient'
  'icu' 'libupnp' 'libnfs' 'libsamplerate' 'libsoxr' 'smbclient')
 makedepends=('boost' 'doxygen')
-source=("http://www.musicpd.org/download/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;
+validpgpkeys=('0392335A78083894A4301C43236E8A58C6DB4512')
+source=("http://www.musicpd.org/download/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz"{,.sig}
 'tmpfiles.d'
 'conf')
-sha1sums=('1bbd8a9d80018d47867b205ea00e76bef9bbc351'
+sha1sums=('1bbd8a9d80018d47867b205ea00e76bef9bbc351' 'SKIP'
   'f4d5922abb69abb739542d8e93f4dfd748acdad7'
   '291fd5cda9f0845834a553017327c4586bd853f6')
 


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

2016-02-23 Thread Gaetan Bisson
Date: Wednesday, February 24, 2016 @ 00:57:53
  Author: bisson
Revision: 260204

upstream update

Modified:
  mpd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-23 23:51:22 UTC (rev 260203)
+++ PKGBUILD2016-02-23 23:57:53 UTC (rev 260204)
@@ -6,8 +6,8 @@
 # Contributor: Ben 
 
 pkgname=mpd
-pkgver=0.19.12
-pkgrel=2
+pkgver=0.19.13
+pkgrel=1
 pkgdesc='Flexible, powerful, server-side application for playing music'
 url='http://www.musicpd.org/'
 license=('GPL')
@@ -16,11 +16,10 @@
  'sqlite' 'jack' 'libmms' 'wavpack' 'avahi' 'libid3tag' 'yajl' 
'libmpdclient'
  'icu' 'libupnp' 'libnfs' 'libsamplerate' 'libsoxr' 'smbclient')
 makedepends=('boost' 'doxygen')
-validpgpkeys=('0392335A78083894A4301C43236E8A58C6DB4512')
-source=("http://www.musicpd.org/download/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz"{,.sig}
+source=("http://www.musicpd.org/download/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;
 'tmpfiles.d'
 'conf')
-sha1sums=('9de55e24d2612526ca8eb688126d0784339f2ee8' 'SKIP'
+sha1sums=('1bbd8a9d80018d47867b205ea00e76bef9bbc351'
   'f4d5922abb69abb739542d8e93f4dfd748acdad7'
   '291fd5cda9f0845834a553017327c4586bd853f6')
 


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

2016-02-23 Thread Gaetan Bisson
Date: Wednesday, February 24, 2016 @ 00:58:40
  Author: bisson
Revision: 260205

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

Added:
  mpd/repos/testing-i686/PKGBUILD
(from rev 260204, mpd/trunk/PKGBUILD)
  mpd/repos/testing-i686/conf
(from rev 260204, mpd/trunk/conf)
  mpd/repos/testing-i686/install
(from rev 260204, mpd/trunk/install)
  mpd/repos/testing-i686/tmpfiles.d
(from rev 260204, mpd/trunk/tmpfiles.d)
  mpd/repos/testing-x86_64/PKGBUILD
(from rev 260204, mpd/trunk/PKGBUILD)
  mpd/repos/testing-x86_64/conf
(from rev 260204, mpd/trunk/conf)
  mpd/repos/testing-x86_64/install
(from rev 260204, mpd/trunk/install)
  mpd/repos/testing-x86_64/tmpfiles.d
(from rev 260204, mpd/trunk/tmpfiles.d)
Deleted:
  mpd/repos/testing-i686/PKGBUILD
  mpd/repos/testing-i686/conf
  mpd/repos/testing-i686/install
  mpd/repos/testing-i686/tmpfiles.d
  mpd/repos/testing-x86_64/PKGBUILD
  mpd/repos/testing-x86_64/conf
  mpd/repos/testing-x86_64/install
  mpd/repos/testing-x86_64/tmpfiles.d

---+
 /PKGBUILD |  108 
 /conf |   12 
 /install  |   22 
 /tmpfiles.d   |2 
 testing-i686/PKGBUILD |   55 --
 testing-i686/conf |6 --
 testing-i686/install  |   11 
 testing-i686/tmpfiles.d   |1 
 testing-x86_64/PKGBUILD   |   55 --
 testing-x86_64/conf   |6 --
 testing-x86_64/install|   11 
 testing-x86_64/tmpfiles.d |1 
 12 files changed, 144 insertions(+), 146 deletions(-)

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2016-02-23 23:57:53 UTC (rev 260204)
+++ testing-i686/PKGBUILD   2016-02-23 23:58:40 UTC (rev 260205)
@@ -1,55 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson 
-# Contributor: Angel Velasquez 
-# Contributor: Andrea Scarpino 
-# Contributor: Damir Perisa 
-# Contributor: Ben 
-
-pkgname=mpd
-pkgver=0.19.12
-pkgrel=2
-pkgdesc='Flexible, powerful, server-side application for playing music'
-url='http://www.musicpd.org/'
-license=('GPL')
-arch=('i686' 'x86_64')
-depends=('libao' 'ffmpeg' 'libmodplug' 'audiofile' 'libshout' 'libmad' 'curl' 
'faad2'
- 'sqlite' 'jack' 'libmms' 'wavpack' 'avahi' 'libid3tag' 'yajl' 
'libmpdclient'
- 'icu' 'libupnp' 'libnfs' 'libsamplerate' 'libsoxr' 'smbclient')
-makedepends=('boost' 'doxygen')
-validpgpkeys=('0392335A78083894A4301C43236E8A58C6DB4512')
-source=("http://www.musicpd.org/download/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz"{,.sig}
-'tmpfiles.d'
-'conf')
-sha1sums=('9de55e24d2612526ca8eb688126d0784339f2ee8' 'SKIP'
-  'f4d5922abb69abb739542d8e93f4dfd748acdad7'
-  '291fd5cda9f0845834a553017327c4586bd853f6')
-
-backup=('etc/mpd.conf')
-install=install
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   ./configure \
-   --prefix=/usr \
-   --sysconfdir=/etc \
-   --enable-libmpdclient \
-   --enable-jack \
-   --enable-soundcloud \
-   --enable-pipe-output \
-   --enable-pulse \
-   --disable-sidplay \
-   --with-systemdsystemunitdir=/usr/lib/systemd/system
-   make
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}" install
-   install -Dm644 ../conf "${pkgdir}"/etc/mpd.conf
-   install -Dm644 ../tmpfiles.d "${pkgdir}"/usr/lib/tmpfiles.d/mpd.conf
-   install -d -g 45 -o 45 "${pkgdir}"/var/lib/mpd{,/playlists}
-
-   install -Dm644 "${pkgdir}"/usr/lib/systemd/{system,user}/mpd.service
-   sed '/\[Service\]/a User=mpd' -i 
"${pkgdir}"/usr/lib/systemd/system/mpd.service
-   sed '/WantedBy=/c WantedBy=default.target' -i 
"${pkgdir}"/usr/lib/systemd/{system,user}/mpd.service
-}

Copied: mpd/repos/testing-i686/PKGBUILD (from rev 260204, mpd/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-02-23 23:58:40 UTC (rev 260205)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Angel Velasquez 
+# Contributor: Andrea Scarpino 
+# Contributor: Damir Perisa 
+# Contributor: Ben 
+
+pkgname=mpd
+pkgver=0.19.13
+pkgrel=1
+pkgdesc='Flexible, powerful, server-side application for playing music'
+url='http://www.musicpd.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+depends=('libao' 'ffmpeg' 'libmodplug' 'audiofile' 'libshout' 'libmad' 'curl' 
'faad2'
+ 'sqlite' 'jack' 'libmms' 'wavpack' 'avahi' 'libid3tag' 'yajl' 

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

2016-02-23 Thread Massimiliano Torromeo
Date: Tuesday, February 23, 2016 @ 23:58:57
  Author: mtorromeo
Revision: 163245

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

Added:
  percona-server/repos/community-i686/PKGBUILD
(from rev 163244, percona-server/trunk/PKGBUILD)
  percona-server/repos/community-i686/my.cnf
(from rev 163244, percona-server/trunk/my.cnf)
  percona-server/repos/community-i686/mysql-user.conf
(from rev 163244, percona-server/trunk/mysql-user.conf)
  percona-server/repos/community-i686/percona.install
(from rev 163244, percona-server/trunk/percona.install)
  percona-server/repos/community-x86_64/PKGBUILD
(from rev 163244, percona-server/trunk/PKGBUILD)
  percona-server/repos/community-x86_64/my.cnf
(from rev 163244, percona-server/trunk/my.cnf)
  percona-server/repos/community-x86_64/mysql-user.conf
(from rev 163244, percona-server/trunk/mysql-user.conf)
  percona-server/repos/community-x86_64/percona.install
(from rev 163244, percona-server/trunk/percona.install)
Deleted:
  percona-server/repos/community-i686/PKGBUILD
  percona-server/repos/community-i686/my.cnf
  percona-server/repos/community-i686/mysql-user.conf
  percona-server/repos/community-i686/mysql56-bufsize.patch
  percona-server/repos/community-i686/mysqld-tmpfile.conf
  percona-server/repos/community-i686/percona.install
  percona-server/repos/community-x86_64/PKGBUILD
  percona-server/repos/community-x86_64/my.cnf
  percona-server/repos/community-x86_64/mysql-user.conf
  percona-server/repos/community-x86_64/mysql56-bufsize.patch
  percona-server/repos/community-x86_64/mysqld-tmpfile.conf
  percona-server/repos/community-x86_64/percona.install

+
 /PKGBUILD  |  332 +++
 /my.cnf|   76 +++
 /mysql-user.conf   |2 
 /percona.install   |   38 +++
 community-i686/PKGBUILD|  169 ---
 community-i686/my.cnf  |   38 ---
 community-i686/mysql-user.conf |1 
 community-i686/mysql56-bufsize.patch   |   20 -
 community-i686/mysqld-tmpfile.conf |1 
 community-i686/percona.install |   25 --
 community-x86_64/PKGBUILD  |  169 ---
 community-x86_64/my.cnf|   38 ---
 community-x86_64/mysql-user.conf   |1 
 community-x86_64/mysql56-bufsize.patch |   20 -
 community-x86_64/mysqld-tmpfile.conf   |1 
 community-x86_64/percona.install   |   25 --
 16 files changed, 448 insertions(+), 508 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-02-23 22:58:23 UTC (rev 163244)
+++ community-i686/PKGBUILD 2016-02-23 22:58:57 UTC (rev 163245)
@@ -1,169 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo 
-
-pkgbase=percona-server
-pkgname=('libperconaserverclient' 'percona-server-clients' 'percona-server')
-pkgver=5.6.28_76.1
-_pkgver=${pkgver/_/-}
-_myver=${pkgver/_rel*}
-pkgrel=1
-arch=('i686' 'x86_64')
-# valgrind necessary for bug 
https://bugs.launchpad.net/percona-server/+bug/1494283
-makedepends=('cmake' 'openssl' 'zlib' 'libaio' 'systemd-tools' 'valgrind')
-license=('GPL' 'AGPL')
-url="http://www.percona.com/software/percona-server/;
-source=("http://www.percona.com/downloads/Percona-Server-${pkgver%.*_*}/Percona-Server-$_pkgver/source/tarball/percona-server-$_pkgver.tar.gz;
-'my.cnf'
-'mysql-user.conf'
-'mysqld-tmpfile.conf'
-'mysql56-bufsize.patch')
-
-prepare() {
-   cd $pkgbase-$_pkgver
-   patch -p0 -i ../mysql56-bufsize.patch
-   rm -v sql/sql_yacc.{cc,h}
-   sed 's|$datadir/mysql.sock|/run/mysqld/mysqld.sock|' \
-   -i packaging/rpm-fedora/mysql-systemd-start
-   sed 's|${fullhostname}|"archbuild"|' \
-   -i storage/tokudb/PerconaFT/cmake_modules/TokuSetupCTest.cmake
-}
-
-build() {
-   rm -rf build
-   mkdir build
-   cd build
-
-   cmake ../$pkgbase-$_pkgver \
-   -DCMAKE_BUILD_TYPE=Release \
-   -DBUILD_CONFIG=mysql_release \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DSYSCONFDIR=/etc/mysql \
-   -DMYSQL_DATADIR=/var/lib/mysql \
-   -DMYSQL_UNIX_ADDR=/run/mysqld/mysqld.sock \
-   -DDEFAULT_CHARSET=utf8 \
-   -DDEFAULT_COLLATION=utf8_general_ci \
-   -DENABLED_LOCAL_INFILE=ON \
-   -DINSTALL_INFODIR=share/mysql/docs \
-   -DINSTALL_MANDIR=share/man \
-   -DINSTALL_PLUGINDIR=lib/mysql/plugin \
-   -DINSTALL_SCRIPTDIR=bin \
-   -DINSTALL_INCLUDEDIR=include/perconaserver \
-   -DINSTALL_DOCREADMEDIR=share/mysql \
-   -DINSTALL_SUPPORTFILESDIR=share/mysql \
-   -DINSTALL_MYSQLSHAREDIR=share/mysql \
-

[arch-commits] Commit in percona-server/trunk (PKGBUILD percona.install)

2016-02-23 Thread Massimiliano Torromeo
Date: Tuesday, February 23, 2016 @ 23:58:23
  Author: mtorromeo
Revision: 163244

upgpkg: percona-server 5.7.10_3-1

Updated to 5.7.10

Modified:
  percona-server/trunk/PKGBUILD
  percona-server/trunk/percona.install

-+
 PKGBUILD|   16 +---
 percona.install |   24 +---
 2 files changed, 18 insertions(+), 22 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-02-23 21:30:14 UTC (rev 163243)
+++ PKGBUILD2016-02-23 22:58:23 UTC (rev 163244)
@@ -10,7 +10,7 @@
 pkgrel=1
 arch=('i686' 'x86_64')
 # valgrind necessary for bug 
https://bugs.launchpad.net/percona-server/+bug/1494283
-makedepends=('cmake' 'openssl' 'zlib' 'libaio' 'systemd-tools' 'valgrind')
+makedepends=('cmake' 'openssl' 'zlib' 'libaio' 'systemd-tools' 'valgrind' 
'pam')
 license=('GPL' 'AGPL')
 url="http://www.percona.com/software/percona-server/;
 
source=("http://www.percona.com/downloads/Percona-Server-${pkgver%.*_*}/Percona-Server-$_pkgver/source/tarball/percona-server-$_pkgver.tar.gz;
@@ -78,7 +78,7 @@
 
 package_libperconaserverclient() {
pkgdesc='Percona Server client libraries'
-   depends=('openssl')
+   depends=('openssl' 'libaio')
 
cd build
for dir in include libmysql libmysqld libservices; do
@@ -94,7 +94,7 @@
 
 package_percona-server-clients() {
pkgdesc='Percona Server client tools'
-   depends=('libperconaserverclient' 'zlib')
+   depends=('libperconaserverclient' 'zlib' 'openssl')
conflicts=('mysql-clients')
provides=("mysql-clients=$_myver" "mariadb-clients=$_myver")
 
@@ -108,7 +108,7 @@
done
 
# provided by percona-server
-   rm 
"$pkgdir"/usr/bin/{mysql_{plugin,upgrade},mysqlbinlog,mysqltest,mysql_config_editor}
+   rm 
"$pkgdir"/usr/bin/mysql{_plugin,_upgrade,binlog,test,_config_editor,_install_db,_secure_installation,_ssl_rsa_setup}
 }
 
 package_percona-server() {
@@ -115,7 +115,7 @@
pkgdesc='Drop-in replacement for MySQL that provides improved 
performance, diagnostics, instrumentation and TokuDB storage engine'
backup=('etc/mysql/my.cnf')
install=percona.install
-   depends=('percona-server-clients' 'libaio' 'systemd-tools' 'pam')
+   depends=('libaio' 'systemd-tools' 'pam')
optdepends=('perl-dbd-mysql')
conflicts=('mysql')
provides=("mysql=$_myver" "mariadb=$_myver")
@@ -128,6 +128,8 @@
install -Dm644 ../mysql-user.conf 
"$pkgdir"/usr/lib/sysusers.d/mysql.conf
 
   cd "$pkgdir"
+  mv usr/usr/lib/* usr/lib
+  rm -rf usr/usr
 
# Move documentation
install -dm755 usr/share/doc
@@ -146,8 +148,8 @@
rm 
usr/share/man/man1/{mysql_config,mysql_client_test_embedded,mysqltest_embedded}.1
 
# provided by percona-server-clients
-   rm 
usr/bin/{mysql,mysqladmin,mysqlcheck,mysqldump,mysqlimport,mysqlshow,mysqlslap}
-   rm 
usr/share/man/man1/{mysql,mysqladmin,mysqlcheck,mysqldump,mysqlimport,mysqlshow,mysqlslap}.1
+   rm usr/bin/mysql{,admin,check,dump,import,show,slap,pump}
+   rm usr/share/man/man1/mysql{,admin,check,dump,import,show,slap,pump}.1
 
# deprecated/unused
rm usr/bin/replace

Modified: percona.install
===
--- percona.install 2016-02-23 21:30:14 UTC (rev 163243)
+++ percona.install 2016-02-23 22:58:23 UTC (rev 163244)
@@ -1,25 +1,19 @@
-if [[ $(command -v my_print_defaults >/dev/null 2>&1) ]]; then
-  datadir=$(my_print_defaults mysqld | sed -n "s/^--datadir=//p")
-fi
-[[ -z $datadir ]] && datadir=/var/lib/mysql
-
-post_install(){
+post_install() {
   systemd-sysusers mysql.conf
+  systemd-tmpfiles --create mysql.conf
 
-  if [[ ! -e $datadir ]]; then
-install -dm700 $datadir
-mysql_install_db --user=mysql --basedir=/usr --datadir=$datadir
-  fi
-
-  systemd-tmpfiles --create mysql.conf
+  echo " >> "
+  echo " >> A temporary password is generated on first start and logged in 
journald."
+  echo " >> Use 'journalctl -au mysqld | grep "\""temporary password"\""' to 
retrieve it."
+  echo " >> "
 }
 
-post_upgrade(){
+post_upgrade() {
   systemd-sysusers mysql.conf
 
-  if [ "$(vercmp $2 5.6)" -lt 0 ]; then
+  if [ "$(vercmp $2 5.7)" -lt 0 ]; then
 echo " >> "
-echo " >> Major version update. Consider restart the service, and then 
running mysql_upgrade after it."
+echo " >> Major version update. Consider restart the service, running 
mysql_upgrade and restart it again after it."
 echo " >> "
   fi
 }


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

2016-02-23 Thread Alexander Rødseth
Date: Tuesday, February 23, 2016 @ 22:28:02
  Author: arodseth
Revision: 163238

upgpkg: vim-seti 1.0-2

Modified:
  vim-seti/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-23 20:07:08 UTC (rev 163237)
+++ PKGBUILD2016-02-23 21:28:02 UTC (rev 163238)
@@ -3,18 +3,18 @@
 
 pkgname=vim-seti
 pkgver=1.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Colorscheme based on Jesse Weed's Seti theme for the Atom editor"
 arch=('any')
 url='https://github.com/trusktr/seti.vim'
-license=('unknown')
+license=('custom:unknown')
+groups=('vim-plugins')
 depends=('vim')
 
source=('seti.vim::https://raw.githubusercontent.com/trusktr/seti.vim/1825cc5000defac0e57f518e64fc50b79db02c1b/colors/seti.vim')
-md5sums=('ebf431562f010abcef9773bfe22c946f')
+sha256sums=('fe956cf6fbcf0a0fb7f870c3cb52b2d28da1932815da5c5fa3832d26dfaebe31')
 
 package() {
   install -Dm644 seti.vim "$pkgdir/usr/share/vim/vimfiles/colors/seti.vim"
 }
 
-# getver: -u 2
 # vim:set ts=2 sw=2 et:


[arch-commits] Commit in vim-airline/repos/community-any (4 files)

2016-02-23 Thread Alexander Rødseth
Date: Tuesday, February 23, 2016 @ 22:30:14
  Author: arodseth
Revision: 163243

archrelease: copy trunk to community-any

Added:
  vim-airline/repos/community-any/PKGBUILD
(from rev 163242, vim-airline/trunk/PKGBUILD)
  vim-airline/repos/community-any/vimdoc.install
(from rev 163242, vim-airline/trunk/vimdoc.install)
Deleted:
  vim-airline/repos/community-any/PKGBUILD
  vim-airline/repos/community-any/vimdoc.install

+
 PKGBUILD   |   67 +++
 vimdoc.install |   32 +-
 2 files changed, 50 insertions(+), 49 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-02-23 21:30:06 UTC (rev 163242)
+++ PKGBUILD2016-02-23 21:30:14 UTC (rev 163243)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-# Contributor: olantwin 
-
-pkgname=vim-airline
-pkgver=0.7
-pkgrel=3
-pkgdesc='Lean & mean statusline/tabline for ViM'
-arch=('any')
-url='https://github.com/vim-airline/vim-airline'
-license=('MIT')
-depends=('vim-runtime')
-makedepends=('git')
-#optdepends=('otf-powerline-symbols-git: Use the Powerline symbols')
-install='vimdoc.install'
-source=("git://github.com/vim-airline/$pkgname.git#tag=v$pkgver")
-md5sums=('SKIP')
-
-package() {
-  cd "$pkgname"
-
-  _installpath="$pkgdir/usr/share/vim/vimfiles"
-  install -Dm755 doc/airline.txt "$_installpath/doc/airline.txt"
-  install -Dm755 plugin/airline.vim "$_installpath/plugin/airline.vim"
-  install -d "$_installpath/autoload"
-  install -d "$_installpath/t"
-  cp -R autoload/* "$_installpath/autoload"
-  cp -R t/* "$_installpath/t"
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# getver: raw.githubusercontent.com/vim-airline/vim-airline/master/CHANGELOG.md
-# vim:set ts=2 sw=2 et:

Copied: vim-airline/repos/community-any/PKGBUILD (from rev 163242, 
vim-airline/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-02-23 21:30:14 UTC (rev 163243)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+# Contributor: olantwin 
+
+pkgname=vim-airline
+pkgver=0.7
+pkgrel=4
+pkgdesc='Lean & mean statusline/tabline for ViM'
+arch=('any')
+url='https://github.com/vim-airline/vim-airline'
+license=('MIT')
+depends=('vim-runtime')
+makedepends=('git')
+groups=('vim-plugins')
+#optdepends=('otf-powerline-symbols-git: Use the Powerline symbols')
+install='vimdoc.install'
+source=("git://github.com/vim-airline/$pkgname.git#tag=v$pkgver")
+md5sums=('SKIP')
+
+package() {
+  cd "$pkgname"
+
+  _installpath="$pkgdir/usr/share/vim/vimfiles"
+  install -Dm755 doc/airline.txt "$_installpath/doc/airline.txt"
+  install -Dm755 plugin/airline.vim "$_installpath/plugin/airline.vim"
+  install -d "$_installpath/autoload"
+  install -d "$_installpath/t"
+  cp -R autoload/* "$_installpath/autoload"
+  cp -R t/* "$_installpath/t"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# getver: raw.githubusercontent.com/vim-airline/vim-airline/master/CHANGELOG.md
+# vim:set ts=2 sw=2 et:

Deleted: vimdoc.install
===
--- vimdoc.install  2016-02-23 21:30:06 UTC (rev 163242)
+++ vimdoc.install  2016-02-23 21:30:14 UTC (rev 163243)
@@ -1,16 +0,0 @@
-post_install() {
-echo -n 'Updating vim help tags...'
-/usr/bin/vim --noplugins -u NONE -U NONE \
- --cmd ":helptags /usr/share/vim/vimfiles/doc" --cmd ":q" > /dev/null 2>&1
-echo 'done.'
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: vim-airline/repos/community-any/vimdoc.install (from rev 163242, 
vim-airline/trunk/vimdoc.install)
===
--- vimdoc.install  (rev 0)
+++ vimdoc.install  2016-02-23 21:30:14 UTC (rev 163243)
@@ -0,0 +1,16 @@
+post_install() {
+echo -n 'Updating vim help tags...'
+/usr/bin/vim --noplugins -u NONE -U NONE \
+ --cmd ":helptags /usr/share/vim/vimfiles/doc" --cmd ":q" > /dev/null 2>&1
+echo 'done.'
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}
+
+# vim:set ts=2 sw=2 et:


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

2016-02-23 Thread Alexander Rødseth
Date: Tuesday, February 23, 2016 @ 22:30:06
  Author: arodseth
Revision: 163242

upgpkg: vim-airline 0.7-4

Modified:
  vim-airline/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-23 21:28:25 UTC (rev 163241)
+++ PKGBUILD2016-02-23 21:30:06 UTC (rev 163242)
@@ -1,10 +1,10 @@
 # $Id$
 # Maintainer: Alexander F Rødseth 
-# Contributor: olantwin 
+# Contributor: olantwin 
 
 pkgname=vim-airline
 pkgver=0.7
-pkgrel=3
+pkgrel=4
 pkgdesc='Lean & mean statusline/tabline for ViM'
 arch=('any')
 url='https://github.com/vim-airline/vim-airline'
@@ -11,6 +11,7 @@
 license=('MIT')
 depends=('vim-runtime')
 makedepends=('git')
+groups=('vim-plugins')
 #optdepends=('otf-powerline-symbols-git: Use the Powerline symbols')
 install='vimdoc.install'
 source=("git://github.com/vim-airline/$pkgname.git#tag=v$pkgver")


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

2016-02-23 Thread Alexander Rødseth
Date: Tuesday, February 23, 2016 @ 22:28:25
  Author: arodseth
Revision: 163241

archrelease: copy trunk to community-any

Added:
  vim-molokai/repos/community-any/PKGBUILD
(from rev 163240, vim-molokai/trunk/PKGBUILD)
Deleted:
  vim-molokai/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-02-23 21:28:11 UTC (rev 163240)
+++ PKGBUILD2016-02-23 21:28:25 UTC (rev 163241)
@@ -1,25 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-# Contributor: Michael Pusterhofer 
-
-pkgname=vim-molokai
-pkgver=1.1
-pkgrel=4
-pkgdesc='Port of the monokai colorscheme for TextMate'
-arch=('any')
-url='http://www.vim.org/scripts/script.php?script_id=2340'
-license=('custom')
-depends=('vim')
-source=("$pkgname.vim::http://www.vim.org/scripts/download_script.php?src_id=9750;
-'https://raw.githubusercontent.com/tomasr/molokai/master/LICENSE.md')
-md5sums=('fea8138fa815caa399f8b4fcf56bfe0e'
- '338d7dd470454d1998138ca71340ce16')
-
-package() {
-  install -Dm644 "$pkgname.vim" \
-   "$pkgdir/usr/share/vim/vimfiles/colors/molokai.vim"
-  install -Dm644 LICENSE.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE.md"
-}
-
-# getver: -u 2
-# vim:set ts=2 sw=2 et:

Copied: vim-molokai/repos/community-any/PKGBUILD (from rev 163240, 
vim-molokai/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-02-23 21:28:25 UTC (rev 163241)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+# Contributor: Michael Pusterhofer 
+
+pkgname=vim-molokai
+pkgver=1.1
+pkgrel=5
+pkgdesc='Port of the monokai colorscheme for TextMate'
+arch=('any')
+url='http://www.vim.org/scripts/script.php?script_id=2340'
+license=('custom')
+depends=('vim')
+groups=('vim-plugins')
+source=("$pkgname.vim::http://www.vim.org/scripts/download_script.php?src_id=9750;
+'https://raw.githubusercontent.com/tomasr/molokai/master/LICENSE.md')
+md5sums=('fea8138fa815caa399f8b4fcf56bfe0e'
+ '338d7dd470454d1998138ca71340ce16')
+
+package() {
+  install -Dm644 "$pkgname.vim" \
+   "$pkgdir/usr/share/vim/vimfiles/colors/molokai.vim"
+  install -Dm644 LICENSE.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE.md"
+}
+
+# getver: -u 2
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in vim-seti/repos/community-any (4 files)

2016-02-23 Thread Alexander Rødseth
Date: Tuesday, February 23, 2016 @ 22:28:11
  Author: arodseth
Revision: 163240

archrelease: copy trunk to community-any

Added:
  vim-seti/repos/community-any/PKGBUILD
(from rev 163238, vim-seti/trunk/PKGBUILD)
  vim-seti/repos/community-any/seti.vim
(from rev 163239, vim-seti/trunk/seti.vim)
Deleted:
  vim-seti/repos/community-any/PKGBUILD
  vim-seti/repos/community-any/seti.vim

--+
 PKGBUILD |   40 +-
 seti.vim |  226 ++---
 2 files changed, 133 insertions(+), 133 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-02-23 21:28:06 UTC (rev 163239)
+++ PKGBUILD2016-02-23 21:28:11 UTC (rev 163240)
@@ -1,20 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-
-pkgname=vim-seti
-pkgver=1.0
-pkgrel=1
-pkgdesc="Colorscheme based on Jesse Weed's Seti theme for the Atom editor"
-arch=('any')
-url='https://github.com/trusktr/seti.vim'
-license=('unknown')
-depends=('vim')
-source=('seti.vim::https://raw.githubusercontent.com/trusktr/seti.vim/1825cc5000defac0e57f518e64fc50b79db02c1b/colors/seti.vim')
-md5sums=('ebf431562f010abcef9773bfe22c946f')
-
-package() {
-  install -Dm644 seti.vim "$pkgdir/usr/share/vim/vimfiles/colors/seti.vim"
-}
-
-# getver: -u 2
-# vim:set ts=2 sw=2 et:

Copied: vim-seti/repos/community-any/PKGBUILD (from rev 163238, 
vim-seti/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-02-23 21:28:11 UTC (rev 163240)
@@ -0,0 +1,20 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+
+pkgname=vim-seti
+pkgver=1.0
+pkgrel=2
+pkgdesc="Colorscheme based on Jesse Weed's Seti theme for the Atom editor"
+arch=('any')
+url='https://github.com/trusktr/seti.vim'
+license=('custom:unknown')
+groups=('vim-plugins')
+depends=('vim')
+source=('seti.vim::https://raw.githubusercontent.com/trusktr/seti.vim/1825cc5000defac0e57f518e64fc50b79db02c1b/colors/seti.vim')
+sha256sums=('fe956cf6fbcf0a0fb7f870c3cb52b2d28da1932815da5c5fa3832d26dfaebe31')
+
+package() {
+  install -Dm644 seti.vim "$pkgdir/usr/share/vim/vimfiles/colors/seti.vim"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: seti.vim
===
--- seti.vim2016-02-23 21:28:06 UTC (rev 163239)
+++ seti.vim2016-02-23 21:28:11 UTC (rev 163240)
@@ -1,113 +0,0 @@
-" Vim color file
-" Converted from Textmate theme Seti using Coloration v0.3.3 
(http://github.com/sickill/coloration)
-
-set background=dark
-highlight clear
-
-if exists("syntax_on")
-  syntax reset
-endif
-
-let g:colors_name = "seti"
-
-hi Cursor   ctermfg=16ctermbg=222   cterm=NONE 
 guifg=#151718   guibg=#ffe792   gui=NONE
-hi Visual   ctermfg=NONE  ctermbg=74cterm=NONE 
 guifg=NONE  guibg=#4fa5c7   gui=NONE
-hi CursorLine   ctermfg=NONE  ctermbg=235   cterm=NONE 
 guifg=NONE  guibg=#282a2b   gui=NONE
-hi CursorColumn ctermfg=NONE  ctermbg=235   cterm=NONE 
 guifg=NONE  guibg=#282a2b   gui=NONE
-hi ColorColumn  ctermfg=NONE  ctermbg=235   cterm=NONE 
 guifg=NONE  guibg=#282a2b   gui=NONE
-hi LineNr   ctermfg=243   ctermbg=235   cterm=NONE 
 guifg=#75   guibg=#282a2b   gui=NONE
-hi VertSplitctermfg=239   ctermbg=239   cterm=NONE 
 guifg=#4c4f4f   guibg=#4c4f4f   gui=NONE
-hi MatchParen   ctermfg=149   ctermbg=NONE  cterm=underline
 guifg=#9fca56   guibg=NONE  gui=underline
-hi StatusLine   ctermfg=188   ctermbg=239   cterm=bold 
 guifg=#d4d7d6   guibg=#4c4f4f   gui=bold
-hi StatusLineNC ctermfg=188   ctermbg=239   cterm=NONE 
 guifg=#d4d7d6   guibg=#4c4f4f   gui=NONE
-hi Pmenuctermfg=NONE  ctermbg=NONE  cterm=NONE 
 guifg=NONE  guibg=NONE  gui=NONE
-hi PmenuSel ctermfg=NONE  ctermbg=74cterm=NONE 
 guifg=NONE  guibg=#4fa5c7   gui=NONE
-hi IncSearchctermfg=16ctermbg=74cterm=NONE 
 guifg=#151718   guibg=#55b5db   gui=NONE
-hi Search   ctermfg=NONE  ctermbg=NONE  cterm=underline
 guifg=NONE  guibg=NONE  gui=underline
-hi Directoryctermfg=167   ctermbg=NONE  cterm=NONE 
 guifg=#cd3f45   guibg=NONE  gui=NONE
-hi Folded   ctermfg=59ctermbg=16cterm=NONE 
 guifg=#41535b   guibg=#151718   gui=NONE
-
-hi Normal   ctermfg=188   ctermbg=16cterm=NONE 
 guifg=#d4d7d6   guibg=#151718   gui=NONE
-hi Boolean  ctermfg=167   ctermbg=NONE  cterm=NONE 
 guifg=#cd3f45   guibg=NONE  gui=NONE
-hi Character  

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

2016-02-23 Thread Alexander Rødseth
Date: Tuesday, February 23, 2016 @ 22:28:06
  Author: arodseth
Revision: 163239

upgpkg: vim-molokai 1.1-5

Modified:
  vim-molokai/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-23 21:28:02 UTC (rev 163238)
+++ PKGBUILD2016-02-23 21:28:06 UTC (rev 163239)
@@ -1,15 +1,16 @@
 # $Id$
 # Maintainer: Alexander F Rødseth 
-# Contributor: Michael Pusterhofer 
+# Contributor: Michael Pusterhofer 
 
 pkgname=vim-molokai
 pkgver=1.1
-pkgrel=4
+pkgrel=5
 pkgdesc='Port of the monokai colorscheme for TextMate'
 arch=('any')
 url='http://www.vim.org/scripts/script.php?script_id=2340'
 license=('custom')
 depends=('vim')
+groups=('vim-plugins')
 
source=("$pkgname.vim::http://www.vim.org/scripts/download_script.php?src_id=9750;
 'https://raw.githubusercontent.com/tomasr/molokai/master/LICENSE.md')
 md5sums=('fea8138fa815caa399f8b4fcf56bfe0e'


[arch-commits] Commit in kodi-audioencoder-lame/repos (4 files)

2016-02-23 Thread Ike Devolder
Date: Tuesday, February 23, 2016 @ 21:07:08
  Author: idevolder
Revision: 163237

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

Added:
  kodi-audioencoder-lame/repos/community-i686/PKGBUILD
(from rev 163236, kodi-audioencoder-lame/trunk/PKGBUILD)
  kodi-audioencoder-lame/repos/community-x86_64/PKGBUILD
(from rev 163236, kodi-audioencoder-lame/trunk/PKGBUILD)
Deleted:
  kodi-audioencoder-lame/repos/community-i686/PKGBUILD
  kodi-audioencoder-lame/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-02-23 20:06:55 UTC (rev 163236)
+++ community-i686/PKGBUILD 2016-02-23 20:07:08 UTC (rev 163237)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: BlackEagle >
-
-pkgname=kodi-audioencoder-lame
-_commit=5591a68
-pkgver=20150810.5591a68
-pkgrel=3
-pkgdesc="kodi audioencoder addon for lame (mp3)"
-arch=('i686' 'x86_64')
-url='https://github.com/xbmc/audioencoder.lame'
-license=('GPL')
-groups=('kodi-addons')
-depends=('kodi' 'lame')
-makedepends=('git' 'cmake')
-source=("$pkgname::git://github.com/xbmc/audioencoder.lame.git#commit=$_commit")
-sha256sums=('SKIP')
-
-pkgver() {
-   cd "$pkgname"
-   git log -1 --date=short --format="%cd.%h" | tr -d '-'
-}
-
-build() {
-   cd "$pkgname"
-   cmake \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DCMAKE_BUILD_TYPE=Release \
-   -DBUILD_SHARED_LIBS=1 \
-   -DUSE_LTO=1
-   make
-}
-
-package() {
-   cd "$pkgname"
-   make DESTDIR="$pkgdir/" install
-}
-

Copied: kodi-audioencoder-lame/repos/community-i686/PKGBUILD (from rev 163236, 
kodi-audioencoder-lame/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-02-23 20:07:08 UTC (rev 163237)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: BlackEagle >
+
+pkgname=kodi-audioencoder-lame
+_commit=ffaf9cb
+pkgver=20160219.ffaf9cb
+pkgrel=1
+pkgdesc="kodi audioencoder addon for lame (mp3)"
+arch=('i686' 'x86_64')
+url='https://github.com/xbmc/audioencoder.lame'
+license=('GPL')
+groups=('kodi-addons')
+depends=('kodi' 'lame')
+makedepends=('git' 'cmake')
+source=("$pkgname::git://github.com/xbmc/audioencoder.lame.git#commit=$_commit")
+sha256sums=('SKIP')
+
+pkgver() {
+   cd "$pkgname"
+   git log -1 --date=short --format="%cd.%h" | tr -d '-'
+}
+
+build() {
+   cd "$pkgname"
+   cmake \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DBUILD_SHARED_LIBS=1 \
+   -DUSE_LTO=1
+   make
+}
+
+package() {
+   cd "$pkgname"
+   make DESTDIR="$pkgdir/" install
+}
+

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-02-23 20:06:55 UTC (rev 163236)
+++ community-x86_64/PKGBUILD   2016-02-23 20:07:08 UTC (rev 163237)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: BlackEagle >
-
-pkgname=kodi-audioencoder-lame
-_commit=5591a68
-pkgver=20150810.5591a68
-pkgrel=3
-pkgdesc="kodi audioencoder addon for lame (mp3)"
-arch=('i686' 'x86_64')
-url='https://github.com/xbmc/audioencoder.lame'
-license=('GPL')
-groups=('kodi-addons')
-depends=('kodi' 'lame')
-makedepends=('git' 'cmake')
-source=("$pkgname::git://github.com/xbmc/audioencoder.lame.git#commit=$_commit")
-sha256sums=('SKIP')
-
-pkgver() {
-   cd "$pkgname"
-   git log -1 --date=short --format="%cd.%h" | tr -d '-'
-}
-
-build() {
-   cd "$pkgname"
-   cmake \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DCMAKE_BUILD_TYPE=Release \
-   -DBUILD_SHARED_LIBS=1 \
-   -DUSE_LTO=1
-   make
-}
-
-package() {
-   cd "$pkgname"
-   make DESTDIR="$pkgdir/" install
-}
-

Copied: kodi-audioencoder-lame/repos/community-x86_64/PKGBUILD (from rev 
163236, kodi-audioencoder-lame/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-02-23 20:07:08 UTC (rev 163237)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: BlackEagle >
+
+pkgname=kodi-audioencoder-lame
+_commit=ffaf9cb
+pkgver=20160219.ffaf9cb
+pkgrel=1
+pkgdesc="kodi audioencoder addon for lame (mp3)"
+arch=('i686' 'x86_64')
+url='https://github.com/xbmc/audioencoder.lame'
+license=('GPL')
+groups=('kodi-addons')
+depends=('kodi' 'lame')
+makedepends=('git' 'cmake')

[arch-commits] Commit in kodi-audioencoder-lame/trunk (PKGBUILD)

2016-02-23 Thread Ike Devolder
Date: Tuesday, February 23, 2016 @ 21:06:55
  Author: idevolder
Revision: 163236

upgpkg: kodi-audioencoder-lame 20160219.ffaf9cb-1

Modified:
  kodi-audioencoder-lame/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-23 19:45:19 UTC (rev 163235)
+++ PKGBUILD2016-02-23 20:06:55 UTC (rev 163236)
@@ -2,9 +2,9 @@
 # Maintainer: BlackEagle >
 
 pkgname=kodi-audioencoder-lame
-_commit=5591a68
-pkgver=20150810.5591a68
-pkgrel=3
+_commit=ffaf9cb
+pkgver=20160219.ffaf9cb
+pkgrel=1
 pkgdesc="kodi audioencoder addon for lame (mp3)"
 arch=('i686' 'x86_64')
 url='https://github.com/xbmc/audioencoder.lame'


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

2016-02-23 Thread Antonio Rojas
Date: Tuesday, February 23, 2016 @ 21:04:57
  Author: arojas
Revision: 260201

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-02-23 20:03:54 UTC (rev 260200)
+++ extra-i686/PKGBUILD 2016-02-23 20:04:57 UTC (rev 260201)
@@ -1,61 +0,0 @@
-# $Id$
-# Maintainer: Tom Gundersen 
-# Contributor: Andrea Scarpino 
-# Contributor: ice-man 
-# Contributor: sergeantspoon 
-
-pkgbase=libssh
-pkgname=(libssh libssh-docs)
-pkgver=0.7.2
-pkgrel=1
-pkgdesc="Library for accessing ssh client services through C libraries"
-url="http://www.libssh.org/;
-license=(LGPL)
-arch=(i686 x86_64)
-depends=(openssl)
-makedepends=(cmake cmocka doxygen)
-checkdepends=(openssh)
-source=(https://red.libssh.org/attachments/download/177/$pkgname-$pkgver.tar.xz
-
https://red.libssh.org/attachments/download/168/$pkgname-$pkgver.tar.asc)
-md5sums=('5d7d468937649a6dfc6186edfff083db'
- 'SKIP')
-validpgpkeys=('8DFF53E18F2ABC8D8F3C92237EE0FC4DCC014E3D') # Andreas Schneider 

-
-prepare() {
-  # disable the test. It is confused by our clean container setup.
-  # 'extra-x86-build' uses user 'nobody' that has a record in /etc/passwd file
-  # but $HOME envvar is set to '/build'. The test expects that $HOME 
corresponds to passwd file.
-  sed 's/unit_test(torture_path_expand_tilde_unix),//' -i 
libssh-${pkgver}/tests/unittests/torture_misc.c
-
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DWITH_GSSAPI=OFF \
--DWITH_TESTING=ON
-  make
-  make doc
-}
-
-check() {
-  cd build
-  make test
-}
-
-package_libssh() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}
-
-package_libssh-docs() {
-  pkgdesc="Documentation for libssh"
-  depends=()
-
-  mkdir -p "$pkgdir"/usr/share/doc/libssh
-  cp -r build/doc/html "$pkgdir"/usr/share/doc/libssh
-  cp -r build/doc/man "$pkgdir"/usr/share
-}

Copied: libssh/repos/extra-i686/PKGBUILD (from rev 260200, 
libssh/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-02-23 20:04:57 UTC (rev 260201)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Tom Gundersen 
+# Contributor: Andrea Scarpino 
+# Contributor: ice-man 
+# Contributor: sergeantspoon 
+
+pkgbase=libssh
+pkgname=(libssh libssh-docs)
+pkgver=0.7.3
+pkgrel=1
+pkgdesc="Library for accessing ssh client services through C libraries"
+url="http://www.libssh.org/;
+license=(LGPL)
+arch=(i686 x86_64)
+depends=(openssl)
+makedepends=(cmake cmocka doxygen)
+checkdepends=(openssh)
+source=(https://red.libssh.org/attachments/download/195/$pkgname-$pkgver.tar.xz
+
https://red.libssh.org/attachments/download/194/$pkgname-$pkgver.tar.asc)
+md5sums=('05465da8004f3258db946346213209de'
+ 'SKIP')
+validpgpkeys=('8DFF53E18F2ABC8D8F3C92237EE0FC4DCC014E3D') # Andreas Schneider 

+
+prepare() {
+  # disable the test. It is confused by our clean container setup.
+  # 'extra-x86-build' uses user 'nobody' that has a record in /etc/passwd file
+  # but $HOME envvar is set to '/build'. The test expects that $HOME 
corresponds to passwd file.
+  sed 's/unit_test(torture_path_expand_tilde_unix),//' -i 
libssh-${pkgver}/tests/unittests/torture_misc.c
+
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DWITH_GSSAPI=OFF \
+-DWITH_TESTING=ON
+  make
+  make doc
+}
+
+check() {
+  cd build
+  make test
+}
+
+package_libssh() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}
+
+package_libssh-docs() {
+  pkgdesc="Documentation for libssh"
+  depends=()
+
+  mkdir -p "$pkgdir"/usr/share/doc/libssh
+  cp -r build/doc/html "$pkgdir"/usr/share/doc/libssh
+  cp -r build/doc/man "$pkgdir"/usr/share
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-02-23 20:03:54 UTC (rev 260200)
+++ extra-x86_64/PKGBUILD   2016-02-23 20:04:57 UTC (rev 260201)
@@ -1,61 +0,0 @@
-# $Id$
-# Maintainer: Tom Gundersen 

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

2016-02-23 Thread Antonio Rojas
Date: Tuesday, February 23, 2016 @ 21:03:54
  Author: arojas
Revision: 260200

Update to 0.7.3

Modified:
  libssh/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-23 18:57:58 UTC (rev 260199)
+++ PKGBUILD2016-02-23 20:03:54 UTC (rev 260200)
@@ -6,7 +6,7 @@
 
 pkgbase=libssh
 pkgname=(libssh libssh-docs)
-pkgver=0.7.2
+pkgver=0.7.3
 pkgrel=1
 pkgdesc="Library for accessing ssh client services through C libraries"
 url="http://www.libssh.org/;
@@ -15,9 +15,9 @@
 depends=(openssl)
 makedepends=(cmake cmocka doxygen)
 checkdepends=(openssh)
-source=(https://red.libssh.org/attachments/download/177/$pkgname-$pkgver.tar.xz
-
https://red.libssh.org/attachments/download/168/$pkgname-$pkgver.tar.asc)
-md5sums=('5d7d468937649a6dfc6186edfff083db'
+source=(https://red.libssh.org/attachments/download/195/$pkgname-$pkgver.tar.xz
+
https://red.libssh.org/attachments/download/194/$pkgname-$pkgver.tar.asc)
+md5sums=('05465da8004f3258db946346213209de'
  'SKIP')
 validpgpkeys=('8DFF53E18F2ABC8D8F3C92237EE0FC4DCC014E3D') # Andreas Schneider 

 


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

2016-02-23 Thread Ike Devolder
Date: Tuesday, February 23, 2016 @ 20:45:19
  Author: idevolder
Revision: 163235

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

Added:
  opera/repos/community-i686/PKGBUILD
(from rev 163234, opera/trunk/PKGBUILD)
  opera/repos/community-i686/default
(from rev 163234, opera/trunk/default)
  opera/repos/community-i686/opera
(from rev 163234, opera/trunk/opera)
  opera/repos/community-i686/opera.install
(from rev 163234, opera/trunk/opera.install)
  opera/repos/community-x86_64/PKGBUILD
(from rev 163234, opera/trunk/PKGBUILD)
  opera/repos/community-x86_64/default
(from rev 163234, opera/trunk/default)
  opera/repos/community-x86_64/opera
(from rev 163234, opera/trunk/opera)
  opera/repos/community-x86_64/opera.install
(from rev 163234, opera/trunk/opera.install)
Deleted:
  opera/repos/community-i686/PKGBUILD
  opera/repos/community-i686/default
  opera/repos/community-i686/opera
  opera/repos/community-i686/opera.install
  opera/repos/community-x86_64/PKGBUILD
  opera/repos/community-x86_64/default
  opera/repos/community-x86_64/opera
  opera/repos/community-x86_64/opera.install

+
 /PKGBUILD  |  138 +++
 /default   |8 ++
 /opera |   26 +++
 /opera.install |   78 ++
 community-i686/PKGBUILD|   69 ---
 community-i686/default |4 -
 community-i686/opera   |   13 ---
 community-i686/opera.install   |   39 ---
 community-x86_64/PKGBUILD  |   69 ---
 community-x86_64/default   |4 -
 community-x86_64/opera |   13 ---
 community-x86_64/opera.install |   39 ---
 12 files changed, 250 insertions(+), 250 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-02-23 19:45:01 UTC (rev 163234)
+++ community-i686/PKGBUILD 2016-02-23 19:45:19 UTC (rev 163235)
@@ -1,69 +0,0 @@
-# $Id$
-# vim:set ft=sh:
-# Maintainer: BlackEagle < ike DOT devolder AT gmail DOT com >
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Mateusz Herych 
-# Contributor: ruario 
-# Contributor: Daniel Isenmann 
-# Contributor: dorphell 
-# Contributor: Sigitas Mazaliauskas 
-# Contributor: eworm
-
-pkgname=opera
-pkgver=35.0.2066.68
-pkgrel=1
-pkgdesc="A fast and secure web browser"
-url="http://www.opera.com/;
-install=${pkgname}.install
-options=(!strip !zipman)
-license=('custom:opera')
-backup=("etc/$pkgname/default")
-arch=('i686' 'x86_64')
-depends=('gtk2' 'desktop-file-utils' 'shared-mime-info' 'libxtst' 'gconf' 
'libxss' 'alsa-lib' 'nss' 'ttf-font' 'libnotify')
-optdepends=(
-'curl: opera crash reporter and autoupdate checker'
-'opera-ffmpeg-codecs: playback of proprietary video/audio'
-)
-source=(
-"opera"
-"default"
-)
-source_i686=("http://get.geo.opera.com/pub/${pkgname}/desktop/${pkgver}/linux/${pkgname}-stable_${pkgver}_i386.deb;)
-source_x86_64=("http://get.geo.opera.com/pub/${pkgname}/desktop/${pkgver}/linux/${pkgname}-stable_${pkgver}_amd64.deb;)
-sha256sums=('508512464e24126fddfb2c41a1e2e86624bdb0c0748084b6a922573b6cf6b9c5'
-'4913d97dec0ddc99d1e089b029b9123c2c86b7c88d631c4db119b09da027')
-sha256sums_i686=('be3de09cb578126ce7059ec6501751772277fe65a393acc73bf0e6216d2be7c9')
-sha256sums_x86_64=('20805cc8832e1dfa961ae9f8917cb8099e62a5ea829224053927b24e2e2ceeb4')
-
-prepare() {
-sed -e "s/%pkgname%/$pkgname/g" -i "$srcdir/opera"
-sed -e "s/%operabin%/$pkgname\/$pkgname/g" \
--i "$srcdir/opera"
-}
-
-package() {
-tar -xf data.tar.xz --exclude=usr/share/{lintian,menu} -C "$pkgdir/"
-
-# get rid of the extra subfolder {i386,x86_64}-linux-gnu
-(
-cd "$pkgdir/usr/lib/"*-linux-gnu/
-mv "$pkgname" ../
-)
-rm -rf "$pkgdir/usr/lib/"*-linux-gnu
-
-# suid opera_sandbox
-chmod 4755 "$pkgdir/usr/lib/$pkgname/opera_sandbox"
-
-# install default options
-install -Dm644 "$srcdir/default" "$pkgdir/etc/$pkgname/default"
-
-# install opera wrapper
-rm "$pkgdir/usr/bin/$pkgname"
-install -Dm755 "$srcdir/opera" "$pkgdir/usr/bin/$pkgname"
-
-# license
-install -Dm644 \
-"$pkgdir/usr/share/doc/${pkgname}-stable/copyright" \
-"$pkgdir/usr/share/licenses/$pkgname/copyright"
-}
-

Copied: opera/repos/community-i686/PKGBUILD (from rev 163234, 
opera/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-02-23 19:45:19 UTC (rev 163235)
@@ -0,0 +1,69 @@
+# $Id$
+# vim:set ft=sh:
+# Maintainer: BlackEagle < ike DOT devolder AT gmail DOT com >
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Mateusz Herych 

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

2016-02-23 Thread Ike Devolder
Date: Tuesday, February 23, 2016 @ 20:45:01
  Author: idevolder
Revision: 163234

upgpkg: opera 35.0.2066.82-1

Modified:
  opera/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-23 19:44:23 UTC (rev 163233)
+++ PKGBUILD2016-02-23 19:45:01 UTC (rev 163234)
@@ -10,7 +10,7 @@
 # Contributor: eworm
 
 pkgname=opera
-pkgver=35.0.2066.68
+pkgver=35.0.2066.82
 pkgrel=1
 pkgdesc="A fast and secure web browser"
 url="http://www.opera.com/;
@@ -32,8 +32,8 @@
 
source_x86_64=("http://get.geo.opera.com/pub/${pkgname}/desktop/${pkgver}/linux/${pkgname}-stable_${pkgver}_amd64.deb;)
 sha256sums=('508512464e24126fddfb2c41a1e2e86624bdb0c0748084b6a922573b6cf6b9c5'
 '4913d97dec0ddc99d1e089b029b9123c2c86b7c88d631c4db119b09da027')
-sha256sums_i686=('be3de09cb578126ce7059ec6501751772277fe65a393acc73bf0e6216d2be7c9')
-sha256sums_x86_64=('20805cc8832e1dfa961ae9f8917cb8099e62a5ea829224053927b24e2e2ceeb4')
+sha256sums_i686=('c90b592d197075bdd0dafc44a779a85ba87a258ecb4163a4ab3094f9cb909763')
+sha256sums_x86_64=('5748675db2490b6d267b622db33f51a0b7d4f30af810642d562a68ba27600dff')
 
 prepare() {
 sed -e "s/%pkgname%/$pkgname/g" -i "$srcdir/opera"


[arch-commits] Commit in kodi-audioencoder-wav/repos (4 files)

2016-02-23 Thread Ike Devolder
Date: Tuesday, February 23, 2016 @ 20:44:23
  Author: idevolder
Revision: 163233

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

Added:
  kodi-audioencoder-wav/repos/community-i686/PKGBUILD
(from rev 163232, kodi-audioencoder-wav/trunk/PKGBUILD)
  kodi-audioencoder-wav/repos/community-x86_64/PKGBUILD
(from rev 163232, kodi-audioencoder-wav/trunk/PKGBUILD)
Deleted:
  kodi-audioencoder-wav/repos/community-i686/PKGBUILD
  kodi-audioencoder-wav/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-02-23 19:44:10 UTC (rev 163232)
+++ community-i686/PKGBUILD 2016-02-23 19:44:23 UTC (rev 163233)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: BlackEagle >
-
-pkgname=kodi-audioencoder-wav
-_commit=78bbca0
-pkgver=20150810.78bbca0
-pkgrel=3
-pkgdesc="kodi audioencoder addon for wav"
-arch=('i686' 'x86_64')
-url='https://github.com/xbmc/audioencoder.wav'
-license=('GPL')
-groups=('kodi-addons')
-depends=('kodi')
-makedepends=('git' 'cmake')
-source=("$pkgname::git://github.com/xbmc/audioencoder.wav.git#commit=$_commit")
-sha256sums=('SKIP')
-
-pkgver() {
-   cd "$pkgname"
-   git log -1 --date=short --format="%cd.%h" | tr -d '-'
-}
-
-build() {
-   cd "$pkgname"
-   cmake \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DCMAKE_BUILD_TYPE=Release \
-   -DBUILD_SHARED_LIBS=1 \
-   -DUSE_LTO=1
-   make
-}
-
-package() {
-   cd "$pkgname"
-   make DESTDIR="$pkgdir/" install
-}
-

Copied: kodi-audioencoder-wav/repos/community-i686/PKGBUILD (from rev 163232, 
kodi-audioencoder-wav/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-02-23 19:44:23 UTC (rev 163233)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: BlackEagle >
+
+pkgname=kodi-audioencoder-wav
+_commit=a12bcd1
+pkgver=20160219.a12bcd1
+pkgrel=1
+pkgdesc="kodi audioencoder addon for wav"
+arch=('i686' 'x86_64')
+url='https://github.com/xbmc/audioencoder.wav'
+license=('GPL')
+groups=('kodi-addons')
+depends=('kodi')
+makedepends=('git' 'cmake')
+source=("$pkgname::git://github.com/xbmc/audioencoder.wav.git#commit=$_commit")
+sha256sums=('SKIP')
+
+pkgver() {
+   cd "$pkgname"
+   git log -1 --date=short --format="%cd.%h" | tr -d '-'
+}
+
+build() {
+   cd "$pkgname"
+   cmake \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DBUILD_SHARED_LIBS=1 \
+   -DUSE_LTO=1
+   make
+}
+
+package() {
+   cd "$pkgname"
+   make DESTDIR="$pkgdir/" install
+}
+

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-02-23 19:44:10 UTC (rev 163232)
+++ community-x86_64/PKGBUILD   2016-02-23 19:44:23 UTC (rev 163233)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: BlackEagle >
-
-pkgname=kodi-audioencoder-wav
-_commit=78bbca0
-pkgver=20150810.78bbca0
-pkgrel=3
-pkgdesc="kodi audioencoder addon for wav"
-arch=('i686' 'x86_64')
-url='https://github.com/xbmc/audioencoder.wav'
-license=('GPL')
-groups=('kodi-addons')
-depends=('kodi')
-makedepends=('git' 'cmake')
-source=("$pkgname::git://github.com/xbmc/audioencoder.wav.git#commit=$_commit")
-sha256sums=('SKIP')
-
-pkgver() {
-   cd "$pkgname"
-   git log -1 --date=short --format="%cd.%h" | tr -d '-'
-}
-
-build() {
-   cd "$pkgname"
-   cmake \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DCMAKE_BUILD_TYPE=Release \
-   -DBUILD_SHARED_LIBS=1 \
-   -DUSE_LTO=1
-   make
-}
-
-package() {
-   cd "$pkgname"
-   make DESTDIR="$pkgdir/" install
-}
-

Copied: kodi-audioencoder-wav/repos/community-x86_64/PKGBUILD (from rev 163232, 
kodi-audioencoder-wav/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-02-23 19:44:23 UTC (rev 163233)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: BlackEagle >
+
+pkgname=kodi-audioencoder-wav
+_commit=a12bcd1
+pkgver=20160219.a12bcd1
+pkgrel=1
+pkgdesc="kodi audioencoder addon for wav"
+arch=('i686' 'x86_64')
+url='https://github.com/xbmc/audioencoder.wav'
+license=('GPL')
+groups=('kodi-addons')
+depends=('kodi')
+makedepends=('git' 'cmake')
+source=("$pkgname::git://github.com/xbmc/audioencoder.wav.git#commit=$_commit")
+sha256sums=('SKIP')
+

[arch-commits] Commit in kodi-audioencoder-wav/trunk (PKGBUILD)

2016-02-23 Thread Ike Devolder
Date: Tuesday, February 23, 2016 @ 20:44:10
  Author: idevolder
Revision: 163232

upgpkg: kodi-audioencoder-wav 20160219.a12bcd1-1

Modified:
  kodi-audioencoder-wav/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-23 19:43:35 UTC (rev 163231)
+++ PKGBUILD2016-02-23 19:44:10 UTC (rev 163232)
@@ -2,9 +2,9 @@
 # Maintainer: BlackEagle >
 
 pkgname=kodi-audioencoder-wav
-_commit=78bbca0
-pkgver=20150810.78bbca0
-pkgrel=3
+_commit=a12bcd1
+pkgver=20160219.a12bcd1
+pkgrel=1
 pkgdesc="kodi audioencoder addon for wav"
 arch=('i686' 'x86_64')
 url='https://github.com/xbmc/audioencoder.wav'


[arch-commits] Commit in kodi-audioencoder-vorbis/repos (4 files)

2016-02-23 Thread Ike Devolder
Date: Tuesday, February 23, 2016 @ 20:43:35
  Author: idevolder
Revision: 163231

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

Added:
  kodi-audioencoder-vorbis/repos/community-i686/PKGBUILD
(from rev 163230, kodi-audioencoder-vorbis/trunk/PKGBUILD)
  kodi-audioencoder-vorbis/repos/community-x86_64/PKGBUILD
(from rev 163230, kodi-audioencoder-vorbis/trunk/PKGBUILD)
Deleted:
  kodi-audioencoder-vorbis/repos/community-i686/PKGBUILD
  kodi-audioencoder-vorbis/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-02-23 19:43:20 UTC (rev 163230)
+++ community-i686/PKGBUILD 2016-02-23 19:43:35 UTC (rev 163231)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: BlackEagle >
-
-pkgname=kodi-audioencoder-vorbis
-_commit=3a88875
-pkgver=20150810.3a88875
-pkgrel=3
-pkgdesc="kodi audioencoder addon for ogg/vorbis"
-arch=('i686' 'x86_64')
-url='https://github.com/xbmc/audioencoder.vorbis'
-license=('GPL')
-groups=('kodi-addons')
-depends=('kodi')
-makedepends=('git' 'cmake')
-source=("$pkgname::git://github.com/xbmc/audioencoder.vorbis.git#commit=$_commit")
-sha256sums=('SKIP')
-
-pkgver() {
-   cd "$pkgname"
-   git log -1 --date=short --format="%cd.%h" | tr -d '-'
-}
-
-build() {
-   cd "$pkgname"
-   cmake \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DCMAKE_BUILD_TYPE=Release \
-   -DBUILD_SHARED_LIBS=1 \
-   -DUSE_LTO=1
-   make
-}
-
-package() {
-   cd "$pkgname"
-   make DESTDIR="$pkgdir/" install
-}
-

Copied: kodi-audioencoder-vorbis/repos/community-i686/PKGBUILD (from rev 
163230, kodi-audioencoder-vorbis/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-02-23 19:43:35 UTC (rev 163231)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: BlackEagle >
+
+pkgname=kodi-audioencoder-vorbis
+_commit=47a0676
+pkgver=20160219.47a0676
+pkgrel=1
+pkgdesc="kodi audioencoder addon for ogg/vorbis"
+arch=('i686' 'x86_64')
+url='https://github.com/xbmc/audioencoder.vorbis'
+license=('GPL')
+groups=('kodi-addons')
+depends=('kodi')
+makedepends=('git' 'cmake')
+source=("$pkgname::git://github.com/xbmc/audioencoder.vorbis.git#commit=$_commit")
+sha256sums=('SKIP')
+
+pkgver() {
+   cd "$pkgname"
+   git log -1 --date=short --format="%cd.%h" | tr -d '-'
+}
+
+build() {
+   cd "$pkgname"
+   cmake \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DBUILD_SHARED_LIBS=1 \
+   -DUSE_LTO=1
+   make
+}
+
+package() {
+   cd "$pkgname"
+   make DESTDIR="$pkgdir/" install
+}
+

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-02-23 19:43:20 UTC (rev 163230)
+++ community-x86_64/PKGBUILD   2016-02-23 19:43:35 UTC (rev 163231)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: BlackEagle >
-
-pkgname=kodi-audioencoder-vorbis
-_commit=3a88875
-pkgver=20150810.3a88875
-pkgrel=3
-pkgdesc="kodi audioencoder addon for ogg/vorbis"
-arch=('i686' 'x86_64')
-url='https://github.com/xbmc/audioencoder.vorbis'
-license=('GPL')
-groups=('kodi-addons')
-depends=('kodi')
-makedepends=('git' 'cmake')
-source=("$pkgname::git://github.com/xbmc/audioencoder.vorbis.git#commit=$_commit")
-sha256sums=('SKIP')
-
-pkgver() {
-   cd "$pkgname"
-   git log -1 --date=short --format="%cd.%h" | tr -d '-'
-}
-
-build() {
-   cd "$pkgname"
-   cmake \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DCMAKE_BUILD_TYPE=Release \
-   -DBUILD_SHARED_LIBS=1 \
-   -DUSE_LTO=1
-   make
-}
-
-package() {
-   cd "$pkgname"
-   make DESTDIR="$pkgdir/" install
-}
-

Copied: kodi-audioencoder-vorbis/repos/community-x86_64/PKGBUILD (from rev 
163230, kodi-audioencoder-vorbis/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-02-23 19:43:35 UTC (rev 163231)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: BlackEagle >
+
+pkgname=kodi-audioencoder-vorbis
+_commit=47a0676
+pkgver=20160219.47a0676
+pkgrel=1
+pkgdesc="kodi audioencoder addon for ogg/vorbis"
+arch=('i686' 'x86_64')
+url='https://github.com/xbmc/audioencoder.vorbis'
+license=('GPL')
+groups=('kodi-addons')
+depends=('kodi')
+makedepends=('git' 'cmake')

[arch-commits] Commit in kodi-audioencoder-vorbis/trunk (PKGBUILD)

2016-02-23 Thread Ike Devolder
Date: Tuesday, February 23, 2016 @ 20:43:20
  Author: idevolder
Revision: 163230

upgpkg: kodi-audioencoder-vorbis 20160219.47a0676-1

Modified:
  kodi-audioencoder-vorbis/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-23 19:40:38 UTC (rev 163229)
+++ PKGBUILD2016-02-23 19:43:20 UTC (rev 163230)
@@ -2,9 +2,9 @@
 # Maintainer: BlackEagle >
 
 pkgname=kodi-audioencoder-vorbis
-_commit=3a88875
-pkgver=20150810.3a88875
-pkgrel=3
+_commit=47a0676
+pkgver=20160219.47a0676
+pkgrel=1
 pkgdesc="kodi audioencoder addon for ogg/vorbis"
 arch=('i686' 'x86_64')
 url='https://github.com/xbmc/audioencoder.vorbis'


[arch-commits] Commit in kodi-audioencoder-flac/repos (4 files)

2016-02-23 Thread Ike Devolder
Date: Tuesday, February 23, 2016 @ 20:40:38
  Author: idevolder
Revision: 163229

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

Added:
  kodi-audioencoder-flac/repos/community-i686/PKGBUILD
(from rev 163228, kodi-audioencoder-flac/trunk/PKGBUILD)
  kodi-audioencoder-flac/repos/community-x86_64/PKGBUILD
(from rev 163228, kodi-audioencoder-flac/trunk/PKGBUILD)
Deleted:
  kodi-audioencoder-flac/repos/community-i686/PKGBUILD
  kodi-audioencoder-flac/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-02-23 19:40:26 UTC (rev 163228)
+++ community-i686/PKGBUILD 2016-02-23 19:40:38 UTC (rev 163229)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: BlackEagle >
-
-pkgname=kodi-audioencoder-flac
-_commit=76508ed
-pkgver=20150810.76508ed
-pkgrel=3
-pkgdesc="kodi audioencoder addon for flac"
-arch=('i686' 'x86_64')
-url='https://github.com/xbmc/audioencoder.flac'
-license=('GPL')
-groups=('kodi-addons')
-depends=('kodi')
-makedepends=('git' 'cmake')
-source=("$pkgname::git://github.com/xbmc/audioencoder.flac.git#commit=$_commit")
-sha256sums=('SKIP')
-
-pkgver() {
-   cd "$pkgname"
-   git log -1 --date=short --format="%cd.%h" | tr -d '-'
-}
-
-build() {
-   cd "$pkgname"
-   cmake \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DCMAKE_BUILD_TYPE=Release \
-   -DBUILD_SHARED_LIBS=1 \
-   -DUSE_LTO=1
-   make
-}
-
-package() {
-   cd "$pkgname"
-   make DESTDIR="$pkgdir/" install
-}
-

Copied: kodi-audioencoder-flac/repos/community-i686/PKGBUILD (from rev 163228, 
kodi-audioencoder-flac/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-02-23 19:40:38 UTC (rev 163229)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: BlackEagle >
+
+pkgname=kodi-audioencoder-flac
+_commit=176288b
+pkgver=20160219.176288b
+pkgrel=1
+pkgdesc="kodi audioencoder addon for flac"
+arch=('i686' 'x86_64')
+url='https://github.com/xbmc/audioencoder.flac'
+license=('GPL')
+groups=('kodi-addons')
+depends=('kodi')
+makedepends=('git' 'cmake')
+source=("$pkgname::git://github.com/xbmc/audioencoder.flac.git#commit=$_commit")
+sha256sums=('SKIP')
+
+pkgver() {
+   cd "$pkgname"
+   git log -1 --date=short --format="%cd.%h" | tr -d '-'
+}
+
+build() {
+   cd "$pkgname"
+   cmake \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DBUILD_SHARED_LIBS=1 \
+   -DUSE_LTO=1
+   make
+}
+
+package() {
+   cd "$pkgname"
+   make DESTDIR="$pkgdir/" install
+}
+

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-02-23 19:40:26 UTC (rev 163228)
+++ community-x86_64/PKGBUILD   2016-02-23 19:40:38 UTC (rev 163229)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: BlackEagle >
-
-pkgname=kodi-audioencoder-flac
-_commit=76508ed
-pkgver=20150810.76508ed
-pkgrel=3
-pkgdesc="kodi audioencoder addon for flac"
-arch=('i686' 'x86_64')
-url='https://github.com/xbmc/audioencoder.flac'
-license=('GPL')
-groups=('kodi-addons')
-depends=('kodi')
-makedepends=('git' 'cmake')
-source=("$pkgname::git://github.com/xbmc/audioencoder.flac.git#commit=$_commit")
-sha256sums=('SKIP')
-
-pkgver() {
-   cd "$pkgname"
-   git log -1 --date=short --format="%cd.%h" | tr -d '-'
-}
-
-build() {
-   cd "$pkgname"
-   cmake \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DCMAKE_BUILD_TYPE=Release \
-   -DBUILD_SHARED_LIBS=1 \
-   -DUSE_LTO=1
-   make
-}
-
-package() {
-   cd "$pkgname"
-   make DESTDIR="$pkgdir/" install
-}
-

Copied: kodi-audioencoder-flac/repos/community-x86_64/PKGBUILD (from rev 
163228, kodi-audioencoder-flac/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-02-23 19:40:38 UTC (rev 163229)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: BlackEagle >
+
+pkgname=kodi-audioencoder-flac
+_commit=176288b
+pkgver=20160219.176288b
+pkgrel=1
+pkgdesc="kodi audioencoder addon for flac"
+arch=('i686' 'x86_64')
+url='https://github.com/xbmc/audioencoder.flac'
+license=('GPL')
+groups=('kodi-addons')
+depends=('kodi')
+makedepends=('git' 'cmake')

[arch-commits] Commit in kodi-audioencoder-flac/trunk (PKGBUILD)

2016-02-23 Thread Ike Devolder
Date: Tuesday, February 23, 2016 @ 20:40:26
  Author: idevolder
Revision: 163228

upgpkg: kodi-audioencoder-flac 20160219.176288b-1

Modified:
  kodi-audioencoder-flac/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-23 19:38:42 UTC (rev 163227)
+++ PKGBUILD2016-02-23 19:40:26 UTC (rev 163228)
@@ -2,9 +2,9 @@
 # Maintainer: BlackEagle >
 
 pkgname=kodi-audioencoder-flac
-_commit=76508ed
-pkgver=20150810.76508ed
-pkgrel=3
+_commit=176288b
+pkgver=20160219.176288b
+pkgrel=1
 pkgdesc="kodi audioencoder addon for flac"
 arch=('i686' 'x86_64')
 url='https://github.com/xbmc/audioencoder.flac'


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

2016-02-23 Thread Ike Devolder
Date: Tuesday, February 23, 2016 @ 20:38:28
  Author: idevolder
Revision: 163226

upgpkg: kodi 16.0-1

Modified:
  kodi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-23 19:34:44 UTC (rev 163225)
+++ PKGBUILD2016-02-23 19:38:28 UTC (rev 163226)
@@ -11,9 +11,9 @@
 
 pkgbase=kodi
 pkgname=('kodi' 'kodi-eventclients')
-pkgver=15.2
-_codename=Isengard
-pkgrel=5
+pkgver=16.0
+_codename=Jarvis
+pkgrel=1
 arch=('i686' 'x86_64')
 url="http://kodi.tv;
 license=('GPL2')
@@ -25,14 +25,12 @@
   'libvdpau' 'libxrandr' 'libxslt' 'lzo' 'mesa' 'nasm' 'nss-mdns'
   'python2-pillow' 'python2-pybluez' 'python2-simplejson' 'rtmpdump' 'sdl2'
   'sdl_image' 'shairplay' 'smbclient' 'swig' 'taglib' 'tinyxml' 'unzip' 
'upower'
-  'yajl' 'zip'
+  'yajl' 'zip' 'mesa' 'dcadec' 'libcrossguid'
 )
 source=(
   
"$pkgname-$pkgver-$_codename.tar.gz::https://github.com/xbmc/xbmc/archive/$pkgver-$_codename.tar.gz;
-  'prevent-taglib-from-crashing-kodi.patch' # can stay in even with new taglib 
release
 )
-sha256sums=('dd8aeb942e6de5d1488e243e1346cff3f6597e21b5131a3ba72ff5cc82037110'
-'c588153311adbccd7484cc7381f5852b4199301fe04d917279c0a2535891159f')
+sha256sums=('0421ea1337cdee674f8a36d995f54152b5ddc4100e53410b3aeeb3b3f7d53946')
 
 prepare() {
   cd "$srcdir/xbmc-$pkgver-$_codename"
@@ -43,7 +41,6 @@
   sed 's/shell python/shell python2/' -i tools/EventClients/Makefile.in
 
   # patches
-  patch -p0 -i "$srcdir/prevent-taglib-from-crashing-kodi.patch"
 }
 
 build() {


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

2016-02-23 Thread Ike Devolder
Date: Tuesday, February 23, 2016 @ 20:38:42
  Author: idevolder
Revision: 163227

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

Added:
  kodi/repos/community-i686/PKGBUILD
(from rev 163226, kodi/trunk/PKGBUILD)
  kodi/repos/community-i686/kodi.install
(from rev 163226, kodi/trunk/kodi.install)
  kodi/repos/community-i686/prevent-taglib-from-crashing-kodi.patch
(from rev 163226, kodi/trunk/prevent-taglib-from-crashing-kodi.patch)
  kodi/repos/community-x86_64/PKGBUILD
(from rev 163226, kodi/trunk/PKGBUILD)
  kodi/repos/community-x86_64/kodi.install
(from rev 163226, kodi/trunk/kodi.install)
  kodi/repos/community-x86_64/prevent-taglib-from-crashing-kodi.patch
(from rev 163226, kodi/trunk/prevent-taglib-from-crashing-kodi.patch)
Deleted:
  kodi/repos/community-i686/PKGBUILD
  kodi/repos/community-i686/kodi.install
  kodi/repos/community-i686/prevent-taglib-from-crashing-kodi.patch
  kodi/repos/community-x86_64/PKGBUILD
  kodi/repos/community-x86_64/kodi.install
  kodi/repos/community-x86_64/prevent-taglib-from-crashing-kodi.patch

--+
 /PKGBUILD|  260 +
 /kodi.install|   34 +
 /prevent-taglib-from-crashing-kodi.patch |  192 +
 community-i686/PKGBUILD  |  133 --
 community-i686/kodi.install  |   17 
 community-i686/prevent-taglib-from-crashing-kodi.patch   |   96 
 community-x86_64/PKGBUILD|  133 --
 community-x86_64/kodi.install|   17 
 community-x86_64/prevent-taglib-from-crashing-kodi.patch |   96 
 9 files changed, 486 insertions(+), 492 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-02-23 19:38:28 UTC (rev 163226)
+++ community-i686/PKGBUILD 2016-02-23 19:38:42 UTC (rev 163227)
@@ -1,133 +0,0 @@
-# vim:set ts=2 sw=2 et:
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: BlackIkeEagle < ike DOT devolder AT gmail DOT com >
-# Contributor: Brad Fanella 
-# Contributor: [vEX] 
-# Contributor: Zeqadious 
-# Contributor: BlackIkeEagle < ike DOT devolder AT gmail DOT com >
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Maxime Gauduin 
-
-pkgbase=kodi
-pkgname=('kodi' 'kodi-eventclients')
-pkgver=15.2
-_codename=Isengard
-pkgrel=5
-arch=('i686' 'x86_64')
-url="http://kodi.tv;
-license=('GPL2')
-makedepends=(
-  'afpfs-ng' 'bluez-libs' 'boost' 'cmake' 'curl' 'cwiid' 'doxygen' 'git' 'glew'
-  'gperf' 'hicolor-icon-theme' 'jasper' 'java-runtime' 'libaacs' 'libass'
-  'libbluray' 'libcdio' 'libcec' 'libgl' 'libmariadbclient' 'libmicrohttpd'
-  'libmodplug' 'libmpeg2' 'libnfs' 'libplist' 'libpulse' 'libssh' 'libva'
-  'libvdpau' 'libxrandr' 'libxslt' 'lzo' 'mesa' 'nasm' 'nss-mdns'
-  'python2-pillow' 'python2-pybluez' 'python2-simplejson' 'rtmpdump' 'sdl2'
-  'sdl_image' 'shairplay' 'smbclient' 'swig' 'taglib' 'tinyxml' 'unzip' 
'upower'
-  'yajl' 'zip'
-)
-source=(
-  
"$pkgname-$pkgver-$_codename.tar.gz::https://github.com/xbmc/xbmc/archive/$pkgver-$_codename.tar.gz;
-  'prevent-taglib-from-crashing-kodi.patch' # can stay in even with new taglib 
release
-)
-sha256sums=('dd8aeb942e6de5d1488e243e1346cff3f6597e21b5131a3ba72ff5cc82037110'
-'c588153311adbccd7484cc7381f5852b4199301fe04d917279c0a2535891159f')
-
-prepare() {
-  cd "$srcdir/xbmc-$pkgver-$_codename"
-
-  find -type f -name *.py -exec sed 's|^#!.*python$|#!/usr/bin/python2|' -i 
"{}" +
-  sed 's|^#!.*python$|#!/usr/bin/python2|' -i 
tools/depends/native/rpl-native/rpl
-   sed 's/python/python2/' -i tools/Linux/kodi.sh.in
-  sed 's/shell python/shell python2/' -i tools/EventClients/Makefile.in
-
-  # patches
-  patch -p0 -i "$srcdir/prevent-taglib-from-crashing-kodi.patch"
-}
-
-build() {
-  cd "$srcdir/xbmc-$pkgver-$_codename"
-
-   # Bootstrapping
-  MAKEFLAGS=-j1 ./bootstrap
-
-  #./configure --help
-  #return 1
-
-  # Configuring XBMC
-  export PYTHON_VERSION=2  # external python v2
-  ./configure --prefix=/usr --exec-prefix=/usr \
---disable-debug \
---enable-optimizations \
---enable-libbluray \
---enable-shared-libraries \
---with-lirc-device=/run/lirc/lircd \
-ac_cv_type__Bool=yes
-
-  # Now (finally) build
-  make
-}
-
-package_kodi() {
-  pkgdesc="A software media player and entertainment hub for digital media"
-
-  # depends expected for kodi plugins:
-  # 'python2-pillow' 'python2-pybluez' 'python2-simplejson'
-  # depends expeced in FEH.py
-  # 'mesa-demos' 'xorg-xdpyinfo'
-  depends=(
-'python2-pillow' 'python2-pybluez' 'python2-simplejson'
-'mesa-demos' 'xorg-xdpyinfo'
-'bluez-libs' 'fribidi' 'glew' 

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

2016-02-23 Thread Ike Devolder
Date: Tuesday, February 23, 2016 @ 20:34:44
  Author: idevolder
Revision: 163225

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

Added:
  libcrossguid/repos/community-i686/
  libcrossguid/repos/community-i686/PKGBUILD
(from rev 163224, libcrossguid/trunk/PKGBUILD)
  libcrossguid/repos/community-x86_64/
  libcrossguid/repos/community-x86_64/PKGBUILD
(from rev 163224, libcrossguid/trunk/PKGBUILD)

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

Copied: libcrossguid/repos/community-i686/PKGBUILD (from rev 163224, 
libcrossguid/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-02-23 19:34:44 UTC (rev 163225)
@@ -0,0 +1,41 @@
+# Maintainer: BlackEagle 
+
+pkgname=libcrossguid
+_gitname=libcrossguid
+_commit=8f399e8
+pkgver=20150803.$_commit
+pkgrel=1
+pkgdesc="Lightweight cross platform C++ GUID/UUID library"
+arch=('i686' 'x86_64')
+url="https://github.com/graeme-hill/crossguid;
+license=('MIT')
+makedepends=('git')
+provides=('libcrossguid')
+conflicts=('libcrossguid')
+source=("$_gitname::git+https://github.com/graeme-hill/crossguid.git#commit=$_commit;)
+md5sums=('SKIP')
+
+build() {
+cd libcrossguid
+
+g++ -c guid.cpp -o guid.o $CXXFLAGS -std=c++11 -DGUID_LIBUUID
+ar rvs libcrossguid.a guid.o
+
+g++ -c test.cpp -o test.o $CXXFLAGS  -std=c++11
+g++ -c testmain.cpp -o testmain.o $CXXFLAGS
+g++ test.o guid.o testmain.o -o test $CXXFLAGS -luuid
+chmod +x test
+}
+
+check(){
+cd libcrossguid
+./test
+}
+
+package() {
+cd libcrossguid
+install -D -m644 libcrossguid.a "${pkgdir}/usr/lib/libcrossguid.a"
+install -D -m644 guid.h "${pkgdir}/usr/include/guid.h"
+install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+

Copied: libcrossguid/repos/community-x86_64/PKGBUILD (from rev 163224, 
libcrossguid/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-02-23 19:34:44 UTC (rev 163225)
@@ -0,0 +1,41 @@
+# Maintainer: BlackEagle 
+
+pkgname=libcrossguid
+_gitname=libcrossguid
+_commit=8f399e8
+pkgver=20150803.$_commit
+pkgrel=1
+pkgdesc="Lightweight cross platform C++ GUID/UUID library"
+arch=('i686' 'x86_64')
+url="https://github.com/graeme-hill/crossguid;
+license=('MIT')
+makedepends=('git')
+provides=('libcrossguid')
+conflicts=('libcrossguid')
+source=("$_gitname::git+https://github.com/graeme-hill/crossguid.git#commit=$_commit;)
+md5sums=('SKIP')
+
+build() {
+cd libcrossguid
+
+g++ -c guid.cpp -o guid.o $CXXFLAGS -std=c++11 -DGUID_LIBUUID
+ar rvs libcrossguid.a guid.o
+
+g++ -c test.cpp -o test.o $CXXFLAGS  -std=c++11
+g++ -c testmain.cpp -o testmain.o $CXXFLAGS
+g++ test.o guid.o testmain.o -o test $CXXFLAGS -luuid
+chmod +x test
+}
+
+check(){
+cd libcrossguid
+./test
+}
+
+package() {
+cd libcrossguid
+install -D -m644 libcrossguid.a "${pkgdir}/usr/lib/libcrossguid.a"
+install -D -m644 guid.h "${pkgdir}/usr/include/guid.h"
+install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+


[arch-commits] Commit in (4 files)

2016-02-23 Thread Ike Devolder
Date: Tuesday, February 23, 2016 @ 20:33:59
  Author: idevolder
Revision: 163224

libcrossguid

Added:
  libcrossguid/
  libcrossguid/repos/
  libcrossguid/trunk/
  libcrossguid/trunk/PKGBUILD

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

Added: libcrossguid/trunk/PKGBUILD
===
--- libcrossguid/trunk/PKGBUILD (rev 0)
+++ libcrossguid/trunk/PKGBUILD 2016-02-23 19:33:59 UTC (rev 163224)
@@ -0,0 +1,41 @@
+# Maintainer: BlackEagle 
+
+pkgname=libcrossguid
+_gitname=libcrossguid
+_commit=8f399e8
+pkgver=20150803.$_commit
+pkgrel=1
+pkgdesc="Lightweight cross platform C++ GUID/UUID library"
+arch=('i686' 'x86_64')
+url="https://github.com/graeme-hill/crossguid;
+license=('MIT')
+makedepends=('git')
+provides=('libcrossguid')
+conflicts=('libcrossguid')
+source=("$_gitname::git+https://github.com/graeme-hill/crossguid.git#commit=$_commit;)
+md5sums=('SKIP')
+
+build() {
+cd libcrossguid
+
+g++ -c guid.cpp -o guid.o $CXXFLAGS -std=c++11 -DGUID_LIBUUID
+ar rvs libcrossguid.a guid.o
+
+g++ -c test.cpp -o test.o $CXXFLAGS  -std=c++11
+g++ -c testmain.cpp -o testmain.o $CXXFLAGS
+g++ test.o guid.o testmain.o -o test $CXXFLAGS -luuid
+chmod +x test
+}
+
+check(){
+cd libcrossguid
+./test
+}
+
+package() {
+cd libcrossguid
+install -D -m644 libcrossguid.a "${pkgdir}/usr/lib/libcrossguid.a"
+install -D -m644 guid.h "${pkgdir}/usr/include/guid.h"
+install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+


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

2016-02-23 Thread Dave Reisner
Date: Tuesday, February 23, 2016 @ 19:55:26
  Author: dreisner
Revision: 260198

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

Added:
  libssh2/repos/testing-i686/
  libssh2/repos/testing-i686/PKGBUILD
(from rev 260197, libssh2/trunk/PKGBUILD)
  libssh2/repos/testing-x86_64/
  libssh2/repos/testing-x86_64/PKGBUILD
(from rev 260197, libssh2/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   35 +++
 testing-x86_64/PKGBUILD |   35 +++
 2 files changed, 70 insertions(+)

Copied: libssh2/repos/testing-i686/PKGBUILD (from rev 260197, 
libssh2/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-02-23 18:55:26 UTC (rev 260198)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Dave Reisner 
+# Contributor: Angel Velasquez  
+# Contributor: Sergej Pupykin 
+# Contributor: Andrea Scarpino 
+# Contributor: ice-man 
+
+pkgname=libssh2
+pkgver=1.7.0
+pkgrel=1
+pkgdesc="A library implementing the SSH2 protocol as defined by Internet 
Drafts"
+url="http://www.libssh2.org/;
+arch=('i686' 'x86_64')
+license=('BSD')
+depends=('openssl')
+makedepends=('zlib')
+provides=('libssh2.so')
+validpgpkeys=('914C533DF9B2ADA2204F586D78E11C6B279D5C91')  # Daniel Stenberg
+source=("http://www.libssh2.org/download/$pkgname-$pkgver.tar.gz"{,.asc})
+md5sums=('b01662a210e94cccf2f76094db7dac5c'
+ 'SKIP')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}

Copied: libssh2/repos/testing-x86_64/PKGBUILD (from rev 260197, 
libssh2/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-02-23 18:55:26 UTC (rev 260198)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Dave Reisner 
+# Contributor: Angel Velasquez  
+# Contributor: Sergej Pupykin 
+# Contributor: Andrea Scarpino 
+# Contributor: ice-man 
+
+pkgname=libssh2
+pkgver=1.7.0
+pkgrel=1
+pkgdesc="A library implementing the SSH2 protocol as defined by Internet 
Drafts"
+url="http://www.libssh2.org/;
+arch=('i686' 'x86_64')
+license=('BSD')
+depends=('openssl')
+makedepends=('zlib')
+provides=('libssh2.so')
+validpgpkeys=('914C533DF9B2ADA2204F586D78E11C6B279D5C91')  # Daniel Stenberg
+source=("http://www.libssh2.org/download/$pkgname-$pkgver.tar.gz"{,.asc})
+md5sums=('b01662a210e94cccf2f76094db7dac5c'
+ 'SKIP')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2016-02-23 Thread Dave Reisner
Date: Tuesday, February 23, 2016 @ 19:55:03
  Author: dreisner
Revision: 260197

upgpkg: libssh2 1.7.0-1

Modified:
  libssh2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-23 18:36:24 UTC (rev 260196)
+++ PKGBUILD2016-02-23 18:55:03 UTC (rev 260197)
@@ -6,7 +6,7 @@
 # Contributor: ice-man 
 
 pkgname=libssh2
-pkgver=1.6.0
+pkgver=1.7.0
 pkgrel=1
 pkgdesc="A library implementing the SSH2 protocol as defined by Internet 
Drafts"
 url="http://www.libssh2.org/;
@@ -17,7 +17,7 @@
 provides=('libssh2.so')
 validpgpkeys=('914C533DF9B2ADA2204F586D78E11C6B279D5C91')  # Daniel Stenberg
 source=("http://www.libssh2.org/download/$pkgname-$pkgver.tar.gz"{,.asc})
-md5sums=('00aabd6e714a5f42a4fb82ace20db1dd'
+md5sums=('b01662a210e94cccf2f76094db7dac5c'
  'SKIP')
 
 build() {


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

2016-02-23 Thread Laurent Carlier
Date: Tuesday, February 23, 2016 @ 19:36:16
  Author: lcarlier
Revision: 260195

upgpkg: xorg-xrandr 1.5.0-1

upstream update 1.5.0

Modified:
  xorg-xrandr/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-23 16:14:58 UTC (rev 260194)
+++ PKGBUILD2016-02-23 18:36:16 UTC (rev 260195)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot 
 
 pkgname=xorg-xrandr
-pkgver=1.4.3
+pkgver=1.5.0
 pkgrel=1
 pkgdesc="Primitive command line interface to RandR extension"
 arch=(i686 x86_64)
@@ -12,7 +12,7 @@
 makedepends=('xorg-util-macros')
 groups=('xorg-apps' 'xorg')
 
source=(http://xorg.freedesktop.org/archive/individual/app/xrandr-${pkgver}.tar.bz2{,.sig})
-sha256sums=('7154ac3486b86923692f2d6cdb2991a2ee72bc32af2c4379a6f1c068f204be1b'
+sha256sums=('c1cfd4e1d4d708c031d60801e527abc9b6d34b85f2ffa2cadd21f75ff38151cd'
 'SKIP')
 validpgpkeys=('BD68A042C603DDAD9AA354B0F56ACC8F09BA9635') # Aaron Plattner 

 


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

2016-02-23 Thread Laurent Carlier
Date: Tuesday, February 23, 2016 @ 19:36:24
  Author: lcarlier
Revision: 260196

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

Added:
  xorg-xrandr/repos/testing-i686/
  xorg-xrandr/repos/testing-i686/PKGBUILD
(from rev 260195, xorg-xrandr/trunk/PKGBUILD)
  xorg-xrandr/repos/testing-x86_64/
  xorg-xrandr/repos/testing-x86_64/PKGBUILD
(from rev 260195, xorg-xrandr/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   31 +++
 testing-x86_64/PKGBUILD |   31 +++
 2 files changed, 62 insertions(+)

Copied: xorg-xrandr/repos/testing-i686/PKGBUILD (from rev 260195, 
xorg-xrandr/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-02-23 18:36:24 UTC (rev 260196)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=xorg-xrandr
+pkgver=1.5.0
+pkgrel=1
+pkgdesc="Primitive command line interface to RandR extension"
+arch=(i686 x86_64)
+url="http://xorg.freedesktop.org/;
+license=('custom')
+depends=('libxrandr' 'libx11')
+makedepends=('xorg-util-macros')
+groups=('xorg-apps' 'xorg')
+source=(http://xorg.freedesktop.org/archive/individual/app/xrandr-${pkgver}.tar.bz2{,.sig})
+sha256sums=('c1cfd4e1d4d708c031d60801e527abc9b6d34b85f2ffa2cadd21f75ff38151cd'
+'SKIP')
+validpgpkeys=('BD68A042C603DDAD9AA354B0F56ACC8F09BA9635') # Aaron Plattner 

+
+build() {
+  cd "${srcdir}/xrandr-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/xrandr-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+  rm -f "${pkgdir}/usr/bin/xkeystone"
+}

Copied: xorg-xrandr/repos/testing-x86_64/PKGBUILD (from rev 260195, 
xorg-xrandr/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-02-23 18:36:24 UTC (rev 260196)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=xorg-xrandr
+pkgver=1.5.0
+pkgrel=1
+pkgdesc="Primitive command line interface to RandR extension"
+arch=(i686 x86_64)
+url="http://xorg.freedesktop.org/;
+license=('custom')
+depends=('libxrandr' 'libx11')
+makedepends=('xorg-util-macros')
+groups=('xorg-apps' 'xorg')
+source=(http://xorg.freedesktop.org/archive/individual/app/xrandr-${pkgver}.tar.bz2{,.sig})
+sha256sums=('c1cfd4e1d4d708c031d60801e527abc9b6d34b85f2ffa2cadd21f75ff38151cd'
+'SKIP')
+validpgpkeys=('BD68A042C603DDAD9AA354B0F56ACC8F09BA9635') # Aaron Plattner 

+
+build() {
+  cd "${srcdir}/xrandr-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/xrandr-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+  rm -f "${pkgdir}/usr/bin/xkeystone"
+}


[arch-commits] Commit in percona-server/trunk (4 files)

2016-02-23 Thread Massimiliano Torromeo
Date: Tuesday, February 23, 2016 @ 17:57:14
  Author: mtorromeo
Revision: 163223

Updated to 5.7.10

Modified:
  percona-server/trunk/PKGBUILD
  percona-server/trunk/percona.install
Deleted:
  percona-server/trunk/mysql56-bufsize.patch
  percona-server/trunk/mysqld-tmpfile.conf

---+
 PKGBUILD  |   39 +--
 mysql56-bufsize.patch |   20 
 mysqld-tmpfile.conf   |1 -
 percona.install   |2 +-
 4 files changed, 18 insertions(+), 44 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-02-23 16:54:04 UTC (rev 163222)
+++ PKGBUILD2016-02-23 16:57:14 UTC (rev 163223)
@@ -3,7 +3,8 @@
 
 pkgbase=percona-server
 pkgname=('libperconaserverclient' 'percona-server-clients' 'percona-server')
-pkgver=5.6.28_76.1
+pkgver=5.7.10_3
+_boost_ver=1.59.0
 _pkgver=${pkgver/_/-}
 _myver=${pkgver/_rel*}
 pkgrel=1
@@ -13,17 +14,14 @@
 license=('GPL' 'AGPL')
 url="http://www.percona.com/software/percona-server/;
 
source=("http://www.percona.com/downloads/Percona-Server-${pkgver%.*_*}/Percona-Server-$_pkgver/source/tarball/percona-server-$_pkgver.tar.gz;
+
"http://sourceforge.net/projects/boost/files/boost/${_boost_ver}/boost_${_boost_ver//./_}.tar.gz;
 'my.cnf'
-'mysql-user.conf'
-'mysqld-tmpfile.conf'
-'mysql56-bufsize.patch')
+'mysql-user.conf')
 
 prepare() {
cd $pkgbase-$_pkgver
-   patch -p0 -i ../mysql56-bufsize.patch
rm -v sql/sql_yacc.{cc,h}
-   sed 's|$datadir/mysql.sock|/run/mysqld/mysqld.sock|' \
-   -i packaging/rpm-fedora/mysql-systemd-start
+
sed 's|${fullhostname}|"archbuild"|' \
-i storage/tokudb/PerconaFT/cmake_modules/TokuSetupCTest.cmake
 }
@@ -60,6 +58,7 @@
-DWITH_PAM=ON \
-DWITH_EXTRA_CHARSETS=complex \
-DWITH_EMBEDDED_SERVER=ON \
+ -DWITH_EMBEDDED_SHARED_LIBRARY=ON \
-DWITH_INNODB_MEMCACHED=ON \
-DWITH_INNOBASE_STORAGE_ENGINE=ON \
-DWITH_PARTITION_STORAGE_ENGINE=ON \
@@ -68,9 +67,11 @@
-DWITH_BLACKHOLE_STORAGE_ENGINE=ON \
-DWITH_FEDERATED_STORAGE_ENGINE=OFF \
-DWITH_EXAMPLE_STORAGE_ENGINE=OFF \
-   -DCMAKE_C_FLAGS="-fPIC $CFLAGS -fno-strict-aliasing 
-DBIG_JOINS=1 -fomit-frame-pointer" \
-   -DCMAKE_CXX_FLAGS="-fPIC $CXXFLAGS -fno-strict-aliasing 
-DBIG_JOINS=1 -felide-constructors -fno-rtti" \
-   -DWITH_MYSQLD_LDFLAGS="$LDFLAGS"
+ -DWITH_SYSTEMD=1 \
+   -DCMAKE_C_FLAGS="-fPIC $CFLAGS -fno-strict-aliasing 
-DBIG_JOINS=1 -fomit-frame-pointer -fno-delete-null-pointer-checks" \
+   -DCMAKE_CXX_FLAGS="-fPIC $CXXFLAGS -fno-strict-aliasing 
-DBIG_JOINS=1 -felide-constructors -fno-delete-null-pointer-checks" \
+   -DWITH_MYSQLD_LDFLAGS="-pie ${LDFLAGS},-z,now" \
+   -DWITH_BOOST="../boost_${_boost_ver//./_}"
 
make
 }
@@ -125,12 +126,7 @@
 
install -Dm644 ../my.cnf "$pkgdir"/etc/mysql/my.cnf
install -Dm644 ../mysql-user.conf 
"$pkgdir"/usr/lib/sysusers.d/mysql.conf
-   install -Dm644 ../mysqld-tmpfile.conf 
"$pkgdir"/usr/lib/tmpfiles.d/mysqld.conf
 
-   cd ../$pkgbase-$_pkgver/packaging/rpm-fedora
-   install -Dm755 mysql-systemd-start "$pkgdir"/usr/bin/mysql-systemd-start
-   install -Dm644 mysqld.service 
"$pkgdir"/usr/lib/systemd/system/mysqld.service
-
   cd "$pkgdir"
 
# Move documentation
@@ -154,16 +150,15 @@
rm 
usr/share/man/man1/{mysql,mysqladmin,mysqlcheck,mysqldump,mysqlimport,mysqlshow,mysqlslap}.1
 
# deprecated/unused
-   rm usr/bin/{replace,msql2mysql}
-   rm usr/share/man/man1/{replace,msql2mysql}.1
+   rm usr/bin/replace
+   rm usr/share/man/man1/replace.1
 
# not needed
-   rm -r usr/{data,mysql-test,sql-bench}
+   rm -r usr/mysql-test
rm usr/share/man/man1/mysql-test-run.pl.1
 }
 
-sha256sums=('ab8ab794a58a82132645ae84b74de91c7f9a5bcf81f2162628ce8976a00a4fd4'
+sha256sums=('d28e05f942c540aedad55eb17debfa40f0715c3222dec19e378f1d3cc6cfbb97'
+'47f11c8844e579d02691a607fbd32540104a9ac7a2534a8ddaef50daf502baac'
 'ae451839c368f0db25a63bb0a6a890194897a8e74818bd4245140933c29e5f83'
-'e638a2657085f15b6728f43c1fd6aa551b27608fbf6b435e33afd3606a0cfb0e'
-'badf6a701d9dc6ea3b4ddca26cb0f42b6236432ccdbc14c64962147802594a60'
-'1039e232a7778544b00eb215c93bb06c588c95c2fd49cfb162dc50eb4dfbf729')
+'e638a2657085f15b6728f43c1fd6aa551b27608fbf6b435e33afd3606a0cfb0e')

Deleted: mysql56-bufsize.patch
===
--- mysql56-bufsize.patch   2016-02-23 16:54:04 UTC (rev 163222)
+++ mysql56-bufsize.patch   2016-02-23 16:57:14 UTC (rev 163223)
@@ -1,20 +0,0 @@
 

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

2016-02-23 Thread Massimiliano Torromeo
Date: Tuesday, February 23, 2016 @ 17:53:54
  Author: mtorromeo
Revision: 163221

upgpkg: xtrabackup 2.4.1-1

Updated to 2.4.1

Modified:
  xtrabackup/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-23 15:20:15 UTC (rev 163220)
+++ PKGBUILD2016-02-23 16:53:54 UTC (rev 163221)
@@ -3,7 +3,8 @@
 # Contributor: Bartłomiej Piotrowski 
 
 pkgname=xtrabackup
-pkgver=2.3.3
+pkgver=2.4.1
+_boost_ver=1.59.0
 pkgrel=1
 pkgdesc='Non-blocking backup tool for MySQL'
 arch=('i686' 'x86_64')
@@ -12,8 +13,10 @@
 depends=('libaio' 'libev' 'libgcrypt' 'curl' 'perl-dbd-mysql')
 makedepends=('cmake' 'python-sphinx' 'zlib' 'vim' 'libedit' 'libevent')
 optdepends=('qpress: for compressed backups')
-source=(http://www.percona.com/downloads/XtraBackup/LATEST/source/tarball/percona-xtrabackup-$pkgver.tar.gz)
-sha256sums=('88c2b2897c571dd9fac73c1506620a95276f0b7d7e7a30d96aadff0b0f23ae15')
+source=(http://www.percona.com/downloads/XtraBackup/LATEST/source/tarball/percona-xtrabackup-$pkgver.tar.gz
+
http://sourceforge.net/projects/boost/files/boost/${_boost_ver}/boost_${_boost_ver//./_}.tar.gz)
+sha256sums=('f058784c6735cc29b03f9db5606ddbd38577c199c0df90923f95dc3e35fcbf00'
+'47f11c8844e579d02691a607fbd32540104a9ac7a2534a8ddaef50daf502baac')
 
 build() {
   cd percona-xtrabackup-$pkgver
@@ -25,7 +28,8 @@
-DWITH_SSL=system \
-DWITH_LIBEVENT=system \
-DWITH_EDITLINE=system \
--DCMAKE_INSTALL_PREFIX=/usr
+-DCMAKE_INSTALL_PREFIX=/usr \
+   -DWITH_BOOST="../boost_${_boost_ver//./_}"
   make
 }
 


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

2016-02-23 Thread Massimiliano Torromeo
Date: Tuesday, February 23, 2016 @ 17:54:04
  Author: mtorromeo
Revision: 163222

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-02-23 16:53:54 UTC (rev 163221)
+++ community-i686/PKGBUILD 2016-02-23 16:54:04 UTC (rev 163222)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo 
-# Contributor: Bartłomiej Piotrowski 
-
-pkgname=xtrabackup
-pkgver=2.3.3
-pkgrel=1
-pkgdesc='Non-blocking backup tool for MySQL'
-arch=('i686' 'x86_64')
-url='http://www.percona.com/software/percona-xtrabackup/'
-license=('GPL')
-depends=('libaio' 'libev' 'libgcrypt' 'curl' 'perl-dbd-mysql')
-makedepends=('cmake' 'python-sphinx' 'zlib' 'vim-minimal' 'libedit' 'libevent')
-optdepends=('qpress: for compressed backups')
-source=(http://www.percona.com/downloads/XtraBackup/LATEST/source/tarball/percona-xtrabackup-$pkgver.tar.gz)
-sha256sums=('88c2b2897c571dd9fac73c1506620a95276f0b7d7e7a30d96aadff0b0f23ae15')
-
-build() {
-  cd percona-xtrabackup-$pkgver
-  cmake -DBUILD_CONFIG=xtrabackup_release \
--DBUILD_TESTING=OFF \
--DCMAKE_BUILD_TYPE=Release \
--DMYSQL_DATADIR=/var/lib/mysql \
-   -DMYSQL_UNIX_ADDR=/run/mysqld/mysqld.sock \
-   -DWITH_SSL=system \
-   -DWITH_LIBEVENT=system \
-   -DWITH_EDITLINE=system \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd percona-xtrabackup-$pkgver
-  make DESTDIR="$pkgdir" install
-
-  cd  "$pkgdir"
-  rm -rf usr/xtrabackup-test
-  install -dm755 usr/share
-  mv build/$pkgname/src/percona-xtrabackup-$pkgver/man usr/share
-  rm -rf build
-}

Copied: xtrabackup/repos/community-i686/PKGBUILD (from rev 163221, 
xtrabackup/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-02-23 16:54:04 UTC (rev 163222)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo 
+# Contributor: Bartłomiej Piotrowski 
+
+pkgname=xtrabackup
+pkgver=2.4.1
+_boost_ver=1.59.0
+pkgrel=1
+pkgdesc='Non-blocking backup tool for MySQL'
+arch=('i686' 'x86_64')
+url='http://www.percona.com/software/percona-xtrabackup/'
+license=('GPL')
+depends=('libaio' 'libev' 'libgcrypt' 'curl' 'perl-dbd-mysql')
+makedepends=('cmake' 'python-sphinx' 'zlib' 'vim' 'libedit' 'libevent')
+optdepends=('qpress: for compressed backups')
+source=(http://www.percona.com/downloads/XtraBackup/LATEST/source/tarball/percona-xtrabackup-$pkgver.tar.gz
+
http://sourceforge.net/projects/boost/files/boost/${_boost_ver}/boost_${_boost_ver//./_}.tar.gz)
+sha256sums=('f058784c6735cc29b03f9db5606ddbd38577c199c0df90923f95dc3e35fcbf00'
+'47f11c8844e579d02691a607fbd32540104a9ac7a2534a8ddaef50daf502baac')
+
+build() {
+  cd percona-xtrabackup-$pkgver
+  cmake -DBUILD_CONFIG=xtrabackup_release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_BUILD_TYPE=Release \
+-DMYSQL_DATADIR=/var/lib/mysql \
+   -DMYSQL_UNIX_ADDR=/run/mysqld/mysqld.sock \
+   -DWITH_SSL=system \
+   -DWITH_LIBEVENT=system \
+   -DWITH_EDITLINE=system \
+-DCMAKE_INSTALL_PREFIX=/usr \
+   -DWITH_BOOST="../boost_${_boost_ver//./_}"
+  make
+}
+
+package() {
+  cd percona-xtrabackup-$pkgver
+  make DESTDIR="$pkgdir" install
+
+  cd  "$pkgdir"
+  rm -rf usr/xtrabackup-test
+  install -dm755 usr/share
+  mv build/$pkgname/src/percona-xtrabackup-$pkgver/man usr/share
+  rm -rf build
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-02-23 16:53:54 UTC (rev 163221)
+++ community-x86_64/PKGBUILD   2016-02-23 16:54:04 UTC (rev 163222)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo 
-# Contributor: Bartłomiej Piotrowski 
-
-pkgname=xtrabackup
-pkgver=2.3.3
-pkgrel=1
-pkgdesc='Non-blocking backup tool for MySQL'
-arch=('i686' 'x86_64')
-url='http://www.percona.com/software/percona-xtrabackup/'
-license=('GPL')
-depends=('libaio' 'libev' 'libgcrypt' 'curl' 'perl-dbd-mysql')

[arch-commits] Commit in retext/trunk (PKGBUILD enchant.patch)

2016-02-23 Thread Jiachen Yang
Date: Tuesday, February 23, 2016 @ 16:16:10
  Author: farseerfc
Revision: 163219

backport a fix to enchant

Added:
  retext/trunk/enchant.patch
Modified:
  retext/trunk/PKGBUILD

---+
 PKGBUILD  |   15 +--
 enchant.patch |   13 +
 2 files changed, 26 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-02-23 12:40:08 UTC (rev 163218)
+++ PKGBUILD2016-02-23 15:16:10 UTC (rev 163219)
@@ -7,7 +7,7 @@
 
 pkgname=retext
 pkgver=5.3.0
-pkgrel=3
+pkgrel=4
 pkgdesc="A simple editor for Markdown and ReStructuredText markup languages"
 arch=('any')
 url="https://github.com/retext-project/retext;
@@ -20,16 +20,27 @@
 'python-docutils: for reStructuredText language support'
 'python-pyenchant: for spell checking support')
 source=("https://github.com/retext-project/${pkgname}/archive/${pkgver}.tar.gz;
+"enchant.patch"
 "x-retext-markdown.xml"
 "x-retext-rst.xml")
 install="${pkgname}".install
 sha256sums=('dcb39f0e53b02f8ad599b3091c1af096ca474a2ccaeb1321da38deeb982187c1'
+'4c324cd3afa0dadb150d2722704e91342c0684d42223f2a07de260bee22436c0'
 'b51611479d3224eec2b58264ed91ace3eccb502b7b806dae3e7a3ab4aab8c4b8'
 '6fef80cccb14813d9cc74810c397a6cd7831d1ca243536759a47c6e8b6cc977a')
 
+prepare () {
+cd "$srcdir/retext-${pkgver}"
+sed -i "s/, env={'QT_SELECT': 'qt5'}//g" setup.py
+
+# https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=812149
+# https://github.com/retext-project/retext/issues/193
+# 
https://github.com/retext-project/retext/commit/39603255072313423a17d9207c6b1ec613d9825b
+patch -p1 --verbose <"${srcdir}/enchant.patch"
+}
+
 build () {
 cd "$srcdir/retext-${pkgver}"
-sed -i "s/, env={'QT_SELECT': 'qt5'}//g" setup.py
 python3 setup.py build
 }
 

Added: enchant.patch
===
--- enchant.patch   (rev 0)
+++ enchant.patch   2016-02-23 15:16:10 UTC (rev 163219)
@@ -0,0 +1,13 @@
+diff --git a/ReText/tab.py b/ReText/tab.py
+index 42e080a..eb8aa11 100644
+--- a/ReText/tab.py
 b/ReText/tab.py
+@@ -48,7 +48,7 @@ class ReTextTab(QObject):
+   textDocument = self.editBox.document()
+   self.highlighter = ReTextHighlighter(textDocument)
+   if enchant_available and parent.actionEnableSC.isChecked():
+-  self.highlighter.dictionary = enchant.Dict(parent.sl)
++  self.highlighter.dictionary = enchant.Dict(parent.sl or 
None)
+   self.highlighter.rehighlight()
+   self.highlighter.docType = self.markup.name
+ 


[arch-commits] Commit in retext/repos/community-any (9 files)

2016-02-23 Thread Jiachen Yang
Date: Tuesday, February 23, 2016 @ 16:20:15
  Author: farseerfc
Revision: 163220

archrelease: copy trunk to community-any

Added:
  retext/repos/community-any/PKGBUILD
(from rev 163219, retext/trunk/PKGBUILD)
  retext/repos/community-any/enchant.patch
(from rev 163219, retext/trunk/enchant.patch)
  retext/repos/community-any/retext.install
(from rev 163219, retext/trunk/retext.install)
  retext/repos/community-any/x-retext-markdown.xml
(from rev 163219, retext/trunk/x-retext-markdown.xml)
  retext/repos/community-any/x-retext-rst.xml
(from rev 163219, retext/trunk/x-retext-rst.xml)
Deleted:
  retext/repos/community-any/PKGBUILD
  retext/repos/community-any/retext.install
  retext/repos/community-any/x-retext-markdown.xml
  retext/repos/community-any/x-retext-rst.xml

+
 PKGBUILD   |  125 +--
 enchant.patch  |   13 +
 retext.install |   30 ++---
 3 files changed, 96 insertions(+), 72 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-02-23 15:16:10 UTC (rev 163219)
+++ PKGBUILD2016-02-23 15:20:15 UTC (rev 163220)
@@ -1,57 +0,0 @@
-# Maintainer: Jiachen Yang 
-# AUR Maintainer: Hyacinthe Cartiaux 
-# Contributor: Bartosz Chmura 
-# Contributor: Alessio Sergi 
-# Contributor: alfplayer
-# Contributor: menta
-
-pkgname=retext
-pkgver=5.3.0
-pkgrel=3
-pkgdesc="A simple editor for Markdown and ReStructuredText markup languages"
-arch=('any')
-url="https://github.com/retext-project/retext;
-license=('GPL3')
-# for desktop integration: 'shared-mime-info' 'xdg-utils' 'desktop-file-utils'
-# for toolbar icons (see http://sourceforge.net/p/retext/tickets/44/): 'gconf'
-depends=('python-pyqt5' 'qt5-webkit' 'python-markups' 'shared-mime-info' 
'xdg-utils' 'desktop-file-utils' 'gconf')
-makedepends=('imagemagick' 'qt5-tools' 'qtchooser')
-optdepends=('python-markdown: for Markdown language support'
-'python-docutils: for reStructuredText language support'
-'python-pyenchant: for spell checking support')
-source=("https://github.com/retext-project/${pkgname}/archive/${pkgver}.tar.gz;
-"x-retext-markdown.xml"
-"x-retext-rst.xml")
-install="${pkgname}".install
-sha256sums=('dcb39f0e53b02f8ad599b3091c1af096ca474a2ccaeb1321da38deeb982187c1'
-'b51611479d3224eec2b58264ed91ace3eccb502b7b806dae3e7a3ab4aab8c4b8'
-'6fef80cccb14813d9cc74810c397a6cd7831d1ca243536759a47c6e8b6cc977a')
-
-build () {
-cd "$srcdir/retext-${pkgver}"
-sed -i "s/, env={'QT_SELECT': 'qt5'}//g" setup.py
-python3 setup.py build
-}
-
-package () {
-cd "$srcdir/retext-${pkgver}"
-python3 setup.py install --root="$pkgdir" -O1
-
-# create /usr/share/* dirs
-_SHAREDIR="$pkgdir/usr/share"
-install -d -m 755 $_SHAREDIR/{applications,mime/packages}
-
-# install icons
-_ICONSDIR="$_SHAREDIR/icons/hicolor"
-for size in 16 22 24 32 48 128; do
-  install -d -m 755 $_ICONSDIR/${size}x${size}/apps
-  convert -resize $size icons/$pkgname.png 
$_ICONSDIR/${size}x${size}/apps/$pkgname.png
-done
-install -d -m 755 $_ICONSDIR/scalable/apps
-install -m 644 icons/$pkgname.svg $_ICONSDIR/scalable/apps/$pkgname.svg
-
-# install mime files
-install -m 644 $srcdir/x-retext-{markdown,rst}.xml 
$_SHAREDIR/mime/packages/
-}
-
-# vim:set ts=2 sw=2 et:

Copied: retext/repos/community-any/PKGBUILD (from rev 163219, 
retext/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-02-23 15:20:15 UTC (rev 163220)
@@ -0,0 +1,68 @@
+# Maintainer: Jiachen Yang 
+# AUR Maintainer: Hyacinthe Cartiaux 
+# Contributor: Bartosz Chmura 
+# Contributor: Alessio Sergi 
+# Contributor: alfplayer
+# Contributor: menta
+
+pkgname=retext
+pkgver=5.3.0
+pkgrel=4
+pkgdesc="A simple editor for Markdown and ReStructuredText markup languages"
+arch=('any')
+url="https://github.com/retext-project/retext;
+license=('GPL3')
+# for desktop integration: 'shared-mime-info' 'xdg-utils' 'desktop-file-utils'
+# for toolbar icons (see http://sourceforge.net/p/retext/tickets/44/): 'gconf'
+depends=('python-pyqt5' 'qt5-webkit' 'python-markups' 'shared-mime-info' 
'xdg-utils' 'desktop-file-utils' 'gconf')
+makedepends=('imagemagick' 'qt5-tools' 'qtchooser')
+optdepends=('python-markdown: for Markdown language support'
+'python-docutils: for reStructuredText language support'
+'python-pyenchant: for spell checking support')
+source=("https://github.com/retext-project/${pkgname}/archive/${pkgver}.tar.gz;
+"enchant.patch"
+"x-retext-markdown.xml"
+"x-retext-rst.xml")
+install="${pkgname}".install

[arch-commits] Commit in qtcreator/repos (community-i686 community-x86_64)

2016-02-23 Thread Sven-Hendrik Haase
Date: Tuesday, February 23, 2016 @ 14:32:26
  Author: svenstaro
Revision: 260193

Remove from community again

Deleted:
  qtcreator/repos/community-i686/
  qtcreator/repos/community-x86_64/


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

2016-02-23 Thread Sven-Hendrik Haase
Date: Tuesday, February 23, 2016 @ 14:31:08
  Author: svenstaro
Revision: 260192

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

Added:
  qtcreator/repos/extra-i686/PKGBUILD
(from rev 260191, qtcreator/trunk/PKGBUILD)
  qtcreator/repos/extra-i686/qtcreator.desktop
(from rev 260191, qtcreator/trunk/qtcreator.desktop)
  qtcreator/repos/extra-i686/qtcreator.install
(from rev 260191, qtcreator/trunk/qtcreator.install)
  qtcreator/repos/extra-x86_64/PKGBUILD
(from rev 260191, qtcreator/trunk/PKGBUILD)
  qtcreator/repos/extra-x86_64/qtcreator.desktop
(from rev 260191, qtcreator/trunk/qtcreator.desktop)
  qtcreator/repos/extra-x86_64/qtcreator.install
(from rev 260191, qtcreator/trunk/qtcreator.install)
Deleted:
  qtcreator/repos/extra-i686/PKGBUILD
  qtcreator/repos/extra-i686/qtcreator.desktop
  qtcreator/repos/extra-i686/qtcreator.install
  qtcreator/repos/extra-x86_64/PKGBUILD
  qtcreator/repos/extra-x86_64/qtcreator.desktop
  qtcreator/repos/extra-x86_64/qtcreator.install

+
 /PKGBUILD  |  146 +++
 /qtcreator.desktop |   20 +
 /qtcreator.install |   24 ++
 extra-i686/PKGBUILD|   76 
 extra-i686/qtcreator.desktop   |   10 --
 extra-i686/qtcreator.install   |   12 ---
 extra-x86_64/PKGBUILD  |   76 
 extra-x86_64/qtcreator.desktop |   10 --
 extra-x86_64/qtcreator.install |   12 ---
 9 files changed, 190 insertions(+), 196 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-02-23 13:29:37 UTC (rev 260191)
+++ extra-i686/PKGBUILD 2016-02-23 13:31:08 UTC (rev 260192)
@@ -1,76 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Imanol Celaya 
-# Contributor: Lukas Jirkovsky 
-# Contributor: Dan Vratil 
-# Contributor: thotypous 
-# Contributor: delor 
-
-pkgname=qtcreator
-pkgver=3.6.0
-_pkgver=v3.6.0
-pkgrel=2
-pkgdesc='Lightweight, cross-platform integrated development environment'
-arch=('i686' 'x86_64')
-url='http://qt-project.org'
-license=('LGPL')
-depends=('qt5-quick1' 'qt5-tools' 'qt5-quickcontrols')
-makedepends=('git' 'mesa' 'clang')
-options=('docs')
-optdepends=('qt5-doc: for the integrated Qt documentation'
-'gdb: for the debugger'
-'cmake: for cmake project support'
-'openssh-askpass: for ssh support'
-'git: for git support'
-'mercurial: for mercurial support'
-'bzr: for bazaar support'
-'clang: Clang code model'
-'valgrind: for analyze support')
-install=qtcreator.install
-source=("git://code.qt.io/qt-creator/qt-creator.git#tag=${_pkgver}"
-"git://code.qt.io/qt-labs/qbs.git"
-'qtcreator.desktop')
-md5sums=('SKIP'
- 'SKIP'
- '800c94165c547b64012a207d9830250a')
-
-prepare() {
-  cd qt-creator
-  git submodule init
-  git config submodule.qbs.url $srcdir/qbs
-  git submodule update
-
-  # Debugger: Allow LLDB-MI to be used as debugger
-  # https://bugreports.qt.io/browse/QTCREATORBUG-15131
-  # https://code.qt.io/cgit/qt-creator/qt-creator.git/commit/?id=97e9f113879c
-  # https://code.qt.io/cgit/qt-creator/qt-creator.git/commit/?id=e57b0db0f959
-  git cherry-pick -n 97e9f113879c e57b0db0f959
-
-  # Fix FS#47640
-  sed -i "s/libexec/lib/g" qtcreator.pri
-}
-
-build() {
-  [[ -d build ]] && rm -r build
-  mkdir build && cd build
-
-  LLVM_INSTALL_DIR=/usr qmake CONFIG+=journald -r ../qt-creator/qtcreator.pro
-  make
-  make docs -j1
-}
-
-package() {
-  cd build
-
-  make INSTALL_ROOT="${pkgdir}/usr/" install
-  make INSTALL_ROOT="${pkgdir}/usr/" install_docs
-
-  # Workaround for FS#40583
-  mv "${pkgdir}"/usr/bin/qtcreator "${pkgdir}"/usr/bin/qtcreator-bin
-  echo "#!/bin/sh" > "${pkgdir}"/usr/bin/qtcreator
-  echo "QT_LOGGING_TO_CONSOLE=1 qtcreator-bin \$@" >> 
"${pkgdir}"/usr/bin/qtcreator
-  chmod +x "${pkgdir}"/usr/bin/qtcreator
-
-  install -Dm644 ${srcdir}/qtcreator.desktop 
${pkgdir}/usr/share/applications/qtcreator.desktop
-  install -Dm644 ${srcdir}/qt-creator/LGPL_EXCEPTION.TXT 
${pkgdir}/usr/share/licenses/qtcreator/LGPL_EXCEPTION.TXT
-}

Copied: qtcreator/repos/extra-i686/PKGBUILD (from rev 260191, 
qtcreator/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-02-23 13:31:08 UTC (rev 260192)
@@ -0,0 +1,73 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Imanol Celaya 
+# Contributor: Lukas Jirkovsky 
+# Contributor: Dan Vratil 
+# Contributor: thotypous 
+# Contributor: delor 
+

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

2016-02-23 Thread Sven-Hendrik Haase
Date: Tuesday, February 23, 2016 @ 14:29:37
  Author: svenstaro
Revision: 260191

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

Added:
  qtcreator/repos/community-i686/PKGBUILD
(from rev 260190, qtcreator/trunk/PKGBUILD)
  qtcreator/repos/community-i686/qtcreator.desktop
(from rev 260190, qtcreator/trunk/qtcreator.desktop)
  qtcreator/repos/community-i686/qtcreator.install
(from rev 260190, qtcreator/trunk/qtcreator.install)
  qtcreator/repos/community-x86_64/
  qtcreator/repos/community-x86_64/PKGBUILD
(from rev 260190, qtcreator/trunk/PKGBUILD)
  qtcreator/repos/community-x86_64/qtcreator.desktop
(from rev 260190, qtcreator/trunk/qtcreator.desktop)
  qtcreator/repos/community-x86_64/qtcreator.install
(from rev 260190, qtcreator/trunk/qtcreator.install)
Deleted:
  qtcreator/repos/community-i686/PKGBUILD
  qtcreator/repos/community-i686/qtcreator.desktop
  qtcreator/repos/community-i686/qtcreator.install

+
 /PKGBUILD  |   73 +++
 /qtcreator.desktop |   10 
 /qtcreator.install |   12 +
 community-i686/PKGBUILD|   73 ---
 community-i686/qtcreator.desktop   |   10 
 community-i686/qtcreator.install   |   12 -
 community-x86_64/PKGBUILD  |   73 +++
 community-x86_64/qtcreator.desktop |   10 
 community-x86_64/qtcreator.install |   12 +
 9 files changed, 190 insertions(+), 95 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-02-23 13:08:23 UTC (rev 260190)
+++ community-i686/PKGBUILD 2016-02-23 13:29:37 UTC (rev 260191)
@@ -1,73 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Imanol Celaya 
-# Contributor: Lukas Jirkovsky 
-# Contributor: Dan Vratil 
-# Contributor: thotypous 
-# Contributor: delor 
-
-pkgname=qtcreator
-pkgver=3.6.0
-_pkgver=v3.6.0
-pkgrel=3
-pkgdesc='Lightweight, cross-platform integrated development environment'
-arch=('i686' 'x86_64')
-url='http://qt-project.org'
-license=('LGPL')
-depends=('qt5-quick1' 'qt5-tools' 'qt5-quickcontrols')
-makedepends=('git' 'mesa' 'clang')
-options=('docs')
-optdepends=('qt5-doc: for the integrated Qt documentation'
-'gdb: for the debugger'
-'cmake: for cmake project support'
-'openssh-askpass: for ssh support'
-'git: for git support'
-'mercurial: for mercurial support'
-'bzr: for bazaar support'
-'clang: Clang code model'
-'valgrind: for analyze support')
-install=qtcreator.install
-source=("git://code.qt.io/qt-creator/qt-creator.git#tag=${_pkgver}"
-"git://code.qt.io/qt-labs/qbs.git"
-'qtcreator.desktop')
-md5sums=('SKIP'
- 'SKIP'
- '800c94165c547b64012a207d9830250a')
-
-prepare() {
-  cd qt-creator
-  git submodule init
-  git config submodule.qbs.url $srcdir/qbs
-  git submodule update
-
-  # Debugger: Allow LLDB-MI to be used as debugger
-  # https://bugreports.qt.io/browse/QTCREATORBUG-15131
-  # https://code.qt.io/cgit/qt-creator/qt-creator.git/commit/?id=97e9f113879c
-  # https://code.qt.io/cgit/qt-creator/qt-creator.git/commit/?id=e57b0db0f959
-  git cherry-pick -n 97e9f113879c e57b0db0f959
-}
-
-build() {
-  [[ -d build ]] && rm -r build
-  mkdir build && cd build
-
-  LLVM_INSTALL_DIR=/usr qmake CONFIG+=journald -r ../qt-creator/qtcreator.pro
-  make
-  make docs -j1
-}
-
-package() {
-  cd build
-
-  make INSTALL_ROOT="${pkgdir}/usr/" install
-  make INSTALL_ROOT="${pkgdir}/usr/" install_docs
-
-  # Workaround for FS#40583
-  mv "${pkgdir}"/usr/bin/qtcreator "${pkgdir}"/usr/bin/qtcreator-bin
-  echo "#!/bin/sh" > "${pkgdir}"/usr/bin/qtcreator
-  echo "QT_LOGGING_TO_CONSOLE=1 qtcreator-bin \$@" >> 
"${pkgdir}"/usr/bin/qtcreator
-  chmod +x "${pkgdir}"/usr/bin/qtcreator
-
-  install -Dm644 ${srcdir}/qtcreator.desktop 
${pkgdir}/usr/share/applications/qtcreator.desktop
-  install -Dm644 ${srcdir}/qt-creator/LGPL_EXCEPTION.TXT 
${pkgdir}/usr/share/licenses/qtcreator/LGPL_EXCEPTION.TXT
-}

Copied: qtcreator/repos/community-i686/PKGBUILD (from rev 260190, 
qtcreator/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-02-23 13:29:37 UTC (rev 260191)
@@ -0,0 +1,73 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Imanol Celaya 
+# Contributor: Lukas Jirkovsky 
+# Contributor: Dan Vratil 
+# Contributor: thotypous 
+# Contributor: delor 
+

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

2016-02-23 Thread Sven-Hendrik Haase
Date: Tuesday, February 23, 2016 @ 14:08:23
  Author: svenstaro
Revision: 260190

archrelease: copy trunk to community-i686

Added:
  qtcreator/repos/community-i686/
  qtcreator/repos/community-i686/PKGBUILD
(from rev 260189, qtcreator/trunk/PKGBUILD)
  qtcreator/repos/community-i686/qtcreator.desktop
(from rev 260189, qtcreator/trunk/qtcreator.desktop)
  qtcreator/repos/community-i686/qtcreator.install
(from rev 260189, qtcreator/trunk/qtcreator.install)

---+
 PKGBUILD  |   73 
 qtcreator.desktop |   10 +++
 qtcreator.install |   12 
 3 files changed, 95 insertions(+)

Copied: qtcreator/repos/community-i686/PKGBUILD (from rev 260189, 
qtcreator/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-02-23 13:08:23 UTC (rev 260190)
@@ -0,0 +1,73 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Imanol Celaya 
+# Contributor: Lukas Jirkovsky 
+# Contributor: Dan Vratil 
+# Contributor: thotypous 
+# Contributor: delor 
+
+pkgname=qtcreator
+pkgver=3.6.0
+_pkgver=v3.6.0
+pkgrel=3
+pkgdesc='Lightweight, cross-platform integrated development environment'
+arch=('i686' 'x86_64')
+url='http://qt-project.org'
+license=('LGPL')
+depends=('qt5-quick1' 'qt5-tools' 'qt5-quickcontrols')
+makedepends=('git' 'mesa' 'clang')
+options=('docs')
+optdepends=('qt5-doc: for the integrated Qt documentation'
+'gdb: for the debugger'
+'cmake: for cmake project support'
+'openssh-askpass: for ssh support'
+'git: for git support'
+'mercurial: for mercurial support'
+'bzr: for bazaar support'
+'clang: Clang code model'
+'valgrind: for analyze support')
+install=qtcreator.install
+source=("git://code.qt.io/qt-creator/qt-creator.git#tag=${_pkgver}"
+"git://code.qt.io/qt-labs/qbs.git"
+'qtcreator.desktop')
+md5sums=('SKIP'
+ 'SKIP'
+ '800c94165c547b64012a207d9830250a')
+
+prepare() {
+  cd qt-creator
+  git submodule init
+  git config submodule.qbs.url $srcdir/qbs
+  git submodule update
+
+  # Debugger: Allow LLDB-MI to be used as debugger
+  # https://bugreports.qt.io/browse/QTCREATORBUG-15131
+  # https://code.qt.io/cgit/qt-creator/qt-creator.git/commit/?id=97e9f113879c
+  # https://code.qt.io/cgit/qt-creator/qt-creator.git/commit/?id=e57b0db0f959
+  git cherry-pick -n 97e9f113879c e57b0db0f959
+}
+
+build() {
+  [[ -d build ]] && rm -r build
+  mkdir build && cd build
+
+  LLVM_INSTALL_DIR=/usr qmake CONFIG+=journald -r ../qt-creator/qtcreator.pro
+  make
+  make docs -j1
+}
+
+package() {
+  cd build
+
+  make INSTALL_ROOT="${pkgdir}/usr/" install
+  make INSTALL_ROOT="${pkgdir}/usr/" install_docs
+
+  # Workaround for FS#40583
+  mv "${pkgdir}"/usr/bin/qtcreator "${pkgdir}"/usr/bin/qtcreator-bin
+  echo "#!/bin/sh" > "${pkgdir}"/usr/bin/qtcreator
+  echo "QT_LOGGING_TO_CONSOLE=1 qtcreator-bin \$@" >> 
"${pkgdir}"/usr/bin/qtcreator
+  chmod +x "${pkgdir}"/usr/bin/qtcreator
+
+  install -Dm644 ${srcdir}/qtcreator.desktop 
${pkgdir}/usr/share/applications/qtcreator.desktop
+  install -Dm644 ${srcdir}/qt-creator/LGPL_EXCEPTION.TXT 
${pkgdir}/usr/share/licenses/qtcreator/LGPL_EXCEPTION.TXT
+}

Copied: qtcreator/repos/community-i686/qtcreator.desktop (from rev 260189, 
qtcreator/trunk/qtcreator.desktop)
===
--- community-i686/qtcreator.desktop(rev 0)
+++ community-i686/qtcreator.desktop2016-02-23 13:08:23 UTC (rev 260190)
@@ -0,0 +1,10 @@
+[Desktop Entry]
+Type=Application
+Exec=qtcreator %F
+Name=Qt Creator
+GenericName=C++ IDE for developing Qt applications
+X-KDE-StartupNotify=true
+Icon=QtProject-qtcreator
+Terminal=false
+Categories=Development;IDE;Qt;
+MimeType=text/x-c++src;text/x-c++hdr;text/x-xsrc;application/x-designer;application/vnd.nokia.qt.qmakeprofile;application/vnd.nokia.xml.qt.resource;

Copied: qtcreator/repos/community-i686/qtcreator.install (from rev 260189, 
qtcreator/trunk/qtcreator.install)
===
--- community-i686/qtcreator.install(rev 0)
+++ community-i686/qtcreator.install2016-02-23 13:08:23 UTC (rev 260190)
@@ -0,0 +1,12 @@
+post_install() {
+update-desktop-database -q
+gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}


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

2016-02-23 Thread Sven-Hendrik Haase
Date: Tuesday, February 23, 2016 @ 14:08:13
  Author: svenstaro
Revision: 260189

upgpkg: qtcreator 3.6.0-3

Revert libexec move due to breakage

Modified:
  qtcreator/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-23 12:42:17 UTC (rev 260188)
+++ PKGBUILD2016-02-23 13:08:13 UTC (rev 260189)
@@ -9,7 +9,7 @@
 pkgname=qtcreator
 pkgver=3.6.0
 _pkgver=v3.6.0
-pkgrel=2
+pkgrel=3
 pkgdesc='Lightweight, cross-platform integrated development environment'
 arch=('i686' 'x86_64')
 url='http://qt-project.org'
@@ -45,9 +45,6 @@
   # https://code.qt.io/cgit/qt-creator/qt-creator.git/commit/?id=97e9f113879c
   # https://code.qt.io/cgit/qt-creator/qt-creator.git/commit/?id=e57b0db0f959
   git cherry-pick -n 97e9f113879c e57b0db0f959
-
-  # Fix FS#47640
-  sed -i "s/libexec/lib/g" qtcreator.pri
 }
 
 build() {


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

2016-02-23 Thread Jan de Groot
Date: Tuesday, February 23, 2016 @ 13:42:17
  Author: jgc
Revision: 260188

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

Added:
  appstream-glib/repos/extra-i686/PKGBUILD
(from rev 260187, appstream-glib/trunk/PKGBUILD)
  appstream-glib/repos/extra-x86_64/PKGBUILD
(from rev 260187, appstream-glib/trunk/PKGBUILD)
Deleted:
  appstream-glib/repos/extra-i686/PKGBUILD
  appstream-glib/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-02-23 12:42:10 UTC (rev 260187)
+++ extra-i686/PKGBUILD 2016-02-23 12:42:17 UTC (rev 260188)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=appstream-glib
-pkgver=0.5.5
-pkgrel=2
-pkgdesc="Provides GObjects and helper methods to make it easy to read and 
write AppStream metadata"
-arch=('i686' 'x86_64')
-url="http://people.freedesktop.org/~hughsient/appstream-glib/;
-license=('LGPL')
-depends=('gtk3' 'libyaml' 'pacman' 'gcab')
-makedepends=('intltool')
-provides=('appdata-tools')
-conflicts=('appdata-tools')
-replaces=('appdata-tools')
-source=(http://people.freedesktop.org/~hughsient/appstream-glib/releases/$pkgname-$pkgver.tar.xz)
-md5sums=('acfe164c5f6cb8edecc6c99345a5d390')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --enable-alpm
-
-  #https://bugzilla.gnome.org/show_bug.cgi?id=655517
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make -k check || :
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: appstream-glib/repos/extra-i686/PKGBUILD (from rev 260187, 
appstream-glib/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-02-23 12:42:17 UTC (rev 260188)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=appstream-glib
+pkgver=0.5.9
+pkgrel=1
+pkgdesc="Provides GObjects and helper methods to make it easy to read and 
write AppStream metadata"
+arch=('i686' 'x86_64')
+url="http://people.freedesktop.org/~hughsient/appstream-glib/;
+license=('LGPL')
+depends=('gtk3' 'libyaml' 'pacman' 'gcab')
+makedepends=('intltool')
+provides=('appdata-tools')
+conflicts=('appdata-tools')
+replaces=('appdata-tools')
+source=(http://people.freedesktop.org/~hughsient/appstream-glib/releases/$pkgname-$pkgver.tar.xz)
+md5sums=('e423da80b3bda1ecea02ea57dc459c41')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --enable-alpm
+
+  #https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make -k check || :
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-02-23 12:42:10 UTC (rev 260187)
+++ extra-x86_64/PKGBUILD   2016-02-23 12:42:17 UTC (rev 260188)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=appstream-glib
-pkgver=0.5.5
-pkgrel=2
-pkgdesc="Provides GObjects and helper methods to make it easy to read and 
write AppStream metadata"
-arch=('i686' 'x86_64')
-url="http://people.freedesktop.org/~hughsient/appstream-glib/;
-license=('LGPL')
-depends=('gtk3' 'libyaml' 'pacman' 'gcab')
-makedepends=('intltool')
-provides=('appdata-tools')
-conflicts=('appdata-tools')
-replaces=('appdata-tools')
-source=(http://people.freedesktop.org/~hughsient/appstream-glib/releases/$pkgname-$pkgver.tar.xz)
-md5sums=('acfe164c5f6cb8edecc6c99345a5d390')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --enable-alpm
-
-  #https://bugzilla.gnome.org/show_bug.cgi?id=655517
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make -k check || :
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: appstream-glib/repos/extra-x86_64/PKGBUILD (from rev 260187, 
appstream-glib/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-02-23 12:42:17 UTC (rev 260188)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=appstream-glib
+pkgver=0.5.9
+pkgrel=1
+pkgdesc="Provides GObjects and helper methods to make it easy to read and 
write AppStream metadata"
+arch=('i686' 'x86_64')
+url="http://people.freedesktop.org/~hughsient/appstream-glib/;

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

2016-02-23 Thread Jan de Groot
Date: Tuesday, February 23, 2016 @ 13:42:10
  Author: jgc
Revision: 260187

upgpkg: appstream-glib 0.5.9-1

Modified:
  appstream-glib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-23 12:39:28 UTC (rev 260186)
+++ PKGBUILD2016-02-23 12:42:10 UTC (rev 260187)
@@ -2,8 +2,8 @@
 # Maintainer: Jan de Groot 
 
 pkgname=appstream-glib
-pkgver=0.5.5
-pkgrel=2
+pkgver=0.5.9
+pkgrel=1
 pkgdesc="Provides GObjects and helper methods to make it easy to read and 
write AppStream metadata"
 arch=('i686' 'x86_64')
 url="http://people.freedesktop.org/~hughsient/appstream-glib/;
@@ -14,7 +14,7 @@
 conflicts=('appdata-tools')
 replaces=('appdata-tools')
 
source=(http://people.freedesktop.org/~hughsient/appstream-glib/releases/$pkgname-$pkgver.tar.xz)
-md5sums=('acfe164c5f6cb8edecc6c99345a5d390')
+md5sums=('e423da80b3bda1ecea02ea57dc459c41')
 
 build() {
   cd $pkgname-$pkgver


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

2016-02-23 Thread Jan Steffens
Date: Tuesday, February 23, 2016 @ 13:40:08
  Author: heftig
Revision: 163218

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

Added:
  mediastreamer/repos/community-testing-i686/PKGBUILD
(from rev 163217, mediastreamer/trunk/PKGBUILD)
  mediastreamer/repos/community-testing-x86_64/PKGBUILD
(from rev 163217, mediastreamer/trunk/PKGBUILD)
Deleted:
  mediastreamer/repos/community-testing-i686/PKGBUILD
  mediastreamer/repos/community-testing-x86_64/PKGBUILD

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

Deleted: community-testing-i686/PKGBUILD
===
--- community-testing-i686/PKGBUILD 2016-02-23 12:20:11 UTC (rev 163217)
+++ community-testing-i686/PKGBUILD 2016-02-23 12:40:08 UTC (rev 163218)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: Andrea Scarpino 
-# Contributor: Sergej Pupykin 
-# Contributor: Adrià Arrufat 
-# Contributor: Mark Lee 
-
-pkgname=mediastreamer
-pkgver=2.12.1
-pkgrel=3
-pkgdesc="A library written in C that allows you to create and run audio and 
video streams"
-arch=('i686' 'x86_64')
-url="http://www.linphone.org/;
-license=('GPL')
-depends=('ortp' 'ffmpeg' 'libxv' 'libupnp' 'bzrtp' 'glew' 'libsrtp' 'mbedtls')
-# xxd from Vim is needed to build
-makedepends=('intltool' 'vim')
-source=("http://download-mirror.savannah.gnu.org/releases/linphone/${pkgname}/${pkgname}-${pkgver}.tar.gz"{,.sig})
-validpgpkeys=('9774BC1725758EB16D639F8B3ECD52DEE2F56985')
-md5sums=('1ca115e94a718638fbecf8352c169861'
- 'SKIP')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr \
---enable-glx --enable-xv --enable-zrtp --enable-external-ortp \
---disable-strict
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="${pkgdir}" install
-}

Copied: mediastreamer/repos/community-testing-i686/PKGBUILD (from rev 163217, 
mediastreamer/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2016-02-23 12:40:08 UTC (rev 163218)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer:
+# Contributor: Andrea Scarpino 
+# Contributor: Sergej Pupykin 
+# Contributor: Adrià Arrufat 
+# Contributor: Mark Lee 
+
+pkgname=mediastreamer
+pkgver=2.12.1
+pkgrel=4
+pkgdesc="A library written in C that allows you to create and run audio and 
video streams"
+arch=('i686' 'x86_64')
+url="http://www.linphone.org/;
+license=('GPL')
+depends=('ortp' 'ffmpeg' 'libxv' 'libupnp' 'bzrtp' 'glew' 'libsrtp' 'mbedtls')
+# xxd from Vim is needed to build
+makedepends=('intltool' 'vim')
+source=("http://download-mirror.savannah.gnu.org/releases/linphone/${pkgname}/${pkgname}-${pkgver}.tar.gz"{,.sig})
+validpgpkeys=('9774BC1725758EB16D639F8B3ECD52DEE2F56985')
+md5sums=('1ca115e94a718638fbecf8352c169861'
+ 'SKIP')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr \
+--enable-glx --enable-xv --enable-zrtp --enable-external-ortp \
+--disable-strict
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="${pkgdir}" install
+}

Deleted: community-testing-x86_64/PKGBUILD
===
--- community-testing-x86_64/PKGBUILD   2016-02-23 12:20:11 UTC (rev 163217)
+++ community-testing-x86_64/PKGBUILD   2016-02-23 12:40:08 UTC (rev 163218)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: Andrea Scarpino 
-# Contributor: Sergej Pupykin 
-# Contributor: Adrià Arrufat 
-# Contributor: Mark Lee 
-
-pkgname=mediastreamer
-pkgver=2.12.1
-pkgrel=3
-pkgdesc="A library written in C that allows you to create and run audio and 
video streams"
-arch=('i686' 'x86_64')
-url="http://www.linphone.org/;
-license=('GPL')
-depends=('ortp' 'ffmpeg' 'libxv' 'libupnp' 'bzrtp' 'glew' 'libsrtp' 'mbedtls')
-# xxd from Vim is needed to build
-makedepends=('intltool' 'vim')
-source=("http://download-mirror.savannah.gnu.org/releases/linphone/${pkgname}/${pkgname}-${pkgver}.tar.gz"{,.sig})
-validpgpkeys=('9774BC1725758EB16D639F8B3ECD52DEE2F56985')
-md5sums=('1ca115e94a718638fbecf8352c169861'
- 'SKIP')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr \
---enable-glx --enable-xv --enable-zrtp --enable-external-ortp \
---disable-strict
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="${pkgdir}" install
-}

Copied: 

[arch-commits] Commit in gst-plugins-bad/repos (4 files)

2016-02-23 Thread Jan Steffens
Date: Tuesday, February 23, 2016 @ 13:39:28
  Author: heftig
Revision: 260186

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

Added:
  gst-plugins-bad/repos/testing-i686/PKGBUILD
(from rev 260185, gst-plugins-bad/trunk/PKGBUILD)
  gst-plugins-bad/repos/testing-x86_64/PKGBUILD
(from rev 260185, gst-plugins-bad/trunk/PKGBUILD)
Deleted:
  gst-plugins-bad/repos/testing-i686/PKGBUILD
  gst-plugins-bad/repos/testing-x86_64/PKGBUILD

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

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2016-02-23 12:38:49 UTC (rev 260185)
+++ testing-i686/PKGBUILD   2016-02-23 12:39:28 UTC (rev 260186)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=gst-plugins-bad
-pkgver=1.6.3
-pkgrel=4
-pkgdesc="GStreamer Multimedia Framework Bad Plugins"
-arch=('i686' 'x86_64')
-license=('LGPL')
-url="http://gstreamer.freedesktop.org/;
-depends=('mjpegtools' 'gst-plugins-base-libs' 'curl' 'chromaprint' 'libmms' 
'faad2' 'mpg123' 'faac' 'celt' 'libdca'
- 'soundtouch' 'spandsp' 'libdvdnav' 'libmodplug' 'libgme' 'opus' 
'wayland' 'neon' 'libofa' 'fluidsynth'
- 'openjpeg' 'libwebp' 'libsrtp' 'gnutls' 'wildmidi' 'glu' 'sbc' 
'rtmpdump' 'libgudev' 'graphene')
-makedepends=('schroedinger' 'libexif' 'libdvdread' 'libvdpau' 'libmpeg2' 
'python' 'valgrind' 'wildmidi' 'librsvg'
- 'gobject-introspection' 'gtk-doc' 'gtk3' 'clutter' 'opencv' 
'libtiger' 'ladspa' 'openal' 'libusb'
- 'qt5-declarative' 'qt5-x11extras' 'qt5-wayland')
-options=(!emptydirs)
-source=(${url}/src/$pkgname/$pkgname-$pkgver.tar.xz)
-sha256sums=('971b29101d6a9c5e3fe94d99d977a227f58f0b2d29b6ca2c7f292052542b3a61')
-
-prepare() {
-  cd $pkgname-$pkgver
-  autoreconf -vi
-}
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---disable-static --enable-experimental --enable-gtk-doc \
---with-package-name="GStreamer Bad Plugins (Arch Linux)" \
---with-package-origin="http://www.archlinux.org/; \
---with-gtk=3.0
-
-  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  # don't have a camera for the camerabin test
-  make -k check || :
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="${pkgdir}" install
-}

Copied: gst-plugins-bad/repos/testing-i686/PKGBUILD (from rev 260185, 
gst-plugins-bad/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-02-23 12:39:28 UTC (rev 260186)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=gst-plugins-bad
+pkgver=1.6.3
+pkgrel=5
+pkgdesc="GStreamer Multimedia Framework Bad Plugins"
+arch=('i686' 'x86_64')
+license=('LGPL')
+url="http://gstreamer.freedesktop.org/;
+depends=('mjpegtools' 'gst-plugins-base-libs' 'curl' 'chromaprint' 'libmms' 
'faad2' 'mpg123' 'faac' 'celt' 'libdca'
+ 'soundtouch' 'spandsp' 'libdvdnav' 'libmodplug' 'libgme' 'opus' 
'wayland' 'neon' 'libofa' 'fluidsynth'
+ 'openjpeg' 'libwebp' 'libsrtp' 'gnutls' 'wildmidi' 'glu' 'sbc' 
'rtmpdump' 'libgudev' 'graphene')
+makedepends=('schroedinger' 'libexif' 'libdvdread' 'libvdpau' 'libmpeg2' 
'python' 'valgrind' 'wildmidi' 'librsvg'
+ 'gobject-introspection' 'gtk-doc' 'gtk3' 'clutter' 'opencv' 
'libtiger' 'ladspa' 'openal' 'libusb'
+ 'qt5-declarative' 'qt5-x11extras' 'qt5-wayland')
+options=(!emptydirs)
+source=(${url}/src/$pkgname/$pkgname-$pkgver.tar.xz)
+sha256sums=('971b29101d6a9c5e3fe94d99d977a227f58f0b2d29b6ca2c7f292052542b3a61')
+
+prepare() {
+  cd $pkgname-$pkgver
+  autoreconf -vi
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--disable-static --enable-experimental --enable-gtk-doc \
+--with-package-name="GStreamer Bad Plugins (Arch Linux)" \
+--with-package-origin="http://www.archlinux.org/; \
+--with-gtk=3.0
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  # don't have a camera for the camerabin test
+  make -k check || :
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="${pkgdir}" install
+}

Deleted: testing-x86_64/PKGBUILD
===
--- testing-x86_64/PKGBUILD 2016-02-23 12:38:49 UTC (rev 260185)
+++ testing-x86_64/PKGBUILD 2016-02-23 12:39:28 UTC (rev 260186)
@@ -1,50 +0,0 

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

2016-02-23 Thread Jan Steffens
Date: Tuesday, February 23, 2016 @ 13:38:49
  Author: heftig
Revision: 260185

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

Added:
  libsrtp/repos/testing-i686/
  libsrtp/repos/testing-i686/PKGBUILD
(from rev 260184, libsrtp/trunk/PKGBUILD)
  libsrtp/repos/testing-x86_64/
  libsrtp/repos/testing-x86_64/PKGBUILD
(from rev 260184, libsrtp/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   35 +++
 testing-x86_64/PKGBUILD |   35 +++
 2 files changed, 70 insertions(+)

Copied: libsrtp/repos/testing-i686/PKGBUILD (from rev 260184, 
libsrtp/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-02-23 12:38:49 UTC (rev 260185)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Sergej Pupykin 
+# Contributor: Yejun Yang 
+# Contributor: Michal Krenek 
+
+pkgname=libsrtp
+pkgver=1.5.4
+pkgrel=1
+epoch=1
+pkgdesc="Library for SRTP (Secure Realtime Transport Protocol)"
+url="https://github.com/cisco/libsrtp;
+arch=(i686 x86_64)
+license=(BSD)
+depends=(glibc)
+options=(staticlibs)
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha256sums=('56a7b521c25134f48faff26b0b1e3d4378a14986a2d3d7bc6fefb48987304ff0')
+
+prepare() {
+  cd $pkgname-$pkgver
+  autoreconf -fvi
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make libsrtp.a shared_library
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm0644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}

Copied: libsrtp/repos/testing-x86_64/PKGBUILD (from rev 260184, 
libsrtp/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-02-23 12:38:49 UTC (rev 260185)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Sergej Pupykin 
+# Contributor: Yejun Yang 
+# Contributor: Michal Krenek 
+
+pkgname=libsrtp
+pkgver=1.5.4
+pkgrel=1
+epoch=1
+pkgdesc="Library for SRTP (Secure Realtime Transport Protocol)"
+url="https://github.com/cisco/libsrtp;
+arch=(i686 x86_64)
+license=(BSD)
+depends=(glibc)
+options=(staticlibs)
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha256sums=('56a7b521c25134f48faff26b0b1e3d4378a14986a2d3d7bc6fefb48987304ff0')
+
+prepare() {
+  cd $pkgname-$pkgver
+  autoreconf -fvi
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make libsrtp.a shared_library
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm0644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}


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

2016-02-23 Thread Jan de Groot
Date: Tuesday, February 23, 2016 @ 13:29:29
  Author: jgc
Revision: 260184

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

Added:
  glib2/repos/testing-i686/
  glib2/repos/testing-i686/PKGBUILD
(from rev 260183, glib2/trunk/PKGBUILD)
  glib2/repos/testing-i686/glib2.install
(from rev 260183, glib2/trunk/glib2.install)
  glib2/repos/testing-i686/memleak.patch
(from rev 260183, glib2/trunk/memleak.patch)
  glib2/repos/testing-i686/revert-warn-glib-compile-schemas.patch
(from rev 260183, glib2/trunk/revert-warn-glib-compile-schemas.patch)
  glib2/repos/testing-x86_64/
  glib2/repos/testing-x86_64/PKGBUILD
(from rev 260183, glib2/trunk/PKGBUILD)
  glib2/repos/testing-x86_64/glib2.install
(from rev 260183, glib2/trunk/glib2.install)
  glib2/repos/testing-x86_64/memleak.patch
(from rev 260183, glib2/trunk/memleak.patch)
  glib2/repos/testing-x86_64/revert-warn-glib-compile-schemas.patch
(from rev 260183, glib2/trunk/revert-warn-glib-compile-schemas.patch)

---+
 testing-i686/PKGBUILD |   70 
 testing-i686/glib2.install|   13 ++
 testing-i686/memleak.patch|   25 +
 testing-i686/revert-warn-glib-compile-schemas.patch   |   33 +++
 testing-x86_64/PKGBUILD   |   70 
 testing-x86_64/glib2.install  |   13 ++
 testing-x86_64/memleak.patch  |   25 +
 testing-x86_64/revert-warn-glib-compile-schemas.patch |   33 +++
 8 files changed, 282 insertions(+)

Copied: glib2/repos/testing-i686/PKGBUILD (from rev 260183, 
glib2/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-02-23 12:29:29 UTC (rev 260184)
@@ -0,0 +1,70 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgbase=glib2
+pkgname=(glib2 glib2-docs)
+pkgver=2.46.2
+pkgrel=3
+pkgdesc="Common C routines used by GTK+ and other libs"
+url="http://www.gtk.org/;
+arch=(i686 x86_64)
+makedepends=('pkg-config' 'python2' 'libxslt' 'docbook-xml' 'pcre' 'libffi' 
'libelf')
+source=(http://ftp.gnome.org/pub/GNOME/sources/glib/${pkgver:0:4}/glib-$pkgver.tar.xz
+revert-warn-glib-compile-schemas.patch memleak.patch)
+sha256sums=('5031722e37036719c1a09163cc6cf7c326e4c4f1f1e074b433c156862bd733db'
+'049240975cd2f1c88fbe7deb28af14d4ec7d2640495f7ca8980d873bb710cc97'
+'8337eeba4a32133d41575c8338fca32ac6a867e6e4a4e021355fcdeb606420a6')
+
+prepare() {
+  cd glib-$pkgver
+  patch -Rp1 -i ../revert-warn-glib-compile-schemas.patch
+  patch -Np1 -i ../memleak.patch
+}
+  
+build() {
+  cd glib-$pkgver
+  PYTHON=/usr/bin/python2 ./configure --prefix=/usr --libdir=/usr/lib \
+  --sysconfdir=/etc \
+  --with-pcre=system \
+  --disable-fam
+  make
+}
+
+check() {
+  cd glib-$pkgver
+  #make -k check || :
+}
+
+package_glib2() {
+  depends=('pcre' 'libffi')
+  optdepends=('python2: for gdbus-codegen and gtester-report'
+  'libelf: gresource inspection tool')
+  options=('!docs' '!emptydirs')
+  license=('LGPL')
+  install=glib2.install
+
+  cd glib-$pkgver
+  make completiondir=/usr/share/bash-completion/completions DESTDIR="$pkgdir" 
install
+
+  for _i in "$pkgdir/usr/share/bash-completion/completions/"*; do
+  chmod -x "$_i"
+  done
+
+  # Our gdb does not ship the required python modules, so remove it
+  rm -rf "$pkgdir/usr/share/gdb/"
+}
+
+package_glib2-docs() {
+  pkgdesc="Documentation for glib2"
+  conflicts=('gobject2-docs')
+  replaces=('gobject2-docs')
+  license=('custom')
+  options=('docs' '!emptydirs')
+  
+  cd glib-$pkgver/docs
+  make DESTDIR="${pkgdir}" install
+  install -m755 -d "${pkgdir}/usr/share/licenses/glib2-docs"
+  install -m644 reference/COPYING "${pkgdir}/usr/share/licenses/glib2-docs/"
+
+  rm -rf "${pkgdir}/usr/share/man"
+}

Copied: glib2/repos/testing-i686/glib2.install (from rev 260183, 
glib2/trunk/glib2.install)
===
--- testing-i686/glib2.install  (rev 0)
+++ testing-i686/glib2.install  2016-02-23 12:29:29 UTC (rev 260184)
@@ -0,0 +1,13 @@
+post_install() {
+glib-compile-schemas /usr/share/glib-2.0/schemas
+}
+
+post_upgrade() {
+glib-compile-schemas /usr/share/glib-2.0/schemas
+}
+
+pre_remove() {
+if [ -f /usr/share/glib-2.0/schemas/gschemas.compiled ]; then
+rm /usr/share/glib-2.0/schemas/gschemas.compiled
+fi
+}

Copied: glib2/repos/testing-i686/memleak.patch (from rev 260183, 
glib2/trunk/memleak.patch)
===
--- testing-i686/memleak.patch  (rev 0)
+++ testing-i686/memleak.patch  2016-02-23 12:29:29 UTC (rev 260184)
@@ -0,0 +1,25 @@
+From 

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

2016-02-23 Thread Jan de Groot
Date: Tuesday, February 23, 2016 @ 13:29:22
  Author: jgc
Revision: 260183

upgpkg: glib2 2.46.2-3

(re)compile schemas on install/upgrade, remove on uninstall (FS#48304)

Added:
  glib2/trunk/glib2.install
Modified:
  glib2/trunk/PKGBUILD

---+
 PKGBUILD  |3 ++-
 glib2.install |   13 +
 2 files changed, 15 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-02-23 12:20:33 UTC (rev 260182)
+++ PKGBUILD2016-02-23 12:29:22 UTC (rev 260183)
@@ -4,7 +4,7 @@
 pkgbase=glib2
 pkgname=(glib2 glib2-docs)
 pkgver=2.46.2
-pkgrel=2
+pkgrel=3
 pkgdesc="Common C routines used by GTK+ and other libs"
 url="http://www.gtk.org/;
 arch=(i686 x86_64)
@@ -41,6 +41,7 @@
   'libelf: gresource inspection tool')
   options=('!docs' '!emptydirs')
   license=('LGPL')
+  install=glib2.install
 
   cd glib-$pkgver
   make completiondir=/usr/share/bash-completion/completions DESTDIR="$pkgdir" 
install

Added: glib2.install
===
--- glib2.install   (rev 0)
+++ glib2.install   2016-02-23 12:29:22 UTC (rev 260183)
@@ -0,0 +1,13 @@
+post_install() {
+glib-compile-schemas /usr/share/glib-2.0/schemas
+}
+
+post_upgrade() {
+glib-compile-schemas /usr/share/glib-2.0/schemas
+}
+
+pre_remove() {
+if [ -f /usr/share/glib-2.0/schemas/gschemas.compiled ]; then
+rm /usr/share/glib-2.0/schemas/gschemas.compiled
+fi
+}


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

2016-02-23 Thread Jan Steffens
Date: Tuesday, February 23, 2016 @ 13:20:33
  Author: heftig
Revision: 260182

1.5.4 (2.0.0 is API-incompatible)

Modified:
  libsrtp/trunk/PKGBUILD
Deleted:
  libsrtp/trunk/7713d5706524f9f1ee94fd6b55125357e63656d5.patch

+
 7713d5706524f9f1ee94fd6b55125357e63656d5.patch |  116 ---
 PKGBUILD   |   43 +++-
 2 files changed, 18 insertions(+), 141 deletions(-)

Deleted: 7713d5706524f9f1ee94fd6b55125357e63656d5.patch
===
--- 7713d5706524f9f1ee94fd6b55125357e63656d5.patch  2016-02-23 12:20:02 UTC 
(rev 260181)
+++ 7713d5706524f9f1ee94fd6b55125357e63656d5.patch  2016-02-23 12:20:33 UTC 
(rev 260182)
@@ -1,116 +0,0 @@
-From 8884f4d8eb4ca7122dfcbd640b933b98ef4bab80 Mon Sep 17 00:00:00 2001
-From: jfigus 
-Date: Thu, 30 May 2013 12:36:07 -0400
-Subject: [PATCH 1/3] Remove double-invocations to prevent buffer-overflow
- vulnerability.
-

- srtp/srtp.c | 5 -
- 1 file changed, 5 deletions(-)
-
-diff --git a/srtp/srtp.c b/srtp/srtp.c
-index 839c1ee..41e263c 100644
 a/srtp/srtp.c
-+++ b/srtp/srtp.c
-@@ -2063,23 +2063,18 @@ static inline int base_key_length(const cipher_type_t 
*cipher, int key_length)
-   switch(profile) {
-   case srtp_profile_aes128_cm_sha1_80:
- crypto_policy_set_aes_cm_128_hmac_sha1_80(policy);
--crypto_policy_set_aes_cm_128_hmac_sha1_80(policy);
- break;
-   case srtp_profile_aes128_cm_sha1_32:
- crypto_policy_set_aes_cm_128_hmac_sha1_32(policy);
--crypto_policy_set_aes_cm_128_hmac_sha1_80(policy);
- break;
-   case srtp_profile_null_sha1_80:
- crypto_policy_set_null_cipher_hmac_sha1_80(policy);
--crypto_policy_set_null_cipher_hmac_sha1_80(policy);
- break;
-   case srtp_profile_aes256_cm_sha1_80:
- crypto_policy_set_aes_cm_256_hmac_sha1_80(policy);
--crypto_policy_set_aes_cm_256_hmac_sha1_80(policy);
- break;
-   case srtp_profile_aes256_cm_sha1_32:
- crypto_policy_set_aes_cm_256_hmac_sha1_32(policy);
--crypto_policy_set_aes_cm_256_hmac_sha1_80(policy);
- break;
- /* the following profiles are not (yet) supported */
-   case srtp_profile_null_sha1_32:
--- 
-1.8.5.1
-
-
-From 8e47faf0f5b90672c7ebf2f0cf0562ee81a8b621 Mon Sep 17 00:00:00 2001
-From: jfigus 
-Date: Thu, 30 May 2013 13:36:33 -0400
-Subject: [PATCH 2/3] Fix 32-bit tag policies to use correct profile.
-

- srtp/srtp.c | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/srtp/srtp.c b/srtp/srtp.c
-index 41e263c..95c1ab4 100644
 a/srtp/srtp.c
-+++ b/srtp/srtp.c
-@@ -2095,7 +2095,7 @@ static inline int base_key_length(const cipher_type_t 
*cipher, int key_length)
- crypto_policy_set_aes_cm_128_hmac_sha1_80(policy);
- break;
-   case srtp_profile_aes128_cm_sha1_32:
--crypto_policy_set_aes_cm_128_hmac_sha1_80(policy);
-+crypto_policy_set_aes_cm_128_hmac_sha1_32(policy);
- break;
-   case srtp_profile_null_sha1_80:
- crypto_policy_set_null_cipher_hmac_sha1_80(policy);
-@@ -2104,7 +2104,7 @@ static inline int base_key_length(const cipher_type_t 
*cipher, int key_length)
- crypto_policy_set_aes_cm_256_hmac_sha1_80(policy);
- break;
-   case srtp_profile_aes256_cm_sha1_32:
--crypto_policy_set_aes_cm_256_hmac_sha1_80(policy);
-+crypto_policy_set_aes_cm_256_hmac_sha1_32(policy);
- break;
- /* the following profiles are not (yet) supported */
-   case srtp_profile_null_sha1_32:
--- 
-1.8.5.1
-
-
-From 0acbb039c12b790621839facf56bfedbd071b74d Mon Sep 17 00:00:00 2001
-From: jfigus 
-Date: Thu, 30 May 2013 16:47:02 -0400
-Subject: [PATCH 3/3] Undo the changes to the RTCP profile helper function. 
- The prior commit was not compliant with RFC 3711.
-

- srtp/srtp.c | 8 ++--
- 1 file changed, 6 insertions(+), 2 deletions(-)
-
-diff --git a/srtp/srtp.c b/srtp/srtp.c
-index 95c1ab4..7fd19e6 100644
 a/srtp/srtp.c
-+++ b/srtp/srtp.c
-@@ -2095,7 +2095,9 @@ static inline int base_key_length(const cipher_type_t 
*cipher, int key_length)
- crypto_policy_set_aes_cm_128_hmac_sha1_80(policy);
- break;
-   case srtp_profile_aes128_cm_sha1_32:
--crypto_policy_set_aes_cm_128_hmac_sha1_32(policy);
-+/* We do not honor the 32-bit auth tag request since
-+ * this is not compliant with RFC 3711 */
-+crypto_policy_set_aes_cm_128_hmac_sha1_80(policy);
- break;
-   case srtp_profile_null_sha1_80:
- crypto_policy_set_null_cipher_hmac_sha1_80(policy);
-@@ -2104,7 +2106,9 @@ static inline int base_key_length(const cipher_type_t 
*cipher, int key_length)
- crypto_policy_set_aes_cm_256_hmac_sha1_80(policy);
- break;
-   case srtp_profile_aes256_cm_sha1_32:
--crypto_policy_set_aes_cm_256_hmac_sha1_32(policy);
-+/* We do not honor the 32-bit auth tag request since
-+ * this is not compliant with RFC 3711 */
-+

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

2016-02-23 Thread Jan Steffens
Date: Tuesday, February 23, 2016 @ 13:20:11
  Author: heftig
Revision: 163217

libsrtp rebuild

Modified:
  mediastreamer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-23 11:46:49 UTC (rev 163216)
+++ PKGBUILD2016-02-23 12:20:11 UTC (rev 163217)
@@ -7,7 +7,7 @@
 
 pkgname=mediastreamer
 pkgver=2.12.1
-pkgrel=3
+pkgrel=4
 pkgdesc="A library written in C that allows you to create and run audio and 
video streams"
 arch=('i686' 'x86_64')
 url="http://www.linphone.org/;


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

2016-02-23 Thread Jan Steffens
Date: Tuesday, February 23, 2016 @ 13:20:02
  Author: heftig
Revision: 260181

libsrtp rebuild

Modified:
  gst-plugins-bad/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-23 12:18:50 UTC (rev 260180)
+++ PKGBUILD2016-02-23 12:20:02 UTC (rev 260181)
@@ -3,7 +3,7 @@
 
 pkgname=gst-plugins-bad
 pkgver=1.6.3
-pkgrel=4
+pkgrel=5
 pkgdesc="GStreamer Multimedia Framework Bad Plugins"
 arch=('i686' 'x86_64')
 license=('LGPL')


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

2016-02-23 Thread Jan de Groot
Date: Tuesday, February 23, 2016 @ 13:18:42
  Author: jgc
Revision: 260179

upgpkg: gnumeric 1.12.27-1

Modified:
  gnumeric/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-23 11:45:44 UTC (rev 260178)
+++ PKGBUILD2016-02-23 12:18:42 UTC (rev 260179)
@@ -3,7 +3,7 @@
 # Contributor: Kritoke 
 
 pkgname=gnumeric
-pkgver=1.12.26
+pkgver=1.12.27
 pkgrel=1
 pkgdesc="A GNOME Spreadsheet Program"
 arch=('i686' 'x86_64')
@@ -19,7 +19,7 @@
 install=gnumeric.install
 
source=(https://download.gnome.org/sources/${pkgname}/${pkgver:0:4}/${pkgname}-${pkgver}.tar.xz
 revert-warnings.patch)
-sha256sums=('48250718133e998f7b2e73f71be970542e46c9096afb936dbcb152cf5394ee14'
+sha256sums=('383a5b6eca17f0a5a0b552edcc10320fa719d10c69c7b6fb29d5a11808f1d1c9'
 'bcafca016b809000c2a5bf911e2e3dfa4de28f9e541d9964574cac5c7ce09e53')
 
 prepare() {


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

2016-02-23 Thread Jan de Groot
Date: Tuesday, February 23, 2016 @ 13:18:50
  Author: jgc
Revision: 260180

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

Added:
  gnumeric/repos/extra-i686/PKGBUILD
(from rev 260179, gnumeric/trunk/PKGBUILD)
  gnumeric/repos/extra-i686/gnumeric.install
(from rev 260179, gnumeric/trunk/gnumeric.install)
  gnumeric/repos/extra-i686/revert-warnings.patch
(from rev 260179, gnumeric/trunk/revert-warnings.patch)
  gnumeric/repos/extra-x86_64/PKGBUILD
(from rev 260179, gnumeric/trunk/PKGBUILD)
  gnumeric/repos/extra-x86_64/gnumeric.install
(from rev 260179, gnumeric/trunk/gnumeric.install)
  gnumeric/repos/extra-x86_64/revert-warnings.patch
(from rev 260179, gnumeric/trunk/revert-warnings.patch)
Deleted:
  gnumeric/repos/extra-i686/PKGBUILD
  gnumeric/repos/extra-i686/gnumeric.install
  gnumeric/repos/extra-i686/revert-warnings.patch
  gnumeric/repos/extra-x86_64/PKGBUILD
  gnumeric/repos/extra-x86_64/gnumeric.install
  gnumeric/repos/extra-x86_64/revert-warnings.patch

+
 /PKGBUILD  |   96 +++
 /gnumeric.install  |   38 +
 /revert-warnings.patch |   22 
 extra-i686/PKGBUILD|   48 -
 extra-i686/gnumeric.install|   19 --
 extra-i686/revert-warnings.patch   |   11 
 extra-x86_64/PKGBUILD  |   48 -
 extra-x86_64/gnumeric.install  |   19 --
 extra-x86_64/revert-warnings.patch |   11 
 9 files changed, 156 insertions(+), 156 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-02-23 12:18:42 UTC (rev 260179)
+++ extra-i686/PKGBUILD 2016-02-23 12:18:50 UTC (rev 260180)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer: Eric Belanger 
-# Contributor: Kritoke 
-
-pkgname=gnumeric
-pkgver=1.12.26
-pkgrel=1
-pkgdesc="A GNOME Spreadsheet Program"
-arch=('i686' 'x86_64')
-url="http://www.gnome.org/projects/gnumeric/;
-license=('GPL')
-depends=('goffice' 'desktop-file-utils')
-makedepends=('intltool' 'psiconv' 'pygobject-devel'
- 'gobject-introspection' 'rarian')
-optdepends=('python2-gobject: for python plugin support'
-'perl: for perl plugin support'
-'psiconv: for Psion 5 file support'
-'yelp: for viewing the help manual')
-install=gnumeric.install
-source=(https://download.gnome.org/sources/${pkgname}/${pkgver:0:4}/${pkgname}-${pkgver}.tar.xz
-revert-warnings.patch)
-sha256sums=('48250718133e998f7b2e73f71be970542e46c9096afb936dbcb152cf5394ee14'
-'bcafca016b809000c2a5bf911e2e3dfa4de28f9e541d9964574cac5c7ce09e53')
-
-prepare() {
-  cd $pkgname-$pkgver
-
-  patch -Np0 -i ../revert-warnings.patch
-
-  # Remove invalid mime type. (FS#26338)
-  sed -i -e 's/zz-application\/zz-winassoc-xls;//' gnumeric.desktop.in
-
-  autoreconf -fi
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---disable-schemas-compile --enable-introspection
-
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="${pkgdir}" install
-}

Copied: gnumeric/repos/extra-i686/PKGBUILD (from rev 260179, 
gnumeric/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-02-23 12:18:50 UTC (rev 260180)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Eric Belanger 
+# Contributor: Kritoke 
+
+pkgname=gnumeric
+pkgver=1.12.27
+pkgrel=1
+pkgdesc="A GNOME Spreadsheet Program"
+arch=('i686' 'x86_64')
+url="http://www.gnome.org/projects/gnumeric/;
+license=('GPL')
+depends=('goffice' 'desktop-file-utils')
+makedepends=('intltool' 'psiconv' 'pygobject-devel'
+ 'gobject-introspection' 'rarian')
+optdepends=('python2-gobject: for python plugin support'
+'perl: for perl plugin support'
+'psiconv: for Psion 5 file support'
+'yelp: for viewing the help manual')
+install=gnumeric.install
+source=(https://download.gnome.org/sources/${pkgname}/${pkgver:0:4}/${pkgname}-${pkgver}.tar.xz
+revert-warnings.patch)
+sha256sums=('383a5b6eca17f0a5a0b552edcc10320fa719d10c69c7b6fb29d5a11808f1d1c9'
+'bcafca016b809000c2a5bf911e2e3dfa4de28f9e541d9964574cac5c7ce09e53')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  patch -Np0 -i ../revert-warnings.patch
+
+  # Remove invalid mime type. (FS#26338)
+  sed -i -e 's/zz-application\/zz-winassoc-xls;//' gnumeric.desktop.in
+
+  autoreconf -fi
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--disable-schemas-compile --enable-introspection
+
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make

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

2016-02-23 Thread Felix Yan
Date: Tuesday, February 23, 2016 @ 12:46:49
  Author: fyan
Revision: 163216

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

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

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

Copied: haskell-yesod-form/repos/community-staging-i686/PKGBUILD (from rev 
163215, haskell-yesod-form/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-02-23 11:46:49 UTC (rev 163216)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-form
+pkgname=haskell-yesod-form
+pkgver=1.4.6
+pkgrel=19
+pkgdesc="Form handling support for Yesod Web Framework"
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-aeson" "haskell-attoparsec" 
"haskell-blaze-builder"
+ "haskell-blaze-html" "haskell-blaze-markup" "haskell-byteable"
+ "haskell-data-default" "haskell-email-validate" "haskell-network-uri"
+ "haskell-persistent" "haskell-resourcet" "haskell-semigroups"
+ "haskell-shakespeare" "haskell-text" "haskell-wai" 
"haskell-xss-sanitize"
+ "haskell-yesod-core" "haskell-yesod-persistent")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('1a20f58e0f06b92afc5bd31b5ab6b1d5c6645e2f7fd134c4b2e325d818b50e66')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-fnetwork-uri
+runhaskell Setup build
+LC_CTYPE=en_US.UTF-8 runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: 
haskell-yesod-form/repos/community-staging-i686/haskell-yesod-form.install 
(from rev 163215, haskell-yesod-form/trunk/haskell-yesod-form.install)
===
--- community-staging-i686/haskell-yesod-form.install   
(rev 0)
+++ community-staging-i686/haskell-yesod-form.install   2016-02-23 11:46:49 UTC 
(rev 163216)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-yesod-form
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-yesod-form/repos/community-staging-x86_64/PKGBUILD (from rev 
163215, haskell-yesod-form/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-02-23 11:46:49 UTC (rev 163216)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Felix Yan 

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

2016-02-23 Thread Felix Yan
Date: Tuesday, February 23, 2016 @ 12:45:45
  Author: fyan
Revision: 163215

upgpkg: haskell-yesod-form 1.4.6-19

rebuild with cryptohash-0.11.7, cryptonite-0.13, hjsmin-0.1.5.3, http2-1.5.0, 
warp-3.2.3

Modified:
  haskell-yesod-form/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-23 11:29:53 UTC (rev 163214)
+++ PKGBUILD2016-02-23 11:45:45 UTC (rev 163215)
@@ -5,7 +5,7 @@
 _hkgname=yesod-form
 pkgname=haskell-yesod-form
 pkgver=1.4.6
-pkgrel=18
+pkgrel=19
 pkgdesc="Form handling support for Yesod Web Framework"
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2016-02-23 Thread Jan de Groot
Date: Tuesday, February 23, 2016 @ 12:45:44
  Author: jgc
Revision: 260178

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

Added:
  libinput/repos/testing-i686/
  libinput/repos/testing-i686/PKGBUILD
(from rev 260177, libinput/trunk/PKGBUILD)
  libinput/repos/testing-i686/libinput.install
(from rev 260177, libinput/trunk/libinput.install)
  libinput/repos/testing-x86_64/
  libinput/repos/testing-x86_64/PKGBUILD
(from rev 260177, libinput/trunk/PKGBUILD)
  libinput/repos/testing-x86_64/libinput.install
(from rev 260177, libinput/trunk/libinput.install)

-+
 testing-i686/PKGBUILD   |   38 ++
 testing-i686/libinput.install   |   11 +++
 testing-x86_64/PKGBUILD |   38 ++
 testing-x86_64/libinput.install |   11 +++
 4 files changed, 98 insertions(+)

Copied: libinput/repos/testing-i686/PKGBUILD (from rev 260177, 
libinput/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-02-23 11:45:44 UTC (rev 260178)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Maintainer: Jan de Groot
+
+pkgname=libinput
+pkgver=1.2.0
+pkgrel=1
+pkgdesc="library that handles input devices for display servers and other 
applications that need to directly deal with input devices."
+arch=(i686 x86_64)
+url="http://www.freedesktop.org/wiki/Software/libinput/;
+license=(custom:X11)
+depends=('mtdev' 'systemd' 'libevdev' 'libwacom')
+checkdepends=('check')
+install=libinput.install
+options=('!libtool')
+source=(http://freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz{,.sig})
+sha256sums=('1754b917fe675507ea80445b4f2e91d76cb6a6935508fe37234807affb316e2c'
+'SKIP')
+validpgpkeys=('3C2C43D9447D5938EF4551EBE23B7E70B467F0BF') # Peter Hutterer 
(Who-T) 
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+# disabled for now:
+# https://github.com/libcheck/check/issues/18
+#  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}

Copied: libinput/repos/testing-i686/libinput.install (from rev 260177, 
libinput/trunk/libinput.install)
===
--- testing-i686/libinput.install   (rev 0)
+++ testing-i686/libinput.install   2016-02-23 11:45:44 UTC (rev 260178)
@@ -0,0 +1,11 @@
+post_install() {
+  udevadm hwdb --update >/dev/null 2>&1
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  post_install $1
+}

Copied: libinput/repos/testing-x86_64/PKGBUILD (from rev 260177, 
libinput/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-02-23 11:45:44 UTC (rev 260178)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Maintainer: Jan de Groot
+
+pkgname=libinput
+pkgver=1.2.0
+pkgrel=1
+pkgdesc="library that handles input devices for display servers and other 
applications that need to directly deal with input devices."
+arch=(i686 x86_64)
+url="http://www.freedesktop.org/wiki/Software/libinput/;
+license=(custom:X11)
+depends=('mtdev' 'systemd' 'libevdev' 'libwacom')
+checkdepends=('check')
+install=libinput.install
+options=('!libtool')
+source=(http://freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz{,.sig})
+sha256sums=('1754b917fe675507ea80445b4f2e91d76cb6a6935508fe37234807affb316e2c'
+'SKIP')
+validpgpkeys=('3C2C43D9447D5938EF4551EBE23B7E70B467F0BF') # Peter Hutterer 
(Who-T) 
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+# disabled for now:
+# https://github.com/libcheck/check/issues/18
+#  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}

Copied: libinput/repos/testing-x86_64/libinput.install (from rev 260177, 
libinput/trunk/libinput.install)
===
--- testing-x86_64/libinput.install (rev 0)
+++ testing-x86_64/libinput.install 2016-02-23 11:45:44 UTC (rev 260178)
@@ -0,0 +1,11 @@
+post_install() {
+  udevadm hwdb --update >/dev/null 2>&1
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  post_install $1
+}


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

2016-02-23 Thread Jan de Groot
Date: Tuesday, February 23, 2016 @ 12:45:38
  Author: jgc
Revision: 260177

upgpkg: libinput 1.2.0-1

Modified:
  libinput/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-23 11:35:35 UTC (rev 260176)
+++ PKGBUILD2016-02-23 11:45:38 UTC (rev 260177)
@@ -3,17 +3,18 @@
 # Maintainer: Jan de Groot
 
 pkgname=libinput
-pkgver=1.1.8
+pkgver=1.2.0
 pkgrel=1
 pkgdesc="library that handles input devices for display servers and other 
applications that need to directly deal with input devices."
 arch=(i686 x86_64)
 url="http://www.freedesktop.org/wiki/Software/libinput/;
 license=(custom:X11)
-depends=('mtdev' 'systemd' 'libevdev')
+depends=('mtdev' 'systemd' 'libevdev' 'libwacom')
+checkdepends=('check')
 install=libinput.install
 options=('!libtool')
 
source=(http://freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz{,.sig})
-sha256sums=('fe0c9639759c4e15e65df180aea6f90df8f84a6df5845980e5f791369df69747'
+sha256sums=('1754b917fe675507ea80445b4f2e91d76cb6a6935508fe37234807affb316e2c'
 'SKIP')
 validpgpkeys=('3C2C43D9447D5938EF4551EBE23B7E70B467F0BF') # Peter Hutterer 
(Who-T) 
 
@@ -25,7 +26,9 @@
 
 check() {
   cd $pkgname-$pkgver
-  make check
+# disabled for now:
+# https://github.com/libcheck/check/issues/18
+#  make check
 }
 
 package() {


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

2016-02-23 Thread Felix Yan
Date: Tuesday, February 23, 2016 @ 12:29:53
  Author: fyan
Revision: 163214

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

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

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

Copied: haskell-cryptohash-conduit/repos/community-staging-i686/PKGBUILD (from 
rev 163211, haskell-cryptohash-conduit/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-02-23 11:29:53 UTC (rev 163214)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=cryptohash-conduit
+pkgname=haskell-cryptohash-conduit
+pkgver=0.1.1
+pkgrel=14
+pkgdesc="cryptohash conduit"
+url="http://github.com/vincenthz/hs-cryptohash-conduit;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-conduit" "haskell-conduit-extra" 
"haskell-cryptohash"
+ "haskell-resourcet")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('ea516d898d3e34dae6be3e8bc59c9f61a61cb133dbfe84a84bb0ded4b4ce')
+
+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-cryptohash-conduit/repos/community-staging-i686/haskell-cryptohash-conduit.install
 (from rev 163211, 
haskell-cryptohash-conduit/trunk/haskell-cryptohash-conduit.install)
===
--- community-staging-i686/haskell-cryptohash-conduit.install   
(rev 0)
+++ community-staging-i686/haskell-cryptohash-conduit.install   2016-02-23 
11:29:53 UTC (rev 163214)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-cryptohash-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-cryptohash-conduit/repos/community-staging-x86_64/PKGBUILD 
(from rev 163213, haskell-cryptohash-conduit/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-02-23 11:29:53 UTC (rev 163214)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=cryptohash-conduit
+pkgname=haskell-cryptohash-conduit

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

2016-02-23 Thread Alexander Rødseth
Date: Tuesday, February 23, 2016 @ 12:27:53
  Author: arodseth
Revision: 163212

upgpkg: vim-seti 1.0-1

Modified:
  vim-seti/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-23 11:26:01 UTC (rev 163211)
+++ PKGBUILD2016-02-23 11:27:53 UTC (rev 163212)
@@ -7,7 +7,7 @@
 pkgdesc="Colorscheme based on Jesse Weed's Seti theme for the Atom editor"
 arch=('any')
 url='https://github.com/trusktr/seti.vim'
-license=('custom:unknown')
+license=('unknown')
 depends=('vim')
 
source=('seti.vim::https://raw.githubusercontent.com/trusktr/seti.vim/1825cc5000defac0e57f518e64fc50b79db02c1b/colors/seti.vim')
 md5sums=('ebf431562f010abcef9773bfe22c946f')


[arch-commits] Commit in vim-seti/repos/community-any (PKGBUILD seti.vim)

2016-02-23 Thread Alexander Rødseth
Date: Tuesday, February 23, 2016 @ 12:28:31
  Author: arodseth
Revision: 163213

archrelease: copy trunk to community-any

Added:
  vim-seti/repos/community-any/PKGBUILD
(from rev 163212, vim-seti/trunk/PKGBUILD)
  vim-seti/repos/community-any/seti.vim
(from rev 163212, vim-seti/trunk/seti.vim)

--+
 PKGBUILD |   20 ++
 seti.vim |  113 +
 2 files changed, 133 insertions(+)

Copied: vim-seti/repos/community-any/PKGBUILD (from rev 163212, 
vim-seti/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-02-23 11:28:31 UTC (rev 163213)
@@ -0,0 +1,20 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+
+pkgname=vim-seti
+pkgver=1.0
+pkgrel=1
+pkgdesc="Colorscheme based on Jesse Weed's Seti theme for the Atom editor"
+arch=('any')
+url='https://github.com/trusktr/seti.vim'
+license=('unknown')
+depends=('vim')
+source=('seti.vim::https://raw.githubusercontent.com/trusktr/seti.vim/1825cc5000defac0e57f518e64fc50b79db02c1b/colors/seti.vim')
+md5sums=('ebf431562f010abcef9773bfe22c946f')
+
+package() {
+  install -Dm644 seti.vim "$pkgdir/usr/share/vim/vimfiles/colors/seti.vim"
+}
+
+# getver: -u 2
+# vim:set ts=2 sw=2 et:

Copied: vim-seti/repos/community-any/seti.vim (from rev 163212, 
vim-seti/trunk/seti.vim)
===
--- seti.vim(rev 0)
+++ seti.vim2016-02-23 11:28:31 UTC (rev 163213)
@@ -0,0 +1,113 @@
+" Vim color file
+" Converted from Textmate theme Seti using Coloration v0.3.3 
(http://github.com/sickill/coloration)
+
+set background=dark
+highlight clear
+
+if exists("syntax_on")
+  syntax reset
+endif
+
+let g:colors_name = "seti"
+
+hi Cursor   ctermfg=16ctermbg=222   cterm=NONE 
 guifg=#151718   guibg=#ffe792   gui=NONE
+hi Visual   ctermfg=NONE  ctermbg=74cterm=NONE 
 guifg=NONE  guibg=#4fa5c7   gui=NONE
+hi CursorLine   ctermfg=NONE  ctermbg=235   cterm=NONE 
 guifg=NONE  guibg=#282a2b   gui=NONE
+hi CursorColumn ctermfg=NONE  ctermbg=235   cterm=NONE 
 guifg=NONE  guibg=#282a2b   gui=NONE
+hi ColorColumn  ctermfg=NONE  ctermbg=235   cterm=NONE 
 guifg=NONE  guibg=#282a2b   gui=NONE
+hi LineNr   ctermfg=243   ctermbg=235   cterm=NONE 
 guifg=#75   guibg=#282a2b   gui=NONE
+hi VertSplitctermfg=239   ctermbg=239   cterm=NONE 
 guifg=#4c4f4f   guibg=#4c4f4f   gui=NONE
+hi MatchParen   ctermfg=149   ctermbg=NONE  cterm=underline
 guifg=#9fca56   guibg=NONE  gui=underline
+hi StatusLine   ctermfg=188   ctermbg=239   cterm=bold 
 guifg=#d4d7d6   guibg=#4c4f4f   gui=bold
+hi StatusLineNC ctermfg=188   ctermbg=239   cterm=NONE 
 guifg=#d4d7d6   guibg=#4c4f4f   gui=NONE
+hi Pmenuctermfg=NONE  ctermbg=NONE  cterm=NONE 
 guifg=NONE  guibg=NONE  gui=NONE
+hi PmenuSel ctermfg=NONE  ctermbg=74cterm=NONE 
 guifg=NONE  guibg=#4fa5c7   gui=NONE
+hi IncSearchctermfg=16ctermbg=74cterm=NONE 
 guifg=#151718   guibg=#55b5db   gui=NONE
+hi Search   ctermfg=NONE  ctermbg=NONE  cterm=underline
 guifg=NONE  guibg=NONE  gui=underline
+hi Directoryctermfg=167   ctermbg=NONE  cterm=NONE 
 guifg=#cd3f45   guibg=NONE  gui=NONE
+hi Folded   ctermfg=59ctermbg=16cterm=NONE 
 guifg=#41535b   guibg=#151718   gui=NONE
+
+hi Normal   ctermfg=188   ctermbg=16cterm=NONE 
 guifg=#d4d7d6   guibg=#151718   gui=NONE
+hi Boolean  ctermfg=167   ctermbg=NONE  cterm=NONE 
 guifg=#cd3f45   guibg=NONE  gui=NONE
+hi Characterctermfg=167   ctermbg=NONE  cterm=NONE 
 guifg=#cd3f45   guibg=NONE  gui=NONE
+hi Comment  ctermfg=59ctermbg=NONE  cterm=NONE 
 guifg=#41535b   guibg=NONE  gui=NONE
+hi Conditional  ctermfg=149   ctermbg=NONE  cterm=NONE 
 guifg=#9fca56   guibg=NONE  gui=NONE
+hi Constant ctermfg=167   ctermbg=NONE  cterm=NONE 
 guifg=#cd3f45   guibg=NONE  gui=NONE
+hi Define   ctermfg=149   ctermbg=NONE  cterm=NONE 
 guifg=#9fca56   guibg=NONE  gui=NONE
+hi DiffAdd  ctermfg=188   ctermbg=64cterm=bold 
 guifg=#d4d7d6   guibg=#43800a   gui=bold
+hi DiffDelete   ctermfg=88ctermbg=NONE  cterm=NONE 
 guifg=#870505   guibg=NONE  gui=NONE
+hi DiffChange   ctermfg=188   ctermbg=23  

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

2016-02-23 Thread Felix Yan
Date: Tuesday, February 23, 2016 @ 12:26:01
  Author: fyan
Revision: 163211

upgpkg: haskell-cryptohash-conduit 0.1.1-14

rebuild with cryptohash-0.11.7, cryptonite-0.13, hjsmin-0.1.5.3, http2-1.5.0, 
warp-3.2.3

Modified:
  haskell-cryptohash-conduit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-23 11:25:03 UTC (rev 163210)
+++ PKGBUILD2016-02-23 11:26:01 UTC (rev 163211)
@@ -5,7 +5,7 @@
 _hkgname=cryptohash-conduit
 pkgname=haskell-cryptohash-conduit
 pkgver=0.1.1
-pkgrel=13
+pkgrel=14
 pkgdesc="cryptohash conduit"
 url="http://github.com/vincenthz/hs-cryptohash-conduit;
 license=("custom:BSD3")


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

2016-02-23 Thread Felix Yan
Date: Tuesday, February 23, 2016 @ 12:25:03
  Author: fyan
Revision: 163210

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

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

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

Copied: haskell-authenticate/repos/community-staging-i686/PKGBUILD (from rev 
163209, haskell-authenticate/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-02-23 11:25:03 UTC (rev 163210)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=authenticate
+pkgname=haskell-authenticate
+pkgver=1.3.3
+pkgrel=11
+pkgdesc="Authentication methods for Haskell web applications."
+url="http://github.com/yesodweb/authenticate;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-aeson" "haskell-attoparsec" 
"haskell-blaze-builder"
+ "haskell-case-insensitive" "haskell-conduit" "haskell-http-conduit"
+ "haskell-http-types" "haskell-monad-control" "haskell-network-uri"
+ "haskell-resourcet" "haskell-tagstream-conduit" "haskell-text"
+ "haskell-unordered-containers" "haskell-xml-conduit")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('6807cd32c5ff9b23cd6f184ffd7fb7f99c4a7f0dc645eae82f2d6dfbd1899bbe')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-fnetwork-uri
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: 
haskell-authenticate/repos/community-staging-i686/haskell-authenticate.install 
(from rev 163209, haskell-authenticate/trunk/haskell-authenticate.install)
===
--- community-staging-i686/haskell-authenticate.install 
(rev 0)
+++ community-staging-i686/haskell-authenticate.install 2016-02-23 11:25:03 UTC 
(rev 163210)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-authenticate
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-authenticate/repos/community-staging-x86_64/PKGBUILD (from rev 
163209, haskell-authenticate/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-02-23 11:25:03 UTC (rev 163210)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# 

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

2016-02-23 Thread Felix Yan
Date: Tuesday, February 23, 2016 @ 12:24:24
  Author: fyan
Revision: 163209

upgpkg: haskell-authenticate 1.3.3-11

rebuild with cryptohash-0.11.7, cryptonite-0.13, hjsmin-0.1.5.3, http2-1.5.0, 
warp-3.2.3

Modified:
  haskell-authenticate/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-23 10:48:50 UTC (rev 163208)
+++ PKGBUILD2016-02-23 11:24:24 UTC (rev 163209)
@@ -5,7 +5,7 @@
 _hkgname=authenticate
 pkgname=haskell-authenticate
 pkgver=1.3.3
-pkgrel=10
+pkgrel=11
 pkgdesc="Authentication methods for Haskell web applications."
 url="http://github.com/yesodweb/authenticate;
 license=("custom:BSD3")


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

2016-02-23 Thread Felix Yan
Date: Tuesday, February 23, 2016 @ 11:48:50
  Author: fyan
Revision: 163208

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 163207, haskell-yesod-persistent/trunk/PKGBUILD)
  
haskell-yesod-persistent/repos/community-staging-i686/haskell-yesod-persistent.install
(from rev 163207, 
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 163207, haskell-yesod-persistent/trunk/PKGBUILD)
  
haskell-yesod-persistent/repos/community-staging-x86_64/haskell-yesod-persistent.install
(from rev 163207, 
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 163207, haskell-yesod-persistent/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-02-23 10:48:50 UTC (rev 163208)
@@ -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=19
+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 163207, 
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-02-23 
10:48:50 UTC (rev 163208)
@@ -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 163207, haskell-yesod-persistent/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-02-23 10:48:50 UTC (rev 163208)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-persistent

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

2016-02-23 Thread Felix Yan
Date: Tuesday, February 23, 2016 @ 11:48:12
  Author: fyan
Revision: 163207

upgpkg: haskell-yesod-persistent 1.4.0.3-19

rebuild with cryptohash-0.11.7, cryptonite-0.13, hjsmin-0.1.5.3, http2-1.5.0, 
warp-3.2.3

Modified:
  haskell-yesod-persistent/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-23 10:45:02 UTC (rev 163206)
+++ PKGBUILD2016-02-23 10:48:12 UTC (rev 163207)
@@ -5,7 +5,7 @@
 _hkgname=yesod-persistent
 pkgname=haskell-yesod-persistent
 pkgver=1.4.0.3
-pkgrel=18
+pkgrel=19
 pkgdesc="Some helpers for using Persistent from Yesod."
 url="http://www.yesodweb.com/;
 license=("MIT")


[arch-commits] Commit in (6 files)

2016-02-23 Thread Alexander Rødseth
Date: Tuesday, February 23, 2016 @ 11:45:02
  Author: arodseth
Revision: 163206

Solid colorscheme

Added:
  vim-seti/
  vim-seti/repos/
  vim-seti/repos/community-any/
  vim-seti/trunk/
  vim-seti/trunk/PKGBUILD
  vim-seti/trunk/seti.vim

--+
 PKGBUILD |   20 ++
 seti.vim |  113 +
 2 files changed, 133 insertions(+)

Added: vim-seti/trunk/PKGBUILD
===
--- vim-seti/trunk/PKGBUILD (rev 0)
+++ vim-seti/trunk/PKGBUILD 2016-02-23 10:45:02 UTC (rev 163206)
@@ -0,0 +1,20 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+
+pkgname=vim-seti
+pkgver=1.0
+pkgrel=1
+pkgdesc="Colorscheme based on Jesse Weed's Seti theme for the Atom editor"
+arch=('any')
+url='https://github.com/trusktr/seti.vim'
+license=('custom:unknown')
+depends=('vim')
+source=('seti.vim::https://raw.githubusercontent.com/trusktr/seti.vim/1825cc5000defac0e57f518e64fc50b79db02c1b/colors/seti.vim')
+md5sums=('ebf431562f010abcef9773bfe22c946f')
+
+package() {
+  install -Dm644 seti.vim "$pkgdir/usr/share/vim/vimfiles/colors/seti.vim"
+}
+
+# getver: -u 2
+# vim:set ts=2 sw=2 et:


Property changes on: vim-seti/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: vim-seti/trunk/seti.vim
===
--- vim-seti/trunk/seti.vim (rev 0)
+++ vim-seti/trunk/seti.vim 2016-02-23 10:45:02 UTC (rev 163206)
@@ -0,0 +1,113 @@
+" Vim color file
+" Converted from Textmate theme Seti using Coloration v0.3.3 
(http://github.com/sickill/coloration)
+
+set background=dark
+highlight clear
+
+if exists("syntax_on")
+  syntax reset
+endif
+
+let g:colors_name = "seti"
+
+hi Cursor   ctermfg=16ctermbg=222   cterm=NONE 
 guifg=#151718   guibg=#ffe792   gui=NONE
+hi Visual   ctermfg=NONE  ctermbg=74cterm=NONE 
 guifg=NONE  guibg=#4fa5c7   gui=NONE
+hi CursorLine   ctermfg=NONE  ctermbg=235   cterm=NONE 
 guifg=NONE  guibg=#282a2b   gui=NONE
+hi CursorColumn ctermfg=NONE  ctermbg=235   cterm=NONE 
 guifg=NONE  guibg=#282a2b   gui=NONE
+hi ColorColumn  ctermfg=NONE  ctermbg=235   cterm=NONE 
 guifg=NONE  guibg=#282a2b   gui=NONE
+hi LineNr   ctermfg=243   ctermbg=235   cterm=NONE 
 guifg=#75   guibg=#282a2b   gui=NONE
+hi VertSplitctermfg=239   ctermbg=239   cterm=NONE 
 guifg=#4c4f4f   guibg=#4c4f4f   gui=NONE
+hi MatchParen   ctermfg=149   ctermbg=NONE  cterm=underline
 guifg=#9fca56   guibg=NONE  gui=underline
+hi StatusLine   ctermfg=188   ctermbg=239   cterm=bold 
 guifg=#d4d7d6   guibg=#4c4f4f   gui=bold
+hi StatusLineNC ctermfg=188   ctermbg=239   cterm=NONE 
 guifg=#d4d7d6   guibg=#4c4f4f   gui=NONE
+hi Pmenuctermfg=NONE  ctermbg=NONE  cterm=NONE 
 guifg=NONE  guibg=NONE  gui=NONE
+hi PmenuSel ctermfg=NONE  ctermbg=74cterm=NONE 
 guifg=NONE  guibg=#4fa5c7   gui=NONE
+hi IncSearchctermfg=16ctermbg=74cterm=NONE 
 guifg=#151718   guibg=#55b5db   gui=NONE
+hi Search   ctermfg=NONE  ctermbg=NONE  cterm=underline
 guifg=NONE  guibg=NONE  gui=underline
+hi Directoryctermfg=167   ctermbg=NONE  cterm=NONE 
 guifg=#cd3f45   guibg=NONE  gui=NONE
+hi Folded   ctermfg=59ctermbg=16cterm=NONE 
 guifg=#41535b   guibg=#151718   gui=NONE
+
+hi Normal   ctermfg=188   ctermbg=16cterm=NONE 
 guifg=#d4d7d6   guibg=#151718   gui=NONE
+hi Boolean  ctermfg=167   ctermbg=NONE  cterm=NONE 
 guifg=#cd3f45   guibg=NONE  gui=NONE
+hi Characterctermfg=167   ctermbg=NONE  cterm=NONE 
 guifg=#cd3f45   guibg=NONE  gui=NONE
+hi Comment  ctermfg=59ctermbg=NONE  cterm=NONE 
 guifg=#41535b   guibg=NONE  gui=NONE
+hi Conditional  ctermfg=149   ctermbg=NONE  cterm=NONE 
 guifg=#9fca56   guibg=NONE  gui=NONE
+hi Constant ctermfg=167   ctermbg=NONE  cterm=NONE 
 guifg=#cd3f45   guibg=NONE  gui=NONE
+hi Define   ctermfg=149   ctermbg=NONE  cterm=NONE 
 guifg=#9fca56   guibg=NONE  gui=NONE
+hi DiffAdd  ctermfg=188   ctermbg=64cterm=bold 
 guifg=#d4d7d6   guibg=#43800a   gui=bold
+hi DiffDelete   ctermfg=88ctermbg=NONE  cterm=NONE 
 guifg=#870505   guibg=NONE  

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

2016-02-23 Thread Felix Yan
Date: Tuesday, February 23, 2016 @ 11:10:34
  Author: fyan
Revision: 163205

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

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

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

Copied: haskell-http-conduit/repos/community-staging-i686/PKGBUILD (from rev 
163204, haskell-http-conduit/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-02-23 10:10:34 UTC (rev 163205)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http-conduit
+pkgname=haskell-http-conduit
+pkgver=2.1.8
+pkgrel=28
+pkgdesc="HTTP client package with conduit interface and HTTPS support"
+url="http://www.yesodweb.com/book/http-conduit;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-conduit" "haskell-http-client" 
"haskell-http-client-tls"
+ "haskell-http-types" "haskell-lifted-base" "haskell-monad-control" 
"haskell-mtl"
+ "haskell-resourcet")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('550d86ea9ee6dd90994a460c5c85ddc861fb5c0f007304dc4a2e2035f980ea3d')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: 
haskell-http-conduit/repos/community-staging-i686/haskell-http-conduit.install 
(from rev 163204, haskell-http-conduit/trunk/haskell-http-conduit.install)
===
--- community-staging-i686/haskell-http-conduit.install 
(rev 0)
+++ community-staging-i686/haskell-http-conduit.install 2016-02-23 10:10:34 UTC 
(rev 163205)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-http-conduit
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-http-conduit/repos/community-staging-x86_64/PKGBUILD (from rev 
163204, haskell-http-conduit/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-02-23 10:10:34 UTC (rev 163205)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http-conduit
+pkgname=haskell-http-conduit
+pkgver=2.1.8
+pkgrel=28
+pkgdesc="HTTP client package with conduit 

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

2016-02-23 Thread Felix Yan
Date: Tuesday, February 23, 2016 @ 11:08:48
  Author: fyan
Revision: 163204

upgpkg: haskell-http-conduit 2.1.8-28

rebuild with cryptohash-0.11.7, cryptonite-0.13, hjsmin-0.1.5.3, http2-1.5.0, 
warp-3.2.3

Modified:
  haskell-http-conduit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-23 10:03:56 UTC (rev 163203)
+++ PKGBUILD2016-02-23 10:08:48 UTC (rev 163204)
@@ -5,7 +5,7 @@
 _hkgname=http-conduit
 pkgname=haskell-http-conduit
 pkgver=2.1.8
-pkgrel=27
+pkgrel=28
 pkgdesc="HTTP client package with conduit interface and HTTPS support"
 url="http://www.yesodweb.com/book/http-conduit;
 license=("custom:BSD3")


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

2016-02-23 Thread Felix Yan
Date: Tuesday, February 23, 2016 @ 11:03:56
  Author: fyan
Revision: 163203

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

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

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

Copied: haskell-cryptohash/repos/community-staging-i686/PKGBUILD (from rev 
163202, haskell-cryptohash/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-02-23 10:03:56 UTC (rev 163203)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=cryptohash
+pkgname=haskell-cryptohash
+pkgver=0.11.7
+pkgrel=1
+pkgdesc="Collection of crypto hashes, fast, pure and practical"
+url="http://github.com/vincenthz/hs-cryptohash;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-byteable")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('da297489f6b2a029a14e08f53ff841743ca7bd35646ee7c05ebcd0028b9d0e30')
+
+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-cryptohash/repos/community-staging-i686/haskell-cryptohash.install 
(from rev 163202, haskell-cryptohash/trunk/haskell-cryptohash.install)
===
--- community-staging-i686/haskell-cryptohash.install   
(rev 0)
+++ community-staging-i686/haskell-cryptohash.install   2016-02-23 10:03:56 UTC 
(rev 163203)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-cryptohash
+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-cryptohash/repos/community-staging-x86_64/PKGBUILD (from rev 
163202, haskell-cryptohash/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-02-23 10:03:56 UTC (rev 163203)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=cryptohash
+pkgname=haskell-cryptohash
+pkgver=0.11.7
+pkgrel=1
+pkgdesc="Collection of crypto hashes, fast, pure and practical"
+url="http://github.com/vincenthz/hs-cryptohash;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-byteable")
+options=('staticlibs')

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

2016-02-23 Thread Felix Yan
Date: Tuesday, February 23, 2016 @ 10:57:30
  Author: fyan
Revision: 163202

upgpkg: haskell-cryptohash 0.11.7-1

Modified:
  haskell-cryptohash/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-23 08:59:42 UTC (rev 163201)
+++ PKGBUILD2016-02-23 09:57:30 UTC (rev 163202)
@@ -4,8 +4,8 @@
 
 _hkgname=cryptohash
 pkgname=haskell-cryptohash
-pkgver=0.11.6
-pkgrel=2
+pkgver=0.11.7
+pkgrel=1
 pkgdesc="Collection of crypto hashes, fast, pure and practical"
 url="http://github.com/vincenthz/hs-cryptohash;
 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=('da382334857a88f3e94ce0fb83f425f0a0787b0644100913c61f6e94bb62df37')
+sha256sums=('da297489f6b2a029a14e08f53ff841743ca7bd35646ee7c05ebcd0028b9d0e30')
 
 build() {
 cd "${srcdir}/${_hkgname}-${pkgver}"


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

2016-02-23 Thread Felix Yan
Date: Tuesday, February 23, 2016 @ 09:59:42
  Author: fyan
Revision: 163201

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 163200, haskell-yesod-core/trunk/PKGBUILD)
  haskell-yesod-core/repos/community-staging-i686/haskell-yesod-core.install
(from rev 163200, 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 163200, haskell-yesod-core/trunk/PKGBUILD)
  haskell-yesod-core/repos/community-staging-x86_64/haskell-yesod-core.install
(from rev 163200, 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 
163200, haskell-yesod-core/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-02-23 08:59:42 UTC (rev 163201)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-core
+pkgname=haskell-yesod-core
+pkgver=1.4.19
+pkgrel=12
+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 163200, 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-02-23 08:59:42 UTC 
(rev 163201)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-yesod-core
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd 

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

2016-02-23 Thread Felix Yan
Date: Tuesday, February 23, 2016 @ 09:58:54
  Author: fyan
Revision: 163200

upgpkg: haskell-yesod-core 1.4.19-12

rebuild with cryptohash-0.11.7, cryptonite-0.13, hjsmin-0.1.5.3, http2-1.5.0, 
warp-3.2.3

Modified:
  haskell-yesod-core/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-23 08:52:06 UTC (rev 163199)
+++ PKGBUILD2016-02-23 08:58:54 UTC (rev 163200)
@@ -5,7 +5,7 @@
 _hkgname=yesod-core
 pkgname=haskell-yesod-core
 pkgver=1.4.19
-pkgrel=11
+pkgrel=12
 pkgdesc="Creation of type-safe, RESTful web applications."
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2016-02-23 Thread Antonio Rojas
Date: Tuesday, February 23, 2016 @ 09:55:10
  Author: arojas
Revision: 260175

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

Added:
  tracker/repos/staging-i686/
  tracker/repos/staging-i686/PKGBUILD
(from rev 260174, tracker/trunk/PKGBUILD)
  tracker/repos/staging-i686/tracker-libcue2.patch
(from rev 260174, tracker/trunk/tracker-libcue2.patch)
  tracker/repos/staging-i686/tracker.install
(from rev 260174, tracker/trunk/tracker.install)
  tracker/repos/staging-x86_64/
  tracker/repos/staging-x86_64/PKGBUILD
(from rev 260174, tracker/trunk/PKGBUILD)
  tracker/repos/staging-x86_64/tracker-libcue2.patch
(from rev 260174, tracker/trunk/tracker-libcue2.patch)
  tracker/repos/staging-x86_64/tracker.install
(from rev 260174, tracker/trunk/tracker.install)

--+
 staging-i686/PKGBUILD|   72 +
 staging-i686/tracker-libcue2.patch   |   29 +
 staging-i686/tracker.install |   13 +
 staging-x86_64/PKGBUILD  |   72 +
 staging-x86_64/tracker-libcue2.patch |   29 +
 staging-x86_64/tracker.install   |   13 +
 6 files changed, 228 insertions(+)

Copied: tracker/repos/staging-i686/PKGBUILD (from rev 260174, 
tracker/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-02-23 08:55:10 UTC (rev 260175)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Sergej Pupykin 
+# Contributor: Alexander Fehr 
+
+pkgbase=tracker
+pkgname=(tracker libtracker-sparql)
+pkgver=1.6.1
+pkgrel=2
+pkgdesc="All-in-one indexer, search tool and metadata database"
+arch=(i686 x86_64)
+license=(GPL)
+makedepends=(libgee libsecret upower libexif exempi poppler-glib libgsf icu 
enca networkmanager
+ gtk3 desktop-file-utils hicolor-icon-theme gobject-introspection 
intltool giflib
+ gst-plugins-base-libs totem-plparser taglib libvorbis flac vala 
libgxps
+ libnautilus-extension libmediaart libxslt libiptcdata libosinfo 
libcue)
+url="http://www.gnome.org;
+options=('!emptydirs')
+source=(https://download.gnome.org/sources/$pkgbase/${pkgver:0:3}/$pkgbase-$pkgver.tar.xz
 tracker-libcue2.patch)
+sha256sums=('653ed73f4f454b836df56bec1f1141c7a8d77cbeba97ea1e38df9f60a5f0c1ed'
+'44e7eb8376324583ae7507b804d72a269363f5d89df0505466adac64175d06ec')
+
+prepare() {
+  cd $pkgname-$pkgver
+# Fix build with libcue 2 https://bugzilla.gnome.org/show_bug.cgi?id=762512
+  patch -p1 -i ../tracker-libcue2.patch
+}
+
+build() {
+  cd $pkgbase-$pkgver
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--libexecdir=/usr/lib/tracker \
+--disable-unit-tests \
+--enable-libflac \
+--enable-libvorbis
+
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' -e 's/if test 
"$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then/  
func_append compile_command " -Wl,-O1,--as-needed"\n  func_append 
finalize_command " -Wl,-O1,--as-needed"\n\0/' libtool
+
+  make
+}
+
+package_tracker() {
+  depends=("libtracker-sparql=$pkgver-$pkgrel" libgee libsecret
+   upower libexif exempi poppler-glib libgsf enca libiptcdata libcue 
libosinfo
+   networkmanager gtk3 desktop-file-utils hicolor-icon-theme 
libmediaart libgxps taglib flac libvorbis totem-plparser gst-plugins-base-libs 
giflib)
+  optdepends=("nautilus: edit files' tracker tags")
+  groups=('gnome')
+  install=tracker.install
+
+  cd $pkgbase-$pkgver
+  make DESTDIR="$pkgdir" install
+
+  make DESTDIR="$pkgdir" -C src/libtracker-sparql uninstall
+  make DESTDIR="$pkgdir" -C src/libtracker-sparql-backend uninstall
+  make DESTDIR="$pkgdir" -C src/libtracker-data 
uninstall-libtracker_dataLTLIBRARIES
+  make DESTDIR="$pkgdir" -C src/libtracker-common 
uninstall-libtracker_commonLTLIBRARIES
+}
+
+package_libtracker-sparql() {
+  pkgdesc="$pkgdesc (SPARQL library)"
+  depends=(sqlite icu glib2 libffi pcre util-linux)
+
+  cd $pkgbase-$pkgver
+  make DESTDIR="$pkgdir" -C src/libtracker-common 
install-libtracker_commonLTLIBRARIES
+  make DESTDIR="$pkgdir" -C src/libtracker-data 
install-libtracker_dataLTLIBRARIES
+  make DESTDIR="$pkgdir" -C src/libtracker-sparql install
+  make DESTDIR="$pkgdir" -C src/libtracker-sparql-backend install
+}

Copied: tracker/repos/staging-i686/tracker-libcue2.patch (from rev 260174, 
tracker/trunk/tracker-libcue2.patch)
===
--- staging-i686/tracker-libcue2.patch  (rev 0)
+++ staging-i686/tracker-libcue2.patch  2016-02-23 08:55:10 UTC (rev 260175)
@@ -0,0 +1,29 @@
+--- tracker-1.6.1/src/tracker-extract/tracker-cue-sheet.c.orig 2016-02-23 
07:35:56.035968654 

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

2016-02-23 Thread Felix Yan
Date: Tuesday, February 23, 2016 @ 09:52:06
  Author: fyan
Revision: 163199

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

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

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

Copied: haskell-http-client-tls/repos/community-staging-i686/PKGBUILD (from rev 
163198, haskell-http-client-tls/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-02-23 08:52:06 UTC (rev 163199)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http-client-tls
+pkgname=haskell-http-client-tls
+pkgver=0.2.2
+pkgrel=27
+pkgdesc="http-client backend using the connection package and tls library"
+url="https://github.com/snoyberg/http-client;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-connection" "haskell-data-default-class" 
"haskell-http-client"
+ "haskell-network" "haskell-tls")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('451e5833a1f07fdc162fde4371ac92986932d5c38f9969ace7babb020bc80128')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: 
haskell-http-client-tls/repos/community-staging-i686/haskell-http-client-tls.install
 (from rev 163198, 
haskell-http-client-tls/trunk/haskell-http-client-tls.install)
===
--- community-staging-i686/haskell-http-client-tls.install  
(rev 0)
+++ community-staging-i686/haskell-http-client-tls.install  2016-02-23 
08:52:06 UTC (rev 163199)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-http-client-tls
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-http-client-tls/repos/community-staging-x86_64/PKGBUILD (from 
rev 163198, haskell-http-client-tls/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-02-23 08:52:06 UTC (rev 163199)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http-client-tls
+pkgname=haskell-http-client-tls
+pkgver=0.2.2
+pkgrel=27

[arch-commits] Commit in tracker/trunk (PKGBUILD tracker-libcue2.patch)

2016-02-23 Thread Antonio Rojas
Date: Tuesday, February 23, 2016 @ 09:52:08
  Author: arojas
Revision: 260174

libcue 2.0 rebuild

Added:
  tracker/trunk/tracker-libcue2.patch
Modified:
  tracker/trunk/PKGBUILD

---+
 PKGBUILD  |   13 ++---
 tracker-libcue2.patch |   29 +
 2 files changed, 39 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-02-23 07:56:43 UTC (rev 260173)
+++ PKGBUILD2016-02-23 08:52:08 UTC (rev 260174)
@@ -6,7 +6,7 @@
 pkgbase=tracker
 pkgname=(tracker libtracker-sparql)
 pkgver=1.6.1
-pkgrel=1
+pkgrel=2
 pkgdesc="All-in-one indexer, search tool and metadata database"
 arch=(i686 x86_64)
 license=(GPL)
@@ -16,9 +16,16 @@
  libnautilus-extension libmediaart libxslt libiptcdata libosinfo 
libcue)
 url="http://www.gnome.org;
 options=('!emptydirs')
-source=(https://download.gnome.org/sources/$pkgbase/${pkgver:0:3}/$pkgbase-$pkgver.tar.xz)
-sha256sums=('653ed73f4f454b836df56bec1f1141c7a8d77cbeba97ea1e38df9f60a5f0c1ed')
+source=(https://download.gnome.org/sources/$pkgbase/${pkgver:0:3}/$pkgbase-$pkgver.tar.xz
 tracker-libcue2.patch)
+sha256sums=('653ed73f4f454b836df56bec1f1141c7a8d77cbeba97ea1e38df9f60a5f0c1ed'
+'44e7eb8376324583ae7507b804d72a269363f5d89df0505466adac64175d06ec')
 
+prepare() {
+  cd $pkgname-$pkgver
+# Fix build with libcue 2 https://bugzilla.gnome.org/show_bug.cgi?id=762512
+  patch -p1 -i ../tracker-libcue2.patch
+}
+
 build() {
   cd $pkgbase-$pkgver
 

Added: tracker-libcue2.patch
===
--- tracker-libcue2.patch   (rev 0)
+++ tracker-libcue2.patch   2016-02-23 08:52:08 UTC (rev 260174)
@@ -0,0 +1,29 @@
+--- tracker-1.6.1/src/tracker-extract/tracker-cue-sheet.c.orig 2016-02-23 
07:35:56.035968654 +
 tracker-1.6.1/src/tracker-extract/tracker-cue-sheet.c  2016-02-23 
07:38:48.458509744 +
+@@ -30,7 +30,7 @@
+ #include 
+ 
+ #if defined(HAVE_LIBCUE)
+-#include 
++#include 
+ #endif
+ 
+ #include 
+@@ -93,7 +93,7 @@
+ 
+ static void
+ add_cdtext_comment_date_tag (Rem *cd_comments,
+- enum Cmt index,
++ enum RemType index,
+  GstTagList  *tag_list,
+  const gchar *tag)
+ {
+@@ -116,7 +116,7 @@
+ 
+ static void
+ add_cdtext_comment_double_tag (Rem *cd_comments,
+-   enum Cmt index,
++   enum RemType index,
+GstTagList  *tag_list,
+const gchar *tag)
+ {


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

2016-02-23 Thread Felix Yan
Date: Tuesday, February 23, 2016 @ 09:51:17
  Author: fyan
Revision: 163198

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

rebuild with cryptohash-0.11.7, cryptonite-0.13, hjsmin-0.1.5.3, http2-1.5.0, 
warp-3.2.3

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

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-23 07:29:52 UTC (rev 163197)
+++ PKGBUILD2016-02-23 08:51:17 UTC (rev 163198)
@@ -5,7 +5,7 @@
 _hkgname=http-client-tls
 pkgname=haskell-http-client-tls
 pkgver=0.2.2
-pkgrel=26
+pkgrel=27
 pkgdesc="http-client backend using the connection package and tls library"
 url="https://github.com/snoyberg/http-client;
 license=("MIT")