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

2015-11-12 Thread Felix Yan
Date: Friday, November 13, 2015 @ 08:57:55
  Author: fyan
Revision: 146697

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

Added:
  sfml/repos/community-testing-i686/
  sfml/repos/community-testing-i686/PKGBUILD
(from rev 146696, sfml/trunk/PKGBUILD)
  sfml/repos/community-testing-i686/sfml.install
(from rev 146696, sfml/trunk/sfml.install)
  sfml/repos/community-testing-x86_64/
  sfml/repos/community-testing-x86_64/PKGBUILD
(from rev 146696, sfml/trunk/PKGBUILD)
  sfml/repos/community-testing-x86_64/sfml.install
(from rev 146696, sfml/trunk/sfml.install)

---+
 community-testing-i686/PKGBUILD   |   40 
 community-testing-i686/sfml.install   |3 ++
 community-testing-x86_64/PKGBUILD |   40 
 community-testing-x86_64/sfml.install |3 ++
 4 files changed, 86 insertions(+)

Copied: sfml/repos/community-testing-i686/PKGBUILD (from rev 146696, 
sfml/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2015-11-13 07:57:55 UTC (rev 146697)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Ondrej Martinak 
+
+pkgname=sfml
+pkgver=2.3.2
+pkgrel=2
+pkgdesc='A simple, fast, cross-platform, and object-oriented multimedia API'
+arch=('i686' 'x86_64')
+url='http://www.sfml-dev.org/'
+license=('zlib')
+depends=('libsndfile' 'libxrandr' 'libjpeg' 'openal' 'glew' 'freetype2' 
'xcb-util-image')
+makedepends=('mesa' 'cmake' 'doxygen' 'git')
+install=sfml.install
+source=("git+git://github.com/LaurentGomila/SFML.git#tag=${pkgver}")
+md5sums=('SKIP')
+
+build() {
+  cd "$srcdir"/SFML
+
+  mkdir build && cd build
+  cmake .. \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DSFML_BUILD_EXAMPLES=1 \
+  -DSFML_BUILD_DOC=1 \
+  -DSFML_INSTALL_PKGCONFIG_FILES=1
+  make
+  make doc
+}
+
+package() {
+  cd "$srcdir"/SFML/build
+
+  make DESTDIR="$pkgdir/" install
+
+  install -Dm644 "$pkgdir/usr/share/SFML/cmake/Modules/FindSFML.cmake" 
"$pkgdir/usr/share/cmake-3.4/Modules/FindSFML.cmake"
+
+  install -Dm644 ../license.txt 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+

Copied: sfml/repos/community-testing-i686/sfml.install (from rev 146696, 
sfml/trunk/sfml.install)
===
--- community-testing-i686/sfml.install (rev 0)
+++ community-testing-i686/sfml.install 2015-11-13 07:57:55 UTC (rev 146697)
@@ -0,0 +1,3 @@
+post_install() {
+echo "To view the SFML samples, go to /usr/share/SFML/examples/ and run 
them individually"
+}

Copied: sfml/repos/community-testing-x86_64/PKGBUILD (from rev 146696, 
sfml/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2015-11-13 07:57:55 UTC (rev 146697)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Ondrej Martinak 
+
+pkgname=sfml
+pkgver=2.3.2
+pkgrel=2
+pkgdesc='A simple, fast, cross-platform, and object-oriented multimedia API'
+arch=('i686' 'x86_64')
+url='http://www.sfml-dev.org/'
+license=('zlib')
+depends=('libsndfile' 'libxrandr' 'libjpeg' 'openal' 'glew' 'freetype2' 
'xcb-util-image')
+makedepends=('mesa' 'cmake' 'doxygen' 'git')
+install=sfml.install
+source=("git+git://github.com/LaurentGomila/SFML.git#tag=${pkgver}")
+md5sums=('SKIP')
+
+build() {
+  cd "$srcdir"/SFML
+
+  mkdir build && cd build
+  cmake .. \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DSFML_BUILD_EXAMPLES=1 \
+  -DSFML_BUILD_DOC=1 \
+  -DSFML_INSTALL_PKGCONFIG_FILES=1
+  make
+  make doc
+}
+
+package() {
+  cd "$srcdir"/SFML/build
+
+  make DESTDIR="$pkgdir/" install
+
+  install -Dm644 "$pkgdir/usr/share/SFML/cmake/Modules/FindSFML.cmake" 
"$pkgdir/usr/share/cmake-3.4/Modules/FindSFML.cmake"
+
+  install -Dm644 ../license.txt 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+

Copied: sfml/repos/community-testing-x86_64/sfml.install (from rev 146696, 
sfml/trunk/sfml.install)
===
--- community-testing-x86_64/sfml.install   (rev 0)
+++ community-testing-x86_64/sfml.install   2015-11-13 07:57:55 UTC (rev 
146697)
@@ -0,0 +1,3 @@
+post_install() {
+echo "To view the SFML samples, go to /usr/share/SFML/examples/ and run 
them individually"
+}


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

2015-11-12 Thread Felix Yan
Date: Friday, November 13, 2015 @ 08:57:27
  Author: fyan
Revision: 146696

upgpkg: sfml 2.3.2-2

rebuild with cmake-3.4.0

Modified:
  sfml/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-11-13 07:55:48 UTC (rev 146695)
+++ PKGBUILD2015-11-13 07:57:27 UTC (rev 146696)
@@ -4,7 +4,7 @@
 
 pkgname=sfml
 pkgver=2.3.2
-pkgrel=1
+pkgrel=2
 pkgdesc='A simple, fast, cross-platform, and object-oriented multimedia API'
 arch=('i686' 'x86_64')
 url='http://www.sfml-dev.org/'
@@ -33,7 +33,7 @@
 
   make DESTDIR="$pkgdir/" install
 
-  install -Dm644 "$pkgdir/usr/share/SFML/cmake/Modules/FindSFML.cmake" 
"$pkgdir/usr/share/cmake-3.3/Modules/FindSFML.cmake"
+  install -Dm644 "$pkgdir/usr/share/SFML/cmake/Modules/FindSFML.cmake" 
"$pkgdir/usr/share/cmake-3.4/Modules/FindSFML.cmake"
 
   install -Dm644 ../license.txt 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
 }


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

2015-11-12 Thread Felix Yan
Date: Friday, November 13, 2015 @ 08:55:48
  Author: fyan
Revision: 146695

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

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

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

Copied: haskell-pandoc-citeproc/repos/community-staging-i686/PKGBUILD (from rev 
146694, haskell-pandoc-citeproc/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-11-13 07:55:48 UTC (rev 146695)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=pandoc-citeproc
+pkgname=haskell-pandoc-citeproc
+pkgver=0.8
+pkgrel=9
+pkgdesc="Supports using pandoc with citeproc"
+url="http://hackage.haskell.org/package/${_hkgname}";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.2" "haskell-aeson" "haskell-aeson-pretty" 
"haskell-attoparsec"
+ "haskell-data-default" "haskell-hs-bibutils" "haskell-mtl"
+ "haskell-old-locale" "pandoc" "haskell-pandoc-types" "haskell-parsec"
+ "haskell-rfc5051" "haskell-setenv" "haskell-split" "haskell-syb"
+ "haskell-tagsoup" "haskell-temporary" "haskell-text" "haskell-vector"
+ "haskell-xml-conduit" "haskell-yaml")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+install="${pkgname}.install"
+sha256sums=('834ba89edc9d92dd2e9bf0f001a5ce3d5713b8a7b580232b6a088b5f7f6ddc5e')
+
+prepare() {
+sed -e 's|aeson >= 0.7 && < 0.10|aeson >= 0.7 \&\& < 0.11|' \
+-i $_hkgname-$pkgver/$_hkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-debug -f-test_citeproc -f-unicode_collation -f-embed_data_files 
-fbibutils
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: 
haskell-pandoc-citeproc/repos/community-staging-i686/haskell-pandoc-citeproc.install
 (from rev 146694, 
haskell-pandoc-citeproc/trunk/haskell-pandoc-citeproc.install)
===
--- community-staging-i686/haskell-pandoc-citeproc.install  
(rev 0)
+++ community-staging-i686/haskell-pandoc-citeproc.install  2015-11-13 
07:55:48 UTC (rev 146695)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-pandoc-citeproc
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-pandoc-citeproc/repos/community-staging-x86_64/PKGBUILD (from 
rev 146694, haskell-pandoc-citeproc/trunk/PKGBUILD)

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

2015-11-12 Thread Felix Yan
Date: Friday, November 13, 2015 @ 08:55:19
  Author: fyan
Revision: 146694

upgpkg: haskell-pandoc-citeproc 0.8-9

rebuild with cereal-0.5.1.0

Modified:
  haskell-pandoc-citeproc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-11-13 07:52:36 UTC (rev 146693)
+++ PKGBUILD2015-11-13 07:55:19 UTC (rev 146694)
@@ -5,7 +5,7 @@
 _hkgname=pandoc-citeproc
 pkgname=haskell-pandoc-citeproc
 pkgver=0.8
-pkgrel=8
+pkgrel=9
 pkgdesc="Supports using pandoc with citeproc"
 url="http://hackage.haskell.org/package/${_hkgname}";
 license=("custom:BSD3")


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

2015-11-12 Thread Felix Yan
Date: Friday, November 13, 2015 @ 08:52:36
  Author: fyan
Revision: 146693

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

Added:
  gluon/repos/community-testing-i686/
  gluon/repos/community-testing-i686/PKGBUILD
(from rev 146692, gluon/trunk/PKGBUILD)
  gluon/repos/community-testing-i686/gcc47.patch
(from rev 146692, gluon/trunk/gcc47.patch)
  gluon/repos/community-testing-i686/gluon.install
(from rev 146692, gluon/trunk/gluon.install)
  gluon/repos/community-testing-x86_64/
  gluon/repos/community-testing-x86_64/PKGBUILD
(from rev 146692, gluon/trunk/PKGBUILD)
  gluon/repos/community-testing-x86_64/gcc47.patch
(from rev 146692, gluon/trunk/gcc47.patch)
  gluon/repos/community-testing-x86_64/gluon.install
(from rev 146692, gluon/trunk/gluon.install)

+
 community-testing-i686/PKGBUILD|   43 +++
 community-testing-i686/gcc47.patch |   31 ++
 community-testing-i686/gluon.install   |   15 ++
 community-testing-x86_64/PKGBUILD  |   43 +++
 community-testing-x86_64/gcc47.patch   |   31 ++
 community-testing-x86_64/gluon.install |   15 ++
 6 files changed, 178 insertions(+)

Copied: gluon/repos/community-testing-i686/PKGBUILD (from rev 146692, 
gluon/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2015-11-13 07:52:36 UTC (rev 146693)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Ivan Sichmann Freitas 
+
+pkgname=gluon
+pkgver=0.71.0
+_pkgver=0.71
+pkgrel=9
+pkgdesc="A free and open source platform for creating and distributing games"
+arch=('i686' 'x86_64')
+url="http://gluon.gamingfreedom.org/";
+license=('LGPL')
+depends=('kdelibs' 'libsndfile' 'alure')
+makedepends=('cmake' 'automoc4' 'mesa' 'kdevplatform')
+install=gluon.install
+source=("http://download.kde.org/unstable/$pkgname/$_pkgver/src/$pkgname-$pkgver.tar.gz";
+'gcc47.patch')
+md5sums=('e4f284c0ae00e5b8a58cc3e6201857fe'
+ '92adbf8b23f4af2a15a005b031c81c5f')
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+  patch -p1 -i "$srcdir"/gcc47.patch
+
+  cd "$srcdir"
+  mkdir build
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_SKIP_RPATH=ON
+  grep -rl "Qt4::moc"|xargs sed -i "s/Qt4::moc/moc-qt4/" # No idea what's up 
here but I can't be bothered to fix it properly
+  make
+}
+
+package() {
+  cd "$srcdir"/build
+  make DESTDIR="$pkgdir" install
+
+  if [[ "$CARCH" == "x86_64" ]]; then
+mv "${pkgdir}"/usr/lib64 "${pkgdir}"/usr/lib
+  fi
+}

Copied: gluon/repos/community-testing-i686/gcc47.patch (from rev 146692, 
gluon/trunk/gcc47.patch)
===
--- community-testing-i686/gcc47.patch  (rev 0)
+++ community-testing-i686/gcc47.patch  2015-11-13 07:52:36 UTC (rev 146693)
@@ -0,0 +1,31 @@
+From: Christoph Feck 
+Date: Fri, 23 Mar 2012 22:35:09 +
+Subject: Fix includes
+X-Git-Url: 
http://quickgit.kde.org/?p=gluon.git&a=commitdiff&h=bccbda88a6bc53ac20091bb6aefd2f1b501ba31a
+---
+Fix includes
+---
+
+
+--- a/input/linux/detectlinux.cpp
 b/input/linux/detectlinux.cpp
+@@ -26,6 +26,7 @@
+ 
+ #include 
+ 
++#include 
+ // #include 
+ 
+ using namespace GluonInput;
+
+--- a/input/linux/inputthread.cpp
 b/input/linux/inputthread.cpp
+@@ -30,6 +30,7 @@
+ // #include 
+ 
+ #include 
++#include 
+ #include 
+ #include 
+ #include 
+

Copied: gluon/repos/community-testing-i686/gluon.install (from rev 146692, 
gluon/trunk/gluon.install)
===
--- community-testing-i686/gluon.install(rev 0)
+++ community-testing-i686/gluon.install2015-11-13 07:52:36 UTC (rev 
146693)
@@ -0,0 +1,15 @@
+post_install() {
+  update-desktop-database -q
+  xdg-icon-resource forceupdate --theme hicolor
+  update-mime-database usr/share/mime > /dev/null
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  update-desktop-database -q
+  xdg-icon-resource forceupdate --theme hicolor
+  update-mime-database usr/share/mime > /dev/null
+}

Copied: gluon/repos/community-testing-x86_64/PKGBUILD (from rev 146692, 
gluon/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2015-11-13 07:52:36 UTC (rev 146693)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Ivan Sichmann Freitas 
+
+pkgname=gluon
+pkgver=0.71.0
+_pkgver=0.71
+pkgrel=9
+pkgdesc="A free and open source platform for creating and distributing games"
+arch=('i686' 'x86_64')
+url=

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

2015-11-12 Thread Felix Yan
Date: Friday, November 13, 2015 @ 08:51:58
  Author: fyan
Revision: 146692

upgpkg: gluon 0.71.0-9

rebuild with cmake-3.4.0

Modified:
  gluon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-11-13 07:34:51 UTC (rev 146691)
+++ PKGBUILD2015-11-13 07:51:58 UTC (rev 146692)
@@ -5,7 +5,7 @@
 pkgname=gluon
 pkgver=0.71.0
 _pkgver=0.71
-pkgrel=8
+pkgrel=9
 pkgdesc="A free and open source platform for creating and distributing games"
 arch=('i686' 'x86_64')
 url="http://gluon.gamingfreedom.org/";


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

2015-11-12 Thread Felix Yan
Date: Friday, November 13, 2015 @ 08:47:08
  Author: fyan
Revision: 250828

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

Added:
  quazip/repos/testing-i686/
  quazip/repos/testing-i686/PKGBUILD
(from rev 250827, quazip/trunk/PKGBUILD)
  quazip/repos/testing-i686/qt5.patch
(from rev 250827, quazip/trunk/qt5.patch)
  quazip/repos/testing-x86_64/
  quazip/repos/testing-x86_64/PKGBUILD
(from rev 250827, quazip/trunk/PKGBUILD)
  quazip/repos/testing-x86_64/qt5.patch
(from rev 250827, quazip/trunk/qt5.patch)

--+
 testing-i686/PKGBUILD|   55 ++
 testing-i686/qt5.patch   |   95 +
 testing-x86_64/PKGBUILD  |   55 ++
 testing-x86_64/qt5.patch |   95 +
 4 files changed, 300 insertions(+)

Copied: quazip/repos/testing-i686/PKGBUILD (from rev 250827, 
quazip/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-11-13 07:47:08 UTC (rev 250828)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: trya 
+
+pkgbase=quazip
+pkgname=(quazip-qt4 quazip-qt5)
+pkgver=0.7.1
+pkgrel=5
+pkgdesc="C++ wrapper for the Gilles Vollant's ZIP/UNZIP C package"
+url="http://sourceforge.net/projects/quazip/";
+license=('LGPL')
+arch=('i686' 'x86_64')
+makedepends=(qt4 qt5-base cmake automoc4)
+source=("http://downloads.sourceforge.net/$pkgbase/$pkgbase-$pkgver.tar.gz"; 
'qt5.patch')
+md5sums=('3b99effb2a9417707d463e6f19cf2629'
+ 'f79814b21f1fbbfa86a14240d71158fc')
+
+prepare() {
+# Make qt4 and qt5 versions coinstallable
+  cd $pkgbase-$pkgver
+  patch -p1 -i ../qt5.patch
+}
+
+build() {
+  cd $pkgbase-$pkgver
+  mkdir -p qt{4,5}
+
+  pushd qt4
+   cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DBUILD_WITH_QT4:BOOL=ON
+   make
+  popd
+
+  pushd qt5
+   cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DBUILD_WITH_QT4:BOOL=OFF
+   make
+  popd  
+}
+
+package_quazip-qt4() {
+  depends=(qt4)
+  replaces=(quazip)
+  provides=(quazip)
+  conflicts=(quazip)
+
+  cd $pkgbase-$pkgver/qt4
+  make DESTDIR="$pkgdir" install
+}
+
+package_quazip-qt5() {
+  depends=(qt5-base)
+
+  cd $pkgbase-$pkgver/qt5
+  make DESTDIR="$pkgdir" install
+}

Copied: quazip/repos/testing-i686/qt5.patch (from rev 250827, 
quazip/trunk/qt5.patch)
===
--- testing-i686/qt5.patch  (rev 0)
+++ testing-i686/qt5.patch  2015-11-13 07:47:08 UTC (rev 250828)
@@ -0,0 +1,95 @@
+diff -up quazip-0.7.1/CMakeLists.txt.qt5 quazip-0.7.1/CMakeLists.txt
+--- quazip-0.7.1/CMakeLists.txt.qt52013-11-18 11:37:54.0 -0600
 quazip-0.7.1/CMakeLists.txt2015-04-19 17:25:59.638703934 -0500
+@@ -10,10 +10,11 @@ endif()
+ 
+ if (Qt5Core_FOUND)
+ set(QTCORE_LIBRARIES ${Qt5Core_LIBRARIES})
++set(QUAZIP_LIB_VERSION_SUFFIX 5)
+ # if there is no QT_ROOT, try to deduce it from Qt QtCore include
+ if ("${QT_ROOT}" STREQUAL "")
+ set(QT_ROOT ${QT_QTCORE_INCLUDE_DIR}/../..)
+-endif()
++endif()
+ include_directories(${Qt5Core_INCLUDE_DIRS})
+ 
+ macro(qt_wrap_cpp)
+@@ -33,7 +34,7 @@ else()
+ endif()
+ 
+ # Use system zlib on unix and Qt ZLIB on Windows
+-IF(UNIX)
++IF(UNIX OR MINGW)
+   find_package(ZLIB REQUIRED)
+ ELSE(UNIX)
+   SET(ZLIB_INCLUDE_DIRS "${QT_ROOT}/src/3rdparty/zlib" CACHE STRING "Path 
to ZLIB headers of Qt")
+@@ -48,7 +49,9 @@ SET(LIBRARY_OUTPUT_PATH ${CMAKE_BINARY_D
+ 
+ set(LIB_SUFFIX "" CACHE STRING "Define suffix of directory name (32/64)")
+ set(LIB_DESTINATION "${CMAKE_INSTALL_PREFIX}/lib${LIB_SUFFIX}" CACHE STRING 
"Library directory name" FORCE)
++set(QUAZIP_LIB_TARGET_NAME quazip${QUAZIP_LIB_VERSION_SUFFIX} CACHE
++INTERNAL "Target name of libquazip" FORCE)
+ 
+ add_subdirectory(quazip)
+ 
+-install(FILES FindQuaZip.cmake DESTINATION ${CMAKE_ROOT}/Modules)
++install(FILES FindQuaZip.cmake RENAME 
FindQuaZip${QUAZIP_LIB_VERSION_SUFFIX}.cmake DESTINATION ${CMAKE_ROOT}/Modules)
+diff -up quazip-0.7.1/FindQuaZip.cmake.qt5 quazip-0.7.1/FindQuaZip.cmake
+--- quazip-0.7.1/FindQuaZip.cmake.qt5  2012-02-26 00:46:10.0 -0600
 quazip-0.7.1/FindQuaZip.cmake  2015-04-19 17:25:59.638703934 -0500
+@@ -9,14 +9,17 @@ IF (QUAZIP_INCLUDE_DIRS AND QUAZIP_LIBRA
+   # in cache already
+   SET(QUAZIP_FOUND TRUE)
+ ELSE (QUAZIP_INCLUDE_DIRS AND QUAZIP_LIBRARIES)
++  IF (Qt5Core_FOUND)
++  set(QUAZIP_LIB_VERSION_SUFFIX 5)
++  ENDIF()
+   IF (WIN32)
+   FIND_PATH(QUAZIP_LIBRARY_DIR
+   WIN32_DEBUG_POSTFIX d
+-  NAMES libquazip.dll
++  NAMES libquazip${QUAZIP_LIB_VERSION_SUFFIX}.dll
+   HINTS "C:/Programme/" "C:/Program Files"
+

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

2015-11-12 Thread Felix Yan
Date: Friday, November 13, 2015 @ 08:46:39
  Author: fyan
Revision: 250827

upgpkg: quazip 0.7.1-5

rebuild with cmake-3.4.0

Modified:
  quazip/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-11-13 07:42:11 UTC (rev 250826)
+++ PKGBUILD2015-11-13 07:46:39 UTC (rev 250827)
@@ -6,7 +6,7 @@
 pkgbase=quazip
 pkgname=(quazip-qt4 quazip-qt5)
 pkgver=0.7.1
-pkgrel=4
+pkgrel=5
 pkgdesc="C++ wrapper for the Gilles Vollant's ZIP/UNZIP C package"
 url="http://sourceforge.net/projects/quazip/";
 license=('LGPL')


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

2015-11-12 Thread Felix Yan
Date: Friday, November 13, 2015 @ 08:42:11
  Author: fyan
Revision: 250826

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

Added:
  cmake/repos/testing-i686/
  cmake/repos/testing-i686/PKGBUILD
(from rev 250825, cmake/trunk/PKGBUILD)
  cmake/repos/testing-i686/cmake.install
(from rev 250825, cmake/trunk/cmake.install)
  cmake/repos/testing-i686/rebuild.list
(from rev 250825, cmake/trunk/rebuild.list)
  cmake/repos/testing-x86_64/
  cmake/repos/testing-x86_64/PKGBUILD
(from rev 250825, cmake/trunk/PKGBUILD)
  cmake/repos/testing-x86_64/cmake.install
(from rev 250825, cmake/trunk/cmake.install)
  cmake/repos/testing-x86_64/rebuild.list
(from rev 250825, cmake/trunk/rebuild.list)

--+
 testing-i686/PKGBUILD|   59 +
 testing-i686/cmake.install   |   12 
 testing-i686/rebuild.list|5 +++
 testing-x86_64/PKGBUILD  |   59 +
 testing-x86_64/cmake.install |   12 
 testing-x86_64/rebuild.list  |5 +++
 6 files changed, 152 insertions(+)

Copied: cmake/repos/testing-i686/PKGBUILD (from rev 250825, 
cmake/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-11-13 07:42:11 UTC (rev 250826)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=cmake
+pkgver=3.4.0
+pkgrel=1
+pkgdesc='A cross-platform open-source make system'
+arch=('i686' 'x86_64')
+url="http://www.cmake.org/";
+license=('custom')
+depends=('curl' 'libarchive' 'shared-mime-info' 'jsoncpp')
+makedepends=('qt5-base' 'python-sphinx' 'emacs')
+optdepends=('qt5-base: cmake-gui'
+'libxkbcommon-x11: cmake-gui')
+install="${pkgname}.install"
+source=("http://www.cmake.org/files/v${pkgver%.*}/${pkgname}-${pkgver}.tar.gz";)
+md5sums=('cd3034e0a44256a0917e254167217fc8')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  ./bootstrap --prefix=/usr \
+--mandir=/share/man \
+--docdir=/share/doc/cmake \
+--sphinx-man \
+--system-libs \
+--qt-gui \
+--parallel=$(/usr/bin/getconf _NPROCESSORS_ONLN)
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  vimpath="${pkgdir}/usr/share/vim/vimfiles"
+  install -d "${vimpath}"/{help,indent,syntax}
+  ln -s /usr/share/cmake-${pkgver%.*}/editors/vim/cmake-help.vim \
+"${vimpath}"/help/
+  ln -s /usr/share/cmake-${pkgver%.*}/editors/vim/cmake-indent.vim \
+"${vimpath}"/indent/
+  ln -s /usr/share/cmake-${pkgver%.*}/editors/vim/cmake-syntax.vim \
+"${vimpath}"/syntax/
+
+  install -d "${pkgdir}"/usr/share/emacs/site-lisp/
+  emacs -batch -f batch-byte-compile \
+"${pkgdir}"/usr/share/cmake-${pkgver%.*}/editors/emacs/cmake-mode.el
+  ln -s /usr/share/cmake-${pkgver%.*}/editors/emacs/cmake-mode.el \
+"${pkgdir}"/usr/share/emacs/site-lisp/
+
+  install -Dm644 Copyright.txt \
+"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}

Copied: cmake/repos/testing-i686/cmake.install (from rev 250825, 
cmake/trunk/cmake.install)
===
--- testing-i686/cmake.install  (rev 0)
+++ testing-i686/cmake.install  2015-11-13 07:42:11 UTC (rev 250826)
@@ -0,0 +1,12 @@
+post_install() {
+   update-mime-database usr/share/mime &> /dev/null
+[[ -x usr/bin/update-desktop-database ]] && update-desktop-database -q || 
true
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: cmake/repos/testing-i686/rebuild.list (from rev 250825, 
cmake/trunk/rebuild.list)
===
--- testing-i686/rebuild.list   (rev 0)
+++ testing-i686/rebuild.list   2015-11-13 07:42:11 UTC (rev 250826)
@@ -0,0 +1,5 @@
+quazip
+glm
+gluon
+sfml
+wt

Copied: cmake/repos/testing-x86_64/PKGBUILD (from rev 250825, 
cmake/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2015-11-13 07:42:11 UTC (rev 250826)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=cmake
+pkgver=3.4.0
+pkgrel=1
+pkgdesc='A cross-platform open-source make system'
+arch=('i686' 'x86_64')
+url="http://www.cmake.org/";
+license=('custom')
+depends=('curl' 'libarchive' 'shared-mime-info' 'jsoncpp')
+makedepends=('qt5-base' 'python-sphinx' 'emacs')
+optdepends=('qt5-base: cmake-gui'
+'libxkbcommon-x11: cmake-gui')
+install="${pkgname}.install"
+source=("http://www.cmake.org/files/v${pkgver%.*}/${pkgname}-${pkgver}.tar.gz";)
+md5sums=('cd3034e0a44256a0917e254167217fc8')
+
+prep

[arch-commits] Commit in cmake/trunk (PKGBUILD kdelibs-4.14.11.patch python-3.5.patch)

2015-11-12 Thread Felix Yan
Date: Friday, November 13, 2015 @ 08:41:34
  Author: fyan
Revision: 250825

upgpkg: cmake 3.4.0-1

Modified:
  cmake/trunk/PKGBUILD
Deleted:
  cmake/trunk/kdelibs-4.14.11.patch
  cmake/trunk/python-3.5.patch

---+
 PKGBUILD  |   16 +---
 kdelibs-4.14.11.patch |   40 --
 python-3.5.patch  |  189 
 3 files changed, 4 insertions(+), 241 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-11-12 21:09:29 UTC (rev 250824)
+++ PKGBUILD2015-11-13 07:41:34 UTC (rev 250825)
@@ -4,8 +4,8 @@
 # Contributor: Pierre Schmitz 
 
 pkgname=cmake
-pkgver=3.3.2
-pkgrel=3
+pkgver=3.4.0
+pkgrel=1
 pkgdesc='A cross-platform open-source make system'
 arch=('i686' 'x86_64')
 url="http://www.cmake.org/";
@@ -15,19 +15,11 @@
 optdepends=('qt5-base: cmake-gui'
 'libxkbcommon-x11: cmake-gui')
 install="${pkgname}.install"
-source=("http://www.cmake.org/files/v${pkgver%.*}/${pkgname}-${pkgver}.tar.gz"; 
'kdelibs-4.14.11.patch' 'python-3.5.patch')
-md5sums=('5febbd11bcaac854a27eebaf4a124be2'
- '1eeec67ab4bff6d92430d52acdbde142'
- 'c172343ccd88551f8858de1c8806ab79')
+source=("http://www.cmake.org/files/v${pkgver%.*}/${pkgname}-${pkgver}.tar.gz";)
+md5sums=('cd3034e0a44256a0917e254167217fc8')
 
 prepare() {
   cd ${pkgname}-${pkgver}
-
-# fix build of KDE4 applications with kdelibs 4.14.11 
http://www.cmake.org/gitweb?p=cmake.git;a=commit;h=b9ec9392da21a3421e48c6961976060d872faffb
-  patch -p1 -i ../kdelibs-4.14.11.patch
-
-# fix detection of Python 3.5
-  patch -p1 --no-backup-if-mismatch -i ../python-3.5.patch
 }
 
 build() {

Deleted: kdelibs-4.14.11.patch
===
--- kdelibs-4.14.11.patch   2015-11-12 21:09:29 UTC (rev 250824)
+++ kdelibs-4.14.11.patch   2015-11-13 07:41:34 UTC (rev 250825)
@@ -1,40 +0,0 @@
-From b9ec9392da21a3421e48c6961976060d872faffb Mon Sep 17 00:00:00 2001
-From: Rolf Eike Beer 
-Date: Tue, 18 Aug 2015 12:14:43 +0200
-Subject: [PATCH 1/1] FindPkgConfig: remove variable dereference
-
-If CMAKE_MINIMUM_REQUIRED_VERSION is not set because no
-cmake_minimum_required() call is present this line can lead to an error as that
-string is empty so too few arguments are passed to if():
-
-See also 
"/var/tmp/paludis/build/kde-krdc-15.08.0/work/build/CMakeFiles/CMakeOutput.log".
-See also 
"/var/tmp/paludis/build/kde-krdc-15.08.0/work/build/CMakeFiles/CMakeError.log".
-CMake Error at /usr/share/cmake/Modules/FindPkgConfig.cmake:112 (elseif):
-  given arguments:
-
-"VERSION_LESS" "3.1"
-
-  Unknown arguments specified
-Call Stack (most recent call first):
-  /usr/share/cmake/Modules/FindPkgConfig.cmake:501 (_pkgconfig_parse_options)
-  /usr/share/cmake/Modules/FindOpenSSL.cmake:43 (pkg_check_modules)

- Modules/FindPkgConfig.cmake |2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/Modules/FindPkgConfig.cmake b/Modules/FindPkgConfig.cmake
-index 526a62e..ae6903e 100644
 a/Modules/FindPkgConfig.cmake
-+++ b/Modules/FindPkgConfig.cmake
-@@ -109,7 +109,7 @@ macro(_pkgconfig_parse_options _result _is_req _is_silent 
_no_cmake_path _no_cma
-   set(${_no_cmake_path} 1)
-   set(${_no_cmake_environment_path} 1)
- endif()
--  elseif(${CMAKE_MINIMUM_REQUIRED_VERSION} VERSION_LESS 3.1)
-+  elseif(CMAKE_MINIMUM_REQUIRED_VERSION VERSION_LESS 3.1)
- set(${_no_cmake_path} 1)
- set(${_no_cmake_environment_path} 1)
-   endif()
--- 
-1.7.10.4
-

Deleted: python-3.5.patch
===
--- python-3.5.patch2015-11-12 21:09:29 UTC (rev 250824)
+++ python-3.5.patch2015-11-13 07:41:34 UTC (rev 250825)
@@ -1,189 +0,0 @@
-diff --git a/Modules/FindPythonInterp.cmake b/Modules/FindPythonInterp.cmake
-index 8784e18..879192e 100644
 a/Modules/FindPythonInterp.cmake
-+++ b/Modules/FindPythonInterp.cmake
-@@ -51,7 +51,7 @@ unset(_Python_NAMES)
- 
- set(_PYTHON1_VERSIONS 1.6 1.5)
- set(_PYTHON2_VERSIONS 2.7 2.6 2.5 2.4 2.3 2.2 2.1 2.0)
--set(_PYTHON3_VERSIONS 3.4 3.3 3.2 3.1 3.0)
-+set(_PYTHON3_VERSIONS 3.6 3.5 3.4 3.3 3.2 3.1 3.0)
- 
- if(PythonInterp_FIND_VERSION)
- if(PythonInterp_FIND_VERSION_COUNT GREATER 1)
 a/Modules/FindPythonLibs.cmake 2015-09-17 00:53:05.0 +0800
-+++ b/Modules/FindPythonLibs.cmake 2015-09-20 10:49:56.252386270 +0800
-@@ -49,13 +49,41 @@
- # (To distribute this file outside of CMake, substitute the full
- #  License text for the above reference.)
- 
-+# Use the executable's path as a hint
-+set(_Python_LIBRARY_PATH_HINT)
-+if(PYTHON_EXECUTABLE)
-+  if(WIN32)
-+get_filename_component(_Python_PREFIX ${PYTHON_EXECUTABLE} PATH)
-+if(_Python_PREFIX)
-+  set(_Python_LIBRARY_PATH_HINT ${_Python_PREFIX}/libs)
-+endif()
-+unset(_Python_PREFIX)
-+  else()
-+get_filename_component(_Python_PREFIX ${PYTHON_EXECUTABLE} 

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

2015-11-12 Thread Felix Yan
Date: Friday, November 13, 2015 @ 08:34:51
  Author: fyan
Revision: 146691

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

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

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

Copied: pandoc/repos/community-staging-i686/PKGBUILD (from rev 146690, 
pandoc/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-11-13 07:34:51 UTC (rev 146691)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc
+pkgver=1.15.1.1
+pkgrel=5
+pkgdesc="Conversion between markup formats"
+url="http://pandoc.org";
+license=("GPL")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.2" "haskell-http" "haskell-juicypixels" "haskell-sha" 
"haskell-aeson"
+ "haskell-base64-bytestring" "haskell-blaze-html" 
"haskell-blaze-markup"
+ "haskell-cmark" "haskell-data-default" "haskell-deepseq-generics" 
"haskell-mtl"
+ "haskell-extensible-exceptions" "haskell-filemanip" 
"haskell-haddock-library"
+ "haskell-highlighting-kate" "haskell-hslua" "haskell-http-client" 
"haskell-syb"
+ "haskell-http-client-tls" "haskell-http-types"  "haskell-text" 
"haskell-texmath"
+ "haskell-network" "haskell-old-time" "haskell-pandoc-types" 
"haskell-parsec"
+ "haskell-random" "haskell-scientific" "haskell-tagsoup" 
"haskell-temporary"
+ "haskell-network-uri" "haskell-unordered-containers" 
"haskell-zip-archive"
+ "haskell-vector" "haskell-xml" "haskell-yaml" "haskell-zlib")
+optdepends=('haskell-pandoc-citeproc: for citation rendering with 
pandoc-citeproc filter')
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";)
+install="${pkgname}.install"
+sha256sums=('a70e0af56c294dbb1ba646df24f90b81542d060ec7167f70ff2b873ed7ed6d5e')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-old-locale -fnetwork-uri -fhttps -f-trypandoc 
-f-embed_data_files
+runhaskell Setup build
+
+# LC_CTYPE=en_US.UTF-8 is needed since 1.15.1
+# https://github.com/jgm/pandoc/issues/2457#issuecomment-149146107
+LC_CTYPE=en_US.UTF-8 runhaskell Setup haddock --hoogle --html
+
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+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/man/man1"
+install -d -m755 "${pkgdir}/usr/share/man/man5"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${pkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "COPYING" 
"${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/COPYING"
+}

Copied: pandoc/repos/community-staging-i686/pandoc.install (from rev 146690, 
pandoc/trunk/pandoc.install)
===
--- community-staging-i686/pandoc.install   (rev 0)
+++ community-staging-i686/pandoc.install   2015-11-13 07:34:51 UTC (rev 
146691)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/pandoc
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: pandoc/repos/

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

2015-11-12 Thread Felix Yan
Date: Friday, November 13, 2015 @ 08:34:21
  Author: fyan
Revision: 146690

upgpkg: pandoc 1.15.1.1-5

rebuild with cereal-0.5.1.0

Modified:
  pandoc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-11-13 07:15:16 UTC (rev 146689)
+++ PKGBUILD2015-11-13 07:34:21 UTC (rev 146690)
@@ -4,7 +4,7 @@
 
 pkgname=pandoc
 pkgver=1.15.1.1
-pkgrel=4
+pkgrel=5
 pkgdesc="Conversion between markup formats"
 url="http://pandoc.org";
 license=("GPL")


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

2015-11-12 Thread Felix Yan
Date: Friday, November 13, 2015 @ 08:15:16
  Author: fyan
Revision: 146689

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 146688, haskell-http-client-tls/trunk/PKGBUILD)
  
haskell-http-client-tls/repos/community-staging-i686/haskell-http-client-tls.install
(from rev 146688, 
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 146688, haskell-http-client-tls/trunk/PKGBUILD)
  
haskell-http-client-tls/repos/community-staging-x86_64/haskell-http-client-tls.install
(from rev 146688, 
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 
146688, haskell-http-client-tls/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-11-13 07:15:16 UTC (rev 146689)
@@ -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=4
+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.2" "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 146688, 
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  2015-11-13 
07:15:16 UTC (rev 146689)
@@ -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 146688, haskell-http-client-tls/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-11-13 07:15:16 UTC (rev 146689)
@@ -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=4
+pkgdesc="http-client backend using the connection package and tls library"
+url="https://github.com/snoyberg/http-client";
+lic

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

2015-11-12 Thread Felix Yan
Date: Friday, November 13, 2015 @ 08:14:47
  Author: fyan
Revision: 146688

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

rebuild with cereal-0.5.1.0

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

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

Modified: PKGBUILD
===
--- PKGBUILD2015-11-13 07:08:14 UTC (rev 146687)
+++ PKGBUILD2015-11-13 07:14:47 UTC (rev 146688)
@@ -5,7 +5,7 @@
 _hkgname=http-client-tls
 pkgname=haskell-http-client-tls
 pkgver=0.2.2
-pkgrel=3
+pkgrel=4
 pkgdesc="http-client backend using the connection package and tls library"
 url="https://github.com/snoyberg/http-client";
 license=("MIT")


[arch-commits] Commit in geogebra/repos/community-any (8 files)

2015-11-12 Thread Evgeniy Alekseev
Date: Friday, November 13, 2015 @ 08:08:14
  Author: arcanis
Revision: 146687

archrelease: copy trunk to community-any

Added:
  geogebra/repos/community-any/ChangeLog
(from rev 146686, geogebra/trunk/ChangeLog)
  geogebra/repos/community-any/PKGBUILD
(from rev 146686, geogebra/trunk/PKGBUILD)
  geogebra/repos/community-any/geogebra
(from rev 146686, geogebra/trunk/geogebra)
  geogebra/repos/community-any/geogebra.install
(from rev 146686, geogebra/trunk/geogebra.install)
Deleted:
  geogebra/repos/community-any/ChangeLog
  geogebra/repos/community-any/PKGBUILD
  geogebra/repos/community-any/geogebra
  geogebra/repos/community-any/geogebra.install

--+
 ChangeLog|   65 
 PKGBUILD |   86 ++---
 geogebra |   14 
 geogebra.install |   28 -
 4 files changed, 98 insertions(+), 95 deletions(-)

Deleted: ChangeLog
===
--- ChangeLog   2015-11-13 07:07:54 UTC (rev 146686)
+++ ChangeLog   2015-11-13 07:08:14 UTC (rev 146687)
@@ -1,31 +0,0 @@
-5.0.168.0-1:
-upstream update
-
-5.0.166.0-1:
-upstream update
-
-5.0.164.0-1:
-upstream update
-
-5.0.161.0-1:
-upstream update
-
-5.0.158.0-1:
-upstream update
-
-5.0.150.0-1:
-upstream update
-
-5.0.149.0-1:
-upstream update
-
-5.0.146.0-1:
-upstream update
-
-5.0.143.0-1:
-upstream update
-
-5.0.129.0-1:
-upstream update
-put icon back
-

Copied: geogebra/repos/community-any/ChangeLog (from rev 146686, 
geogebra/trunk/ChangeLog)
===
--- ChangeLog   (rev 0)
+++ ChangeLog   2015-11-13 07:08:14 UTC (rev 146687)
@@ -0,0 +1,34 @@
+5.0.170.0-1:
+upstream update
+
+5.0.168.0-1:
+upstream update
+
+5.0.166.0-1:
+upstream update
+
+5.0.164.0-1:
+upstream update
+
+5.0.161.0-1:
+upstream update
+
+5.0.158.0-1:
+upstream update
+
+5.0.150.0-1:
+upstream update
+
+5.0.149.0-1:
+upstream update
+
+5.0.146.0-1:
+upstream update
+
+5.0.143.0-1:
+upstream update
+
+5.0.129.0-1:
+upstream update
+put icon back
+

Deleted: PKGBUILD
===
--- PKGBUILD2015-11-13 07:07:54 UTC (rev 146686)
+++ PKGBUILD2015-11-13 07:08:14 UTC (rev 146687)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Evgeniy Alekseev 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Felipe Hommen 
-# Contributor: moostik 
-
-pkgname=geogebra
-pkgver=5.0.168.0
-pkgrel=1
-pkgdesc="Dynamic mathematics software with interactive graphics, algebra and 
spreadsheet"
-arch=('any')
-url='http://www.geogebra.org/'
-license=('GPL3' 'CCPL:by-sa' 'CCPL:by-nc')
-depends=('desktop-file-utils' 'gsl' 'hicolor-icon-theme' 'java-runtime'
- 'shared-mime-info' 'xdg-utils')
-makedepends=('gendesk')
-source=("http://download.geogebra.org/installers/5.0/GeoGebra-Linux-Portable-${pkgver}.tar.bz2";
-"http://static.geogebra.org/images/geogebra-logo.svg";
-"geogebra")
-install=geogebra.install
-changelog=ChangeLog
-
-prepare() {
-  gendesk -f -n --pkgname "${pkgname}" --pkgdesc "${pkgdesc}" \
-  --name="GeoGebra" \
-  --categories="Education;Science;Math" \
-  
--mimetypes="application/vnd.geogebra.file;application/vnd.geogebra.tool"
-}
-
-package() {
-  cd "GeoGebra-Linux-Portable-${pkgver}"
-
-  install -Dm755 "${srcdir}/geogebra" "${pkgdir}/usr/bin/geogebra"
-  install -dm755 "${pkgdir}/usr/share/geogebra"
-  install "geogebra/"* -t "${pkgdir}/usr/share/geogebra/"
-
-  install -Dm644 "${srcdir}/geogebra.desktop" 
"${pkgdir}/usr/share/applications/geogebra.desktop"
-  install -Dm644 "${srcdir}/geogebra-logo.svg" 
"${pkgdir}/usr/share/icons/hicolor/scalable/apps/geogebra.svg"
-}
-
-md5sums=('283fc4d5c6dafdbfee13f91fe9b07e8c'
- '863782da033f1a337e688b544afb7d07'
- 'fc4a3140ceb50967598a620eb85219f4')

Copied: geogebra/repos/community-any/PKGBUILD (from rev 146686, 
geogebra/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-11-13 07:08:14 UTC (rev 146687)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Evgeniy Alekseev 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Felipe Hommen 
+# Contributor: moostik 
+
+pkgname=geogebra
+pkgver=5.0.170.0
+pkgrel=1
+pkgdesc="Dynamic mathematics software with interactive graphics, algebra and 
spreadsheet"
+arch=('any')
+url='http://www.geogebra.org/'
+license=('GPL3' 'CCPL:by-sa' 'CCPL:by-nc')
+depends=('desktop-file-utils' 'gsl' 'hicolor-icon-theme' 'java-runtime'
+ 'shared-mime-info' 'xdg-utils')
+makedepends=('gendesk')
+source=("http://download.geogebra.org/installers/5.0/GeoGebra-Linux-Portable-${pkgver}.tar.bz2";
+"http://static.geogebra.org/images/geogebra-logo.svg";
+"geogebra")
+install=geogebra.install
+changelog=ChangeLog
+
+prepare() {

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

2015-11-12 Thread Evgeniy Alekseev
Date: Friday, November 13, 2015 @ 08:07:54
  Author: arcanis
Revision: 146686

upgpkg: geogebra 5.0.170.0-1

Modified:
  geogebra/trunk/ChangeLog
  geogebra/trunk/PKGBUILD

---+
 ChangeLog |3 +++
 PKGBUILD  |4 ++--
 2 files changed, 5 insertions(+), 2 deletions(-)

Modified: ChangeLog
===
--- ChangeLog   2015-11-13 07:05:43 UTC (rev 146685)
+++ ChangeLog   2015-11-13 07:07:54 UTC (rev 146686)
@@ -1,3 +1,6 @@
+5.0.170.0-1:
+upstream update
+
 5.0.168.0-1:
 upstream update
 

Modified: PKGBUILD
===
--- PKGBUILD2015-11-13 07:05:43 UTC (rev 146685)
+++ PKGBUILD2015-11-13 07:07:54 UTC (rev 146686)
@@ -5,7 +5,7 @@
 # Contributor: moostik 
 
 pkgname=geogebra
-pkgver=5.0.168.0
+pkgver=5.0.170.0
 pkgrel=1
 pkgdesc="Dynamic mathematics software with interactive graphics, algebra and 
spreadsheet"
 arch=('any')
@@ -38,6 +38,6 @@
   install -Dm644 "${srcdir}/geogebra-logo.svg" 
"${pkgdir}/usr/share/icons/hicolor/scalable/apps/geogebra.svg"
 }
 
-md5sums=('283fc4d5c6dafdbfee13f91fe9b07e8c'
+md5sums=('f894c584017edd22dc1e4ab7ffe947fd'
  '863782da033f1a337e688b544afb7d07'
  'fc4a3140ceb50967598a620eb85219f4')


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

2015-11-12 Thread Felix Yan
Date: Friday, November 13, 2015 @ 08:05:43
  Author: fyan
Revision: 146685

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

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

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

Copied: haskell-connection/repos/community-staging-i686/PKGBUILD (from rev 
146684, haskell-connection/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-11-13 07:05:43 UTC (rev 146685)
@@ -0,0 +1,43 @@
+# $Id: PKGBUILD 143584 2015-10-10 10:28:35Z fyan $
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=connection
+pkgname=haskell-connection
+pkgver=0.2.5
+pkgrel=3
+pkgdesc="Simple and easy network connections API"
+url="http://github.com/vincenthz/hs-connection";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.2" "haskell-byteable" "haskell-data-default-class" 
"haskell-network" "haskell-socks"
+ "haskell-tls" "haskell-x509" "haskell-x509-store" 
"haskell-x509-system" "haskell-x509-validation")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+install="${pkgname}.install"
+sha256sums=('8895d4427985202ac439b884deb4b5675ccba3d9498fce3687f1542b4ba21124')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: 
haskell-connection/repos/community-staging-i686/haskell-connection.install 
(from rev 146684, haskell-connection/trunk/haskell-connection.install)
===
--- community-staging-i686/haskell-connection.install   
(rev 0)
+++ community-staging-i686/haskell-connection.install   2015-11-13 07:05:43 UTC 
(rev 146685)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-connection
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-connection/repos/community-staging-x86_64/PKGBUILD (from rev 
146684, haskell-connection/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-11-13 07:05:43 UTC (rev 146685)
@@ -0,0 +1,43 @@
+# $Id: PKGBUILD 143584 2015-10-10 10:28:35Z fyan $
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=connection
+pkgname=haskell-connection
+pkgver=0.2.5
+pkgrel=3
+pkgdesc="Simple and easy network connections API"
+url="http://github.com/vincenthz/hs-connection";
+license=("custom:BSD3")
+arch=('i686' 'x86_

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

2015-11-12 Thread Felix Yan
Date: Friday, November 13, 2015 @ 08:05:04
  Author: fyan
Revision: 146683

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

Added:
  hlint/repos/community-i686/
  hlint/repos/community-i686/PKGBUILD
(from rev 146682, hlint/trunk/PKGBUILD)
  hlint/repos/community-i686/hlint.install
(from rev 146682, hlint/trunk/hlint.install)
  hlint/repos/community-x86_64/
  hlint/repos/community-x86_64/PKGBUILD
(from rev 146682, hlint/trunk/PKGBUILD)
  hlint/repos/community-x86_64/hlint.install
(from rev 146682, hlint/trunk/hlint.install)

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

Copied: hlint/repos/community-i686/PKGBUILD (from rev 146682, 
hlint/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-11-13 07:05:04 UTC (rev 146683)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hlint
+pkgver=1.9.22
+pkgrel=1
+pkgdesc="Source code suggestions"
+url="http://community.haskell.org/~ndm/hlint/";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.2" "haskell-ansi-terminal" "haskell-cmdargs" "haskell-cpphs"
+ "haskell-extra" "haskell-src-exts" "haskell-hscolour" 
"haskell-uniplate"
+ "haskell-refact")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";)
+install="${pkgname}.install"
+sha256sums=('5f6e377238899b87e83b38c1a6a8bfee68d6c50dba2229454a081115cd5c19f7')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-fgpl -fthreaded
+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}/${pkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${pkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: hlint/repos/community-i686/hlint.install (from rev 146682, 
hlint/trunk/hlint.install)
===
--- community-i686/hlint.install(rev 0)
+++ community-i686/hlint.install2015-11-13 07:05:04 UTC (rev 146683)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/hlint
+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: hlint/repos/community-x86_64/PKGBUILD (from rev 146682, 
hlint/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-11-13 07:05:04 UTC (rev 146683)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hlint
+pkgver=1.9.22
+pkgrel=1
+pkgdesc="Source code suggestions"
+url="http://community.haskell.org/~ndm/hlint/";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.2" "haskell-ansi-terminal" "haskell-cmdargs" "haskell-cpphs"
+ "haskell-extra" "haskell-src-exts" "haskell-hscolour" 
"haskell-uniplate"
+ "haskell-refact")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";)
+install="${pkgname}.install"
+sha256sums=('5f6e377238899b87e83b38c1a6a8bfee68d6c50dba2229454a081115cd5c19f7')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\

[arch-commits] Commit in (5 files)

2015-11-12 Thread Felix Yan
Date: Friday, November 13, 2015 @ 08:04:28
  Author: fyan
Revision: 146682

addpkg: hlint 1.9.22-1

Added:
  hlint/
  hlint/repos/
  hlint/trunk/
  hlint/trunk/PKGBUILD
  hlint/trunk/hlint.install

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

Added: hlint/trunk/PKGBUILD
===
--- hlint/trunk/PKGBUILD(rev 0)
+++ hlint/trunk/PKGBUILD2015-11-13 07:04:28 UTC (rev 146682)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hlint
+pkgver=1.9.22
+pkgrel=1
+pkgdesc="Source code suggestions"
+url="http://community.haskell.org/~ndm/hlint/";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.2" "haskell-ansi-terminal" "haskell-cmdargs" "haskell-cpphs"
+ "haskell-extra" "haskell-src-exts" "haskell-hscolour" 
"haskell-uniplate"
+ "haskell-refact")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";)
+install="${pkgname}.install"
+sha256sums=('5f6e377238899b87e83b38c1a6a8bfee68d6c50dba2229454a081115cd5c19f7')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-fgpl -fthreaded
+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}/${pkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${pkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


Property changes on: hlint/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: hlint/trunk/hlint.install
===
--- hlint/trunk/hlint.install   (rev 0)
+++ hlint/trunk/hlint.install   2015-11-13 07:04:28 UTC (rev 146682)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/hlint
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}


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

2015-11-12 Thread Felix Yan
Date: Friday, November 13, 2015 @ 08:05:15
  Author: fyan
Revision: 146684

upgpkg: haskell-connection 0.2.5-3

rebuild with cereal-0.5.1.0

Modified:
  haskell-connection/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-11-13 07:05:04 UTC (rev 146683)
+++ PKGBUILD2015-11-13 07:05:15 UTC (rev 146684)
@@ -5,7 +5,7 @@
 _hkgname=connection
 pkgname=haskell-connection
 pkgver=0.2.5
-pkgrel=2
+pkgrel=3
 pkgdesc="Simple and easy network connections API"
 url="http://github.com/vincenthz/hs-connection";
 license=("custom:BSD3")


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

2015-11-12 Thread Felix Yan
Date: Friday, November 13, 2015 @ 07:58:42
  Author: fyan
Revision: 146681

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

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

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

Copied: haskell-refact/repos/community-i686/PKGBUILD (from rev 146680, 
haskell-refact/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-11-13 06:58:42 UTC (rev 146681)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=refact
+pkgname=haskell-refact
+pkgver=0.3.0.1
+pkgrel=1
+pkgdesc="Specify refactorings to perform with apply-refact"
+url="http://hackage.haskell.org/package/${_hkgname}";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.2")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+install="${pkgname}.install"
+sha256sums=('21f0629cf251efe05ab1a1cd6d085944b612df52755a6c5c2c6b8e574687b45a')
+
+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-refact/repos/community-i686/haskell-refact.install (from rev 
146680, haskell-refact/trunk/haskell-refact.install)
===
--- community-i686/haskell-refact.install   (rev 0)
+++ community-i686/haskell-refact.install   2015-11-13 06:58:42 UTC (rev 
146681)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-refact
+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-refact/repos/community-x86_64/PKGBUILD (from rev 146680, 
haskell-refact/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-11-13 06:58:42 UTC (rev 146681)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=refact
+pkgname=haskell-refact
+pkgver=0.3.0.1
+pkgrel=1
+pkgdesc="Specify refactorings to perform with apply-refact"
+url="http://hackage.haskell.org/package/${_hkgname}";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.2")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+install="${pkgname}.install"
+sha256sums=('21f0629cf251efe05ab1a1cd6d085944b612df52755a6c5c2c6b8e574687b45a')
+
+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/

[arch-commits] Commit in (5 files)

2015-11-12 Thread Felix Yan
Date: Friday, November 13, 2015 @ 07:58:12
  Author: fyan
Revision: 146680

addpkg: haskell-refact 0.3.0.1-1

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

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

Added: haskell-refact/trunk/PKGBUILD
===
--- haskell-refact/trunk/PKGBUILD   (rev 0)
+++ haskell-refact/trunk/PKGBUILD   2015-11-13 06:58:12 UTC (rev 146680)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=refact
+pkgname=haskell-refact
+pkgver=0.3.0.1
+pkgrel=1
+pkgdesc="Specify refactorings to perform with apply-refact"
+url="http://hackage.haskell.org/package/${_hkgname}";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.2")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+install="${pkgname}.install"
+sha256sums=('21f0629cf251efe05ab1a1cd6d085944b612df52755a6c5c2c6b8e574687b45a')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


Property changes on: haskell-refact/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: haskell-refact/trunk/haskell-refact.install
===
--- haskell-refact/trunk/haskell-refact.install (rev 0)
+++ haskell-refact/trunk/haskell-refact.install 2015-11-13 06:58:12 UTC (rev 
146680)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-refact
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}


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

2015-11-12 Thread Felix Yan
Date: Friday, November 13, 2015 @ 07:53:26
  Author: fyan
Revision: 146678

upgpkg: haskell-tls 1.3.3-3

rebuild with cereal-0.5.1.0

Modified:
  haskell-tls/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-11-13 06:49:05 UTC (rev 146677)
+++ PKGBUILD2015-11-13 06:53:26 UTC (rev 146678)
@@ -5,7 +5,7 @@
 _hkgname=tls
 pkgname=haskell-tls
 pkgver=1.3.3
-pkgrel=2
+pkgrel=3
 pkgdesc="TLS/SSL protocol native implementation (Server and Client)"
 url="http://github.com/vincenthz/hs-tls";
 license=("custom:BSD3")


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

2015-11-12 Thread Felix Yan
Date: Friday, November 13, 2015 @ 07:53:54
  Author: fyan
Revision: 146679

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

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

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

Copied: haskell-tls/repos/community-staging-i686/PKGBUILD (from rev 146678, 
haskell-tls/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-11-13 06:53:54 UTC (rev 146679)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=tls
+pkgname=haskell-tls
+pkgver=1.3.3
+pkgrel=3
+pkgdesc="TLS/SSL protocol native implementation (Server and Client)"
+url="http://github.com/vincenthz/hs-tls";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.2" "haskell-asn1-encoding" "haskell-asn1-types" 
"haskell-async" "haskell-cereal"
+ "haskell-cryptonite" "haskell-data-default-class" "haskell-memory" 
"haskell-mtl"
+ "haskell-network" "haskell-x509" "haskell-x509-store" 
"haskell-x509-validation")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+install="${pkgname}.install"
+sha256sums=('9f03fb059198e1f3d866d1297f86fca3204d07e7cc5e8f7e8ad878be48f1ca24')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-hans -fnetwork -fcompat
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: haskell-tls/repos/community-staging-i686/haskell-tls.install (from rev 
146678, haskell-tls/trunk/haskell-tls.install)
===
--- community-staging-i686/haskell-tls.install  (rev 0)
+++ community-staging-i686/haskell-tls.install  2015-11-13 06:53:54 UTC (rev 
146679)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-tls
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-tls/repos/community-staging-x86_64/PKGBUILD (from rev 146678, 
haskell-tls/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-11-13 06:53:54 UTC (rev 146679)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=tls
+pkgname=haskell-tls
+pkgver=1.3.3
+pkgrel=3
+pkgdesc="TLS/SSL protocol native implementation (Server and Client)"
+url="http://github.com/vincenthz/hs-tls";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.2" "haskell-asn1-encoding" "haskell-asn1-types" 
"haskell-async" "haskell-cereal"
+ "haskell-cryptonite" "haskell-data-default-class" "haskel

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

2015-11-12 Thread Felix Yan
Date: Friday, November 13, 2015 @ 07:49:05
  Author: fyan
Revision: 146677

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

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

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

Copied: haskell-socks/repos/community-staging-i686/PKGBUILD (from rev 146676, 
haskell-socks/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-11-13 06:49:05 UTC (rev 146677)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=socks
+pkgname=haskell-socks
+pkgver=0.5.4
+pkgrel=3
+pkgdesc="Socks proxy (version 5) implementation."
+url="http://github.com/vincenthz/hs-socks";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.2" "haskell-cereal" "haskell-network")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+install="${pkgname}.install"
+sha256sums=('e9b5e1ea78592632bb086e5f4d6da523be01921a4a8998ca78552bdc396db4da')
+
+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-socks/repos/community-staging-i686/haskell-socks.install (from 
rev 146676, haskell-socks/trunk/haskell-socks.install)
===
--- community-staging-i686/haskell-socks.install
(rev 0)
+++ community-staging-i686/haskell-socks.install2015-11-13 06:49:05 UTC 
(rev 146677)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-socks
+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-socks/repos/community-staging-x86_64/PKGBUILD (from rev 146676, 
haskell-socks/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-11-13 06:49:05 UTC (rev 146677)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=socks
+pkgname=haskell-socks
+pkgver=0.5.4
+pkgrel=3
+pkgdesc="Socks proxy (version 5) implementation."
+url="http://github.com/vincenthz/hs-socks";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.2" "haskell-cereal" "haskell-network")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+install="${pkgname}.install"
+sha256sums=('e9b5e1ea78592632bb086e5f4d6da523be01921a4a8998ca78552bdc396db4da')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O

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

2015-11-12 Thread Felix Yan
Date: Friday, November 13, 2015 @ 07:48:37
  Author: fyan
Revision: 146676

upgpkg: haskell-socks 0.5.4-3

rebuild with cereal-0.5.1.0

Modified:
  haskell-socks/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-11-13 06:48:32 UTC (rev 146675)
+++ PKGBUILD2015-11-13 06:48:37 UTC (rev 146676)
@@ -5,7 +5,7 @@
 _hkgname=socks
 pkgname=haskell-socks
 pkgver=0.5.4
-pkgrel=2
+pkgrel=3
 pkgdesc="Socks proxy (version 5) implementation."
 url="http://github.com/vincenthz/hs-socks";
 license=("custom:BSD3")


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

2015-11-12 Thread Felix Yan
Date: Friday, November 13, 2015 @ 07:48:32
  Author: fyan
Revision: 146675

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

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

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

Copied: haskell-extra/repos/community-i686/PKGBUILD (from rev 146674, 
haskell-extra/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-11-13 06:48:32 UTC (rev 146675)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=extra
+pkgname=haskell-extra
+pkgver=1.4.2
+pkgrel=1
+pkgdesc="Extra functions I use."
+url="https://github.com/ndmitchell/extra#readme";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.2")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+install="${pkgname}.install"
+sha256sums=('0ea699d56bb08ad6e70ee6aaa2069326c2bc76ac347c0f04e94ce38cf3ec30c1')
+
+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-extra/repos/community-i686/haskell-extra.install (from rev 
146674, haskell-extra/trunk/haskell-extra.install)
===
--- community-i686/haskell-extra.install(rev 0)
+++ community-i686/haskell-extra.install2015-11-13 06:48:32 UTC (rev 
146675)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-extra
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-extra/repos/community-x86_64/PKGBUILD (from rev 146674, 
haskell-extra/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-11-13 06:48:32 UTC (rev 146675)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=extra
+pkgname=haskell-extra
+pkgver=1.4.2
+pkgrel=1
+pkgdesc="Extra functions I use."
+url="https://github.com/ndmitchell/extra#readme";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.2")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+install="${pkgname}.install"
+sha256sums=('0ea699d56bb08ad6e70ee6aaa2069326c2bc76ac347c0f04e94ce38cf3ec30c1')
+
+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
+runhask

[arch-commits] Commit in (5 files)

2015-11-12 Thread Felix Yan
Date: Friday, November 13, 2015 @ 07:48:00
  Author: fyan
Revision: 146674

addpkg: haskell-extra 1.4.2-1

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

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

Added: haskell-extra/trunk/PKGBUILD
===
--- haskell-extra/trunk/PKGBUILD(rev 0)
+++ haskell-extra/trunk/PKGBUILD2015-11-13 06:48:00 UTC (rev 146674)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=extra
+pkgname=haskell-extra
+pkgver=1.4.2
+pkgrel=1
+pkgdesc="Extra functions I use."
+url="https://github.com/ndmitchell/extra#readme";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.2")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+install="${pkgname}.install"
+sha256sums=('0ea699d56bb08ad6e70ee6aaa2069326c2bc76ac347c0f04e94ce38cf3ec30c1')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


Property changes on: haskell-extra/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: haskell-extra/trunk/haskell-extra.install
===
--- haskell-extra/trunk/haskell-extra.install   (rev 0)
+++ haskell-extra/trunk/haskell-extra.install   2015-11-13 06:48:00 UTC (rev 
146674)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-extra
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}


[arch-commits] Commit in (5 files)

2015-11-12 Thread Felix Yan
Date: Friday, November 13, 2015 @ 07:40:14
  Author: fyan
Revision: 146672

addpkg: haskell-uniplate 1.6.12-1

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

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

Added: haskell-uniplate/trunk/PKGBUILD
===
--- haskell-uniplate/trunk/PKGBUILD (rev 0)
+++ haskell-uniplate/trunk/PKGBUILD 2015-11-13 06:40:14 UTC (rev 146672)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=uniplate
+pkgname=haskell-uniplate
+pkgver=1.6.12
+pkgrel=1
+pkgdesc="Help writing simple, concise and fast generic operations."
+url="http://community.haskell.org/~ndm/uniplate/";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.2" "haskell-hashable" "haskell-syb" 
"haskell-unordered-containers")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+install="${pkgname}.install"
+sha256sums=('fcc60bc6b3f6e925f611646db90e6db9f05286a9363405f844df1dc15572a8b7')
+
+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 \
+-fseparate_syb -ftypeable_fingerprint
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


Property changes on: haskell-uniplate/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: haskell-uniplate/trunk/haskell-uniplate.install
===
--- haskell-uniplate/trunk/haskell-uniplate.install 
(rev 0)
+++ haskell-uniplate/trunk/haskell-uniplate.install 2015-11-13 06:40:14 UTC 
(rev 146672)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-uniplate
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}


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

2015-11-12 Thread Felix Yan
Date: Friday, November 13, 2015 @ 07:40:45
  Author: fyan
Revision: 146673

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

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

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

Copied: haskell-uniplate/repos/community-i686/PKGBUILD (from rev 146672, 
haskell-uniplate/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-11-13 06:40:45 UTC (rev 146673)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=uniplate
+pkgname=haskell-uniplate
+pkgver=1.6.12
+pkgrel=1
+pkgdesc="Help writing simple, concise and fast generic operations."
+url="http://community.haskell.org/~ndm/uniplate/";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.2" "haskell-hashable" "haskell-syb" 
"haskell-unordered-containers")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+install="${pkgname}.install"
+sha256sums=('fcc60bc6b3f6e925f611646db90e6db9f05286a9363405f844df1dc15572a8b7')
+
+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 \
+-fseparate_syb -ftypeable_fingerprint
+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-uniplate/repos/community-i686/haskell-uniplate.install (from 
rev 146672, haskell-uniplate/trunk/haskell-uniplate.install)
===
--- community-i686/haskell-uniplate.install (rev 0)
+++ community-i686/haskell-uniplate.install 2015-11-13 06:40:45 UTC (rev 
146673)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-uniplate
+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-uniplate/repos/community-x86_64/PKGBUILD (from rev 146672, 
haskell-uniplate/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-11-13 06:40:45 UTC (rev 146673)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=uniplate
+pkgname=haskell-uniplate
+pkgver=1.6.12
+pkgrel=1
+pkgdesc="Help writing simple, concise and fast generic operations."
+url="http://community.haskell.org/~ndm/uniplate/";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.2" "haskell-hashable" "haskell-syb" 
"haskell-unordered-containers")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+install="${pkgname}.install"
+sha256sums=('fcc60bc6b3f6e925f611646db90e6db9f05286a9363405f844df1dc15572a8b7

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

2015-11-12 Thread Felix Yan
Date: Friday, November 13, 2015 @ 07:34:06
  Author: fyan
Revision: 146671

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

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

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

Copied: haskell-cereal/repos/community-staging-i686/PKGBUILD (from rev 146670, 
haskell-cereal/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-11-13 06:34:06 UTC (rev 146671)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=cereal
+pkgname=haskell-cereal
+pkgver=0.5.1.0
+pkgrel=1
+pkgdesc="A binary serialization library"
+url="http://hackage.haskell.org/package/${_hkgname}";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.2")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+install="${pkgname}.install"
+sha256sums=('30f95a5c30b402e2d9020daef8297e338941f1bbe2084259d92f6bb4015904cb')
+
+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 \
+-fsplit-base
+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-cereal/repos/community-staging-i686/haskell-cereal.install 
(from rev 146670, haskell-cereal/trunk/haskell-cereal.install)
===
--- community-staging-i686/haskell-cereal.install   
(rev 0)
+++ community-staging-i686/haskell-cereal.install   2015-11-13 06:34:06 UTC 
(rev 146671)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-cereal
+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-cereal/repos/community-staging-x86_64/PKGBUILD (from rev 
146670, haskell-cereal/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-11-13 06:34:06 UTC (rev 146671)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=cereal
+pkgname=haskell-cereal
+pkgver=0.5.1.0
+pkgrel=1
+pkgdesc="A binary serialization library"
+url="http://hackage.haskell.org/package/${_hkgname}";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.2")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+install="${pkgname}.install"
+sha256sums=('30f95a5c30b402e2d9020daef8297e338941f1bbe2084259d92f6bb4015904cb')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --ena

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

2015-11-12 Thread Felix Yan
Date: Friday, November 13, 2015 @ 07:33:37
  Author: fyan
Revision: 146670

upgpkg: haskell-cereal 0.5.1.0-1

Modified:
  haskell-cereal/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-11-13 06:30:20 UTC (rev 146669)
+++ PKGBUILD2015-11-13 06:33:37 UTC (rev 146670)
@@ -4,7 +4,7 @@
 
 _hkgname=cereal
 pkgname=haskell-cereal
-pkgver=0.5.0.0
+pkgver=0.5.1.0
 pkgrel=1
 pkgdesc="A binary serialization library"
 url="http://hackage.haskell.org/package/${_hkgname}";
@@ -14,7 +14,7 @@
 options=('staticlibs')
 
source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
 install="${pkgname}.install"
-sha256sums=('2c17fd0b8e72be4f32e148e18cd7190424aa631d11d6db8420bbb2faa0202a66')
+sha256sums=('30f95a5c30b402e2d9020daef8297e338941f1bbe2084259d92f6bb4015904cb')
 
 build() {
 cd "${srcdir}/${_hkgname}-${pkgver}"


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

2015-11-12 Thread Felix Yan
Date: Friday, November 13, 2015 @ 07:30:13
  Author: fyan
Revision: 146668

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

Added:
  docker-compose/repos/community-i686/
  docker-compose/repos/community-i686/PKGBUILD
(from rev 146667, docker-compose/trunk/PKGBUILD)
  docker-compose/repos/community-i686/remove-requires-upper-bound.patch
(from rev 146667, docker-compose/trunk/remove-requires-upper-bound.patch)
  docker-compose/repos/community-x86_64/
  docker-compose/repos/community-x86_64/PKGBUILD
(from rev 146667, docker-compose/trunk/PKGBUILD)
  docker-compose/repos/community-x86_64/remove-requires-upper-bound.patch
(from rev 146667, docker-compose/trunk/remove-requires-upper-bound.patch)

+
 community-i686/PKGBUILD|   43 +++
 community-i686/remove-requires-upper-bound.patch   |   27 +++
 community-x86_64/PKGBUILD  |   43 +++
 community-x86_64/remove-requires-upper-bound.patch |   27 +++
 4 files changed, 140 insertions(+)

Copied: docker-compose/repos/community-i686/PKGBUILD (from rev 146667, 
docker-compose/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-11-13 06:30:13 UTC (rev 146668)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Iwan Timmer 
+# Contributor: Vincent Demeester 
+# Contributor: Josh VanderLinden 
+
+pkgname=docker-compose
+pkgver=1.5.1
+pkgrel=1
+pkgdesc="Fast, isolated development environments using Docker"
+arch=('i686' 'x86_64')
+url="https://www.docker.com/";
+depends=('python-docopt' 'python-yaml' 'python-requests' 'python-six' 
'python-texttable'
+ 'python-websocket-client' 'python-docker-py' 'python-dockerpty' 
'python-setuptools'
+ 'python-jsonschema')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/docker/compose/archive/$pkgver.tar.gz";
+"remove-requires-upper-bound.patch")
+license=("BSD")
+sha256sums=('334814f64910823fa588e89eea8f73d8ad3bb0d304e513fe51026a1f1d08d3db'
+'06bd229e1d62632dc199d3b2de82571dff73631865fe6108e3a62c8441c281bf')
+
+[[ "$CARCH" == "x86_64" ]] && depends+=('docker')
+
+prepare() {
+  cd "$srcdir/compose-$pkgver"
+
+  # Remove upper bound on requires
+  patch -p1 -i "$srcdir/remove-requires-upper-bound.patch"
+  sed -i 's/==/>=/g' requirements.txt
+}
+
+build() {
+  cd "$srcdir/compose-$pkgver"
+  python setup.py build
+}
+
+package() {
+  cd "$srcdir/compose-$pkgver"
+
+  python setup.py install -O1 --root="$pkgdir"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+  install -Dm644 contrib/completion/bash/docker-compose 
"$pkgdir/etc/bash_completion.d/docker-compose"
+}

Copied: docker-compose/repos/community-i686/remove-requires-upper-bound.patch 
(from rev 146667, docker-compose/trunk/remove-requires-upper-bound.patch)
===
--- community-i686/remove-requires-upper-bound.patch
(rev 0)
+++ community-i686/remove-requires-upper-bound.patch2015-11-13 06:30:13 UTC 
(rev 146668)
@@ -0,0 +1,27 @@
+--- compose-1.3.0/setup.py.orig2015-06-18 20:25:10.0 +0200
 compose-1.3.0/setup.py 2015-06-21 17:27:42.319085182 +0200
+@@ -25,15 +25,15 @@
+ 
+ 
+ install_requires = [
+-'docopt >= 0.6.1, < 0.7',
+-'PyYAML >= 3.10, < 4',
+-'requests >= 2.6.1, < 2.8',
+-'texttable >= 0.8.1, < 0.9',
+-'websocket-client >= 0.32.0, < 1.0',
+-'docker-py >= 1.5.0, < 2',
+-'dockerpty >= 0.3.4, < 0.4',
+-'six >= 1.3.0, < 2',
+-'jsonschema >= 2.5.1, < 3',
++'docopt >= 0.6.1',
++'PyYAML >= 3.10',
++'requests >= 2.6.1',
++'texttable >= 0.8.1',
++'websocket-client >= 0.32.0',
++'docker-py >= 1.3.1',
++'dockerpty >= 0.3.4',
++'six >= 1.3.0',
++'jsonschema >= 2.5.1',
+ ]
+ 
+ 

Copied: docker-compose/repos/community-x86_64/PKGBUILD (from rev 146667, 
docker-compose/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-11-13 06:30:13 UTC (rev 146668)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Iwan Timmer 
+# Contributor: Vincent Demeester 
+# Contributor: Josh VanderLinden 
+
+pkgname=docker-compose
+pkgver=1.5.1
+pkgrel=1
+pkgdesc="Fast, isolated development environments using Docker"
+arch=('i686' 'x86_64')
+url="https://www.docker.com/";
+depends=('python-docopt' 'python-yaml' 'python-requests' 'python-six' 
'python-texttable'
+ 'python-websocket-client' 'python-docker-py' 'python-dockerpty' 
'python-setuptools'
+ 'python-jsonschema')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/docker/compose/archive/$pkgver.tar.gz";
+"rem

[arch-commits] Commit in docker-compose/repos (community-any)

2015-11-12 Thread Felix Yan
Date: Friday, November 13, 2015 @ 07:30:20
  Author: fyan
Revision: 146669

Removed community-any for docker-compose

Deleted:
  docker-compose/repos/community-any/


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

2015-11-12 Thread Felix Yan
Date: Friday, November 13, 2015 @ 07:29:41
  Author: fyan
Revision: 146667

upgpkg: docker-compose 1.5.1-1

Modified:
  docker-compose/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-11-13 03:02:18 UTC (rev 14)
+++ PKGBUILD2015-11-13 06:29:41 UTC (rev 146667)
@@ -5,20 +5,22 @@
 # Contributor: Josh VanderLinden 
 
 pkgname=docker-compose
-pkgver=1.5.0
+pkgver=1.5.1
 pkgrel=1
 pkgdesc="Fast, isolated development environments using Docker"
-arch=('any')
+arch=('i686' 'x86_64')
 url="https://www.docker.com/";
 depends=('python-docopt' 'python-yaml' 'python-requests' 'python-six' 
'python-texttable'
  'python-websocket-client' 'python-docker-py' 'python-dockerpty' 
'python-setuptools'
- 'python-jsonschema' 'docker')
+ 'python-jsonschema')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/docker/compose/archive/$pkgver.tar.gz";
 "remove-requires-upper-bound.patch")
 license=("BSD")
-sha256sums=('d44d7c966c3ec6b2baf493fb8c8f94b0c23cb03609517cc174884c7ff46cf809'
+sha256sums=('334814f64910823fa588e89eea8f73d8ad3bb0d304e513fe51026a1f1d08d3db'
 '06bd229e1d62632dc199d3b2de82571dff73631865fe6108e3a62c8441c281bf')
 
+[[ "$CARCH" == "x86_64" ]] && depends+=('docker')
+
 prepare() {
   cd "$srcdir/compose-$pkgver"
 


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

2015-11-12 Thread Felix Yan
Date: Friday, November 13, 2015 @ 03:39:41
  Author: fyan
Revision: 146664

upgpkg: npm 3.4.0-1

Modified:
  npm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-11-13 02:11:12 UTC (rev 146663)
+++ PKGBUILD2015-11-13 02:39:41 UTC (rev 146664)
@@ -2,7 +2,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=npm
-pkgver=3.3.12
+pkgver=3.4.0
 pkgrel=1
 pkgdesc='A package manager for javascript'
 arch=('any')


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

2015-11-12 Thread Felix Yan
Date: Friday, November 13, 2015 @ 03:40:02
  Author: fyan
Revision: 146665

archrelease: copy trunk to community-any

Added:
  npm/repos/community-any/PKGBUILD
(from rev 146664, npm/trunk/PKGBUILD)
Deleted:
  npm/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-11-13 02:39:41 UTC (rev 146664)
+++ PKGBUILD2015-11-13 02:40:02 UTC (rev 146665)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgname=npm
-pkgver=3.3.12
-pkgrel=1
-pkgdesc='A package manager for javascript'
-arch=('any')
-url='https://www.npmjs.com/'
-license=('custom:Artistic')
-depends=('nodejs')
-provides=('nodejs-node-gyp')
-makedepends=('git' 'procps-ng')
-optdepends=('python2: for node-gyp')
-options=('!emptydirs')
-source=("git+https://github.com/npm/npm.git#tag=v$pkgver";)
-md5sums=('SKIP')
-
-build() {
-  cd npm
-  make
-}
-
-package() {
-  cd npm
-  make NPMOPTS="--prefix=\"$pkgdir/usr\"" install
-
-  # Why 777? :/
-  chmod -R u=rwX,go=rX "$pkgdir"
-  
-  # Fix files owned by nobody:
-  chown -R root "$pkgdir/usr/lib/node_modules" 
-
-  # Fix wrong symlinks
-  for _dir in man1 man5 man7; do
-rm -f "$pkgdir"/usr/share/man/$_dir/*
-cd "$pkgdir"/usr/lib/node_modules/npm/man/$_dir
-for _file in *; do
-  ln -s /usr/lib/node_modules/npm/man/$_dir/$_file 
"$pkgdir"/usr/share/man/$_dir/
-done
-  done
-  
-  # Provide node-gyp executable
-  cp "$pkgdir"/usr/lib/node_modules/npm/bin/node-gyp-bin/node-gyp 
"$pkgdir"/usr/bin/node-gyp
-  sed -i 's|"`dirname "$0"`/../../|"`dirname "$0"`/../lib/node_modules/npm/|' 
"$pkgdir"/usr/bin/node-gyp
-  
-  install -Dm644 "$srcdir/npm/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: npm/repos/community-any/PKGBUILD (from rev 146664, npm/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-11-13 02:40:02 UTC (rev 146665)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=npm
+pkgver=3.4.0
+pkgrel=1
+pkgdesc='A package manager for javascript'
+arch=('any')
+url='https://www.npmjs.com/'
+license=('custom:Artistic')
+depends=('nodejs')
+provides=('nodejs-node-gyp')
+makedepends=('git' 'procps-ng')
+optdepends=('python2: for node-gyp')
+options=('!emptydirs')
+source=("git+https://github.com/npm/npm.git#tag=v$pkgver";)
+md5sums=('SKIP')
+
+build() {
+  cd npm
+  make
+}
+
+package() {
+  cd npm
+  make NPMOPTS="--prefix=\"$pkgdir/usr\"" install
+
+  # Why 777? :/
+  chmod -R u=rwX,go=rX "$pkgdir"
+  
+  # Fix files owned by nobody:
+  chown -R root "$pkgdir/usr/lib/node_modules" 
+
+  # Fix wrong symlinks
+  for _dir in man1 man5 man7; do
+rm -f "$pkgdir"/usr/share/man/$_dir/*
+cd "$pkgdir"/usr/lib/node_modules/npm/man/$_dir
+for _file in *; do
+  ln -s /usr/lib/node_modules/npm/man/$_dir/$_file 
"$pkgdir"/usr/share/man/$_dir/
+done
+  done
+  
+  # Provide node-gyp executable
+  cp "$pkgdir"/usr/lib/node_modules/npm/bin/node-gyp-bin/node-gyp 
"$pkgdir"/usr/bin/node-gyp
+  sed -i 's|"`dirname "$0"`/../../|"`dirname "$0"`/../lib/node_modules/npm/|' 
"$pkgdir"/usr/bin/node-gyp
+  
+  install -Dm644 "$srcdir/npm/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2015-11-12 Thread Felix Yan
Date: Friday, November 13, 2015 @ 03:11:12
  Author: fyan
Revision: 146663

archrelease: copy trunk to community-any

Added:
  perl-graphviz/repos/community-any/PKGBUILD
(from rev 146662, perl-graphviz/trunk/PKGBUILD)
Deleted:
  perl-graphviz/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-11-13 02:10:52 UTC (rev 146662)
+++ PKGBUILD2015-11-13 02:11:12 UTC (rev 146663)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Phillip Smith 
-# http://github.com/fukawi2/aur-packages
-# Contributor: Jason St. John 
-# Contributor: antoniolucas 
-
-_perlmod=GraphViz
-pkgname=perl-graphviz
-pkgver=2.18
-pkgrel=1
-pkgdesc="GraphViz - Interface to AT&T's GraphViz. Deprecated. See GraphViz2"
-arch=('any')
-url="http://search.cpan.org/dist/$_perlmod";
-license=('GPL' 'PerlArtistic')
-options=('!emptydirs')
-depends=('graphviz' 'perl-file-which' 'perl-ipc-run' 'perl-parse-recdescent'
- 'perl-xml-twig' 'perl-xml-xpath' 'perl-libwww')
-makedepends=('perl-module-build')
-checkdepends=('perl-test-pod')
-source=("https://cpan.metacpan.org/authors/id/R/RS/RSAVAGE/$_perlmod-$pkgver.tgz";)
-md5sums=('cd507325c0bbfcc168a034abaf60a12b')
-
-build() {
-  cd "$srcdir/$_perlmod-$pkgver"
-
-  perl Build.PL installdirs=vendor destdir="$pkgdir/"
-  perl Build
-}
-
-check() {
-  cd "$srcdir/$_perlmod-$pkgver"
-  perl Build test
-}
-
-package() {
-  cd "$srcdir/$_perlmod-$pkgver"
-  perl Build install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: perl-graphviz/repos/community-any/PKGBUILD (from rev 146662, 
perl-graphviz/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-11-13 02:11:12 UTC (rev 146663)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Phillip Smith 
+# http://github.com/fukawi2/aur-packages
+# Contributor: Jason St. John 
+# Contributor: antoniolucas 
+
+_perlmod=GraphViz
+pkgname=perl-graphviz
+pkgver=2.19
+pkgrel=1
+pkgdesc="GraphViz - Interface to AT&T's GraphViz. Deprecated. See GraphViz2"
+arch=('any')
+url="http://search.cpan.org/dist/$_perlmod";
+license=('GPL' 'PerlArtistic')
+options=('!emptydirs')
+depends=('graphviz' 'perl-file-which' 'perl-ipc-run' 'perl-parse-recdescent'
+ 'perl-xml-twig' 'perl-xml-xpath' 'perl-libwww')
+makedepends=('perl-module-build')
+checkdepends=('perl-test-pod')
+source=("https://cpan.metacpan.org/authors/id/R/RS/RSAVAGE/$_perlmod-$pkgver.tgz";)
+md5sums=('a394f6a0366e6561af45b4c2d00688df')
+
+build() {
+  cd "$srcdir/$_perlmod-$pkgver"
+
+  perl Build.PL installdirs=vendor destdir="$pkgdir/"
+  perl Build
+}
+
+check() {
+  cd "$srcdir/$_perlmod-$pkgver"
+  perl Build test
+}
+
+package() {
+  cd "$srcdir/$_perlmod-$pkgver"
+  perl Build install
+}
+
+# vim:set ts=2 sw=2 et:


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

2015-11-12 Thread Felix Yan
Date: Friday, November 13, 2015 @ 03:10:52
  Author: fyan
Revision: 146662

upgpkg: perl-graphviz 2.19-1

Modified:
  perl-graphviz/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-11-13 02:05:51 UTC (rev 146661)
+++ PKGBUILD2015-11-13 02:10:52 UTC (rev 146662)
@@ -7,7 +7,7 @@
 
 _perlmod=GraphViz
 pkgname=perl-graphviz
-pkgver=2.18
+pkgver=2.19
 pkgrel=1
 pkgdesc="GraphViz - Interface to AT&T's GraphViz. Deprecated. See GraphViz2"
 arch=('any')
@@ -19,7 +19,7 @@
 makedepends=('perl-module-build')
 checkdepends=('perl-test-pod')
 
source=("https://cpan.metacpan.org/authors/id/R/RS/RSAVAGE/$_perlmod-$pkgver.tgz";)
-md5sums=('cd507325c0bbfcc168a034abaf60a12b')
+md5sums=('a394f6a0366e6561af45b4c2d00688df')
 
 build() {
   cd "$srcdir/$_perlmod-$pkgver"


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

2015-11-12 Thread Felix Yan
Date: Friday, November 13, 2015 @ 03:05:51
  Author: fyan
Revision: 146661

archrelease: copy trunk to community-any

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

--+
 PKGBUILD |  122 ++---
 1 file changed, 61 insertions(+), 61 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-11-13 02:05:31 UTC (rev 146660)
+++ PKGBUILD2015-11-13 02:05:51 UTC (rev 146661)
@@ -1,61 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Hugo Osvaldo Barrera 
-
-pkgbase=python-setuptools_scm
-pkgname=(python-setuptools_scm python2-setuptools_scm)
-_pkgname=setuptools_scm
-pkgver=1.8.0
-pkgrel=2
-pkgdesc="Handles managing your python package versions in scm metadata."
-arch=('any')
-url="https://github.com/pypa/setuptools_scm";
-license=('MIT')
-makedepends=('python-setuptools' 'python2-setuptools' 'git')
-checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'mercurial')
-source=("git+https://github.com/pypa/setuptools_scm.git#tag=v$pkgver";)
-md5sums=('SKIP')
-
-prepare() {
-  cp -a $_pkgname{,-py2}
-}
-
-build() {
-  cd "${srcdir}/${_pkgname}"
-  python setup.py build
-  python setup.py egg_info
-
-  cd "${srcdir}/${_pkgname}-py2"
-  python2 setup.py build
-  python2 setup.py egg_info
-}
-
-check() {
-  # Hack entry points by installing it
-
-  cd "$srcdir/${_pkgname}"
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.5/site-packages:$PYTHONPATH" 
python setup.py ptr
-
-  cd "$srcdir/${_pkgname}-py2"
-  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" 
python2 setup.py ptr
-}
-
-package_python-setuptools_scm() {
-  depends=('python-setuptools')
-
-  cd "${srcdir}/${_pkgname}"
-  python setup.py install --root "$pkgdir"
-
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_python2-setuptools_scm() {
-  depends=('python2-setuptools')
-
-  cd "${srcdir}/${_pkgname}-py2"
-  python2 setup.py install --root "$pkgdir"
-
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: python-setuptools_scm/repos/community-any/PKGBUILD (from rev 146660, 
python-setuptools_scm/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-11-13 02:05:51 UTC (rev 146661)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Hugo Osvaldo Barrera 
+
+pkgbase=python-setuptools_scm
+pkgname=(python-setuptools_scm python2-setuptools_scm)
+_pkgname=setuptools_scm
+pkgver=1.9.0
+pkgrel=1
+pkgdesc="Handles managing your python package versions in scm metadata."
+arch=('any')
+url="https://github.com/pypa/setuptools_scm";
+license=('MIT')
+makedepends=('python-setuptools' 'python2-setuptools' 'git')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'mercurial')
+source=("git+https://github.com/pypa/setuptools_scm.git#tag=v$pkgver";)
+md5sums=('SKIP')
+
+prepare() {
+  cp -a $_pkgname{,-py2}
+}
+
+build() {
+  cd "${srcdir}/${_pkgname}"
+  python setup.py build
+  python setup.py egg_info
+
+  cd "${srcdir}/${_pkgname}-py2"
+  python2 setup.py build
+  python2 setup.py egg_info
+}
+
+check() {
+  # Hack entry points by installing it
+
+  cd "$srcdir/${_pkgname}"
+  python setup.py install --root="$PWD/tmp_install" --optimize=1
+  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.5/site-packages:$PYTHONPATH" 
python setup.py ptr
+
+  cd "$srcdir/${_pkgname}-py2"
+  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
+  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" 
python2 setup.py ptr
+}
+
+package_python-setuptools_scm() {
+  depends=('python-setuptools')
+
+  cd "${srcdir}/${_pkgname}"
+  python setup.py install --root "$pkgdir"
+
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_python2-setuptools_scm() {
+  depends=('python2-setuptools')
+
+  cd "${srcdir}/${_pkgname}-py2"
+  python2 setup.py install --root "$pkgdir"
+
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2015-11-12 Thread Felix Yan
Date: Friday, November 13, 2015 @ 03:05:31
  Author: fyan
Revision: 146660

upgpkg: python-setuptools_scm 1.9.0-1

Modified:
  python-setuptools_scm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-11-13 01:17:49 UTC (rev 146659)
+++ PKGBUILD2015-11-13 02:05:31 UTC (rev 146660)
@@ -5,8 +5,8 @@
 pkgbase=python-setuptools_scm
 pkgname=(python-setuptools_scm python2-setuptools_scm)
 _pkgname=setuptools_scm
-pkgver=1.8.0
-pkgrel=2
+pkgver=1.9.0
+pkgrel=1
 pkgdesc="Handles managing your python package versions in scm metadata."
 arch=('any')
 url="https://github.com/pypa/setuptools_scm";


[arch-commits] Commit in nodejs-babel-cli/repos/community-any (4 files)

2015-11-12 Thread Felix Yan
Date: Friday, November 13, 2015 @ 02:17:49
  Author: fyan
Revision: 146659

archrelease: copy trunk to community-any

Added:
  nodejs-babel-cli/repos/community-any/LICENSE
(from rev 146658, nodejs-babel-cli/trunk/LICENSE)
  nodejs-babel-cli/repos/community-any/PKGBUILD
(from rev 146658, nodejs-babel-cli/trunk/PKGBUILD)
Deleted:
  nodejs-babel-cli/repos/community-any/LICENSE
  nodejs-babel-cli/repos/community-any/PKGBUILD

--+
 LICENSE  |   44 ++--
 PKGBUILD |   54 +++---
 2 files changed, 49 insertions(+), 49 deletions(-)

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-11-13 01:17:30 UTC (rev 146658)
+++ PKGBUILD2015-11-13 01:17:49 UTC (rev 146659)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Mario Finelli 
-# Contributor: Andy Weidenbaum 
-# Contributor: Peter Wu 
-
-_npmname=babel-cli
-pkgname=nodejs-$_npmname
-pkgver=6.1.4
-pkgrel=1
-pkgdesc="A compiler for writing next generation JavaScript"
-arch=('any')
-url="https://babeljs.io/";
-license=('MIT')
-depends=('nodejs')
-makedepends=('npm')
-source=("https://registry.npmjs.org/$_npmname/-/$_npmname-$pkgver.tgz";
-LICENSE)
-noextract=($_npmname-$pkgver.tgz)
-sha256sums=('cf04d0d4a92ef253b95b340ce6ebe087ab7ae61a418929adf8762a88aa120050'
-'8a5a22eb7991f5a022b91273b2395c2342f56fb43deddd29c248efb40c8ad62c')
-
-package() {
-  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$_npmname-$pkgver.tgz
-  rm -r "$pkgdir"/usr/etc
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: nodejs-babel-cli/repos/community-any/PKGBUILD (from rev 146658, 
nodejs-babel-cli/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-11-13 01:17:49 UTC (rev 146659)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Mario Finelli 
+# Contributor: Andy Weidenbaum 
+# Contributor: Peter Wu 
+
+_npmname=babel-cli
+pkgname=nodejs-$_npmname
+pkgver=6.1.18
+pkgrel=1
+pkgdesc="A compiler for writing next generation JavaScript"
+arch=('any')
+url="https://babeljs.io/";
+licens

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

2015-11-12 Thread Felix Yan
Date: Friday, November 13, 2015 @ 02:17:30
  Author: fyan
Revision: 146658

upgpkg: nodejs-babel-cli 6.1.18-1

Modified:
  nodejs-babel-cli/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-11-12 23:30:52 UTC (rev 146657)
+++ PKGBUILD2015-11-13 01:17:30 UTC (rev 146658)
@@ -6,7 +6,7 @@
 
 _npmname=babel-cli
 pkgname=nodejs-$_npmname
-pkgver=6.1.4
+pkgver=6.1.18
 pkgrel=1
 pkgdesc="A compiler for writing next generation JavaScript"
 arch=('any')
@@ -17,7 +17,7 @@
 source=("https://registry.npmjs.org/$_npmname/-/$_npmname-$pkgver.tgz";
 LICENSE)
 noextract=($_npmname-$pkgver.tgz)
-sha256sums=('cf04d0d4a92ef253b95b340ce6ebe087ab7ae61a418929adf8762a88aa120050'
+sha256sums=('f275dcc15b899abaff412ac1630fbb5d33b9c0cb5dae3ad4e267f0c5d21f4de3'
 '8a5a22eb7991f5a022b91273b2395c2342f56fb43deddd29c248efb40c8ad62c')
 
 package() {


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

2015-11-12 Thread Antonio Rojas
Date: Friday, November 13, 2015 @ 00:30:52
  Author: arojas
Revision: 146657

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

Added:
  maxima-ecl/repos/community-i686/PKGBUILD
(from rev 146656, maxima-ecl/trunk/PKGBUILD)
  maxima-ecl/repos/community-i686/build-fasl.patch
(from rev 146656, maxima-ecl/trunk/build-fasl.patch)
  maxima-ecl/repos/community-i686/matrixexp.patch
(from rev 146656, maxima-ecl/trunk/matrixexp.patch)
  maxima-ecl/repos/community-i686/maxima.desktop
(from rev 146656, maxima-ecl/trunk/maxima.desktop)
  maxima-ecl/repos/community-i686/maxima.install
(from rev 146656, maxima-ecl/trunk/maxima.install)
  maxima-ecl/repos/community-x86_64/PKGBUILD
(from rev 146656, maxima-ecl/trunk/PKGBUILD)
  maxima-ecl/repos/community-x86_64/build-fasl.patch
(from rev 146656, maxima-ecl/trunk/build-fasl.patch)
  maxima-ecl/repos/community-x86_64/matrixexp.patch
(from rev 146656, maxima-ecl/trunk/matrixexp.patch)
  maxima-ecl/repos/community-x86_64/maxima.desktop
(from rev 146656, maxima-ecl/trunk/maxima.desktop)
  maxima-ecl/repos/community-x86_64/maxima.install
(from rev 146656, maxima-ecl/trunk/maxima.install)
Deleted:
  maxima-ecl/repos/community-i686/PKGBUILD
  maxima-ecl/repos/community-i686/build-fasl.patch
  maxima-ecl/repos/community-i686/matrixexp.patch
  maxima-ecl/repos/community-i686/maxima.desktop
  maxima-ecl/repos/community-i686/maxima.install
  maxima-ecl/repos/community-x86_64/PKGBUILD
  maxima-ecl/repos/community-x86_64/build-fasl.patch
  maxima-ecl/repos/community-x86_64/matrixexp.patch
  maxima-ecl/repos/community-x86_64/maxima.desktop
  maxima-ecl/repos/community-x86_64/maxima.install

---+
 /PKGBUILD |  138 
 /build-fasl.patch |   46 
 /matrixexp.patch  |   26 ++
 /maxima.desktop   |   22 +
 /maxima.install   |   36 +
 community-i686/PKGBUILD   |   69 --
 community-i686/build-fasl.patch   |   23 --
 community-i686/matrixexp.patch|   13 ---
 community-i686/maxima.desktop |   11 --
 community-i686/maxima.install |   18 
 community-x86_64/PKGBUILD |   69 --
 community-x86_64/build-fasl.patch |   23 --
 community-x86_64/matrixexp.patch  |   13 ---
 community-x86_64/maxima.desktop   |   11 --
 community-x86_64/maxima.install   |   18 
 15 files changed, 268 insertions(+), 268 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-11-12 23:29:34 UTC (rev 146656)
+++ community-i686/PKGBUILD 2015-11-12 23:30:52 UTC (rev 146657)
@@ -1,69 +0,0 @@
-# $Id: PKGBUILD 150832 2012-02-23 12:01:17Z juergen $
-# Maintainer: Antonio Rojas 
-# Contributor: Ronald van Haren 
-# Contributor: Damir Perisa 
-# Modified to compile against ecl by: maribu
-
-pkgname=maxima-ecl
-_pkgname=maxima
-pkgver=5.37.2
-_eclver=16.0.0
-pkgrel=2
-pkgdesc="A sophisticated computer algebra system (compiled against ecl)"
-arch=(i686 x86_64)
-license=(GPL)
-url="http://maxima.sourceforge.net";
-depends=(ecl=$_eclver texinfo)
-makedepends=(python2 emacs patch)
-optdepends=('gnuplot: plotting capabilities' 'rlwrap: readline support via 
/usr/bin/rmaxima' 'tk: graphical xmaxima interface')
-conflicts=(maxima)
-provides=(maxima)
-options=(!zipman) # don't zip info pages or they won't work inside maxima
-install=maxima.install
-source=("http://downloads.sourceforge.net/sourceforge/${_pkgname}/${_pkgname}-${pkgver}.tar.gz";
-"${_pkgname}.desktop" 'build-fasl.patch' 'matrixexp.patch')
-md5sums=('1038d68116a9b516e046a76f68ba5115'
- '24aa81126fbb8b726854e5a80d4c2415'
- 'eb33481ea06afb97743af06ff52c099b'
- '0a1fb7bb0cfdede965252b75decc2c0d')
-
-prepare() {
-  cd $_pkgname-$pkgver
-
-# set correct python executable to create docs
-  sed -i "s|${PYTHONBIN:-python}|python2|" doc/info/extract_categories.sh
-
-# build maxima ecl library
-  patch -p1 -i ../build-fasl.patch
-# fix matrix exponentiation
-  patch -p1 -i ../matrixexp.patch
-}
-
-build() {
-  cd $_pkgname-$pkgver
-
-  # set correct python executable to create docs
-  sed -i "s|${PYTHONBIN:-python}|python2|" doc/info/extract_categories.sh
-
-  ./configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info \
-   --libexecdir=/usr/lib --enable-ecl --with-default-lisp=ecl
-  make -j1
-}
-
-package() {
-  cd $_pkgname-$pkgver
-  make DESTDIR="$pkgdir" emacsdir=/usr/share/emacs/site-lisp/maxima install
-
-  # install some freedesktop.org compatibility
-  install -Dm644 ${srcdir}/${_pkgname}.desktop \
-   $pkgdir/usr/share/applications/${_pkgname}.desktop
-
-  # make sure, we have a nice icon for the desktop file at the right place
-  install -d $pkgdir/usr/share/pixmaps/
-  ln -s /usr/share/maxima/${pkgver}/xmaxima/maxima-ne

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

2015-11-12 Thread Antonio Rojas
Date: Friday, November 13, 2015 @ 00:29:34
  Author: arojas
Revision: 146656

Update to 5.37.3

Modified:
  maxima-ecl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-11-12 22:51:51 UTC (rev 146655)
+++ PKGBUILD2015-11-12 23:29:34 UTC (rev 146656)
@@ -6,9 +6,9 @@
 
 pkgname=maxima-ecl
 _pkgname=maxima
-pkgver=5.37.2
+pkgver=5.37.3
 _eclver=16.0.0
-pkgrel=2
+pkgrel=1
 pkgdesc="A sophisticated computer algebra system (compiled against ecl)"
 arch=(i686 x86_64)
 license=(GPL)
@@ -22,7 +22,7 @@
 install=maxima.install
 
source=("http://downloads.sourceforge.net/sourceforge/${_pkgname}/${_pkgname}-${pkgver}.tar.gz";
 "${_pkgname}.desktop" 'build-fasl.patch' 'matrixexp.patch')
-md5sums=('1038d68116a9b516e046a76f68ba5115'
+md5sums=('ec01c327677f8f40ab3ce7fe69cbe3ce'
  '24aa81126fbb8b726854e5a80d4c2415'
  'eb33481ea06afb97743af06ff52c099b'
  '0a1fb7bb0cfdede965252b75decc2c0d')


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

2015-11-12 Thread Antonio Rojas
Date: Thursday, November 12, 2015 @ 23:51:51
  Author: arojas
Revision: 146655

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-11-12 22:51:08 UTC (rev 146654)
+++ community-i686/PKGBUILD 2015-11-12 22:51:51 UTC (rev 146655)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-
-pkgname=eclib
-pkgver=20150827
-pkgrel=2
-pkgdesc="Includes mwrank (for 2-descent on elliptic curves over Q) and modular 
symbol code used to create the elliptic curve database"
-arch=(i686 x86_64)
-url="https://github.com/JohnCremona/eclib/";
-license=(GPL)
-depends=(flint pari-sage)
-source=("https://github.com/JohnCremona/eclib/archive/v$pkgver.tar.gz";)
-md5sums=('6a9d3b001a7035697079fb08c420e4a3')
-
-build() {
-  cd $pkgname-$pkgver
-  ./autogen.sh
-  ./configure --prefix=/usr --with-flint=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make install DESTDIR="$pkgdir"
-}
-

Copied: eclib/repos/community-i686/PKGBUILD (from rev 146654, 
eclib/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-11-12 22:51:51 UTC (rev 146655)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgname=eclib
+pkgver=20150827
+pkgrel=3
+pkgdesc="Includes mwrank (for 2-descent on elliptic curves over Q) and modular 
symbol code used to create the elliptic curve database"
+arch=(i686 x86_64)
+url="https://github.com/JohnCremona/eclib/";
+license=(GPL)
+depends=(flint pari-sage boost-libs)
+makedepends=(boost)
+source=("https://github.com/JohnCremona/eclib/archive/v$pkgver.tar.gz";)
+md5sums=('6a9d3b001a7035697079fb08c420e4a3')
+
+build() {
+  cd $pkgname-$pkgver
+  ./autogen.sh
+  ./configure --prefix=/usr --with-flint=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make install DESTDIR="$pkgdir"
+}
+

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-11-12 22:51:08 UTC (rev 146654)
+++ community-x86_64/PKGBUILD   2015-11-12 22:51:51 UTC (rev 146655)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-
-pkgname=eclib
-pkgver=20150827
-pkgrel=2
-pkgdesc="Includes mwrank (for 2-descent on elliptic curves over Q) and modular 
symbol code used to create the elliptic curve database"
-arch=(i686 x86_64)
-url="https://github.com/JohnCremona/eclib/";
-license=(GPL)
-depends=(flint pari-sage)
-source=("https://github.com/JohnCremona/eclib/archive/v$pkgver.tar.gz";)
-md5sums=('6a9d3b001a7035697079fb08c420e4a3')
-
-build() {
-  cd $pkgname-$pkgver
-  ./autogen.sh
-  ./configure --prefix=/usr --with-flint=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make install DESTDIR="$pkgdir"
-}
-

Copied: eclib/repos/community-x86_64/PKGBUILD (from rev 146654, 
eclib/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-11-12 22:51:51 UTC (rev 146655)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgname=eclib
+pkgver=20150827
+pkgrel=3
+pkgdesc="Includes mwrank (for 2-descent on elliptic curves over Q) and modular 
symbol code used to create the elliptic curve database"
+arch=(i686 x86_64)
+url="https://github.com/JohnCremona/eclib/";
+license=(GPL)
+depends=(flint pari-sage boost-libs)
+makedepends=(boost)
+source=("https://github.com/JohnCremona/eclib/archive/v$pkgver.tar.gz";)
+md5sums=('6a9d3b001a7035697079fb08c420e4a3')
+
+build() {
+  cd $pkgname-$pkgver
+  ./autogen.sh
+  ./configure --prefix=/usr --with-flint=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make install DESTDIR="$pkgdir"
+}
+


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

2015-11-12 Thread Antonio Rojas
Date: Thursday, November 12, 2015 @ 23:51:08
  Author: arojas
Revision: 146654

Enable boost

Modified:
  eclib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-11-12 20:35:09 UTC (rev 146653)
+++ PKGBUILD2015-11-12 22:51:08 UTC (rev 146654)
@@ -3,12 +3,13 @@
 
 pkgname=eclib
 pkgver=20150827
-pkgrel=2
+pkgrel=3
 pkgdesc="Includes mwrank (for 2-descent on elliptic curves over Q) and modular 
symbol code used to create the elliptic curve database"
 arch=(i686 x86_64)
 url="https://github.com/JohnCremona/eclib/";
 license=(GPL)
-depends=(flint pari-sage)
+depends=(flint pari-sage boost-libs)
+makedepends=(boost)
 source=("https://github.com/JohnCremona/eclib/archive/v$pkgver.tar.gz";)
 md5sums=('6a9d3b001a7035697079fb08c420e4a3')
 


[arch-commits] Commit in meld/repos/extra-any (5 files)

2015-11-12 Thread Jan Steffens
Date: Thursday, November 12, 2015 @ 22:09:29
  Author: heftig
Revision: 250824

archrelease: copy trunk to extra-any

Added:
  meld/repos/extra-any/PKGBUILD
(from rev 250823, meld/trunk/PKGBUILD)
  meld/repos/extra-any/meld.install
(from rev 250823, meld/trunk/meld.install)
Deleted:
  meld/repos/extra-any/PKGBUILD
  meld/repos/extra-any/meld.install
  meld/repos/extra-any/text_iter.patch

-+
 PKGBUILD|   83 +-
 meld.install|   28 +-
 text_iter.patch |   11 ---
 3 files changed, 53 insertions(+), 69 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-11-12 21:08:56 UTC (rev 250823)
+++ PKGBUILD2015-11-12 21:09:29 UTC (rev 250824)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Gaetan Bisson 
-# Contributor: Daniel J Griffiths 
-# Contributor: Douglas Soares de Andrade 
-
-pkgname=meld
-pkgver=3.14.1
-pkgrel=2
-pkgdesc='Visual diff and merge tool'
-url='http://meldmerge.org/'
-license=(GPL)
-arch=(any)
-makedepends=(intltool itstool)
-install=meld.install
-depends=(python2-gobject python2-cairo gtksourceview3 hicolor-icon-theme 
desktop-file-utils
- gsettings-desktop-schemas)
-optdepends=('python2-dbus: open a new tab in an already running instance')
-source=("http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-${pkgver}.tar.xz";
-text_iter.patch)
-sha1sums=('a2db7e96bbd99dc038de22fb5e5a0f94668b76c1'
-  'b1820837bfeda67f557a390703b72855d5d78dbf')
-
-# Meld does not support Python 3. The build succeeds, but
-# the main executable checks the version and errors out.
-
-prepare() {
-  cd $pkgname-$pkgver
-
-  # Patch Gtk 3.18.3 API break 
https://bugzilla.gnome.org/show_bug.cgi?id=757881
-  patch -Np1 -i ../text_iter.patch
-}
-
-build() {
-  cd $pkgname-$pkgver
-  python2 setup.py build
-}
-
-package() {
-  cd $pkgname-$pkgver
-  # using --skip-build breaks install
-  python2 setup.py --no-update-icon-cache --no-compile-schemas \
-install --prefix=/usr --root="$pkgdir" --optimize=1
-}

Copied: meld/repos/extra-any/PKGBUILD (from rev 250823, meld/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-11-12 21:09:29 UTC (rev 250824)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Gaetan Bisson 
+# Contributor: Daniel J Griffiths 
+# Contributor: Douglas Soares de Andrade 
+
+pkgname=meld
+pkgver=3.14.1
+pkgrel=3
+pkgdesc='Visual diff and merge tool'
+url='http://meldmerge.org/'
+license=(GPL)
+arch=(any)
+makedepends=(intltool itstool)
+install=meld.install
+depends=(python2-gobject python2-cairo gtksourceview3 hicolor-icon-theme 
desktop-file-utils
+ gsettings-desktop-schemas)
+optdepends=('python2-dbus: open a new tab in an already running instance')
+source=("http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-${pkgver}.tar.xz";)
+sha1sums=('a2db7e96bbd99dc038de22fb5e5a0f94668b76c1')
+
+# Meld does not support Python 3. The build succeeds, but
+# the main executable checks the version and errors out.
+
+prepare() {
+  cd $pkgname-$pkgver
+}
+
+build() {
+  cd $pkgname-$pkgver
+  python2 setup.py build
+}
+
+package() {
+  cd $pkgname-$pkgver
+  # using --skip-build breaks install
+  python2 setup.py --no-update-icon-cache --no-compile-schemas \
+install --prefix=/usr --root="$pkgdir" --optimize=1
+}

Deleted: meld.install
===
--- meld.install2015-11-12 21:08:56 UTC (rev 250823)
+++ meld.install2015-11-12 21:09:29 UTC (rev 250824)
@@ -1,14 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-  glib-compile-schemas usr/share/glib-2.0/schemas
-  update-desktop-database -q
-  update-mime-database usr/share/mime &> /dev/null
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: meld/repos/extra-any/meld.install (from rev 250823, 
meld/trunk/meld.install)
===
--- meld.install(rev 0)
+++ meld.install2015-11-12 21:09:29 UTC (rev 250824)
@@ -0,0 +1,14 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+  glib-compile-schemas usr/share/glib-2.0/schemas
+  update-desktop-database -q
+  update-mime-database usr/share/mime &> /dev/null
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Deleted: text_iter.patch
===
--- text_iter.patch 2015-11-12 21:08:56 UTC (rev 250823)
+++ text_iter.patch 2015-11-12 21:09:29 UTC (rev 250824)
@@ -1,11 +0,0 @@
 meld-3.14.1-orig/meld/meldbuffer.py 2015-10-02 22:10:11.0 -0400

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

2015-11-12 Thread Jan Steffens
Date: Thursday, November 12, 2015 @ 22:08:56
  Author: heftig
Revision: 250823

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

Added:
  gtk3/repos/extra-i686/PKGBUILD
(from rev 250822, gtk3/trunk/PKGBUILD)
  gtk3/repos/extra-i686/gtk-update-icon-cache.install
(from rev 250822, gtk3/trunk/gtk-update-icon-cache.install)
  gtk3/repos/extra-i686/gtk3.install
(from rev 250822, gtk3/trunk/gtk3.install)
  gtk3/repos/extra-i686/settings.ini
(from rev 250822, gtk3/trunk/settings.ini)
  gtk3/repos/extra-x86_64/PKGBUILD
(from rev 250822, gtk3/trunk/PKGBUILD)
  gtk3/repos/extra-x86_64/gtk-update-icon-cache.install
(from rev 250822, gtk3/trunk/gtk-update-icon-cache.install)
  gtk3/repos/extra-x86_64/gtk3.install
(from rev 250822, gtk3/trunk/gtk3.install)
  gtk3/repos/extra-x86_64/settings.ini
(from rev 250822, gtk3/trunk/settings.ini)
Deleted:
  gtk3/repos/extra-i686/PKGBUILD
  gtk3/repos/extra-i686/gtk-update-icon-cache.install
  gtk3/repos/extra-i686/gtk3.install
  gtk3/repos/extra-i686/settings.ini
  gtk3/repos/extra-x86_64/PKGBUILD
  gtk3/repos/extra-x86_64/gtk-update-icon-cache.install
  gtk3/repos/extra-x86_64/gtk3.install
  gtk3/repos/extra-x86_64/settings.ini

+
 /PKGBUILD  |  130 +++
 /gtk-update-icon-cache.install |6 +
 /gtk3.install  |   36 +++
 /settings.ini  |8 +
 extra-i686/PKGBUILD|   65 -
 extra-i686/gtk-update-icon-cache.install   |3 
 extra-i686/gtk3.install|   18 ---
 extra-i686/settings.ini|4 
 extra-x86_64/PKGBUILD  |   65 -
 extra-x86_64/gtk-update-icon-cache.install |3 
 extra-x86_64/gtk3.install  |   18 ---
 extra-x86_64/settings.ini  |4 
 12 files changed, 180 insertions(+), 180 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-11-12 21:04:00 UTC (rev 250822)
+++ extra-i686/PKGBUILD 2015-11-12 21:08:56 UTC (rev 250823)
@@ -1,65 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru 
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgbase=gtk3
-pkgname=(gtk3 gtk-update-icon-cache)
-pkgver=3.18.3
-pkgrel=1
-pkgdesc="GObject-based multi-platform GUI toolkit"
-arch=(i686 x86_64)
-url="http://www.gtk.org/";
-depends=(atk cairo libcups libxcursor libxinerama libxrandr libxi libepoxy 
gdk-pixbuf2
- libxcomposite libxdamage pango shared-mime-info colord at-spi2-atk 
wayland libxkbcommon
- adwaita-icon-theme json-glib rest librsvg)
-makedepends=(gobject-introspection libcanberra)
-license=(LGPL)
-source=(https://download.gnome.org/sources/gtk+/${pkgver:0:4}/gtk+-$pkgver.tar.xz
-settings.ini)
-sha256sums=('f3c76791f93f51e260b03676f83007730b9875a0a9bf5cd42442e2f14e593546'
-'01fc1d81dc82c4a052ac6e25bf9a04e7647267cc3017bc91f9ce3e63e5eb9202')
-
-prepare() {
-cd gtk+-$pkgver
-}
-
-build() {
-cd "gtk+-$pkgver"
-
-CXX=/bin/false ./configure --prefix=/usr \
---sysconfdir=/etc \
---localstatedir=/var \
---disable-schemas-compile \
---enable-x11-backend \
---enable-broadway-backend \
---enable-wayland-backend
-
-#https://bugzilla.gnome.org/show_bug.cgi?id=655517
-sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-make
-}
-
-package_gtk3() {
-depends+=(gtk-update-icon-cache)
-optdepends=('libcanberra: gtk3-widget-factory demo')
-install=gtk3.install
-
-cd "gtk+-$pkgver"
-make DESTDIR="$pkgdir" install
-install -Dm644 ../settings.ini "$pkgdir/usr/share/gtk-3.0/settings.ini"
-
-# split this out to use with gtk2 too
-rm "$pkgdir/usr/bin/gtk-update-icon-cache"
-}
-
-package_gtk-update-icon-cache() {
-pkgdesc="GTK+ icon cache updater"
-depends=(gdk-pixbuf2 hicolor-icon-theme)
-install=gtk-update-icon-cache.install
-
-cd gtk+-$pkgver/gtk
-install -Dm755 gtk-update-icon-cache 
"$pkgdir/usr/bin/gtk-update-icon-cache"
-}
-
-# vim:set et sw=4:

Copied: gtk3/repos/extra-i686/PKGBUILD (from rev 250822, gtk3/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-11-12 21:08:56 UTC (rev 250823)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer: Ionut Biru 
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgbase=gtk3
+pkgname=(gtk3 gtk-update-icon-cache)
+pkgver=3.18.4
+pkgrel=1
+pkgdesc="GObject-based multi-platform GUI toolkit"
+arch=(i686 x86_64)
+url="http://www.gtk.org/";
+depends=(atk cairo libcups libxcursor libxinerama libxrandr libxi libepoxy 
gdk-pixbuf2
+ libxcomposite libxdamage pango shared-mime-info colord at-spi2-atk 
wayland libxkbcommon
+ adwaita-icon-theme json-glib rest librsv

[arch-commits] Commit in gnome-shell-extensions/repos/extra-any (4 files)

2015-11-12 Thread Jan Steffens
Date: Thursday, November 12, 2015 @ 22:04:00
  Author: heftig
Revision: 250822

archrelease: copy trunk to extra-any

Added:
  gnome-shell-extensions/repos/extra-any/PKGBUILD
(from rev 250821, gnome-shell-extensions/trunk/PKGBUILD)
  gnome-shell-extensions/repos/extra-any/gnome-shell-extensions.install
(from rev 250821, 
gnome-shell-extensions/trunk/gnome-shell-extensions.install)
Deleted:
  gnome-shell-extensions/repos/extra-any/PKGBUILD
  gnome-shell-extensions/repos/extra-any/gnome-shell-extensions.install

+
 PKGBUILD   |   56 +++
 gnome-shell-extensions.install |   22 +++
 2 files changed, 39 insertions(+), 39 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-11-12 21:03:34 UTC (rev 250821)
+++ PKGBUILD2015-11-12 21:04:00 UTC (rev 250822)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=gnome-shell-extensions
-pkgver=3.18.1
-pkgrel=1
-pkgdesc="Extensions for GNOME shell, including classic mode"
-arch=(any)
-url="http://live.gnome.org/GnomeShell/Extensions";
-license=(GPL2)
-depends=(gnome-shell)
-makedepends=(intltool)
-optdepends=('nautilus: gnome-classic session')
-install=gnome-shell-extensions.install
-groups=('gnome')
-source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('7a7535420c0c808d28b5912ed42cfb221930010193083f2d8a7719ea1ffa1cc2')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --libexecdir=/usr/lib/gnome-session 
--enable-extensions=all
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: gnome-shell-extensions/repos/extra-any/PKGBUILD (from rev 250821, 
gnome-shell-extensions/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-11-12 21:04:00 UTC (rev 250822)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=gnome-shell-extensions
+pkgver=3.18.2
+pkgrel=1
+pkgdesc="Extensions for GNOME shell, including classic mode"
+arch=(any)
+url="http://live.gnome.org/GnomeShell/Extensions";
+license=(GPL2)
+depends=(gnome-shell)
+makedepends=(intltool)
+optdepends=('nautilus: gnome-classic session')
+install=gnome-shell-extensions.install
+groups=('gnome')
+source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('cc514ffc896ed8c04853a89cb8e97058f9d5518313becf7c92aea5210b8adf61')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --libexecdir=/usr/lib/gnome-session 
--enable-extensions=all
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: gnome-shell-extensions.install
===
--- gnome-shell-extensions.install  2015-11-12 21:03:34 UTC (rev 250821)
+++ gnome-shell-extensions.install  2015-11-12 21:04:00 UTC (rev 250822)
@@ -1,11 +0,0 @@
-post_install() {
-  glib-compile-schemas usr/share/glib-2.0/schemas
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: gnome-shell-extensions/repos/extra-any/gnome-shell-extensions.install 
(from rev 250821, gnome-shell-extensions/trunk/gnome-shell-extensions.install)
===
--- gnome-shell-extensions.install  (rev 0)
+++ gnome-shell-extensions.install  2015-11-12 21:04:00 UTC (rev 250822)
@@ -0,0 +1,11 @@
+post_install() {
+  glib-compile-schemas usr/share/glib-2.0/schemas
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}


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

2015-11-12 Thread Jan Steffens
Date: Thursday, November 12, 2015 @ 22:03:34
  Author: heftig
Revision: 250821

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

Added:
  gnome-shell/repos/extra-i686/PKGBUILD
(from rev 250820, gnome-shell/trunk/PKGBUILD)
  gnome-shell/repos/extra-i686/gnome-shell.install
(from rev 250820, gnome-shell/trunk/gnome-shell.install)
  gnome-shell/repos/extra-i686/nm-libexecdir.patch
(from rev 250820, gnome-shell/trunk/nm-libexecdir.patch)
  gnome-shell/repos/extra-x86_64/PKGBUILD
(from rev 250820, gnome-shell/trunk/PKGBUILD)
  gnome-shell/repos/extra-x86_64/gnome-shell.install
(from rev 250820, gnome-shell/trunk/gnome-shell.install)
  gnome-shell/repos/extra-x86_64/nm-libexecdir.patch
(from rev 250820, gnome-shell/trunk/nm-libexecdir.patch)
Deleted:
  gnome-shell/repos/extra-i686/PKGBUILD
  gnome-shell/repos/extra-i686/fs1.patch
  gnome-shell/repos/extra-i686/fs2.patch
  gnome-shell/repos/extra-i686/gnome-shell.install
  gnome-shell/repos/extra-i686/nm-libexecdir.patch
  gnome-shell/repos/extra-x86_64/PKGBUILD
  gnome-shell/repos/extra-x86_64/fs1.patch
  gnome-shell/repos/extra-x86_64/fs2.patch
  gnome-shell/repos/extra-x86_64/gnome-shell.install
  gnome-shell/repos/extra-x86_64/nm-libexecdir.patch

--+
 /PKGBUILD|  104 +
 /gnome-shell.install |   38 +
 /nm-libexecdir.patch |   24 
 extra-i686/PKGBUILD  |   58 
 extra-i686/fs1.patch |   44 ---
 extra-i686/fs2.patch |   51 --
 extra-i686/gnome-shell.install   |   19 --
 extra-i686/nm-libexecdir.patch   |   12 
 extra-x86_64/PKGBUILD|   58 
 extra-x86_64/fs1.patch   |   44 ---
 extra-x86_64/fs2.patch   |   51 --
 extra-x86_64/gnome-shell.install |   19 --
 extra-x86_64/nm-libexecdir.patch |   12 
 13 files changed, 166 insertions(+), 368 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-11-12 21:02:27 UTC (rev 250820)
+++ extra-i686/PKGBUILD 2015-11-12 21:03:34 UTC (rev 250821)
@@ -1,58 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru 
-# Contributor: Flamelab http://live.gnome.org/GnomeShell";
-license=(GPL2)
-depends=(accountsservice caribou gcr gjs gnome-bluetooth gnome-menus upower
- gnome-session gnome-settings-daemon gnome-themes-standard 
gsettings-desktop-schemas
- libcanberra-pulse libcroco libgdm libsecret mutter 
nm-connection-editor
- telepathy-logger telepathy-mission-control unzip gstreamer)
-makedepends=(intltool gtk-doc gnome-control-center evolution-data-server 
python gobject-introspection)
-optdepends=('gnome-control-center: System settings'
-'evolution-data-server: Evolution calendar integration')
-install=gnome-shell.install
-groups=(gnome)
-source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz
-nm-libexecdir.patch fs1.patch fs2.patch)
-sha256sums=('14a15215b3e29a25b94f69c58a6565e3a8cb2259b1ca242b906af78172bf3845'
-'e5bb10ad2e5c3e0fde3d05babd1bfdda701e553e02d493f7e54cb7832ce7e607'
-'0d2f143362ff47bfd3dcbb94d903b51b9a998f2ff97c6320f0e3fe3599089e34'
-'19f39002be34f035c7f5f8f20bad50ab38fb8ff0f023e91e832feecc54fcdc60')
-
-prepare() {
-  cd $pkgname-$pkgver
-
-  # Fullscreen animation issues
-  patch -Np1 -i ../fs1.patch
-  patch -Np1 -i ../fs2.patch
-
-  # FS#30747 FS#32730 Problems due to libexecdir different from NM
-  patch -Np1 -i ../nm-libexecdir.patch
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --libexecdir=/usr/lib/gnome-shell \
-  --localstatedir=/var --disable-static \
-  --disable-schemas-compile
-
-  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-
-  # Must exist; FS#37412
-  mkdir -p "$pkgdir/usr/share/gnome-shell/modes"
-}

Copied: gnome-shell/repos/extra-i686/PKGBUILD (from rev 250820, 
gnome-shell/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-11-12 21:03:34 UTC (rev 250821)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Ionut Biru 
+# Contributor: Flamelab http://live.gnome.org/GnomeShell";
+license=(GPL2)
+depends=(accountsservice caribou gcr gjs gnome-bluetooth gnome-menus upower
+ gnome-session gnome-settings-daemon gnome-themes-standard 
gsettings-desktop-schemas
+ libcanberra-pulse libcroco libgdm libsecret mutter 
nm-connection-editor
+ telepathy-logger telepathy-mission-control unzip gstreamer)
+makedepends=(intltool gtk-doc gnome-control-center

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

2015-11-12 Thread Jan Steffens
Date: Thursday, November 12, 2015 @ 22:02:27
  Author: heftig
Revision: 250820

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

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

-+
 /PKGBUILD   |   86 ++
 /mutter.install |   38 ++
 extra-i686/PKGBUILD |   43 -
 extra-i686/mutter.install   |   19 -
 extra-x86_64/PKGBUILD   |   43 -
 extra-x86_64/mutter.install |   19 -
 6 files changed, 124 insertions(+), 124 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-11-12 21:01:26 UTC (rev 250819)
+++ extra-i686/PKGBUILD 2015-11-12 21:02:27 UTC (rev 250820)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Maintainer: Ionut Biru 
-# Contributor: Michael Kanis 
-
-pkgname=mutter
-pkgver=3.18.1
-pkgrel=1
-pkgdesc="A window manager for GNOME"
-arch=(i686 x86_64)
-license=('GPL')
-depends=('clutter' 'dconf' 'gobject-introspection-runtime' 
'gsettings-desktop-schemas' 'libcanberra' 'startup-notification' 'zenity' 
'libsm' 'gnome-desktop' 'upower' 'libxkbcommon-x11' 'gnome-settings-daemon' 
'libgudev')
-makedepends=('intltool' 'libxkbcommon-x11' 'gobject-introspection')
-conflicts=('mutter-wayland')
-replaces=('mutter-wayland')
-url="http://www.gnome.org";
-groups=('gnome')
-options=('!emptydirs')
-install=mutter.install
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('4fdee7c9dc2db3a48f18723f47c3122aa5bddaddb8751701ce243e577e2a69a9')
-
-prepare() {
-  cd "$pkgname-$pkgver"
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --libexecdir=/usr/lib/mutter \
-  --localstatedir=/var --disable-static \
-  --disable-schemas-compile --enable-compile-warnings=minimum
-
-  #https://bugzilla.gnome.org/show_bug.cgi?id=655517
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}

Copied: mutter/repos/extra-i686/PKGBUILD (from rev 250819, 
mutter/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-11-12 21:02:27 UTC (rev 250820)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Maintainer: Ionut Biru 
+# Contributor: Michael Kanis 
+
+pkgname=mutter
+pkgver=3.18.2
+pkgrel=1
+pkgdesc="A window manager for GNOME"
+arch=(i686 x86_64)
+license=('GPL')
+depends=('clutter' 'dconf' 'gobject-introspection-runtime' 
'gsettings-desktop-schemas' 'libcanberra' 'startup-notification' 'zenity' 
'libsm' 'gnome-desktop' 'upower' 'libxkbcommon-x11' 'gnome-settings-daemon' 
'libgudev')
+makedepends=('intltool' 'libxkbcommon-x11' 'gobject-introspection')
+conflicts=('mutter-wayland')
+replaces=('mutter-wayland')
+url="http://www.gnome.org";
+groups=('gnome')
+options=('!emptydirs')
+install=mutter.install
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('8a69326f216c7575ed6cd53938b9cfc49b3b359cde95d3b6a7ed46c837261181')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --libexecdir=/usr/lib/mutter \
+  --localstatedir=/var --disable-static \
+  --disable-schemas-compile --enable-compile-warnings=minimum
+
+  #https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-i686/mutter.install
===
--- extra-i686/mutter.install   2015-11-12 21:01:26 UTC (rev 250819)
+++ extra-i686/mutter.install   2015-11-12 21:02:27 UTC (rev 250820)
@@ -1,19 +0,0 @@
-pkgname=mutter
-
-post_install() {
-glib-compile-schemas /usr/share/glib-2.0/schemas
-}
-
-pre_upgrade() {
-if [ -f /usr/share/gconf/schemas/$pkgname.schemas ]; then
-/usr/sbin/gconfpkg --uninstall $pkgname
-fi
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-post_install
-}

Copied: mutter/repos/extra-i686/mutter.install (from rev 250819, 
mutter/trunk/mutter.install)
==

[arch-commits] Commit in meld/trunk (PKGBUILD text_iter.patch)

2015-11-12 Thread Jan Steffens
Date: Thursday, November 12, 2015 @ 22:01:26
  Author: heftig
Revision: 250819

gtk 3.18.4 reverted API change

Modified:
  meld/trunk/PKGBUILD
Deleted:
  meld/trunk/text_iter.patch

-+
 PKGBUILD|   11 +++
 text_iter.patch |   11 ---
 2 files changed, 3 insertions(+), 19 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-11-12 21:01:11 UTC (rev 250818)
+++ PKGBUILD2015-11-12 21:01:26 UTC (rev 250819)
@@ -6,7 +6,7 @@
 
 pkgname=meld
 pkgver=3.14.1
-pkgrel=2
+pkgrel=3
 pkgdesc='Visual diff and merge tool'
 url='http://meldmerge.org/'
 license=(GPL)
@@ -16,10 +16,8 @@
 depends=(python2-gobject python2-cairo gtksourceview3 hicolor-icon-theme 
desktop-file-utils
  gsettings-desktop-schemas)
 optdepends=('python2-dbus: open a new tab in an already running instance')
-source=("http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-${pkgver}.tar.xz";
-text_iter.patch)
-sha1sums=('a2db7e96bbd99dc038de22fb5e5a0f94668b76c1'
-  'b1820837bfeda67f557a390703b72855d5d78dbf')
+source=("http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-${pkgver}.tar.xz";)
+sha1sums=('a2db7e96bbd99dc038de22fb5e5a0f94668b76c1')
 
 # Meld does not support Python 3. The build succeeds, but
 # the main executable checks the version and errors out.
@@ -26,9 +24,6 @@
 
 prepare() {
   cd $pkgname-$pkgver
-
-  # Patch Gtk 3.18.3 API break 
https://bugzilla.gnome.org/show_bug.cgi?id=757881
-  patch -Np1 -i ../text_iter.patch
 }
 
 build() {

Deleted: text_iter.patch
===
--- text_iter.patch 2015-11-12 21:01:11 UTC (rev 250818)
+++ text_iter.patch 2015-11-12 21:01:26 UTC (rev 250819)
@@ -1,11 +0,0 @@
 meld-3.14.1-orig/meld/meldbuffer.py 2015-10-02 22:10:11.0 -0400
-+++ meld-3.14.1/meld/meldbuffer.py  2015-11-11 20:37:09.412543281 -0500
-@@ -76,6 +76,9 @@
- self.data.filename = filename
- self.data.label = label
- 
-+def get_iter_at_line(self, line):
-+return super(MeldBuffer, self).get_iter_at_line(line)[1]
-+
- def get_iter_at_line_or_eof(self, line):
- """Return a Gtk.TextIter at the given line, or the end of the buffer.


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

2015-11-12 Thread Jan Steffens
Date: Thursday, November 12, 2015 @ 22:01:11
  Author: heftig
Revision: 250818

3.18.4

Modified:
  gtk3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-11-12 20:53:18 UTC (rev 250817)
+++ PKGBUILD2015-11-12 21:01:11 UTC (rev 250818)
@@ -4,7 +4,7 @@
 
 pkgbase=gtk3
 pkgname=(gtk3 gtk-update-icon-cache)
-pkgver=3.18.3
+pkgver=3.18.4
 pkgrel=1
 pkgdesc="GObject-based multi-platform GUI toolkit"
 arch=(i686 x86_64)
@@ -16,7 +16,7 @@
 license=(LGPL)
 
source=(https://download.gnome.org/sources/gtk+/${pkgver:0:4}/gtk+-$pkgver.tar.xz
 settings.ini)
-sha256sums=('f3c76791f93f51e260b03676f83007730b9875a0a9bf5cd42442e2f14e593546'
+sha256sums=('5400dcf280d28d24606f33d59ed48c717f7d3db425d4b6fb52e8002f0c76c7eb'
 '01fc1d81dc82c4a052ac6e25bf9a04e7647267cc3017bc91f9ce3e63e5eb9202')
 
 prepare() {


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

2015-11-12 Thread Jan Steffens
Date: Thursday, November 12, 2015 @ 21:53:18
  Author: heftig
Revision: 250817

3.18.2

Modified:
  gnome-shell-extensions/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-11-12 20:53:06 UTC (rev 250816)
+++ PKGBUILD2015-11-12 20:53:18 UTC (rev 250817)
@@ -2,7 +2,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgname=gnome-shell-extensions
-pkgver=3.18.1
+pkgver=3.18.2
 pkgrel=1
 pkgdesc="Extensions for GNOME shell, including classic mode"
 arch=(any)
@@ -14,7 +14,7 @@
 install=gnome-shell-extensions.install
 groups=('gnome')
 
source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('7a7535420c0c808d28b5912ed42cfb221930010193083f2d8a7719ea1ffa1cc2')
+sha256sums=('cc514ffc896ed8c04853a89cb8e97058f9d5518313becf7c92aea5210b8adf61')
 
 build() {
   cd $pkgname-$pkgver


[arch-commits] Commit in gnome-shell/trunk (PKGBUILD fs1.patch fs2.patch)

2015-11-12 Thread Jan Steffens
Date: Thursday, November 12, 2015 @ 21:53:06
  Author: heftig
Revision: 250816

3.18.2

Modified:
  gnome-shell/trunk/PKGBUILD
Deleted:
  gnome-shell/trunk/fs1.patch
  gnome-shell/trunk/fs2.patch

---+
 PKGBUILD  |   16 +---
 fs1.patch |   44 
 fs2.patch |   51 ---
 3 files changed, 5 insertions(+), 106 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-11-12 20:51:54 UTC (rev 250815)
+++ PKGBUILD2015-11-12 20:53:06 UTC (rev 250816)
@@ -3,8 +3,8 @@
 # Contributor: Flamelab http://live.gnome.org/GnomeShell";
@@ -19,19 +19,13 @@
 install=gnome-shell.install
 groups=(gnome)
 
source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz
-nm-libexecdir.patch fs1.patch fs2.patch)
-sha256sums=('14a15215b3e29a25b94f69c58a6565e3a8cb2259b1ca242b906af78172bf3845'
-'e5bb10ad2e5c3e0fde3d05babd1bfdda701e553e02d493f7e54cb7832ce7e607'
-'0d2f143362ff47bfd3dcbb94d903b51b9a998f2ff97c6320f0e3fe3599089e34'
-'19f39002be34f035c7f5f8f20bad50ab38fb8ff0f023e91e832feecc54fcdc60')
+nm-libexecdir.patch)
+sha256sums=('7bf94b8ae8dd6e2ef696aeb87342ff99ae327df14aa73c8f9ec94beb69913892'
+'e5bb10ad2e5c3e0fde3d05babd1bfdda701e553e02d493f7e54cb7832ce7e607')
 
 prepare() {
   cd $pkgname-$pkgver
 
-  # Fullscreen animation issues
-  patch -Np1 -i ../fs1.patch
-  patch -Np1 -i ../fs2.patch
-
   # FS#30747 FS#32730 Problems due to libexecdir different from NM
   patch -Np1 -i ../nm-libexecdir.patch
 }

Deleted: fs1.patch
===
--- fs1.patch   2015-11-12 20:51:54 UTC (rev 250815)
+++ fs1.patch   2015-11-12 20:53:06 UTC (rev 250816)
@@ -1,44 +0,0 @@
-From ab2ca17b766556eec7c5c47c4d75ef6ff45a31a7 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Florian=20M=C3=BCllner?= 
-Date: Fri, 16 Oct 2015 15:36:33 +0200
-Subject: windowManager: Fix fullscreen animations on dualscreen
-
-The translation should describe the difference between the fullscreened
-and unfullscreened position of the window - however we are currently
-assuming a fullscreen position of (0, 0) instead of the monitor's origin,
-which causes glitches on dualscreen setups.
-
-https://bugzilla.gnome.org/show_bug.cgi?id=756697

- js/ui/windowManager.js | 10 ++
- 1 file changed, 6 insertions(+), 4 deletions(-)
-
-diff --git a/js/ui/windowManager.js b/js/ui/windowManager.js
-index 2ee99e3..c8996d8 100644
 a/js/ui/windowManager.js
-+++ b/js/ui/windowManager.js
-@@ -1235,15 +1235,17 @@ const WindowManager = new Lang.Class({
- },
- 
- _fullscreenWindow: function(shellwm, actor, oldFrameRect, oldBufferRect) {
--actor.translation_x = oldFrameRect.x;
--actor.translation_y = oldFrameRect.y;
-+let monitor = 
Main.layoutManager.monitors[actor.meta_window.get_monitor()];
-+actor.translation_x = oldFrameRect.x - monitor.x;
-+actor.translation_y = oldFrameRect.y - monitor.y;
- this._fullscreenAnimation(shellwm, actor, oldFrameRect);
- },
- 
- _unfullscreenWindow: function(shellwm, actor, oldFrameRect, 
oldBufferRect) {
- let targetRect = actor.meta_window.get_frame_rect();
--actor.translation_x = -targetRect.x;
--actor.translation_y = -targetRect.y;
-+let monitor = 
Main.layoutManager.monitors[actor.meta_window.get_monitor()];
-+actor.translation_x = -(targetRect.x - monitor.x);
-+actor.translation_y = -(targetRect.y - monitor.y);
- this._fullscreenAnimation(shellwm, actor, oldFrameRect);
- },
- 
--- 
-cgit v0.11.2
-

Deleted: fs2.patch
===
--- fs2.patch   2015-11-12 20:51:54 UTC (rev 250815)
+++ fs2.patch   2015-11-12 20:53:06 UTC (rev 250816)
@@ -1,51 +0,0 @@
-From 8ae0c69ccf9dede2770ca8e74945e29b8c528aa5 Mon Sep 17 00:00:00 2001
-From: Cosimo Cecchi 
-Date: Fri, 16 Oct 2015 13:45:09 -0700
-Subject: windowManager: fix fullscreen clone being left around
-
-If we get another effect on the same actor, we should make sure to
-remove the clone through the "overwrite" methods provided by Tweener, or
-there will be a race that might end up with a stray clone being left
-around.
-
-https://bugzilla.gnome.org/show_bug.cgi?id=756714

- js/ui/windowManager.js | 15 ++-
- 1 file changed, 14 insertions(+), 1 deletion(-)
-
-diff --git a/js/ui/windowManager.js b/js/ui/windowManager.js
-index c8996d8..32b8c0f 100644
 a/js/ui/windowManager.js
-+++ b/js/ui/windowManager.js
-@@ -1296,7 +1296,10 @@ const WindowManager = new Lang.Class({
-transition: 'easeOutQuad',
-onComplete: this._sizeChangeWindowDone,
-onCompleteScope: this,
--   onCompleteParams: [shellwm, a

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

2015-11-12 Thread Jan Steffens
Date: Thursday, November 12, 2015 @ 21:51:54
  Author: heftig
Revision: 250815

3.18.2

Modified:
  mutter/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-11-12 12:16:29 UTC (rev 250814)
+++ PKGBUILD2015-11-12 20:51:54 UTC (rev 250815)
@@ -4,7 +4,7 @@
 # Contributor: Michael Kanis 
 
 pkgname=mutter
-pkgver=3.18.1
+pkgver=3.18.2
 pkgrel=1
 pkgdesc="A window manager for GNOME"
 arch=(i686 x86_64)
@@ -18,7 +18,7 @@
 options=('!emptydirs')
 install=mutter.install
 
source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('4fdee7c9dc2db3a48f18723f47c3122aa5bddaddb8751701ce243e577e2a69a9')
+sha256sums=('8a69326f216c7575ed6cd53938b9cfc49b3b359cde95d3b6a7ed46c837261181')
 
 prepare() {
   cd "$pkgname-$pkgver"


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

2015-11-12 Thread Connor Behan
Date: Thursday, November 12, 2015 @ 21:35:09
  Author: cbehan
Revision: 146653

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-11-12 20:34:43 UTC (rev 146652)
+++ community-i686/PKGBUILD 2015-11-12 20:35:09 UTC (rev 146653)
@@ -1,28 +0,0 @@
-# Maintainer: Connor Behan 
-# Contributor: mar77i 
-
-pkgname=ming
-pkgver=0.4.5
-pkgrel=2
-pkgdesc="SWF output library"
-arch=('i686' 'x86_64')
-url="http://www.libming.net/";
-license=('GPL' 'LGPL')
-depends=('freetype2' 'libpng' 'flex')
-makedepends=('bison' 'pkg-config' 'python2')
-options=('!emptydirs')
-source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.bz2)
-md5sums=('73bcbcb837f3872ef1a936c539a2513c')
-
-build() {
-  cd "$srcdir"/$pkgname-$pkgver/
-  LDFLAGS="${LDFLAGS/ -Wl,--as-needed/}"
-  PYTHON=/usr/bin/python2 ./configure --prefix=/usr --enable-python
-  make
-}
-
-package() {
-  cd "$srcdir"/$pkgname-$pkgver/
-  make DESTDIR="$pkgdir" install
-}
-

Copied: ming/repos/community-i686/PKGBUILD (from rev 146652, 
ming/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-11-12 20:35:09 UTC (rev 146653)
@@ -0,0 +1,34 @@
+# Maintainer: Connor Behan 
+# Contributor: mar77i 
+
+pkgname=ming
+pkgver=0.4.7
+pkgrel=1
+pkgdesc="SWF output library"
+arch=('i686' 'x86_64')
+url="http://www.libming.net/";
+license=('GPL' 'LGPL')
+depends=('freetype2' 'libpng' 'flex' 'giflib')
+makedepends=('bison' 'pkg-config' 'python2')
+options=('!emptydirs')
+source=(https://github.com/libming/libming/archive/${pkgname}-${pkgver//./_}.tar.gz)
+md5sums=('dbb71ae5bc131a609fbfe2005bc095cc')
+
+build() {
+  cd "$srcdir"/libming-${pkgname}-${pkgver//./_}/
+  ./autogen.sh
+  PYTHON=/usr/bin/python2 ./configure --prefix=/usr --enable-python
+
+  # Strange that this can fail when we let the Makefile do it
+  pushd src/actioncompiler
+  bison -y -p swf4 -b swf4compiler swf4compiler.y
+  bison -y -p swf5 -b swf5compiler swf5compiler.y
+  popd
+  make
+}
+
+package() {
+  cd "$srcdir"/libming-${pkgname}-${pkgver//./_}/
+  make DESTDIR="$pkgdir" install
+}
+

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-11-12 20:34:43 UTC (rev 146652)
+++ community-x86_64/PKGBUILD   2015-11-12 20:35:09 UTC (rev 146653)
@@ -1,28 +0,0 @@
-# Maintainer: Connor Behan 
-# Contributor: mar77i 
-
-pkgname=ming
-pkgver=0.4.5
-pkgrel=2
-pkgdesc="SWF output library"
-arch=('i686' 'x86_64')
-url="http://www.libming.net/";
-license=('GPL' 'LGPL')
-depends=('freetype2' 'libpng' 'flex')
-makedepends=('bison' 'pkg-config' 'python2')
-options=('!emptydirs')
-source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.bz2)
-md5sums=('73bcbcb837f3872ef1a936c539a2513c')
-
-build() {
-  cd "$srcdir"/$pkgname-$pkgver/
-  LDFLAGS="${LDFLAGS/ -Wl,--as-needed/}"
-  PYTHON=/usr/bin/python2 ./configure --prefix=/usr --enable-python
-  make
-}
-
-package() {
-  cd "$srcdir"/$pkgname-$pkgver/
-  make DESTDIR="$pkgdir" install
-}
-

Copied: ming/repos/community-x86_64/PKGBUILD (from rev 146652, 
ming/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-11-12 20:35:09 UTC (rev 146653)
@@ -0,0 +1,34 @@
+# Maintainer: Connor Behan 
+# Contributor: mar77i 
+
+pkgname=ming
+pkgver=0.4.7
+pkgrel=1
+pkgdesc="SWF output library"
+arch=('i686' 'x86_64')
+url="http://www.libming.net/";
+license=('GPL' 'LGPL')
+depends=('freetype2' 'libpng' 'flex' 'giflib')
+makedepends=('bison' 'pkg-config' 'python2')
+options=('!emptydirs')
+source=(https://github.com/libming/libming/archive/${pkgname}-${pkgver//./_}.tar.gz)
+md5sums=('dbb71ae5bc131a609fbfe2005bc095cc')
+
+build() {
+  cd "$srcdir"/libming-${pkgname}-${pkgver//./_}/
+  ./autogen.sh
+  PYTHON=/usr/bin/python2 ./configure --prefix=/usr --enable-python
+
+  # Strange that this can fail when we let the Makefile do it
+  pushd src/actioncompiler
+  bison -y -p swf4 -b swf4compiler swf4compiler.y
+  bison -y -p swf5 -b swf5compiler swf5compiler.y
+  popd
+  make
+}
+
+package() {
+  cd "$srcdir"/libming-${pkgname}-${pkgver//./_}/

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

2015-11-12 Thread Connor Behan
Date: Thursday, November 12, 2015 @ 21:34:43
  Author: cbehan
Revision: 146652

upgpkg: ming 0.4.7-1

Update to 0.4.7-1

Modified:
  ming/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-11-12 20:10:57 UTC (rev 146651)
+++ PKGBUILD2015-11-12 20:34:43 UTC (rev 146652)
@@ -2,27 +2,33 @@
 # Contributor: mar77i 
 
 pkgname=ming
-pkgver=0.4.5
-pkgrel=2
+pkgver=0.4.7
+pkgrel=1
 pkgdesc="SWF output library"
 arch=('i686' 'x86_64')
 url="http://www.libming.net/";
 license=('GPL' 'LGPL')
-depends=('freetype2' 'libpng' 'flex')
+depends=('freetype2' 'libpng' 'flex' 'giflib')
 makedepends=('bison' 'pkg-config' 'python2')
 options=('!emptydirs')
-source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.bz2)
-md5sums=('73bcbcb837f3872ef1a936c539a2513c')
+source=(https://github.com/libming/libming/archive/${pkgname}-${pkgver//./_}.tar.gz)
+md5sums=('dbb71ae5bc131a609fbfe2005bc095cc')
 
 build() {
-  cd "$srcdir"/$pkgname-$pkgver/
-  LDFLAGS="${LDFLAGS/ -Wl,--as-needed/}"
+  cd "$srcdir"/libming-${pkgname}-${pkgver//./_}/
+  ./autogen.sh
   PYTHON=/usr/bin/python2 ./configure --prefix=/usr --enable-python
+
+  # Strange that this can fail when we let the Makefile do it
+  pushd src/actioncompiler
+  bison -y -p swf4 -b swf4compiler swf4compiler.y
+  bison -y -p swf5 -b swf5compiler swf5compiler.y
+  popd
   make
 }
 
 package() {
-  cd "$srcdir"/$pkgname-$pkgver/
+  cd "$srcdir"/libming-${pkgname}-${pkgver//./_}/
   make DESTDIR="$pkgdir" install
 }
 


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

2015-11-12 Thread Anatol Pomozov
Date: Thursday, November 12, 2015 @ 21:10:11
  Author: anatolik
Revision: 146650

upgpkg: rethinkdb 2.2.0-1

Modified:
  rethinkdb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-11-12 15:00:10 UTC (rev 146649)
+++ PKGBUILD2015-11-12 20:10:11 UTC (rev 146650)
@@ -4,8 +4,8 @@
 # Contributor: Sigmund Lahn 
 
 pkgname=rethinkdb
-pkgver=2.1.5
-_tag=rethinkdb-$pkgver-2
+pkgver=2.2.0
+_tag=rethinkdb-$pkgver
 pkgrel=1
 pkgdesc='Distributed powerful and scalable NoSQL database'
 arch=(i686 x86_64)
@@ -21,7 +21,7 @@
   rethinkdb-tmpfile.conf
   rethinkdb.service
 )
-sha256sums=('7953b486aef0fec076c3adf198fb24c969e344f2247647743f9f1b7c6cb46e23'
+sha256sums=('5f51cecbb05282fff084bf838f9258a1d7171157c09e5f669f54b50f08489676'
 '656d3a42e75d087e723f71aa320fdd91cbbb82071ef72eb11fd3e4a619b429a4'
 'e56bffa2b9ebc3a00ef566ab2be0719a633c89d961a2461dfa2d9ffdb258c1a2')
 
@@ -46,7 +46,7 @@
 check() {
   cd $_tag
 
-  # these tests are flaky and extremely slow
+  # these tests are flaky and extremely slow in Arch chroot
   # make build/release/rethinkdb-unittest
   # ./build/release/rethinkdb-unittest 
--gtest_filter=-RDBBtree.*:RDBInterrupt.*
   # some tests might be flaky on btrfs filesystem


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

2015-11-12 Thread Anatol Pomozov
Date: Thursday, November 12, 2015 @ 21:10:57
  Author: anatolik
Revision: 146651

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

Added:
  rethinkdb/repos/community-testing-i686/
  rethinkdb/repos/community-testing-i686/PKGBUILD
(from rev 146650, rethinkdb/trunk/PKGBUILD)
  rethinkdb/repos/community-testing-i686/rethinkdb-tmpfile.conf
(from rev 146650, rethinkdb/trunk/rethinkdb-tmpfile.conf)
  rethinkdb/repos/community-testing-i686/rethinkdb.install
(from rev 146650, rethinkdb/trunk/rethinkdb.install)
  rethinkdb/repos/community-testing-i686/rethinkdb.service
(from rev 146650, rethinkdb/trunk/rethinkdb.service)
  rethinkdb/repos/community-testing-x86_64/
  rethinkdb/repos/community-testing-x86_64/PKGBUILD
(from rev 146650, rethinkdb/trunk/PKGBUILD)
  rethinkdb/repos/community-testing-x86_64/rethinkdb-tmpfile.conf
(from rev 146650, rethinkdb/trunk/rethinkdb-tmpfile.conf)
  rethinkdb/repos/community-testing-x86_64/rethinkdb.install
(from rev 146650, rethinkdb/trunk/rethinkdb.install)
  rethinkdb/repos/community-testing-x86_64/rethinkdb.service
(from rev 146650, rethinkdb/trunk/rethinkdb.service)

-+
 community-testing-i686/PKGBUILD |   69 ++
 community-testing-i686/rethinkdb-tmpfile.conf   |1 
 community-testing-i686/rethinkdb.install|   22 +++
 community-testing-i686/rethinkdb.service|   12 +++
 community-testing-x86_64/PKGBUILD   |   69 ++
 community-testing-x86_64/rethinkdb-tmpfile.conf |1 
 community-testing-x86_64/rethinkdb.install  |   22 +++
 community-testing-x86_64/rethinkdb.service  |   12 +++
 8 files changed, 208 insertions(+)

Copied: rethinkdb/repos/community-testing-i686/PKGBUILD (from rev 146650, 
rethinkdb/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2015-11-12 20:10:57 UTC (rev 146651)
@@ -0,0 +1,69 @@
+# $Id$
+# Maintainer: Anatol Pomozov 
+# Contributor: Massimiliano Torromeo 
+# Contributor: Sigmund Lahn 
+
+pkgname=rethinkdb
+pkgver=2.2.0
+_tag=rethinkdb-$pkgver
+pkgrel=1
+pkgdesc='Distributed powerful and scalable NoSQL database'
+arch=(i686 x86_64)
+url='http://www.rethinkdb.com/'
+license=(AGPL)
+depends=(protobuf ncurses curl)
+makedepends=(boost python2 wget)
+backup=(etc/rethinkdb/instances.d/default.conf)
+install=rethinkdb.install
+options=(!emptydirs)
+source=(
+  http://download.rethinkdb.com/dist/$_tag.tgz
+  rethinkdb-tmpfile.conf
+  rethinkdb.service
+)
+sha256sums=('5f51cecbb05282fff084bf838f9258a1d7171157c09e5f669f54b50f08489676'
+'656d3a42e75d087e723f71aa320fdd91cbbb82071ef72eb11fd3e4a619b429a4'
+'e56bffa2b9ebc3a00ef566ab2be0719a633c89d961a2461dfa2d9ffdb258c1a2')
+
+prepare() {
+  cd $_tag
+
+  sed \
+-e 's|#!/usr/bin/python|#!/usr/bin/python2|' \
+-e 's|#!/usr/bin/env python|#!/usr/bin/env python2|' \
+-i scripts/*.py external/v8_*/tools/*.py
+  sed -e 's|exec python|exec python2|g' -i external/v8_*/build/gyp/gyp
+  sed -e 's|\bpython\b|python2|g' -i 
external/v8_*/{Makefile,*/*.gyp,*/*.gypi,*/*/*.gyp}
+}
+
+build() {
+  cd $_tag
+  export PYTHON=/usr/bin/python2
+  ./configure --fetch v8 --fetch jemalloc --dynamic all 
--enable-precompiled-web --prefix=/usr --sysconfdir=/etc
+  make ALLOW_WARNINGS=1
+}
+
+check() {
+  cd $_tag
+
+  # these tests are flaky and extremely slow in Arch chroot
+  # make build/release/rethinkdb-unittest
+  # ./build/release/rethinkdb-unittest 
--gtest_filter=-RDBBtree.*:RDBInterrupt.*
+  # some tests might be flaky on btrfs filesystem
+}
+
+package() {
+  cd $_tag
+  make DESTDIR="$pkgdir" install
+
+  install -Dm644 "$srcdir"/rethinkdb-tmpfile.conf 
"$pkgdir"/usr/lib/tmpfiles.d/rethinkdb.conf
+  install -Dm644 "$srcdir"/rethinkdb.service 
"$pkgdir"/usr/lib/systemd/system/rethinkdb@.service
+
+  # create 'default' database instance
+  mv "$pkgdir"/etc/rethinkdb/default.conf.sample 
"$pkgdir"/etc/rethinkdb/instances.d/default.conf
+  sed -e 's|# directory=/var/lib/rethinkdb|directory=/var/lib/rethinkdb|' \
+  -i "$pkgdir"/etc/rethinkdb/instances.d/default.conf
+
+  # Arch uses systemd, no need for init.d scripts
+  rm -r "$pkgdir"/etc/init.d
+}

Copied: rethinkdb/repos/community-testing-i686/rethinkdb-tmpfile.conf (from rev 
146650, rethinkdb/trunk/rethinkdb-tmpfile.conf)
===
--- community-testing-i686/rethinkdb-tmpfile.conf   
(rev 0)
+++ community-testing-i686/rethinkdb-tmpfile.conf   2015-11-12 20:10:57 UTC 
(rev 146651)
@@ -0,0 +1 @@
+d /run/rethinkdb 0755 rethinkdb rethinkdb -
\ No newline at end of file

Copied: rethinkdb/repos/community-testing-i686/rethinkdb.install (from rev 
146650, rethinkdb/trunk/rethinkdb.install)
=

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

2015-11-12 Thread Felix Yan
Date: Thursday, November 12, 2015 @ 16:00:10
  Author: fyan
Revision: 146649

archrelease: copy trunk to community-any

Added:
  uglify-js/repos/community-any/PKGBUILD
(from rev 146648, uglify-js/trunk/PKGBUILD)
Deleted:
  uglify-js/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-11-12 14:59:46 UTC (rev 146648)
+++ PKGBUILD2015-11-12 15:00:10 UTC (rev 146649)
@@ -1,25 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Daniel Nagy 
-
-pkgname=uglify-js
-pkgver=2.5.0
-pkgrel=1
-pkgdesc="JavaScript parser, mangler/compressor and beautifier toolkit"
-arch=('any')
-url='http://lisperator.net/uglifyjs'
-license=('BSD')
-depends=('nodejs')
-makedepends=('npm')
-source=(http://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
-noextract=($pkgname-$pkgver.tgz)
-md5sums=('130ffa44c94d9bd26685d215845525c7')
-
-package() {
-  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
-  rm -r "$pkgdir"/usr/etc
-  mkdir -p "$pkgdir/usr/share/licenses/$pkgname"
-  ln -s "../../../lib/node_modules/uglify-js/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: uglify-js/repos/community-any/PKGBUILD (from rev 146648, 
uglify-js/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-11-12 15:00:10 UTC (rev 146649)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Daniel Nagy 
+
+pkgname=uglify-js
+pkgver=2.6.0
+pkgrel=1
+pkgdesc="JavaScript parser, mangler/compressor and beautifier toolkit"
+arch=('any')
+url='http://lisperator.net/uglifyjs'
+license=('BSD')
+depends=('nodejs')
+makedepends=('npm')
+source=(http://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
+noextract=($pkgname-$pkgver.tgz)
+md5sums=('997a9c04b8cd487398f230f7b14843e2')
+
+package() {
+  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
+  rm -r "$pkgdir"/usr/etc
+  mkdir -p "$pkgdir/usr/share/licenses/$pkgname"
+  ln -s "../../../lib/node_modules/uglify-js/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/"
+}
+
+# vim:set ts=2 sw=2 et:


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

2015-11-12 Thread Felix Yan
Date: Thursday, November 12, 2015 @ 15:59:46
  Author: fyan
Revision: 146648

upgpkg: uglify-js 2.6.0-1

Modified:
  uglify-js/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-11-12 11:40:44 UTC (rev 146647)
+++ PKGBUILD2015-11-12 14:59:46 UTC (rev 146648)
@@ -3,7 +3,7 @@
 # Contributor: Daniel Nagy 
 
 pkgname=uglify-js
-pkgver=2.5.0
+pkgver=2.6.0
 pkgrel=1
 pkgdesc="JavaScript parser, mangler/compressor and beautifier toolkit"
 arch=('any')
@@ -13,7 +13,7 @@
 makedepends=('npm')
 source=(http://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
 noextract=($pkgname-$pkgver.tgz)
-md5sums=('130ffa44c94d9bd26685d215845525c7')
+md5sums=('997a9c04b8cd487398f230f7b14843e2')
 
 package() {
   npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz


[arch-commits] Commit in meld/repos/extra-any (5 files)

2015-11-12 Thread Jan Steffens
Date: Thursday, November 12, 2015 @ 13:16:29
  Author: heftig
Revision: 250814

archrelease: copy trunk to extra-any

Added:
  meld/repos/extra-any/PKGBUILD
(from rev 250813, meld/trunk/PKGBUILD)
  meld/repos/extra-any/meld.install
(from rev 250813, meld/trunk/meld.install)
  meld/repos/extra-any/text_iter.patch
(from rev 250813, meld/trunk/text_iter.patch)
Deleted:
  meld/repos/extra-any/PKGBUILD
  meld/repos/extra-any/meld.install

-+
 PKGBUILD|   79 ++
 meld.install|   28 +--
 text_iter.patch |   11 +++
 3 files changed, 69 insertions(+), 49 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-11-12 12:15:29 UTC (rev 250813)
+++ PKGBUILD2015-11-12 12:16:29 UTC (rev 250814)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Gaetan Bisson 
-# Contributor: Daniel J Griffiths 
-# Contributor: Douglas Soares de Andrade 
-
-pkgname=meld
-pkgver=3.14.1
-pkgrel=1
-pkgdesc='Visual diff and merge tool'
-url='http://meldmerge.org/'
-license=(GPL)
-arch=(any)
-makedepends=(intltool itstool)
-install=meld.install
-depends=(python2-gobject python2-cairo gtksourceview3 hicolor-icon-theme 
desktop-file-utils
- gsettings-desktop-schemas)
-optdepends=('python2-dbus: open a new tab in an already running instance')
-source=("http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-${pkgver}.tar.xz";)
-sha1sums=('a2db7e96bbd99dc038de22fb5e5a0f94668b76c1')
-
-# Meld does not support Python 3. The build succeeds, but
-# the main executable checks the version and errors out.
-
-build() {
-  cd $pkgname-$pkgver
-  python2 setup.py build
-}
-
-package() {
-  cd $pkgname-$pkgver
-  # using --skip-build breaks install
-  python2 setup.py --no-update-icon-cache --no-compile-schemas \
-install --prefix=/usr --root="$pkgdir" --optimize=1
-}

Copied: meld/repos/extra-any/PKGBUILD (from rev 250813, meld/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-11-12 12:16:29 UTC (rev 250814)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Gaetan Bisson 
+# Contributor: Daniel J Griffiths 
+# Contributor: Douglas Soares de Andrade 
+
+pkgname=meld
+pkgver=3.14.1
+pkgrel=2
+pkgdesc='Visual diff and merge tool'
+url='http://meldmerge.org/'
+license=(GPL)
+arch=(any)
+makedepends=(intltool itstool)
+install=meld.install
+depends=(python2-gobject python2-cairo gtksourceview3 hicolor-icon-theme 
desktop-file-utils
+ gsettings-desktop-schemas)
+optdepends=('python2-dbus: open a new tab in an already running instance')
+source=("http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-${pkgver}.tar.xz";
+text_iter.patch)
+sha1sums=('a2db7e96bbd99dc038de22fb5e5a0f94668b76c1'
+  'b1820837bfeda67f557a390703b72855d5d78dbf')
+
+# Meld does not support Python 3. The build succeeds, but
+# the main executable checks the version and errors out.
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  # Patch Gtk 3.18.3 API break 
https://bugzilla.gnome.org/show_bug.cgi?id=757881
+  patch -Np1 -i ../text_iter.patch
+}
+
+build() {
+  cd $pkgname-$pkgver
+  python2 setup.py build
+}
+
+package() {
+  cd $pkgname-$pkgver
+  # using --skip-build breaks install
+  python2 setup.py --no-update-icon-cache --no-compile-schemas \
+install --prefix=/usr --root="$pkgdir" --optimize=1
+}

Deleted: meld.install
===
--- meld.install2015-11-12 12:15:29 UTC (rev 250813)
+++ meld.install2015-11-12 12:16:29 UTC (rev 250814)
@@ -1,14 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-  glib-compile-schemas usr/share/glib-2.0/schemas
-  update-desktop-database -q
-  update-mime-database usr/share/mime &> /dev/null
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: meld/repos/extra-any/meld.install (from rev 250813, 
meld/trunk/meld.install)
===
--- meld.install(rev 0)
+++ meld.install2015-11-12 12:16:29 UTC (rev 250814)
@@ -0,0 +1,14 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+  glib-compile-schemas usr/share/glib-2.0/schemas
+  update-desktop-database -q
+  update-mime-database usr/share/mime &> /dev/null
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Copied: meld/repos/extra-any/text_iter.patch (from rev 250813, 
meld/trunk/text_iter.patch)
===
--- text_iter.patch (rev 0)
+++ text_iter.patch 2015-11-12 12:16:29 UTC (rev 250814)
@@ -0,0 +1,11 @@
+---

[arch-commits] Commit in meld/trunk (PKGBUILD text_iter.patch)

2015-11-12 Thread Jan Steffens
Date: Thursday, November 12, 2015 @ 13:15:29
  Author: heftig
Revision: 250813

fix diff since gtk 3.18.3

Added:
  meld/trunk/text_iter.patch
Modified:
  meld/trunk/PKGBUILD

-+
 PKGBUILD|   15 ---
 text_iter.patch |   11 +++
 2 files changed, 23 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-11-12 11:51:09 UTC (rev 250812)
+++ PKGBUILD2015-11-12 12:15:29 UTC (rev 250813)
@@ -6,7 +6,7 @@
 
 pkgname=meld
 pkgver=3.14.1
-pkgrel=1
+pkgrel=2
 pkgdesc='Visual diff and merge tool'
 url='http://meldmerge.org/'
 license=(GPL)
@@ -16,12 +16,21 @@
 depends=(python2-gobject python2-cairo gtksourceview3 hicolor-icon-theme 
desktop-file-utils
  gsettings-desktop-schemas)
 optdepends=('python2-dbus: open a new tab in an already running instance')
-source=("http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-${pkgver}.tar.xz";)
-sha1sums=('a2db7e96bbd99dc038de22fb5e5a0f94668b76c1')
+source=("http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-${pkgver}.tar.xz";
+text_iter.patch)
+sha1sums=('a2db7e96bbd99dc038de22fb5e5a0f94668b76c1'
+  'b1820837bfeda67f557a390703b72855d5d78dbf')
 
 # Meld does not support Python 3. The build succeeds, but
 # the main executable checks the version and errors out.
 
+prepare() {
+  cd $pkgname-$pkgver
+
+  # Patch Gtk 3.18.3 API break 
https://bugzilla.gnome.org/show_bug.cgi?id=757881
+  patch -Np1 -i ../text_iter.patch
+}
+
 build() {
   cd $pkgname-$pkgver
   python2 setup.py build

Added: text_iter.patch
===
--- text_iter.patch (rev 0)
+++ text_iter.patch 2015-11-12 12:15:29 UTC (rev 250813)
@@ -0,0 +1,11 @@
+--- meld-3.14.1-orig/meld/meldbuffer.py 2015-10-02 22:10:11.0 -0400
 meld-3.14.1/meld/meldbuffer.py  2015-11-11 20:37:09.412543281 -0500
+@@ -76,6 +76,9 @@
+ self.data.filename = filename
+ self.data.label = label
+ 
++def get_iter_at_line(self, line):
++return super(MeldBuffer, self).get_iter_at_line(line)[1]
++
+ def get_iter_at_line_or_eof(self, line):
+ """Return a Gtk.TextIter at the given line, or the end of the buffer.


[arch-commits] Commit in xf86-video-rendition/trunk (PKGBUILD git-fixes.patch)

2015-11-12 Thread Andreas Radke
Date: Thursday, November 12, 2015 @ 12:50:53
  Author: andyrtr
Revision: 250811

upgpkg: xf86-video-rendition 4.2.6-1

upstream update 4.2.6

Modified:
  xf86-video-rendition/trunk/PKGBUILD
Deleted:
  xf86-video-rendition/trunk/git-fixes.patch

-+
 PKGBUILD|   19 ++--
 git-fixes.patch |  125 --
 2 files changed, 6 insertions(+), 138 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-11-12 10:58:02 UTC (rev 250810)
+++ PKGBUILD2015-11-12 11:50:53 UTC (rev 250811)
@@ -2,8 +2,8 @@
 # Maintainer: Jan de Groot 
 
 pkgname=xf86-video-rendition
-pkgver=4.2.5
-pkgrel=7
+pkgver=4.2.6
+pkgrel=1
 pkgdesc="X.org Rendition video driver"
 arch=(i686 x86_64)
 url="http://xorg.freedesktop.org/";
@@ -11,16 +11,11 @@
 depends=('glibc')
 makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=20')
 conflicts=('xorg-server<1.16' 'X-ABI-VIDEODRV_VERSION<20' 
'X-ABI-VIDEODRV_VERSION>=21')
-options=('!strip')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2 
git-fixes.patch)
-sha256sums=('39b5569338237de6e17b2a2c6be73ac6c405ee596079c41a7028cfd6e54134cb'
-'43301ab296b6a928ed880ea56fc476c7c2d80803c9a63b71e0391fca10457f55')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2{,.sig})
+sha256sums=('660ecf21f65a4d6002c1b603d62c314f8e9624d208db5b346850b0df9dc2f9a8'
+'SKIP')
+validpgpkeys=('DD38563A8A8224537D1F90E45B8A2D50A0ECD0D3') # Adam Jackson 

 
-prepare() {
-  cd ${pkgname}-${pkgver}
-  patch -Np1 -i ${srcdir}/git-fixes.patch
-}
-
 build() {
   cd ${pkgname}-${pkgver}
   ./configure --prefix=/usr
@@ -32,6 +27,4 @@
   make DESTDIR="${pkgdir}" install
   install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
   install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-
-  strip --strip-unneeded 
"${pkgdir}/usr/lib/xorg/modules/drivers/rendition_drv.so"
 }

Deleted: git-fixes.patch
===
--- git-fixes.patch 2015-11-12 10:58:02 UTC (rev 250810)
+++ git-fixes.patch 2015-11-12 11:50:53 UTC (rev 250811)
@@ -1,125 +0,0 @@
-From 3a3ee1c45e54a808947cc26ca11f0a5299571053 Mon Sep 17 00:00:00 2001
-From: Adam Jackson 
-Date: Tue, 25 Sep 2012 12:54:50 +
-Subject: Remove mibstore.h
-
-Signed-off-by: Adam Jackson 

-diff --git a/src/rendition.c b/src/rendition.c
-index 7c74f76..888bb4a 100644
 a/src/rendition.c
-+++ b/src/rendition.c
-@@ -1173,7 +1173,6 @@ renditionScreenInit(SCREEN_INIT_ARGS_DECL)
- fbPictureInit (pScreen, 0, 0);
- 
- xf86SetBlackWhitePixels(pScreen);
--miInitializeBackingStore(pScreen);
-
- /*/
- /* The actual setup of the driver-specific code  */
-diff --git a/src/rendition.h b/src/rendition.h
-index f7f13d4..297117e 100644
 a/src/rendition.h
-+++ b/src/rendition.h
-@@ -28,9 +28,6 @@
- /* All drivers initialising the SW cursor need this */
- #include "mipointer.h"
- 
--/* All drivers implementing backing store need this */
--#include "mibstore.h"
--
- /* All drivers using the mi colormap manipulation need this */
- #include "micmap.h"
- 
---
-cgit v0.9.0.2-2-gbebe
-From 30a4b73644ee22904824d4847e44ca69369fad02 Mon Sep 17 00:00:00 2001
-From: Adam Jackson 
-Date: Tue, 30 Sep 2014 10:21:58 -0400
-Subject: Fix build against xserver 1.17
-
-Also port from pci_device_map_region to pci_device_map_range.  Somewhat
-alarming that the previous code was using map_region but unmap_range...
-
-Signed-off-by: Adam Jackson 
-
-diff --git a/src/rendition.c b/src/rendition.c
-index 888bb4a..9677850 100644
 a/src/rendition.c
-+++ b/src/rendition.c
-@@ -1371,6 +1371,18 @@ renditionMapMem(ScrnInfoPtr pScreenInfo)
-/* Override on users request */
- WriteCombine
-   = xf86ReturnOptValBool(pRendition->Options, OPTION_FBWC, WriteCombine);
-+#ifdef XSERVER_LIBPCIACCESS
-+mapOption = PCI_DEV_MAP_FLAG_WRITABLE;
-+if (WriteCombine)
-+  mapOption |= PCI_DEV_MAP_FLAG_WRITE_COMBINE;
-+
-+err = pci_device_map_range(pRendition->PciInfo,
-+ pRendition->PciInfo->regions[0].base_addr,
-+ pRendition->PciInfo->regions[0].size,
-+ mapOption, (void *)&pRendition->board.vmem_base);
-+
-+return (err == 0);
-+#else
- if (WriteCombine) {
-   xf86DrvMsg(pScreenInfo->scrnIndex, X_CONFIG,
-  ("Requesting Write-Combined memory access\n"));
-@@ -1381,12 +1393,6 @@ renditionMapMem(ScrnInfoPtr pScreenInfo)
-   mapOption = VIDMEM_MMIO;
- }
- 
--#ifdef XSERVER_LIBPCIACCESS
--err = pci_device_map_region(pRendition->PciInfo, 0, TRUE);
--pRendition->board.vmem_base = pRendition->PciInfo->regions[0].memory;
--
--return (err == 0);
--#else
- pRendition->board.vmem_base=
- xf86MapPciMem(pScreenInfo->s

[arch-commits] Commit in xf86-video-rendition/repos (6 files)

2015-11-12 Thread Andreas Radke
Date: Thursday, November 12, 2015 @ 12:51:09
  Author: andyrtr
Revision: 250812

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

Added:
  xf86-video-rendition/repos/staging-i686/PKGBUILD
(from rev 250811, xf86-video-rendition/trunk/PKGBUILD)
  xf86-video-rendition/repos/staging-x86_64/PKGBUILD
(from rev 250811, xf86-video-rendition/trunk/PKGBUILD)
Deleted:
  xf86-video-rendition/repos/staging-i686/PKGBUILD
  xf86-video-rendition/repos/staging-i686/git-fixes.patch
  xf86-video-rendition/repos/staging-x86_64/PKGBUILD
  xf86-video-rendition/repos/staging-x86_64/git-fixes.patch

+
 /PKGBUILD  |   60 ++
 staging-i686/PKGBUILD  |   37 ---
 staging-i686/git-fixes.patch   |  125 ---
 staging-x86_64/PKGBUILD|   37 ---
 staging-x86_64/git-fixes.patch |  125 ---
 5 files changed, 60 insertions(+), 324 deletions(-)

Deleted: staging-i686/PKGBUILD
===
--- staging-i686/PKGBUILD   2015-11-12 11:50:53 UTC (rev 250811)
+++ staging-i686/PKGBUILD   2015-11-12 11:51:09 UTC (rev 250812)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=xf86-video-rendition
-pkgver=4.2.5
-pkgrel=7
-pkgdesc="X.org Rendition video driver"
-arch=(i686 x86_64)
-url="http://xorg.freedesktop.org/";
-license=('custom')
-depends=('glibc')
-makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=20')
-conflicts=('xorg-server<1.16' 'X-ABI-VIDEODRV_VERSION<20' 
'X-ABI-VIDEODRV_VERSION>=21')
-options=('!strip')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2 
git-fixes.patch)
-sha256sums=('39b5569338237de6e17b2a2c6be73ac6c405ee596079c41a7028cfd6e54134cb'
-'43301ab296b6a928ed880ea56fc476c7c2d80803c9a63b71e0391fca10457f55')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  patch -Np1 -i ${srcdir}/git-fixes.patch
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-
-  strip --strip-unneeded 
"${pkgdir}/usr/lib/xorg/modules/drivers/rendition_drv.so"
-}

Copied: xf86-video-rendition/repos/staging-i686/PKGBUILD (from rev 250811, 
xf86-video-rendition/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-11-12 11:51:09 UTC (rev 250812)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=xf86-video-rendition
+pkgver=4.2.6
+pkgrel=1
+pkgdesc="X.org Rendition video driver"
+arch=(i686 x86_64)
+url="http://xorg.freedesktop.org/";
+license=('custom')
+depends=('glibc')
+makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=20')
+conflicts=('xorg-server<1.16' 'X-ABI-VIDEODRV_VERSION<20' 
'X-ABI-VIDEODRV_VERSION>=21')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2{,.sig})
+sha256sums=('660ecf21f65a4d6002c1b603d62c314f8e9624d208db5b346850b0df9dc2f9a8'
+'SKIP')
+validpgpkeys=('DD38563A8A8224537D1F90E45B8A2D50A0ECD0D3') # Adam Jackson 

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

Deleted: staging-i686/git-fixes.patch
===
--- staging-i686/git-fixes.patch2015-11-12 11:50:53 UTC (rev 250811)
+++ staging-i686/git-fixes.patch2015-11-12 11:51:09 UTC (rev 250812)
@@ -1,125 +0,0 @@
-From 3a3ee1c45e54a808947cc26ca11f0a5299571053 Mon Sep 17 00:00:00 2001
-From: Adam Jackson 
-Date: Tue, 25 Sep 2012 12:54:50 +
-Subject: Remove mibstore.h
-
-Signed-off-by: Adam Jackson 

-diff --git a/src/rendition.c b/src/rendition.c
-index 7c74f76..888bb4a 100644
 a/src/rendition.c
-+++ b/src/rendition.c
-@@ -1173,7 +1173,6 @@ renditionScreenInit(SCREEN_INIT_ARGS_DECL)
- fbPictureInit (pScreen, 0, 0);
- 
- xf86SetBlackWhitePixels(pScreen);
--miInitializeBackingStore(pScreen);
-
- /*/
- /* The actual setup of the driver-specific code  */
-diff --git a/src/rendition.h b/src/rendition.h
-index f7f13d4..297117e 100644
 a/src/rendition.h
-+++ b/src/rendition.h
-@@ -28,9 +28,6 @@
- /* All drivers initialising the SW cursor need this */
- #include "mipointer.h"
- 
--/* All drivers implementing backing store need this */
--#include "mibstore.h"
--
- /* All drivers using the mi colormap manipulation need this */
- #include "micmap.h"
- 
---
-cgit v0.9.0.2-2-gbebe

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

2015-11-12 Thread Levente Polyak
Date: Thursday, November 12, 2015 @ 12:40:30
  Author: anthraxx
Revision: 146646

addpkg: ropper 1.7.2-1

Added:
  ropper/
  ropper/repos/
  ropper/trunk/
  ropper/trunk/PKGBUILD

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

Added: ropper/trunk/PKGBUILD
===
--- ropper/trunk/PKGBUILD   (rev 0)
+++ ropper/trunk/PKGBUILD   2015-11-12 11:40:30 UTC (rev 146646)
@@ -0,0 +1,35 @@
+# Maintainer: Levente Polyak 
+
+pkgname=ropper
+_pkgname=Ropper
+pkgver=1.7.2
+pkgrel=1
+pkgdesc="Show information about binary files and find gadgets to build rop 
chains for different architectures"
+url="https://github.com/sashs/Ropper";
+arch=('any')
+license=('GPL2')
+depends=('python-capstone')
+optdepends=('sqlite: gadgets database support')
+makedepends=('python-setuptools')
+checkdepends=('sqlite')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/sashs/${_pkgname}/archive/v${pkgver}.tar.gz)
+sha512sums=('6ba6fb8de35ba73ff54b2eb469487cf05129641220b34d263f23fbd42d3d93eae4c00d25c471632839a00383ea4049a6e6f1de984b7b6e931c3b335c1f736070')
+
+build() {
+  cd ${_pkgname}-${pkgver}
+  python setup.py build
+}
+
+check() {
+  cd ${_pkgname}-${pkgver}
+  python test.py
+}
+
+package() {
+  cd ${_pkgname}-${pkgver}
+  python setup.py install -O1 --root="${pkgdir}"
+  install -Dm 644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
+  install -Dm 644 sample.py "${pkgdir}/usr/share/doc/${pkgname}/sample.py"
+}
+
+# vim: ts=2 sw=2 et:


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

2015-11-12 Thread Levente Polyak
Date: Thursday, November 12, 2015 @ 12:40:44
  Author: anthraxx
Revision: 146647

archrelease: copy trunk to community-any

Added:
  ropper/repos/community-any/
  ropper/repos/community-any/PKGBUILD
(from rev 146646, ropper/trunk/PKGBUILD)

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

Copied: ropper/repos/community-any/PKGBUILD (from rev 146646, 
ropper/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2015-11-12 11:40:44 UTC (rev 146647)
@@ -0,0 +1,35 @@
+# Maintainer: Levente Polyak 
+
+pkgname=ropper
+_pkgname=Ropper
+pkgver=1.7.2
+pkgrel=1
+pkgdesc="Show information about binary files and find gadgets to build rop 
chains for different architectures"
+url="https://github.com/sashs/Ropper";
+arch=('any')
+license=('GPL2')
+depends=('python-capstone')
+optdepends=('sqlite: gadgets database support')
+makedepends=('python-setuptools')
+checkdepends=('sqlite')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/sashs/${_pkgname}/archive/v${pkgver}.tar.gz)
+sha512sums=('6ba6fb8de35ba73ff54b2eb469487cf05129641220b34d263f23fbd42d3d93eae4c00d25c471632839a00383ea4049a6e6f1de984b7b6e931c3b335c1f736070')
+
+build() {
+  cd ${_pkgname}-${pkgver}
+  python setup.py build
+}
+
+check() {
+  cd ${_pkgname}-${pkgver}
+  python test.py
+}
+
+package() {
+  cd ${_pkgname}-${pkgver}
+  python setup.py install -O1 --root="${pkgdir}"
+  install -Dm 644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
+  install -Dm 644 sample.py "${pkgdir}/usr/share/doc/${pkgname}/sample.py"
+}
+
+# vim: ts=2 sw=2 et:


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

2015-11-12 Thread Sergej Pupykin
Date: Thursday, November 12, 2015 @ 12:25:33
  Author: spupykin
Revision: 146645

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

Added:
  python-bsddb/repos/community-i686/LICENSE
(from rev 146644, python-bsddb/trunk/LICENSE)
  python-bsddb/repos/community-i686/PKGBUILD
(from rev 146644, python-bsddb/trunk/PKGBUILD)
  python-bsddb/repos/community-x86_64/LICENSE
(from rev 146644, python-bsddb/trunk/LICENSE)
  python-bsddb/repos/community-x86_64/PKGBUILD
(from rev 146644, python-bsddb/trunk/PKGBUILD)
Deleted:
  python-bsddb/repos/community-i686/LICENSE
  python-bsddb/repos/community-i686/PKGBUILD
  python-bsddb/repos/community-x86_64/LICENSE
  python-bsddb/repos/community-x86_64/PKGBUILD

---+
 /LICENSE  |   38 ++
 /PKGBUILD |  116 
 community-i686/LICENSE|   19 ---
 community-i686/PKGBUILD   |   56 -
 community-x86_64/LICENSE  |   19 ---
 community-x86_64/PKGBUILD |   56 -
 6 files changed, 154 insertions(+), 150 deletions(-)

Deleted: community-i686/LICENSE
===
--- community-i686/LICENSE  2015-11-12 11:25:15 UTC (rev 146644)
+++ community-i686/LICENSE  2015-11-12 11:25:33 UTC (rev 146645)
@@ -1,19 +0,0 @@
-Copyright (c) 2008-2009 Jesus Cea Avion
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in
-all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-THE SOFTWARE.
\ No newline at end of file

Copied: python-bsddb/repos/community-i686/LICENSE (from rev 146644, 
python-bsddb/trunk/LICENSE)
===
--- community-i686/LICENSE  (rev 0)
+++ community-i686/LICENSE  2015-11-12 11:25:33 UTC (rev 146645)
@@ -0,0 +1,19 @@
+Copyright (c) 2008-2009 Jesus Cea Avion
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
\ No newline at end of file

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-11-12 11:25:15 UTC (rev 146644)
+++ community-i686/PKGBUILD 2015-11-12 11:25:33 UTC (rev 146645)
@@ -1,56 +0,0 @@
-# $Id$
-# Maintainer: Kaiting Chen 
-# Maintainer: Stéphane Gaudreault 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: William Rea 
-
-pkgbase=python-bsddb
-pkgname=('python2-bsddb' 'python-bsddb')
-pkgver=6.1.0
-pkgrel=2
-pkgdesc="Python interface for BerkeleyDB"
-license=('MIT')
-arch=('i686' 'x86_64')
-url="http://www.jcea.es/programacion/pybsddb.htm";
-makedepends=('python2-setuptools' 'python-setuptools')
-source=(http://pypi.python.org/packages/source/b/bsddb3/bsddb3-${pkgver}.tar.gz
-LICENSE)
-sha1sums=('ca5c204b2c9cf4fff396ba3d49994fe1a95d669f'
-  'ef4e4caf618781104dbf5824279ed39d127b4713')
-sha1sums=('c12e47f7c21b4bc586c68cce64e0079d070312e8'
-  'ef4e4caf618781104dbf5824279ed39d127b4713')
-sha1sums=('9b22841ee74bc170f12e80e01567891e3432f442'
-  'e

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

2015-11-12 Thread Sergej Pupykin
Date: Thursday, November 12, 2015 @ 12:25:15
  Author: spupykin
Revision: 146644

upgpkg: python-bsddb 6.1.1-1

upd

Modified:
  python-bsddb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-11-12 10:33:15 UTC (rev 146643)
+++ PKGBUILD2015-11-12 11:25:15 UTC (rev 146644)
@@ -6,8 +6,8 @@
 
 pkgbase=python-bsddb
 pkgname=('python2-bsddb' 'python-bsddb')
-pkgver=6.1.0
-pkgrel=2
+pkgver=6.1.1
+pkgrel=1
 pkgdesc="Python interface for BerkeleyDB"
 license=('MIT')
 arch=('i686' 'x86_64')
@@ -21,6 +21,8 @@
   'ef4e4caf618781104dbf5824279ed39d127b4713')
 sha1sums=('9b22841ee74bc170f12e80e01567891e3432f442'
   'ef4e4caf618781104dbf5824279ed39d127b4713')
+sha1sums=('84faaa51c3294ffc689a8bba5c2cbf187d83b022'
+  'ef4e4caf618781104dbf5824279ed39d127b4713')
 
 prepare() {
   cp -r bsddb3-${pkgver}{,-python2}


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

2015-11-12 Thread Jan Steffens
Date: Thursday, November 12, 2015 @ 11:58:02
  Author: heftig
Revision: 250810

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

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

+
 /PKGBUILD  |   64 +++
 /gedit.install |   36 
 extra-i686/PKGBUILD|   32 -
 extra-i686/gedit.install   |   18 
 extra-x86_64/PKGBUILD  |   32 -
 extra-x86_64/gedit.install |   18 
 6 files changed, 100 insertions(+), 100 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-11-12 10:56:32 UTC (rev 250809)
+++ extra-i686/PKGBUILD 2015-11-12 10:58:02 UTC (rev 250810)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-
-pkgname=gedit
-pkgver=3.18.1
-pkgrel=1
-pkgdesc="A text editor for GNOME"
-arch=(i686 x86_64)
-license=(GPL)
-depends=(gtksourceview3 gsettings-desktop-schemas libpeas enchant iso-codes 
desktop-file-utils python-gobject dconf)
-makedepends=(yelp-tools intltool vala gobject-introspection)
-groups=(gnome-extra)
-options=('!emptydirs')
-url="http://www.gnome.org";
-install=gedit.install
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('5ad5aeb01b0a299bb7c154e82fcff96e1a722617fcc4e39b3b57ddcbe88363cd')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr \
-  --sysconfdir=/etc --localstatedir=/var \
-  --libexecdir=/usr/lib --disable-updater --disable-schemas-compile \
-  --enable-python
-  make
-}
-
-package(){
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: gedit/repos/extra-i686/PKGBUILD (from rev 250809, gedit/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-11-12 10:58:02 UTC (rev 250810)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgname=gedit
+pkgver=3.18.2
+pkgrel=1
+pkgdesc="A text editor for GNOME"
+arch=(i686 x86_64)
+license=(GPL)
+depends=(gtksourceview3 gsettings-desktop-schemas libpeas enchant iso-codes 
desktop-file-utils python-gobject dconf)
+makedepends=(yelp-tools intltool vala gobject-introspection)
+groups=(gnome-extra)
+options=('!emptydirs')
+url="http://www.gnome.org";
+install=gedit.install
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('856e451aec29ee45980011de57cadfe89c3cbc53968f6cc865f8efe0bd0d49b1')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr \
+  --sysconfdir=/etc --localstatedir=/var \
+  --libexecdir=/usr/lib --disable-updater --disable-schemas-compile \
+  --enable-python
+  make
+}
+
+package(){
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-i686/gedit.install
===
--- extra-i686/gedit.install2015-11-12 10:56:32 UTC (rev 250809)
+++ extra-i686/gedit.install2015-11-12 10:58:02 UTC (rev 250810)
@@ -1,18 +0,0 @@
-post_install() {
-glib-compile-schemas /usr/share/glib-2.0/schemas
-update-desktop-database -q
-}
-
-pre_upgrade() {
-if [ -f /usr/share/gconf/schemas/gedit.schemas ]; then
-gconfpkg --uninstall gedit
-fi
-}
-
-post_upgrade() {
-post_install $1
-}
-
-post_remove() {
-post_install $1
-}

Copied: gedit/repos/extra-i686/gedit.install (from rev 250809, 
gedit/trunk/gedit.install)
===
--- extra-i686/gedit.install(rev 0)
+++ extra-i686/gedit.install2015-11-12 10:58:02 UTC (rev 250810)
@@ -0,0 +1,18 @@
+post_install() {
+glib-compile-schemas /usr/share/glib-2.0/schemas
+update-desktop-database -q
+}
+
+pre_upgrade() {
+if [ -f /usr/share/gconf/schemas/gedit.schemas ]; then
+gconfpkg --uninstall gedit
+fi
+}
+
+post_upgrade() {
+post_install $1
+}
+
+post_remove() {
+post_install $1
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-11-12 10:56:32 UTC (rev 250809)
+++ extra-x86_64/PKGBUILD   2015-11-12 10:58:02 UTC (rev 250810)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander St

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

2015-11-12 Thread Jan Steffens
Date: Thursday, November 12, 2015 @ 11:56:32
  Author: heftig
Revision: 250809

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

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

--+
 /PKGBUILD|   68 +
 /vinagre.install |   28 
 extra-i686/PKGBUILD  |   34 
 extra-i686/vinagre.install   |   14 
 extra-x86_64/PKGBUILD|   34 
 extra-x86_64/vinagre.install |   14 
 6 files changed, 96 insertions(+), 96 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-11-12 10:55:39 UTC (rev 250808)
+++ extra-i686/PKGBUILD 2015-11-12 10:56:32 UTC (rev 250809)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-# Contributor: Allan McRae 
-# Contributor: lp76 
-
-pkgname=vinagre
-pkgver=3.18.1
-pkgrel=1
-pkgdesc="A VNC Client for the GNOME Desktop"
-arch=(i686 x86_64)
-license=(GPL)
-url="http://www.gnome.org/projects/vinagre/";
-install=vinagre.install
-depends=(libsecret gtk-vnc vte3 telepathy-glib avahi desktop-file-utils dconf 
shared-mime-info
- spice-gtk3 gnutls freerdp)
-optdepends=('openssh: SSH plugin')
-makedepends=(docbook-xsl intltool openssh itstool spice-protocol)
-groups=(gnome-extra)
-options=('!emptydirs')
-source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('5ddad95bb4dacc771d57541ecad49c9c9879043c0404c726c4853a243d710c98')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --libexecdir=/usr/lib/$pkgname --enable-rdp --enable-spice
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: vinagre/repos/extra-i686/PKGBUILD (from rev 250808, 
vinagre/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-11-12 10:56:32 UTC (rev 250809)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+# Contributor: Allan McRae 
+# Contributor: lp76 
+
+pkgname=vinagre
+pkgver=3.18.2
+pkgrel=1
+pkgdesc="A VNC Client for the GNOME Desktop"
+arch=(i686 x86_64)
+license=(GPL)
+url="http://www.gnome.org/projects/vinagre/";
+install=vinagre.install
+depends=(libsecret gtk-vnc vte3 telepathy-glib avahi desktop-file-utils dconf 
shared-mime-info
+ spice-gtk3 gnutls freerdp)
+optdepends=('openssh: SSH plugin')
+makedepends=(docbook-xsl intltool openssh itstool spice-protocol)
+groups=(gnome-extra)
+options=('!emptydirs')
+source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('65b81299de0b75a9433e5654d5314f347895d5efb7acd3b111e5e8c03f48fbc4')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --libexecdir=/usr/lib/$pkgname --enable-rdp --enable-spice
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-i686/vinagre.install
===
--- extra-i686/vinagre.install  2015-11-12 10:55:39 UTC (rev 250808)
+++ extra-i686/vinagre.install  2015-11-12 10:56:32 UTC (rev 250809)
@@ -1,14 +0,0 @@
-post_install() {
-  glib-compile-schemas /usr/share/glib-2.0/schemas
-  update-desktop-database -q
-  gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
-  update-mime-database usr/share/mime > /dev/null
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: vinagre/repos/extra-i686/vinagre.install (from rev 250808, 
vinagre/trunk/vinagre.install)
===
--- extra-i686/vinagre.install  (rev 0)
+++ extra-i686/vinagre.install  2015-11-12 10:56:32 UTC (rev 250809)
@@ -0,0 +1,14 @@
+post_install() {
+  glib-compile-schemas /usr/share/glib-2.0/schemas
+  update-desktop-database -q
+  gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+  update-mime-database usr/share/mime > /dev/null
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-11-12 10:55:39 U

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

2015-11-12 Thread Jan Steffens
Date: Thursday, November 12, 2015 @ 11:55:39
  Author: heftig
Revision: 250808

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

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

---+
 /PKGBUILD |   74 
 /vino.install |   24 ++
 extra-i686/PKGBUILD   |   37 --
 extra-i686/vino.install   |   12 ---
 extra-x86_64/PKGBUILD |   37 --
 extra-x86_64/vino.install |   12 ---
 6 files changed, 98 insertions(+), 98 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-11-12 10:53:25 UTC (rev 250807)
+++ extra-i686/PKGBUILD 2015-11-12 10:55:39 UTC (rev 250808)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-
-pkgname=vino
-pkgver=3.18.0
-pkgrel=1
-pkgdesc="a VNC server for the GNOME desktop"
-arch=(i686 x86_64)
-license=(GPL)
-depends=(libnotify libxtst libsm telepathy-glib gtk3 libsecret avahi 
desktop-file-utils gnutls)
-makedepends=(intltool networkmanager)
-groups=(gnome)
-url="http://www.gnome.org";
-options=(!emptydirs)
-install=vino.install
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('52be0b036389713eab224abf27f2ca2a067ba5bd1f6b526592703576005e0919')
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --libexecdir=/usr/lib/vino \
-  --localstatedir=/var \
-  --disable-http-server --with-secret
-
-  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: vino/repos/extra-i686/PKGBUILD (from rev 250807, vino/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-11-12 10:55:39 UTC (rev 250808)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgname=vino
+pkgver=3.18.1
+pkgrel=1
+pkgdesc="a VNC server for the GNOME desktop"
+arch=(i686 x86_64)
+license=(GPL)
+depends=(libnotify libxtst libsm telepathy-glib gtk3 libsecret avahi 
desktop-file-utils gnutls)
+makedepends=(intltool networkmanager)
+groups=(gnome)
+url="http://www.gnome.org";
+options=(!emptydirs)
+install=vino.install
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('07ec6e78bbecd4ee3fce873eb26932fdda9c7642bb09d17ac36483b996fafe5a')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --libexecdir=/usr/lib/vino \
+  --localstatedir=/var \
+  --disable-http-server --with-secret
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-i686/vino.install
===
--- extra-i686/vino.install 2015-11-12 10:53:25 UTC (rev 250807)
+++ extra-i686/vino.install 2015-11-12 10:55:39 UTC (rev 250808)
@@ -1,12 +0,0 @@
-post_install() {
-  glib-compile-schemas /usr/share/glib-2.0/schemas
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: vino/repos/extra-i686/vino.install (from rev 250807, 
vino/trunk/vino.install)
===
--- extra-i686/vino.install (rev 0)
+++ extra-i686/vino.install 2015-11-12 10:55:39 UTC (rev 250808)
@@ -0,0 +1,12 @@
+post_install() {
+  glib-compile-schemas /usr/share/glib-2.0/schemas
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-11-12 10:53:25 UTC (rev 250807)
+++ extra-x86_64/PKGBUILD   2015-11-12 10:55:39 UTC (rev 250808)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-
-pkgname=vino
-pkgver=3.18.0
-pkgrel=1
-pkgdesc="a VNC server for the GNOME desktop"
-arch=(i686 x86_64)
-license=(GPL)
-depends=(libnotify libxtst libsm telepath

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

2015-11-12 Thread Jan Steffens
Date: Thursday, November 12, 2015 @ 11:52:42
  Author: heftig
Revision: 250806

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

Added:
  gnome-2048/repos/extra-i686/PKGBUILD
(from rev 250805, gnome-2048/trunk/PKGBUILD)
  gnome-2048/repos/extra-i686/gnome-2048.install
(from rev 250805, gnome-2048/trunk/gnome-2048.install)
  gnome-2048/repos/extra-x86_64/PKGBUILD
(from rev 250805, gnome-2048/trunk/PKGBUILD)
  gnome-2048/repos/extra-x86_64/gnome-2048.install
(from rev 250805, gnome-2048/trunk/gnome-2048.install)
Deleted:
  gnome-2048/repos/extra-i686/PKGBUILD
  gnome-2048/repos/extra-i686/gnome-2048.install
  gnome-2048/repos/extra-x86_64/PKGBUILD
  gnome-2048/repos/extra-x86_64/gnome-2048.install

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-11-12 10:52:06 UTC (rev 250805)
+++ extra-i686/PKGBUILD 2015-11-12 10:52:42 UTC (rev 250806)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=gnome-2048
-pkgver=3.18.1
-pkgrel=1
-pkgdesc="Obtain the 2048 tile"
-url="https://wiki.gnome.org/Apps/2048";
-arch=(x86_64 i686)
-license=(GPL3)
-depends=(clutter-gtk libgee libgames-support)
-makedepends=(intltool vala itstool)
-groups=(gnome-extra)
-install=gnome-2048.install
-options=(!emptydirs)
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('c9927405753d56786948b017c7b45a40b7438d614ea6e087aead8b08f6ede369')
-
-prepare() {
-  cd $pkgname-$pkgver
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: gnome-2048/repos/extra-i686/PKGBUILD (from rev 250805, 
gnome-2048/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-11-12 10:52:42 UTC (rev 250806)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=gnome-2048
+pkgver=3.18.2
+pkgrel=1
+pkgdesc="Obtain the 2048 tile"
+url="https://wiki.gnome.org/Apps/2048";
+arch=(x86_64 i686)
+license=(GPL3)
+depends=(clutter-gtk libgee libgames-support)
+makedepends=(intltool vala itstool)
+groups=(gnome-extra)
+install=gnome-2048.install
+options=(!emptydirs)
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('bc0043cecb92713435f3de60975362f5a85c5807452ee51bed9897b52e01c0df')
+
+prepare() {
+  cd $pkgname-$pkgver
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-i686/gnome-2048.install
===
--- extra-i686/gnome-2048.install   2015-11-12 10:52:06 UTC (rev 250805)
+++ extra-i686/gnome-2048.install   2015-11-12 10:52:42 UTC (rev 250806)
@@ -1,12 +0,0 @@
-post_install() {
-  glib-compile-schemas usr/share/glib-2.0/schemas
-  gtk-update-icon-cache -f -q usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: gnome-2048/repos/extra-i686/gnome-2048.install (from rev 250805, 
gnome-2048/trunk/gnome-2048.install)
===
--- extra-i686/gnome-2048.install   (rev 0)
+++ extra-i686/gnome-2048.install   2015-11-12 10:52:42 UTC (rev 250806)
@@ -0,0 +1,12 @@
+post_install() {
+  glib-compile-schemas usr/share/glib-2.0/schemas
+  gtk-update-icon-cache -f -q usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-11-12 10:52:06 UTC (rev 250805)
+++ extra-x86_64/PKGBUILD   2015-11-12 10:52:42 UTC (rev 250806)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=gnome-2048
-pkgver=3.18.1
-pkgrel=1
-pkgdesc="Obtain the 2048 tile"
-url="https://wiki.gnome.org/Apps/2048";
-arch=(x86_64 i686)
-license=(GPL3)
-depends=(clutter-gtk libgee libgames-support)
-makedepends=(intltool vala itstool)
-groups=(gnome-extra)
-install=gnome-2048.install
-options=(!emptydirs)
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.x

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

2015-11-12 Thread Jan Steffens
Date: Thursday, November 12, 2015 @ 11:53:25
  Author: heftig
Revision: 250807

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

Added:
  gnome-contacts/repos/extra-i686/PKGBUILD
(from rev 250806, gnome-contacts/trunk/PKGBUILD)
  gnome-contacts/repos/extra-i686/gnome-contacts.install
(from rev 250806, gnome-contacts/trunk/gnome-contacts.install)
  gnome-contacts/repos/extra-x86_64/PKGBUILD
(from rev 250806, gnome-contacts/trunk/PKGBUILD)
  gnome-contacts/repos/extra-x86_64/gnome-contacts.install
(from rev 250806, gnome-contacts/trunk/gnome-contacts.install)
Deleted:
  gnome-contacts/repos/extra-i686/PKGBUILD
  gnome-contacts/repos/extra-i686/gnome-contacts.install
  gnome-contacts/repos/extra-x86_64/PKGBUILD
  gnome-contacts/repos/extra-x86_64/gnome-contacts.install

-+
 /PKGBUILD   |   58 ++
 /gnome-contacts.install |   22 
 extra-i686/PKGBUILD |   29 -
 extra-i686/gnome-contacts.install   |   11 --
 extra-x86_64/PKGBUILD   |   29 -
 extra-x86_64/gnome-contacts.install |   11 --
 6 files changed, 80 insertions(+), 80 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-11-12 10:52:42 UTC (rev 250806)
+++ extra-i686/PKGBUILD 2015-11-12 10:53:25 UTC (rev 250807)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru 
-
-pkgname=gnome-contacts
-pkgver=3.18.0
-pkgrel=1
-pkgdesc="Contacts Manager for GNOME"
-arch=(i686 x86_64)
-url="http://www.gnome.org";
-license=('GPL2')
-groups=(gnome)
-depends=('gtk3' 'folks' 'libnotify' 'gnome-desktop' 'dconf' 
'gnome-online-accounts' 'libgee' 'telepathy-glib' 'cheese' 'libchamplain')
-makedepends=('intltool' 'vala' 'gobject-introspection')
-install=$pkgname.install
-source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('c81ad739a1f554e4c89979564565e32ceaf1d2cc6c93a6a75d929d7d1fe8e287')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --libexecdir=/usr/lib/gnome-contacts
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gnome-contacts/repos/extra-i686/PKGBUILD (from rev 250806, 
gnome-contacts/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-11-12 10:53:25 UTC (rev 250807)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Ionut Biru 
+
+pkgname=gnome-contacts
+pkgver=3.18.1
+pkgrel=1
+pkgdesc="Contacts Manager for GNOME"
+arch=(i686 x86_64)
+url="http://www.gnome.org";
+license=('GPL2')
+groups=(gnome)
+depends=('gtk3' 'folks' 'gnome-desktop' 'dconf' 'gnome-online-accounts' 
'libgee' 'telepathy-glib' 'cheese' 'libchamplain')
+makedepends=('intltool' 'vala' 'gobject-introspection')
+install=$pkgname.install
+source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('0418d25e70e73c05f4db58ce843819ef91180a21531549a832eafeaf2700cf26')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --libexecdir=/usr/lib/gnome-contacts
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: extra-i686/gnome-contacts.install
===
--- extra-i686/gnome-contacts.install   2015-11-12 10:52:42 UTC (rev 250806)
+++ extra-i686/gnome-contacts.install   2015-11-12 10:53:25 UTC (rev 250807)
@@ -1,11 +0,0 @@
-post_install() {
-  glib-compile-schemas /usr/share/glib-2.0/schemas
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: gnome-contacts/repos/extra-i686/gnome-contacts.install (from rev 
250806, gnome-contacts/trunk/gnome-contacts.install)
===
--- extra-i686/gnome-contacts.install   (rev 0)
+++ extra-i686/gnome-contacts.install   2015-11-12 10:53:25 UTC (rev 250807)
@@ -0,0 +1,11 @@
+post_install() {
+  glib-compile-schemas /usr/share/glib-2.0/schemas
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-11-12 10:52:42 UTC (rev 250806)
+++ extra-x86_64/PKGBUILD   2015-11-12 10:53:25 UTC (rev 250807)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru 
-
-pkgname=gnome-contacts
-pkgver=3.18.0
-pkgrel=1
-pkgdesc="Contacts Manager for GNOME"
-arch=(i686 x86_64)
-url="http://www.gnome.org";
-license=('GPL2')
-groups=(gnome)
-depends=('gtk3' 'folks' 'libnotify' 'gnome-desktop' 'dconf' 
'gnome-online-accounts' 'libgee' 'telepathy-glib' 'cheese' 'libchamplain')
-makedepends=('intltool' 'vala' 'gobject-intr

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

2015-11-12 Thread Jan Steffens
Date: Thursday, November 12, 2015 @ 11:52:06
  Author: heftig
Revision: 250805

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-11-12 10:51:02 UTC (rev 250804)
+++ extra-i686/PKGBUILD 2015-11-12 10:52:06 UTC (rev 250805)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-
-pkgname=iagno
-pkgver=3.18.1
-pkgrel=1
-pkgdesc="Dominate the board in a classic version of Reversi"
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('hicolor-icon-theme' 'gtk3' 'libcanberra' 'librsvg')
-makedepends=('intltool' 'itstool' 'gobject-introspection')
-conflicts=('gnome-games')
-replaces=('gnome-games')
-options=('!emptydirs')
-install=iagno.install
-url="https://live.gnome.org/Iagno";
-groups=('gnome-extra')
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('740878cf473678d2b7de60d9c8cb39a7a1634b2ec97c4d1b6db73420177156b2')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
-  --disable-schemas-compile
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: iagno/repos/extra-i686/PKGBUILD (from rev 250804, iagno/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-11-12 10:52:06 UTC (rev 250805)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgname=iagno
+pkgver=3.18.2
+pkgrel=1
+pkgdesc="Dominate the board in a classic version of Reversi"
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('hicolor-icon-theme' 'gtk3' 'libcanberra' 'librsvg')
+makedepends=('intltool' 'itstool' 'gobject-introspection')
+conflicts=('gnome-games')
+replaces=('gnome-games')
+options=('!emptydirs')
+install=iagno.install
+url="https://live.gnome.org/Iagno";
+groups=('gnome-extra')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('2ee2954ef459211643fadf74745be79a82592e12750b5cf813e784e2cbbfe1bb')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+  --disable-schemas-compile
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-i686/iagno.install
===
--- extra-i686/iagno.install2015-11-12 10:51:02 UTC (rev 250804)
+++ extra-i686/iagno.install2015-11-12 10:52:06 UTC (rev 250805)
@@ -1,12 +0,0 @@
-post_install() {
-  glib-compile-schemas usr/share/glib-2.0/schemas
-  gtk-update-icon-cache -f -q usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: iagno/repos/extra-i686/iagno.install (from rev 250804, 
iagno/trunk/iagno.install)
===
--- extra-i686/iagno.install(rev 0)
+++ extra-i686/iagno.install2015-11-12 10:52:06 UTC (rev 250805)
@@ -0,0 +1,12 @@
+post_install() {
+  glib-compile-schemas usr/share/glib-2.0/schemas
+  gtk-update-icon-cache -f -q usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-11-12 10:51:02 UTC (rev 250804)
+++ extra-x86_64/PKGBUILD   2015-11-12 10:52:06 UTC (rev 250805)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-
-pkgname=iagno
-pkgver=3.18.1
-pkgrel=1
-pkgdesc="Dominate the board in a classic version of Reversi"
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('hicolor-icon-theme' 'gtk3' 'libcanberra' 'librsvg')
-makedepends=('intltool' 'itstool' 'gobject-introspection')
-conf

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

2015-11-12 Thread Jan Steffens
Date: Thursday, November 12, 2015 @ 11:51:02
  Author: heftig
Revision: 250804

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

Added:
  gnome-taquin/repos/extra-i686/PKGBUILD
(from rev 250803, gnome-taquin/trunk/PKGBUILD)
  gnome-taquin/repos/extra-i686/gnome-taquin.install
(from rev 250803, gnome-taquin/trunk/gnome-taquin.install)
  gnome-taquin/repos/extra-x86_64/PKGBUILD
(from rev 250803, gnome-taquin/trunk/PKGBUILD)
  gnome-taquin/repos/extra-x86_64/gnome-taquin.install
(from rev 250803, gnome-taquin/trunk/gnome-taquin.install)
Deleted:
  gnome-taquin/repos/extra-i686/PKGBUILD
  gnome-taquin/repos/extra-i686/gnome-taquin.install
  gnome-taquin/repos/extra-x86_64/PKGBUILD
  gnome-taquin/repos/extra-x86_64/gnome-taquin.install

---+
 /PKGBUILD |   58 
 /gnome-taquin.install |   24 ++
 extra-i686/PKGBUILD   |   29 --
 extra-i686/gnome-taquin.install   |   12 ---
 extra-x86_64/PKGBUILD |   29 --
 extra-x86_64/gnome-taquin.install |   12 ---
 6 files changed, 82 insertions(+), 82 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-11-12 10:49:03 UTC (rev 250803)
+++ extra-i686/PKGBUILD 2015-11-12 10:51:02 UTC (rev 250804)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-
-pkgname=gnome-taquin
-pkgver=3.18.1.1
-pkgrel=1
-pkgdesc="Move tiles so that they reach their places"
-url="https://wiki.gnome.org/Apps/Taquin";
-arch=(x86_64 i686)
-license=(GPL3)
-depends=(gtk3 librsvg libcanberra)
-makedepends=(intltool vala itstool)
-groups=(gnome-extra)
-install=gnome-taquin.install
-options=(!emptydirs)
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('36091fc3f71f2cc29583cb9777da06e5fc595d0a3f282c3244386c8e0dbe98c4')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: gnome-taquin/repos/extra-i686/PKGBUILD (from rev 250803, 
gnome-taquin/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-11-12 10:51:02 UTC (rev 250804)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgname=gnome-taquin
+pkgver=3.18.2
+pkgrel=1
+pkgdesc="Move tiles so that they reach their places"
+url="https://wiki.gnome.org/Apps/Taquin";
+arch=(x86_64 i686)
+license=(GPL3)
+depends=(gtk3 librsvg libcanberra)
+makedepends=(intltool vala itstool)
+groups=(gnome-extra)
+install=gnome-taquin.install
+options=(!emptydirs)
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('26154f5fd9f75b6e9e6857d6a31a9d2ce4814ec81afc6ca3e4643058877d1155')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-i686/gnome-taquin.install
===
--- extra-i686/gnome-taquin.install 2015-11-12 10:49:03 UTC (rev 250803)
+++ extra-i686/gnome-taquin.install 2015-11-12 10:51:02 UTC (rev 250804)
@@ -1,12 +0,0 @@
-post_install() {
-  glib-compile-schemas usr/share/glib-2.0/schemas
-  gtk-update-icon-cache -f -q usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: gnome-taquin/repos/extra-i686/gnome-taquin.install (from rev 250803, 
gnome-taquin/trunk/gnome-taquin.install)
===
--- extra-i686/gnome-taquin.install (rev 0)
+++ extra-i686/gnome-taquin.install 2015-11-12 10:51:02 UTC (rev 250804)
@@ -0,0 +1,12 @@
+post_install() {
+  glib-compile-schemas usr/share/glib-2.0/schemas
+  gtk-update-icon-cache -f -q usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-11-12 10:49:03 UTC (rev 250803)
+++ extra-x86_64/PKGBUILD   2015-11-12 10:51:02 UTC (rev 250804)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-
-pkgname=gnome-taquin
-pkgver=3.18.1.1
-pkgrel=1
-pkgdesc="Move tiles so that they reach their places"
-url="https://wiki.gnome.org/Apps/Taquin";
-arch=(x86_64 i686)
-license=(GPL3)
-depends=(gtk3 librsvg libcanberra)
-makedepends=(intltool vala itstool)
-groups=(gnome-extra)
-install=gnome-taquin.

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

2015-11-12 Thread Jan Steffens
Date: Thursday, November 12, 2015 @ 11:49:03
  Author: heftig
Revision: 250803

3.18.2

Modified:
  gedit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-11-12 10:48:17 UTC (rev 250802)
+++ PKGBUILD2015-11-12 10:49:03 UTC (rev 250803)
@@ -3,7 +3,7 @@
 # Contributor: Jan de Groot 
 
 pkgname=gedit
-pkgver=3.18.1
+pkgver=3.18.2
 pkgrel=1
 pkgdesc="A text editor for GNOME"
 arch=(i686 x86_64)
@@ -15,7 +15,7 @@
 url="http://www.gnome.org";
 install=gedit.install
 
source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('5ad5aeb01b0a299bb7c154e82fcff96e1a722617fcc4e39b3b57ddcbe88363cd')
+sha256sums=('856e451aec29ee45980011de57cadfe89c3cbc53968f6cc865f8efe0bd0d49b1')
 
 build() {
   cd $pkgname-$pkgver


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

2015-11-12 Thread Jan Steffens
Date: Thursday, November 12, 2015 @ 11:48:17
  Author: heftig
Revision: 250802

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

Added:
  dconf-editor/repos/extra-i686/PKGBUILD
(from rev 250801, dconf-editor/trunk/PKGBUILD)
  dconf-editor/repos/extra-i686/dconf-editor.install
(from rev 250801, dconf-editor/trunk/dconf-editor.install)
  dconf-editor/repos/extra-x86_64/PKGBUILD
(from rev 250801, dconf-editor/trunk/PKGBUILD)
  dconf-editor/repos/extra-x86_64/dconf-editor.install
(from rev 250801, dconf-editor/trunk/dconf-editor.install)
Deleted:
  dconf-editor/repos/extra-i686/PKGBUILD
  dconf-editor/repos/extra-i686/dconf-editor.install
  dconf-editor/repos/extra-x86_64/PKGBUILD
  dconf-editor/repos/extra-x86_64/dconf-editor.install

---+
 /PKGBUILD |   58 
 /dconf-editor.install |   24 ++
 extra-i686/PKGBUILD   |   29 --
 extra-i686/dconf-editor.install   |   12 ---
 extra-x86_64/PKGBUILD |   29 --
 extra-x86_64/dconf-editor.install |   12 ---
 6 files changed, 82 insertions(+), 82 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-11-12 10:47:26 UTC (rev 250801)
+++ extra-i686/PKGBUILD 2015-11-12 10:48:17 UTC (rev 250802)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=dconf-editor
-pkgver=3.18.1
-pkgrel=1
-pkgdesc="dconf Editor"
-arch=(i686 x86_64)
-url="http://live.gnome.org/dconf";
-license=('LGPL2.1')
-groups=('gnome')
-depends=('gtk3' 'dconf')
-makedepends=('vala' 'intltool')
-install=dconf-editor.install
-source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('35c17852acc7dc9015d35148c1c4ebec1477c252f1d979cb324e1e6010d1db13')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: dconf-editor/repos/extra-i686/PKGBUILD (from rev 250801, 
dconf-editor/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-11-12 10:48:17 UTC (rev 250802)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=dconf-editor
+pkgver=3.18.2
+pkgrel=1
+pkgdesc="dconf Editor"
+arch=(i686 x86_64)
+url="http://live.gnome.org/dconf";
+license=('LGPL2.1')
+groups=('gnome')
+depends=('gtk3' 'dconf')
+makedepends=('vala' 'intltool')
+install=dconf-editor.install
+source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('a7957f5274b5b20c2dfdead5ebf42321c82fae1326465413cbafb61ede89bc75')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: extra-i686/dconf-editor.install
===
--- extra-i686/dconf-editor.install 2015-11-12 10:47:26 UTC (rev 250801)
+++ extra-i686/dconf-editor.install 2015-11-12 10:48:17 UTC (rev 250802)
@@ -1,12 +0,0 @@
-post_install() {
-  glib-compile-schemas /usr/share/glib-2.0/schemas
-  gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: dconf-editor/repos/extra-i686/dconf-editor.install (from rev 250801, 
dconf-editor/trunk/dconf-editor.install)
===
--- extra-i686/dconf-editor.install (rev 0)
+++ extra-i686/dconf-editor.install 2015-11-12 10:48:17 UTC (rev 250802)
@@ -0,0 +1,12 @@
+post_install() {
+  glib-compile-schemas /usr/share/glib-2.0/schemas
+  gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-11-12 10:47:26 UTC (rev 250801)
+++ extra-x86_64/PKGBUILD   2015-11-12 10:48:17 UTC (rev 250802)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=dconf-editor
-pkgver=3.18.1
-pkgrel=1
-pkgdesc="dconf Editor"
-arch=(i686 x86_64)
-url="http://live.gnome.org/dconf";
-license=('LGPL2.1')
-groups=('gnome')
-depends=('gtk3' 'dconf')
-makedepends=('vala' 'intltool')
-install=dconf-editor.install
-source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('35c17852acc7dc9015d35148c1c4ebec1477c252f1d979cb324e1e6010d1db13')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$

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

2015-11-12 Thread Jan Steffens
Date: Thursday, November 12, 2015 @ 11:47:26
  Author: heftig
Revision: 250801

3.18.2

Modified:
  vinagre/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-11-12 10:46:34 UTC (rev 250800)
+++ PKGBUILD2015-11-12 10:47:26 UTC (rev 250801)
@@ -5,7 +5,7 @@
 # Contributor: lp76 
 
 pkgname=vinagre
-pkgver=3.18.1
+pkgver=3.18.2
 pkgrel=1
 pkgdesc="A VNC Client for the GNOME Desktop"
 arch=(i686 x86_64)
@@ -19,7 +19,7 @@
 groups=(gnome-extra)
 options=('!emptydirs')
 
source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('5ddad95bb4dacc771d57541ecad49c9c9879043c0404c726c4853a243d710c98')
+sha256sums=('65b81299de0b75a9433e5654d5314f347895d5efb7acd3b111e5e8c03f48fbc4')
 
 build() {
   cd $pkgname-$pkgver


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

2015-11-12 Thread Jan Steffens
Date: Thursday, November 12, 2015 @ 11:46:34
  Author: heftig
Revision: 250800

3.18.1

Modified:
  vino/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-11-12 10:46:12 UTC (rev 250799)
+++ PKGBUILD2015-11-12 10:46:34 UTC (rev 250800)
@@ -3,7 +3,7 @@
 # Contributor: Jan de Groot 
 
 pkgname=vino
-pkgver=3.18.0
+pkgver=3.18.1
 pkgrel=1
 pkgdesc="a VNC server for the GNOME desktop"
 arch=(i686 x86_64)
@@ -15,7 +15,7 @@
 options=(!emptydirs)
 install=vino.install
 
source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('52be0b036389713eab224abf27f2ca2a067ba5bd1f6b526592703576005e0919')
+sha256sums=('07ec6e78bbecd4ee3fce873eb26932fdda9c7642bb09d17ac36483b996fafe5a')
 
 build() {
   cd $pkgname-$pkgver


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

2015-11-12 Thread Jan Steffens
Date: Thursday, November 12, 2015 @ 11:46:12
  Author: heftig
Revision: 250799

3.18.1

Modified:
  gnome-contacts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-11-12 10:44:33 UTC (rev 250798)
+++ PKGBUILD2015-11-12 10:46:12 UTC (rev 250799)
@@ -2,7 +2,7 @@
 # Maintainer: Ionut Biru 
 
 pkgname=gnome-contacts
-pkgver=3.18.0
+pkgver=3.18.1
 pkgrel=1
 pkgdesc="Contacts Manager for GNOME"
 arch=(i686 x86_64)
@@ -9,11 +9,11 @@
 url="http://www.gnome.org";
 license=('GPL2')
 groups=(gnome)
-depends=('gtk3' 'folks' 'libnotify' 'gnome-desktop' 'dconf' 
'gnome-online-accounts' 'libgee' 'telepathy-glib' 'cheese' 'libchamplain')
+depends=('gtk3' 'folks' 'gnome-desktop' 'dconf' 'gnome-online-accounts' 
'libgee' 'telepathy-glib' 'cheese' 'libchamplain')
 makedepends=('intltool' 'vala' 'gobject-introspection')
 install=$pkgname.install
 
source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('c81ad739a1f554e4c89979564565e32ceaf1d2cc6c93a6a75d929d7d1fe8e287')
+sha256sums=('0418d25e70e73c05f4db58ce843819ef91180a21531549a832eafeaf2700cf26')
 
 build() {
   cd $pkgname-$pkgver


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

2015-11-12 Thread Jan Steffens
Date: Thursday, November 12, 2015 @ 11:44:33
  Author: heftig
Revision: 250798

3.18.2

Modified:
  gnome-2048/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-11-12 10:44:15 UTC (rev 250797)
+++ PKGBUILD2015-11-12 10:44:33 UTC (rev 250798)
@@ -2,7 +2,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgname=gnome-2048
-pkgver=3.18.1
+pkgver=3.18.2
 pkgrel=1
 pkgdesc="Obtain the 2048 tile"
 url="https://wiki.gnome.org/Apps/2048";
@@ -14,7 +14,7 @@
 install=gnome-2048.install
 options=(!emptydirs)
 
source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('c9927405753d56786948b017c7b45a40b7438d614ea6e087aead8b08f6ede369')
+sha256sums=('bc0043cecb92713435f3de60975362f5a85c5807452ee51bed9897b52e01c0df')
 
 prepare() {
   cd $pkgname-$pkgver


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

2015-11-12 Thread Jan Steffens
Date: Thursday, November 12, 2015 @ 11:44:15
  Author: heftig
Revision: 250797

3.18.2

Modified:
  iagno/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-11-12 10:43:24 UTC (rev 250796)
+++ PKGBUILD2015-11-12 10:44:15 UTC (rev 250797)
@@ -3,7 +3,7 @@
 # Contributor: Jan de Groot 
 
 pkgname=iagno
-pkgver=3.18.1
+pkgver=3.18.2
 pkgrel=1
 pkgdesc="Dominate the board in a classic version of Reversi"
 arch=('i686' 'x86_64')
@@ -17,7 +17,7 @@
 url="https://live.gnome.org/Iagno";
 groups=('gnome-extra')
 
source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('740878cf473678d2b7de60d9c8cb39a7a1634b2ec97c4d1b6db73420177156b2')
+sha256sums=('2ee2954ef459211643fadf74745be79a82592e12750b5cf813e784e2cbbfe1bb')
 
 build() {
   cd $pkgname-$pkgver


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

2015-11-12 Thread Jan Steffens
Date: Thursday, November 12, 2015 @ 11:43:24
  Author: heftig
Revision: 250796

3.18.2

Modified:
  gnome-taquin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-11-12 10:42:20 UTC (rev 250795)
+++ PKGBUILD2015-11-12 10:43:24 UTC (rev 250796)
@@ -3,7 +3,7 @@
 # Contributor: Jan de Groot 
 
 pkgname=gnome-taquin
-pkgver=3.18.1.1
+pkgver=3.18.2
 pkgrel=1
 pkgdesc="Move tiles so that they reach their places"
 url="https://wiki.gnome.org/Apps/Taquin";
@@ -15,7 +15,7 @@
 install=gnome-taquin.install
 options=(!emptydirs)
 
source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('36091fc3f71f2cc29583cb9777da06e5fc595d0a3f282c3244386c8e0dbe98c4')
+sha256sums=('26154f5fd9f75b6e9e6857d6a31a9d2ce4814ec81afc6ca3e4643058877d1155')
 
 build() {
   cd $pkgname-$pkgver


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

2015-11-12 Thread Jan Steffens
Date: Thursday, November 12, 2015 @ 11:42:20
  Author: heftig
Revision: 250795

3.18.2

Modified:
  dconf-editor/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-11-12 05:57:47 UTC (rev 250794)
+++ PKGBUILD2015-11-12 10:42:20 UTC (rev 250795)
@@ -2,7 +2,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgname=dconf-editor
-pkgver=3.18.1
+pkgver=3.18.2
 pkgrel=1
 pkgdesc="dconf Editor"
 arch=(i686 x86_64)
@@ -13,7 +13,7 @@
 makedepends=('vala' 'intltool')
 install=dconf-editor.install
 
source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('35c17852acc7dc9015d35148c1c4ebec1477c252f1d979cb324e1e6010d1db13')
+sha256sums=('a7957f5274b5b20c2dfdead5ebf42321c82fae1326465413cbafb61ede89bc75')
 
 build() {
   cd $pkgname-$pkgver


[arch-commits] Commit in yubikey-neo-manager/trunk (PKGBUILD)

2015-11-12 Thread Christian Hesse
Date: Thursday, November 12, 2015 @ 11:33:12
  Author: eworm
Revision: 146642

upgpkg: yubikey-neo-manager 1.4.0-1

upstream release

Modified:
  yubikey-neo-manager/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-11-12 09:09:29 UTC (rev 146641)
+++ PKGBUILD2015-11-12 10:33:12 UTC (rev 146642)
@@ -2,8 +2,8 @@
 # Maintainer: Christian Hesse 
 
 pkgname=yubikey-neo-manager
-pkgver=1.3.0
-pkgrel=2
+pkgver=1.4.0
+pkgrel=1
 pkgdesc="Cross platform personalization tool for the YubiKey NEO"
 arch=('i686' 'x86_64')
 url="https://github.com/Yubico/yubikey-neo-manager";
@@ -11,9 +11,18 @@
 depends=('yubikey-personalization' 'libykneomgr' 'libu2f-host' 
'python2-pyside' 'python2-crypto' 'qtwebkit')
 makedepends=('git' 'python2-setuptools' 'python2-pyside-tools' 'imagemagick')
 install=yubikey-neo-manager.install
-source=("git://github.com/Yubico/yubikey-neo-manager.git#tag=yubikey-neo-manager-${pkgver}")
-sha256sums=('SKIP')
+source=("git://github.com/Yubico/yubikey-neo-manager.git#tag=yubikey-neo-manager-${pkgver}"
+   'git://github.com/Yubico/python-yubicommon.git')
+sha256sums=('SKIP' 'SKIP')
 
+prepare() {
+   cd yubikey-neo-manager/
+
+   git config --file=.gitmodules submodule.vendor/yubicommon.url 
../python-yubicommon/
+   git submodule init
+   git submodule update
+}
+
 package() {
cd yubikey-neo-manager/
 
@@ -20,10 +29,10 @@
python2 setup.py qt_resources
python2 setup.py install --root="${pkgdir}/" --optimize=1
 
-   install -D -m0644 resources/neoman-large.png 
"${pkgdir}/usr/share/icons/hicolor/128x128/neoman.png"
+   install -D -m0644 resources/yubikey-neo-manager.png 
"${pkgdir}/usr/share/icons/hicolor/128x128/neoman.png"
for SIZE in 16 24 32 48 64 96; do
convert -scale ${SIZE} \
-   resources/neoman-large.png \
+   resources/yubikey-neo-manager.png \
${srcdir}/neoman.png
install -D -m0644 ${srcdir}/neoman.png 
"${pkgdir}/usr/share/icons/hicolor/${SIZE}x${SIZE}/apps/neoman.png"
done


[arch-commits] Commit in yubikey-neo-manager/repos (8 files)

2015-11-12 Thread Christian Hesse
Date: Thursday, November 12, 2015 @ 11:33:15
  Author: eworm
Revision: 146643

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

Added:
  yubikey-neo-manager/repos/community-i686/PKGBUILD
(from rev 146642, yubikey-neo-manager/trunk/PKGBUILD)
  yubikey-neo-manager/repos/community-i686/yubikey-neo-manager.install
(from rev 146642, yubikey-neo-manager/trunk/yubikey-neo-manager.install)
  yubikey-neo-manager/repos/community-x86_64/PKGBUILD
(from rev 146642, yubikey-neo-manager/trunk/PKGBUILD)
  yubikey-neo-manager/repos/community-x86_64/yubikey-neo-manager.install
(from rev 146642, yubikey-neo-manager/trunk/yubikey-neo-manager.install)
Deleted:
  yubikey-neo-manager/repos/community-i686/PKGBUILD
  yubikey-neo-manager/repos/community-i686/yubikey-neo-manager.install
  yubikey-neo-manager/repos/community-x86_64/PKGBUILD
  yubikey-neo-manager/repos/community-x86_64/yubikey-neo-manager.install

--+
 /PKGBUILD|   90 +
 /yubikey-neo-manager.install |   30 
 community-i686/PKGBUILD  |   36 --
 community-i686/yubikey-neo-manager.install   |   15 
 community-x86_64/PKGBUILD|   36 --
 community-x86_64/yubikey-neo-manager.install |   15 
 6 files changed, 120 insertions(+), 102 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-11-12 10:33:12 UTC (rev 146642)
+++ community-i686/PKGBUILD 2015-11-12 10:33:15 UTC (rev 146643)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Christian Hesse 
-
-pkgname=yubikey-neo-manager
-pkgver=1.3.0
-pkgrel=2
-pkgdesc="Cross platform personalization tool for the YubiKey NEO"
-arch=('i686' 'x86_64')
-url="https://github.com/Yubico/yubikey-neo-manager";
-license=('BSD')
-depends=('yubikey-personalization' 'libykneomgr' 'libu2f-host' 
'python2-pyside' 'python2-crypto' 'qtwebkit')
-makedepends=('git' 'python2-setuptools' 'python2-pyside-tools' 'imagemagick')
-install=yubikey-neo-manager.install
-source=("git://github.com/Yubico/yubikey-neo-manager.git#tag=yubikey-neo-manager-${pkgver}")
-sha256sums=('SKIP')
-
-package() {
-   cd yubikey-neo-manager/
-
-   python2 setup.py qt_resources
-   python2 setup.py install --root="${pkgdir}/" --optimize=1
-
-   install -D -m0644 resources/neoman-large.png 
"${pkgdir}/usr/share/icons/hicolor/128x128/neoman.png"
-   for SIZE in 16 24 32 48 64 96; do
-   convert -scale ${SIZE} \
-   resources/neoman-large.png \
-   ${srcdir}/neoman.png
-   install -D -m0644 ${srcdir}/neoman.png 
"${pkgdir}/usr/share/icons/hicolor/${SIZE}x${SIZE}/apps/neoman.png"
-   done
-
-   install -D -m0644 resources/neoman.desktop 
"${pkgdir}/usr/share/applications/neoman.desktop"
-
-   install -D -m0644 COPYING 
"${pkgdir}/usr/share/licenses/yubikey-neo-manager/COPYING"
-   install -D -m0644 README 
"${pkgdir}/usr/share/doc/yubikey-neo-manager/README"
-}
-

Copied: yubikey-neo-manager/repos/community-i686/PKGBUILD (from rev 146642, 
yubikey-neo-manager/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-11-12 10:33:15 UTC (rev 146643)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Christian Hesse 
+
+pkgname=yubikey-neo-manager
+pkgver=1.4.0
+pkgrel=1
+pkgdesc="Cross platform personalization tool for the YubiKey NEO"
+arch=('i686' 'x86_64')
+url="https://github.com/Yubico/yubikey-neo-manager";
+license=('BSD')
+depends=('yubikey-personalization' 'libykneomgr' 'libu2f-host' 
'python2-pyside' 'python2-crypto' 'qtwebkit')
+makedepends=('git' 'python2-setuptools' 'python2-pyside-tools' 'imagemagick')
+install=yubikey-neo-manager.install
+source=("git://github.com/Yubico/yubikey-neo-manager.git#tag=yubikey-neo-manager-${pkgver}"
+   'git://github.com/Yubico/python-yubicommon.git')
+sha256sums=('SKIP' 'SKIP')
+
+prepare() {
+   cd yubikey-neo-manager/
+
+   git config --file=.gitmodules submodule.vendor/yubicommon.url 
../python-yubicommon/
+   git submodule init
+   git submodule update
+}
+
+package() {
+   cd yubikey-neo-manager/
+
+   python2 setup.py qt_resources
+   python2 setup.py install --root="${pkgdir}/" --optimize=1
+
+   install -D -m0644 resources/yubikey-neo-manager.png 
"${pkgdir}/usr/share/icons/hicolor/128x128/neoman.png"
+   for SIZE in 16 24 32 48 64 96; do
+   convert -scale ${SIZE} \
+   resources/yubikey-neo-manager.png \
+   ${srcdir}/neoman.png
+   install -D -m0644 ${srcdir}/neoman.png 
"${pkgdir}/usr/share/icons/hicolor/${SIZE}x${SIZE}/apps/neoman.png"
+   done
+
+   install -D -m0644 resources/neoman.desktop 
"${pkg

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

2015-11-12 Thread Christian Hesse
Date: Thursday, November 12, 2015 @ 10:09:22
  Author: eworm
Revision: 146640

upgpkg: yubico-c-client 2.15-1

upstream release

Modified:
  yubico-c-client/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-11-12 09:01:24 UTC (rev 146639)
+++ PKGBUILD2015-11-12 09:09:22 UTC (rev 146640)
@@ -2,8 +2,8 @@
 # Maintainer: Christian Hesse 
 
 pkgname=yubico-c-client
-pkgver=2.14
-pkgrel=2
+pkgver=2.15
+pkgrel=1
 pkgdesc='Yubico YubiKey client C library'
 arch=('i686' 'x86_64')
 url='https://github.com/Yubico/yubico-c-client'


[arch-commits] Commit in yubico-c-client/repos (4 files)

2015-11-12 Thread Christian Hesse
Date: Thursday, November 12, 2015 @ 10:09:29
  Author: eworm
Revision: 146641

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

Added:
  yubico-c-client/repos/community-i686/PKGBUILD
(from rev 146640, yubico-c-client/trunk/PKGBUILD)
  yubico-c-client/repos/community-x86_64/PKGBUILD
(from rev 146640, yubico-c-client/trunk/PKGBUILD)
Deleted:
  yubico-c-client/repos/community-i686/PKGBUILD
  yubico-c-client/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-11-12 09:09:22 UTC (rev 146640)
+++ community-i686/PKGBUILD 2015-11-12 09:09:29 UTC (rev 146641)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Christian Hesse 
-
-pkgname=yubico-c-client
-pkgver=2.14
-pkgrel=2
-pkgdesc='Yubico YubiKey client C library'
-arch=('i686' 'x86_64')
-url='https://github.com/Yubico/yubico-c-client'
-license=('BSD')
-depends=('curl' 'yubico-c')
-makedepends=('git' 'help2man')
-provides=('ykclient')
-conflicts=('ykclient')
-source=("git://github.com/Yubico/yubico-c-client.git#tag=ykclient-${pkgver}")
-sha256sums=('SKIP')
-
-build() {
-   cd yubico-c-client/
-
-   autoreconf -fi
-   ./configure --prefix=/usr
-   make
-}
-
-check() {
-   cd yubico-c-client/
-
-   make check
-}
-
-package() {
-   cd yubico-c-client/
-
-   install -D -m0644 COPYING 
"${pkgdir}/usr/share/licenses/yubico-c-client/COPYING"
-   install -D -m0644 README 
"${pkgdir}/usr/share/doc/yubico-c-client/README"
-   make DESTDIR="${pkgdir}/" install
-}
-

Copied: yubico-c-client/repos/community-i686/PKGBUILD (from rev 146640, 
yubico-c-client/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-11-12 09:09:29 UTC (rev 146641)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Christian Hesse 
+
+pkgname=yubico-c-client
+pkgver=2.15
+pkgrel=1
+pkgdesc='Yubico YubiKey client C library'
+arch=('i686' 'x86_64')
+url='https://github.com/Yubico/yubico-c-client'
+license=('BSD')
+depends=('curl' 'yubico-c')
+makedepends=('git' 'help2man')
+provides=('ykclient')
+conflicts=('ykclient')
+source=("git://github.com/Yubico/yubico-c-client.git#tag=ykclient-${pkgver}")
+sha256sums=('SKIP')
+
+build() {
+   cd yubico-c-client/
+
+   autoreconf -fi
+   ./configure --prefix=/usr
+   make
+}
+
+check() {
+   cd yubico-c-client/
+
+   make check
+}
+
+package() {
+   cd yubico-c-client/
+
+   install -D -m0644 COPYING 
"${pkgdir}/usr/share/licenses/yubico-c-client/COPYING"
+   install -D -m0644 README 
"${pkgdir}/usr/share/doc/yubico-c-client/README"
+   make DESTDIR="${pkgdir}/" install
+}
+

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-11-12 09:09:22 UTC (rev 146640)
+++ community-x86_64/PKGBUILD   2015-11-12 09:09:29 UTC (rev 146641)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Christian Hesse 
-
-pkgname=yubico-c-client
-pkgver=2.14
-pkgrel=2
-pkgdesc='Yubico YubiKey client C library'
-arch=('i686' 'x86_64')
-url='https://github.com/Yubico/yubico-c-client'
-license=('BSD')
-depends=('curl' 'yubico-c')
-makedepends=('git' 'help2man')
-provides=('ykclient')
-conflicts=('ykclient')
-source=("git://github.com/Yubico/yubico-c-client.git#tag=ykclient-${pkgver}")
-sha256sums=('SKIP')
-
-build() {
-   cd yubico-c-client/
-
-   autoreconf -fi
-   ./configure --prefix=/usr
-   make
-}
-
-check() {
-   cd yubico-c-client/
-
-   make check
-}
-
-package() {
-   cd yubico-c-client/
-
-   install -D -m0644 COPYING 
"${pkgdir}/usr/share/licenses/yubico-c-client/COPYING"
-   install -D -m0644 README 
"${pkgdir}/usr/share/doc/yubico-c-client/README"
-   make DESTDIR="${pkgdir}/" install
-}
-

Copied: yubico-c-client/repos/community-x86_64/PKGBUILD (from rev 146640, 
yubico-c-client/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-11-12 09:09:29 UTC (rev 146641)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Christian Hesse 
+
+pkgname=yubico-c-client
+pkgver=2.15
+pkgrel=1
+pkgdesc='Yubico YubiKey client C library'
+arch=('i686' 'x86_64')
+url='https://github.com/Yubico/yubico-c-client'
+license=('BSD')
+depends=('curl' 'yubico-c')
+makedepends=('git' 'help2man')
+provides=('ykclient')
+conflicts=('ykclient')
+source=("git://github.com/Yubico/yubico-c-client.git#tag=ykclient-${pkgver}")
+sha256sums=('SKIP')
+
+build() {
+   cd yubico-c

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

2015-11-12 Thread Maxime Gauduin
Date: Thursday, November 12, 2015 @ 10:01:15
  Author: alucryd
Revision: 146638

upgpkg: lib32-gtk3 3.18.3-1

Modified:
  lib32-gtk3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-11-12 08:42:31 UTC (rev 146637)
+++ PKGBUILD2015-11-12 09:01:15 UTC (rev 146638)
@@ -4,8 +4,8 @@
 # Contributor: GordonGR 
 
 pkgname=lib32-gtk3
-pkgver=3.18.2
-pkgrel=2
+pkgver=3.18.3
+pkgrel=1
 pkgdesc='GObject-based multi-platform GUI toolkit (v3)'
 arch=('x86_64')
 license=('LGPL')
@@ -17,7 +17,7 @@
 makedepends=('gcc-multilib' 'gobject-introspection')
 install='gtk3.install'
 
source=("http://ftp.gnome.org/pub/gnome/sources/gtk+/${pkgver:0:4}/gtk+-$pkgver.tar.xz";)
-sha256sums=('5dbec561c4a00070073bf9cf4cfdd61fab4a14c8ff5b15d700bd378f8185e152')
+sha256sums=('f3c76791f93f51e260b03676f83007730b9875a0a9bf5cd42442e2f14e593546')
 
 build() {
   cd gtk+-${pkgver}


[arch-commits] Commit in lib32-gtk3/repos/multilib-x86_64 (4 files)

2015-11-12 Thread Maxime Gauduin
Date: Thursday, November 12, 2015 @ 10:01:24
  Author: alucryd
Revision: 146639

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-gtk3/repos/multilib-x86_64/PKGBUILD
(from rev 146638, lib32-gtk3/trunk/PKGBUILD)
  lib32-gtk3/repos/multilib-x86_64/gtk3.install
(from rev 146638, lib32-gtk3/trunk/gtk3.install)
Deleted:
  lib32-gtk3/repos/multilib-x86_64/PKGBUILD
  lib32-gtk3/repos/multilib-x86_64/gtk3.install

--+
 PKGBUILD |  100 -
 gtk3.install |   26 +++---
 2 files changed, 63 insertions(+), 63 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-11-12 09:01:15 UTC (rev 146638)
+++ PKGBUILD2015-11-12 09:01:24 UTC (rev 146639)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin 
-# Contributor: josephgbr 
-# Contributor: GordonGR 
-
-pkgname=lib32-gtk3
-pkgver=3.18.2
-pkgrel=2
-pkgdesc='GObject-based multi-platform GUI toolkit (v3)'
-arch=('x86_64')
-license=('LGPL')
-url='http://www.gtk.org/'
-depends=('gtk3' 'lib32-at-spi2-atk' 'lib32-colord' 'lib32-gdk-pixbuf2'
- 'lib32-json-glib' 'lib32-libcups' 'lib32-libepoxy' 'lib32-librsvg'
- 'lib32-libxcomposite' 'lib32-libxcursor' 'lib32-libxinerama'
- 'lib32-libxkbcommon' 'lib32-libxrandr' 'lib32-pango' 'lib32-rest')
-makedepends=('gcc-multilib' 'gobject-introspection')
-install='gtk3.install'
-source=("http://ftp.gnome.org/pub/gnome/sources/gtk+/${pkgver:0:4}/gtk+-$pkgver.tar.xz";)
-sha256sums=('5dbec561c4a00070073bf9cf4cfdd61fab4a14c8ff5b15d700bd378f8185e152')
-
-build() {
-  cd gtk+-${pkgver}
-
-  export CC='gcc -m32'
-  export CXX='/bin/false'
-  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
-
-  ./configure \
---prefix='/usr' \
---libdir='/usr/lib32' \
---localstatedir='/var' \
---sysconfdir='/etc' \
---enable-{broadway,wayland,x11}-backend \
---disable-libcanberra \
---disable-schemas-compile
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-package() {
-  cd gtk+-${pkgver}
-
-  make DESTDIR="${pkgdir}" install
-  mv "${pkgdir}"/usr/bin/gtk-query-immodules-3.0{,-32}
-  rm 
"${pkgdir}"/usr/bin/{broadwayd,gtk-{builder-tool,encode-symbolic-svg,launch,update-icon-cache},gtk3-{demo,demo-application,icon-browser,widget-factory}}
-  rm -rf "${pkgdir}"/{etc,usr/{include,share}}
-}
-
-# vim: ts=2 sw=2 et:

Copied: lib32-gtk3/repos/multilib-x86_64/PKGBUILD (from rev 146638, 
lib32-gtk3/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-11-12 09:01:24 UTC (rev 146639)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: josephgbr 
+# Contributor: GordonGR 
+
+pkgname=lib32-gtk3
+pkgver=3.18.3
+pkgrel=1
+pkgdesc='GObject-based multi-platform GUI toolkit (v3)'
+arch=('x86_64')
+license=('LGPL')
+url='http://www.gtk.org/'
+depends=('gtk3' 'lib32-at-spi2-atk' 'lib32-colord' 'lib32-gdk-pixbuf2'
+ 'lib32-json-glib' 'lib32-libcups' 'lib32-libepoxy' 'lib32-librsvg'
+ 'lib32-libxcomposite' 'lib32-libxcursor' 'lib32-libxinerama'
+ 'lib32-libxkbcommon' 'lib32-libxrandr' 'lib32-pango' 'lib32-rest')
+makedepends=('gcc-multilib' 'gobject-introspection')
+install='gtk3.install'
+source=("http://ftp.gnome.org/pub/gnome/sources/gtk+/${pkgver:0:4}/gtk+-$pkgver.tar.xz";)
+sha256sums=('f3c76791f93f51e260b03676f83007730b9875a0a9bf5cd42442e2f14e593546')
+
+build() {
+  cd gtk+-${pkgver}
+
+  export CC='gcc -m32'
+  export CXX='/bin/false'
+  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
+
+  ./configure \
+--prefix='/usr' \
+--libdir='/usr/lib32' \
+--localstatedir='/var' \
+--sysconfdir='/etc' \
+--enable-{broadway,wayland,x11}-backend \
+--disable-libcanberra \
+--disable-schemas-compile
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd gtk+-${pkgver}
+
+  make DESTDIR="${pkgdir}" install
+  mv "${pkgdir}"/usr/bin/gtk-query-immodules-3.0{,-32}
+  rm 
"${pkgdir}"/usr/bin/{broadwayd,gtk-{builder-tool,encode-symbolic-svg,launch,update-icon-cache},gtk3-{demo,demo-application,icon-browser,widget-factory}}
+  rm -rf "${pkgdir}"/{etc,usr/{include,share}}
+}
+
+# vim: ts=2 sw=2 et:

Deleted: gtk3.install
===
--- gtk3.install2015-11-12 09:01:15 UTC (rev 146638)
+++ gtk3.install2015-11-12 09:01:24 UTC (rev 146639)
@@ -1,13 +0,0 @@
-post_install() {
-  GTK_PATH=/usr/lib32/gtk-3.0 /usr/bin/gtk-query-immodules-3.0-32 
--update-cache
-}
-
-post_upgrade() {
-  post_install
-}
-
-pre_remove() {
-  rm -f /usr/lib32/gtk-3.0/3.0.0/immodules.cache
-}
-
-# vim: ts=2 sw=2 et:

Copied: lib32-gtk3/repos/multilib-x86_64/gtk3.install (from rev 146638, 
lib32-gtk3/trunk/gtk3.install)
===
--- gtk3.install  

[arch-commits] Commit in emby-server/repos/community-any (12 files)

2015-11-12 Thread Maxime Gauduin
Date: Thursday, November 12, 2015 @ 09:42:31
  Author: alucryd
Revision: 146637

archrelease: copy trunk to community-any

Added:
  emby-server/repos/community-any/PKGBUILD
(from rev 146636, emby-server/trunk/PKGBUILD)
  emby-server/repos/community-any/emby-migrate-database
(from rev 146636, emby-server/trunk/emby-migrate-database)
  emby-server/repos/community-any/emby-server
(from rev 146636, emby-server/trunk/emby-server)
  emby-server/repos/community-any/emby-server.conf
(from rev 146636, emby-server/trunk/emby-server.conf)
  emby-server/repos/community-any/emby-server.install
(from rev 146636, emby-server/trunk/emby-server.install)
  emby-server/repos/community-any/emby-server.service
(from rev 146636, emby-server/trunk/emby-server.service)
Deleted:
  emby-server/repos/community-any/PKGBUILD
  emby-server/repos/community-any/emby-migrate-database
  emby-server/repos/community-any/emby-server
  emby-server/repos/community-any/emby-server.conf
  emby-server/repos/community-any/emby-server.install
  emby-server/repos/community-any/emby-server.service

---+
 PKGBUILD  |  108 +++---
 emby-migrate-database |  112 
 emby-server   |6 +-
 emby-server.conf  |8 +--
 emby-server.install   |   62 +-
 emby-server.service   |   32 ++---
 6 files changed, 164 insertions(+), 164 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-11-12 08:42:09 UTC (rev 146636)
+++ PKGBUILD2015-11-12 08:42:31 UTC (rev 146637)
@@ -1,54 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin 
-# Contributor: Daniel Seymour 
-
-pkgname=emby-server
-pkgver=3.0.5781.0
-pkgrel=1
-pkgdesc='Bring together your videos, music, photos, and live television'
-arch=('any')
-url='http://emby.media'
-license=('GPL2')
-depends=('ffmpeg' 'imagemagick' 'libmediainfo' 'mono' 'sqlite')
-install='emby-server.install'
-source=("emby-server-${pkgver}.tar.gz::https://github.com/MediaBrowser/MediaBrowser/archive/${pkgver}.tar.gz";
-'emby-server'
-'emby-migrate-database'
-'emby-server.conf'
-'emby-server.service')
-backup=('etc/conf.d/emby-server')
-sha256sums=('9ac1fe782653c2c089dffa8cdc0d73b05b8c4fd8dd3c0ee7e3278428750f9066'
-'7b1974f7bba8ac4b76e51ef7fe1257d165c7c4abbd0915e192391336048a3d74'
-'b25bf83a0ab371aff3b13b82f7af71b51bfe6d7e51eb8a8a3dd8f0774ffce6a5'
-'c9ad78f3e2f0ffcb4ee66bb3e99249fcd283dc9fee17895b9265dc733288b953'
-'8a91ea49a1699c820c4a180710072cba1d6d5c10e45df97477ff6a898f4e1d70')
-
-prepare() {
-  cd Emby-${pkgver}
-
-  sed 's/libMagickWand-6.Q8.so/libMagickWand-6.Q16HDRI.so/' -i 
MediaBrowser.Server.Mono/ImageMagickSharp.dll.config
-}
-
-build() {
-  cd Emby-${pkgver}
-
-  xbuild \
-/p:Configuration='Release Mono' \
-/p:Platform='Any CPU' \
-/p:OutputPath="${srcdir}/build" \
-/t:build MediaBrowser.Mono.sln
-}
-
-package() {
-  install -dm 755 "${pkgdir}"/{etc/conf.d,usr/{bin,lib/systemd/system}}
-  cp -dr --no-preserve='ownership' build "${pkgdir}"/usr/lib/emby-server
-  install -m 755 emby-server "${pkgdir}"/usr/bin/
-  install -m 755 emby-migrate-database "${pkgdir}"/usr/bin/
-  install -m 644 emby-server.service "${pkgdir}"/usr/lib/systemd/system/
-  install -m 644 emby-server.conf "${pkgdir}"/etc/conf.d/emby-server
-
-  install -dm 755 "${pkgdir}"/var/lib/emby
-  chown 422:422 -R "${pkgdir}"/var/lib/emby
-}
-
-# vim: ts=2 sw=2 et:

Copied: emby-server/repos/community-any/PKGBUILD (from rev 146636, 
emby-server/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-11-12 08:42:31 UTC (rev 146637)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: Daniel Seymour 
+
+pkgname=emby-server
+pkgver=3.0.5781.1
+pkgrel=1
+pkgdesc='Bring together your videos, music, photos, and live television'
+arch=('any')
+url='http://emby.media'
+license=('GPL2')
+depends=('ffmpeg' 'imagemagick' 'libmediainfo' 'mono' 'sqlite')
+install='emby-server.install'
+source=("emby-server-${pkgver}.tar.gz::https://github.com/MediaBrowser/MediaBrowser/archive/${pkgver}.tar.gz";
+'emby-server'
+'emby-migrate-database'
+'emby-server.conf'
+'emby-server.service')
+backup=('etc/conf.d/emby-server')
+sha256sums=('6c555d89c90a9ced9b909b493912dc15bf2abd6bb8c22685437edb645808ac93'
+'7b1974f7bba8ac4b76e51ef7fe1257d165c7c4abbd0915e192391336048a3d74'
+'b25bf83a0ab371aff3b13b82f7af71b51bfe6d7e51eb8a8a3dd8f0774ffce6a5'
+'c9ad78f3e2f0ffcb4ee66bb3e99249fcd283dc9fee17895b9265dc733288b953'
+'8a91ea49a1699c820c4a180710072cba1d6d5c10e45df97477ff6a898f4e1d70')
+
+prepare() {
+  cd Emby-${pkgver}
+
+  sed 's/libMagickWand-6.Q8.so/libMagickWand-6.Q1

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

2015-11-12 Thread Maxime Gauduin
Date: Thursday, November 12, 2015 @ 09:42:09
  Author: alucryd
Revision: 146636

upgpkg: emby-server 3.0.5781.1-1

Modified:
  emby-server/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-11-12 05:47:45 UTC (rev 146635)
+++ PKGBUILD2015-11-12 08:42:09 UTC (rev 146636)
@@ -3,7 +3,7 @@
 # Contributor: Daniel Seymour 
 
 pkgname=emby-server
-pkgver=3.0.5781.0
+pkgver=3.0.5781.1
 pkgrel=1
 pkgdesc='Bring together your videos, music, photos, and live television'
 arch=('any')
@@ -17,7 +17,7 @@
 'emby-server.conf'
 'emby-server.service')
 backup=('etc/conf.d/emby-server')
-sha256sums=('9ac1fe782653c2c089dffa8cdc0d73b05b8c4fd8dd3c0ee7e3278428750f9066'
+sha256sums=('6c555d89c90a9ced9b909b493912dc15bf2abd6bb8c22685437edb645808ac93'
 '7b1974f7bba8ac4b76e51ef7fe1257d165c7c4abbd0915e192391336048a3d74'
 'b25bf83a0ab371aff3b13b82f7af71b51bfe6d7e51eb8a8a3dd8f0774ffce6a5'
 'c9ad78f3e2f0ffcb4ee66bb3e99249fcd283dc9fee17895b9265dc733288b953'