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

2015-10-20 Thread Evangelos Foutras
Date: Tuesday, October 20, 2015 @ 08:30:20
  Author: foutrelis
Revision: 144408

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

Added:
  gpsdrive/repos/community-staging-i686/
  gpsdrive/repos/community-staging-i686/PKGBUILD
(from rev 144407, gpsdrive/trunk/PKGBUILD)
  gpsdrive/repos/community-staging-i686/gpsd-3.14.patch
(from rev 144407, gpsdrive/trunk/gpsd-3.14.patch)
  gpsdrive/repos/community-staging-i686/gpsdrive-perltovendor.patch
(from rev 144407, gpsdrive/trunk/gpsdrive-perltovendor.patch)
  gpsdrive/repos/community-staging-i686/gpsdrive.install
(from rev 144407, gpsdrive/trunk/gpsdrive.install)
  gpsdrive/repos/community-staging-x86_64/
  gpsdrive/repos/community-staging-x86_64/PKGBUILD
(from rev 144407, gpsdrive/trunk/PKGBUILD)
  gpsdrive/repos/community-staging-x86_64/gpsd-3.14.patch
(from rev 144407, gpsdrive/trunk/gpsd-3.14.patch)
  gpsdrive/repos/community-staging-x86_64/gpsdrive-perltovendor.patch
(from rev 144407, gpsdrive/trunk/gpsdrive-perltovendor.patch)
  gpsdrive/repos/community-staging-x86_64/gpsdrive.install
(from rev 144407, gpsdrive/trunk/gpsdrive.install)

--+
 community-staging-i686/PKGBUILD  |   76 +
 community-staging-i686/gpsd-3.14.patch   |   20 
 community-staging-i686/gpsdrive-perltovendor.patch   |   28 ++
 community-staging-i686/gpsdrive.install  |4 
 community-staging-x86_64/PKGBUILD|   76 +
 community-staging-x86_64/gpsd-3.14.patch |   20 
 community-staging-x86_64/gpsdrive-perltovendor.patch |   28 ++
 community-staging-x86_64/gpsdrive.install|4 
 8 files changed, 256 insertions(+)

Copied: gpsdrive/repos/community-staging-i686/PKGBUILD (from rev 144407, 
gpsdrive/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-10-20 06:30:20 UTC (rev 144408)
@@ -0,0 +1,76 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Tom Newsom 
+# Maintainer: damir 
+
+pkgname=gpsdrive
+pkgver=2.11
+_pkgver=20150407
+pkgrel=30
+pkgdesc="A car (bike, ship, plane) navigation system"
+arch=("i686" "x86_64")
+url="http://www.gpsdrive.de/;
+license=('GPL2')
+depends=('gtk2' 'gpsd' 'libxml2' 'curl' 'python2' 'boost-libs' 'gdal' 'mapnik' 
'postgresql-libs' 'openstreetmap-map-icons-svn'
+ 'perl-date-manip' 'perl-timedate' 'perl-dbi' 'perl-file-slurp' 
'perl-www-mechanize' 'perl-libwww' 'perl-uri'
+ 'perl-text-query' 'perl-www-curl' 'perl-xml-parser' 'perl-xml-simple' 
'perl-xml-twig' 'perl-xml-writer')
+makedepends=('cmake>=2.4.4' 'boost' 'cfitsio')
+install="gpsdrive.install"
+#source=("http://www.gpsdrive.de/packages/${pkgname}-${pkgver}.tar.gz;)
+source=("http://arch.p5n.pp.ru/~sergej/dl/2015/${pkgname}-${_pkgver}.tar.xz;
+   "gpsdrive-perltovendor.patch"
+   "gpsd-3.14.patch")
+md5sums=('c363e751ba1e70e49b198a1889142ca5'
+ 'c28bc2dc51a76a39161bf540aebfab6c'
+ '77fa3d6b0437cff54505aedde7ab7230')
+
+prepare() {
+  cd "$srcdir"
+  # python2 fix
+  for file in $(find . -name '*.py' -print); do
+sed -i 's_#!/usr/bin/python_#!/usr/bin/python2_' $file
+sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_' $file
+  done
+  sed -i 's|GdkGC \*kontext_map;|extern GdkGC *kontext_map;|' 
$srcdir/gpsdrive-${_pkgver}/src/gpsdrive.c
+  sed -i '22,1i#include ' 
$srcdir/gpsdrive-${_pkgver}/src/mapnik.cpp
+  sed -i 's|datasource_cache::instance()->|datasource_cache::instance().|' 
$srcdir/gpsdrive-${_pkgver}/src/mapnik.cpp
+  cd gpsdrive-${_pkgver}
+  patch -p1 <$srcdir/gpsdrive-perltovendor.patch
+  patch -p1 <$srcdir/gpsd-3.14.patch
+}
+
+build() {
+  cd "$srcdir"
+
+  mkdir -p build
+  cd build
+
+  export CFLAGS=-I/usr/include/gdk-pixbuf-2.0/
+  export CPPFLAGS=-I/usr/include/gdk-pixbuf-2.0/
+  export CXXFLAGS=-I/usr/include/gdk-pixbuf-2.0/
+  export LDFLAGS="`pkg-config --libs gtk+-2.0 gmodule-2.0` -lboost_system 
-lboost_thread"
+
+  # see DefineOptions.cmake for a list of common options and defaults
+  # cmake -L for a more in-depth listing
+  cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX="/usr" \
+-DWITH_SCRIPTS=ON \
+-DWITH_MAPNIK=ON \
+-DWITH_POSTGIS=ON \
+-DWITH_GDAL=ON \
+-DWITH_BASEMAPS=ON \
+-DWITH_FRIENDSD=ON \
+-DWITH_KISMET=ON \
+-DWITH_NAVIGATION=ON \
+-DWITH_SPEECH=OFF \
+-DWITH_DBUS=OFF \
+-DLIBGPS_OLD=OFF \
+-DFREETYPE2_INCLUDE_DIRS=/usr/include/freetype2 \
+-DFREETYPE2_LIBRARIES=/usr/lib \
+"$srcdir/gpsdrive-${_pkgver}"
+  make
+}
+
+package() {
+  cd "$srcdir/build"
+  make DESTDIR="$pkgdir" install
+}

Copied: gpsdrive/repos/community-staging-i686/gpsd-3.14.patch (from rev 144407, 

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

2015-10-20 Thread Evangelos Foutras
Date: Tuesday, October 20, 2015 @ 08:59:30
  Author: foutrelis
Revision: 249535

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

Added:
  enblend-enfuse/repos/staging-i686/
  enblend-enfuse/repos/staging-i686/PKGBUILD
(from rev 249534, enblend-enfuse/trunk/PKGBUILD)
  enblend-enfuse/repos/staging-i686/enblend-enfuse.install
(from rev 249534, enblend-enfuse/trunk/enblend-enfuse.install)
  enblend-enfuse/repos/staging-x86_64/
  enblend-enfuse/repos/staging-x86_64/PKGBUILD
(from rev 249534, enblend-enfuse/trunk/PKGBUILD)
  enblend-enfuse/repos/staging-x86_64/enblend-enfuse.install
(from rev 249534, enblend-enfuse/trunk/enblend-enfuse.install)

---+
 staging-i686/PKGBUILD |   32 
 staging-i686/enblend-enfuse.install   |   22 ++
 staging-x86_64/PKGBUILD   |   32 
 staging-x86_64/enblend-enfuse.install |   22 ++
 4 files changed, 108 insertions(+)

Copied: enblend-enfuse/repos/staging-i686/PKGBUILD (from rev 249534, 
enblend-enfuse/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-10-20 06:59:30 UTC (rev 249535)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: tobias 
+# Contributor: Dominik Ryba 
+
+pkgname=enblend-enfuse
+pkgver=4.1.3
+pkgrel=6
+pkgdesc="Intelligent blend tool for overlapping picture"
+arch=("i686" "x86_64")
+license=('GPL')
+url="http://enblend.sourceforge.net;
+depends=('openexr' 'glew' 'freeglut' 'lcms2' 'boost-libs' 'vigra' 'gsl')
+makedepends=('boost' 'mesa')
+replaces=('enblend')
+conflicts=('enblend')
+provides=('enblend')
+install=${pkgname}.install
+source=(http://downloads.sourceforge.net/sourceforge/enblend/${pkgname}-${pkgver}.tar.gz)
+md5sums=('a025137ba53fc8a355347fe721c6267c')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  install -D -m644 doc/enblend.info "${pkgdir}/usr/share/info/enblend.info"
+  install -D -m644 doc/enfuse.info "${pkgdir}/usr/share/info/enfuse.info"
+}

Copied: enblend-enfuse/repos/staging-i686/enblend-enfuse.install (from rev 
249534, enblend-enfuse/trunk/enblend-enfuse.install)
===
--- staging-i686/enblend-enfuse.install (rev 0)
+++ staging-i686/enblend-enfuse.install 2015-10-20 06:59:30 UTC (rev 249535)
@@ -0,0 +1,22 @@
+infodir=usr/share/info
+filelist=(enblend.info enfuse.info)
+
+post_install() {
+  [[ -x usr/bin/install-info ]] || return 0
+  for file in ${filelist[@]}; do
+install-info $infodir/$file.gz $infodir/dir 2> /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [[ -x usr/bin/install-info ]] || return 0
+  for file in ${filelist[@]}; do
+install-info --delete $infodir/$file.gz $infodir/dir 2> /dev/null
+  done
+}
+
+# vim:set ts=2 sw=2 et:

Copied: enblend-enfuse/repos/staging-x86_64/PKGBUILD (from rev 249534, 
enblend-enfuse/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2015-10-20 06:59:30 UTC (rev 249535)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: tobias 
+# Contributor: Dominik Ryba 
+
+pkgname=enblend-enfuse
+pkgver=4.1.3
+pkgrel=6
+pkgdesc="Intelligent blend tool for overlapping picture"
+arch=("i686" "x86_64")
+license=('GPL')
+url="http://enblend.sourceforge.net;
+depends=('openexr' 'glew' 'freeglut' 'lcms2' 'boost-libs' 'vigra' 'gsl')
+makedepends=('boost' 'mesa')
+replaces=('enblend')
+conflicts=('enblend')
+provides=('enblend')
+install=${pkgname}.install
+source=(http://downloads.sourceforge.net/sourceforge/enblend/${pkgname}-${pkgver}.tar.gz)
+md5sums=('a025137ba53fc8a355347fe721c6267c')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  install -D -m644 doc/enblend.info "${pkgdir}/usr/share/info/enblend.info"
+  install -D -m644 doc/enfuse.info "${pkgdir}/usr/share/info/enfuse.info"
+}

Copied: enblend-enfuse/repos/staging-x86_64/enblend-enfuse.install (from rev 
249534, enblend-enfuse/trunk/enblend-enfuse.install)
===
--- staging-x86_64/enblend-enfuse.install   (rev 0)
+++ staging-x86_64/enblend-enfuse.install   2015-10-20 06:59:30 UTC (rev 
249535)
@@ -0,0 +1,22 @@
+infodir=usr/share/info
+filelist=(enblend.info enfuse.info)
+
+post_install() {
+  [[ -x usr/bin/install-info ]] || return 0
+  for file in ${filelist[@]}; 

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

2015-10-20 Thread Evangelos Foutras
Date: Tuesday, October 20, 2015 @ 08:59:24
  Author: foutrelis
Revision: 249534

boost 1.59.0 rebuild

Modified:
  enblend-enfuse/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-10-20 06:35:45 UTC (rev 249533)
+++ PKGBUILD2015-10-20 06:59:24 UTC (rev 249534)
@@ -4,7 +4,7 @@
 
 pkgname=enblend-enfuse
 pkgver=4.1.3
-pkgrel=5
+pkgrel=6
 pkgdesc="Intelligent blend tool for overlapping picture"
 arch=("i686" "x86_64")
 license=('GPL')


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

2015-10-20 Thread Evangelos Foutras
Date: Tuesday, October 20, 2015 @ 09:02:37
  Author: foutrelis
Revision: 144411

boost 1.59.0 rebuild

Modified:
  openshadinglanguage/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-10-20 06:55:15 UTC (rev 144410)
+++ PKGBUILD2015-10-20 07:02:37 UTC (rev 144411)
@@ -2,7 +2,7 @@
 # Maintainer: Sven-Hendrik Haase 
 pkgname=openshadinglanguage
 pkgver=1.5.12
-pkgrel=8
+pkgrel=9
 pkgdesc="Advanced shading language for production GI renderers"
 arch=(i686 x86_64)
 url="https://github.com/imageworks/OpenShadingLanguage;


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

2015-10-20 Thread Evangelos Foutras
Date: Tuesday, October 20, 2015 @ 09:02:45
  Author: foutrelis
Revision: 144412

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

Added:
  openshadinglanguage/repos/community-staging-i686/
  openshadinglanguage/repos/community-staging-i686/PKGBUILD
(from rev 144411, openshadinglanguage/trunk/PKGBUILD)
  openshadinglanguage/repos/community-staging-i686/llvm-static-system-libs.patch
(from rev 144411, openshadinglanguage/trunk/llvm-static-system-libs.patch)
  openshadinglanguage/repos/community-staging-x86_64/
  openshadinglanguage/repos/community-staging-x86_64/PKGBUILD
(from rev 144411, openshadinglanguage/trunk/PKGBUILD)
  
openshadinglanguage/repos/community-staging-x86_64/llvm-static-system-libs.patch
(from rev 144411, openshadinglanguage/trunk/llvm-static-system-libs.patch)

+
 community-staging-i686/PKGBUILD|   57 +++
 community-staging-i686/llvm-static-system-libs.patch   |   15 +++
 community-staging-x86_64/PKGBUILD  |   57 +++
 community-staging-x86_64/llvm-static-system-libs.patch |   15 +++
 4 files changed, 144 insertions(+)

Copied: openshadinglanguage/repos/community-staging-i686/PKGBUILD (from rev 
144411, openshadinglanguage/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-10-20 07:02:45 UTC (rev 144412)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+pkgname=openshadinglanguage
+pkgver=1.5.12
+pkgrel=9
+pkgdesc="Advanced shading language for production GI renderers"
+arch=(i686 x86_64)
+url="https://github.com/imageworks/OpenShadingLanguage;
+license=('custom')
+depends=('boost-libs' 'openimageio' 'openexr' 'intel-tbb' 'freetype2' 'libpng'
+ 'libtiff' 'zlib' 'ncurses')
+makedepends=('boost' 'cmake' 'clang35' 'llvm35')
+source=(https://github.com/imageworks/OpenShadingLanguage/archive/Release-${pkgver}.tar.gz
+llvm-static-system-libs.patch
+
alignment.patch::https://github.com/imageworks/OpenShadingLanguage/commit/bcaf5778e2d778b72615e5c49269b59671cf0d91.patch)
+md5sums=('484752a0f97df55962c3a667075deddc'
+ 'b7c212b2549981ced03c091375f48122'
+ 'f3f24c2aa7f5aabd98c0967747b58ecc')
+
+prepare() {
+  cd OpenShadingLanguage-Release-$pkgver
+  patch -Np1 < $srcdir/alignment.patch
+
+  # Add system libraries needed to link against LLVM components (zlib, ncurses)
+  # This is required in order to statically link against LLVM
+  patch -Np1 < $srcdir/llvm-static-system-libs.patch
+}
+
+build() {
+  cd OpenShadingLanguage-Release-$pkgver
+
+  cd src
+
+  [[ -d build ]] && rm -r build
+  mkdir build && cd build
+
+  cmake ../.. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLLVM_STATIC=1 \
+-DCMAKE_CXX_FLAGS="-Wno-error=array-bounds -std=c++11"
+  make
+}
+
+package() {
+  cd OpenShadingLanguage-Release-$pkgver/src/build
+
+  make DESTDIR="$pkgdir/" install
+
+  mkdir -p "$pkgdir"/usr/share/OSL/
+  mkdir -p "$pkgdir"/usr/share/licenses/$pkgname
+  mv "$pkgdir"/usr/LICENSE "$pkgdir"/usr/share/licenses/$pkgname # TODO: Tell 
upstream about this shit
+  mv "$pkgdir"/usr/{CHANGES,README.md,INSTALL} "$pkgdir"/usr/share/OSL/
+  mv "$pkgdir"/usr/doc "$pkgdir"/usr/share/OSL/doc
+  mv "$pkgdir"/usr/shaders "$pkgdir"/usr/share/OSL/shaders
+}
+
+# vim:set ts=2 sw=2 et:

Copied: 
openshadinglanguage/repos/community-staging-i686/llvm-static-system-libs.patch 
(from rev 144411, openshadinglanguage/trunk/llvm-static-system-libs.patch)
===
--- community-staging-i686/llvm-static-system-libs.patch
(rev 0)
+++ community-staging-i686/llvm-static-system-libs.patch2015-10-20 
07:02:45 UTC (rev 144412)
@@ -0,0 +1,15 @@
+diff -upr 
OpenShadingLanguage-Release-1.5.12.orig/src/cmake/externalpackages.cmake 
OpenShadingLanguage-Release-1.5.12/src/cmake/externalpackages.cmake
+--- OpenShadingLanguage-Release-1.5.12.orig/src/cmake/externalpackages.cmake   
2014-12-26 22:22:53.0 +0200
 OpenShadingLanguage-Release-1.5.12/src/cmake/externalpackages.cmake
2015-03-16 03:12:56.052479730 +0200
+@@ -211,9 +211,10 @@ if ((LLVM_LIBRARY OR LLVM_STATIC) AND LL
+ # if static LLVM libraries were requested, use llvm-config to generate
+ # the list of what libraries we need, and substitute that in the right
+ # way for LLVM_LIBRARY.
+-execute_process (COMMAND ${LLVM_CONFIG} --libfiles
++execute_process (COMMAND ${LLVM_CONFIG} --libfiles --system-libs
+  OUTPUT_VARIABLE LLVM_LIBRARY
+  OUTPUT_STRIP_TRAILING_WHITESPACE)
++string (REPLACE "\n" " " LLVM_LIBRARY ${LLVM_LIBRARY})
+ string (REPLACE " " ";" LLVM_LIBRARY ${LLVM_LIBRARY})
+   endif ()
+   if (VERBOSE)

Copied: 

[arch-commits] Commit in (5 files)

2015-10-20 Thread Felix Yan
Date: Tuesday, October 20, 2015 @ 09:14:19
  Author: fyan
Revision: 144413

addpkg: deepin-movie 2.3.0.20151020-1

Added:
  deepin-movie/
  deepin-movie/repos/
  deepin-movie/trunk/
  deepin-movie/trunk/PKGBUILD
  deepin-movie/trunk/deepin-movie.install

--+
 PKGBUILD |   38 ++
 deepin-movie.install |   11 +++
 2 files changed, 49 insertions(+)

Added: deepin-movie/trunk/PKGBUILD
===
--- deepin-movie/trunk/PKGBUILD (rev 0)
+++ deepin-movie/trunk/PKGBUILD 2015-10-20 07:14:19 UTC (rev 144413)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=deepin-movie
+pkgver=2.3.0.20151020
+_commit=640ea9471b4d911728a9742bdae78a785f323b15
+pkgrel=1
+pkgdesc='Movie player based on QtAV'
+arch=('any')
+url="https://gitcafe.com/Deepin/deepin-movie;
+license=('GPL3')
+depends=('python2-pyqt5' 'qtav' 'mediainfo' 'deepin-menu' 'python2-dbus'
+ 'python2-peewee' 'python2-pillow' 'python2-peewee' 'python2-magic'
+ 'deepin-qml-widgets' 'python2-xpybutil' 'python2-deepin-utils'
+ 'python2-requests' 'python2-bottle' 'dleyna-renderer')
+makedepends=('deepin-gettext-tools' 'git')
+groups=('deepin-extra')
+install="${pkgname}.install"
+source=("git+https://github.com/linuxdeepin/deepin-movie.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+prepare() {
+  cd deepin-movie
+
+  # fix python version
+  find -iname "*.py" | xargs sed -i 's=\(^#! */usr/bin.*\)python *$=\1python2='
+}
+
+build() {
+  cd deepin-movie
+  python2 configure.py
+  deepin-generate-mo locale/locale_config.ini
+}
+
+package() {
+  cd deepin-movie
+  make DESTDIR="${pkgdir}" PREFIX="/usr" install
+}


Property changes on: deepin-movie/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: deepin-movie/trunk/deepin-movie.install
===
--- deepin-movie/trunk/deepin-movie.install (rev 0)
+++ deepin-movie/trunk/deepin-movie.install 2015-10-20 07:14:19 UTC (rev 
144413)
@@ -0,0 +1,11 @@
+post_install() {
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install "$1"
+}
+
+post_remove() {
+  post_install "$1"
+}


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

2015-10-20 Thread Felix Yan
Date: Tuesday, October 20, 2015 @ 09:39:54
  Author: fyan
Revision: 144417

boost 1.59.0 rebuild

Modified:
  mygui/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-10-20 07:38:20 UTC (rev 144416)
+++ PKGBUILD2015-10-20 07:39:54 UTC (rev 144417)
@@ -4,7 +4,7 @@
 pkgbase=mygui
 pkgname=('mygui' 'mygui-docs')
 pkgver=3.2.2
-pkgrel=3
+pkgrel=4
 pkgdesc="A multilayer and overlappable GUI System for OGRE"
 arch=('i686' 'x86_64')
 url="http://mygui.info/;


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

2015-10-20 Thread Evangelos Foutras
Date: Tuesday, October 20, 2015 @ 08:30:08
  Author: foutrelis
Revision: 144407

boost 1.59.0 rebuild

Modified:
  gpsdrive/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-10-20 06:28:13 UTC (rev 144406)
+++ PKGBUILD2015-10-20 06:30:08 UTC (rev 144407)
@@ -6,7 +6,7 @@
 pkgname=gpsdrive
 pkgver=2.11
 _pkgver=20150407
-pkgrel=29
+pkgrel=30
 pkgdesc="A car (bike, ship, plane) navigation system"
 arch=("i686" "x86_64")
 url="http://www.gpsdrive.de/;


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

2015-10-20 Thread Felix Yan
Date: Tuesday, October 20, 2015 @ 09:40:26
  Author: fyan
Revision: 144418

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

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

+
 community-staging-i686/PKGBUILD|   72 +++
 community-staging-i686/mygui.install   |3 +
 community-staging-x86_64/PKGBUILD  |   72 +++
 community-staging-x86_64/mygui.install |3 +
 4 files changed, 150 insertions(+)

Copied: mygui/repos/community-staging-i686/PKGBUILD (from rev 144417, 
mygui/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-10-20 07:40:26 UTC (rev 144418)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Andrew Belitsky 
+pkgbase=mygui
+pkgname=('mygui' 'mygui-docs')
+pkgver=3.2.2
+pkgrel=4
+pkgdesc="A multilayer and overlappable GUI System for OGRE"
+arch=('i686' 'x86_64')
+url="http://mygui.info/;
+license=('LGPL')
+depends=('boost-libs' 'ogre' 'ois')
+makedepends=('boost' 'cmake' 'doxygen' 'graphviz' 'ttf-dejavu')
+install=mygui.install
+source=("https://github.com/MyGUI/mygui/archive/MyGUI${pkgver}.tar.gz;)
+md5sums=('0023a689a2a63febc2cc703f81f86c62')
+
+build() {
+  cd $srcdir/mygui-MyGUI$pkgver
+
+  # change CMake config so demos install to /opt
+  sed -i 's:"bin:"../opt/MYGUI:' CMake/Utils/MyGUIConfigTargets.cmake
+  sed -i -e 's:../share:/usr/share:' \
+ -e 's:"bin":"../opt/MYGUI":' \
+ CMake/InstallResources.cmake
+  sed -i '71 i set(MYGUI_GCC_VISIBILITY_FLAGS "")' CMakeLists.txt
+  sed -i 's/\${OIS_LIBRARIES}/${OIS_LIBRARIES} boost_system/g' 
Common/CMakeLists.txt
+
+  # get a clean build dir
+  [[ -d build ]] && rm -rf build
+  mkdir build && cd build
+
+  # generate CMake Makefile
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DMYGUI_INSTALL_SAMPLES=TRUE \
+-DMYGUI_INSTALL_TOOLS=TRUE \
+-DMYGUI_INSTALL_DOCS=TRUE \
+-DMYGUI_INSTALL_MEDIA=TRUE \
+-DFREETYPE_INCLUDE_DIR=/usr/include/freetype2/ \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_SHARED_LIBS=TRUE
+
+  make
+  make api-docs
+}
+
+package_mygui() {
+  optdepends=('mygui-docs: documentation')
+
+  cd $srcdir/mygui-MyGUI$pkgver/build
+  
+  make DESTDIR="$pkgdir" install
+
+  # make demos work
+  install -Dm775 lib/libCommon.so ${pkgdir}/usr/lib/libCommon.so
+  chown root:users $pkgdir/opt/MYGUI
+  chmod 775 $pkgdir/opt/MYGUI
+}
+
+package_mygui-docs() {
+  pkgdesc="Documentation for mygui"
+  depends=()
+
+  cd $srcdir/mygui-MyGUI$pkgver/build
+  
+  # install docs
+  install -d $pkgdir/usr/share/doc/
+  cp -r Docs/html $pkgdir/usr/share/doc/MYGUI
+}
+
+# vim:set ts=2 sw=2 et:

Copied: mygui/repos/community-staging-i686/mygui.install (from rev 144417, 
mygui/trunk/mygui.install)
===
--- community-staging-i686/mygui.install(rev 0)
+++ community-staging-i686/mygui.install2015-10-20 07:40:26 UTC (rev 
144418)
@@ -0,0 +1,3 @@
+post_install() {
+echo "To view the MyGUI samples, go to /opt/MYGUI/ and run the samples 
individually"
+}

Copied: mygui/repos/community-staging-x86_64/PKGBUILD (from rev 144417, 
mygui/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-10-20 07:40:26 UTC (rev 144418)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Andrew Belitsky 
+pkgbase=mygui
+pkgname=('mygui' 'mygui-docs')
+pkgver=3.2.2
+pkgrel=4
+pkgdesc="A multilayer and overlappable GUI System for OGRE"
+arch=('i686' 'x86_64')
+url="http://mygui.info/;
+license=('LGPL')
+depends=('boost-libs' 'ogre' 'ois')
+makedepends=('boost' 'cmake' 'doxygen' 'graphviz' 'ttf-dejavu')
+install=mygui.install
+source=("https://github.com/MyGUI/mygui/archive/MyGUI${pkgver}.tar.gz;)
+md5sums=('0023a689a2a63febc2cc703f81f86c62')
+
+build() {
+  cd $srcdir/mygui-MyGUI$pkgver
+
+  # change CMake config so demos install to /opt
+  sed -i 's:"bin:"../opt/MYGUI:' CMake/Utils/MyGUIConfigTargets.cmake
+  sed -i -e 's:../share:/usr/share:' \
+ -e 's:"bin":"../opt/MYGUI":' \
+ CMake/InstallResources.cmake
+  sed -i '71 i 

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

2015-10-20 Thread Evangelos Foutras
Date: Tuesday, October 20, 2015 @ 10:30:44
  Author: foutrelis
Revision: 144430

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

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

-+
 community-staging-i686/PKGBUILD |   37 ++
 community-staging-i686/stuntrally.install   |   13 +
 community-staging-x86_64/PKGBUILD   |   37 ++
 community-staging-x86_64/stuntrally.install |   13 +
 4 files changed, 100 insertions(+)

Copied: stuntrally/repos/community-staging-i686/PKGBUILD (from rev 144429, 
stuntrally/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-10-20 08:30:44 UTC (rev 144430)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Sven Schneider 
+# Contributor: Jason Melton 
+
+pkgname=stuntrally
+pkgver=2.6
+pkgrel=2
+pkgdesc='Stunt Rally game with track editor, based on VDrift'
+arch=('x86_64' 'i686')
+license=('GPL3')
+url='http://stuntrally.tuxfamily.org'
+depends=('libvorbis' 'mygui' 'sdl2' 'enet' 'gtk-update-icon-cache' 
'stuntrally-data' 'bullet' 'openal')
+makedepends=('cmake' 'boost' 'git')
+install=stuntrally.install
+source=("$pkgname-$pkgver.tar.gz::https://github.com/stuntrally/stuntrally/archive/${pkgver}.tar.gz;)
+sha256sums=('8cc309d27d26f78dcc596440547d68b5e41d02ef830df2d52d38611d45ebbaca')
+
+build() {
+  cd "$srcdir/stuntrally-$pkgver/"
+
+  rm -rf build
+  mkdir build && cd build
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX="/usr" \
+-DSHARE_INSTALL="share/stuntrally"
+  make
+}
+
+package() {
+  cd "$srcdir/stuntrally-$pkgver/build/"
+
+  make DESTDIR="$pkgdir" install
+  rm -rf "$pkgdir/usr/share/stuntrally/"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: stuntrally/repos/community-staging-i686/stuntrally.install (from rev 
144429, stuntrally/trunk/stuntrally.install)
===
--- community-staging-i686/stuntrally.install   (rev 0)
+++ community-staging-i686/stuntrally.install   2015-10-20 08:30:44 UTC (rev 
144430)
@@ -0,0 +1,13 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+ post_install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: stuntrally/repos/community-staging-x86_64/PKGBUILD (from rev 144429, 
stuntrally/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-10-20 08:30:44 UTC (rev 144430)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Sven Schneider 
+# Contributor: Jason Melton 
+
+pkgname=stuntrally
+pkgver=2.6
+pkgrel=2
+pkgdesc='Stunt Rally game with track editor, based on VDrift'
+arch=('x86_64' 'i686')
+license=('GPL3')
+url='http://stuntrally.tuxfamily.org'
+depends=('libvorbis' 'mygui' 'sdl2' 'enet' 'gtk-update-icon-cache' 
'stuntrally-data' 'bullet' 'openal')
+makedepends=('cmake' 'boost' 'git')
+install=stuntrally.install
+source=("$pkgname-$pkgver.tar.gz::https://github.com/stuntrally/stuntrally/archive/${pkgver}.tar.gz;)
+sha256sums=('8cc309d27d26f78dcc596440547d68b5e41d02ef830df2d52d38611d45ebbaca')
+
+build() {
+  cd "$srcdir/stuntrally-$pkgver/"
+
+  rm -rf build
+  mkdir build && cd build
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX="/usr" \
+-DSHARE_INSTALL="share/stuntrally"
+  make
+}
+
+package() {
+  cd "$srcdir/stuntrally-$pkgver/build/"
+
+  make DESTDIR="$pkgdir" install
+  rm -rf "$pkgdir/usr/share/stuntrally/"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: stuntrally/repos/community-staging-x86_64/stuntrally.install (from rev 
144429, stuntrally/trunk/stuntrally.install)
===
--- community-staging-x86_64/stuntrally.install (rev 0)
+++ community-staging-x86_64/stuntrally.install 2015-10-20 08:30:44 UTC (rev 
144430)
@@ -0,0 +1,13 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+ 

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

2015-10-20 Thread Evangelos Foutras
Date: Tuesday, October 20, 2015 @ 10:30:37
  Author: foutrelis
Revision: 144429

boost 1.59.0 rebuild

Modified:
  stuntrally/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-10-20 08:28:30 UTC (rev 144428)
+++ PKGBUILD2015-10-20 08:30:37 UTC (rev 144429)
@@ -5,7 +5,7 @@
 
 pkgname=stuntrally
 pkgver=2.6
-pkgrel=1
+pkgrel=2
 pkgdesc='Stunt Rally game with track editor, based on VDrift'
 arch=('x86_64' 'i686')
 license=('GPL3')


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

2015-10-20 Thread Evangelos Foutras
Date: Tuesday, October 20, 2015 @ 10:39:46
  Author: foutrelis
Revision: 144431

boost 1.59.0 rebuild

Modified:
  openmw/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-10-20 08:30:44 UTC (rev 144430)
+++ PKGBUILD2015-10-20 08:39:46 UTC (rev 144431)
@@ -3,7 +3,7 @@
 
 pkgname=openmw
 pkgver=0.36.1
-pkgrel=2
+pkgrel=3
 pkgdesc="An open-source engine reimplementation for the role-playing game 
Morrowind"
 arch=('i686' 'x86_64')
 url="http://www.openmw.org;


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

2015-10-20 Thread Felix Yan
Date: Tuesday, October 20, 2015 @ 10:43:27
  Author: fyan
Revision: 249541

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

Added:
  hugin/repos/staging-i686/
  hugin/repos/staging-i686/PKGBUILD
(from rev 249540, hugin/trunk/PKGBUILD)
  hugin/repos/staging-i686/install
(from rev 249540, hugin/trunk/install)
  hugin/repos/staging-x86_64/
  hugin/repos/staging-x86_64/PKGBUILD
(from rev 249540, hugin/trunk/PKGBUILD)
  hugin/repos/staging-x86_64/install
(from rev 249540, hugin/trunk/install)

-+
 staging-i686/PKGBUILD   |   36 
 staging-i686/install|   13 +
 staging-x86_64/PKGBUILD |   36 
 staging-x86_64/install  |   13 +
 4 files changed, 98 insertions(+)

Copied: hugin/repos/staging-i686/PKGBUILD (from rev 249540, 
hugin/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-10-20 08:43:27 UTC (rev 249541)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Tobias Kieslich 
+# Contributor: Giovanni Scafora 
+# Contributor: Dominik Ryba 
+
+pkgname=hugin
+pkgver=2015.0.0
+pkgrel=4
+pkgdesc='Panorama photo stitcher'
+url='http://hugin.sourceforge.net/'
+license=('GPL')
+arch=('i686' 'x86_64')
+makedepends=('cmake' 'boost' 'tclap' 'mesa' 'swig')
+depends=('wxgtk' 'boost-libs' 'enblend-enfuse' 'exiv2' 'libpano13'
+ 'python' 'lensfun' 'lapack' 'make' 'sqlite' 'perl-image-exiftool'
+ 'desktop-file-utils')
+source=("http://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgname}-${pkgver%.*}/${pkgname}-${pkgver/r/_r}.tar.bz2;)
+sha1sums=('be7153a0791f2147153e93e8711912ef23b60b61')
+
+install=install
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver/rc?}"
+   cmake . \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DENABLE_LAPACK=yes \
+
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver/rc?}"
+   make DESTDIR="${pkgdir}" install
+}

Copied: hugin/repos/staging-i686/install (from rev 249540, hugin/trunk/install)
===
--- staging-i686/install(rev 0)
+++ staging-i686/install2015-10-20 08:43:27 UTC (rev 249541)
@@ -0,0 +1,13 @@
+post_upgrade() {
+   gtk-update-icon-cache -q -t -f usr/share/icons/gnome
+   update-desktop-database -q
+   update-mime-database usr/share/mime > /dev/null
+}
+
+post_install() {
+   post_upgrade
+}
+
+post_remove() {
+   post_upgrade
+}

Copied: hugin/repos/staging-x86_64/PKGBUILD (from rev 249540, 
hugin/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2015-10-20 08:43:27 UTC (rev 249541)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Tobias Kieslich 
+# Contributor: Giovanni Scafora 
+# Contributor: Dominik Ryba 
+
+pkgname=hugin
+pkgver=2015.0.0
+pkgrel=4
+pkgdesc='Panorama photo stitcher'
+url='http://hugin.sourceforge.net/'
+license=('GPL')
+arch=('i686' 'x86_64')
+makedepends=('cmake' 'boost' 'tclap' 'mesa' 'swig')
+depends=('wxgtk' 'boost-libs' 'enblend-enfuse' 'exiv2' 'libpano13'
+ 'python' 'lensfun' 'lapack' 'make' 'sqlite' 'perl-image-exiftool'
+ 'desktop-file-utils')
+source=("http://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgname}-${pkgver%.*}/${pkgname}-${pkgver/r/_r}.tar.bz2;)
+sha1sums=('be7153a0791f2147153e93e8711912ef23b60b61')
+
+install=install
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver/rc?}"
+   cmake . \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DENABLE_LAPACK=yes \
+
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver/rc?}"
+   make DESTDIR="${pkgdir}" install
+}

Copied: hugin/repos/staging-x86_64/install (from rev 249540, 
hugin/trunk/install)
===
--- staging-x86_64/install  (rev 0)
+++ staging-x86_64/install  2015-10-20 08:43:27 UTC (rev 249541)
@@ -0,0 +1,13 @@
+post_upgrade() {
+   gtk-update-icon-cache -q -t -f usr/share/icons/gnome
+   update-desktop-database -q
+   update-mime-database usr/share/mime > /dev/null
+}
+
+post_install() {
+   post_upgrade
+}
+
+post_remove() {
+   post_upgrade
+}


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

2015-10-20 Thread Felix Yan
Date: Tuesday, October 20, 2015 @ 10:42:58
  Author: fyan
Revision: 249540

boost 1.59.0 rebuild

Modified:
  hugin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-10-20 08:15:00 UTC (rev 249539)
+++ PKGBUILD2015-10-20 08:42:58 UTC (rev 249540)
@@ -6,7 +6,7 @@
 
 pkgname=hugin
 pkgver=2015.0.0
-pkgrel=3
+pkgrel=4
 pkgdesc='Panorama photo stitcher'
 url='http://hugin.sourceforge.net/'
 license=('GPL')


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

2015-10-20 Thread Sven-Hendrik Haase
Date: Tuesday, October 20, 2015 @ 10:45:07
  Author: svenstaro
Revision: 144433

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

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

---+
 /PKGBUILD |   94 
 /supertuxkart.install |   26 
 community-i686/PKGBUILD   |   47 
 community-i686/supertuxkart.install   |   12 
 community-x86_64/PKGBUILD |   47 
 community-x86_64/supertuxkart.install |   12 
 6 files changed, 120 insertions(+), 118 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-10-20 08:39:55 UTC (rev 144432)
+++ community-i686/PKGBUILD 2015-10-20 08:45:07 UTC (rev 144433)
@@ -1,47 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Daenyth 
-# Contributor: Allan McRae 
-# Contributor: rabyte 
-
-pkgname=supertuxkart
-pkgver=0.9
-pkgrel=1
-pkgdesc='Kart racing game featuring Tux and his friends'
-arch=('i686' 'x86_64')
-url='http://supertuxkart.sourceforge.net/'
-license=('GPL2')
-depends=('openal' 'libvorbis' 'fribidi' 'curl' 'bluez-libs' 'libxrandr' 'glu')
-makedepends=('cmake' 'subversion' 'mesa' 'imagemagick' 'setconf' 'mesa-libgl')
-source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver-src.tar.xz;)
-install=supertuxkart.install
-md5sums=('ae07569ab02c88ca4d49017df7731923')
-
-build() {
-  cd ${srcdir}/supertuxkart-${pkgver}
-
-  _fn="data/${pkgname}.desktop"
-  setconf "$_fn" Exec "$pkgname"
-  setconf "$_fn" TryExec "$pkgname"
-  setconf "$_fn" Icon "$pkgname"_128
-
-  [[ -d build ]] && rm -r build
-  mkdir build && cd build
-
-  cmake .. \
--DIRRLICHT_DIR="$srcdir/irrlicht" \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_CXX_FLAGS="-lpthread -lm -ldl $CXXFLAGS"
-
-  make
-}
-
-package() {
-  cd ${srcdir}/supertuxkart-${pkgver}
-
-  cd build
-  make DESTDIR=${pkgdir} install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: supertuxkart/repos/community-i686/PKGBUILD (from rev 144432, 
supertuxkart/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-10-20 08:45:07 UTC (rev 144433)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Daenyth 
+# Contributor: Allan McRae 
+# Contributor: rabyte 
+
+pkgname=supertuxkart
+pkgver=0.9.1
+pkgrel=1
+pkgdesc='Kart racing game featuring Tux and his friends'
+arch=('i686' 'x86_64')
+url='http://supertuxkart.sourceforge.net/'
+license=('GPL2')
+depends=('openal' 'libvorbis' 'fribidi' 'curl' 'bluez-libs' 'libxrandr' 'glu')
+makedepends=('cmake' 'subversion' 'mesa' 'imagemagick' 'setconf' 'mesa-libgl')
+source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver-src.tar.xz;)
+install=supertuxkart.install
+md5sums=('5d87d943f2e746043aed87dc80004701')
+
+build() {
+  cd ${srcdir}/supertuxkart-${pkgver}
+
+  _fn="data/${pkgname}.desktop"
+  setconf "$_fn" Exec "$pkgname"
+  setconf "$_fn" TryExec "$pkgname"
+  setconf "$_fn" Icon "$pkgname"_128
+
+  [[ -d build ]] && rm -r build
+  mkdir build && cd build
+
+  cmake .. \
+-DIRRLICHT_DIR="$srcdir/irrlicht" \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_CXX_FLAGS="-lpthread -lm -ldl $CXXFLAGS"
+
+  make
+}
+
+package() {
+  cd ${srcdir}/supertuxkart-${pkgver}
+
+  cd build
+  make DESTDIR=${pkgdir} install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/supertuxkart.install
===
--- community-i686/supertuxkart.install 2015-10-20 08:39:55 UTC (rev 144432)
+++ community-i686/supertuxkart.install 2015-10-20 08:45:07 UTC (rev 144433)
@@ -1,12 +0,0 @@
-post_install() {
-  update-desktop-database -q
-  update-mime-database usr/share/mime &> /dev/null
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  post_install $1
-}

Copied: supertuxkart/repos/community-i686/supertuxkart.install (from rev 
144432, 

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

2015-10-20 Thread Evangelos Foutras
Date: Tuesday, October 20, 2015 @ 11:24:04
  Author: foutrelis
Revision: 144434

boost 1.59.0 rebuild

Modified:
  blender/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-10-20 08:45:07 UTC (rev 144433)
+++ PKGBUILD2015-10-20 09:24:04 UTC (rev 144434)
@@ -17,7 +17,7 @@
 pkgname=blender
 pkgver=2.76
 #[[ -n $_gitcommit ]] && pkgver=${pkgver}.git1.${_gitcommit}
-pkgrel=1
+pkgrel=2
 epoch=17
 pkgdesc="A fully integrated 3D graphics creation suite"
 arch=('i686' 'x86_64')


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

2015-10-20 Thread Evangelos Foutras
Date: Tuesday, October 20, 2015 @ 11:24:13
  Author: foutrelis
Revision: 144435

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

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

--+
 community-staging-i686/PKGBUILD  |   98 +
 community-staging-i686/blender.install   |   13 +++
 community-staging-x86_64/PKGBUILD|   98 +
 community-staging-x86_64/blender.install |   13 +++
 4 files changed, 222 insertions(+)

Copied: blender/repos/community-staging-i686/PKGBUILD (from rev 144434, 
blender/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-10-20 09:24:13 UTC (rev 144435)
@@ -0,0 +1,98 @@
+# $Id$
+# Contributor: John Sowiak 
+# Contributor: tobias 
+# Maintainer: Sven-Hendrik Haase 
+
+# Sometimes blender.org takes some time to release patch releases and because 
Arch users
+# are impatient, we sometimes need to build from git directly.
+# Update because I get so many queries on this:
+# Due to our other rolling deps, it's sometimes not possible to build Blender 
stable releases.
+# More often than not, a new openshadinglanguage breaks it and I could either 
backport fixes
+# or simply roll with a new version. I usually choose the latter when the 
former seems
+# unreasonable.
+
+_gittag=v2.76
+#_gitcommit=e24ea81d65416d778ded6c7b9698dd673e2ed6b9
+
+pkgname=blender
+pkgver=2.76
+#[[ -n $_gitcommit ]] && pkgver=${pkgver}.git1.${_gitcommit}
+pkgrel=2
+epoch=17
+pkgdesc="A fully integrated 3D graphics creation suite"
+arch=('i686' 'x86_64')
+license=('GPL')
+url="http://www.blender.org;
+depends=('libpng' 'libtiff' 'openexr' 'python' 'desktop-file-utils' 
'python-requests'
+ 'shared-mime-info' 'hicolor-icon-theme' 'xdg-utils' 'glew' 'openjpeg'
+ 'freetype2' 'openal' 'ffmpeg' 'fftw' 'boost-libs' 'opencollada'
+ 'openimageio' 'libsndfile' 'jack' 'opencolorio' 'openshadinglanguage'
+ 'jemalloc' 'libspnav' 'ptex' 'opensubdiv')
+makedepends=('cmake' 'boost' 'mesa' 'git' 'llvm35')
+[[ $CARCH == x86_64 ]] && makedepends+=('cuda')
+optdepends=('cuda: cycles renderer cuda support')
+options=(!strip)
+install=blender.install
+source=("git://git.blender.org/blender-addons.git"
+"git://git.blender.org/blender-addons-contrib.git"
+"git://git.blender.org/blender-translations.git"
+"git://git.blender.org/scons.git")
+if [[ -n $_gittag ]]; then
+
source+=("${pkgname}-${pkgver}::git://git.blender.org/blender.git#tag=${_gittag}")
+else
+
source+=("${pkgname}-${pkgver}::git://git.blender.org/blender.git#commit=${_gitcommit}")
+fi
+md5sums=('SKIP'
+ 'SKIP'
+ 'SKIP'
+ 'SKIP'
+ 'SKIP')
+
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  git submodule init
+  git config submodule."release/scripts/addons".url ${srcdir}/blender-addons
+  git config submodule."release/scripts/addons_contrib".url 
${srcdir}/blender-addons-contrib
+  git config submodule."release/datafiles/locale".url 
${srcdir}/blender-translations
+  git config submodule."scons".url ${srcdir}/scons
+  git submodule update
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  mkdir build && cd build
+
+  [[ $CARCH == i686 ]] && BUILDCUDA="OFF" || BUILDCUDA="ON"
+
+  cmake -C../build_files/cmake/config/blender_full.cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DWITH_INSTALL_PORTABLE=OFF \
+-DWITH_PYTHON_INSTALL=OFF \
+-DOPENIMAGEIO_ROOT_DIR=/usr \
+-DWITH_LLVM=ON \
+-DWITH_SYSTEM_OPENJPEG=ON \
+-DWITH_GL_PROFILE_CORE=OFF \
+-DWITH_GL_PROFILE_ES20=OFF \
+-DLLVM_VERSION=3.5 \
+-DLLVM_STATIC=ON \
+-DWITH_CYCLES_CUDA_BINARIES=$BUILDCUDA \
+-DWITH_CYCLES_OSL=ON \
+-DWITH_CYCLES_PTEX=ON \
+-DWITH_OPENSUBDIV=ON \
+-DPYTHON_VERSION=3.5 \
+-DPYTHON_LIBPATH=/usr/lib \
+-DPYTHON_LIBRARY=python3.5m \
+-DPYTHON_INCLUDE_DIRS=/usr/include/python3.5m
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver/build"
+
+  make DESTDIR="${pkgdir}" install
+  python -m compileall "${pkgdir}/usr/share/blender"
+  python -O -m compileall "${pkgdir}/usr/share/blender"
+}

Copied: blender/repos/community-staging-i686/blender.install (from rev 144434, 
blender/trunk/blender.install)

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

2015-10-20 Thread Evangelos Foutras
Date: Tuesday, October 20, 2015 @ 10:39:55
  Author: foutrelis
Revision: 144432

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

Added:
  openmw/repos/community-staging-i686/
  openmw/repos/community-staging-i686/PKGBUILD
(from rev 144431, openmw/trunk/PKGBUILD)
  openmw/repos/community-staging-x86_64/
  openmw/repos/community-staging-x86_64/PKGBUILD
(from rev 144431, openmw/trunk/PKGBUILD)

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

Copied: openmw/repos/community-staging-i686/PKGBUILD (from rev 144431, 
openmw/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-10-20 08:39:55 UTC (rev 144432)
@@ -0,0 +1,28 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Sandy Carter 
+
+pkgname=openmw
+pkgver=0.36.1
+pkgrel=3
+pkgdesc="An open-source engine reimplementation for the role-playing game 
Morrowind"
+arch=('i686' 'x86_64')
+url="http://www.openmw.org;
+license=('GPL3' 'MIT' 'custom')
+depends=('openal' 'ogre' 'mygui' 'bullet' 'qt4' 'ffmpeg' 'sdl2' 'unshield')
+makedepends=('cmake' 'boost')
+source=("https://github.com/OpenMW/openmw/archive/openmw-${pkgver}.tar.gz;)
+sha1sums=('4009a03b4664e92a502540ca23302285234548ad')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgname}-${pkgver}"
+  cmake -DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgname}-${pkgver}"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: openmw/repos/community-staging-x86_64/PKGBUILD (from rev 144431, 
openmw/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-10-20 08:39:55 UTC (rev 144432)
@@ -0,0 +1,28 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Sandy Carter 
+
+pkgname=openmw
+pkgver=0.36.1
+pkgrel=3
+pkgdesc="An open-source engine reimplementation for the role-playing game 
Morrowind"
+arch=('i686' 'x86_64')
+url="http://www.openmw.org;
+license=('GPL3' 'MIT' 'custom')
+depends=('openal' 'ogre' 'mygui' 'bullet' 'qt4' 'ffmpeg' 'sdl2' 'unshield')
+makedepends=('cmake' 'boost')
+source=("https://github.com/OpenMW/openmw/archive/openmw-${pkgver}.tar.gz;)
+sha1sums=('4009a03b4664e92a502540ca23302285234548ad')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgname}-${pkgver}"
+  cmake -DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgname}-${pkgver}"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:


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

2015-10-20 Thread Evangelos Foutras
Date: Tuesday, October 20, 2015 @ 08:05:14
  Author: foutrelis
Revision: 144399

boost 1.59.0 rebuild

Modified:
  springlobby/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-10-20 06:00:53 UTC (rev 144398)
+++ PKGBUILD2015-10-20 06:05:14 UTC (rev 144399)
@@ -4,7 +4,7 @@
 
 pkgname=springlobby
 pkgver=0.237
-pkgrel=1
+pkgrel=2
 pkgdesc="A free cross-platform lobby client for the Spring RTS project."
 arch=('i686' 'x86_64')
 url="http://springlobby.info/;


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

2015-10-20 Thread Evangelos Foutras
Date: Tuesday, October 20, 2015 @ 08:05:21
  Author: foutrelis
Revision: 144400

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

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

--+
 community-staging-i686/PKGBUILD  |   39 +
 community-staging-i686/springlobby.install   |   11 +++
 community-staging-x86_64/PKGBUILD|   39 +
 community-staging-x86_64/springlobby.install |   11 +++
 4 files changed, 100 insertions(+)

Copied: springlobby/repos/community-staging-i686/PKGBUILD (from rev 144399, 
springlobby/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-10-20 06:05:21 UTC (rev 144400)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: DuGi 
+
+pkgname=springlobby
+pkgver=0.237
+pkgrel=2
+pkgdesc="A free cross-platform lobby client for the Spring RTS project."
+arch=('i686' 'x86_64')
+url="http://springlobby.info/;
+license=('GPL2')
+depends=('hicolor-icon-theme' 'wxgtk' 'curl' 'libtorrent-rasterbar' 
'boost-libs'
+ 'alure' 'libsm')
+optdepends=('sdl' 'sdl_sound' 'sdl_mixer') 
+makedepends=('boost' 'asio' 'cmake' 'git')
+install=springlobby.install
+source=(git://github.com/springlobby/springlobby.git#tag=${pkgver})
+md5sums=('SKIP')
+
+prepare() {
+  cd $srcdir/${pkgname}
+  git submodule update --init
+}
+
+build() {
+  cd $srcdir/${pkgname}
+
+  cmake . \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make 
+}
+
+package() {
+  cd $srcdir/${pkgname}
+
+  make DESTDIR=$pkgdir install
+}
+
+# vim: sw=2:ts=2 et:

Copied: springlobby/repos/community-staging-i686/springlobby.install (from rev 
144399, springlobby/trunk/springlobby.install)
===
--- community-staging-i686/springlobby.install  (rev 0)
+++ community-staging-i686/springlobby.install  2015-10-20 06:05:21 UTC (rev 
144400)
@@ -0,0 +1,11 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Copied: springlobby/repos/community-staging-x86_64/PKGBUILD (from rev 144399, 
springlobby/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-10-20 06:05:21 UTC (rev 144400)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: DuGi 
+
+pkgname=springlobby
+pkgver=0.237
+pkgrel=2
+pkgdesc="A free cross-platform lobby client for the Spring RTS project."
+arch=('i686' 'x86_64')
+url="http://springlobby.info/;
+license=('GPL2')
+depends=('hicolor-icon-theme' 'wxgtk' 'curl' 'libtorrent-rasterbar' 
'boost-libs'
+ 'alure' 'libsm')
+optdepends=('sdl' 'sdl_sound' 'sdl_mixer') 
+makedepends=('boost' 'asio' 'cmake' 'git')
+install=springlobby.install
+source=(git://github.com/springlobby/springlobby.git#tag=${pkgver})
+md5sums=('SKIP')
+
+prepare() {
+  cd $srcdir/${pkgname}
+  git submodule update --init
+}
+
+build() {
+  cd $srcdir/${pkgname}
+
+  cmake . \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make 
+}
+
+package() {
+  cd $srcdir/${pkgname}
+
+  make DESTDIR=$pkgdir install
+}
+
+# vim: sw=2:ts=2 et:

Copied: springlobby/repos/community-staging-x86_64/springlobby.install (from 
rev 144399, springlobby/trunk/springlobby.install)
===
--- community-staging-x86_64/springlobby.install
(rev 0)
+++ community-staging-x86_64/springlobby.install2015-10-20 06:05:21 UTC 
(rev 144400)
@@ -0,0 +1,11 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}


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

2015-10-20 Thread Evangelos Foutras
Date: Tuesday, October 20, 2015 @ 08:18:28
  Author: foutrelis
Revision: 249531

boost 1.59.0 rebuild

Modified:
  liborcus/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-10-20 01:15:56 UTC (rev 249530)
+++ PKGBUILD2015-10-20 06:18:28 UTC (rev 249531)
@@ -4,7 +4,7 @@
 
 pkgname=liborcus
 pkgver=0.9.1
-pkgrel=1
+pkgrel=2
 pkgdesc="File import filter library for spreadsheet documents."
 arch=('i686' 'x86_64')
 url="https://gitlab.com/orcus/orcus/blob/master/README.md;


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

2015-10-20 Thread Evangelos Foutras
Date: Tuesday, October 20, 2015 @ 08:18:35
  Author: foutrelis
Revision: 249532

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

Added:
  liborcus/repos/staging-i686/
  liborcus/repos/staging-i686/PKGBUILD
(from rev 249531, liborcus/trunk/PKGBUILD)
  liborcus/repos/staging-x86_64/
  liborcus/repos/staging-x86_64/PKGBUILD
(from rev 249531, liborcus/trunk/PKGBUILD)

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

Copied: liborcus/repos/staging-i686/PKGBUILD (from rev 249531, 
liborcus/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-10-20 06:18:35 UTC (rev 249532)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: AndyRTR 
+# Contributor: Thomas Arnhold 
+
+pkgname=liborcus
+pkgver=0.9.1
+pkgrel=2
+pkgdesc="File import filter library for spreadsheet documents."
+arch=('i686' 'x86_64')
+url="https://gitlab.com/orcus/orcus/blob/master/README.md;
+license=('MPL')
+depends=('libixion')
+makedepends=('boost' 'mdds')
+source=(http://kohei.us/files/orcus/src/${pkgname}-${pkgver}.tar.xz)
+sha1sums=('2115ad88c528bc9d3ac5d0cc287f80f03529')
+
+build() {
+cd ${pkgname}-${pkgver}
+./configure --prefix=/usr
+make
+}
+
+check() {
+cd ${pkgname}-${pkgver}
+make -k check
+}
+
+package() {
+cd ${pkgname}-${pkgver}
+make DESTDIR=$pkgdir install
+}

Copied: liborcus/repos/staging-x86_64/PKGBUILD (from rev 249531, 
liborcus/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2015-10-20 06:18:35 UTC (rev 249532)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: AndyRTR 
+# Contributor: Thomas Arnhold 
+
+pkgname=liborcus
+pkgver=0.9.1
+pkgrel=2
+pkgdesc="File import filter library for spreadsheet documents."
+arch=('i686' 'x86_64')
+url="https://gitlab.com/orcus/orcus/blob/master/README.md;
+license=('MPL')
+depends=('libixion')
+makedepends=('boost' 'mdds')
+source=(http://kohei.us/files/orcus/src/${pkgname}-${pkgver}.tar.xz)
+sha1sums=('2115ad88c528bc9d3ac5d0cc287f80f03529')
+
+build() {
+cd ${pkgname}-${pkgver}
+./configure --prefix=/usr
+make
+}
+
+check() {
+cd ${pkgname}-${pkgver}
+make -k check
+}
+
+package() {
+cd ${pkgname}-${pkgver}
+make DESTDIR=$pkgdir install
+}


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

2015-10-20 Thread Evangelos Foutras
Date: Tuesday, October 20, 2015 @ 08:20:16
  Author: foutrelis
Revision: 144403

boost 1.59.0 rebuild

Modified:
  poedit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-10-20 06:14:38 UTC (rev 144402)
+++ PKGBUILD2015-10-20 06:20:16 UTC (rev 144403)
@@ -7,7 +7,7 @@
 
 pkgname=poedit
 pkgver=1.8.5
-pkgrel=1
+pkgrel=2
 pkgdesc="Cross-platform gettext catalogs (.po files) editor"
 arch=('i686' 'x86_64')
 url="http://www.poedit.net/;


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

2015-10-20 Thread Evangelos Foutras
Date: Tuesday, October 20, 2015 @ 08:20:23
  Author: foutrelis
Revision: 144404

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

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

-+
 community-staging-i686/PKGBUILD |   33 ++
 community-staging-i686/poedit.install   |   12 ++
 community-staging-x86_64/PKGBUILD   |   33 ++
 community-staging-x86_64/poedit.install |   12 ++
 4 files changed, 90 insertions(+)

Copied: poedit/repos/community-staging-i686/PKGBUILD (from rev 144403, 
poedit/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-10-20 06:20:23 UTC (rev 144404)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Andrea Scarpino 
+# Contributor: Giovanni Scafora 
+# Contributor: Alexander Fehr 
+# Contributor: Daniel J Griffiths 
+
+pkgname=poedit
+pkgver=1.8.5
+pkgrel=2
+pkgdesc="Cross-platform gettext catalogs (.po files) editor"
+arch=('i686' 'x86_64')
+url="http://www.poedit.net/;
+license=('MIT')
+depends=('wxgtk' 'desktop-file-utils' 'lucene++' 'gtkspell')
+makedepends=('boost' 'libsm')
+install=poedit.install
+#source=(http://www.poedit.net/dl/poedit-$pkgver.tar.gz)
+#source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-$pkgver.tar.gz
+source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-${pkgver}.tar.gz)
+md5sums=('572660b367013a2534e66eec078a809c')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+./configure --prefix=/usr --libexecdir=/usr/lib/poedit
+make
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+make DESTDIR="${pkgdir}" install
+install -D -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}

Copied: poedit/repos/community-staging-i686/poedit.install (from rev 144403, 
poedit/trunk/poedit.install)
===
--- community-staging-i686/poedit.install   (rev 0)
+++ community-staging-i686/poedit.install   2015-10-20 06:20:23 UTC (rev 
144404)
@@ -0,0 +1,12 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Copied: poedit/repos/community-staging-x86_64/PKGBUILD (from rev 144403, 
poedit/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-10-20 06:20:23 UTC (rev 144404)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Andrea Scarpino 
+# Contributor: Giovanni Scafora 
+# Contributor: Alexander Fehr 
+# Contributor: Daniel J Griffiths 
+
+pkgname=poedit
+pkgver=1.8.5
+pkgrel=2
+pkgdesc="Cross-platform gettext catalogs (.po files) editor"
+arch=('i686' 'x86_64')
+url="http://www.poedit.net/;
+license=('MIT')
+depends=('wxgtk' 'desktop-file-utils' 'lucene++' 'gtkspell')
+makedepends=('boost' 'libsm')
+install=poedit.install
+#source=(http://www.poedit.net/dl/poedit-$pkgver.tar.gz)
+#source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-$pkgver.tar.gz
+source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-${pkgver}.tar.gz)
+md5sums=('572660b367013a2534e66eec078a809c')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+./configure --prefix=/usr --libexecdir=/usr/lib/poedit
+make
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+make DESTDIR="${pkgdir}" install
+install -D -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}

Copied: poedit/repos/community-staging-x86_64/poedit.install (from rev 144403, 
poedit/trunk/poedit.install)
===
--- community-staging-x86_64/poedit.install (rev 0)
+++ community-staging-x86_64/poedit.install 2015-10-20 06:20:23 UTC (rev 
144404)
@@ -0,0 +1,12 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f 

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

2015-10-20 Thread Evangelos Foutras
Date: Tuesday, October 20, 2015 @ 08:00:53
  Author: foutrelis
Revision: 144398

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

Added:
  pion/repos/community-staging-i686/
  pion/repos/community-staging-i686/PKGBUILD
(from rev 144397, pion/trunk/PKGBUILD)
  pion/repos/community-staging-x86_64/
  pion/repos/community-staging-x86_64/PKGBUILD
(from rev 144397, pion/trunk/PKGBUILD)

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

Copied: pion/repos/community-staging-i686/PKGBUILD (from rev 144397, 
pion/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-10-20 06:00:53 UTC (rev 144398)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Lukas Jirkovsky 
+pkgname=pion
+pkgver=5.0.7
+pkgrel=2
+pkgdesc="A C++ development library for implementing lightweight HTTP 
interfaces"
+url="https://github.com/cloudmeter/pion;
+arch=('i686' 'x86_64')
+license=('custom:Boost')
+depends=('boost-libs' 'openssl' 'log4cpp')
+makedepends=('boost')
+provides=('pion-net')
+conflicts=('pion-net')
+replaces=('pion-net')
+source=($pkgname-$pkgver.zip::https://github.com/cloudmeter/pion/archive/$pkgver.zip)
+md5sums=('76a96dd4d34d21e41cbb2328564cba1a')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  sh autogen.sh
+
+  # override configure bug (forces debug even when nobody asked for it)
+  sed -i "s/ -ggdb//g" configure
+  # override Makefile bug
+  sed -i "/docs:/ s/doxygen-doc//" Makefile.in
+
+  ./configure --prefix=/usr --with-plugins=/usr/lib/pion/plugins 
--disable-doxygen-doc
+
+  make
+}
+
+check() {
+  cd "$srcdir/$pkgname-$pkgver"
+  # tests fail to compile with Boost 1.59.0
+  #make -k check
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+
+  # install license
+  install -D -m0755 COPYING "$pkgdir/usr/share/licenses/$pkgname/Boost"
+}

Copied: pion/repos/community-staging-x86_64/PKGBUILD (from rev 144397, 
pion/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-10-20 06:00:53 UTC (rev 144398)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Lukas Jirkovsky 
+pkgname=pion
+pkgver=5.0.7
+pkgrel=2
+pkgdesc="A C++ development library for implementing lightweight HTTP 
interfaces"
+url="https://github.com/cloudmeter/pion;
+arch=('i686' 'x86_64')
+license=('custom:Boost')
+depends=('boost-libs' 'openssl' 'log4cpp')
+makedepends=('boost')
+provides=('pion-net')
+conflicts=('pion-net')
+replaces=('pion-net')
+source=($pkgname-$pkgver.zip::https://github.com/cloudmeter/pion/archive/$pkgver.zip)
+md5sums=('76a96dd4d34d21e41cbb2328564cba1a')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  sh autogen.sh
+
+  # override configure bug (forces debug even when nobody asked for it)
+  sed -i "s/ -ggdb//g" configure
+  # override Makefile bug
+  sed -i "/docs:/ s/doxygen-doc//" Makefile.in
+
+  ./configure --prefix=/usr --with-plugins=/usr/lib/pion/plugins 
--disable-doxygen-doc
+
+  make
+}
+
+check() {
+  cd "$srcdir/$pkgname-$pkgver"
+  # tests fail to compile with Boost 1.59.0
+  #make -k check
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+
+  # install license
+  install -D -m0755 COPYING "$pkgdir/usr/share/licenses/$pkgname/Boost"
+}


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

2015-10-20 Thread Evangelos Foutras
Date: Tuesday, October 20, 2015 @ 08:00:46
  Author: foutrelis
Revision: 144397

boost 1.59.0 rebuild

Modified:
  pion/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-10-20 05:57:45 UTC (rev 144396)
+++ PKGBUILD2015-10-20 06:00:46 UTC (rev 144397)
@@ -2,7 +2,7 @@
 # Maintainer: Lukas Jirkovsky 
 pkgname=pion
 pkgver=5.0.7
-pkgrel=1
+pkgrel=2
 pkgdesc="A C++ development library for implementing lightweight HTTP 
interfaces"
 url="https://github.com/cloudmeter/pion;
 arch=('i686' 'x86_64')


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

2015-10-20 Thread Felix Yan
Date: Tuesday, October 20, 2015 @ 11:44:06
  Author: fyan
Revision: 16

archrelease: copy trunk to community-any

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

--+
 PKGBUILD |  145 ++---
 1 file changed, 72 insertions(+), 73 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-10-20 09:44:05 UTC (rev 15)
+++ PKGBUILD2015-10-20 09:44:06 UTC (rev 16)
@@ -1,73 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Benjamin A. Shelton 
-
-pkgbase=python-raven
-pkgname=(python-raven python2-raven)
-pkgver=5.7.2
-pkgrel=2
-pkgdesc="Python client for Sentry."
-arch=(any)
-url="http://pypi.python.org/pypi/raven;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'git')
-checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
-  'python-celery' 'python2-celery' 'python-django' 
'python2-django' 'pep8'
-  'python-mock' 'python2-mock' 'python-nose' 'python2-nose' 
'python2-gevent'
-  'python2-pep8' 'python-pytz' 'python2-pytz' 'python-exam' 
'python2-exam'
-  'python-requests' 'python2-requests' 'python-tornado' 
'python2-tornado'
-  'python-paste' 'python2-paste' 'python-webob' 'python2-webob'
-  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
-  'python-flask' 'python2-flask' 'python-blinker' 'python2-blinker'
-  'python-logbook' 'python2-logbook' 'python-pytest-django' 
'python2-pytest-django'
-  'python2-webpy' 'python-flask-login' 'python2-flask-login')
-source=("git+https://github.com/getsentry/raven-python.git#tag=$pkgver;)
-md5sums=('SKIP')
-
-prepare() {
-  cp -a raven-python{,-py2}
-}
-
-build() {
-  cd "$srcdir/raven-python"
-  python setup.py build
-
-  cd "$srcdir/raven-python-py2"
-  python2 setup.py build
-}
-
-check() {(
-  # Hack distribution check by installing it
-
-  cd "$srcdir/raven-python"
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.5/site-packages:$PYTHONPATH" \
-py.test tests
-
-  cd "$srcdir/raven-python"
-  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" \
-py.test tests
-  ) || warning "Tests failed"
-  # pytest-django doesn't work with pytest 2.8
-}
-
-package_python-raven() {
-  depends=('python')
-  optdepends=('python-setuptools: for "raven" script')
-
-  cd "${srcdir}/raven-python"
-  python setup.py install --root="${pkgdir}/" --optimize=1
-  install -Dm664 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-package_python2-raven() {
-  depends=('python2')
-  optdepends=('python2-setuptools: for "raven2" script')
-
-  cd "${srcdir}/raven-python-py2"
-  python2 setup.py install --root="${pkgdir}/" --optimize=1
-  mv "${pkgdir}/usr/bin/raven" "${pkgdir}/usr/bin/raven2"
-
-  install -Dm664 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: python-raven/repos/community-any/PKGBUILD (from rev 10, 
python-raven/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-10-20 09:44:06 UTC (rev 16)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Benjamin A. Shelton 
+
+pkgbase=python-raven
+pkgname=(python-raven python2-raven)
+pkgver=5.8.1
+pkgrel=1
+pkgdesc="Python client for Sentry"
+arch=('any')
+url="http://pypi.python.org/pypi/raven;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'git')
+checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
+  'python-celery' 'python2-celery' 'python-django' 
'python2-django' 'pep8'
+  'python-mock' 'python2-mock' 'python-nose' 'python2-nose' 
'python2-gevent'
+  'python2-pep8' 'python-pytz' 'python2-pytz' 'python-exam' 
'python2-exam'
+  'python-requests' 'python2-requests' 'python-tornado' 
'python2-tornado'
+  'python-paste' 'python2-paste' 'python-webob' 'python2-webob'
+  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
+  'python-flask' 'python2-flask' 'python-blinker' 'python2-blinker'
+  'python-logbook' 'python2-logbook' 'python-pytest-django' 
'python2-pytest-django'
+  'python2-webpy' 'python-flask-login' 'python2-flask-login'
+  'python-pytest-timeout' 'python2-pytest-timeout')
+source=("git+https://github.com/getsentry/raven-python.git#tag=$pkgver;)
+md5sums=('SKIP')
+
+prepare() {
+  cp 

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

2015-10-20 Thread Evangelos Foutras
Date: Tuesday, October 20, 2015 @ 11:43:01
  Author: foutrelis
Revision: 249543

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

Added:
  mkvtoolnix/repos/staging-i686/PKGBUILD
(from rev 249542, mkvtoolnix/trunk/PKGBUILD)
  mkvtoolnix/repos/staging-i686/mkvtoolnix-gui.install
(from rev 249542, mkvtoolnix/trunk/mkvtoolnix-gui.install)
  mkvtoolnix/repos/staging-x86_64/PKGBUILD
(from rev 249542, mkvtoolnix/trunk/PKGBUILD)
  mkvtoolnix/repos/staging-x86_64/mkvtoolnix-gui.install
(from rev 249542, mkvtoolnix/trunk/mkvtoolnix-gui.install)
Deleted:
  mkvtoolnix/repos/staging-i686/PKGBUILD
  mkvtoolnix/repos/staging-i686/mkvtoolnix-gui.install
  mkvtoolnix/repos/staging-x86_64/PKGBUILD
  mkvtoolnix/repos/staging-x86_64/mkvtoolnix-gui.install

---+
 /PKGBUILD |  122 
 /mkvtoolnix-gui.install   |   30 +++
 staging-i686/PKGBUILD |   61 
 staging-i686/mkvtoolnix-gui.install   |   15 ---
 staging-x86_64/PKGBUILD   |   61 
 staging-x86_64/mkvtoolnix-gui.install |   15 ---
 6 files changed, 152 insertions(+), 152 deletions(-)

Deleted: staging-i686/PKGBUILD
===
--- staging-i686/PKGBUILD   2015-10-20 09:42:52 UTC (rev 249542)
+++ staging-i686/PKGBUILD   2015-10-20 09:43:01 UTC (rev 249543)
@@ -1,61 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora 
-# Maintainer: Maxime Gauduin 
-# Contributor: xduugu 
-
-pkgbase=mkvtoolnix
-pkgname=('mkvtoolnix-cli' 'mkvtoolnix-gui')
-pkgver=8.4.0
-pkgrel=3
-arch=('i686' 'x86_64')
-url='https://www.bunkus.org/videotools/mkvtoolnix/'
-license=('GPL')
-makedepends=('boost' 'boost-libs' 'file' 'flac' 'libebml' 'libmatroska'
- 'libogg' 'libvorbis' 'qt5-base' 'ruby' 'zlib')
-source=("http://www.bunkus.org/videotools/mkvtoolnix/sources/mkvtoolnix-${pkgver}.tar.xz;)
-md5sums=('773eb42b7887bd20c4ce65cdf667976b')
-
-build() {
-  cd mkvtoolnix-${pkgver}
-
-  ./configure --prefix='/usr' \
-  --without-curl \
-  --disable-qt
-  ./drake apps:mkvinfo $MAKEFLAGS
-  mv src/mkvinfo{,-cli}
-
-  ./configure --prefix='/usr' \
-  --without-curl
-  ./drake $MAKEFLAGS
-}
-
-package_mkvtoolnix-cli() {
-  pkgdesc='Set of tools to create, edit and inspect Matroska files - CLI'
-  depends=('boost-libs' 'file' 'flac' 'libebml' 'libmatroska' 'libogg'
-   'libvorbis' 'zlib')
-
-  cd mkvtoolnix-${pkgver}
-
-  ./drake DESTDIR="${pkgdir}" install
-  install -m 755 src/mkvinfo-cli "${pkgdir}"/usr/bin/mkvinfo
-  rm -rf "${pkgdir}"/usr/share/{applications,icons,mime}
-  find "${pkgdir}" -name mkvtoolnix-gui* -delete
-}
-
-package_mkvtoolnix-gui() {
-  pkgdesc='Set of tools to create, edit and inspect Matroska files - GUI'
-  depends=('desktop-file-utils' 'hicolor-icon-theme' 'mkvtoolnix-cli'
-   'qt5-base' 'shared-mime-info' 'xdg-utils')
-  replaces=('mkvtoolnix-gtk')
-  install='mkvtoolnix-gui.install'
-
-  cd mkvtoolnix-${pkgver}
-
-  ./drake DESTDIR="${pkgdir}" install
-  rm -rf "${pkgdir}"/usr/share/locale
-  for t in mkv{extract,info,merge,propedit}; do
-find "${pkgdir}" -name $t* -delete
-  done
-}
-
-# vim: ts=2 sw=2 et:

Copied: mkvtoolnix/repos/staging-i686/PKGBUILD (from rev 249542, 
mkvtoolnix/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-10-20 09:43:01 UTC (rev 249543)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+# Maintainer: Maxime Gauduin 
+# Contributor: xduugu 
+
+pkgbase=mkvtoolnix
+pkgname=('mkvtoolnix-cli' 'mkvtoolnix-gui')
+pkgver=8.5.0
+pkgrel=2
+arch=('i686' 'x86_64')
+url='https://www.bunkus.org/videotools/mkvtoolnix/'
+license=('GPL')
+makedepends=('boost' 'boost-libs' 'file' 'flac' 'libebml' 'libmatroska'
+ 'libogg' 'libvorbis' 'qt5-base' 'ruby' 'zlib')
+source=("http://www.bunkus.org/videotools/mkvtoolnix/sources/mkvtoolnix-${pkgver}.tar.xz;)
+md5sums=('ba5469ace681951977fab5c4907ed1f9')
+
+build() {
+  cd mkvtoolnix-${pkgver}
+
+  ./configure --prefix='/usr' \
+  --without-curl \
+  --disable-qt
+  ./drake apps:mkvinfo $MAKEFLAGS
+  mv src/mkvinfo{,-cli}
+
+  ./configure --prefix='/usr' \
+  --without-curl
+  ./drake $MAKEFLAGS
+}
+
+package_mkvtoolnix-cli() {
+  pkgdesc='Set of tools to create, edit and inspect Matroska files - CLI'
+  depends=('boost-libs' 'file' 'flac' 'libebml' 'libmatroska' 'libogg'
+   'libvorbis' 'zlib')
+
+  cd mkvtoolnix-${pkgver}
+
+  ./drake DESTDIR="${pkgdir}" install
+  install -m 755 src/mkvinfo-cli "${pkgdir}"/usr/bin/mkvinfo
+  rm -rf "${pkgdir}"/usr/share/{applications,icons,mime}
+  find 

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

2015-10-20 Thread Evangelos Foutras
Date: Tuesday, October 20, 2015 @ 11:42:52
  Author: foutrelis
Revision: 249542

boost 1.59.0 rebuild

Modified:
  mkvtoolnix/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-10-20 08:43:27 UTC (rev 249541)
+++ PKGBUILD2015-10-20 09:42:52 UTC (rev 249542)
@@ -6,7 +6,7 @@
 pkgbase=mkvtoolnix
 pkgname=('mkvtoolnix-cli' 'mkvtoolnix-gui')
 pkgver=8.5.0
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 url='https://www.bunkus.org/videotools/mkvtoolnix/'
 license=('GPL')


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

2015-10-20 Thread Felix Yan
Date: Tuesday, October 20, 2015 @ 11:43:43
  Author: fyan
Revision: 10

upgpkg: python-raven 5.8.1-1

Modified:
  python-raven/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-10-20 09:28:57 UTC (rev 144439)
+++ PKGBUILD2015-10-20 09:43:43 UTC (rev 10)
@@ -4,10 +4,10 @@
 
 pkgbase=python-raven
 pkgname=(python-raven python2-raven)
-pkgver=5.7.2
-pkgrel=2
-pkgdesc="Python client for Sentry."
-arch=(any)
+pkgver=5.8.1
+pkgrel=1
+pkgdesc="Python client for Sentry"
+arch=('any')
 url="http://pypi.python.org/pypi/raven;
 license=('BSD')
 makedepends=('python-setuptools' 'python2-setuptools' 'git')
@@ -20,7 +20,8 @@
   'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
   'python-flask' 'python2-flask' 'python-blinker' 'python2-blinker'
   'python-logbook' 'python2-logbook' 'python-pytest-django' 
'python2-pytest-django'
-  'python2-webpy' 'python-flask-login' 'python2-flask-login')
+  'python2-webpy' 'python-flask-login' 'python2-flask-login'
+  'python-pytest-timeout' 'python2-pytest-timeout')
 source=("git+https://github.com/getsentry/raven-python.git#tag=$pkgver;)
 md5sums=('SKIP')
 
@@ -36,7 +37,7 @@
   python2 setup.py build
 }
 
-check() {(
+check() {
   # Hack distribution check by installing it
 
   cd "$srcdir/raven-python"
@@ -47,9 +48,7 @@
   cd "$srcdir/raven-python"
   python2 setup.py install --root="$PWD/tmp_install" --optimize=1
   PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" \
-py.test tests
-  ) || warning "Tests failed"
-  # pytest-django doesn't work with pytest 2.8
+py.test2 tests
 }
 
 package_python-raven() {


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

2015-10-20 Thread Sergej Pupykin
Date: Tuesday, October 20, 2015 @ 12:39:13
  Author: spupykin
Revision: 144506

upgpkg: chrony 2.2-1

upd

Modified:
  chrony/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-10-20 09:45:26 UTC (rev 144505)
+++ PKGBUILD2015-10-20 10:39:13 UTC (rev 144506)
@@ -8,7 +8,7 @@
 # Contributor: Elisamuel Resto 
 
 pkgname=chrony
-pkgver=2.1.1
+pkgver=2.2
 pkgrel=1
 pkgdesc='Lightweight NTP client and server'
 arch=('i686' 'x86_64')
@@ -28,6 +28,8 @@
 'dbd30435d5f51a92ecef779efa0eabaf56d09a35a18ddd30644d5418beada212')
 sha256sums=('b0565148eaa38e971291281d76556c32f0138ec22e9784f8bceab9c65f7ad7d4'
 'dbd30435d5f51a92ecef779efa0eabaf56d09a35a18ddd30644d5418beada212')
+sha256sums=('d3fd820fa63badf54ee0e48a649b94ea739df3aac5efa104bd90f89795aa2485'
+'dbd30435d5f51a92ecef779efa0eabaf56d09a35a18ddd30644d5418beada212')
 
 prepare() {
   cd $pkgname-$pkgver


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

2015-10-20 Thread Evangelos Foutras
Date: Tuesday, October 20, 2015 @ 11:26:40
  Author: foutrelis
Revision: 144437

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

Added:
  gnuradio-osmosdr/repos/community-staging-i686/
  gnuradio-osmosdr/repos/community-staging-i686/PKGBUILD
(from rev 144436, gnuradio-osmosdr/trunk/PKGBUILD)
  gnuradio-osmosdr/repos/community-staging-x86_64/
  gnuradio-osmosdr/repos/community-staging-x86_64/PKGBUILD
(from rev 144436, gnuradio-osmosdr/trunk/PKGBUILD)

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

Copied: gnuradio-osmosdr/repos/community-staging-i686/PKGBUILD (from rev 
144436, gnuradio-osmosdr/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-10-20 09:26:40 UTC (rev 144437)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Kyle Keen 
+# Contributor: Dominik Heidler 
+pkgname=gnuradio-osmosdr
+_pkgname=gr-osmosdr
+pkgver=0.1.4
+pkgrel=8
+pkgdesc="Source block for Funcube Dongle, RTL-SDR, USRP, OsmoSDR, BladeRF, 
HackRF and AirSpy devices"
+url="http://sdr.osmocom.org/trac/;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('gnuradio' 'gnuradio-iqbal' 'rtl-sdr' 'gnuradio-fcdproplus' 'hackrf' 
'bladerf' 'airspy')
+makedepends=('git' 'cmake' 'boost' 'python2-cheetah' 'swig')
+conflicts=('gr-osmosdr-git')
+replaces=('gr-osmosdr')
+source=("git://git.osmocom.org/gr-osmosdr#tag=v$pkgver")
+md5sums=('SKIP')
+
+# add support for miri, osmo?
+
+build() {
+  cd "$srcdir/$_pkgname"
+  sed -i 's/python$/python2/' apps/osmocom_siggen_base.py
+  mkdir build
+  cd build
+  cmake \
+-Wno-dev \
+-DCMAKE_BUILD_TYPE=Release \
+-DPYTHON_EXECUTABLE=$(which python2) \
+-DPYTHON_INCLUDE_DIR=$(echo /usr/include/python2*) \
+-DPYTHON_LIBRARY=$(echo /usr/lib/libpython2.*.so) \
+-DCMAKE_INSTALL_PREFIX=/usr ../
+  make
+}
+
+package() {
+  cd "$srcdir/$_pkgname/build/"
+  make DESTDIR="${pkgdir}" install
+}

Copied: gnuradio-osmosdr/repos/community-staging-x86_64/PKGBUILD (from rev 
144436, gnuradio-osmosdr/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-10-20 09:26:40 UTC (rev 144437)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Kyle Keen 
+# Contributor: Dominik Heidler 
+pkgname=gnuradio-osmosdr
+_pkgname=gr-osmosdr
+pkgver=0.1.4
+pkgrel=8
+pkgdesc="Source block for Funcube Dongle, RTL-SDR, USRP, OsmoSDR, BladeRF, 
HackRF and AirSpy devices"
+url="http://sdr.osmocom.org/trac/;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('gnuradio' 'gnuradio-iqbal' 'rtl-sdr' 'gnuradio-fcdproplus' 'hackrf' 
'bladerf' 'airspy')
+makedepends=('git' 'cmake' 'boost' 'python2-cheetah' 'swig')
+conflicts=('gr-osmosdr-git')
+replaces=('gr-osmosdr')
+source=("git://git.osmocom.org/gr-osmosdr#tag=v$pkgver")
+md5sums=('SKIP')
+
+# add support for miri, osmo?
+
+build() {
+  cd "$srcdir/$_pkgname"
+  sed -i 's/python$/python2/' apps/osmocom_siggen_base.py
+  mkdir build
+  cd build
+  cmake \
+-Wno-dev \
+-DCMAKE_BUILD_TYPE=Release \
+-DPYTHON_EXECUTABLE=$(which python2) \
+-DPYTHON_INCLUDE_DIR=$(echo /usr/include/python2*) \
+-DPYTHON_LIBRARY=$(echo /usr/lib/libpython2.*.so) \
+-DCMAKE_INSTALL_PREFIX=/usr ../
+  make
+}
+
+package() {
+  cd "$srcdir/$_pkgname/build/"
+  make DESTDIR="${pkgdir}" install
+}


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

2015-10-20 Thread Evangelos Foutras
Date: Tuesday, October 20, 2015 @ 11:26:34
  Author: foutrelis
Revision: 144436

boost 1.59.0 rebuild

Modified:
  gnuradio-osmosdr/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-10-20 09:24:13 UTC (rev 144435)
+++ PKGBUILD2015-10-20 09:26:34 UTC (rev 144436)
@@ -4,7 +4,7 @@
 pkgname=gnuradio-osmosdr
 _pkgname=gr-osmosdr
 pkgver=0.1.4
-pkgrel=7
+pkgrel=8
 pkgdesc="Source block for Funcube Dongle, RTL-SDR, USRP, OsmoSDR, BladeRF, 
HackRF and AirSpy devices"
 url="http://sdr.osmocom.org/trac/;
 arch=('i686' 'x86_64')


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

2015-10-20 Thread Evangelos Foutras
Date: Tuesday, October 20, 2015 @ 11:28:49
  Author: foutrelis
Revision: 144438

boost 1.59.0 rebuild

Modified:
  gqrx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-10-20 09:26:40 UTC (rev 144437)
+++ PKGBUILD2015-10-20 09:28:49 UTC (rev 144438)
@@ -4,7 +4,7 @@
 
 pkgname=gqrx
 pkgver=2.3.2
-pkgrel=6
+pkgrel=7
 pkgdesc="Interactive SDR receiver waterfall for many devices."
 arch=('i686' 'x86_64')
 url="http://gqrx.dk/;


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

2015-10-20 Thread Sergej Pupykin
Date: Tuesday, October 20, 2015 @ 12:40:19
  Author: spupykin
Revision: 144510

upgpkg: mediawiki 1.25.3-1

upd

Modified:
  mediawiki/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-10-20 10:40:10 UTC (rev 144509)
+++ PKGBUILD2015-10-20 10:40:19 UTC (rev 144510)
@@ -4,7 +4,7 @@
 
 pkgbase=mediawiki
 pkgname=('mediawiki' 'mediawiki-math')
-pkgver=1.25.2
+pkgver=1.25.3
 _basever=1.25
 pkgrel=1
 pkgdesc="MediaWiki engine"
@@ -33,7 +33,7 @@
 
source=("http://releases.wikimedia.org/mediawiki/${_basever}/mediawiki-$pkgver.tar.gz;

"mediawiki-math-${_basever}.tar.gz::https://codeload.github.com/wikimedia/mediawiki-extensions-Math/legacy.tar.gz/REL${_basever/./_};
apache.example.conf)
-md5sums=('3f5f01d995a183985bb2fc3d78ff301b'
+md5sums=('c0e17b550c012855d55c4dfdd3f96718'
  '07ef3b61588652003f824474338ca58d'
  '1b34e53d7be9a124377ac34d9821d574')
 


[arch-commits] Commit in mediawiki/repos/community-any (6 files)

2015-10-20 Thread Sergej Pupykin
Date: Tuesday, October 20, 2015 @ 12:40:31
  Author: spupykin
Revision: 144511

archrelease: copy trunk to community-any

Added:
  mediawiki/repos/community-any/PKGBUILD
(from rev 144510, mediawiki/trunk/PKGBUILD)
  mediawiki/repos/community-any/apache.example.conf
(from rev 144510, mediawiki/trunk/apache.example.conf)
  mediawiki/repos/community-any/mediawiki.install
(from rev 144510, mediawiki/trunk/mediawiki.install)
Deleted:
  mediawiki/repos/community-any/PKGBUILD
  mediawiki/repos/community-any/apache.example.conf
  mediawiki/repos/community-any/mediawiki.install

-+
 PKGBUILD|  152 +-
 apache.example.conf |   14 ++--
 mediawiki.install   |   10 +--
 3 files changed, 88 insertions(+), 88 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-10-20 10:40:19 UTC (rev 144510)
+++ PKGBUILD2015-10-20 10:40:31 UTC (rev 144511)
@@ -1,76 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Sergej Pupykin 
-
-pkgbase=mediawiki
-pkgname=('mediawiki' 'mediawiki-math')
-pkgver=1.25.2
-_basever=1.25
-pkgrel=1
-pkgdesc="MediaWiki engine"
-arch=('any')
-url="http://www.mediawiki.org/wiki/MediaWiki;
-# + http://www.mediawiki.org/wiki/Extension:Math
-license=("GPL")
-depends=('php')
-makedepends=('git')
-optdepends=('texvc: for math rendering'
-   'python2'
-   'pcre: for regular expressions support'
-   'php-intl: to handle Unicode normalization'
-#  'php-mysql: for MySQL database support'
-   'php-pgsql: for PostgreSQL database support'
-   'php-sqlite: for sqlite database support'
-   'php-apc: for cache support'
-   'php-xcache: for cache support'
-   'memcached: for cache support'
-   'php-gd: for thumbnails rendering'
-   'imagemagick: for thumbnails rendering'
-   'smtp-forwarder: for mail sending')
-install=mediawiki.install
-options=(!strip)
-#  
mediawiki-math-${_basever}::git+https://git.wikimedia.org/git/mediawiki/extensions/Math.git#branch=REL${_basever/./_}
-source=("http://releases.wikimedia.org/mediawiki/${_basever}/mediawiki-$pkgver.tar.gz;
-   
"mediawiki-math-${_basever}.tar.gz::https://codeload.github.com/wikimedia/mediawiki-extensions-Math/legacy.tar.gz/REL${_basever/./_};
-   apache.example.conf)
-md5sums=('3f5f01d995a183985bb2fc3d78ff301b'
- '07ef3b61588652003f824474338ca58d'
- '1b34e53d7be9a124377ac34d9821d574')
-
-package_mediawiki() {
-  cd $srcdir
-  install -vdm0755 $pkgdir/usr/share/webapps
-  install -vdm0755 $pkgdir/etc/webapps/mediawiki
-  cp -a $pkgname-$pkgver $pkgdir/usr/share/webapps/mediawiki
-
-  install -vDm0644 $srcdir/apache.example.conf 
$pkgdir/etc/webapps/mediawiki/apache.example.conf
-
-  # move cache and images to /var
-  install -vdm0755 -o http -g http $pkgdir/var/cache/mediawiki
-  install -vdm0755 -o http -g http $pkgdir/var/lib/mediawiki
-
-  cd $pkgdir/usr/share/webapps/mediawiki
-
-  mv cache/.htaccess $pkgdir/var/cache/mediawiki/
-  rmdir cache
-  ln -sf /var/cache/mediawiki cache
-
-  mv images/* $pkgdir/var/lib/mediawiki/
-  mv images/.htaccess $pkgdir/var/lib/mediawiki/
-  rmdir images
-  ln -sf /var/lib/mediawiki images
-}
-
-package_mediawiki-math() {
-  depends=('mediawiki' 'texvc')
-  optdepends=()
-  backup=()
-  pkgdesc="MediaWiki math extension"
-  unset install
-
-  cd $srcdir
-  install -vdm0755 $pkgdir/usr/share/webapps/mediawiki/extensions
-#  cp -a mediawiki-math-${_basever} 
$pkgdir/usr/share/webapps/mediawiki/extensions/Math
-  cp -a wikimedia-mediawiki-extensions-Math-2998273 
$pkgdir/usr/share/webapps/mediawiki/extensions/Math
-  ln -s /usr/bin/texvc 
$pkgdir/usr/share/webapps/mediawiki/extensions/Math/math/texvc
-}

Copied: mediawiki/repos/community-any/PKGBUILD (from rev 144510, 
mediawiki/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-10-20 10:40:31 UTC (rev 144511)
@@ -0,0 +1,76 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Sergej Pupykin 
+
+pkgbase=mediawiki
+pkgname=('mediawiki' 'mediawiki-math')
+pkgver=1.25.3
+_basever=1.25
+pkgrel=1
+pkgdesc="MediaWiki engine"
+arch=('any')
+url="http://www.mediawiki.org/wiki/MediaWiki;
+# + http://www.mediawiki.org/wiki/Extension:Math
+license=("GPL")
+depends=('php')
+makedepends=('git')
+optdepends=('texvc: for math rendering'
+   'python2'
+   'pcre: for regular expressions support'
+   'php-intl: to handle Unicode normalization'
+#  'php-mysql: for MySQL database support'
+   'php-pgsql: for PostgreSQL database support'
+   'php-sqlite: for sqlite database support'
+   'php-apc: for cache support'
+   'php-xcache: for 

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

2015-10-20 Thread Sergej Pupykin
Date: Tuesday, October 20, 2015 @ 12:39:53
  Author: spupykin
Revision: 144508

upgpkg: darktable 1.6.9-1

upd

Modified:
  darktable/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-10-20 10:39:48 UTC (rev 144507)
+++ PKGBUILD2015-10-20 10:39:53 UTC (rev 144508)
@@ -4,7 +4,7 @@
 # Contributor: Johannes Hanika 
 
 pkgname=darktable
-pkgver=1.6.8
+pkgver=1.6.9
 pkgrel=1
 pkgdesc="Utility to organize and develop raw images"
 arch=('i686' 'x86_64')
@@ -17,7 +17,7 @@
 optdepends=('librsvg')
 install=darktable.install
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/darktable-org/darktable/archive/release-$pkgver.tar.gz;)
-md5sums=('f9224aea4fcb881c9cf578d824f28cf8')
+md5sums=('11f9ef6084077ab06b76ec99d2afb6ef')
 
 prepare() {
   cd "$srcdir/$pkgname-release-$pkgver/cmake"


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

2015-10-20 Thread Sergej Pupykin
Date: Tuesday, October 20, 2015 @ 12:40:10
  Author: spupykin
Revision: 144509

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

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

+
 /PKGBUILD  |  106 +++
 /darktable.install |   22 +++
 community-i686/PKGBUILD|   53 -
 community-i686/darktable.install   |   11 ---
 community-x86_64/PKGBUILD  |   53 -
 community-x86_64/darktable.install |   11 ---
 6 files changed, 128 insertions(+), 128 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-10-20 10:39:53 UTC (rev 144508)
+++ community-i686/PKGBUILD 2015-10-20 10:40:10 UTC (rev 144509)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer:  Christian Himpel 
-# Contributor: Johannes Hanika 
-
-pkgname=darktable
-pkgver=1.6.8
-pkgrel=1
-pkgdesc="Utility to organize and develop raw images"
-arch=('i686' 'x86_64')
-url=http://darktable.sf.net/
-license=('GPL3')
-depends=('exiv2>=0.18' 'intltool>=0.40' 'lcms2' 'lensfun>=0.2.3' 'libglade' 
'dbus-glib'
-'curl' 'libsecret' 'libgphoto2' 'openexr' 'sqlite' 'libxslt'
-'libsoup' 'gtk-engines' 'json-glib' 'flickcurl' 'lua52' 'colord')
-makedepends=('intltool>=0.40' 'cmake' 'librsvg')
-optdepends=('librsvg')
-install=darktable.install
-source=("$pkgname-$pkgver.tar.gz::https://github.com/darktable-org/darktable/archive/release-$pkgver.tar.gz;)
-md5sums=('f9224aea4fcb881c9cf578d824f28cf8')
-
-prepare() {
-  cd "$srcdir/$pkgname-release-$pkgver/cmake"
-  sed "s|@PROJECT_VERSION@|$pkgver|" version.cmake.cmake >version.cmake
-#  sed -i 's|lua5.2|lua52|g' modules/FindLua52.cmake
-}
-
-build() {
-  cd "$srcdir/$pkgname-release-$pkgver"
-  mkdir -p build
-  cd build
-  CXXFLAGS+=" -fpermissive"
-  cmake \
-  -DCMAKE_INSTALL_PREFIX=/usr \
-  -DCMAKE_BUILD_TYPE=Release \
-  -DBINARY_PACKAGE_BUILD=1 \
-  -DBUILD_USERMANUAL=False \
-  -DUSE_LIBSECRET=On \
-  -DUSE_LUA=On \
-  -DUSE_GNOME_KEYRING=Off \
-  -DUSE_COLORD=On \
-  ..
-  make
-  make -C ../tools/basecurve
-}
-
-package() {
-  cd "$srcdir/$pkgname-release-$pkgver/build"
-  make DESTDIR="$pkgdir" install
-  install -Dm0755 ../tools/basecurve/dt-curve-tool 
$pkgdir/usr/bin/dt-curve-tool
-  install -Dm0755 ../tools/basecurve/dt-curve-tool-helper 
$pkgdir/usr/bin/dt-curve-tool-helper
-  mv "${pkgdir}/usr/share/doc/darktable" 
"${pkgdir}/usr/share/doc/${pkgname}-${pkgver}"
-}

Copied: darktable/repos/community-i686/PKGBUILD (from rev 144508, 
darktable/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-10-20 10:40:10 UTC (rev 144509)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer:  Christian Himpel 
+# Contributor: Johannes Hanika 
+
+pkgname=darktable
+pkgver=1.6.9
+pkgrel=1
+pkgdesc="Utility to organize and develop raw images"
+arch=('i686' 'x86_64')
+url=http://darktable.sf.net/
+license=('GPL3')
+depends=('exiv2>=0.18' 'intltool>=0.40' 'lcms2' 'lensfun>=0.2.3' 'libglade' 
'dbus-glib'
+'curl' 'libsecret' 'libgphoto2' 'openexr' 'sqlite' 'libxslt'
+'libsoup' 'gtk-engines' 'json-glib' 'flickcurl' 'lua52' 'colord')
+makedepends=('intltool>=0.40' 'cmake' 'librsvg')
+optdepends=('librsvg')
+install=darktable.install
+source=("$pkgname-$pkgver.tar.gz::https://github.com/darktable-org/darktable/archive/release-$pkgver.tar.gz;)
+md5sums=('11f9ef6084077ab06b76ec99d2afb6ef')
+
+prepare() {
+  cd "$srcdir/$pkgname-release-$pkgver/cmake"
+  sed "s|@PROJECT_VERSION@|$pkgver|" version.cmake.cmake >version.cmake
+#  sed -i 's|lua5.2|lua52|g' modules/FindLua52.cmake
+}
+
+build() {
+  cd "$srcdir/$pkgname-release-$pkgver"
+  mkdir -p build
+  cd build
+  CXXFLAGS+=" -fpermissive"
+  cmake \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DCMAKE_BUILD_TYPE=Release \
+  -DBINARY_PACKAGE_BUILD=1 \
+  -DBUILD_USERMANUAL=False \
+  -DUSE_LIBSECRET=On \
+  -DUSE_LUA=On \
+  -DUSE_GNOME_KEYRING=Off \
+  -DUSE_COLORD=On \
+  ..
+  make
+  make -C ../tools/basecurve
+}
+
+package() {
+  cd 

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

2015-10-20 Thread Sergej Pupykin
Date: Tuesday, October 20, 2015 @ 12:39:48
  Author: spupykin
Revision: 144507

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

Added:
  chrony/repos/community-i686/PKGBUILD
(from rev 144506, chrony/trunk/PKGBUILD)
  chrony/repos/community-i686/chrony.install
(from rev 144506, chrony/trunk/chrony.install)
  chrony/repos/community-i686/service
(from rev 144506, chrony/trunk/service)
  chrony/repos/community-x86_64/PKGBUILD
(from rev 144506, chrony/trunk/PKGBUILD)
  chrony/repos/community-x86_64/chrony.install
(from rev 144506, chrony/trunk/chrony.install)
  chrony/repos/community-x86_64/service
(from rev 144506, chrony/trunk/service)
Deleted:
  chrony/repos/community-i686/PKGBUILD
  chrony/repos/community-i686/chrony.install
  chrony/repos/community-i686/service
  chrony/repos/community-x86_64/PKGBUILD
  chrony/repos/community-x86_64/chrony.install
  chrony/repos/community-x86_64/service

-+
 /PKGBUILD   |  126 ++
 /chrony.install |   64 +++
 /service|   24 +++
 community-i686/PKGBUILD |   61 --
 community-i686/chrony.install   |   32 -
 community-i686/service  |   12 ---
 community-x86_64/PKGBUILD   |   61 --
 community-x86_64/chrony.install |   32 -
 community-x86_64/service|   12 ---
 9 files changed, 214 insertions(+), 210 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-10-20 10:39:13 UTC (rev 144506)
+++ community-i686/PKGBUILD 2015-10-20 10:39:48 UTC (rev 144507)
@@ -1,61 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Daniel Micay 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Patrick Leslie Polzer 
-# Contributor: cdhotfire 
-# Contributor: Shinlun Hsieh 
-# Contributor: Elisamuel Resto 
-
-pkgname=chrony
-pkgver=2.1.1
-pkgrel=1
-pkgdesc='Lightweight NTP client and server'
-arch=('i686' 'x86_64')
-url="http://chrony.tuxfamily.org/;
-options=(strip emptydirs)
-license=('GPL')
-depends=('nss' 'readline' 'libcap' 'libedit')
-backup=('etc/chrony.conf')
-source=(http://download.tuxfamily.org/chrony/${pkgname}-${pkgver}.tar.gz
-service)
-install=${pkgname}.install
-sha256sums=('f4da5f5071e77314b49281c48c35a03d07d76cbc7ec19e787b4414a86023b68b'
-'dbd30435d5f51a92ecef779efa0eabaf56d09a35a18ddd30644d5418beada212')
-sha256sums=('72da3f3c442693e6130d4d5f8c7dcfbe9908b4b3b79afbb2c70360c7919fcd5d'
-'dbd30435d5f51a92ecef779efa0eabaf56d09a35a18ddd30644d5418beada212')
-sha256sums=('72da3f3c442693e6130d4d5f8c7dcfbe9908b4b3b79afbb2c70360c7919fcd5d'
-'dbd30435d5f51a92ecef779efa0eabaf56d09a35a18ddd30644d5418beada212')
-sha256sums=('b0565148eaa38e971291281d76556c32f0138ec22e9784f8bceab9c65f7ad7d4'
-'dbd30435d5f51a92ecef779efa0eabaf56d09a35a18ddd30644d5418beada212')
-
-prepare() {
-  cd $pkgname-$pkgver
-  sed -i 's|pool.ntp.org|arch.pool.ntp.org|g' examples/chrony.conf.example*
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install install-docs
-
-  install -Dm0644 "$srcdir/$pkgname-$pkgver/examples/chrony.conf.example3" 
"$pkgdir/etc/chrony.conf"
-
-  echo -e "\n# Enable kernel RTC sync\nrtcsync" >> "$pkgdir/etc/chrony.conf"
-
-  sed -i '/^! rtconutc$/ s/^! //' "$pkgdir/etc/chrony.conf"
-
-  mv "$pkgdir/usr/sbin/chronyd" "$pkgdir/usr/bin"
-  rmdir "$pkgdir/usr/sbin"
-
-  install -Dm644 "$srcdir/service" 
"$pkgdir/usr/lib/systemd/system/chrony.service"
-
-  cp -a examples $pkgdir/usr/share/doc/chrony/examples
-
-  chown 183:183 "$pkgdir/var/lib/chrony"
-}

Copied: chrony/repos/community-i686/PKGBUILD (from rev 144506, 
chrony/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-10-20 10:39:48 UTC (rev 144507)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Daniel Micay 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Patrick Leslie Polzer 
+# Contributor: cdhotfire 
+# Contributor: Shinlun Hsieh 
+# Contributor: Elisamuel Resto 
+
+pkgname=chrony
+pkgver=2.2
+pkgrel=1
+pkgdesc='Lightweight NTP client and server'
+arch=('i686' 'x86_64')
+url="http://chrony.tuxfamily.org/;
+options=(strip emptydirs)
+license=('GPL')
+depends=('nss' 'readline' 'libcap' 'libedit')
+backup=('etc/chrony.conf')

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

2015-10-20 Thread Sergej Pupykin
Date: Tuesday, October 20, 2015 @ 12:41:28
  Author: spupykin
Revision: 144514

upgpkg: owncloud-app-bookmarks 8.2.0-1

upd

Modified:
  owncloud-app-bookmarks/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-10-20 10:41:10 UTC (rev 144513)
+++ PKGBUILD2015-10-20 10:41:28 UTC (rev 144514)
@@ -2,7 +2,7 @@
 # Maintainer: Sergej Pupykin 
 
 pkgname=owncloud-app-bookmarks
-pkgver=8.1.3
+pkgver=8.2.0
 pkgrel=1
 pkgdesc="Bookmarks app for owncloud"
 arch=('any')
@@ -12,7 +12,7 @@
 makedepends=()
 options=('!strip')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/owncloud/bookmarks/archive/v$pkgver.tar.gz;)
-md5sums=('2d3ccbf20b156a3dd6f97d91524c723a')
+md5sums=('376b5ece564f1e980208c9d40a2e6a03')
 
 package() {
   install -d ${pkgdir}/usr/share/webapps/owncloud/apps


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

2015-10-20 Thread Sergej Pupykin
Date: Tuesday, October 20, 2015 @ 12:40:56
  Author: spupykin
Revision: 144512

upgpkg: owncloud 8.2.0-1

upd

Modified:
  owncloud/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-10-20 10:40:31 UTC (rev 144511)
+++ PKGBUILD2015-10-20 10:40:56 UTC (rev 144512)
@@ -4,8 +4,8 @@
 # Based on owncloud-git PKGBUILD by Alexander Ovsyannikov
 
 pkgname=owncloud
-pkgver=8.1.3
-pkgrel=2
+pkgver=8.2.0
+pkgrel=1
 pkgdesc="A cloud server to store your files centrally on a hardware controlled 
by you"
 arch=('any')
 url="http://owncloud.org/;
@@ -41,16 +41,16 @@

"$pkgname-files_pdfviewer-$pkgver.tar.gz::https://github.com/owncloud/files_pdfviewer/archive/v$pkgver.tar.gz;

"$pkgname-activity-$pkgver.tar.gz::https://github.com/owncloud/activity/archive/v$pkgver.tar.gz;
'apache.example.conf')
-md5sums=('b3a4a356640a2f1415a741113cba35b5'
- '1016792e4c6c1d0ced5cd6c46465ea05'
- 'b55b5017bde60982d6f32f687fa99690'
- 'bbcb0103050d82068eb916cdc6f5f93a'
- '829075bb969385bfdf8cb5cab8701e97'
- 'e16ab75d376d1315bbb83283c2cd02e2'
- 'f9b0597c207a6fdc765c914d5e972f37'
- 'c10cf2aff361523ae6f40d72f39a3f46'
- '83c20940fce448d33b884a9d0353f69f'
- '12046749a7667a755ff29fc025e9dcfa'
+md5sums=('7dd4277b4ce8ff198208e1748dfe28ca'
+ '8fc10f6f0f783e90cad88d6340d3a838'
+ 'dcba5a81b4c25a8976fe5e493c0669be'
+ '4fd72b301c65b7e39d63ab370bcdc456'
+ '722e249fbb93faeece0518df1048473a'
+ '41985af3d703b0dd741b299113960a20'
+ '320de98cf72a8427cb9d6ffceff57d7a'
+ '29e90e7bcb663ab9e56a143ac9755517'
+ '04aed2e80433b576a5398997ca0bba35'
+ '8618272f71661586967069427f207a00'
  '64c6edf88bcbb37d063e4bf77b39237f')
 
 prepare() {


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

2015-10-20 Thread Sergej Pupykin
Date: Tuesday, October 20, 2015 @ 12:41:10
  Author: spupykin
Revision: 144513

archrelease: copy trunk to community-any

Added:
  owncloud/repos/community-any/PKGBUILD
(from rev 144512, owncloud/trunk/PKGBUILD)
  owncloud/repos/community-any/apache.example.conf
(from rev 144512, owncloud/trunk/apache.example.conf)
Deleted:
  owncloud/repos/community-any/PKGBUILD
  owncloud/repos/community-any/apache.example.conf

-+
 PKGBUILD|  202 +-
 apache.example.conf |   36 
 2 files changed, 119 insertions(+), 119 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-10-20 10:40:56 UTC (rev 144512)
+++ PKGBUILD2015-10-20 10:41:10 UTC (rev 144513)
@@ -1,101 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Antonio Rojas 
-# Based on owncloud-git PKGBUILD by Alexander Ovsyannikov
-
-pkgname=owncloud
-pkgver=8.1.3
-pkgrel=2
-pkgdesc="A cloud server to store your files centrally on a hardware controlled 
by you"
-arch=('any')
-url="http://owncloud.org/;
-license=('GPL')
-depends=('php-gd')
-optdepends=('php-apache: to use the Apache web server'
-   'php-sqlite: to use the SQLite database backend'
-   'php-pgsql: to use the PostgreSQL database backend'
-   'php-ldap: LDAP authentication'
-   'php-intl'
-   'php-apcu'
-   'php-xcache'
-   'mariadb: to use the MySQL database backend'
-   'smbclient: to mount SAMBA shares'
-   'php-mcrypt'
-#  'php-imagick: file preview'
-   'ffmpeg: file preview'
-   'libreoffice: file preview')
-makedepends=()
-options=('!strip')
-backup=('etc/webapps/owncloud/apache.example.conf')
-validpgpkeys=('E3036906AD9F30807351FAC32D5D5E97F6978A26')
-_watch="https://owncloud.org/changelog/;
-#source=("http://download.owncloud.org/community/$pkgname-${pkgver}.tar.bz2"{,.asc}
-source=("$pkgname-$pkgver.tar.gz::https://github.com/owncloud/core/archive/v$pkgver.tar.gz;
-   
"$pkgname-3rdparty-$pkgver.tar.gz::https://github.com/owncloud/3rdparty/archive/v$pkgver.tar.gz;
-   
"$pkgname-apps-$pkgver.tar.gz::https://github.com/owncloud/apps/archive/v$pkgver.tar.gz;
-   
"$pkgname-updater-$pkgver.tar.gz::https://github.com/owncloud/updater/archive/v$pkgver.tar.gz;
-   
"$pkgname-templateeditor-$pkgver.tar.gz::https://github.com/owncloud/templateeditor/archive/v$pkgver.tar.gz;
-   
"$pkgname-firstrunwizard-$pkgver.tar.gz::https://github.com/owncloud/firstrunwizard/archive/v$pkgver.tar.gz;
-   
"$pkgname-files_texteditor-$pkgver.tar.gz::https://github.com/owncloud/files_texteditor/archive/v$pkgver.tar.gz;
-   
"$pkgname-files_locking-$pkgver.tar.gz::https://github.com/owncloud/files_locking/archive/v$pkgver.tar.gz;
-   
"$pkgname-files_pdfviewer-$pkgver.tar.gz::https://github.com/owncloud/files_pdfviewer/archive/v$pkgver.tar.gz;
-   
"$pkgname-activity-$pkgver.tar.gz::https://github.com/owncloud/activity/archive/v$pkgver.tar.gz;
-   'apache.example.conf')
-md5sums=('b3a4a356640a2f1415a741113cba35b5'
- '1016792e4c6c1d0ced5cd6c46465ea05'
- 'b55b5017bde60982d6f32f687fa99690'
- 'bbcb0103050d82068eb916cdc6f5f93a'
- '829075bb969385bfdf8cb5cab8701e97'
- 'e16ab75d376d1315bbb83283c2cd02e2'
- 'f9b0597c207a6fdc765c914d5e972f37'
- 'c10cf2aff361523ae6f40d72f39a3f46'
- '83c20940fce448d33b884a9d0353f69f'
- '12046749a7667a755ff29fc025e9dcfa'
- '64c6edf88bcbb37d063e4bf77b39237f')
-
-prepare() {
-  cd $srcdir/core-$pkgver
-  sed -i "s|'appstoreenabled'.*|'appstoreenabled' => false,|" 
config/config.sample.php
-  rm -rf $srcdir/core-$pkgver/3rdparty
-  mv $srcdir/3rdparty-$pkgver $srcdir/core-$pkgver/3rdparty
-  mv $srcdir/apps-$pkgver/* $srcdir/core-$pkgver/apps
-  for i in files_locking files_pdfviewer files_texteditor firstrunwizard \
-   templateeditor updater activity; do
-mv $srcdir/$i-$pkgver $srcdir/core-$pkgver/apps/$i
-  done
-  find . -type f -name .gitattributes -delete
-  find . -type f -name .gitkeep -delete
-  find . -type f -name .gitignore -delete
-  find . -type f -name .gitmodules -delete
-  find . -type f -name .travis.yml -delete
-  find . -type d -name .git -exec rm -rf {} \;
-  find ./apps -maxdepth 1 -type f -delete
-}
-
-package() {
-  # install license
-  install -d ${pkgdir}/usr/share/licenses/${pkgname}
-  cp ${srcdir}/core-$pkgver/COPYING-* ${pkgdir}/usr/share/licenses/${pkgname}
-
-  # install project
-  install -d ${pkgdir}/usr/share/webapps/
-  cp -a ${srcdir}/core-$pkgver ${pkgdir}/usr/share/webapps/${pkgname}
-  rm -rf ${pkgdir}/usr/share/webapps/${pkgname}/tests
-
-  # install apache config file
-  install -d  ${pkgdir}/etc/webapps/${pkgname}
-  install -m 644 ${srcdir}/apache.example.conf  
${pkgdir}/etc/webapps/${pkgname}
-
-  # move config to /etc
-  mv 

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

2015-10-20 Thread Sergej Pupykin
Date: Tuesday, October 20, 2015 @ 12:41:56
  Author: spupykin
Revision: 144516

upgpkg: owncloud-app-gallery 8.2.0-1

upd

Modified:
  owncloud-app-gallery/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-10-20 10:41:48 UTC (rev 144515)
+++ PKGBUILD2015-10-20 10:41:56 UTC (rev 144516)
@@ -2,7 +2,7 @@
 # Maintainer: Sergej Pupykin 
 
 pkgname=owncloud-app-gallery
-pkgver=8.1.3
+pkgver=8.2.0
 pkgrel=1
 pkgdesc="Gallery app for owncloud"
 arch=('any')
@@ -12,7 +12,7 @@
 makedepends=()
 options=('!strip')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/owncloud/gallery/archive/v$pkgver.tar.gz;)
-md5sums=('b77a1f0a3167029a6e5e5aee4441e842')
+md5sums=('92c07b73e3b65cf5add6411eb525')
 
 package() {
   install -d ${pkgdir}/usr/share/webapps/owncloud/apps


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

2015-10-20 Thread Sergej Pupykin
Date: Tuesday, October 20, 2015 @ 12:42:13
  Author: spupykin
Revision: 144517

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-10-20 10:41:56 UTC (rev 144516)
+++ PKGBUILD2015-10-20 10:42:13 UTC (rev 144517)
@@ -1,20 +0,0 @@
-# $Id: PKGBUILD 103944 2014-01-13 20:31:53Z spupykin $
-# Maintainer: Sergej Pupykin 
-
-pkgname=owncloud-app-gallery
-pkgver=8.1.3
-pkgrel=1
-pkgdesc="Gallery app for owncloud"
-arch=('any')
-url="http://owncloud.org/;
-license=('GPL')
-depends=('owncloud')
-makedepends=()
-options=('!strip')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/owncloud/gallery/archive/v$pkgver.tar.gz;)
-md5sums=('b77a1f0a3167029a6e5e5aee4441e842')
-
-package() {
-  install -d ${pkgdir}/usr/share/webapps/owncloud/apps
-  cp -a ${srcdir}/gallery-$pkgver 
${pkgdir}/usr/share/webapps/owncloud/apps/gallery
-}

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


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

2015-10-20 Thread Sergej Pupykin
Date: Tuesday, October 20, 2015 @ 12:41:48
  Author: spupykin
Revision: 144515

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-10-20 10:41:28 UTC (rev 144514)
+++ PKGBUILD2015-10-20 10:41:48 UTC (rev 144515)
@@ -1,20 +0,0 @@
-# $Id: PKGBUILD 103944 2014-01-13 20:31:53Z spupykin $
-# Maintainer: Sergej Pupykin 
-
-pkgname=owncloud-app-bookmarks
-pkgver=8.1.3
-pkgrel=1
-pkgdesc="Bookmarks app for owncloud"
-arch=('any')
-url="http://owncloud.org/;
-license=('GPL')
-depends=('owncloud')
-makedepends=()
-options=('!strip')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/owncloud/bookmarks/archive/v$pkgver.tar.gz;)
-md5sums=('2d3ccbf20b156a3dd6f97d91524c723a')
-
-package() {
-  install -d ${pkgdir}/usr/share/webapps/owncloud/apps
-  cp -a ${srcdir}/bookmarks-$pkgver 
${pkgdir}/usr/share/webapps/owncloud/apps/bookmarks
-}

Copied: owncloud-app-bookmarks/repos/community-any/PKGBUILD (from rev 144514, 
owncloud-app-bookmarks/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-10-20 10:41:48 UTC (rev 144515)
@@ -0,0 +1,20 @@
+# $Id: PKGBUILD 103944 2014-01-13 20:31:53Z spupykin $
+# Maintainer: Sergej Pupykin 
+
+pkgname=owncloud-app-bookmarks
+pkgver=8.2.0
+pkgrel=1
+pkgdesc="Bookmarks app for owncloud"
+arch=('any')
+url="http://owncloud.org/;
+license=('GPL')
+depends=('owncloud')
+makedepends=()
+options=('!strip')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/owncloud/bookmarks/archive/v$pkgver.tar.gz;)
+md5sums=('376b5ece564f1e980208c9d40a2e6a03')
+
+package() {
+  install -d ${pkgdir}/usr/share/webapps/owncloud/apps
+  cp -a ${srcdir}/bookmarks-$pkgver 
${pkgdir}/usr/share/webapps/owncloud/apps/bookmarks
+}


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

2015-10-20 Thread Evangelos Foutras
Date: Tuesday, October 20, 2015 @ 11:28:57
  Author: foutrelis
Revision: 144439

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

Added:
  gqrx/repos/community-staging-i686/
  gqrx/repos/community-staging-i686/PKGBUILD
(from rev 144438, gqrx/trunk/PKGBUILD)
  gqrx/repos/community-staging-i686/gqrx.desktop
(from rev 144438, gqrx/trunk/gqrx.desktop)
  gqrx/repos/community-staging-i686/gqrx.png
(from rev 144438, gqrx/trunk/gqrx.png)
  gqrx/repos/community-staging-x86_64/
  gqrx/repos/community-staging-x86_64/PKGBUILD
(from rev 144438, gqrx/trunk/PKGBUILD)
  gqrx/repos/community-staging-x86_64/gqrx.desktop
(from rev 144438, gqrx/trunk/gqrx.desktop)
  gqrx/repos/community-staging-x86_64/gqrx.png
(from rev 144438, gqrx/trunk/gqrx.png)

---+
 community-staging-i686/PKGBUILD   |   54 
 community-staging-i686/gqrx.desktop   |   10 +
 community-staging-x86_64/PKGBUILD |   54 
 community-staging-x86_64/gqrx.desktop |   10 +
 4 files changed, 128 insertions(+)

Copied: gqrx/repos/community-staging-i686/PKGBUILD (from rev 144438, 
gqrx/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-10-20 09:28:57 UTC (rev 144439)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Kyle Keen 
+# Contributor: Dominik Heidler 
+
+pkgname=gqrx
+pkgver=2.3.2
+pkgrel=7
+pkgdesc="Interactive SDR receiver waterfall for many devices."
+arch=('i686' 'x86_64')
+url="http://gqrx.dk/;
+license=('GPL')
+depends=('qt5-svg' 'libpulse' 'gnuradio-osmosdr' 'libxkbcommon-x11')
+makedepends=('boost')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/csete/gqrx/archive/v$pkgver.tar.gz;
+"$pkgname.png"
+"$pkgname.desktop")
+md5sums=('f77dd4d3ee02bd142be5f17a926c21c7'
+ 'f7032a8883c89bd80e0d0fd36f861c59'
+ '810f89195231c18f32af92522aade721')
+
+prepare() {
+  cd "$srcdir"
+  cp -r gqrx-$pkgver gqrx-$pkgver-alsa
+  cd gqrx-$pkgver-alsa
+  sed -i 's/AUDIO_BACKEND = pulse/#&/' gqrx.pro
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  rm -rf build
+  mkdir build
+  cd build
+  qmake PREFIX=/usr/ ..
+  make
+  cd "$srcdir/$pkgname-$pkgver-alsa"
+  rm -rf build
+  mkdir build
+  cd build
+  qmake PREFIX=/usr/ ..
+  make
+}
+
+package() {
+  cd "$srcdir"
+  install -Dm644 "$pkgname.desktop" 
"$pkgdir/usr/share/applications/$pkgname.desktop"
+  install -Dm644 "$pkgname.png" "$pkgdir/usr/share/pixmaps/$pkgname.png"
+
+  cd "$srcdir/$pkgname-$pkgver/build"
+  make install INSTALL_ROOT="$pkgdir"
+
+  cd "$srcdir/$pkgname-$pkgver-alsa/build"
+  install -Dm755 gqrx "$pkgdir/usr/bin/gqrx-alsa"
+}
+

Copied: gqrx/repos/community-staging-i686/gqrx.desktop (from rev 144438, 
gqrx/trunk/gqrx.desktop)
===
--- community-staging-i686/gqrx.desktop (rev 0)
+++ community-staging-i686/gqrx.desktop 2015-10-20 09:28:57 UTC (rev 144439)
@@ -0,0 +1,10 @@
+[Desktop Entry]
+Name=GQRX SDR
+GenericName=Funcube SDR Software
+Comment=Controller application for the Funcube Dongle and operating 
application.
+Exec=gqrx
+Icon=gqrx
+Terminal=false
+Type=Application
+Categories=AudioVideo;Audio;HamRadio;
+StartupNotify=false

Copied: gqrx/repos/community-staging-i686/gqrx.png (from rev 144438, 
gqrx/trunk/gqrx.png)
===
(Binary files differ)

Copied: gqrx/repos/community-staging-x86_64/PKGBUILD (from rev 144438, 
gqrx/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-10-20 09:28:57 UTC (rev 144439)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Kyle Keen 
+# Contributor: Dominik Heidler 
+
+pkgname=gqrx
+pkgver=2.3.2
+pkgrel=7
+pkgdesc="Interactive SDR receiver waterfall for many devices."
+arch=('i686' 'x86_64')
+url="http://gqrx.dk/;
+license=('GPL')
+depends=('qt5-svg' 'libpulse' 'gnuradio-osmosdr' 'libxkbcommon-x11')
+makedepends=('boost')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/csete/gqrx/archive/v$pkgver.tar.gz;
+"$pkgname.png"
+"$pkgname.desktop")
+md5sums=('f77dd4d3ee02bd142be5f17a926c21c7'
+ 'f7032a8883c89bd80e0d0fd36f861c59'
+ '810f89195231c18f32af92522aade721')
+
+prepare() {
+  cd "$srcdir"
+  cp -r gqrx-$pkgver gqrx-$pkgver-alsa
+  cd gqrx-$pkgver-alsa
+  sed -i 's/AUDIO_BACKEND = pulse/#&/' gqrx.pro
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  rm -rf build
+  mkdir build
+  cd build
+  qmake PREFIX=/usr/ ..
+  make
+  cd "$srcdir/$pkgname-$pkgver-alsa"
+  rm -rf build
+  mkdir build
+  cd build
+  qmake PREFIX=/usr/ ..

[arch-commits] Commit in deepin-movie/repos/community-any (4 files)

2015-10-20 Thread Felix Yan
Date: Tuesday, October 20, 2015 @ 14:34:12
  Author: fyan
Revision: 144523

archrelease: copy trunk to community-any

Added:
  deepin-movie/repos/community-any/PKGBUILD
(from rev 144522, deepin-movie/trunk/PKGBUILD)
  deepin-movie/repos/community-any/deepin-movie.install
(from rev 144522, deepin-movie/trunk/deepin-movie.install)
Deleted:
  deepin-movie/repos/community-any/PKGBUILD
  deepin-movie/repos/community-any/deepin-movie.install

--+
 PKGBUILD |   76 -
 deepin-movie.install |   22 +++---
 2 files changed, 49 insertions(+), 49 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-10-20 12:33:52 UTC (rev 144522)
+++ PKGBUILD2015-10-20 12:34:12 UTC (rev 144523)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgname=deepin-movie
-pkgver=2.3.0.20151020
-_commit=640ea9471b4d911728a9742bdae78a785f323b15
-pkgrel=1
-pkgdesc='Movie player based on QtAV'
-arch=('any')
-url="https://gitcafe.com/Deepin/deepin-movie;
-license=('GPL3')
-depends=('python2-pyqt5' 'qtav' 'mediainfo' 'deepin-menu' 'python2-dbus'
- 'python2-peewee' 'python2-pillow' 'python2-peewee' 'python2-magic'
- 'deepin-qml-widgets' 'python2-xpybutil' 'python2-deepin-utils'
- 'python2-requests' 'python2-bottle' 'dleyna-renderer')
-makedepends=('deepin-gettext-tools' 'git')
-groups=('deepin-extra')
-install="${pkgname}.install"
-source=("git+https://github.com/linuxdeepin/deepin-movie.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-prepare() {
-  cd deepin-movie
-
-  # fix python version
-  find -iname "*.py" | xargs sed -i 's=\(^#! */usr/bin.*\)python *$=\1python2='
-}
-
-build() {
-  cd deepin-movie
-  python2 configure.py
-  deepin-generate-mo locale/locale_config.ini
-}
-
-package() {
-  cd deepin-movie
-  make DESTDIR="${pkgdir}" PREFIX="/usr" install
-}

Copied: deepin-movie/repos/community-any/PKGBUILD (from rev 144522, 
deepin-movie/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-10-20 12:34:12 UTC (rev 144523)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=deepin-movie
+pkgver=2.3.0.20151020
+_commit=6bf276cd47e4c85568dd175dfb4e3705e39ccb93
+pkgrel=2
+pkgdesc='Movie player based on QtAV'
+arch=('any')
+url="https://gitcafe.com/Deepin/deepin-movie;
+license=('GPL3')
+depends=('python2-pyqt5' 'qtav' 'mediainfo' 'deepin-menu' 'python2-dbus'
+ 'python2-peewee' 'python2-pillow' 'python2-magic' 'python2-bottle'
+ 'deepin-qml-widgets' 'python2-xpybutil' 'python2-deepin-utils'
+ 'python2-requests' 'dleyna-renderer' 'deepin-dbus-factory')
+makedepends=('deepin-gettext-tools' 'git')
+groups=('deepin-extra')
+install="${pkgname}.install"
+source=("git+https://github.com/linuxdeepin/deepin-movie.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+prepare() {
+  cd deepin-movie
+
+  # fix python version
+  find -iname "*.py" | xargs sed -i 's=\(^#! */usr/bin.*\)python *$=\1python2='
+}
+
+build() {
+  cd deepin-movie
+  python2 configure.py
+  deepin-generate-mo locale/locale_config.ini
+}
+
+package() {
+  cd deepin-movie
+  make DESTDIR="${pkgdir}" PREFIX="/usr" install
+}

Deleted: deepin-movie.install
===
--- deepin-movie.install2015-10-20 12:33:52 UTC (rev 144522)
+++ deepin-movie.install2015-10-20 12:34:12 UTC (rev 144523)
@@ -1,11 +0,0 @@
-post_install() {
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install "$1"
-}
-
-post_remove() {
-  post_install "$1"
-}

Copied: deepin-movie/repos/community-any/deepin-movie.install (from rev 144522, 
deepin-movie/trunk/deepin-movie.install)
===
--- deepin-movie.install(rev 0)
+++ deepin-movie.install2015-10-20 12:34:12 UTC (rev 144523)
@@ -0,0 +1,11 @@
+post_install() {
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install "$1"
+}
+
+post_remove() {
+  post_install "$1"
+}


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

2015-10-20 Thread Sergej Pupykin
Date: Tuesday, October 20, 2015 @ 14:14:32
  Author: spupykin
Revision: 144521

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-10-20 12:14:22 UTC (rev 144520)
+++ PKGBUILD2015-10-20 12:14:32 UTC (rev 144521)
@@ -1,21 +0,0 @@
-# $Id: PKGBUILD 103944 2014-01-13 20:31:53Z spupykin $
-# Maintainer: Sergej Pupykin 
-
-pkgname=owncloud-app-contacts
-epoch=1
-pkgver=0.4.0.1
-pkgrel=1
-pkgdesc="Contacts app for owncloud"
-arch=('any')
-url="http://owncloud.org/;
-license=('GPL')
-depends=('owncloud')
-makedepends=()
-options=('!strip')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/owncloud/contacts/archive/v$pkgver.tar.gz;)
-md5sums=('50c9d66a985b9d240570e73de4da29c7')
-
-package() {
-  install -d ${pkgdir}/usr/share/webapps/owncloud/apps
-  cp -a ${srcdir}/contacts-$pkgver 
${pkgdir}/usr/share/webapps/owncloud/apps/contacts
-}

Copied: owncloud-app-contacts/repos/community-any/PKGBUILD (from rev 144520, 
owncloud-app-contacts/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-10-20 12:14:32 UTC (rev 144521)
@@ -0,0 +1,21 @@
+# $Id: PKGBUILD 103944 2014-01-13 20:31:53Z spupykin $
+# Maintainer: Sergej Pupykin 
+
+pkgname=owncloud-app-contacts
+epoch=1
+pkgver=0.5.0.0
+pkgrel=1
+pkgdesc="Contacts app for owncloud"
+arch=('any')
+url="http://owncloud.org/;
+license=('GPL')
+depends=('owncloud')
+makedepends=()
+options=('!strip')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/owncloud/contacts/archive/v$pkgver.tar.gz;)
+md5sums=('8739b4fd78a50769922d5b2291774c03')
+
+package() {
+  install -d ${pkgdir}/usr/share/webapps/owncloud/apps
+  cp -a ${srcdir}/contacts-$pkgver 
${pkgdir}/usr/share/webapps/owncloud/apps/contacts
+}


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

2015-10-20 Thread Sergej Pupykin
Date: Tuesday, October 20, 2015 @ 14:14:16
  Author: spupykin
Revision: 144519

archrelease: copy trunk to community-any

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

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

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

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


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

2015-10-20 Thread Sergej Pupykin
Date: Tuesday, October 20, 2015 @ 14:14:22
  Author: spupykin
Revision: 144520

upgpkg: owncloud-app-contacts 1:0.5.0.0-1

upd

Modified:
  owncloud-app-contacts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-10-20 12:14:16 UTC (rev 144519)
+++ PKGBUILD2015-10-20 12:14:22 UTC (rev 144520)
@@ -3,7 +3,7 @@
 
 pkgname=owncloud-app-contacts
 epoch=1
-pkgver=0.4.0.1
+pkgver=0.5.0.0
 pkgrel=1
 pkgdesc="Contacts app for owncloud"
 arch=('any')
@@ -13,7 +13,7 @@
 makedepends=()
 options=('!strip')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/owncloud/contacts/archive/v$pkgver.tar.gz;)
-md5sums=('50c9d66a985b9d240570e73de4da29c7')
+md5sums=('8739b4fd78a50769922d5b2291774c03')
 
 package() {
   install -d ${pkgdir}/usr/share/webapps/owncloud/apps


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

2015-10-20 Thread Sergej Pupykin
Date: Tuesday, October 20, 2015 @ 14:14:04
  Author: spupykin
Revision: 144518

upgpkg: owncloud-app-calendar 1:0.8.0-1

upd

Modified:
  owncloud-app-calendar/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-10-20 10:42:13 UTC (rev 144517)
+++ PKGBUILD2015-10-20 12:14:04 UTC (rev 144518)
@@ -3,7 +3,7 @@
 
 pkgname=owncloud-app-calendar
 epoch=1
-pkgver=0.7.3
+pkgver=0.8.0
 pkgrel=1
 pkgdesc="Calendar app for owncloud"
 arch=('any')
@@ -13,7 +13,7 @@
 makedepends=()
 options=('!strip')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/owncloud/calendar/archive/v$pkgver.tar.gz;)
-md5sums=('a5917feacf1af04a0d25d6ee93c4ee38')
+md5sums=('8b2e3befda0268e0d475d3d84a7a8d47')
 
 package() {
   install -d ${pkgdir}/usr/share/webapps/owncloud/apps


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

2015-10-20 Thread Felix Yan
Date: Tuesday, October 20, 2015 @ 14:33:52
  Author: fyan
Revision: 144522

upgpkg: deepin-movie 2.3.0.20151020-2

fix dependency on deepin-dbus-factory

Modified:
  deepin-movie/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-10-20 12:14:32 UTC (rev 144521)
+++ PKGBUILD2015-10-20 12:33:52 UTC (rev 144522)
@@ -3,16 +3,16 @@
 
 pkgname=deepin-movie
 pkgver=2.3.0.20151020
-_commit=640ea9471b4d911728a9742bdae78a785f323b15
-pkgrel=1
+_commit=6bf276cd47e4c85568dd175dfb4e3705e39ccb93
+pkgrel=2
 pkgdesc='Movie player based on QtAV'
 arch=('any')
 url="https://gitcafe.com/Deepin/deepin-movie;
 license=('GPL3')
 depends=('python2-pyqt5' 'qtav' 'mediainfo' 'deepin-menu' 'python2-dbus'
- 'python2-peewee' 'python2-pillow' 'python2-peewee' 'python2-magic'
+ 'python2-peewee' 'python2-pillow' 'python2-magic' 'python2-bottle'
  'deepin-qml-widgets' 'python2-xpybutil' 'python2-deepin-utils'
- 'python2-requests' 'python2-bottle' 'dleyna-renderer')
+ 'python2-requests' 'dleyna-renderer' 'deepin-dbus-factory')
 makedepends=('deepin-gettext-tools' 'git')
 groups=('deepin-extra')
 install="${pkgname}.install"


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

2015-10-20 Thread Evangelos Foutras
Date: Tuesday, October 20, 2015 @ 08:28:13
  Author: foutrelis
Revision: 144406

archrelease: copy trunk to community-staging-x86_64

Added:
  luxrays/repos/community-staging-x86_64/
  luxrays/repos/community-staging-x86_64/PKGBUILD
(from rev 144405, luxrays/trunk/PKGBUILD)
  luxrays/repos/community-staging-x86_64/force_python3.diff
(from rev 144405, luxrays/trunk/force_python3.diff)

+
 PKGBUILD   |   54 +++
 force_python3.diff |   12 +++
 2 files changed, 66 insertions(+)

Copied: luxrays/repos/community-staging-x86_64/PKGBUILD (from rev 144405, 
luxrays/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-10-20 06:28:13 UTC (rev 144406)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Lukas Jirkovsky 
+pkgname='luxrays'
+pkgver=1.5
+_pkgver=53c0b9a41ea2
+pkgrel=3
+pkgdesc="Accelerate the ray intersection process by using GPUs"
+arch=('x86_64')
+url="http://www.luxrender.net/;
+license=('GPL')
+depends=('embree' 'libcl' 'libgl' 'openimageio')
+makedepends=('boost' 'cmake' 'freetype2' 'libpng' 'mesa' 'opencl-headers' 
'glew' 'freeglut')
+optdepends=('opencl-nvidia: OpenCL support for nVidia GPUs' \
+'amdapp-sdk: OpenCL support for AMD GPUs' \
+'intel-opencl-runtime: OpenCL support for Intel CPUs' \
+'glew: demos (SmallLuxGPU etc.)' \
+'freeglut: demos (SmallLuxGPU etc.)' \
+'boost-libs: demos (SmallLuxGPU etc.)')
+options=('staticlibs')
+source=($pkgname-$pkgver.tar.bz2::https://bitbucket.org/luxrender/luxrays/get/${_pkgver}.tar.bz2
 \
+force_python3.diff)
+md5sums=('b432c48332a765791d27aaa25fee4783'
+ '3bfb5594a709d1ea772866d66904b8fd')
+
+prepare() {
+  cd "$srcdir"/luxrender-luxrays-$_pkgver
+
+  patch -Np1 < "$srcdir/force_python3.diff" || true
+}
+
+build() {
+  cd "$srcdir/luxrender-luxrays-$_pkgver"
+
+  cmake . \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_SKIP_RPATH=ON \
+-DLUXRAYS_DISABLE_OPENCL=OFF
+  make
+}
+
+package() {
+  cd "$srcdir/luxrender-luxrays-$_pkgver"
+
+  install -d -m755 "$pkgdir"/usr/{bin,include,lib}
+  install -m755 bin/* "$pkgdir"/usr/bin
+  install -m644 lib/* "$pkgdir"/usr/lib
+  cp -a include "$pkgdir"/usr
+
+  # install pyluxcore to the Python search path
+  install -d -m755 "$pkgdir"/usr/lib/python3.5/
+  mv "$pkgdir"/usr/lib/pyluxcore.so "$pkgdir"/usr/lib/python3.5/
+}
+
+# vim:set ts=2 sw=2 et:

Copied: luxrays/repos/community-staging-x86_64/force_python3.diff (from rev 
144405, luxrays/trunk/force_python3.diff)
===
--- community-staging-x86_64/force_python3.diff (rev 0)
+++ community-staging-x86_64/force_python3.diff 2015-10-20 06:28:13 UTC (rev 
144406)
@@ -0,0 +1,12 @@
+diff -rup luxrender-luxrays-7c7127ee1fa4/cmake/Dependencies.cmake 
luxrender-luxrays-7c7127ee1fa4.new/cmake/Dependencies.cmake
+--- luxrender-luxrays-7c7127ee1fa4/cmake/Dependencies.cmake2015-01-20 
23:45:32.0 +0100
 luxrender-luxrays-7c7127ee1fa4.new/cmake/Dependencies.cmake
2015-02-15 22:19:40.775351414 +0100
+@@ -58,7 +58,7 @@ set(Boost_MINIMUM_VERSION   "1.44.0"
+ 
+ set(Boost_ADDITIONAL_VERSIONS "1.47.0" "1.46.1" "1.46" "1.46.0" "1.45" 
"1.45.0" "1.44" "1.44.0")
+ 
+-set(LUXRAYS_BOOST_COMPONENTS thread program_options filesystem serialization 
iostreams regex system python)
++set(LUXRAYS_BOOST_COMPONENTS thread program_options filesystem serialization 
iostreams regex system python3)
+ find_package(Boost ${Boost_MINIMUM_VERSION} COMPONENTS 
${LUXRAYS_BOOST_COMPONENTS})
+ if (NOT Boost_FOUND)
+ # Try again with the other type of libs


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

2015-10-20 Thread Evangelos Foutras
Date: Tuesday, October 20, 2015 @ 08:28:00
  Author: foutrelis
Revision: 144405

boost 1.59.0 rebuild

Modified:
  luxrays/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-10-20 06:20:23 UTC (rev 144404)
+++ PKGBUILD2015-10-20 06:28:00 UTC (rev 144405)
@@ -3,7 +3,7 @@
 pkgname='luxrays'
 pkgver=1.5
 _pkgver=53c0b9a41ea2
-pkgrel=2
+pkgrel=3
 pkgdesc="Accelerate the ray intersection process by using GPUs"
 arch=('x86_64')
 url="http://www.luxrender.net/;


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

2015-10-20 Thread Evangelos Foutras
Date: Tuesday, October 20, 2015 @ 09:21:03
  Author: foutrelis
Revision: 249536

upgpkg: boost 1.59.0-2

Add upstream fix for Boost.Python issue which caused cegui to FTBFS.

Added:
  boost/trunk/0001-Python-Fix-condition-for-make_setter-overload.patch
Modified:
  boost/trunk/PKGBUILD
Deleted:
  boost/trunk/boost-1.58.0-Fix-for-bind-void-mf-ambiguous-resolution-error.patch

+
 0001-Python-Fix-condition-for-make_setter-overload.patch   |   28 
 PKGBUILD   |   15 
 boost-1.58.0-Fix-for-bind-void-mf-ambiguous-resolution-error.patch |  354 
--
 3 files changed, 40 insertions(+), 357 deletions(-)

Added: 0001-Python-Fix-condition-for-make_setter-overload.patch
===
--- 0001-Python-Fix-condition-for-make_setter-overload.patch
(rev 0)
+++ 0001-Python-Fix-condition-for-make_setter-overload.patch2015-10-20 
07:21:03 UTC (rev 249536)
@@ -0,0 +1,28 @@
+From f410fbd64d887e2a8824f968b0533588489b5430 Mon Sep 17 00:00:00 2001
+From: Jonathan Wakely 
+Date: Wed, 2 Sep 2015 13:02:12 +0100
+Subject: [PATCH] Python: Fix condition for make_setter overload.
+
+This fixes the regression caused by 42e7d7b.
+
+Fixes #39
+---
+ include/boost/python/data_members.hpp | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/include/boost/python/data_members.hpp 
b/include/boost/python/data_members.hpp
+index 139bde3..5d3309c 100644
+--- a/include/boost/python/data_members.hpp
 b/include/boost/python/data_members.hpp
+@@ -305,7 +305,7 @@ inline object make_setter(D& x)
+ return detail::make_setter(x, default_call_policies(), 
is_member_pointer(), 0);
+ }
+ 
+-# if BOOST_WORKAROUND(__EDG_VERSION__, <= 238)
++# if !BOOST_WORKAROUND(__EDG_VERSION__, <= 238)
+ template 
+ inline object make_setter(D const& x)
+ {
+-- 
+2.6.1
+

Modified: PKGBUILD
===
--- PKGBUILD2015-10-20 06:59:30 UTC (rev 249535)
+++ PKGBUILD2015-10-20 07:21:03 UTC (rev 249536)
@@ -10,14 +10,23 @@
 pkgname=('boost-libs' 'boost')
 pkgver=1.59.0
 _boostver=${pkgver//./_}
-pkgrel=1
+pkgrel=2
 url='http://www.boost.org/'
 arch=('i686' 'x86_64')
 license=('custom')
 makedepends=('icu>=55.1' 'python>=3.5' 'python<3.6' 'python2' 'bzip2' 'zlib' 
'openmpi')
-source=(https://downloads.sourceforge.net/project/${pkgbase}/${pkgbase}/${pkgver}/${pkgbase}_${_boostver}.tar.bz2)
-sha1sums=('b94de47108b2cdb0f931833a7a9834c2dd3ca46e')
+source=(https://downloads.sourceforge.net/project/${pkgbase}/${pkgbase}/${pkgver}/${pkgbase}_${_boostver}.tar.bz2
+0001-Python-Fix-condition-for-make_setter-overload.patch)
+sha1sums=('b94de47108b2cdb0f931833a7a9834c2dd3ca46e'
+  'bd76d969b6f8fbe95f05fba13b57a001764c216c')
 
+prepare() {
+   cd ${pkgbase}_${_boostver}
+
+   # https://github.com/boostorg/python/issues/39
+   patch -Np2 -i ../0001-Python-Fix-condition-for-make_setter-overload.patch
+}
+
 build() {
export _stagedir="${srcdir}/stagedir"
local JOBS="$(sed -e 's/.*\(-j *[0-9]\+\).*/\1/' <<< ${MAKEFLAGS})"

Deleted: boost-1.58.0-Fix-for-bind-void-mf-ambiguous-resolution-error.patch
===
--- boost-1.58.0-Fix-for-bind-void-mf-ambiguous-resolution-error.patch  
2015-10-20 06:59:30 UTC (rev 249535)
+++ boost-1.58.0-Fix-for-bind-void-mf-ambiguous-resolution-error.patch  
2015-10-20 07:21:03 UTC (rev 249536)
@@ -1,354 +0,0 @@
-From 150c4e94e3f6aadc84f551accdb49b6658bfb539 Mon Sep 17 00:00:00 2001
-From: K-ballo 
-Date: Wed, 29 Apr 2015 13:11:41 -0300
-Subject: [PATCH] Fix for bind(mf) ambiguous resolution error
-

- include/boost/bind/bind.hpp   |  2 ++
- include/boost/bind/bind_mf_cc.hpp | 54 ++-
- test/bind_void_mf_test.cpp| 27 
- 3 files changed, 65 insertions(+), 18 deletions(-)
-
-diff --git a/include/boost/bind/bind.hpp b/include/boost/bind/bind.hpp
-index 924d055..fd05131 100644
 a/include/boost/bind/bind.hpp
-+++ b/include/boost/bind/bind.hpp
-@@ -29,6 +29,8 @@
- #include 
- #include 
- #include 
-+#include 
-+#include 
- 
- // Borland-specific bug, visit_each() silently fails to produce code
- 
-diff --git a/include/boost/bind/bind_mf_cc.hpp 
b/include/boost/bind/bind_mf_cc.hpp
-index 9c3d290..e149384 100644
 a/include/boost/bind/bind_mf_cc.hpp
-+++ b/include/boost/bind/bind_mf_cc.hpp
-@@ -36,8 +36,9 @@ template
-+typename boost::enable_if_c::value,
- _bi::bind_t, typename 
_bi::list_av_1::type>
--BOOST_BIND(R (BOOST_BIND_MF_CC T::*f) (), A1 a1)
-+>::type BOOST_BIND(R (BOOST_BIND_MF_CC T::*f) (), A1 a1)
- {
- typedef _mfi::BOOST_BIND_MF_NAME(mf0) F;
- typedef typename _bi::list_av_1::type 

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

2015-10-20 Thread Evangelos Foutras
Date: Tuesday, October 20, 2015 @ 09:21:12
  Author: foutrelis
Revision: 249537

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

Added:
  
boost/repos/staging-i686/0001-Python-Fix-condition-for-make_setter-overload.patch
(from rev 249536, 
boost/trunk/0001-Python-Fix-condition-for-make_setter-overload.patch)
  boost/repos/staging-i686/PKGBUILD
(from rev 249536, boost/trunk/PKGBUILD)
  
boost/repos/staging-x86_64/0001-Python-Fix-condition-for-make_setter-overload.patch
(from rev 249536, 
boost/trunk/0001-Python-Fix-condition-for-make_setter-overload.patch)
  boost/repos/staging-x86_64/PKGBUILD
(from rev 249536, boost/trunk/PKGBUILD)
Deleted:
  boost/repos/staging-i686/PKGBUILD
  
boost/repos/staging-i686/boost-1.58.0-Fix-for-bind-void-mf-ambiguous-resolution-error.patch
  boost/repos/staging-x86_64/PKGBUILD
  
boost/repos/staging-x86_64/boost-1.58.0-Fix-for-bind-void-mf-ambiguous-resolution-error.patch

---+
 /PKGBUILD  
   |  212 +
 staging-i686/0001-Python-Fix-condition-for-make_setter-overload.patch  
   |   28 
 staging-i686/PKGBUILD  
   |   97 --
 
staging-i686/boost-1.58.0-Fix-for-bind-void-mf-ambiguous-resolution-error.patch 
  |  354 --
 staging-x86_64/0001-Python-Fix-condition-for-make_setter-overload.patch
   |   28 
 staging-x86_64/PKGBUILD
   |   97 --
 
staging-x86_64/boost-1.58.0-Fix-for-bind-void-mf-ambiguous-resolution-error.patch
 |  354 --
 7 files changed, 268 insertions(+), 902 deletions(-)

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


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

2015-10-20 Thread Evangelos Foutras
Date: Tuesday, October 20, 2015 @ 09:38:20
  Author: foutrelis
Revision: 144416

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

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

--+
 community-staging-i686/PKGBUILD  |   35 +
 community-staging-i686/qbittorrent.install   |   13 +
 community-staging-x86_64/PKGBUILD|   35 +
 community-staging-x86_64/qbittorrent.install |   13 +
 4 files changed, 96 insertions(+)

Copied: qbittorrent/repos/community-staging-i686/PKGBUILD (from rev 144415, 
qbittorrent/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-10-20 07:38:20 UTC (rev 144416)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Timothy Redaelli 
+# Contributor: carstene1ns  - http://git.io/ctPKG
+# Contributor: Jkkyll Wu 
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Daniel J Griffiths 
+# Contributor: Geoffroy Carrier 
+
+pkgname=qbittorrent
+pkgver=3.2.4
+pkgrel=2
+pkgdesc="A bittorrent client written in C++ / Qt4 using the good libtorrent 
library"
+arch=('i686' 'x86_64')
+url="http://www.qbittorrent.org;
+license=('custom' 'GPL')
+depends=('libtorrent-rasterbar' 'qjson')
+makedepends=('boost')
+optdepends=('python: needed for torrent search tab')
+install=$pkgname.install
+source=("http://downloads.sourceforge.net/sourceforge/qbittorrent/$pkgname-$pkgver.tar.xz;)
+sha256sums=('7fc128e2809c3be4ea543cfaeefd922e0327cc430330eaad0d3ec7616df51871')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr --with-qjson=system
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make INSTALL_ROOT="$pkgdir/" install
+  install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING
+}

Copied: qbittorrent/repos/community-staging-i686/qbittorrent.install (from rev 
144415, qbittorrent/trunk/qbittorrent.install)
===
--- community-staging-i686/qbittorrent.install  (rev 0)
+++ community-staging-i686/qbittorrent.install  2015-10-20 07:38:20 UTC (rev 
144416)
@@ -0,0 +1,13 @@
+
+post_install() {
+  xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Copied: qbittorrent/repos/community-staging-x86_64/PKGBUILD (from rev 144415, 
qbittorrent/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-10-20 07:38:20 UTC (rev 144416)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Timothy Redaelli 
+# Contributor: carstene1ns  - http://git.io/ctPKG
+# Contributor: Jkkyll Wu 
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Daniel J Griffiths 
+# Contributor: Geoffroy Carrier 
+
+pkgname=qbittorrent
+pkgver=3.2.4
+pkgrel=2
+pkgdesc="A bittorrent client written in C++ / Qt4 using the good libtorrent 
library"
+arch=('i686' 'x86_64')
+url="http://www.qbittorrent.org;
+license=('custom' 'GPL')
+depends=('libtorrent-rasterbar' 'qjson')
+makedepends=('boost')
+optdepends=('python: needed for torrent search tab')
+install=$pkgname.install
+source=("http://downloads.sourceforge.net/sourceforge/qbittorrent/$pkgname-$pkgver.tar.xz;)
+sha256sums=('7fc128e2809c3be4ea543cfaeefd922e0327cc430330eaad0d3ec7616df51871')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr --with-qjson=system
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make INSTALL_ROOT="$pkgdir/" install
+  install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING
+}

Copied: qbittorrent/repos/community-staging-x86_64/qbittorrent.install (from 
rev 144415, qbittorrent/trunk/qbittorrent.install)
===
--- community-staging-x86_64/qbittorrent.install
(rev 0)
+++ community-staging-x86_64/qbittorrent.install2015-10-20 07:38:20 UTC 
(rev 144416)
@@ -0,0 +1,13 @@
+
+post_install() {
+  xdg-icon-resource 

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

2015-10-20 Thread Evangelos Foutras
Date: Tuesday, October 20, 2015 @ 09:42:52
  Author: foutrelis
Revision: 144420

archrelease: copy trunk to community-staging-x86_64

Added:
  hhvm/repos/community-staging-x86_64/
  hhvm/repos/community-staging-x86_64/PKGBUILD
(from rev 144419, hhvm/trunk/PKGBUILD)
  hhvm/repos/community-staging-x86_64/gcc51.patch
(from rev 144419, hhvm/trunk/gcc51.patch)
  hhvm/repos/community-staging-x86_64/hhvm.install
(from rev 144419, hhvm/trunk/hhvm.install)
  hhvm/repos/community-staging-x86_64/hhvm.service
(from rev 144419, hhvm/trunk/hhvm.service)
  hhvm/repos/community-staging-x86_64/hhvm.tmpfile
(from rev 144419, hhvm/trunk/hhvm.tmpfile)
  hhvm/repos/community-staging-x86_64/hhvm@.service
(from rev 144419, hhvm/trunk/hhvm@.service)
  hhvm/repos/community-staging-x86_64/libstdcxx-dual-abi.patch
(from rev 144419, hhvm/trunk/libstdcxx-dual-abi.patch)
  hhvm/repos/community-staging-x86_64/php.ini
(from rev 144419, hhvm/trunk/php.ini)
  hhvm/repos/community-staging-x86_64/server.ini
(from rev 144419, hhvm/trunk/server.ini)

--+
 PKGBUILD |  155 +
 gcc51.patch  |   14 
 hhvm.install |9 ++
 hhvm.service |   15 
 hhvm.tmpfile |2 
 hhvm@.service|   15 
 libstdcxx-dual-abi.patch |   46 +
 php.ini  |   10 ++
 server.ini   |6 +
 9 files changed, 272 insertions(+)

Copied: hhvm/repos/community-staging-x86_64/PKGBUILD (from rev 144419, 
hhvm/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-10-20 07:42:52 UTC (rev 144420)
@@ -0,0 +1,155 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo 
+# Contributor: James Miller 
+
+pkgname=hhvm
+pkgver=3.10.0
+pkgrel=2
+
+_thirdparty_commit=25006693fa6f5f09123d915225bc1b240102dfd6
+_folly_commit=3a6c9d3896badace174e6933c0a764f740e921c8
+_mcrouter_commit=2d51823b9516c9609da3c7c5022357ec33cd25f6
+_proxygen_commit=080b2b157915f7e970d9c406659ad4f8f9f0bedd
+_squangle_commit=8a074e1550c904816debb2221a829e0a4b1b6261
+_thrift_commit=181044fd78e0a26e77fb519e1cbd10238c2e32d6
+_wangle_commit=c1e434b725ca7e8336a0401f4bed548ea1aefc78
+_webscalesql_commit=04456ee8cb3f537537873504b33cdea17e346b12
+
+pkgdesc="Virtual Machine, Runtime, and JIT for PHP"
+arch=('x86_64')
+url="http://hhvm.com;
+license=('PHP')
+depends=('boost-libs' 'google-glog' 'libmysqlclient' 'libmemcached' 'libzip'
+ 'libxslt' 'intel-tbb' 'libmcrypt' 'oniguruma' 'jemalloc' 'curl' 
'libvpx'
+ 'libdwarf' 'imagemagick' 'libedit' 'sqlite' 'libyaml' 'fribidi' 're2'
+ 'gperf' 'c-client' 'unixodbc')
+makedepends=('git' 'cmake' 'gcc' 'boost' 'gflags' 'python2' 'pfff' 'mongodb'
+ 'ragel' 'libmariadbclient')
+source=("https://github.com/facebook/hhvm/archive/HHVM-$pkgver.tar.gz;
+
"https://github.com/hhvm/hhvm-third-party/archive/$_thirdparty_commit/hhvm-third-party-$_thirdparty_commit.tar.gz;
+
"https://github.com/facebook/folly/archive/$_folly_commit/folly-$_folly_commit.tar.gz;
+
"https://github.com/facebook/fbthrift/archive/$_thrift_commit/thrift-$_thrift_commit.tar.gz;
+
"https://github.com/facebook/proxygen/archive/$_proxygen_commit/proxygen-$_proxygen_commit.tar.gz;
+
"https://github.com/webscalesql/webscalesql-5.6/archive/$_webscalesql_commit/webscalesql-$_webscalesql_commit.tar.gz;
+
"https://github.com/facebook/mcrouter/archive/$_mcrouter_commit/mcrouter-$_mcrouter_commit.tar.gz;
+
"https://github.com/facebook/squangle/archive/$_squangle_commit/squangle-$_squangle_commit.tar.gz;
+
"https://github.com/facebook/wangle/archive/$_wangle_commit/wangle-$_wangle_commit.tar.gz;
+'hhvm.tmpfile'
+'hhvm.service'
+'hhvm@.service'
+'php.ini'
+'server.ini'
+'gcc51.patch'
+'libstdcxx-dual-abi.patch')
+install=hhvm.install
+backup=(etc/hhvm/{php,server}.ini)
+options+=('!buildflags')
+
+prepare() {
+cd "$srcdir"/$pkgname-HHVM-$pkgver
+
+sed -r 's/service hhvm (start|stop|restart)/systemctl \1 hhvm.service/' \
+-i hphp/tools/oss-repo-mode
+
+patch -p1 -i "$srcdir"/gcc51.patch
+
+# Fix sendmail path
+sed -r 's#/usr/lib/sendmail#/usr/bin/sendmail#g' -i \
+hphp/runtime/base/runtime-option.cpp
+
+rm -rf third-party
+ln -s "$srcdir"/hhvm-third-party-$_thirdparty_commit third-party
+
+cd third-party/folly
+rm -rf src
+ln -s "$srcdir"/folly-$_folly_commit src
+patch -d src -p1 -i "$srcdir"/libstdcxx-dual-abi.patch
+
+cd ../thrift
+rm -rf src
+ln -s "$srcdir"/fbthrift-$_thrift_commit src
+
+cd ../proxygen
+rm -rf src
+ln -s "$srcdir"/proxygen-$_proxygen_commit src
+
+cd 

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

2015-10-20 Thread Evangelos Foutras
Date: Tuesday, October 20, 2015 @ 09:42:40
  Author: foutrelis
Revision: 144419

boost 1.59.0 rebuild

Modified:
  hhvm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-10-20 07:40:26 UTC (rev 144418)
+++ PKGBUILD2015-10-20 07:42:40 UTC (rev 144419)
@@ -4,7 +4,7 @@
 
 pkgname=hhvm
 pkgver=3.10.0
-pkgrel=1
+pkgrel=2
 
 _thirdparty_commit=25006693fa6f5f09123d915225bc1b240102dfd6
 _folly_commit=3a6c9d3896badace174e6933c0a764f740e921c8


[arch-commits] Commit in calligra/repos (34 files)

2015-10-20 Thread Florian Pritz
Date: Tuesday, October 20, 2015 @ 10:15:00
  Author: bluewind
Revision: 249539

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

Added:
  calligra/repos/staging-i686/
  calligra/repos/staging-i686/PKGBUILD
(from rev 249538, calligra/trunk/PKGBUILD)
  calligra/repos/staging-i686/calligra-braindump.install
(from rev 249538, calligra/trunk/calligra-braindump.install)
  calligra/repos/staging-i686/calligra-extras.install
(from rev 249538, calligra/trunk/calligra-extras.install)
  calligra/repos/staging-i686/calligra-filters.install
(from rev 249538, calligra/trunk/calligra-filters.install)
  calligra/repos/staging-i686/calligra-flow.install
(from rev 249538, calligra/trunk/calligra-flow.install)
  calligra/repos/staging-i686/calligra-gemini.install
(from rev 249538, calligra/trunk/calligra-gemini.install)
  calligra/repos/staging-i686/calligra-karbon.install
(from rev 249538, calligra/trunk/calligra-karbon.install)
  calligra/repos/staging-i686/calligra-kexi.install
(from rev 249538, calligra/trunk/calligra-kexi.install)
  calligra/repos/staging-i686/calligra-krita.install
(from rev 249538, calligra/trunk/calligra-krita.install)
  calligra/repos/staging-i686/calligra-plan.install
(from rev 249538, calligra/trunk/calligra-plan.install)
  calligra/repos/staging-i686/calligra-plugins.install
(from rev 249538, calligra/trunk/calligra-plugins.install)
  calligra/repos/staging-i686/calligra-sheets.install
(from rev 249538, calligra/trunk/calligra-sheets.install)
  calligra/repos/staging-i686/calligra-stage.install
(from rev 249538, calligra/trunk/calligra-stage.install)
  calligra/repos/staging-i686/calligra-words.install
(from rev 249538, calligra/trunk/calligra-words.install)
  calligra/repos/staging-i686/calligra.install
(from rev 249538, calligra/trunk/calligra.install)
  calligra/repos/staging-i686/libwps-0.4.patch
(from rev 249538, calligra/trunk/libwps-0.4.patch)
  calligra/repos/staging-x86_64/
  calligra/repos/staging-x86_64/PKGBUILD
(from rev 249538, calligra/trunk/PKGBUILD)
  calligra/repos/staging-x86_64/calligra-braindump.install
(from rev 249538, calligra/trunk/calligra-braindump.install)
  calligra/repos/staging-x86_64/calligra-extras.install
(from rev 249538, calligra/trunk/calligra-extras.install)
  calligra/repos/staging-x86_64/calligra-filters.install
(from rev 249538, calligra/trunk/calligra-filters.install)
  calligra/repos/staging-x86_64/calligra-flow.install
(from rev 249538, calligra/trunk/calligra-flow.install)
  calligra/repos/staging-x86_64/calligra-gemini.install
(from rev 249538, calligra/trunk/calligra-gemini.install)
  calligra/repos/staging-x86_64/calligra-karbon.install
(from rev 249538, calligra/trunk/calligra-karbon.install)
  calligra/repos/staging-x86_64/calligra-kexi.install
(from rev 249538, calligra/trunk/calligra-kexi.install)
  calligra/repos/staging-x86_64/calligra-krita.install
(from rev 249538, calligra/trunk/calligra-krita.install)
  calligra/repos/staging-x86_64/calligra-plan.install
(from rev 249538, calligra/trunk/calligra-plan.install)
  calligra/repos/staging-x86_64/calligra-plugins.install
(from rev 249538, calligra/trunk/calligra-plugins.install)
  calligra/repos/staging-x86_64/calligra-sheets.install
(from rev 249538, calligra/trunk/calligra-sheets.install)
  calligra/repos/staging-x86_64/calligra-stage.install
(from rev 249538, calligra/trunk/calligra-stage.install)
  calligra/repos/staging-x86_64/calligra-words.install
(from rev 249538, calligra/trunk/calligra-words.install)
  calligra/repos/staging-x86_64/calligra.install
(from rev 249538, calligra/trunk/calligra.install)
  calligra/repos/staging-x86_64/libwps-0.4.patch
(from rev 249538, calligra/trunk/libwps-0.4.patch)

---+
 staging-i686/PKGBUILD |  249 
 staging-i686/calligra-braindump.install   |   12 +
 staging-i686/calligra-extras.install  |   11 +
 staging-i686/calligra-filters.install |   12 +
 staging-i686/calligra-flow.install|   12 +
 staging-i686/calligra-gemini.install  |   12 +
 staging-i686/calligra-karbon.install  |   12 +
 staging-i686/calligra-kexi.install|   12 +
 staging-i686/calligra-krita.install   |   13 +
 staging-i686/calligra-plan.install|   12 +
 staging-i686/calligra-plugins.install |   11 +
 staging-i686/calligra-sheets.install  |   12 +
 staging-i686/calligra-stage.install   |   12 +
 staging-i686/calligra-words.install   |   12 +
 staging-i686/calligra.install |   11 +
 staging-i686/libwps-0.4.patch |   51 +
 staging-x86_64/PKGBUILD   |  249 
 staging-x86_64/calligra-braindump.install |   12 +
 staging-x86_64/calligra-extras.install|   11 +
 staging-x86_64/calligra-filters.install   |   12 +
 

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

2015-10-20 Thread Evangelos Foutras
Date: Tuesday, October 20, 2015 @ 10:20:04
  Author: foutrelis
Revision: 144424

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

Added:
  gnuradio-fcdproplus/repos/community-staging-i686/
  gnuradio-fcdproplus/repos/community-staging-i686/88-fcdproplus.rules
(from rev 144423, gnuradio-fcdproplus/trunk/88-fcdproplus.rules)
  gnuradio-fcdproplus/repos/community-staging-i686/PKGBUILD
(from rev 144423, gnuradio-fcdproplus/trunk/PKGBUILD)
  gnuradio-fcdproplus/repos/community-staging-x86_64/
  gnuradio-fcdproplus/repos/community-staging-x86_64/88-fcdproplus.rules
(from rev 144423, gnuradio-fcdproplus/trunk/88-fcdproplus.rules)
  gnuradio-fcdproplus/repos/community-staging-x86_64/PKGBUILD
(from rev 144423, gnuradio-fcdproplus/trunk/PKGBUILD)

--+
 community-staging-i686/88-fcdproplus.rules   |9 ++
 community-staging-i686/PKGBUILD  |   37 +
 community-staging-x86_64/88-fcdproplus.rules |9 ++
 community-staging-x86_64/PKGBUILD|   37 +
 4 files changed, 92 insertions(+)

Copied: gnuradio-fcdproplus/repos/community-staging-i686/88-fcdproplus.rules 
(from rev 144423, gnuradio-fcdproplus/trunk/88-fcdproplus.rules)
===
--- community-staging-i686/88-fcdproplus.rules  (rev 0)
+++ community-staging-i686/88-fcdproplus.rules  2015-10-20 08:20:04 UTC (rev 
144424)
@@ -0,0 +1,9 @@
+# Udev rules for the Funcube Dongle Pro (0xfb56) and Pro+ (0xfb31)
+
+# HIDAPI/libusb:
+SUBSYSTEMS=="usb" ATTRS{idVendor}=="04d8" ATTRS{idProduct}=="fb56" MODE:="0666"
+SUBSYSTEMS=="usb" ATTRS{idVendor}=="04d8" ATTRS{idProduct}=="fb31" MODE:="0666"
+
+# HIDAPI/hidraw:
+KERNEL=="hidraw*", ATTRS{busnum}=="1", ATTRS{idVendor}=="04d8", 
ATTRS{idProduct}=="fb56", MODE="0666"
+KERNEL=="hidraw*", ATTRS{busnum}=="1", ATTRS{idVendor}=="04d8", 
ATTRS{idProduct}=="fb31", MODE="0666"

Copied: gnuradio-fcdproplus/repos/community-staging-i686/PKGBUILD (from rev 
144423, gnuradio-fcdproplus/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-10-20 08:20:04 UTC (rev 144424)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Kyle Keen 
+# Contributor: Dominik Heidler 
+pkgname=gnuradio-fcdproplus
+_pkgname=gr-fcdproplus
+pkgver=3.7.4
+pkgrel=16
+_tag=v3.7_hidraw
+pkgdesc="GNU Radio source block for Funcube Dongle Pro +"
+arch=('i686' 'x86_64')
+url="https://github.com/dl1ksv/gr-fcdproplus;
+license=('GPL3')
+depends=('gnuradio' 'libusb' 'alsa-lib' 'boost-libs')
+makedepends=('git' 'cmake' 'boost' 'swig')
+replaces=('gr-fcdproplus')
+source=("git://github.com/dl1ksv/gr-fcdproplus.git#tag=$_tag"
+"88-fcdproplus.rules")
+md5sums=('SKIP'
+ '465e12c454c6a22ebec9849181af7bdc')
+
+build() {
+  cd "$srcdir/$_pkgname"
+  mkdir build
+  cd build
+  cmake \
+-DPYTHON_EXECUTABLE=$(which python2) \
+-DPYTHON_INCLUDE_DIR=$(echo /usr/include/python2*) \
+-DPYTHON_LIBRARY=$(echo /usr/lib/libpython2.*.so) \
+-DCMAKE_INSTALL_PREFIX=/usr ../
+  make
+}
+
+package() {
+  cd "$srcdir/$_pkgname/build/"
+  make DESTDIR="${pkgdir}" install
+  install -Dm644 "$srcdir/88-fcdproplus.rules" 
"$pkgdir/etc/udev/rules.d/88-fcdproplus.rules"
+}

Copied: gnuradio-fcdproplus/repos/community-staging-x86_64/88-fcdproplus.rules 
(from rev 144423, gnuradio-fcdproplus/trunk/88-fcdproplus.rules)
===
--- community-staging-x86_64/88-fcdproplus.rules
(rev 0)
+++ community-staging-x86_64/88-fcdproplus.rules2015-10-20 08:20:04 UTC 
(rev 144424)
@@ -0,0 +1,9 @@
+# Udev rules for the Funcube Dongle Pro (0xfb56) and Pro+ (0xfb31)
+
+# HIDAPI/libusb:
+SUBSYSTEMS=="usb" ATTRS{idVendor}=="04d8" ATTRS{idProduct}=="fb56" MODE:="0666"
+SUBSYSTEMS=="usb" ATTRS{idVendor}=="04d8" ATTRS{idProduct}=="fb31" MODE:="0666"
+
+# HIDAPI/hidraw:
+KERNEL=="hidraw*", ATTRS{busnum}=="1", ATTRS{idVendor}=="04d8", 
ATTRS{idProduct}=="fb56", MODE="0666"
+KERNEL=="hidraw*", ATTRS{busnum}=="1", ATTRS{idVendor}=="04d8", 
ATTRS{idProduct}=="fb31", MODE="0666"

Copied: gnuradio-fcdproplus/repos/community-staging-x86_64/PKGBUILD (from rev 
144423, gnuradio-fcdproplus/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-10-20 08:20:04 UTC (rev 144424)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Kyle Keen 
+# Contributor: Dominik Heidler 
+pkgname=gnuradio-fcdproplus
+_pkgname=gr-fcdproplus
+pkgver=3.7.4
+pkgrel=16
+_tag=v3.7_hidraw
+pkgdesc="GNU Radio source block for Funcube Dongle Pro +"

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

2015-10-20 Thread Evangelos Foutras
Date: Tuesday, October 20, 2015 @ 10:19:56
  Author: foutrelis
Revision: 144423

boost 1.59.0 rebuild

Modified:
  gnuradio-fcdproplus/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-10-20 08:06:02 UTC (rev 144422)
+++ PKGBUILD2015-10-20 08:19:56 UTC (rev 144423)
@@ -4,7 +4,7 @@
 pkgname=gnuradio-fcdproplus
 _pkgname=gr-fcdproplus
 pkgver=3.7.4
-pkgrel=15
+pkgrel=16
 _tag=v3.7_hidraw
 pkgdesc="GNU Radio source block for Funcube Dongle Pro +"
 arch=('i686' 'x86_64')


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

2015-10-20 Thread Florian Pritz
Date: Tuesday, October 20, 2015 @ 10:20:15
  Author: bluewind
Revision: 144426

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

Added:
  gnuradio-iqbal/repos/community-staging-i686/
  gnuradio-iqbal/repos/community-staging-i686/PKGBUILD
(from rev 144425, gnuradio-iqbal/trunk/PKGBUILD)
  gnuradio-iqbal/repos/community-staging-x86_64/
  gnuradio-iqbal/repos/community-staging-x86_64/PKGBUILD
(from rev 144425, gnuradio-iqbal/trunk/PKGBUILD)

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

Copied: gnuradio-iqbal/repos/community-staging-i686/PKGBUILD (from rev 144425, 
gnuradio-iqbal/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-10-20 08:20:15 UTC (rev 144426)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Kyle Keen 
+# Contributor: Dominik Heidler 
+pkgname=gnuradio-iqbal
+_pkgname=gr-iqbal
+pkgver=0.37.2
+pkgrel=11
+pkgdesc="Gnuradio I/Q balancing"
+arch=('i686' 'x86_64')
+url="http://cgit.osmocom.org/gr-iqbal/;
+license=('GPL')
+depends=('gnuradio' 'fftw')
+replaces=('gr-iqbal')
+makedepends=('git' 'cmake' 'boost' 'swig')
+source=("git://git.osmocom.org/gr-iqbal/#tag=v$pkgver")
+md5sums=('SKIP')
+
+build() {
+  cd "$srcdir/$_pkgname"
+  git submodule init
+  git submodule update
+  sed -i 's/LIBOSMODSP_LIBRARIES ""/LIBOSMODSP_LIBRARIES ${FFTW3F_LIBRARIES}/' 
CMakeLists.txt 
+  mkdir build
+  cd build
+  cmake \
+-Wno-dev \
+-DCMAKE_BUILD_TYPE=Release \
+-DPYTHON_EXECUTABLE=$(which python2) \
+-DPYTHON_INCLUDE_DIR=$(echo /usr/include/python2*) \
+-DPYTHON_LIBRARY=$(echo /usr/lib/libpython2.*.so) \
+-DCMAKE_LIBRARY_PATH=/usr/lib \
+-DCMAKE_INSTALL_PREFIX=/usr ../
+  make
+}
+
+package() {
+  cd "$srcdir/$_pkgname/build/"
+  make DESTDIR="${pkgdir}" install
+}

Copied: gnuradio-iqbal/repos/community-staging-x86_64/PKGBUILD (from rev 
144425, gnuradio-iqbal/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-10-20 08:20:15 UTC (rev 144426)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Kyle Keen 
+# Contributor: Dominik Heidler 
+pkgname=gnuradio-iqbal
+_pkgname=gr-iqbal
+pkgver=0.37.2
+pkgrel=11
+pkgdesc="Gnuradio I/Q balancing"
+arch=('i686' 'x86_64')
+url="http://cgit.osmocom.org/gr-iqbal/;
+license=('GPL')
+depends=('gnuradio' 'fftw')
+replaces=('gr-iqbal')
+makedepends=('git' 'cmake' 'boost' 'swig')
+source=("git://git.osmocom.org/gr-iqbal/#tag=v$pkgver")
+md5sums=('SKIP')
+
+build() {
+  cd "$srcdir/$_pkgname"
+  git submodule init
+  git submodule update
+  sed -i 's/LIBOSMODSP_LIBRARIES ""/LIBOSMODSP_LIBRARIES ${FFTW3F_LIBRARIES}/' 
CMakeLists.txt 
+  mkdir build
+  cd build
+  cmake \
+-Wno-dev \
+-DCMAKE_BUILD_TYPE=Release \
+-DPYTHON_EXECUTABLE=$(which python2) \
+-DPYTHON_INCLUDE_DIR=$(echo /usr/include/python2*) \
+-DPYTHON_LIBRARY=$(echo /usr/lib/libpython2.*.so) \
+-DCMAKE_LIBRARY_PATH=/usr/lib \
+-DCMAKE_INSTALL_PREFIX=/usr ../
+  make
+}
+
+package() {
+  cd "$srcdir/$_pkgname/build/"
+  make DESTDIR="${pkgdir}" install
+}


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

2015-10-20 Thread Florian Pritz
Date: Tuesday, October 20, 2015 @ 10:20:10
  Author: bluewind
Revision: 144425

boost 1.59.0 rebuild

Modified:
  gnuradio-iqbal/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-10-20 08:20:04 UTC (rev 144424)
+++ PKGBUILD2015-10-20 08:20:10 UTC (rev 144425)
@@ -4,7 +4,7 @@
 pkgname=gnuradio-iqbal
 _pkgname=gr-iqbal
 pkgver=0.37.2
-pkgrel=10
+pkgrel=11
 pkgdesc="Gnuradio I/Q balancing"
 arch=('i686' 'x86_64')
 url="http://cgit.osmocom.org/gr-iqbal/;


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

2015-10-20 Thread Evangelos Foutras
Date: Tuesday, October 20, 2015 @ 08:14:29
  Author: foutrelis
Revision: 144401

boost 1.59.0 rebuild

Modified:
  openscad/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-10-20 06:05:21 UTC (rev 144400)
+++ PKGBUILD2015-10-20 06:14:29 UTC (rev 144401)
@@ -6,7 +6,7 @@
 pkgname=openscad
 pkgver=2015.03.01
 _ver=2015.03-1  # hopefully -X is temporary
-pkgrel=5
+pkgrel=6
 pkgdesc="The programmers solid 3D CAD modeller"
 url="http://openscad.org/;
 arch=('i686' 'x86_64')


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

2015-10-20 Thread Evangelos Foutras
Date: Tuesday, October 20, 2015 @ 08:14:38
  Author: foutrelis
Revision: 144402

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

Added:
  openscad/repos/community-staging-i686/
  openscad/repos/community-staging-i686/CHANGELOG
(from rev 144401, openscad/trunk/CHANGELOG)
  openscad/repos/community-staging-i686/PKGBUILD
(from rev 144401, openscad/trunk/PKGBUILD)
  openscad/repos/community-staging-i686/openscad.install
(from rev 144401, openscad/trunk/openscad.install)
  openscad/repos/community-staging-x86_64/
  openscad/repos/community-staging-x86_64/CHANGELOG
(from rev 144401, openscad/trunk/CHANGELOG)
  openscad/repos/community-staging-x86_64/PKGBUILD
(from rev 144401, openscad/trunk/PKGBUILD)
  openscad/repos/community-staging-x86_64/openscad.install
(from rev 144401, openscad/trunk/openscad.install)

---+
 community-staging-i686/CHANGELOG  |   86 
 community-staging-i686/PKGBUILD   |   54 +
 community-staging-i686/openscad.install   |   13 
 community-staging-x86_64/CHANGELOG|   86 
 community-staging-x86_64/PKGBUILD |   54 +
 community-staging-x86_64/openscad.install |   13 
 6 files changed, 306 insertions(+)

Copied: openscad/repos/community-staging-i686/CHANGELOG (from rev 144401, 
openscad/trunk/CHANGELOG)
===
--- community-staging-i686/CHANGELOG(rev 0)
+++ community-staging-i686/CHANGELOG2015-10-20 06:14:38 UTC (rev 144402)
@@ -0,0 +1,86 @@
+2015-10-19 Kyle Keen 
+   * 2015.03.01-5
+   - No changes
+   - Rebuild for cgal-4.7
+
+2015-10-02 foutrelis
+   * 2015.03.01-4
+   - No changes
+
+2015-04-29 Kyle Keen 
+   * 2015.03.01-3
+   - No changes
+   - Rebuild for qscintilla-2.9-1
+
+2015-04-22 Kyle Keen 
+   * 2015.03.01-2
+   - No changes
+   - Rebuild for boost-1.58.0-1
+
+2015-04-22 Kyle Keen 
+   * 2015.03.01-1
+   - Bugfix release
+
+2015-04-11 Kyle Keen 
+   * 2015.03-2
+   - No changes
+   - Rebuild for cgal-4.6-1
+
+2015-03-10 Kyle Keen 
+   * 2015.03-1
+   - New release
+   - Now uses qscintilla for the editor
+
+2014-11-04 Kyle Keen 
+   * 2014.03-5
+   - No changes
+   - Rebuild for boost-1.57.0-1
+
+2014-08-18 Kyle Keen 
+   * 2014.03-4
+   - No changes
+   - Rebuild for boost-1.56.0-1
+
+2014-08-18 Kyle Keen 
+   * 2014.03-3
+   - No changes
+   - Rebuild for glew-1.11.0-1
+
+2014-08-12 Kyle Keen 
+   * 2014.03-2
+   - No changes
+   - Rebuild for boost-1.56.0-1
+
+2014-03-09 Kyle Keen 
+
+   * 2014.03-1
+   - New release
+   - MIME associations
+
+2014-02-10 Kyle Keen 
+
+   * 2013.06-3
+   - Moved package to [community]
+   - Explicit boost depends
+   - Use official resources
+
+2014-02-07 Chirantan Ekbote 
+
+   * 2013.06-2
+   - Update makedepends since eigen3 has now become eigen in [extra]
+
+2013-06-19 Chirantan Ekbote 
+
+   * 2013.06-1 :
+   - Updated to version 2013.06
+
+2013-03-01 Chirantan Ekbote 
+
+   * 2013.01-2 :
+   Dependency qt replaced with qt4
+
+2013-01-23 Chirantan Ekbote 
+
+   * 2013.01-1 :
+   New upstream release.
+   Dependency eigen2 repaced by eigen3

Copied: openscad/repos/community-staging-i686/PKGBUILD (from rev 144401, 
openscad/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-10-20 06:14:38 UTC (rev 144402)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Kyle Keen 
+# Contributor: Chirantan Ekbote 
+# Contributor: Eric Anderson 
+# Contributor: Pierre DOUCET 
+pkgname=openscad
+pkgver=2015.03.01
+_ver=2015.03-1  # hopefully -X is temporary
+pkgrel=6
+pkgdesc="The programmers solid 3D CAD modeller"
+url="http://openscad.org/;
+arch=('i686' 'x86_64')
+license=('GPL2')
+install=openscad.install
+changelog=CHANGELOG
+depends=('qt4' 'qscintilla' 'cgal' 'opencsg' 'boost-libs' 'shared-mime-info')
+makedepends=('eigen' 'boost' 'imagemagick')
+# full tests need imagemagick and an X11 or framebuffer session
+checkdepends=('cmake' 'xproto' 'libx11' 'python2')
+source=("http://files.openscad.org/openscad-$_ver.src.tar.gz;)
+md5sums=('c5994220078f5f5c13984da304e4a2fe')
+
+build() {
+cd "$srcdir/$pkgname-$_ver"
+qmake-qt4 PREFIX="/usr"
+make
+convert 

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

2015-10-20 Thread Evangelos Foutras
Date: Tuesday, October 20, 2015 @ 08:55:15
  Author: foutrelis
Revision: 144410

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

Added:
  gnuradio/repos/community-staging-i686/
  gnuradio/repos/community-staging-i686/21-fcd.rules
(from rev 144409, gnuradio/trunk/21-fcd.rules)
  gnuradio/repos/community-staging-i686/PKGBUILD
(from rev 144409, gnuradio/trunk/PKGBUILD)
  gnuradio/repos/community-staging-i686/gnuradio-companion.install
(from rev 144409, gnuradio/trunk/gnuradio-companion.install)
  gnuradio/repos/community-staging-i686/gnuradio.install
(from rev 144409, gnuradio/trunk/gnuradio.install)
  gnuradio/repos/community-staging-x86_64/
  gnuradio/repos/community-staging-x86_64/21-fcd.rules
(from rev 144409, gnuradio/trunk/21-fcd.rules)
  gnuradio/repos/community-staging-x86_64/PKGBUILD
(from rev 144409, gnuradio/trunk/PKGBUILD)
  gnuradio/repos/community-staging-x86_64/gnuradio-companion.install
(from rev 144409, gnuradio/trunk/gnuradio-companion.install)
  gnuradio/repos/community-staging-x86_64/gnuradio.install
(from rev 144409, gnuradio/trunk/gnuradio.install)

-+
 community-staging-i686/21-fcd.rules |9 +
 community-staging-i686/PKGBUILD |  104 ++
 community-staging-i686/gnuradio-companion.install   |   15 ++
 community-staging-i686/gnuradio.install |   53 +
 community-staging-x86_64/21-fcd.rules   |9 +
 community-staging-x86_64/PKGBUILD   |  104 ++
 community-staging-x86_64/gnuradio-companion.install |   15 ++
 community-staging-x86_64/gnuradio.install   |   53 +
 8 files changed, 362 insertions(+)

Copied: gnuradio/repos/community-staging-i686/21-fcd.rules (from rev 144409, 
gnuradio/trunk/21-fcd.rules)
===
--- community-staging-i686/21-fcd.rules (rev 0)
+++ community-staging-i686/21-fcd.rules 2015-10-20 06:55:15 UTC (rev 144410)
@@ -0,0 +1,9 @@
+# Udev rules for the Funcube Dongle Pro (0xfb56) and Pro+ (0xfb31)
+
+# HIDAPI/libusb:
+SUBSYSTEMS=="usb" ATTRS{idVendor}=="04d8" ATTRS{idProduct}=="fb56" MODE:="0666"
+SUBSYSTEMS=="usb" ATTRS{idVendor}=="04d8" ATTRS{idProduct}=="fb31" MODE:="0666"
+
+# HIDAPI/hidraw:
+KERNEL=="hidraw*", ATTRS{busnum}=="1", ATTRS{idVendor}=="04d8", 
ATTRS{idProduct}=="fb56", MODE="0666"
+KERNEL=="hidraw*", ATTRS{busnum}=="1", ATTRS{idVendor}=="04d8", 
ATTRS{idProduct}=="fb31", MODE="0666"

Copied: gnuradio/repos/community-staging-i686/PKGBUILD (from rev 144409, 
gnuradio/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-10-20 06:55:15 UTC (rev 144410)
@@ -0,0 +1,104 @@
+# $Id$
+# Maintainer: Kyle Keen 
+# Contributor: Dominik Heidler 
+# Contributor: Jonatan Sastre 
+pkgbase=gnuradio
+pkgname=(gnuradio gnuradio-companion)
+pkgver=3.7.8
+pkgrel=2
+pkgdesc="General purpose DSP and SDR toolkit.  With drivers for usrp and fcd."
+arch=('i686' 'x86_64')
+url="http://gnuradio.org;
+license=('GPL')
+depends=('fftw' 'python2-numpy' 'cppunit' 'gsl' 'blas' 'boost-libs>=1.53' 
'libusbx' 'portaudio' 'libuhd' 'zeromq')
+makedepends=('boost' 'cmake' 'python2-lxml' 'python2-cheetah' 'glu' 'swig'
+'pygtk' 'wxpython' 'python2-pyqwt' 'qwtplot3d')
+install=gnuradio.install
+
+# todo
+# split the gui components?
+# build doxygen docs?
+# gr-video-sdl ?
+# icons
+
+# comedilib: gr-comedi
+# zeroc-ice: gr-ctrlport
+# doxygen: C++ autogenerated documentation
+# python2-sphinx: Python autogenerated documentation
+
+# secret release directory
+#source=("http://s3-dist.gnuradio.org/gnuradio-$pkgver.tar.gz;
+source=("http://gnuradio.org/releases/$pkgbase/$pkgbase-$pkgver.tar.gz;
+"21-fcd.rules")
+md5sums=('afc83b06136537071397007c3243c02a'
+ '465e12c454c6a22ebec9849181af7bdc')
+
+build() {
+  export PYTHON=python2
+  cd "$srcdir/$pkgbase-$pkgver"
+  sed -i -e "s|GR_PKG_LIBEXEC_DIR|GR_RUNTIME_DIR|" 
grc/freedesktop/CMakeLists.txt
+  sed -i -e "s|/qwt$|/qwt5|" -e "s| qwt | qwt5 |" cmake/Modules/FindQwt.cmake
+  sed -i -e "s| sphinx-build$| sphinx-build2|" cmake/Modules/FindSphinx.cmake
+  msg "Starting build."
+  mkdir -p build
+  cd build
+  cmake \
+-DPYTHON_EXECUTABLE=$(which python2) \
+-DPYTHON_INCLUDE_DIR=$(echo /usr/include/python2*) \
+-DPYTHON_LIBRARY=$(echo /usr/lib/libpython2.*.so) \
+-DENABLE_GRC=ON \
+-DENABLE_GR_WXGUI=ON \
+-DENABLE_GR_QTGUI=ON \
+-DCMAKE_INSTALL_PREFIX=/usr -Wno-dev ../
+  make
+}
+
+check() {
+  cd "$srcdir/$pkgbase-$pkgver/build"
+  export PYTHON=python2
+  #make test
+}
+
+package_gnuradio() {
+  optdepends=('boost: gr_modtool'
+  'swig: gr_modtool'
+  'cmake: 

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

2015-10-20 Thread Evangelos Foutras
Date: Tuesday, October 20, 2015 @ 08:55:04
  Author: foutrelis
Revision: 144409

boost 1.59.0 rebuild

Modified:
  gnuradio/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-10-20 06:30:20 UTC (rev 144408)
+++ PKGBUILD2015-10-20 06:55:04 UTC (rev 144409)
@@ -5,7 +5,7 @@
 pkgbase=gnuradio
 pkgname=(gnuradio gnuradio-companion)
 pkgver=3.7.8
-pkgrel=1
+pkgrel=2
 pkgdesc="General purpose DSP and SDR toolkit.  With drivers for usrp and fcd."
 arch=('i686' 'x86_64')
 url="http://gnuradio.org;


[arch-commits] Commit in deepin-movie/repos (3 files)

2015-10-20 Thread Felix Yan
Date: Tuesday, October 20, 2015 @ 09:25:06
  Author: fyan
Revision: 144414

archrelease: copy trunk to community-any

Added:
  deepin-movie/repos/community-any/
  deepin-movie/repos/community-any/PKGBUILD
(from rev 144413, deepin-movie/trunk/PKGBUILD)
  deepin-movie/repos/community-any/deepin-movie.install
(from rev 144413, deepin-movie/trunk/deepin-movie.install)

--+
 PKGBUILD |   38 ++
 deepin-movie.install |   11 +++
 2 files changed, 49 insertions(+)

Copied: deepin-movie/repos/community-any/PKGBUILD (from rev 144413, 
deepin-movie/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2015-10-20 07:25:06 UTC (rev 144414)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=deepin-movie
+pkgver=2.3.0.20151020
+_commit=640ea9471b4d911728a9742bdae78a785f323b15
+pkgrel=1
+pkgdesc='Movie player based on QtAV'
+arch=('any')
+url="https://gitcafe.com/Deepin/deepin-movie;
+license=('GPL3')
+depends=('python2-pyqt5' 'qtav' 'mediainfo' 'deepin-menu' 'python2-dbus'
+ 'python2-peewee' 'python2-pillow' 'python2-peewee' 'python2-magic'
+ 'deepin-qml-widgets' 'python2-xpybutil' 'python2-deepin-utils'
+ 'python2-requests' 'python2-bottle' 'dleyna-renderer')
+makedepends=('deepin-gettext-tools' 'git')
+groups=('deepin-extra')
+install="${pkgname}.install"
+source=("git+https://github.com/linuxdeepin/deepin-movie.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+prepare() {
+  cd deepin-movie
+
+  # fix python version
+  find -iname "*.py" | xargs sed -i 's=\(^#! */usr/bin.*\)python *$=\1python2='
+}
+
+build() {
+  cd deepin-movie
+  python2 configure.py
+  deepin-generate-mo locale/locale_config.ini
+}
+
+package() {
+  cd deepin-movie
+  make DESTDIR="${pkgdir}" PREFIX="/usr" install
+}

Copied: deepin-movie/repos/community-any/deepin-movie.install (from rev 144413, 
deepin-movie/trunk/deepin-movie.install)
===
--- community-any/deepin-movie.install  (rev 0)
+++ community-any/deepin-movie.install  2015-10-20 07:25:06 UTC (rev 144414)
@@ -0,0 +1,11 @@
+post_install() {
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install "$1"
+}
+
+post_remove() {
+  post_install "$1"
+}


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

2015-10-20 Thread Evangelos Foutras
Date: Tuesday, October 20, 2015 @ 09:38:14
  Author: foutrelis
Revision: 144415

boost 1.59.0 rebuild

Modified:
  qbittorrent/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-10-20 07:25:06 UTC (rev 144414)
+++ PKGBUILD2015-10-20 07:38:14 UTC (rev 144415)
@@ -8,7 +8,7 @@
 
 pkgname=qbittorrent
 pkgver=3.2.4
-pkgrel=1
+pkgrel=2
 pkgdesc="A bittorrent client written in C++ / Qt4 using the good libtorrent 
library"
 arch=('i686' 'x86_64')
 url="http://www.qbittorrent.org;


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

2015-10-20 Thread Felix Yan
Date: Tuesday, October 20, 2015 @ 10:05:33
  Author: fyan
Revision: 144421

boost 1.59.0 rebuild

Modified:
  cegui/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-10-20 07:42:52 UTC (rev 144420)
+++ PKGBUILD2015-10-20 08:05:33 UTC (rev 144421)
@@ -7,7 +7,7 @@
 pkgname=cegui
 pkgver=0.8.4
 _tag=0-8-4
-pkgrel=9
+pkgrel=10
 pkgdesc="A free library providing windowing and widgets for graphics 
APIs/engines"
 arch=('i686' 'x86_64')
 url="http://cegui.org.uk;


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

2015-10-20 Thread Felix Yan
Date: Tuesday, October 20, 2015 @ 10:06:02
  Author: fyan
Revision: 144422

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

Added:
  cegui/repos/community-staging-i686/
  cegui/repos/community-staging-i686/PKGBUILD
(from rev 144421, cegui/trunk/PKGBUILD)
  cegui/repos/community-staging-x86_64/
  cegui/repos/community-staging-x86_64/PKGBUILD
(from rev 144421, cegui/trunk/PKGBUILD)

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

Copied: cegui/repos/community-staging-i686/PKGBUILD (from rev 144421, 
cegui/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-10-20 08:06:02 UTC (rev 144422)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Juergen Hoetzel  
+# Contributor: William Rea , 
+# Contributor: Bjorn Lindeijer 
+
+pkgname=cegui
+pkgver=0.8.4
+_tag=0-8-4
+pkgrel=10
+pkgdesc="A free library providing windowing and widgets for graphics 
APIs/engines"
+arch=('i686' 'x86_64')
+url="http://cegui.org.uk;
+license=("MIT")
+depends=('pcre' 'glew' 'expat' 'freetype2' 'libxml2' 'devil' 'freeglut' 
'lua51' 'silly')
+makedepends=('cmake' 'python2' 'doxygen' 'ogre' 'gtk2' 'boost' 'graphviz' 
'irrlicht' 'glm' 'mesa' 'tolua++' 'mercurial')
+optdepends=("python2: python bindings"
+"ogre: ogre module"
+"gtk2: gtk2 module"
+"irrlicht: irrlicht module")
+source=("hg+https://bitbucket.org/cegui/cegui#tag=v${_tag};)
+md5sums=('SKIP')
+
+build() {
+  cd "$srcdir/cegui"
+
+  sed -i "s/lib64/lib/g" CMakeLists.txt
+
+  [[ -d build ]] && rm -r build
+  mkdir build && cd build
+
+  cmake .. \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DCEGUI_LIB_INSTALL_DIR=lib \
+  -DCEGUI_BUILD_PYTHON_MODULES=ON \
+  -DPYTHON_EXECUTABLE=/usr/bin/python2
+
+  make
+  make html
+}
+
+package() {
+  cd "$srcdir/cegui"/build
+ 
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm644 ../COPYING "${pkgdir}/usr/share/licenses/$pkgname/LICENSE"
+}

Copied: cegui/repos/community-staging-x86_64/PKGBUILD (from rev 144421, 
cegui/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-10-20 08:06:02 UTC (rev 144422)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Juergen Hoetzel  
+# Contributor: William Rea , 
+# Contributor: Bjorn Lindeijer 
+
+pkgname=cegui
+pkgver=0.8.4
+_tag=0-8-4
+pkgrel=10
+pkgdesc="A free library providing windowing and widgets for graphics 
APIs/engines"
+arch=('i686' 'x86_64')
+url="http://cegui.org.uk;
+license=("MIT")
+depends=('pcre' 'glew' 'expat' 'freetype2' 'libxml2' 'devil' 'freeglut' 
'lua51' 'silly')
+makedepends=('cmake' 'python2' 'doxygen' 'ogre' 'gtk2' 'boost' 'graphviz' 
'irrlicht' 'glm' 'mesa' 'tolua++' 'mercurial')
+optdepends=("python2: python bindings"
+"ogre: ogre module"
+"gtk2: gtk2 module"
+"irrlicht: irrlicht module")
+source=("hg+https://bitbucket.org/cegui/cegui#tag=v${_tag};)
+md5sums=('SKIP')
+
+build() {
+  cd "$srcdir/cegui"
+
+  sed -i "s/lib64/lib/g" CMakeLists.txt
+
+  [[ -d build ]] && rm -r build
+  mkdir build && cd build
+
+  cmake .. \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DCEGUI_LIB_INSTALL_DIR=lib \
+  -DCEGUI_BUILD_PYTHON_MODULES=ON \
+  -DPYTHON_EXECUTABLE=/usr/bin/python2
+
+  make
+  make html
+}
+
+package() {
+  cd "$srcdir/cegui"/build
+ 
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm644 ../COPYING "${pkgdir}/usr/share/licenses/$pkgname/LICENSE"
+}


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

2015-10-20 Thread Florian Pritz
Date: Tuesday, October 20, 2015 @ 10:14:32
  Author: bluewind
Revision: 249538

boost 1.59.0 rebuild

Modified:
  calligra/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-10-20 07:21:12 UTC (rev 249537)
+++ PKGBUILD2015-10-20 08:14:32 UTC (rev 249538)
@@ -21,7 +21,7 @@
  'calligra-stage'
  'calligra-words')
 pkgver=2.9.8
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 url='http://www.calligra-suite.org/'
 license=('FDL1.2' 'GPL2' 'LGPL')


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

2015-10-20 Thread Felix Yan
Date: Tuesday, October 20, 2015 @ 10:28:30
  Author: fyan
Revision: 144428

archrelease: copy trunk to community-staging-x86_64

Added:
  luxrender/repos/community-staging-x86_64/
  luxrender/repos/community-staging-x86_64/PKGBUILD
(from rev 144427, luxrender/trunk/PKGBUILD)
  luxrender/repos/community-staging-x86_64/force_python3.diff
(from rev 144427, luxrender/trunk/force_python3.diff)

+
 PKGBUILD   |   56 +++
 force_python3.diff |   12 ++
 2 files changed, 68 insertions(+)

Copied: luxrender/repos/community-staging-x86_64/PKGBUILD (from rev 144427, 
luxrender/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-10-20 08:28:30 UTC (rev 144428)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Lukas Jirkovsky 
+# Contributor: flixie <69...@gmx.net>
+# Contributor: Imanol Celaya 
+pkgname=luxrender
+pkgver=1.5
+_pkgver=216e294b59e3
+pkgrel=3
+pkgdesc="Rendering system for physically correct, unbiased image synthesis"
+arch=('x86_64')
+url="http://www.luxrender.net/;
+license=('GPL')
+depends=('boost-libs' 'embree' 'freeimage' 'openexr' 'openimageio' 'libpng' 
'libcl' 'libgl' 'fftw')
+optdepends=('luxblend25: Blender exporter' 'qt4: Qt GUI' \
+'python: pylux Python interface'
+'opencl-nvidia: OpenCL support for nVidia GPUs' \
+'amdapp-sdk: OpenCL support for AMD GPUs' \
+'intel-opencl-runtime: OpenCL support for Intel CPUs')
+makedepends=('cmake' 'boost' 'mesa' 'qt4' "luxrays=$pkgver" 'python' 
'opencl-headers')
+source=(https://bitbucket.org/luxrender/lux/get/${_pkgver}.tar.bz2 \
+force_python3.diff)
+md5sums=('531234aaa2969c3aacf2a69ed7835335'
+ '42692e65eabc5828693e2682e94b7c64')
+
+prepare() {
+  cd "$srcdir"/luxrender-lux-$_pkgver
+
+  patch -Np1 < "$srcdir/force_python3.diff" || true
+}
+
+build() {
+  cd "$srcdir"/luxrender-lux-$_pkgver
+
+
+  cmake . \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLUXRAYS_DISABLE_OPENCL=OFF \
+-DPYTHON_CUSTOM=ON \
+-DPYTHON_LIBRARIES=/usr/lib/libpython3.5m.so \
+-DPYTHON_INCLUDE_PATH=/usr/include/python3.5m/ \
+-DCMAKE_EXE_LINKER_FLAGS=-lpthread
+  make
+}
+
+package() {
+  cd "$srcdir"/luxrender-lux-$_pkgver
+  make DESTDIR="$pkgdir" install
+
+  # fix library path on x86_64
+  [ "$CARCH" = "x86_64" ] && mv "$pkgdir"/usr/lib64 "$pkgdir"/usr/lib
+
+  # install pylux
+  install -D -m644 pylux.so "$pkgdir"/usr/lib/python3.5/pylux.so
+}
+
+# vim:set ts=2 sw=2 et:

Copied: luxrender/repos/community-staging-x86_64/force_python3.diff (from rev 
144427, luxrender/trunk/force_python3.diff)
===
--- community-staging-x86_64/force_python3.diff (rev 0)
+++ community-staging-x86_64/force_python3.diff 2015-10-20 08:28:30 UTC (rev 
144428)
@@ -0,0 +1,12 @@
+diff -rup luxrender-lux-d0b0e20c47cc/cmake/Dependencies.cmake 
luxrender-lux-d0b0e20c47cc.new/cmake/Dependencies.cmake
+--- luxrender-lux-d0b0e20c47cc/cmake/Dependencies.cmake2013-11-04 
22:25:45.0 +0100
 luxrender-lux-d0b0e20c47cc.new/cmake/Dependencies.cmake2013-12-05 
19:43:23.414625854 +0100
+@@ -156,7 +156,7 @@ IF(MSVC AND BOOST_python_LIBRARYDIR)
+   SET(BOOST_LIBRARYDIR "${BOOST_python_LIBRARYDIR}")
+ ENDIF(MSVC AND BOOST_python_LIBRARYDIR)
+ 
+-FIND_PACKAGE(Boost ${Boost_MINIMUM_VERSION} COMPONENTS python REQUIRED)
++FIND_PACKAGE(Boost ${Boost_MINIMUM_VERSION} COMPONENTS python3 REQUIRED)
+ 
+ IF(MSVC AND BOOST_python_LIBRARYDIR)
+   SET(BOOST_LIBRARYDIR "${_boost_libdir}")


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

2015-10-20 Thread Felix Yan
Date: Tuesday, October 20, 2015 @ 10:28:09
  Author: fyan
Revision: 144427

boost 1.59.0 rebuild

Modified:
  luxrender/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-10-20 08:20:15 UTC (rev 144426)
+++ PKGBUILD2015-10-20 08:28:09 UTC (rev 144427)
@@ -5,7 +5,7 @@
 pkgname=luxrender
 pkgver=1.5
 _pkgver=216e294b59e3
-pkgrel=2
+pkgrel=3
 pkgdesc="Rendering system for physically correct, unbiased image synthesis"
 arch=('x86_64')
 url="http://www.luxrender.net/;


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

2015-10-20 Thread Tobias Powalowski
Date: Tuesday, October 20, 2015 @ 16:44:49
  Author: tpowa
Revision: 249562

upgpkg: samba 4.3.1-1

bump to latest version

Modified:
  samba/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-10-20 09:48:02 UTC (rev 249561)
+++ PKGBUILD2015-10-20 14:44:49 UTC (rev 249562)
@@ -10,12 +10,12 @@
 
 pkgbase=samba
 pkgname=('libwbclient' 'smbclient' 'samba')
-pkgver=4.3.0
+pkgver=4.3.1
 # We use the 'A' to fake out pacman's version comparators.  Samba chooses
 # to append 'a','b',etc to their subsequent releases, which pacman
 # misconstrues as alpha, beta, etc.  Bad samba!
-_realver=4.3.0
-pkgrel=2
+_realver=4.3.1
+pkgrel=1
 arch=(i686 x86_64)
 url="http://www.samba.org;
 license=('GPL3')
@@ -243,7 +243,7 @@
   # copy ldap example
   install -D -m644 ${srcdir}/samba-${_realver}/examples/LDAP/samba.schema 
${pkgdir}/usr/share/doc/samba/examples/LDAP/samba.schema
 }
-md5sums=('8f6452eca69f8b38f97bb8d8a738180a'
+md5sums=('e63a481cad0603db1a9239d7606cbc9a'
  'SKIP'
  '5697da77590ec092cc8a883bae06093c'
  '96f82c38f3f540b53f3e5144900acf17'


[arch-commits] Commit in libreoffice-fresh/trunk (PKGBUILD.51)

2015-10-20 Thread Andreas Radke
Date: Tuesday, October 20, 2015 @ 19:26:58
  Author: andyrtr
Revision: 249573

prepare next major release

Added:
  libreoffice-fresh/trunk/PKGBUILD.51

-+
 PKGBUILD.51 |  370 ++
 1 file changed, 370 insertions(+)

Added: PKGBUILD.51
===
--- PKGBUILD.51 (rev 0)
+++ PKGBUILD.51 2015-10-20 17:26:58 UTC (rev 249573)
@@ -0,0 +1,370 @@
+# $Id: PKGBUILD 248858 2015-10-10 12:22:16Z andyrtr $
+# Maintainer: AndyRTR 
+# Maintainer: Bartłomiej Piotrowski 
+
+pkgbase=libreoffice-fresh
+pkgname=('libreoffice-fresh-sdk' 'libreoffice-fresh')
+_LOver=5.1.0.0.alpha1
+pkgver=5.1.0
+pkgrel=0.1 # alpha1
+arch=('i686' 'x86_64')
+license=('LGPL3')
+url="http://www.libreoffice.org/;
+makedepends=('curl>=7.20.0' 'hunspell>=1.2.8' 'python>=3.5' 'libwpd>=0.9.2' 
'libwps'
+   'neon>=0.28.6' 'pango' 'nspr' 'libjpeg' 'libxrandr' 'libgl' 'dbus-glib'
+   'libxslt' 'redland' 'icu' 'hyphen' 'lpsolve' 'gcc-libs' 'sh' 'graphite'
+   'lcms2' 'poppler>=0.24.0' 'libvisio' 'libetonyek' 'libodfgen' 'libcdr'
+   'libmspub' 'harfbuzz-icu' 'glew' 'nss' 'clucene' 'hicolor-icon-theme'
+   'desktop-file-utils' 'shared-mime-info' 'gtk2' 'xdg-utils' 
'gst-plugins-base-libs'
+   'glu' 'sane' 'perl-archive-zip' 'zip' 'unzip' 'unixodbc' 'apache-ant'
+   'gperf' 'kdelibs' 'gtk3' 'cppunit' 'beanshell2' 'vigra' 'clucene'
+   'junit' 'libmythes' 'libwpg'  'mesa' 'java-environment' 
'postgresql-libs'
+   'bluez-libs' 'harfbuzz-icu' 'gdb' 'doxygen'  'libatomic_ops' 'mdds' 
'glew'
+   'apr' 'serf' 'ttf-liberation' 'glm' 'libxinerama' 'libpagemaker'
+   'libabw' 'libmwaw' 'libe-book' 'coin-or-mp' 'liborcus')
+
+#_mirror="http://download.documentfoundation.org/libreoffice/src/${pkgver};
+_mirror="http://dev-builds.libreoffice.org/pre-releases/src;
+_additional_source_url="http://dev-www.libreoffice.org/src;
+_additional_source_url2="http://dev-www.libreoffice.org/extern;
+source=(${_mirror}/libreoffice{,-help,-translations}-${_LOver}.tar.xz{,.asc}
+   ${_additional_source_url}/boost_1_59_0.tar.bz2
+   
${_additional_source_url}/1f24ab1d39f4a51faf22244c94a6203f-xmlsec1-1.2.14.tar.gz
+   
${_additional_source_url}/35c94d2df8893241173de1d16b6034c0-swingExSrc.zip
+   
${_additional_source_url}/798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip
+   
${_additional_source_url}/a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip
+   ${_additional_source_url}/commons-logging-1.2-src.tar.gz
+   
${_additional_source_url}/8ab049135b2d15313da5d9f0656894a1-commons-lang3-3.3.1-src.tar.gz
+   
${_additional_source_url}/2c9b0f83ed5890af02c0df1c1776f39b-commons-httpclient-3.1-src.tar.gz
+   
${_additional_source_url}/048751f3271906db5126ab76870444c4-commons-codec-1.9-src.zip
+   
${_additional_source_url}/eeb2c7ddf0d302fba4bfc6e97eac9624-libbase-1.1.6.zip
+   
${_additional_source_url}/39bb3fcea1514f1369fcfc87542390fd-sacjava-1.3.zip
+   
${_additional_source_url}/3404ab6b1792ae5f16bbd603bd1e1d03-libformula-1.1.7.zip
+   
${_additional_source_url}/97b2d4dba862397f446b217e2b623e71-libloader-1.1.6.zip
+   
${_additional_source_url}/f94d9870737518e3b597f9265f4e9803-libserializer-1.1.6.zip
+   
${_additional_source_url}/8ce2fcd72becf06c41f7201d15373ed9-librepository-1.1.6.zip
+   
${_additional_source_url}/3bdf40c0d199af31923e900d082ca2dd-libfonts-1.1.6.zip
+   
${_additional_source_url}/ace6ab49184e329db254e454a010f56d-libxml-1.1.7.zip
+   
${_additional_source_url}/db60e4fde8dd6d6807523deb71ee34dc-liblayout-0.2.10.zip
+   
${_additional_source_url}/10d61fbaa6a06348823651b1bd7940fe-libexttextcat-3.4.4.tar.bz2
+   
${_additional_source_url}/0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz
+   ${_additional_source_url}/language-subtag-registry-2015-06-08.tar.bz2
+   
${_additional_source_url}/4b87018f7fff1d054939d19920b751a0-collada2gltf-master-cb1d97788a.tar.bz2
+   ${_additional_source_url}/OpenCOLLADA-master-6509aa13af.tar.bz2
+   
${_additional_source_url}/17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip
+   ${_additional_source_url}/Firebird-2.5.4.26856-0.tar.bz2
+   ${_additional_source_url}/libgltf/libgltf-0.0.2.tar.bz2
+   
${_additional_source_url}/d8bd5eed178db6e2b18eeed243f85aa8-flute-1.1.6.zip
+   
${_additional_source_url}/ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip
+   
${_additional_source_url}/5821b806a98e6c38370970e682ce76e8-libcmis-0.5.0.tar.gz
+   ${_additional_source_url}/libfreehand-0.1.1.tar.bz2
+   
${_additional_source_url}/80d063d6db4c010e18c606af8aed6231-liblangtag-0.5.7.tar.bz2
+   
${_additional_source_url2}/185d60944ea767075d27247c3162b3bc-unowinreg.dll
+   make-pyuno-work-with-system-wide-module-install.diff
+   libreoffice-fresh.sh libreoffice-fresh.csh)

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

2015-10-20 Thread Jelle van der Waa
Date: Tuesday, October 20, 2015 @ 21:30:27
  Author: jelle
Revision: 144529

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-10-20 19:30:05 UTC (rev 144528)
+++ community-i686/PKGBUILD 2015-10-20 19:30:27 UTC (rev 144529)
@@ -1,38 +0,0 @@
-# $Id$
-# Contributor: Paulo Matias 
-# Maintainer: Jelle van der Waa 
-
-pkgname=pdf2djvu
-pkgver=0.9.1
-pkgrel=1
-pkgdesc="Creates DjVu files from PDF files"
-arch=('i686' 'x86_64')
-url="http://pdf2djvu.googlecode.com;
-license=('GPL')
-depends=('poppler' 'djvulibre' 'libxslt' 'gcc-libs' 'graphicsmagick')
-makedepends=('pstreams' 'python2-nose' 'ttf-liberation')
-source=(https://bitbucket.org/jwilk/pdf2djvu/downloads/pdf2djvu-$pkgver.tar.xz{,.asc})
-validpgpkeys=('CDB5A1243ACDB63009AD07212D4EB3A6015475F5')
-md5sums=('a4081d3ea575eab9e220e0811e8c1303'
- 'SKIP')
-
-build() {
-cd ${srcdir}/${pkgname}-${pkgver}
-
-./configure --prefix=/usr
-make
-}
-
-check() {
-cd ${srcdir}/${pkgname}-${pkgver}
-
-sed -i 's/nosetests/nosetests2/' tests/Makefile
-make test
-}
-
-package() {
-cd ${srcdir}/${pkgname}-${pkgver}
-
-make install DESTDIR=${pkgdir}
-install -Dm644 doc/${pkgname}.1 ${pkgdir}/usr/share/man/man1/${pkgname}.1
-}

Copied: pdf2djvu/repos/community-i686/PKGBUILD (from rev 144528, 
pdf2djvu/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-10-20 19:30:27 UTC (rev 144529)
@@ -0,0 +1,38 @@
+# $Id$
+# Contributor: Paulo Matias 
+# Maintainer: Jelle van der Waa 
+
+pkgname=pdf2djvu
+pkgver=0.9.1
+pkgrel=2
+pkgdesc="Creates DjVu files from PDF files"
+arch=('i686' 'x86_64')
+url="http://pdf2djvu.googlecode.com;
+license=('GPL')
+depends=('poppler' 'djvulibre' 'libxslt' 'gcc-libs' 'graphicsmagick')
+makedepends=('pstreams' 'python2-nose' 'ttf-liberation')
+source=(https://bitbucket.org/jwilk/pdf2djvu/downloads/pdf2djvu-$pkgver.tar.xz{,.asc})
+validpgpkeys=('CDB5A1243ACDB63009AD07212D4EB3A6015475F5')
+md5sums=('a4081d3ea575eab9e220e0811e8c1303'
+ 'SKIP')
+
+build() {
+cd ${srcdir}/${pkgname}-${pkgver}
+
+./configure --prefix=/usr
+make
+}
+
+check() {
+cd ${srcdir}/${pkgname}-${pkgver}
+
+sed -i 's/nosetests/nosetests2/' tests/Makefile
+make test
+}
+
+package() {
+cd ${srcdir}/${pkgname}-${pkgver}
+
+make install DESTDIR=${pkgdir}
+install -Dm644 doc/${pkgname}.1 ${pkgdir}/usr/share/man/man1/${pkgname}.1
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-10-20 19:30:05 UTC (rev 144528)
+++ community-x86_64/PKGBUILD   2015-10-20 19:30:27 UTC (rev 144529)
@@ -1,38 +0,0 @@
-# $Id$
-# Contributor: Paulo Matias 
-# Maintainer: Jelle van der Waa 
-
-pkgname=pdf2djvu
-pkgver=0.9.1
-pkgrel=1
-pkgdesc="Creates DjVu files from PDF files"
-arch=('i686' 'x86_64')
-url="http://pdf2djvu.googlecode.com;
-license=('GPL')
-depends=('poppler' 'djvulibre' 'libxslt' 'gcc-libs' 'graphicsmagick')
-makedepends=('pstreams' 'python2-nose' 'ttf-liberation')
-source=(https://bitbucket.org/jwilk/pdf2djvu/downloads/pdf2djvu-$pkgver.tar.xz{,.asc})
-validpgpkeys=('CDB5A1243ACDB63009AD07212D4EB3A6015475F5')
-md5sums=('a4081d3ea575eab9e220e0811e8c1303'
- 'SKIP')
-
-build() {
-cd ${srcdir}/${pkgname}-${pkgver}
-
-./configure --prefix=/usr
-make
-}
-
-check() {
-cd ${srcdir}/${pkgname}-${pkgver}
-
-sed -i 's/nosetests/nosetests2/' tests/Makefile
-make test
-}
-
-package() {
-cd ${srcdir}/${pkgname}-${pkgver}
-
-make install DESTDIR=${pkgdir}
-install -Dm644 doc/${pkgname}.1 ${pkgdir}/usr/share/man/man1/${pkgname}.1
-}

Copied: pdf2djvu/repos/community-x86_64/PKGBUILD (from rev 144528, 
pdf2djvu/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-10-20 19:30:27 UTC (rev 144529)
@@ -0,0 +1,38 @@
+# $Id$
+# Contributor: Paulo Matias 
+# Maintainer: Jelle van der Waa 
+

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

2015-10-20 Thread Bartłomiej Piotrowski
Date: Tuesday, October 20, 2015 @ 20:01:37
  Author: bpiotrowski
Revision: 249574

upgpkg: mariadb 10.1.8-1

new upstream release

Modified:
  mariadb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-10-20 17:26:58 UTC (rev 249573)
+++ PKGBUILD2015-10-20 18:01:37 UTC (rev 249574)
@@ -3,9 +3,9 @@
 
 pkgbase=mariadb
 pkgname=('libmariadbclient' 'mariadb-clients' 'mytop' 'mariadb')
-pkgver=10.0.21
+pkgver=10.1.8
 _pkgver=${pkgver/.a/a}
-pkgrel=3
+pkgrel=1
 arch=('i686' 'x86_64')
 license=('GPL')
 url='http://mariadb.org/'
@@ -15,7 +15,7 @@
 mariadb.service
 mariadb-post.sh
 mariadb-tmpfile.conf)
-md5sums=('956561f3798d1fe8dfbe4b665287a87a'
+md5sums=('9ba0aaabba40153d83e70edcc1aa43a8'
  'd488fffa9f62f9949c4aa1bb6e6db692'
  'b79e65a5aa536e6b5bc60988eb0b78a2'
  '2fa6e456964d4ff5e6d4f9ff0126aed6')


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

2015-10-20 Thread Jelle van der Waa
Date: Tuesday, October 20, 2015 @ 21:30:05
  Author: jelle
Revision: 144528

upgpkg: pdf2djvu 0.9.1-2

rebuild for imagemagick

Modified:
  pdf2djvu/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-10-20 17:02:27 UTC (rev 144527)
+++ PKGBUILD2015-10-20 19:30:05 UTC (rev 144528)
@@ -4,7 +4,7 @@
 
 pkgname=pdf2djvu
 pkgver=0.9.1
-pkgrel=1
+pkgrel=2
 pkgdesc="Creates DjVu files from PDF files"
 arch=('i686' 'x86_64')
 url="http://pdf2djvu.googlecode.com;


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

2015-10-20 Thread Bartłomiej Piotrowski
Date: Tuesday, October 20, 2015 @ 20:01:58
  Author: bpiotrowski
Revision: 249575

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

Added:
  mariadb/repos/testing-i686/
  mariadb/repos/testing-i686/PKGBUILD
(from rev 249574, mariadb/trunk/PKGBUILD)
  mariadb/repos/testing-i686/mariadb-post.sh
(from rev 249574, mariadb/trunk/mariadb-post.sh)
  mariadb/repos/testing-i686/mariadb-tmpfile.conf
(from rev 249574, mariadb/trunk/mariadb-tmpfile.conf)
  mariadb/repos/testing-i686/mariadb.install
(from rev 249574, mariadb/trunk/mariadb.install)
  mariadb/repos/testing-i686/mariadb.service
(from rev 249574, mariadb/trunk/mariadb.service)
  mariadb/repos/testing-x86_64/
  mariadb/repos/testing-x86_64/PKGBUILD
(from rev 249574, mariadb/trunk/PKGBUILD)
  mariadb/repos/testing-x86_64/mariadb-post.sh
(from rev 249574, mariadb/trunk/mariadb-post.sh)
  mariadb/repos/testing-x86_64/mariadb-tmpfile.conf
(from rev 249574, mariadb/trunk/mariadb-tmpfile.conf)
  mariadb/repos/testing-x86_64/mariadb.install
(from rev 249574, mariadb/trunk/mariadb.install)
  mariadb/repos/testing-x86_64/mariadb.service
(from rev 249574, mariadb/trunk/mariadb.service)

-+
 testing-i686/PKGBUILD   |  160 ++
 testing-i686/mariadb-post.sh|8 +
 testing-i686/mariadb-tmpfile.conf   |1 
 testing-i686/mariadb.install|   35 +++
 testing-i686/mariadb.service|   16 +++
 testing-x86_64/PKGBUILD |  160 ++
 testing-x86_64/mariadb-post.sh  |8 +
 testing-x86_64/mariadb-tmpfile.conf |1 
 testing-x86_64/mariadb.install  |   35 +++
 testing-x86_64/mariadb.service  |   16 +++
 10 files changed, 440 insertions(+)

Copied: mariadb/repos/testing-i686/PKGBUILD (from rev 249574, 
mariadb/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-10-20 18:01:58 UTC (rev 249575)
@@ -0,0 +1,160 @@
+# $Id$
+# Maintainer: Bartłomiej Piotrowski 
+
+pkgbase=mariadb
+pkgname=('libmariadbclient' 'mariadb-clients' 'mytop' 'mariadb')
+pkgver=10.1.8
+_pkgver=${pkgver/.a/a}
+pkgrel=1
+arch=('i686' 'x86_64')
+license=('GPL')
+url='http://mariadb.org/'
+makedepends=('cmake' 'openssl' 'zlib' 'libaio' 'libxml2' 'openssl' 'pcre'
+ 'jemalloc' 'lz4')
+source=(http://ftp.heanet.ie/mirrors/mariadb/mariadb-$pkgver/source/mariadb-$pkgver.tar.gz
+mariadb.service
+mariadb-post.sh
+mariadb-tmpfile.conf)
+md5sums=('9ba0aaabba40153d83e70edcc1aa43a8'
+ 'd488fffa9f62f9949c4aa1bb6e6db692'
+ 'b79e65a5aa536e6b5bc60988eb0b78a2'
+ '2fa6e456964d4ff5e6d4f9ff0126aed6')
+
+build() {
+  mkdir build
+  cd build
+
+  cmake ../$pkgbase-$_pkgver \
+-DCMAKE_AR=/usr/bin/gcc-ar \
+-DCMAKE_RANLIB=/usr/bin/gcc-ranlib \
+-DBUILD_CONFIG=mysql_release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DSYSCONFDIR=/etc/mysql \
+-DMYSQL_DATADIR=/var/lib/mysql \
+-DMYSQL_UNIX_ADDR=/run/mysqld/mysqld.sock \
+-DDEFAULT_CHARSET=utf8 \
+-DDEFAULT_COLLATION=utf8_general_ci \
+-DENABLED_LOCAL_INFILE=ON \
+-DINSTALL_INFODIR=share/mysql/docs \
+-DINSTALL_MANDIR=share/man \
+-DINSTALL_PLUGINDIR=lib/mysql/plugin \
+-DINSTALL_SCRIPTDIR=bin \
+-DINSTALL_INCLUDEDIR=include/mysql \
+-DINSTALL_DOCREADMEDIR=share/mysql \
+-DINSTALL_SUPPORTFILESDIR=share/mysql \
+-DINSTALL_MYSQLSHAREDIR=share/mysql \
+-DINSTALL_DOCDIR=share/mysql/docs \
+-DINSTALL_SHAREDIR=share/mysql \
+-DWITH_READLINE=ON \
+-DWITH_ZLIB=system \
+-DWITH_SSL=system \
+-DWITH_PCRE=system \
+-DWITH_LIBWRAP=OFF \
+-DWITH_JEMALLOC=ON \
+-DCMAKE_EXE_LINKER_FLAGS='-ljemalloc' \
+-DWITH_EXTRA_CHARSETS=complex \
+-DWITH_EMBEDDED_SERVER=ON \
+-DWITH_ARCHIVE_STORAGE_ENGINE=1 \
+-DWITH_BLACKHOLE_STORAGE_ENGINE=1 \
+-DWITH_INNOBASE_STORAGE_ENGINE=1 \
+-DWITH_PARTITION_STORAGE_ENGINE=1 \
+-DWITH_TOKUDB_STORAGE_ENGINE=1 \
+-DWITHOUT_EXAMPLE_STORAGE_ENGINE=1 \
+-DWITHOUT_FEDERATED_STORAGE_ENGINE=1 \
+-DWITHOUT_PBXT_STORAGE_ENGINE=1 \
+-DCMAKE_C_FLAGS="-fPIC $CFLAGS -fno-strict-aliasing -DBIG_JOINS=1 
-fomit-frame-pointer -fno-delete-null-pointer-checks" \
+-DCMAKE_CXX_FLAGS="-fPIC $CXXFLAGS -fno-strict-aliasing -DBIG_JOINS=1 
-felide-constructors -fno-rtti -fno-delete-null-pointer-checks" \
+-DWITH_MYSQLD_LDFLAGS="-pie ${LDFLAGS},-z,now"
+
+  make
+}
+
+package_libmariadbclient() {
+  pkgdesc='MariaDB client libraries'
+  depends=('openssl' 'libaio' 'zlib' 'pcre')
+  conflicts=('libmysqlclient')
+  provides=("libmysqlclient=$pkgver")
+  options=('staticlibs')
+
+  cd build
+  for dir in include libmysql libmysqld libservices; do
+make -C $dir DESTDIR="$pkgdir" install
+  done
+
+  install -Dm755 

[arch-commits] Commit in java7-openjdk/trunk (i586-fix.diff)

2015-10-20 Thread Guillaume Alaux
Date: Tuesday, October 20, 2015 @ 21:16:52
  Author: guillaume
Revision: 249576

Add missing patch i586-fix.diff

Added:
  java7-openjdk/trunk/i586-fix.diff

---+
 i586-fix.diff |   21 +
 1 file changed, 21 insertions(+)

Added: i586-fix.diff
===
--- i586-fix.diff   (rev 0)
+++ i586-fix.diff   2015-10-20 19:16:52 UTC (rev 249576)
@@ -0,0 +1,21 @@
+diff -r ff3cd846027a src/solaris/native/sun/java2d/x11/X11SurfaceData.c
+--- openjdk/jdk/src/solaris/native/sun/java2d/x11/X11SurfaceData.c Sun Jul 
19 18:19:29 2015 +0100
 openjdk/jdk/src/solaris/native/sun/java2d/x11/X11SurfaceData.c Thu Jul 
30 14:31:59 2015 +0200
+@@ -551,8 +551,6 @@
+ {
+ XImage *img = NULL;
+ XShmSegmentInfo *shminfo;
+-JNIEnv* env;
+-jboolean xShmAttachResult;
+ 
+ shminfo = malloc(sizeof(XShmSegmentInfo));
+ if (shminfo == NULL) {
+@@ -603,7 +601,7 @@
+  */
+ shmctl(shminfo->shmid, IPC_RMID, 0);
+ 
+-if (xShmAttachResult == JNI_FALSE) {
++if (isXShmAttachFailed() == JNI_TRUE) {
+ J2dRlsTraceLn1(J2D_TRACE_ERROR,
+"X11SD_SetupSharedSegment XShmAttach has failed: %s",
+strerror(errno));


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

2015-10-20 Thread Gaetan Bisson
Date: Tuesday, October 20, 2015 @ 19:02:27
  Author: bisson
Revision: 144527

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

Added:
  unbound/repos/community-i686/PKGBUILD
(from rev 144526, unbound/trunk/PKGBUILD)
  unbound/repos/community-i686/conf
(from rev 144526, unbound/trunk/conf)
  unbound/repos/community-i686/install
(from rev 144526, unbound/trunk/install)
  unbound/repos/community-i686/service
(from rev 144526, unbound/trunk/service)
  unbound/repos/community-x86_64/PKGBUILD
(from rev 144526, unbound/trunk/PKGBUILD)
  unbound/repos/community-x86_64/conf
(from rev 144526, unbound/trunk/conf)
  unbound/repos/community-x86_64/install
(from rev 144526, unbound/trunk/install)
  unbound/repos/community-x86_64/service
(from rev 144526, unbound/trunk/service)
Deleted:
  unbound/repos/community-i686/PKGBUILD
  unbound/repos/community-i686/conf
  unbound/repos/community-i686/install
  unbound/repos/community-i686/service
  unbound/repos/community-x86_64/PKGBUILD
  unbound/repos/community-x86_64/conf
  unbound/repos/community-x86_64/install
  unbound/repos/community-x86_64/service

---+
 /PKGBUILD |  104 
 /conf |   10 
 /install  |   20 
 /service  |   26 +++
 community-i686/PKGBUILD   |   52 --
 community-i686/conf   |5 --
 community-i686/install|   10 
 community-i686/service|   13 -
 community-x86_64/PKGBUILD |   52 --
 community-x86_64/conf |5 --
 community-x86_64/install  |   10 
 community-x86_64/service  |   13 -
 12 files changed, 160 insertions(+), 160 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-10-20 17:01:43 UTC (rev 144526)
+++ community-i686/PKGBUILD 2015-10-20 17:02:27 UTC (rev 144527)
@@ -1,52 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson 
-# Contributor: Hisato Tatekura 
-# Contributor: Massimiliano Torromeo 
-
-pkgname=unbound
-pkgver=1.5.5
-pkgrel=2
-pkgdesc='Validating, recursive, and caching DNS resolver'
-url='http://unbound.net/'
-license=('custom:BSD')
-arch=('i686' 'x86_64')
-makedepends=('expat')
-optdepends=('expat: unbound-anchor')
-depends=('openssl' 'ldns' 'libevent' 'dnssec-anchors')
-backup=('etc/unbound/unbound.conf')
-validpgpkeys=('EDFAA3F2CA4E6EB05681AF8E9F6F1C2D7E045F8D')
-source=("http://unbound.net/downloads/${pkgname}-${pkgver}.tar.gz"{,.asc}
-'service'
-'conf')
-sha1sums=('ff93df847187120c9ee98e7eebe4bb1bc859a8f2' 'SKIP'
-  '63fcc187cec6f262d81600e66c6747285c72ad15'
-  '98515708441cb831890a0b6d1986fd40649646c0')
-
-install=install
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   ./configure \
-   --prefix=/usr \
-   --sysconfdir=/etc \
-   --localstatedir=/var \
-   --sbindir=/usr/bin \
-   --disable-rpath \
-   --with-libevent \
-   --with-rootkey-file=/etc/trusted-key.key \
-   --with-conf-file=/etc/unbound/unbound.conf \
-   --with-pidfile=/run/unbound.pid \
-   --enable-relro-now \
-   --enable-pie \
-
-   make
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}" install
-   install -Dm644 doc/example.conf.in 
"${pkgdir}/etc/unbound/unbound.conf.example"
-   install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-   install -Dm644 ../service 
"${pkgdir}/usr/lib/systemd/system/unbound.service"
-   install -Dm644 ../conf "${pkgdir}/etc/unbound/unbound.conf"
-}

Copied: unbound/repos/community-i686/PKGBUILD (from rev 144526, 
unbound/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-10-20 17:02:27 UTC (rev 144527)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Hisato Tatekura 
+# Contributor: Massimiliano Torromeo 
+
+pkgname=unbound
+pkgver=1.5.6
+pkgrel=1
+pkgdesc='Validating, recursive, and caching DNS resolver'
+url='http://unbound.net/'
+license=('custom:BSD')
+arch=('i686' 'x86_64')
+makedepends=('expat')
+optdepends=('expat: unbound-anchor')
+depends=('openssl' 'ldns' 'libevent' 'dnssec-anchors')
+backup=('etc/unbound/unbound.conf')
+validpgpkeys=('EDFAA3F2CA4E6EB05681AF8E9F6F1C2D7E045F8D')
+source=("http://unbound.net/downloads/${pkgname}-${pkgver}.tar.gz"{,.asc}
+'service'
+'conf')
+sha1sums=('b1e521669d6e5a3c1baf8b71dad070e38887162b' 'SKIP'
+  '63fcc187cec6f262d81600e66c6747285c72ad15'
+  

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

2015-10-20 Thread Gaetan Bisson
Date: Tuesday, October 20, 2015 @ 19:01:43
  Author: bisson
Revision: 144526

upstream update

Modified:
  unbound/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-10-20 16:14:59 UTC (rev 144525)
+++ PKGBUILD2015-10-20 17:01:43 UTC (rev 144526)
@@ -4,8 +4,8 @@
 # Contributor: Massimiliano Torromeo 
 
 pkgname=unbound
-pkgver=1.5.5
-pkgrel=2
+pkgver=1.5.6
+pkgrel=1
 pkgdesc='Validating, recursive, and caching DNS resolver'
 url='http://unbound.net/'
 license=('custom:BSD')
@@ -18,7 +18,7 @@
 source=("http://unbound.net/downloads/${pkgname}-${pkgver}.tar.gz"{,.asc}
 'service'
 'conf')
-sha1sums=('ff93df847187120c9ee98e7eebe4bb1bc859a8f2' 'SKIP'
+sha1sums=('b1e521669d6e5a3c1baf8b71dad070e38887162b' 'SKIP'
   '63fcc187cec6f262d81600e66c6747285c72ad15'
   '98515708441cb831890a0b6d1986fd40649646c0')
 


[arch-commits] Commit in nzbget/trunk (PKGBUILD nzbget.changelog)

2015-10-20 Thread Jaroslav Lichtblau
Date: Tuesday, October 20, 2015 @ 18:14:29
  Author: jlichtblau
Revision: 144524

upgpkg: nzbget 16.1-1 - new upstream release

Modified:
  nzbget/trunk/PKGBUILD
  nzbget/trunk/nzbget.changelog

--+
 PKGBUILD |4 ++--
 nzbget.changelog |3 +++
 2 files changed, 5 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-10-20 12:34:12 UTC (rev 144523)
+++ PKGBUILD2015-10-20 16:14:29 UTC (rev 144524)
@@ -3,7 +3,7 @@
 # Contributor: Alexander Rødseth 
 
 pkgname=nzbget
-pkgver=16.0
+pkgver=16.1
 pkgrel=1
 pkgdesc="Download from Usenet using .nzb files"
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 depends=('libxml2' 'python')
 changelog=$pkgname.changelog
 
source=(https://github.com/nzbget/$pkgname/releases/download/v$pkgver/$pkgname-$pkgver-src.tar.gz)
-sha256sums=('95bf4d1b888c631da06ef2699219c855a8d5433a3907791aee0d075c413ccdd0')
+sha256sums=('e478ab6ceb504f1514ca2ce56ba9fda845df56bb2deb92b3102dd73ba5917c0e')
 
 build() {
   cd $pkgname-$pkgver

Modified: nzbget.changelog
===
--- nzbget.changelog2015-10-20 12:34:12 UTC (rev 144523)
+++ nzbget.changelog2015-10-20 16:14:29 UTC (rev 144524)
@@ -1,3 +1,6 @@
+2015-10-20 Jaroslav Lichtblau 
+  * nzbget 16.1-1
+
 2015-10-12 Jaroslav Lichtblau 
   * nzbget 16.0-1
 


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

2015-10-20 Thread Jaroslav Lichtblau
Date: Tuesday, October 20, 2015 @ 18:14:59
  Author: jlichtblau
Revision: 144525

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

Added:
  nzbget/repos/community-i686/PKGBUILD
(from rev 144524, nzbget/trunk/PKGBUILD)
  nzbget/repos/community-i686/nzbget.changelog
(from rev 144524, nzbget/trunk/nzbget.changelog)
  nzbget/repos/community-x86_64/PKGBUILD
(from rev 144524, nzbget/trunk/PKGBUILD)
  nzbget/repos/community-x86_64/nzbget.changelog
(from rev 144524, nzbget/trunk/nzbget.changelog)
Deleted:
  nzbget/repos/community-i686/PKGBUILD
  nzbget/repos/community-i686/nzbget.changelog
  nzbget/repos/community-x86_64/PKGBUILD
  nzbget/repos/community-x86_64/nzbget.changelog

---+
 /PKGBUILD |   62 
 /nzbget.changelog |  132 
 community-i686/PKGBUILD   |   31 
 community-i686/nzbget.changelog   |   63 -
 community-x86_64/PKGBUILD |   31 
 community-x86_64/nzbget.changelog |   63 -
 6 files changed, 194 insertions(+), 188 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-10-20 16:14:29 UTC (rev 144524)
+++ community-i686/PKGBUILD 2015-10-20 16:14:59 UTC (rev 144525)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Alexander Rødseth 
-
-pkgname=nzbget
-pkgver=16.0
-pkgrel=1
-pkgdesc="Download from Usenet using .nzb files"
-arch=('i686' 'x86_64')
-url="http://nzbget.net/;
-license=('GPL')
-depends=('libxml2' 'python')
-changelog=$pkgname.changelog
-source=(https://github.com/nzbget/$pkgname/releases/download/v$pkgver/$pkgname-$pkgver-src.tar.gz)
-sha256sums=('95bf4d1b888c631da06ef2699219c855a8d5433a3907791aee0d075c413ccdd0')
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure --prefix='/usr' --sbindir='/usr/bin' --enable-parcheck 
--with-tlslib=OpenSSL
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  make DESTDIR="${pkgdir}" install
-
-  install -d "${pkgdir}"/usr/share/$pkgname
-  install -m644 -t "${pkgdir}"/usr/share/$pkgname ChangeLog README
-}

Copied: nzbget/repos/community-i686/PKGBUILD (from rev 144524, 
nzbget/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-10-20 16:14:59 UTC (rev 144525)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Alexander Rødseth 
+
+pkgname=nzbget
+pkgver=16.1
+pkgrel=1
+pkgdesc="Download from Usenet using .nzb files"
+arch=('i686' 'x86_64')
+url="http://nzbget.net/;
+license=('GPL')
+depends=('libxml2' 'python')
+changelog=$pkgname.changelog
+source=(https://github.com/nzbget/$pkgname/releases/download/v$pkgver/$pkgname-$pkgver-src.tar.gz)
+sha256sums=('e478ab6ceb504f1514ca2ce56ba9fda845df56bb2deb92b3102dd73ba5917c0e')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix='/usr' --sbindir='/usr/bin' --enable-parcheck 
--with-tlslib=OpenSSL
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR="${pkgdir}" install
+
+  install -d "${pkgdir}"/usr/share/$pkgname
+  install -m644 -t "${pkgdir}"/usr/share/$pkgname ChangeLog README
+}

Deleted: community-i686/nzbget.changelog
===
--- community-i686/nzbget.changelog 2015-10-20 16:14:29 UTC (rev 144524)
+++ community-i686/nzbget.changelog 2015-10-20 16:14:59 UTC (rev 144525)
@@ -1,63 +0,0 @@
-2015-10-12 Jaroslav Lichtblau 
-  * nzbget 16.0-1
-
-2015-05-20 Jaroslav Lichtblau 
-  * nzbget 15.0-1
-
-2015-03-08 Jaroslav Lichtblau 
-  * nzbget 14.2-1
-
-2014-11-28 Jaroslav Lichtblau 
-  * nzbget 14.1-1
-
-2014-11-10 Jaroslav Lichtblau 
-  * nzbget 14.0-1
-
-2014-07-18 Jaroslav Lichtblau 
-  * nzbget 13.0-1
-
-2014-05-25 Jaroslav Lichtblau 
-  * nzbget 12.0-2 FS#40075 implemented
-
-2014-01-14 Jaroslav Lichtblau 
-  * nzbget 12.0-1
-
-2013-09-03 Maxime Gauduin 
-  * Fixed FS#36250 - package built without system CXXFLAGS
-
-2013-07-14 Jaroslav Lichtblau 
-  * nzbget 11.0-1
-
-2013-04-20 Jaroslav Lichtblau 
-  * nzbget 10.2-1
-
-2013-01-30 Jaroslav Lichtblau 
-  * nzbget 9.1-1
-
-2013-01-05 Jaroslav Lichtblau 
-  * nzbget 9.0-1
-
-2012-05-05 Jaroslav Lichtblau 
-  * nzbget 0.8.0-1
-
-2012-03-18 Jaroslav Lichtblau 
-  * nzbget 

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

2015-10-20 Thread Anatol Pomozov
Date: Tuesday, October 20, 2015 @ 18:39:12
  Author: anatolik
Revision: 249568

upgpkg: elfutils 0.164-1

Modified:
  elfutils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-10-20 15:50:07 UTC (rev 249567)
+++ PKGBUILD2015-10-20 16:39:12 UTC (rev 249568)
@@ -5,8 +5,8 @@
 
 pkgbase=elfutils
 pkgname=(elfutils libelf)
-pkgver=0.163
-pkgrel=2
+pkgver=0.164
+pkgrel=1
 pkgdesc="Utilities to handle ELF object files and DWARF debugging information"
 arch=('i686' 'x86_64')
 url="https://fedorahosted.org/elfutils/;
@@ -14,7 +14,7 @@
 depends=('gcc-libs' 'zlib' 'bzip2' 'xz')
 options=('staticlibs')
 
source=(https://fedorahosted.org/releases/e/l/elfutils/${pkgver}/elfutils-${pkgver}.tar.bz2{,.sig})
-sha1sums=('7931b4961364a8a17c708138c70c552ae2881227'
+sha1sums=('55a951f909267db76d506f61752508a86589aa37'
   'SKIP')
 validpgpkeys=('47CC0331081B8BC6D0FD4DA08370665B57816A6A')  # Mark J. Wielaard 

 


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

2015-10-20 Thread Anatol Pomozov
Date: Tuesday, October 20, 2015 @ 18:45:32
  Author: anatolik
Revision: 249570

Add Anatol as maintainer

Modified:
  vim/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-10-20 16:39:47 UTC (rev 249569)
+++ PKGBUILD2015-10-20 16:45:32 UTC (rev 249570)
@@ -1,5 +1,6 @@
 # $Id$
-# Maintainer: Thomas Dziedzic 
+# Maintainer: Anatol Pomozov 
+# Contributor: Thomas Dziedzic 
 # Contributor: Jan "heftig" Steffens 
 # Contributor: tobias [ tobias at archlinux org ]
 # Contributor: Daniel J Griffiths 


[arch-commits] Commit in noto-fonts-cjk/repos/extra-any (4 files)

2015-10-20 Thread Antonio Rojas
Date: Tuesday, October 20, 2015 @ 19:13:37
  Author: arojas
Revision: 249572

archrelease: copy trunk to extra-any

Added:
  noto-fonts-cjk/repos/extra-any/PKGBUILD
(from rev 249571, noto-fonts-cjk/trunk/PKGBUILD)
  noto-fonts-cjk/repos/extra-any/noto-fonts-cjk.install
(from rev 249571, noto-fonts-cjk/trunk/noto-fonts-cjk.install)
Deleted:
  noto-fonts-cjk/repos/extra-any/PKGBUILD
  noto-fonts-cjk/repos/extra-any/noto-fonts-cjk.install

+
 PKGBUILD   |   40 
 noto-fonts-cjk.install |   22 +++---
 2 files changed, 31 insertions(+), 31 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-10-20 17:12:58 UTC (rev 249571)
+++ PKGBUILD2015-10-20 17:13:37 UTC (rev 249572)
@@ -1,20 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-
-pkgname=noto-fonts-cjk
-pkgver=1.004
-pkgrel=1
-pkgdesc="Google Noto CJK fonts"
-arch=(any)
-url="https://www.google.com/get/noto/;
-license=(custom:SIL)
-depends=(fontconfig)
-install=$pkgname.install
-source=("https://github.com/googlei18n/noto-cjk/archive/v$pkgver.tar.gz;)
-sha256sums=('835a42755c1e8d6a4a406f32609da1f0fa7f9674d05760f0be658d9d6f4ab71c')
-
-package() {
-  mkdir -p "$pkgdir"/usr/share/fonts/noto
-  install -m644 noto-cjk-$pkgver/*.{ttc,otf} "$pkgdir"/usr/share/fonts/noto
-  install -Dm644 noto-cjk-$pkgver/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: noto-fonts-cjk/repos/extra-any/PKGBUILD (from rev 249571, 
noto-fonts-cjk/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-10-20 17:13:37 UTC (rev 249572)
@@ -0,0 +1,20 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgname=noto-fonts-cjk
+pkgver=1.004
+pkgrel=2
+pkgdesc="Google Noto CJK fonts"
+arch=(any)
+url="https://www.google.com/get/noto/;
+license=(custom:SIL)
+depends=(fontconfig)
+install=$pkgname.install
+source=("https://github.com/googlei18n/noto-cjk/archive/v$pkgver.tar.gz;)
+sha256sums=('835a42755c1e8d6a4a406f32609da1f0fa7f9674d05760f0be658d9d6f4ab71c')
+
+package() {
+  mkdir -p "$pkgdir"/usr/share/fonts/noto
+  install -m644 noto-cjk-$pkgver/*.ttc "$pkgdir"/usr/share/fonts/noto
+  install -Dm644 noto-cjk-$pkgver/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}

Deleted: noto-fonts-cjk.install
===
--- noto-fonts-cjk.install  2015-10-20 17:12:58 UTC (rev 249571)
+++ noto-fonts-cjk.install  2015-10-20 17:13:37 UTC (rev 249572)
@@ -1,11 +0,0 @@
-post_install() {
-  fc-cache -s
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  post_install $1
-}

Copied: noto-fonts-cjk/repos/extra-any/noto-fonts-cjk.install (from rev 249571, 
noto-fonts-cjk/trunk/noto-fonts-cjk.install)
===
--- noto-fonts-cjk.install  (rev 0)
+++ noto-fonts-cjk.install  2015-10-20 17:13:37 UTC (rev 249572)
@@ -0,0 +1,11 @@
+post_install() {
+  fc-cache -s
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  post_install $1
+}


[arch-commits] Commit in noto-fonts-cjk/trunk (PKGBUILD)

2015-10-20 Thread Antonio Rojas
Date: Tuesday, October 20, 2015 @ 19:12:58
  Author: arojas
Revision: 249571

Don't install all formats, OTC should be enough

Modified:
  noto-fonts-cjk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-10-20 16:45:32 UTC (rev 249570)
+++ PKGBUILD2015-10-20 17:12:58 UTC (rev 249571)
@@ -3,7 +3,7 @@
 
 pkgname=noto-fonts-cjk
 pkgver=1.004
-pkgrel=1
+pkgrel=2
 pkgdesc="Google Noto CJK fonts"
 arch=(any)
 url="https://www.google.com/get/noto/;
@@ -15,6 +15,6 @@
 
 package() {
   mkdir -p "$pkgdir"/usr/share/fonts/noto
-  install -m644 noto-cjk-$pkgver/*.{ttc,otf} "$pkgdir"/usr/share/fonts/noto
+  install -m644 noto-cjk-$pkgver/*.ttc "$pkgdir"/usr/share/fonts/noto
   install -Dm644 noto-cjk-$pkgver/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 }


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

2015-10-20 Thread Andreas Radke
Date: Tuesday, October 20, 2015 @ 17:50:07
  Author: andyrtr
Revision: 249567

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

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

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

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2015-10-20 15:49:54 UTC (rev 249566)
+++ testing-i686/PKGBUILD   2015-10-20 15:50:07 UTC (rev 249567)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: AndyRTR 
-# Contributor: Thomas Arnhold 
-
-pkgname=liborcus
-pkgver=0.9.1
-pkgrel=2
-pkgdesc="File import filter library for spreadsheet documents."
-arch=('i686' 'x86_64')
-url="https://gitlab.com/orcus/orcus/blob/master/README.md;
-license=('MPL')
-depends=('libixion')
-makedepends=('boost' 'mdds')
-source=(http://kohei.us/files/orcus/src/${pkgname}-${pkgver}.tar.xz)
-sha1sums=('2115ad88c528bc9d3ac5d0cc287f80f03529')
-
-build() {
-cd ${pkgname}-${pkgver}
-./configure --prefix=/usr
-make
-}
-
-check() {
-cd ${pkgname}-${pkgver}
-make -k check
-}
-
-package() {
-cd ${pkgname}-${pkgver}
-make DESTDIR=$pkgdir install
-}

Copied: liborcus/repos/testing-i686/PKGBUILD (from rev 249566, 
liborcus/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-10-20 15:50:07 UTC (rev 249567)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: AndyRTR 
+# Contributor: Thomas Arnhold 
+
+pkgname=liborcus
+pkgver=0.9.2
+pkgrel=1
+pkgdesc="File import filter library for spreadsheet documents."
+arch=('i686' 'x86_64')
+url="https://gitlab.com/orcus/orcus/blob/master/README.md;
+license=('MPL')
+depends=('libixion')
+makedepends=('boost' 'mdds')
+source=(http://kohei.us/files/orcus/src/${pkgname}-${pkgver}.tar.xz)
+sha1sums=('4c55f1bdc65490e8e79bbf7d069a64381eb1d1bc')
+
+build() {
+cd ${pkgname}-${pkgver}
+./configure --prefix=/usr
+make
+}
+
+check() {
+cd ${pkgname}-${pkgver}
+make -k check
+}
+
+package() {
+cd ${pkgname}-${pkgver}
+make DESTDIR=$pkgdir install
+}

Deleted: testing-x86_64/PKGBUILD
===
--- testing-x86_64/PKGBUILD 2015-10-20 15:49:54 UTC (rev 249566)
+++ testing-x86_64/PKGBUILD 2015-10-20 15:50:07 UTC (rev 249567)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: AndyRTR 
-# Contributor: Thomas Arnhold 
-
-pkgname=liborcus
-pkgver=0.9.1
-pkgrel=2
-pkgdesc="File import filter library for spreadsheet documents."
-arch=('i686' 'x86_64')
-url="https://gitlab.com/orcus/orcus/blob/master/README.md;
-license=('MPL')
-depends=('libixion')
-makedepends=('boost' 'mdds')
-source=(http://kohei.us/files/orcus/src/${pkgname}-${pkgver}.tar.xz)
-sha1sums=('2115ad88c528bc9d3ac5d0cc287f80f03529')
-
-build() {
-cd ${pkgname}-${pkgver}
-./configure --prefix=/usr
-make
-}
-
-check() {
-cd ${pkgname}-${pkgver}
-make -k check
-}
-
-package() {
-cd ${pkgname}-${pkgver}
-make DESTDIR=$pkgdir install
-}

Copied: liborcus/repos/testing-x86_64/PKGBUILD (from rev 249566, 
liborcus/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2015-10-20 15:50:07 UTC (rev 249567)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: AndyRTR 
+# Contributor: Thomas Arnhold 
+
+pkgname=liborcus
+pkgver=0.9.2
+pkgrel=1
+pkgdesc="File import filter library for spreadsheet documents."
+arch=('i686' 'x86_64')
+url="https://gitlab.com/orcus/orcus/blob/master/README.md;
+license=('MPL')
+depends=('libixion')
+makedepends=('boost' 'mdds')
+source=(http://kohei.us/files/orcus/src/${pkgname}-${pkgver}.tar.xz)
+sha1sums=('4c55f1bdc65490e8e79bbf7d069a64381eb1d1bc')
+
+build() {
+cd ${pkgname}-${pkgver}
+./configure --prefix=/usr
+make
+}
+
+check() {
+cd ${pkgname}-${pkgver}
+make -k check
+}
+
+package() {
+cd ${pkgname}-${pkgver}
+make DESTDIR=$pkgdir install
+}


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

2015-10-20 Thread Andreas Radke
Date: Tuesday, October 20, 2015 @ 17:49:54
  Author: andyrtr
Revision: 249566

upgpkg: liborcus 0.9.2-1

upstream update 0.9.2

Modified:
  liborcus/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-10-20 14:57:23 UTC (rev 249565)
+++ PKGBUILD2015-10-20 15:49:54 UTC (rev 249566)
@@ -3,8 +3,8 @@
 # Contributor: Thomas Arnhold 
 
 pkgname=liborcus
-pkgver=0.9.1
-pkgrel=2
+pkgver=0.9.2
+pkgrel=1
 pkgdesc="File import filter library for spreadsheet documents."
 arch=('i686' 'x86_64')
 url="https://gitlab.com/orcus/orcus/blob/master/README.md;
@@ -12,7 +12,7 @@
 depends=('libixion')
 makedepends=('boost' 'mdds')
 source=(http://kohei.us/files/orcus/src/${pkgname}-${pkgver}.tar.xz)
-sha1sums=('2115ad88c528bc9d3ac5d0cc287f80f03529')
+sha1sums=('4c55f1bdc65490e8e79bbf7d069a64381eb1d1bc')
 
 build() {
 cd ${pkgname}-${pkgver}


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

2015-10-20 Thread Anatol Pomozov
Date: Tuesday, October 20, 2015 @ 18:39:47
  Author: anatolik
Revision: 249569

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

Added:
  elfutils/repos/testing-i686/
  elfutils/repos/testing-i686/PKGBUILD
(from rev 249568, elfutils/trunk/PKGBUILD)
  elfutils/repos/testing-x86_64/
  elfutils/repos/testing-x86_64/PKGBUILD
(from rev 249568, elfutils/trunk/PKGBUILD)

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

Copied: elfutils/repos/testing-i686/PKGBUILD (from rev 249568, 
elfutils/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-10-20 16:39:47 UTC (rev 249569)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Laurent Carlier 
+# Contributor: Stéphane Gaudreault 
+# Contributor: Andrej Gelenberg 
+
+pkgbase=elfutils
+pkgname=(elfutils libelf)
+pkgver=0.164
+pkgrel=1
+pkgdesc="Utilities to handle ELF object files and DWARF debugging information"
+arch=('i686' 'x86_64')
+url="https://fedorahosted.org/elfutils/;
+license=('LGPL3' 'GPL' 'GPL3')
+depends=('gcc-libs' 'zlib' 'bzip2' 'xz')
+options=('staticlibs')
+source=(https://fedorahosted.org/releases/e/l/elfutils/${pkgver}/elfutils-${pkgver}.tar.bz2{,.sig})
+sha1sums=('55a951f909267db76d506f61752508a86589aa37'
+  'SKIP')
+validpgpkeys=('47CC0331081B8BC6D0FD4DA08370665B57816A6A')  # Mark J. Wielaard 

+
+build() {
+  cd ${pkgbase}-${pkgver}
+
+  CFLAGS+=" -g"  # required for test-suite success
+  ./configure --prefix=/usr --program-prefix="eu-" 
--enable-deterministic-archives
+
+  make
+}
+
+check() {
+  cd ${pkgbase}-${pkgver}
+
+  make check
+}
+
+package_elfutils() {
+  depends=("libelf=$pkgver-$pkgrel")
+
+  cd ${pkgbase}-${pkgver}
+
+  make DESTDIR="${pkgdir}" install
+
+  mkdir "${srcdir}"/libelf
+  mv "${pkgdir}"/usr/{lib,include} "${srcdir}/libelf"
+}
+
+package_libelf() {
+  pkgdesc="Libraries to handle ELF object files and DWARF debugging 
information"
+  mv libelf "${pkgdir}/usr"
+}

Copied: elfutils/repos/testing-x86_64/PKGBUILD (from rev 249568, 
elfutils/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2015-10-20 16:39:47 UTC (rev 249569)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Laurent Carlier 
+# Contributor: Stéphane Gaudreault 
+# Contributor: Andrej Gelenberg 
+
+pkgbase=elfutils
+pkgname=(elfutils libelf)
+pkgver=0.164
+pkgrel=1
+pkgdesc="Utilities to handle ELF object files and DWARF debugging information"
+arch=('i686' 'x86_64')
+url="https://fedorahosted.org/elfutils/;
+license=('LGPL3' 'GPL' 'GPL3')
+depends=('gcc-libs' 'zlib' 'bzip2' 'xz')
+options=('staticlibs')
+source=(https://fedorahosted.org/releases/e/l/elfutils/${pkgver}/elfutils-${pkgver}.tar.bz2{,.sig})
+sha1sums=('55a951f909267db76d506f61752508a86589aa37'
+  'SKIP')
+validpgpkeys=('47CC0331081B8BC6D0FD4DA08370665B57816A6A')  # Mark J. Wielaard 

+
+build() {
+  cd ${pkgbase}-${pkgver}
+
+  CFLAGS+=" -g"  # required for test-suite success
+  ./configure --prefix=/usr --program-prefix="eu-" 
--enable-deterministic-archives
+
+  make
+}
+
+check() {
+  cd ${pkgbase}-${pkgver}
+
+  make check
+}
+
+package_elfutils() {
+  depends=("libelf=$pkgver-$pkgrel")
+
+  cd ${pkgbase}-${pkgver}
+
+  make DESTDIR="${pkgdir}" install
+
+  mkdir "${srcdir}"/libelf
+  mv "${pkgdir}"/usr/{lib,include} "${srcdir}/libelf"
+}
+
+package_libelf() {
+  pkgdesc="Libraries to handle ELF object files and DWARF debugging 
information"
+  mv libelf "${pkgdir}/usr"
+}


[arch-commits] Commit in (4 files)

2015-10-20 Thread Antonio Rojas
Date: Tuesday, October 20, 2015 @ 22:36:27
  Author: arojas
Revision: 249584

Add nototools, makedepends of noto-fonts-emoji

Added:
  nototools/
  nototools/trunk/
  nototools/trunk/PKGBUILD
  nototools/trunk/data_path.patch

-+
 PKGBUILD|   32 
 data_path.patch |   12 
 2 files changed, 44 insertions(+)

Added: nototools/trunk/PKGBUILD
===
--- nototools/trunk/PKGBUILD(rev 0)
+++ nototools/trunk/PKGBUILD2015-10-20 20:36:27 UTC (rev 249584)
@@ -0,0 +1,32 @@
+# $Id: PKGBUILD 249445 2015-10-16 23:55:30Z arojas $
+# Maintainer: Antonio Rojas 
+
+pkgname=nototools
+_commit=580e5294
+pkgver=git20151020
+pkgrel=1
+pkgdesc="Noto fonts support tools and scripts"
+arch=(any)
+url="https://www.google.com/get/noto/;
+license=(Apache)
+depends=(python2)
+makedepends=(python2-setuptools)
+source=("https://github.com/googlei18n/nototools/archive/$_commit.zip; 
data_path.patch)
+sha256sums=('194c027b6e89febb7231daead7bc537ad7fed40fb3138f29df367b01d87a92d9'
+'8ef0f97a049a28d5b9dd8afa8b89ead06ae2cb81ebbf17da5e6f053c51b9b28c')
+
+prepare() {
+  cd nototools-*
+  find -name '*.py' | xargs sed -e 's|/usr/bin/python|/usr/bin/python2|g' -e 
's|/usr/bin/env python|/usr/bin/env python2|' -i
+
+# Fix data files location
+  patch -p0 -i ../data_path.patch
+}
+
+package() {
+  cd nototools-*
+  python2 setup.py install --root="$pkgdir" --optimize=1
+
+  mkdir -p "$pkgdir"/usr/share/nototools
+  cp -r third_party "$pkgdir"/usr/share/nototools
+}

Added: nototools/trunk/data_path.patch
===
--- nototools/trunk/data_path.patch (rev 0)
+++ nototools/trunk/data_path.patch 2015-10-20 20:36:27 UTC (rev 249584)
@@ -0,0 +1,12 @@
+--- nototools/unicode_data.py.orig 2015-10-20 19:21:32.611686276 +
 nototools/unicode_data.py  2015-10-20 19:22:40.021351354 +
+@@ -329,8 +329,7 @@
+ return frozenset(_script_code_to_long_name.keys())
+ 
+ 
+-_DATA_DIR_PATH = path.join(path.abspath(path.dirname(__file__)),
+-   os.pardir, "third_party", "ucd")
++_DATA_DIR_PATH = "/usr/share/nototools/third_party/ucd"
+ 
+ 
+ def open_unicode_data_file(data_file_name):


[arch-commits] Commit in gsettings-desktop-schemas/repos/extra-any (4 files)

2015-10-20 Thread Jan Steffens
Date: Tuesday, October 20, 2015 @ 22:14:37
  Author: heftig
Revision: 249581

archrelease: copy trunk to extra-any

Added:
  gsettings-desktop-schemas/repos/extra-any/PKGBUILD
(from rev 249580, gsettings-desktop-schemas/trunk/PKGBUILD)
  gsettings-desktop-schemas/repos/extra-any/gsettings-desktop-schemas.install
(from rev 249580, 
gsettings-desktop-schemas/trunk/gsettings-desktop-schemas.install)
Deleted:
  gsettings-desktop-schemas/repos/extra-any/PKGBUILD
  gsettings-desktop-schemas/repos/extra-any/gsettings-desktop-schemas.install

---+
 PKGBUILD  |   58 ++--
 gsettings-desktop-schemas.install |   22 ++---
 2 files changed, 40 insertions(+), 40 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-10-20 20:13:01 UTC (rev 249580)
+++ PKGBUILD2015-10-20 20:14:37 UTC (rev 249581)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer : Ionut Biru 
-# Contributor: Jaroslav Lichtblau 
-# Contributor: Adam Hani Schakaki (krzd) 
-
-pkgname=gsettings-desktop-schemas
-pkgver=3.18.0
-pkgrel=1
-pkgdesc="Shared GSettings schemas for the desktop"
-arch=(any)
-url="http://live.gnome.org/;
-license=(GPL)
-depends=(glib2)
-makedepends=(intltool gobject-introspection)
-install=$pkgname.install
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('ba27337226a96d83f385c0ad192fdfe561c7e7882c61bb326c571be24e41eceb')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---disable-schemas-compile
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: gsettings-desktop-schemas/repos/extra-any/PKGBUILD (from rev 249580, 
gsettings-desktop-schemas/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-10-20 20:14:37 UTC (rev 249581)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer : Ionut Biru 
+# Contributor: Jaroslav Lichtblau 
+# Contributor: Adam Hani Schakaki (krzd) 
+
+pkgname=gsettings-desktop-schemas
+pkgver=3.18.1
+pkgrel=1
+pkgdesc="Shared GSettings schemas for the desktop"
+arch=(any)
+url="http://live.gnome.org/;
+license=(GPL)
+depends=(glib2)
+makedepends=(intltool gobject-introspection)
+install=$pkgname.install
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('258713b2a3dc6b6590971bcfc81f98d78ea9827d60e2f55ffbe40d9cd0f99a1a')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--disable-schemas-compile
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: gsettings-desktop-schemas.install
===
--- gsettings-desktop-schemas.install   2015-10-20 20:13:01 UTC (rev 249580)
+++ gsettings-desktop-schemas.install   2015-10-20 20:14:37 UTC (rev 249581)
@@ -1,11 +0,0 @@
-post_install() {
-   glib-compile-schemas /usr/share/glib-2.0/schemas
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: 
gsettings-desktop-schemas/repos/extra-any/gsettings-desktop-schemas.install 
(from rev 249580, 
gsettings-desktop-schemas/trunk/gsettings-desktop-schemas.install)
===
--- gsettings-desktop-schemas.install   (rev 0)
+++ gsettings-desktop-schemas.install   2015-10-20 20:14:37 UTC (rev 249581)
@@ -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 avahi/repos (8 files)

2015-10-20 Thread Jan Steffens
Date: Tuesday, October 20, 2015 @ 22:15:10
  Author: heftig
Revision: 249582

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

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

+
 /PKGBUILD  |  156 +++
 /avahi.install |   32 
 extra-i686/PKGBUILD|   81 --
 extra-i686/avahi.install   |6 -
 extra-x86_64/PKGBUILD  |   81 --
 extra-x86_64/avahi.install |6 -
 6 files changed, 188 insertions(+), 174 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-10-20 20:14:37 UTC (rev 249581)
+++ extra-i686/PKGBUILD 2015-10-20 20:15:10 UTC (rev 249582)
@@ -1,81 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Gaetan Bisson 
-# Contributor: Douglas Soares de Andrade 
-
-pkgname=avahi
-pkgver=0.6.31
-pkgrel=17
-_commit=573e3b5
-pkgdesc='Multicast DNS-SD / Zeroconf Suite'
-#url='http://www.avahi.org/'
-url='http://git.0pointer.net/avahi.git'
-license=(LGPL)
-arch=(i686 x86_64)
-depends=(expat libdaemon glib2 libcap gdbm dbus)
-makedepends=(git qt4 pygtk mono intltool python2-dbus gtk-sharp-2 
gobject-introspection gtk3
- xmltoman python-dbus)
-optdepends=('gtk3: avahi-discover-standalone, bshell, bssh, bvnc'
-'gtk2: gtk2 bindings'
-'qt4: qt4 bindings'
-'pygtk: avahi-bookmarks, avahi-discover'
-'python2-twisted: avahi-bookmarks'
-'mono: mono bindings'
-'python2-dbus: avahi-discover'
-'nss-mdns: NSS support for mDNS')
-conflicts=(howl mdnsresponder)
-provides=(howl mdnsresponder)
-install=avahi.install
-options=(!emptydirs)
-backup=(etc/avahi/{hosts,avahi-daemon.conf,services/{ssh,sftp-ssh}.service}
-usr/lib/avahi/service-types.db usr/share/avahi/service-types)
-source=("git+https://github.com/heftig/avahi#commit=$_commit;)
-sha256sums=('SKIP')
-
-
-prepare() {
-  cd $pkgname
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd $pkgname
-  export MOC_QT4=/usr/bin/moc-qt4 PYTHON=/usr/bin/python2
-
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---localstatedir=/var \
---sbindir=/usr/bin \
---disable-monodoc \
---disable-qt3 \
---enable-compat-libdns_sd \
---enable-compat-howl \
---with-distro=archlinux \
---with-avahi-priv-access-group=network \
---with-autoipd-user=avahi \
---with-autoipd-group=avahi \
---with-systemdsystemunitdir=/usr/lib/systemd/system
-
-  cp -a avahi-python/avahi avahi-python/avahi3
-
-  make
-  make -C avahi-python/avahi3 PYTHON=/usr/bin/python3
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-  make DESTDIR="$pkgdir" -C avahi-python/avahi3 install \
-PYTHON=/usr/bin/python3 pythondir=/usr/lib/python3.5/site-packages
-
-  # howl compat
-  ln -s avahi-compat-howl "$pkgdir/usr/include/howl"
-  ln -s avahi-compat-howl.pc "$pkgdir/usr/lib/pkgconfig/howl.pc"
-
-  # mdnsresponder compat
-  ln -s avahi-compat-libdns_sd/dns_sd.h "$pkgdir/usr/include/dns_sd.h"
-
-  # see FS#42638
-  ln -s avahi-daemon.service 
"$pkgdir/usr/lib/systemd/system/dbus-org.freedesktop.Avahi.service"
-}

Copied: avahi/repos/extra-i686/PKGBUILD (from rev 249581, avahi/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-10-20 20:15:10 UTC (rev 249582)
@@ -0,0 +1,78 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Gaetan Bisson 
+# Contributor: Douglas Soares de Andrade 
+
+pkgname=avahi
+pkgver=0.6.32rc
+pkgrel=1
+_commit=bc4e85846991d0efca89add631c7cd16033f0bef
+pkgdesc='Multicast DNS-SD / Zeroconf Suite'
+#url='http://www.avahi.org/'
+url='http://git.0pointer.net/avahi.git'
+license=(LGPL)
+arch=(i686 x86_64)
+depends=(expat libdaemon glib2 libcap gdbm dbus)
+makedepends=(git qt4 pygtk mono intltool python2-dbus gtk-sharp-2 
gobject-introspection gtk3
+ xmltoman python-dbus)
+optdepends=('gtk3: avahi-discover-standalone, bshell, bssh, bvnc'
+'gtk2: gtk2 bindings'
+'qt4: qt4 bindings'
+'pygtk: avahi-bookmarks, avahi-discover'
+'python2-twisted: avahi-bookmarks'
+'mono: mono 

[arch-commits] Commit in (4 files)

2015-10-20 Thread Antonio Rojas
Date: Tuesday, October 20, 2015 @ 22:49:38
  Author: arojas
Revision: 249586

Add Google Noto Emoji fonts

Added:
  noto-fonts-emoji/
  noto-fonts-emoji/trunk/
  noto-fonts-emoji/trunk/PKGBUILD
  noto-fonts-emoji/trunk/noto-fonts-emoji.install

--+
 PKGBUILD |   32 
 noto-fonts-emoji.install |   11 +++
 2 files changed, 43 insertions(+)

Added: noto-fonts-emoji/trunk/PKGBUILD
===
--- noto-fonts-emoji/trunk/PKGBUILD (rev 0)
+++ noto-fonts-emoji/trunk/PKGBUILD 2015-10-20 20:49:38 UTC (rev 249586)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgname=noto-fonts-emoji
+_pkgver=2015-09-29
+pkgver=${_pkgver//-}
+pkgrel=1
+pkgdesc="Google Noto emoji fonts"
+arch=(any)
+url="https://www.google.com/get/noto/;
+license=(Apache)
+depends=(fontconfig)
+makedepends=(cairo optipng python2-fonttools python-fonttools nototools)
+install=$pkgname.install
+source=("https://github.com/googlei18n/noto-emoji/archive/v$_pkgver-license-apache.tar.gz;)
+sha256sums=('22d40e3b2a9f3f4dc0f1e758c2be8513e3e1a9d8843056466d7595b5476dbb86')
+
+prepare() {
+  cd noto-emoji-*
+  find -name '*.py' | xargs sed -e 's|/usr/bin/env python|/usr/bin/env 
python2|' -i
+  sed -e 's|python|python2|g' -i Makefile
+  ln -rs add_emoji_gsub.py third_party/color_emoji/
+}
+
+package() {
+  cd noto-emoji-*
+  make
+
+  mkdir -p "$pkgdir"/usr/share/fonts/noto
+  install -m644 NotoColorEmoji.ttf NotoEmoji-Regular.ttf 
"$pkgdir"/usr/share/fonts/noto
+}
+


Property changes on: noto-fonts-emoji/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: noto-fonts-emoji/trunk/noto-fonts-emoji.install
===
--- noto-fonts-emoji/trunk/noto-fonts-emoji.install 
(rev 0)
+++ noto-fonts-emoji/trunk/noto-fonts-emoji.install 2015-10-20 20:49:38 UTC 
(rev 249586)
@@ -0,0 +1,11 @@
+post_install() {
+  fc-cache -s
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  post_install $1
+}


[arch-commits] Commit in noto-fonts-emoji (4 files)

2015-10-20 Thread Antonio Rojas
Date: Tuesday, October 20, 2015 @ 22:50:16
  Author: arojas
Revision: 249587

archrelease: copy trunk to extra-any

Added:
  noto-fonts-emoji/repos/
  noto-fonts-emoji/repos/extra-any/
  noto-fonts-emoji/repos/extra-any/PKGBUILD
(from rev 249586, noto-fonts-emoji/trunk/PKGBUILD)
  noto-fonts-emoji/repos/extra-any/noto-fonts-emoji.install
(from rev 249586, noto-fonts-emoji/trunk/noto-fonts-emoji.install)

--+
 PKGBUILD |   32 
 noto-fonts-emoji.install |   11 +++
 2 files changed, 43 insertions(+)

Copied: noto-fonts-emoji/repos/extra-any/PKGBUILD (from rev 249586, 
noto-fonts-emoji/trunk/PKGBUILD)
===
--- repos/extra-any/PKGBUILD(rev 0)
+++ repos/extra-any/PKGBUILD2015-10-20 20:50:16 UTC (rev 249587)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgname=noto-fonts-emoji
+_pkgver=2015-09-29
+pkgver=${_pkgver//-}
+pkgrel=1
+pkgdesc="Google Noto emoji fonts"
+arch=(any)
+url="https://www.google.com/get/noto/;
+license=(Apache)
+depends=(fontconfig)
+makedepends=(cairo optipng python2-fonttools python-fonttools nototools)
+install=$pkgname.install
+source=("https://github.com/googlei18n/noto-emoji/archive/v$_pkgver-license-apache.tar.gz;)
+sha256sums=('22d40e3b2a9f3f4dc0f1e758c2be8513e3e1a9d8843056466d7595b5476dbb86')
+
+prepare() {
+  cd noto-emoji-*
+  find -name '*.py' | xargs sed -e 's|/usr/bin/env python|/usr/bin/env 
python2|' -i
+  sed -e 's|python|python2|g' -i Makefile
+  ln -rs add_emoji_gsub.py third_party/color_emoji/
+}
+
+package() {
+  cd noto-emoji-*
+  make
+
+  mkdir -p "$pkgdir"/usr/share/fonts/noto
+  install -m644 NotoColorEmoji.ttf NotoEmoji-Regular.ttf 
"$pkgdir"/usr/share/fonts/noto
+}
+

Copied: noto-fonts-emoji/repos/extra-any/noto-fonts-emoji.install (from rev 
249586, noto-fonts-emoji/trunk/noto-fonts-emoji.install)
===
--- repos/extra-any/noto-fonts-emoji.install(rev 0)
+++ repos/extra-any/noto-fonts-emoji.install2015-10-20 20:50:16 UTC (rev 
249587)
@@ -0,0 +1,11 @@
+post_install() {
+  fc-cache -s
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  post_install $1
+}


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

2015-10-20 Thread Florian Pritz
Date: Tuesday, October 20, 2015 @ 23:36:17
  Author: bluewind
Revision: 144530

upgpkg: filezilla 3.14.1-1

upstream update

Modified:
  filezilla/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-10-20 19:30:27 UTC (rev 144529)
+++ PKGBUILD2015-10-20 21:36:17 UTC (rev 144530)
@@ -3,7 +3,7 @@
 # Maintainer: Daniel J Griffiths 
 
 pkgname=filezilla
-pkgver=3.14.0
+pkgver=3.14.1
 pkgrel=1
 pkgdesc="Fast and reliable FTP, FTPS and SFTP client"
 arch=('i686' 'x86_64')
@@ -34,4 +34,4 @@
 
   make DESTDIR="${pkgdir}" install
 }
-md5sums=('b24f90a9fe55ea9dc5a54ccd75eacb0d')
+md5sums=('034e51344c866f4ecab75be80f71ba3b')


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

2015-10-20 Thread Florian Pritz
Date: Tuesday, October 20, 2015 @ 23:36:24
  Author: bluewind
Revision: 144531

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-10-20 21:36:17 UTC (rev 144530)
+++ community-i686/PKGBUILD 2015-10-20 21:36:24 UTC (rev 144531)
@@ -1,37 +0,0 @@
-# $Id$
-# Contributor: Alexander Fehr 
-# Maintainer: Daniel J Griffiths 
-
-pkgname=filezilla
-pkgver=3.14.0
-pkgrel=1
-pkgdesc="Fast and reliable FTP, FTPS and SFTP client"
-arch=('i686' 'x86_64')
-url="http://filezilla-project.org/;
-license=('GPL')
-depends=('dbus' 'xdg-utils' 'wxgtk' 'libidn' 'hicolor-icon-theme' 'sqlite' 
'gnutls')
-install=filezilla.install
-source=("http://downloads.sourceforge.net/project/filezilla/FileZilla_Client/${pkgver}/FileZilla_${pkgver}_src.tar.bz2;)
-
-prepare() {
-  cd "${pkgname}-${pkgver}"
-}
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  ./configure \
---prefix=/usr \
---disable-manualupdatecheck \
---disable-autoupdatecheck \
---disable-static \
---with-pugixml=builtin
-
-  make
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-
-  make DESTDIR="${pkgdir}" install
-}
-md5sums=('b24f90a9fe55ea9dc5a54ccd75eacb0d')

Copied: filezilla/repos/community-i686/PKGBUILD (from rev 144530, 
filezilla/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-10-20 21:36:24 UTC (rev 144531)
@@ -0,0 +1,37 @@
+# $Id$
+# Contributor: Alexander Fehr 
+# Maintainer: Daniel J Griffiths 
+
+pkgname=filezilla
+pkgver=3.14.1
+pkgrel=1
+pkgdesc="Fast and reliable FTP, FTPS and SFTP client"
+arch=('i686' 'x86_64')
+url="http://filezilla-project.org/;
+license=('GPL')
+depends=('dbus' 'xdg-utils' 'wxgtk' 'libidn' 'hicolor-icon-theme' 'sqlite' 
'gnutls')
+install=filezilla.install
+source=("http://downloads.sourceforge.net/project/filezilla/FileZilla_Client/${pkgver}/FileZilla_${pkgver}_src.tar.bz2;)
+
+prepare() {
+  cd "${pkgname}-${pkgver}"
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  ./configure \
+--prefix=/usr \
+--disable-manualupdatecheck \
+--disable-autoupdatecheck \
+--disable-static \
+--with-pugixml=builtin
+
+  make
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+
+  make DESTDIR="${pkgdir}" install
+}
+md5sums=('034e51344c866f4ecab75be80f71ba3b')

Deleted: community-i686/filezilla.install
===
--- community-i686/filezilla.install2015-10-20 21:36:17 UTC (rev 144530)
+++ community-i686/filezilla.install2015-10-20 21:36:24 UTC (rev 144531)
@@ -1,11 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: filezilla/repos/community-i686/filezilla.install (from rev 144530, 
filezilla/trunk/filezilla.install)
===
--- community-i686/filezilla.install(rev 0)
+++ community-i686/filezilla.install2015-10-20 21:36:24 UTC (rev 144531)
@@ -0,0 +1,11 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-10-20 21:36:17 UTC (rev 144530)
+++ community-x86_64/PKGBUILD   2015-10-20 21:36:24 UTC (rev 144531)
@@ -1,37 +0,0 @@
-# $Id$
-# Contributor: Alexander Fehr 
-# Maintainer: Daniel J Griffiths 
-
-pkgname=filezilla
-pkgver=3.14.0
-pkgrel=1
-pkgdesc="Fast and reliable FTP, FTPS and SFTP client"
-arch=('i686' 'x86_64')

  1   2   >