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

2015-09-25 Thread Sven-Hendrik Haase
Date: Saturday, September 26, 2015 @ 05:47:53
  Author: svenstaro
Revision: 141641

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

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

--+
 /PKGBUILD|  204 +
 /blender.install |   26 +++
 community-staging-i686/PKGBUILD  |  100 --
 community-staging-i686/blender.install   |   13 -
 community-staging-x86_64/PKGBUILD|  100 --
 community-staging-x86_64/blender.install |   13 -
 6 files changed, 230 insertions(+), 226 deletions(-)

Deleted: community-staging-i686/PKGBUILD
===
--- community-staging-i686/PKGBUILD 2015-09-26 03:47:46 UTC (rev 141640)
+++ community-staging-i686/PKGBUILD 2015-09-26 03:47:53 UTC (rev 141641)
@@ -1,100 +0,0 @@
-# $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-rc1
-#_gitcommit=c6b042be
-
-pkgname=blender
-pkgver=2.76rc1
-[[ -n $_gitcommit ]] && pkgver=${pkgver}.git1.${_gitcommit}
-pkgrel=1
-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')
-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
-
-  # We need this to build with Python 3.5/3.6, remove in a release after 
2.76rc1
-  git cherry-pick --no-commit 6844b02a71bd9d84af5bdbcb32eb49ea6ac552e7
-  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 \
--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 "${pkgdi

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

2015-09-25 Thread Sven-Hendrik Haase
Date: Saturday, September 26, 2015 @ 05:47:46
  Author: svenstaro
Revision: 141640

upgpkg: blender 17:2.76rc2-1

upstream release 2.76rc2

Modified:
  blender/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-26 02:53:45 UTC (rev 141639)
+++ PKGBUILD2015-09-26 03:47:46 UTC (rev 141640)
@@ -11,12 +11,12 @@
 # or simply roll with a new version. I usually choose the latter when the 
former seems
 # unreasonable.
 
-_gittag=v2.76-rc1
-#_gitcommit=c6b042be
+#_gittag=v2.76-rc2
+_gitcommit=e24ea81d65416d778ded6c7b9698dd673e2ed6b9
 
 pkgname=blender
-pkgver=2.76rc1
-[[ -n $_gitcommit ]] && pkgver=${pkgver}.git1.${_gitcommit}
+pkgver=2.76rc2
+#[[ -n $_gitcommit ]] && pkgver=${pkgver}.git1.${_gitcommit}
 pkgrel=1
 epoch=17
 pkgdesc="A fully integrated 3D graphics creation suite"
@@ -27,7 +27,7 @@
  'shared-mime-info' 'hicolor-icon-theme' 'xdg-utils' 'glew' 'openjpeg'
  'freetype2' 'openal' 'ffmpeg' 'fftw' 'boost-libs' 'opencollada'
  'openimageio' 'libsndfile' 'jack' 'opencolorio' 'openshadinglanguage'
- 'jemalloc' 'libspnav')
+ 'jemalloc' 'libspnav' 'ptex' 'opensubdiv')
 makedepends=('cmake' 'boost' 'mesa' 'git' 'llvm35')
 [[ $CARCH == x86_64 ]] && makedepends+=('cuda')
 optdepends=('cuda: cycles renderer cuda support')
@@ -84,6 +84,8 @@
 -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 \


[arch-commits] Commit in python-future/repos/community-staging-any (6 files)

2015-09-25 Thread Felix Yan
Date: Saturday, September 26, 2015 @ 04:53:45
  Author: fyan
Revision: 141639

archrelease: copy trunk to community-staging-any

Added:
  
python-future/repos/community-staging-any/0001-Remove-duplicate-assertion-in-builtins-tests.patch
(from rev 141638, 
python-future/trunk/0001-Remove-duplicate-assertion-in-builtins-tests.patch)
  python-future/repos/community-staging-any/PKGBUILD
(from rev 141638, python-future/trunk/PKGBUILD)
  
python-future/repos/community-staging-any/remove-two-expected-failure-decorators.patch
(from rev 141638, 
python-future/trunk/remove-two-expected-failure-decorators.patch)
Deleted:
  
python-future/repos/community-staging-any/0001-Remove-duplicate-assertion-in-builtins-tests.patch
  python-future/repos/community-staging-any/PKGBUILD
  
python-future/repos/community-staging-any/remove-two-expected-failure-decorators.patch

-+
 0001-Remove-duplicate-assertion-in-builtins-tests.patch |   54 ++--
 PKGBUILD|  156 +++---
 remove-two-expected-failure-decorators.patch|   40 +--
 3 files changed, 125 insertions(+), 125 deletions(-)

Deleted: 0001-Remove-duplicate-assertion-in-builtins-tests.patch
===
--- 0001-Remove-duplicate-assertion-in-builtins-tests.patch 2015-09-26 
02:53:18 UTC (rev 141638)
+++ 0001-Remove-duplicate-assertion-in-builtins-tests.patch 2015-09-26 
02:53:45 UTC (rev 141639)
@@ -1,27 +0,0 @@
-From 39a1186ea3a7a7ad1e8225a151e682d02bafdfa9 Mon Sep 17 00:00:00 2001
-From: Evangelos Foutras 
-Date: Sun, 20 Sep 2015 10:17:44 +0300
-Subject: [PATCH] Remove duplicate assertion in builtins tests
-
-The other instance of this assertion is commented out because it fails
-on Python 3.5; see commit 7959135e44a35de7dff4b56dcaf86d9b74d88329
-(Disable two assertions in builtins tests for Py3.5 compatibility).

- tests/test_future/test_builtins.py | 1 -
- 1 file changed, 1 deletion(-)
-
-diff --git a/tests/test_future/test_builtins.py 
b/tests/test_future/test_builtins.py
-index a6db4fd..84db01e 100644
 a/tests/test_future/test_builtins.py
-+++ b/tests/test_future/test_builtins.py
-@@ -529,7 +529,6 @@ class BuiltinTest(unittest.TestCase):
- self.assertRaises(TypeError, compile, 'pass', '?', 'exec',
-   mode='eval', source='0', filename='tmp')
- compile('print("\xe5")\n', '', 'exec')
--self.assertRaises(TypeError, compile, chr(0), 'f', 'exec')
- self.assertRaises(ValueError, compile, str('a = 1'), 'f', 'bad')
- 
- # test the optimize argument
--- 
-2.5.2
-

Copied: 
python-future/repos/community-staging-any/0001-Remove-duplicate-assertion-in-builtins-tests.patch
 (from rev 141638, 
python-future/trunk/0001-Remove-duplicate-assertion-in-builtins-tests.patch)
===
--- 0001-Remove-duplicate-assertion-in-builtins-tests.patch 
(rev 0)
+++ 0001-Remove-duplicate-assertion-in-builtins-tests.patch 2015-09-26 
02:53:45 UTC (rev 141639)
@@ -0,0 +1,27 @@
+From 39a1186ea3a7a7ad1e8225a151e682d02bafdfa9 Mon Sep 17 00:00:00 2001
+From: Evangelos Foutras 
+Date: Sun, 20 Sep 2015 10:17:44 +0300
+Subject: [PATCH] Remove duplicate assertion in builtins tests
+
+The other instance of this assertion is commented out because it fails
+on Python 3.5; see commit 7959135e44a35de7dff4b56dcaf86d9b74d88329
+(Disable two assertions in builtins tests for Py3.5 compatibility).
+---
+ tests/test_future/test_builtins.py | 1 -
+ 1 file changed, 1 deletion(-)
+
+diff --git a/tests/test_future/test_builtins.py 
b/tests/test_future/test_builtins.py
+index a6db4fd..84db01e 100644
+--- a/tests/test_future/test_builtins.py
 b/tests/test_future/test_builtins.py
+@@ -529,7 +529,6 @@ class BuiltinTest(unittest.TestCase):
+ self.assertRaises(TypeError, compile, 'pass', '?', 'exec',
+   mode='eval', source='0', filename='tmp')
+ compile('print("\xe5")\n', '', 'exec')
+-self.assertRaises(TypeError, compile, chr(0), 'f', 'exec')
+ self.assertRaises(ValueError, compile, str('a = 1'), 'f', 'bad')
+ 
+ # test the optimize argument
+-- 
+2.5.2
+

Deleted: PKGBUILD
===
--- PKGBUILD2015-09-26 02:53:18 UTC (rev 141638)
+++ PKGBUILD2015-09-26 02:53:45 UTC (rev 141639)
@@ -1,78 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Christopher Arndt 
-# Contributor: Gaute Hope 
-# Contributor: Melissa Padilla 
-
-pkgbase=python-future
-pkgname=(python-future python2-future)
-pkgver=0.15.2
-pkgrel=1
-pkgdesc="Clean single-source support for Python 3 and 2"
-url="http://python-future.org/";
-arch=('any')
-license=('MIT')
-makedepends=('python-setuptools' 'python2-setuptools')
-options=('!emptydirs')
-source=("https://pypi.python.or

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

2015-09-25 Thread Felix Yan
Date: Saturday, September 26, 2015 @ 04:53:18
  Author: fyan
Revision: 141638

upgpkg: python-future 0.15.2-2

don't add python 3 pycs into python2 package

Modified:
  python-future/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-26 02:44:33 UTC (rev 141637)
+++ PKGBUILD2015-09-26 02:53:18 UTC (rev 141638)
@@ -7,7 +7,7 @@
 pkgbase=python-future
 pkgname=(python-future python2-future)
 pkgver=0.15.2
-pkgrel=1
+pkgrel=2
 pkgdesc="Clean single-source support for Python 3 and 2"
 url="http://python-future.org/";
 arch=('any')
@@ -66,7 +66,7 @@
   depends=('python2')
   optdepends=('python2-setuptools: futurize2 and pasteurize2 scripts')
 
-  cd "$srcdir/future-$pkgver"
+  cd "$srcdir/future-$pkgver-py2"
 
   python2 setup.py install --root="$pkgdir" --optimize=1
 


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

2015-09-25 Thread Jan Steffens
Date: Saturday, September 26, 2015 @ 04:49:29
  Author: heftig
Revision: 247515

Fix dirty version handling

Modified:
  pulseaudio/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-25 23:00:05 UTC (rev 247514)
+++ PKGBUILD2015-09-26 02:49:29 UTC (rev 247515)
@@ -57,7 +57,10 @@
   cd $pkgbase-$pkgver
 
   _pulsever=$(./git-version-gen .tarball-version)
-  [[ $_pulsever = *.*.* ]] && _pulsever=${_pulsever%.*}
+  while [[ $_pulsever = *.*.* ]]; do
+_pulsever=${_pulsever%.*}
+  done
+  _pulsever=${_pulsever%%-*}
 
   make -j1 DESTDIR="$pkgdir" install \
 bashcompletiondir=/usr/share/bash-completion/completions


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

2015-09-25 Thread Felix Yan
Date: Saturday, September 26, 2015 @ 04:44:33
  Author: fyan
Revision: 141637

archrelease: copy trunk to community-staging-any

Added:
  transmageddon/repos/community-staging-any/
  transmageddon/repos/community-staging-any/PKGBUILD
(from rev 141636, transmageddon/trunk/PKGBUILD)
  transmageddon/repos/community-staging-any/transmageddon.install
(from rev 141636, transmageddon/trunk/transmageddon.install)

---+
 PKGBUILD  |   34 ++
 transmageddon.install |   11 +++
 2 files changed, 45 insertions(+)

Copied: transmageddon/repos/community-staging-any/PKGBUILD (from rev 141636, 
transmageddon/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2015-09-26 02:44:33 UTC (rev 141637)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Balló György 
+# Contributor: Dan Serban
+# Contributor: Federico Chiacchiaretta
+
+pkgname=transmageddon
+pkgver=1.5
+pkgrel=2
+pkgdesc="Simple python application for transcoding video into formats 
supported by GStreamer"
+arch=('any')
+url="http://www.linuxrising.org/";
+license=('LGPL')
+depends=('python-gobject' 'libnotify' 'gtk3' 'gst-plugins-base')
+makedepends=('intltool')
+optdepends=('gst-plugins-good: Extra media codecs'
+'gst-plugins-bad: Extra media codecs'
+'gst-plugins-ugly: Extra media codecs'
+'gst-libav: Extra media codecs')
+install=$pkgname.install
+source=(http://www.linuxrising.org/files/$pkgname-$pkgver.tar.xz)
+md5sums=('10ed82825a3494ada2b7542e5689dcf1')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir/" install
+}

Copied: transmageddon/repos/community-staging-any/transmageddon.install (from 
rev 141636, transmageddon/trunk/transmageddon.install)
===
--- community-staging-any/transmageddon.install (rev 0)
+++ community-staging-any/transmageddon.install 2015-09-26 02:44:33 UTC (rev 
141637)
@@ -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 transmageddon/trunk (PKGBUILD)

2015-09-25 Thread Felix Yan
Date: Saturday, September 26, 2015 @ 04:44:14
  Author: fyan
Revision: 141636

upgpkg: transmageddon 1.5-2

rebuild for python 3.5

Modified:
  transmageddon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-26 02:43:41 UTC (rev 141635)
+++ PKGBUILD2015-09-26 02:44:14 UTC (rev 141636)
@@ -5,7 +5,7 @@
 
 pkgname=transmageddon
 pkgver=1.5
-pkgrel=1
+pkgrel=2
 pkgdesc="Simple python application for transcoding video into formats 
supported by GStreamer"
 arch=('any')
 url="http://www.linuxrising.org/";


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

2015-09-25 Thread Felix Yan
Date: Saturday, September 26, 2015 @ 04:43:01
  Author: fyan
Revision: 141634

upgpkg: pitivi 0.94-2

rebuild for python 3.5

Modified:
  pitivi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-26 02:42:29 UTC (rev 141633)
+++ PKGBUILD2015-09-26 02:43:01 UTC (rev 141634)
@@ -5,7 +5,7 @@
 
 pkgname=pitivi
 pkgver=0.94
-pkgrel=1
+pkgrel=2
 pkgdesc="Editor for audio/video projects using the GStreamer framework"
 arch=('i686' 'x86_64')
 url="http://www.pitivi.org/";


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

2015-09-25 Thread Felix Yan
Date: Saturday, September 26, 2015 @ 04:43:41
  Author: fyan
Revision: 141635

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

Added:
  pitivi/repos/community-staging-i686/
  pitivi/repos/community-staging-i686/ChangeLog
(from rev 141634, pitivi/trunk/ChangeLog)
  pitivi/repos/community-staging-i686/PKGBUILD
(from rev 141634, pitivi/trunk/PKGBUILD)
  pitivi/repos/community-staging-i686/pitivi.install
(from rev 141634, pitivi/trunk/pitivi.install)
  pitivi/repos/community-staging-x86_64/
  pitivi/repos/community-staging-x86_64/ChangeLog
(from rev 141634, pitivi/trunk/ChangeLog)
  pitivi/repos/community-staging-x86_64/PKGBUILD
(from rev 141634, pitivi/trunk/PKGBUILD)
  pitivi/repos/community-staging-x86_64/pitivi.install
(from rev 141634, pitivi/trunk/pitivi.install)

-+
 community-staging-i686/ChangeLog|   41 ++
 community-staging-i686/PKGBUILD |   35 +
 community-staging-i686/pitivi.install   |   13 +
 community-staging-x86_64/ChangeLog  |   41 ++
 community-staging-x86_64/PKGBUILD   |   35 +
 community-staging-x86_64/pitivi.install |   13 +
 6 files changed, 178 insertions(+)

Copied: pitivi/repos/community-staging-i686/ChangeLog (from rev 141634, 
pitivi/trunk/ChangeLog)
===
--- community-staging-i686/ChangeLog(rev 0)
+++ community-staging-i686/ChangeLog2015-09-26 02:43:41 UTC (rev 141635)
@@ -0,0 +1,41 @@
+pitivi (0.13.1-2)
+
+  * Update hicolor icon cache.
+  * Update mime database.
+
+ -- Abhishek Dasgupta  Thu, 23 Jul 2009 11:57:49 +0530
+
+pitivi (0.13.1-1)
+
+  * New upstream version.
+  * Removed: fix-as-problems.diff pitivi.desktop
+
+ -- Abhishek Dasgupta  Wed, 24 Jun 2009 16:01:42 +0530
+
+pitivi (0.11.3-1)
+
+  * New upstream version.
+  * fix-as-problems.diff: Fixed the problem caused by "as" in
+pitivi/timeline/timeline.py
+
+ -- Abhishek Dasgupta  Sat, 13 Dec 2008 16:29:24 +0530
+
+pitivi (0.11.2-4)
+
+  * Added gnome-icon-theme as dependency. Closes: FS# 12292.
+
+ -- Abhishek Dasgupta  Mon, 01 Dec 2008 23:08:28 +0530
+
+pitivi (0.11.2-3)
+
+  * fix-as.diff: Fixed the error 
+in pitivi/objectfactory.py caused by the line
+as = self.audio_info_stream
+
+ -- Abhishek Dasgupta  Sun, 09 Nov 2008 00:34:22 +0530
+
+pitivi (0.11.2-2)
+
+  * Added dbus-python as dependency.
+
+ -- Abhishek Dasgupta  Sun, 26 Oct 2008 14:08:06 +0530

Copied: pitivi/repos/community-staging-i686/PKGBUILD (from rev 141634, 
pitivi/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-09-26 02:43:41 UTC (rev 141635)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Abhishek Dasgupta 
+# Contributor: Gabor Nyekhelyi (n0gabor) 
+
+pkgname=pitivi
+pkgver=0.94
+pkgrel=2
+pkgdesc="Editor for audio/video projects using the GStreamer framework"
+arch=('i686' 'x86_64')
+url="http://www.pitivi.org/";
+license=('LGPL')
+depends=('clutter-gtk' 'gnonlin' 'gst-editing-services' 'gst-plugins-good' 
'gst-python'
+ 'libnotify' 'python-gobject' 'python-numpy' 'python-cairo'
+ 'gnome-icon-theme' 'desktop-file-utils' 'clutter-gst')
+makedepends=('intltool' 'itstool')
+optdepends=('frei0r-plugins: additional video effects, clip transformation 
feature'
+'gst-libav: additional multimedia codecs'
+'gst-plugins-bad: additional multimedia codecs'
+'gst-plugins-ugly: additional multimedia codecs'
+'gnome-desktop: file thumbnails provided by GNOME'\''s 
thumbnailers')
+install=$pkgname.install
+source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/$pkgver/$pkgname-$pkgver.tar.xz)
+md5sums=('1617825f763959a674ab6bb66f70e670')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir/" install
+}

Copied: pitivi/repos/community-staging-i686/pitivi.install (from rev 141634, 
pitivi/trunk/pitivi.install)
===
--- community-staging-i686/pitivi.install   (rev 0)
+++ community-staging-i686/pitivi.install   2015-09-26 02:43:41 UTC (rev 
141635)
@@ -0,0 +1,13 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+  update-mime-database usr/share/mime >/dev/null
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Copied: pitivi/repos/community-staging-x86_64/ChangeLog (from rev 141634, 
pitivi/trunk/ChangeLog)
===
--- community-s

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

2015-09-25 Thread Felix Yan
Date: Saturday, September 26, 2015 @ 04:42:29
  Author: fyan
Revision: 141633

archrelease: copy trunk to community-staging-any

Added:
  python-tox/repos/community-staging-any/PKGBUILD
(from rev 141632, python-tox/trunk/PKGBUILD)
Deleted:
  python-tox/repos/community-staging-any/PKGBUILD

--+
 PKGBUILD |  150 ++---
 1 file changed, 75 insertions(+), 75 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-09-26 02:42:08 UTC (rev 141632)
+++ PKGBUILD2015-09-26 02:42:29 UTC (rev 141633)
@@ -1,75 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Thomas Weißschuh 
-# Contributor: George Brooke 
-# Contributor: Sebastian Wiesner 
-
-pkgbase=python-tox
-pkgname=(python-tox python2-tox)
-pkgver=2.1.1
-pkgrel=2
-pkgdesc='Python virtualenv management and testing tool'
-arch=('any')
-url='http://testrun.org/tox/latest/'
-license=('GPL2')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-py' 'python2-py' 
'python-virtualenv' 'python2-virtualenv' 'python-pluggy' 'python2-pluggy')
-checkdepends=('python-pytest' 'python2-pytest' 'python-pip' 'python2-pip')
-source=("http://pypi.python.org/packages/source/t/tox/tox-${pkgver}.tar.gz";)
-sha256sums=('a03aa022a1f6f82cc21732af0ed48217a3c16873b98e16be22baa7cea74e1eef')
-
-prepare() {
-  cp -a tox-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir/tox-$pkgver"
-  python setup.py build
-
-  cd "$srcdir/tox-$pkgver-py2"
-  python2 setup.py build
-}
-
-check() {
-  # TODO: Make the workaround less dirty
-  mkdir "$srcdir/bin"
-  touch "$srcdir/bin/tox"
-  chmod +x "$srcdir/bin/tox"
-  export PATH="$srcdir/bin:$PATH"
-
-  cd "$srcdir/tox-$pkgver"
-  cat > "$srcdir/bin/tox" << EOF
-#!/usr/bin/env python
-import sys
-from tox import cmdline
-sys.exit(cmdline())
-EOF
-
-  XDG_CACHE_HOME="$srcdir" PYTHONPATH="$PWD/build/lib:$PYTHONPATH" py.test
-
-  cd "$srcdir/tox-$pkgver-py2"
-  cat > "$srcdir/bin/tox" << EOF
-#!/usr/bin/env python2
-import sys
-from tox import cmdline
-sys.exit(cmdline())
-EOF
-
-  XDG_CACHE_HOME="$srcdir" PYTHONPATH="$PWD/build/lib:$PYTHONPATH" py.test2
-}
-
-package_python-tox() {
-  depends=('python-py' 'python-virtualenv' 'python-setuptools' 'python-pluggy')
-
-  cd "$srcdir/tox-$pkgver"
-  python setup.py install --root="$pkgdir" --optimize=1
-  ln -s tox "${pkgdir}/usr/bin/tox3"
-}
-
-package_python2-tox() {
-  depends=('python2-py' 'python2-virtualenv' 'python2-setuptools' 
'python2-pluggy')
-
-  cd "$srcdir/tox-$pkgver"
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  mv "${pkgdir}"/usr/bin/tox{,2}
-  mv "${pkgdir}"/usr/bin/{tox-quickstart,tox2-quickstart}
-}

Copied: python-tox/repos/community-staging-any/PKGBUILD (from rev 141632, 
python-tox/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-09-26 02:42:29 UTC (rev 141633)
@@ -0,0 +1,75 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Thomas Weißschuh 
+# Contributor: George Brooke 
+# Contributor: Sebastian Wiesner 
+
+pkgbase=python-tox
+pkgname=(python-tox python2-tox)
+pkgver=2.1.1
+pkgrel=3
+pkgdesc='Python virtualenv management and testing tool'
+arch=('any')
+url='http://testrun.org/tox/latest/'
+license=('GPL2')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-py' 'python2-py' 
'python-virtualenv' 'python2-virtualenv' 'python-pluggy' 'python2-pluggy')
+checkdepends=('python-pytest' 'python2-pytest' 'python-pip' 'python2-pip')
+source=("http://pypi.python.org/packages/source/t/tox/tox-${pkgver}.tar.gz";)
+sha256sums=('a03aa022a1f6f82cc21732af0ed48217a3c16873b98e16be22baa7cea74e1eef')
+
+prepare() {
+  cp -a tox-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir/tox-$pkgver"
+  python setup.py build
+
+  cd "$srcdir/tox-$pkgver-py2"
+  python2 setup.py build
+}
+
+check() {
+  # TODO: Make the workaround less dirty
+  mkdir "$srcdir/bin"
+  touch "$srcdir/bin/tox"
+  chmod +x "$srcdir/bin/tox"
+  export PATH="$srcdir/bin:$PATH"
+
+  cd "$srcdir/tox-$pkgver"
+  cat > "$srcdir/bin/tox" << EOF
+#!/usr/bin/env python
+import sys
+from tox import cmdline
+sys.exit(cmdline())
+EOF
+
+  XDG_CACHE_HOME="$srcdir" PYTHONPATH="$PWD/build/lib:$PYTHONPATH" py.test
+
+  cd "$srcdir/tox-$pkgver-py2"
+  cat > "$srcdir/bin/tox" << EOF
+#!/usr/bin/env python2
+import sys
+from tox import cmdline
+sys.exit(cmdline())
+EOF
+
+  XDG_CACHE_HOME="$srcdir" PYTHONPATH="$PWD/build/lib:$PYTHONPATH" py.test2
+}
+
+package_python-tox() {
+  depends=('python-py' 'python-virtualenv' 'python-setuptools' 'python-pluggy')
+
+  cd "$srcdir/tox-$pkgver"
+  python setup.py install --root="$pkgdir" --optimize=1
+  ln -s tox "${pkgdir}/usr/bin/tox3"
+}
+
+package_python2-tox() {
+  depends=('python2-py' 'python2-virtualenv' 'python2-setuptools' 
'python2-pluggy')
+
+  cd "$srcdir/tox-$pkgver-py2"
+  python2 setup.py install --root="$pkgdir" --optimize=1
+

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

2015-09-25 Thread Felix Yan
Date: Saturday, September 26, 2015 @ 04:42:08
  Author: fyan
Revision: 141632

upgpkg: python-tox 2.1.1-3

fix python 3.x pycs in python2 package

Modified:
  python-tox/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-26 02:41:13 UTC (rev 141631)
+++ PKGBUILD2015-09-26 02:42:08 UTC (rev 141632)
@@ -7,7 +7,7 @@
 pkgbase=python-tox
 pkgname=(python-tox python2-tox)
 pkgver=2.1.1
-pkgrel=2
+pkgrel=3
 pkgdesc='Python virtualenv management and testing tool'
 arch=('any')
 url='http://testrun.org/tox/latest/'
@@ -68,7 +68,7 @@
 package_python2-tox() {
   depends=('python2-py' 'python2-virtualenv' 'python2-setuptools' 
'python2-pluggy')
 
-  cd "$srcdir/tox-$pkgver"
+  cd "$srcdir/tox-$pkgver-py2"
   python2 setup.py install --root="$pkgdir" --optimize=1
   mv "${pkgdir}"/usr/bin/tox{,2}
   mv "${pkgdir}"/usr/bin/{tox-quickstart,tox2-quickstart}


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

2015-09-25 Thread Felix Yan
Date: Saturday, September 26, 2015 @ 04:41:13
  Author: fyan
Revision: 141631

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

Added:
  gloobus-preview/repos/community-staging-i686/
  gloobus-preview/repos/community-staging-i686/PKGBUILD
(from rev 141630, gloobus-preview/trunk/PKGBUILD)
  gloobus-preview/repos/community-staging-i686/gloobus-preview.install
(from rev 141630, gloobus-preview/trunk/gloobus-preview.install)
  gloobus-preview/repos/community-staging-x86_64/
  gloobus-preview/repos/community-staging-x86_64/PKGBUILD
(from rev 141630, gloobus-preview/trunk/PKGBUILD)
  gloobus-preview/repos/community-staging-x86_64/gloobus-preview.install
(from rev 141630, gloobus-preview/trunk/gloobus-preview.install)

--+
 community-staging-i686/PKGBUILD  |   35 +
 community-staging-i686/gloobus-preview.install   |   15 +
 community-staging-x86_64/PKGBUILD|   35 +
 community-staging-x86_64/gloobus-preview.install |   15 +
 4 files changed, 100 insertions(+)

Copied: gloobus-preview/repos/community-staging-i686/PKGBUILD (from rev 141630, 
gloobus-preview/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-09-26 02:41:13 UTC (rev 141631)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Balló György 
+
+pkgname=gloobus-preview
+pkgver=0.4.5.333
+pkgrel=2
+pkgdesc="GNOME application designed to enable a full screen preview of any 
kind of file"
+arch=('i686' 'x86_64')
+url="http://gloobus.net/";
+license=('GPL')
+depends=('gst-plugins-base' 'gtksourceview3' 'poppler-glib' 'python-dbus' 
'python-gobject')
+makedepends=('boost' 'bzr' 'djvulibre' 'libgxps' 'libspectre')
+optdepends=('djvulibre: Preview DjVu documents'
+'gst-libav: Extra media codecs'
+'gst-plugins-bad: Extra media codecs'
+'gst-plugins-good: Extra media codecs'
+'gst-plugins-ugly: Extra media codecs'
+'imagemagick: Support for more image formats'
+'libgxps: Preview XPS documents'
+'libspectre: Preview PostScript documents'
+'unoconv: Preview LibreOffice compatible documents')
+install=$pkgname.install
+source=($pkgname-$pkgver::bzr+http://bazaar.launchpad.net/~gloobus-dev/gloobus-preview/last_working_branch#revision=333)
+md5sums=('SKIP')
+
+build() {
+  cd $pkgname-$pkgver
+  ./autogen.sh --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Copied: gloobus-preview/repos/community-staging-i686/gloobus-preview.install 
(from rev 141630, gloobus-preview/trunk/gloobus-preview.install)
===
--- community-staging-i686/gloobus-preview.install  
(rev 0)
+++ community-staging-i686/gloobus-preview.install  2015-09-26 02:41:13 UTC 
(rev 141631)
@@ -0,0 +1,15 @@
+post_install() {
+  xdg-icon-resource forceupdate
+}
+
+post_upgrade() {
+  post_install $1
+
+  if [ "$(vercmp 0.4.5.333-1 "$2")" -eq 1 ]; then
+gdk-pixbuf-query-loaders --update-cache
+  fi
+}
+
+post_remove() {
+  post_install $1
+}

Copied: gloobus-preview/repos/community-staging-x86_64/PKGBUILD (from rev 
141630, gloobus-preview/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-09-26 02:41:13 UTC (rev 141631)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Balló György 
+
+pkgname=gloobus-preview
+pkgver=0.4.5.333
+pkgrel=2
+pkgdesc="GNOME application designed to enable a full screen preview of any 
kind of file"
+arch=('i686' 'x86_64')
+url="http://gloobus.net/";
+license=('GPL')
+depends=('gst-plugins-base' 'gtksourceview3' 'poppler-glib' 'python-dbus' 
'python-gobject')
+makedepends=('boost' 'bzr' 'djvulibre' 'libgxps' 'libspectre')
+optdepends=('djvulibre: Preview DjVu documents'
+'gst-libav: Extra media codecs'
+'gst-plugins-bad: Extra media codecs'
+'gst-plugins-good: Extra media codecs'
+'gst-plugins-ugly: Extra media codecs'
+'imagemagick: Support for more image formats'
+'libgxps: Preview XPS documents'
+'libspectre: Preview PostScript documents'
+'unoconv: Preview LibreOffice compatible documents')
+install=$pkgname.install
+source=($pkgname-$pkgver::bzr+http://bazaar.launchpad.net/~gloobus-dev/gloobus-preview/last_working_branch#revision=333)
+md5sums=('SKIP')
+
+build() {
+  cd $pkgname-$pkgver
+  ./autogen.sh --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Copied: gloobus-preview/repos/community-staging-x86_64/gloobus-preview.install 
(from rev

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

2015-09-25 Thread Felix Yan
Date: Saturday, September 26, 2015 @ 04:40:42
  Author: fyan
Revision: 141630

upgpkg: gloobus-preview 0.4.5.333-2

rebuild for python 3.5

Modified:
  gloobus-preview/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-26 02:37:56 UTC (rev 141629)
+++ PKGBUILD2015-09-26 02:40:42 UTC (rev 141630)
@@ -3,7 +3,7 @@
 
 pkgname=gloobus-preview
 pkgver=0.4.5.333
-pkgrel=1
+pkgrel=2
 pkgdesc="GNOME application designed to enable a full screen preview of any 
kind of file"
 arch=('i686' 'x86_64')
 url="http://gloobus.net/";


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

2015-09-25 Thread Felix Yan
Date: Saturday, September 26, 2015 @ 04:37:56
  Author: fyan
Revision: 141629

archrelease: copy trunk to community-staging-any

Added:
  ibus-table/repos/community-staging-any/
  ibus-table/repos/community-staging-any/PKGBUILD
(from rev 141628, ibus-table/trunk/PKGBUILD)
  ibus-table/repos/community-staging-any/sgml_fix.patch
(from rev 141628, ibus-table/trunk/sgml_fix.patch)

+
 PKGBUILD   |   42 ++
 sgml_fix.patch |   24 
 2 files changed, 66 insertions(+)

Copied: ibus-table/repos/community-staging-any/PKGBUILD (from rev 141628, 
ibus-table/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2015-09-26 02:37:56 UTC (rev 141629)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: coderoar 
+# Contributor: leemars 
+# Contributor: Daniel J Griffiths 
+
+pkgname=ibus-table
+pkgver=1.9.6
+pkgrel=2
+pkgdesc='IM Engine framework for table-based input methods, such as ZhengMa, 
WuBi, ErBi, CangJie and so on'
+arch=('any')
+url="http://code.google.com/p/ibus/";
+license=('LGPL')
+makedepends=('git' 'docbook2x' 'docbook-sgml')
+depends=('python-pyenchant' 'ibus' 'aspell-en')
+source=("git+https://github.com/kaio/ibus-table.git#tag=$pkgver";
+sgml_fix.patch)
+sha512sums=('SKIP'
+
'930cd45e9687295159c44d5d4133e99a2259fb8f2ed51675b55b18ca59acb410144689a2d51b052b7bbcbe061f8135ebd511898658d1c71e7004303df969c880')
+
+prepare() {
+  cd ${pkgname}
+
+  patch -p1 -i ../sgml_fix.patch
+}
+
+build() {
+  cd $pkgname
+
+  PYTHON=/usr/bin/python3 ./autogen.sh \
+--prefix=/usr \
+--libexecdir=/usr/lib/ibus
+
+  make
+}
+
+package() {
+  cd ${pkgname}
+
+  make DESTDIR="${pkgdir}" install
+}
+

Copied: ibus-table/repos/community-staging-any/sgml_fix.patch (from rev 141628, 
ibus-table/trunk/sgml_fix.patch)
===
--- community-staging-any/sgml_fix.patch(rev 0)
+++ community-staging-any/sgml_fix.patch2015-09-26 02:37:56 UTC (rev 
141629)
@@ -0,0 +1,24 @@
+diff --git a/engine/Makefile.am b/engine/Makefile.am
+index 1334876..1836439 100644
+--- a/engine/Makefile.am
 b/engine/Makefile.am
+@@ -21,6 +21,7 @@
+ 
+ DOC2MAN = docbook2man
+ SGML = ibus-table-createdb.sgml
++XML = ibus-table-createdb.xml
+ BUILT_MANS = ibus-table-createdb.1
+ man_MANS = $(BUILT_MANS)
+ 
+@@ -65,8 +66,9 @@ MAINTAINERCLEANFILES = \
+ 
+ ${man_MANS}: ${SGML}
+   $(AM_V_GEN) $(RM) $@; \
+-  $(DOC2MAN) ${SGML}; \
+-  $(RM) manpage.*
++  SGML_CATALOG_FILES=/etc/sgml/catalog sgml2xml -xlower -xid ${SGML} > 
${XML}; \
++  $(DOC2MAN) ${XML}; \
++  $(RM) manpage.* ${XML}
+ 
+ table.xml: table.xml.in
+   ( \


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

2015-09-25 Thread Felix Yan
Date: Saturday, September 26, 2015 @ 04:37:37
  Author: fyan
Revision: 141628

upgpkg: ibus-table 1.9.6-2

rebuild for python 3.5

Modified:
  ibus-table/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-26 02:37:01 UTC (rev 141627)
+++ PKGBUILD2015-09-26 02:37:37 UTC (rev 141628)
@@ -6,7 +6,7 @@
 
 pkgname=ibus-table
 pkgver=1.9.6
-pkgrel=1
+pkgrel=2
 pkgdesc='IM Engine framework for table-based input methods, such as ZhengMa, 
WuBi, ErBi, CangJie and so on'
 arch=('any')
 url="http://code.google.com/p/ibus/";


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

2015-09-25 Thread Felix Yan
Date: Saturday, September 26, 2015 @ 04:37:01
  Author: fyan
Revision: 141627

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

Added:
  ibus-anthy/repos/community-staging-i686/
  ibus-anthy/repos/community-staging-i686/PKGBUILD
(from rev 141626, ibus-anthy/trunk/PKGBUILD)
  ibus-anthy/repos/community-staging-i686/ibus-anthy.install
(from rev 141626, ibus-anthy/trunk/ibus-anthy.install)
  ibus-anthy/repos/community-staging-x86_64/
  ibus-anthy/repos/community-staging-x86_64/PKGBUILD
(from rev 141626, ibus-anthy/trunk/PKGBUILD)
  ibus-anthy/repos/community-staging-x86_64/ibus-anthy.install
(from rev 141626, ibus-anthy/trunk/ibus-anthy.install)

-+
 community-staging-i686/PKGBUILD |   31 ++
 community-staging-i686/ibus-anthy.install   |   11 +
 community-staging-x86_64/PKGBUILD   |   31 ++
 community-staging-x86_64/ibus-anthy.install |   11 +
 4 files changed, 84 insertions(+)

Copied: ibus-anthy/repos/community-staging-i686/PKGBUILD (from rev 141626, 
ibus-anthy/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-09-26 02:37:01 UTC (rev 141627)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Rainy 
+# Contributor: Lee.MaRS 
+# Contributor: Daniel J Griffiths 
+
+pkgname=ibus-anthy
+pkgver=1.5.7
+pkgrel=2
+pkgdesc='Japanese input method Anthy IMEngine for IBus Framework'
+arch=('i686' 'x86_64')
+license=('LGPL')
+url='http://ibus.googlecode.com'
+depends=('ibus' 'anthy' 'python' 'gtk-update-icon-cache' 'python-gobject')
+makedepends=('intltool' 'git' 'gobject-introspection')
+install=$pkgname.install
+source=("git+https://github.com/ibus/ibus-anthy.git#tag=$pkgver";)
+sha512sums=('SKIP')
+
+build() {
+  cd $pkgname
+
+  ./autogen.sh --prefix=/usr --libexec=/usr/lib/ibus
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir/" install
+}
+

Copied: ibus-anthy/repos/community-staging-i686/ibus-anthy.install (from rev 
141626, ibus-anthy/trunk/ibus-anthy.install)
===
--- community-staging-i686/ibus-anthy.install   (rev 0)
+++ community-staging-i686/ibus-anthy.install   2015-09-26 02:37:01 UTC (rev 
141627)
@@ -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: ibus-anthy/repos/community-staging-x86_64/PKGBUILD (from rev 141626, 
ibus-anthy/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-09-26 02:37:01 UTC (rev 141627)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Rainy 
+# Contributor: Lee.MaRS 
+# Contributor: Daniel J Griffiths 
+
+pkgname=ibus-anthy
+pkgver=1.5.7
+pkgrel=2
+pkgdesc='Japanese input method Anthy IMEngine for IBus Framework'
+arch=('i686' 'x86_64')
+license=('LGPL')
+url='http://ibus.googlecode.com'
+depends=('ibus' 'anthy' 'python' 'gtk-update-icon-cache' 'python-gobject')
+makedepends=('intltool' 'git' 'gobject-introspection')
+install=$pkgname.install
+source=("git+https://github.com/ibus/ibus-anthy.git#tag=$pkgver";)
+sha512sums=('SKIP')
+
+build() {
+  cd $pkgname
+
+  ./autogen.sh --prefix=/usr --libexec=/usr/lib/ibus
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir/" install
+}
+

Copied: ibus-anthy/repos/community-staging-x86_64/ibus-anthy.install (from rev 
141626, ibus-anthy/trunk/ibus-anthy.install)
===
--- community-staging-x86_64/ibus-anthy.install (rev 0)
+++ community-staging-x86_64/ibus-anthy.install 2015-09-26 02:37:01 UTC (rev 
141627)
@@ -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 ibus-hangul/repos (6 files)

2015-09-25 Thread Felix Yan
Date: Saturday, September 26, 2015 @ 04:36:24
  Author: fyan
Revision: 141625

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

Added:
  ibus-hangul/repos/community-staging-i686/
  ibus-hangul/repos/community-staging-i686/PKGBUILD
(from rev 141624, ibus-hangul/trunk/PKGBUILD)
  ibus-hangul/repos/community-staging-i686/ibus-hangul.install
(from rev 141624, ibus-hangul/trunk/ibus-hangul.install)
  ibus-hangul/repos/community-staging-x86_64/
  ibus-hangul/repos/community-staging-x86_64/PKGBUILD
(from rev 141624, ibus-hangul/trunk/PKGBUILD)
  ibus-hangul/repos/community-staging-x86_64/ibus-hangul.install
(from rev 141624, ibus-hangul/trunk/ibus-hangul.install)

--+
 community-staging-i686/PKGBUILD  |   33 +
 community-staging-i686/ibus-hangul.install   |   11 
 community-staging-x86_64/PKGBUILD|   33 +
 community-staging-x86_64/ibus-hangul.install |   11 
 4 files changed, 88 insertions(+)

Copied: ibus-hangul/repos/community-staging-i686/PKGBUILD (from rev 141624, 
ibus-hangul/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-09-26 02:36:24 UTC (rev 141625)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Radim Hvizdák 
+
+pkgname=ibus-hangul
+pkgver=1.5.0
+pkgrel=2
+pkgdesc='Korean input engine for IBus'
+arch=('i686' 'x86_64')
+url='http://ibus.googlecode.com'
+license=('GPL')
+depends=('ibus' 'libhangul' 'iso-codes' 'gtk-update-icon-cache' 
'python-gobject')
+makedepends=('intltool' 'gnome-common')
+install=ibus-hangul.install
+source=("$pkgname-$pkgver.tar.gz::https://github.com/choehwanjin/ibus-hangul/archive/${pkgver}.tar.gz";)
+sha512sums=('1cd9e985d3216c5d2e36e63f3a1de45b10e138d49a112cb97a8619ee285804abcf4637b14f07bf571641374d4d5844b113495d2f648fa23cc62db66dda4d8b10')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  autoreconf --verbose --force --install
+  intltoolize --automake --force --copy
+  ./configure --prefix=/usr --libexecdir=/usr/lib/ibus
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make NO_INDEX=true DESTDIR="${pkgdir}" install
+
+  # Fix symlink
+  ln -sf ../lib/ibus/ibus-setup-hangul "$pkgdir/usr/bin/ibus-setup-hangul"
+}

Copied: ibus-hangul/repos/community-staging-i686/ibus-hangul.install (from rev 
141624, ibus-hangul/trunk/ibus-hangul.install)
===
--- community-staging-i686/ibus-hangul.install  (rev 0)
+++ community-staging-i686/ibus-hangul.install  2015-09-26 02:36:24 UTC (rev 
141625)
@@ -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: ibus-hangul/repos/community-staging-x86_64/PKGBUILD (from rev 141624, 
ibus-hangul/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-09-26 02:36:24 UTC (rev 141625)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Radim Hvizdák 
+
+pkgname=ibus-hangul
+pkgver=1.5.0
+pkgrel=2
+pkgdesc='Korean input engine for IBus'
+arch=('i686' 'x86_64')
+url='http://ibus.googlecode.com'
+license=('GPL')
+depends=('ibus' 'libhangul' 'iso-codes' 'gtk-update-icon-cache' 
'python-gobject')
+makedepends=('intltool' 'gnome-common')
+install=ibus-hangul.install
+source=("$pkgname-$pkgver.tar.gz::https://github.com/choehwanjin/ibus-hangul/archive/${pkgver}.tar.gz";)
+sha512sums=('1cd9e985d3216c5d2e36e63f3a1de45b10e138d49a112cb97a8619ee285804abcf4637b14f07bf571641374d4d5844b113495d2f648fa23cc62db66dda4d8b10')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  autoreconf --verbose --force --install
+  intltoolize --automake --force --copy
+  ./configure --prefix=/usr --libexecdir=/usr/lib/ibus
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make NO_INDEX=true DESTDIR="${pkgdir}" install
+
+  # Fix symlink
+  ln -sf ../lib/ibus/ibus-setup-hangul "$pkgdir/usr/bin/ibus-setup-hangul"
+}

Copied: ibus-hangul/repos/community-staging-x86_64/ibus-hangul.install (from 
rev 141624, ibus-hangul/trunk/ibus-hangul.install)
===
--- community-staging-x86_64/ibus-hangul.install
(rev 0)
+++ community-staging-x86_64/ibus-hangul.install2015-09-26 02:36:24 UTC 
(rev 141625)
@@ -0,0 +1,11 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_rem

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

2015-09-25 Thread Felix Yan
Date: Saturday, September 26, 2015 @ 04:35:54
  Author: fyan
Revision: 141624

upgpkg: ibus-hangul 1.5.0-2

rebuild for python 3.5

Modified:
  ibus-hangul/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-26 02:01:13 UTC (rev 141623)
+++ PKGBUILD2015-09-26 02:35:54 UTC (rev 141624)
@@ -5,7 +5,7 @@
 
 pkgname=ibus-hangul
 pkgver=1.5.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Korean input engine for IBus'
 arch=('i686' 'x86_64')
 url='http://ibus.googlecode.com'


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

2015-09-25 Thread Felix Yan
Date: Saturday, September 26, 2015 @ 04:36:32
  Author: fyan
Revision: 141626

upgpkg: ibus-anthy 1.5.7-2

rebuild for python 3.5

Modified:
  ibus-anthy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-26 02:36:24 UTC (rev 141625)
+++ PKGBUILD2015-09-26 02:36:32 UTC (rev 141626)
@@ -6,7 +6,7 @@
 
 pkgname=ibus-anthy
 pkgver=1.5.7
-pkgrel=1
+pkgrel=2
 pkgdesc='Japanese input method Anthy IMEngine for IBus Framework'
 arch=('i686' 'x86_64')
 license=('LGPL')


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

2015-09-25 Thread Sven-Hendrik Haase
Date: Saturday, September 26, 2015 @ 04:01:13
  Author: svenstaro
Revision: 141623

New site

Modified:
  stuntrally-data/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-26 02:00:54 UTC (rev 141622)
+++ PKGBUILD2015-09-26 02:01:13 UTC (rev 141623)
@@ -7,7 +7,7 @@
 pkgdesc="Stunt Rally game with track editor, based on VDrift (data files)"
 arch=('any')
 license=('GPL3')
-url="http://code.google.com/p/vdrift-ogre";
+url="http://stuntrally.tuxfamily.org";
 makedepends=('cmake' 'boost' 'libvorbis' 'mygui' 'sdl2' 'enet' 
'hicolor-icon-theme' 'libxcursor' 'bullet' 'openal')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/stuntrally/stuntrally/archive/${pkgver}.tar.gz";
 
"$pkgname-tracks-$pkgver.tar.gz::https://github.com/stuntrally/tracks/archive/${pkgver}.tar.gz";)


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

2015-09-25 Thread Sven-Hendrik Haase
Date: Saturday, September 26, 2015 @ 04:00:54
  Author: svenstaro
Revision: 141622

New site

Modified:
  stuntrally/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-26 01:54:06 UTC (rev 141621)
+++ PKGBUILD2015-09-26 02:00:54 UTC (rev 141622)
@@ -9,7 +9,7 @@
 pkgdesc='Stunt Rally game with track editor, based on VDrift'
 arch=('x86_64' 'i686')
 license=('GPL3')
-url='http://code.google.com/p/vdrift-ogre'
+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


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

2015-09-25 Thread Sven-Hendrik Haase
Date: Saturday, September 26, 2015 @ 03:54:06
  Author: svenstaro
Revision: 141621

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

Added:
  opensubdiv/repos/community-i686/
  opensubdiv/repos/community-i686/PKGBUILD
(from rev 141620, opensubdiv/trunk/PKGBUILD)
  opensubdiv/repos/community-x86_64/
  opensubdiv/repos/community-x86_64/PKGBUILD
(from rev 141620, opensubdiv/trunk/PKGBUILD)

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

Copied: opensubdiv/repos/community-i686/PKGBUILD (from rev 141620, 
opensubdiv/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-09-26 01:54:06 UTC (rev 141621)
@@ -0,0 +1,38 @@
+# Maintainer: Sven-Hendrik Haase 
+pkgname=opensubdiv
+pkgver=3.0.2
+pkgrel=1
+pkgdesc="An Open-Source subdivision surface library"
+arch=(i686 x86_64)
+url="http://graphics.pixar.com/opensubdiv";
+license=('apache')
+depends=(zlib ptex intel-tbb)
+makedepends=(cmake doxygen glfw glew python2 python-pygments python-docutils 
opencl-headers)
+#makedepends_x86_64=(cuda) Broken currently :/
+source=("https://github.com/PixarAnimationStudios/OpenSubdiv/archive/v${pkgver//./_}.tar.gz";)
+md5sums=('acee9de1cd966ad3b4e7297858cff6d6')
+
+prepare() {
+cd "OpenSubdiv-${pkgver//./_}"
+
+find . -name \*.py | xargs sed -i "s/env python/env python2/g"
+}
+
+build() {
+cd "OpenSubdiv-${pkgver//./_}"
+
+rm -rf build
+mkdir build && cd build
+
+cmake .. \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+}
+
+package() {
+cd "OpenSubdiv-${pkgver//./_}"/build
+
+make DESTDIR="$pkgdir/" install
+
+rm -rf ${pkgdir}/usr/bin
+}

Copied: opensubdiv/repos/community-x86_64/PKGBUILD (from rev 141620, 
opensubdiv/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-09-26 01:54:06 UTC (rev 141621)
@@ -0,0 +1,38 @@
+# Maintainer: Sven-Hendrik Haase 
+pkgname=opensubdiv
+pkgver=3.0.2
+pkgrel=1
+pkgdesc="An Open-Source subdivision surface library"
+arch=(i686 x86_64)
+url="http://graphics.pixar.com/opensubdiv";
+license=('apache')
+depends=(zlib ptex intel-tbb)
+makedepends=(cmake doxygen glfw glew python2 python-pygments python-docutils 
opencl-headers)
+#makedepends_x86_64=(cuda) Broken currently :/
+source=("https://github.com/PixarAnimationStudios/OpenSubdiv/archive/v${pkgver//./_}.tar.gz";)
+md5sums=('acee9de1cd966ad3b4e7297858cff6d6')
+
+prepare() {
+cd "OpenSubdiv-${pkgver//./_}"
+
+find . -name \*.py | xargs sed -i "s/env python/env python2/g"
+}
+
+build() {
+cd "OpenSubdiv-${pkgver//./_}"
+
+rm -rf build
+mkdir build && cd build
+
+cmake .. \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+}
+
+package() {
+cd "OpenSubdiv-${pkgver//./_}"/build
+
+make DESTDIR="$pkgdir/" install
+
+rm -rf ${pkgdir}/usr/bin
+}


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

2015-09-25 Thread Sven-Hendrik Haase
Date: Saturday, September 26, 2015 @ 03:54:00
  Author: svenstaro
Revision: 141620

upgpkg: opensubdiv 3.0.2-1

Pushing opensubdiv

Modified:
  opensubdiv/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-26 01:18:17 UTC (rev 141619)
+++ PKGBUILD2015-09-26 01:54:00 UTC (rev 141620)
@@ -7,21 +7,32 @@
 url="http://graphics.pixar.com/opensubdiv";
 license=('apache')
 depends=(zlib ptex intel-tbb)
-makedepends=(cmake doxygen glfw glew python-pygments python-docutils)
-source=("https://github.com/PixarAnimationStudios/OpenSubdiv/archive/v${pkgver/./_}.tar.gz";)
-md5sums=()
+makedepends=(cmake doxygen glfw glew python2 python-pygments python-docutils 
opencl-headers)
+#makedepends_x86_64=(cuda) Broken currently :/
+source=("https://github.com/PixarAnimationStudios/OpenSubdiv/archive/v${pkgver//./_}.tar.gz";)
+md5sums=('acee9de1cd966ad3b4e7297858cff6d6')
 
+prepare() {
+cd "OpenSubdiv-${pkgver//./_}"
+
+find . -name \*.py | xargs sed -i "s/env python/env python2/g"
+}
+
 build() {
-   cd "$pkgname-$pkgver"
+cd "OpenSubdiv-${pkgver//./_}"
 
 rm -rf build
 mkdir build && cd build
-   
-cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr ..
+
+cmake .. \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
 }
 
 package() {
-   cd "$pkgname-$pkgver"/build
+cd "OpenSubdiv-${pkgver//./_}"/build
 
-   make DESTDIR="$pkgdir/" install
+make DESTDIR="$pkgdir/" install
+
+rm -rf ${pkgdir}/usr/bin
 }


[arch-commits] Commit in (4 files)

2015-09-25 Thread Sven-Hendrik Haase
Date: Saturday, September 26, 2015 @ 03:18:17
  Author: svenstaro
Revision: 141619

Add opensubdiv for blender

Added:
  opensubdiv/
  opensubdiv/repos/
  opensubdiv/trunk/
  opensubdiv/trunk/PKGBUILD

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

Added: opensubdiv/trunk/PKGBUILD
===
--- opensubdiv/trunk/PKGBUILD   (rev 0)
+++ opensubdiv/trunk/PKGBUILD   2015-09-26 01:18:17 UTC (rev 141619)
@@ -0,0 +1,27 @@
+# Maintainer: Sven-Hendrik Haase 
+pkgname=opensubdiv
+pkgver=3.0.2
+pkgrel=1
+pkgdesc="An Open-Source subdivision surface library"
+arch=(i686 x86_64)
+url="http://graphics.pixar.com/opensubdiv";
+license=('apache')
+depends=(zlib ptex intel-tbb)
+makedepends=(cmake doxygen glfw glew python-pygments python-docutils)
+source=("https://github.com/PixarAnimationStudios/OpenSubdiv/archive/v${pkgver/./_}.tar.gz";)
+md5sums=()
+
+build() {
+   cd "$pkgname-$pkgver"
+
+rm -rf build
+mkdir build && cd build
+   
+cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr ..
+}
+
+package() {
+   cd "$pkgname-$pkgver"/build
+
+   make DESTDIR="$pkgdir/" install
+}


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

2015-09-25 Thread Sven-Hendrik Haase
Date: Saturday, September 26, 2015 @ 03:11:32
  Author: svenstaro
Revision: 141617

upgpkg: ptex 2.0.62-1

Pushing ptex

Modified:
  ptex/trunk/PKGBUILD

--+
 PKGBUILD |   34 +++---
 1 file changed, 19 insertions(+), 15 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-09-26 00:52:38 UTC (rev 141616)
+++ PKGBUILD2015-09-26 01:11:32 UTC (rev 141617)
@@ -6,29 +6,33 @@
 arch=(i686 x86_64)
 url="http://ptex.us/";
 license=('BSD')
-depends=(zlib pthread)
-makedepends=(git cmake)
+depends=(zlib)
+makedepends=(git doxygen python2)
+options=(!makeflags)
 source=("https://github.com/wdas/ptex/archive/v${pkgver}.tar.gz";)
-md5sums=()
+md5sums=('548e0b1c8ef542c01c92418803c56e88')
 
-build() {
-   cd "$pkgname-$pkgver"
+prepare() {
+   cd "$pkgname-$pkgver"/src
 
-rm -rf build
-mkdir build && cd build
+sed -i "s/python/python2/g" tests/run_tests.py
+}
 
-cmake ../src
+build() {
+   cd "$pkgname-$pkgver"/src
make
-}
 
-check() {
-   cd "$pkgname-$pkgver"/build
-
-make test
+cd doc
+make
 }
 
 package() {
-   cd "$pkgname-$pkgver"/build
+   cd "$pkgname-$pkgver"
 
-   make DESTDIR="$pkgdir/" install
+install -d ${pkgdir}/usr/share
+
+cp -r install/{bin,include,lib} ${pkgdir}/usr
+cp -r install/doc ${pkgdir}/usr/share/
+
+install -Dm644 src/doc/License.txt 
${pkgdir}/usr/share/licenses/${pkgname}/License.txt
 }


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

2015-09-25 Thread Sven-Hendrik Haase
Date: Saturday, September 26, 2015 @ 03:11:38
  Author: svenstaro
Revision: 141618

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

Added:
  ptex/repos/community-i686/
  ptex/repos/community-i686/PKGBUILD
(from rev 141617, ptex/trunk/PKGBUILD)
  ptex/repos/community-x86_64/
  ptex/repos/community-x86_64/PKGBUILD
(from rev 141617, ptex/trunk/PKGBUILD)

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

Copied: ptex/repos/community-i686/PKGBUILD (from rev 141617, 
ptex/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-09-26 01:11:38 UTC (rev 141618)
@@ -0,0 +1,38 @@
+# Maintainer: Sven-Hendrik Haase 
+pkgname=ptex
+pkgver=2.0.62
+pkgrel=1
+pkgdesc="Per-Face Texture Mapping for Production Rendering"
+arch=(i686 x86_64)
+url="http://ptex.us/";
+license=('BSD')
+depends=(zlib)
+makedepends=(git doxygen python2)
+options=(!makeflags)
+source=("https://github.com/wdas/ptex/archive/v${pkgver}.tar.gz";)
+md5sums=('548e0b1c8ef542c01c92418803c56e88')
+
+prepare() {
+   cd "$pkgname-$pkgver"/src
+
+sed -i "s/python/python2/g" tests/run_tests.py
+}
+
+build() {
+   cd "$pkgname-$pkgver"/src
+   make
+
+cd doc
+make
+}
+
+package() {
+   cd "$pkgname-$pkgver"
+
+install -d ${pkgdir}/usr/share
+
+cp -r install/{bin,include,lib} ${pkgdir}/usr
+cp -r install/doc ${pkgdir}/usr/share/
+
+install -Dm644 src/doc/License.txt 
${pkgdir}/usr/share/licenses/${pkgname}/License.txt
+}

Copied: ptex/repos/community-x86_64/PKGBUILD (from rev 141617, 
ptex/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-09-26 01:11:38 UTC (rev 141618)
@@ -0,0 +1,38 @@
+# Maintainer: Sven-Hendrik Haase 
+pkgname=ptex
+pkgver=2.0.62
+pkgrel=1
+pkgdesc="Per-Face Texture Mapping for Production Rendering"
+arch=(i686 x86_64)
+url="http://ptex.us/";
+license=('BSD')
+depends=(zlib)
+makedepends=(git doxygen python2)
+options=(!makeflags)
+source=("https://github.com/wdas/ptex/archive/v${pkgver}.tar.gz";)
+md5sums=('548e0b1c8ef542c01c92418803c56e88')
+
+prepare() {
+   cd "$pkgname-$pkgver"/src
+
+sed -i "s/python/python2/g" tests/run_tests.py
+}
+
+build() {
+   cd "$pkgname-$pkgver"/src
+   make
+
+cd doc
+make
+}
+
+package() {
+   cd "$pkgname-$pkgver"
+
+install -d ${pkgdir}/usr/share
+
+cp -r install/{bin,include,lib} ${pkgdir}/usr
+cp -r install/doc ${pkgdir}/usr/share/
+
+install -Dm644 src/doc/License.txt 
${pkgdir}/usr/share/licenses/${pkgname}/License.txt
+}


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

2015-09-25 Thread Sven-Hendrik Haase
Date: Saturday, September 26, 2015 @ 02:52:38
  Author: svenstaro
Revision: 141616

Add ptex for blender

Added:
  ptex/
  ptex/repos/
  ptex/trunk/
  ptex/trunk/PKGBUILD

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

Added: ptex/trunk/PKGBUILD
===
--- ptex/trunk/PKGBUILD (rev 0)
+++ ptex/trunk/PKGBUILD 2015-09-26 00:52:38 UTC (rev 141616)
@@ -0,0 +1,34 @@
+# Maintainer: Sven-Hendrik Haase 
+pkgname=ptex
+pkgver=2.0.62
+pkgrel=1
+pkgdesc="Per-Face Texture Mapping for Production Rendering"
+arch=(i686 x86_64)
+url="http://ptex.us/";
+license=('BSD')
+depends=(zlib pthread)
+makedepends=(git cmake)
+source=("https://github.com/wdas/ptex/archive/v${pkgver}.tar.gz";)
+md5sums=()
+
+build() {
+   cd "$pkgname-$pkgver"
+
+rm -rf build
+mkdir build && cd build
+
+cmake ../src
+   make
+}
+
+check() {
+   cd "$pkgname-$pkgver"/build
+
+make test
+}
+
+package() {
+   cd "$pkgname-$pkgver"/build
+
+   make DESTDIR="$pkgdir/" install
+}


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

2015-09-25 Thread Sébastien Luttringer
Date: Saturday, September 26, 2015 @ 01:44:46
  Author: seblu
Revision: 141615

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

Added:
  rxvt-unicode/repos/community-i686/PKGBUILD
(from rev 141614, rxvt-unicode/trunk/PKGBUILD)
  rxvt-unicode/repos/community-i686/urxvt-tabbed.desktop
(from rev 141614, rxvt-unicode/trunk/urxvt-tabbed.desktop)
  rxvt-unicode/repos/community-i686/urxvt.desktop
(from rev 141614, rxvt-unicode/trunk/urxvt.desktop)
  rxvt-unicode/repos/community-i686/urxvtc.desktop
(from rev 141614, rxvt-unicode/trunk/urxvtc.desktop)
  rxvt-unicode/repos/community-x86_64/PKGBUILD
(from rev 141614, rxvt-unicode/trunk/PKGBUILD)
  rxvt-unicode/repos/community-x86_64/urxvt-tabbed.desktop
(from rev 141614, rxvt-unicode/trunk/urxvt-tabbed.desktop)
  rxvt-unicode/repos/community-x86_64/urxvt.desktop
(from rev 141614, rxvt-unicode/trunk/urxvt.desktop)
  rxvt-unicode/repos/community-x86_64/urxvtc.desktop
(from rev 141614, rxvt-unicode/trunk/urxvtc.desktop)
Deleted:
  rxvt-unicode/repos/community-i686/PKGBUILD
  rxvt-unicode/repos/community-i686/urxvt-tabbed.desktop
  rxvt-unicode/repos/community-i686/urxvt.desktop
  rxvt-unicode/repos/community-i686/urxvtc.desktop
  rxvt-unicode/repos/community-x86_64/PKGBUILD
  rxvt-unicode/repos/community-x86_64/urxvt-tabbed.desktop
  rxvt-unicode/repos/community-x86_64/urxvt.desktop
  rxvt-unicode/repos/community-x86_64/urxvtc.desktop

---+
 /PKGBUILD |  172 
 /urxvt-tabbed.desktop |   18 +++
 /urxvt.desktop|   18 +++
 /urxvtc.desktop   |   18 +++
 community-i686/PKGBUILD   |   86 
 community-i686/urxvt-tabbed.desktop   |9 -
 community-i686/urxvt.desktop  |9 -
 community-i686/urxvtc.desktop |9 -
 community-x86_64/PKGBUILD |   86 
 community-x86_64/urxvt-tabbed.desktop |9 -
 community-x86_64/urxvt.desktop|9 -
 community-x86_64/urxvtc.desktop   |9 -
 12 files changed, 226 insertions(+), 226 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-09-25 23:43:53 UTC (rev 141614)
+++ community-i686/PKGBUILD 2015-09-25 23:44:46 UTC (rev 141615)
@@ -1,86 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer
-# Contributor: Angel Velasquez 
-# Contributor: tobias 
-# Contributor: dibblethewrecker dibblethewrecker.at.jiwe.dot.org
-
-pkgbase=rxvt-unicode
-pkgname=('rxvt-unicode' 'rxvt-unicode-terminfo')
-pkgver=9.21
-pkgrel=2
-arch=('i686' 'x86_64')
-url='http://software.schmorp.de/pkg/rxvt-unicode.html'
-license=('GPL')
-makedepends=('libxft' 'perl' 'startup-notification')
-source=(
-  "http://dist.schmorp.de/rxvt-unicode/$pkgname-$pkgver.tar.bz2";
-  'urxvt.desktop'
-  'urxvtc.desktop'
-  'urxvt-tabbed.desktop'
-)
-md5sums=('a9a06c608258c5fd247c3725d8f44582'
- 'fec94dc986fa37ec380079d81de3e0b2'
- 'fac55f0a8404c86dad3e702146762332'
- '8a5599197568c63720e282b9722a7990')
-
-build() {
-  cd $pkgname-$pkgver
-  # we disable smart-resize (FS#34807)
-  ./configure \
---prefix=/usr \
---with-terminfo=/usr/share/terminfo \
---enable-256-color \
---enable-combining \
---enable-fading \
---enable-font-styles \
---enable-iso14755 \
---enable-keepscrolling \
---enable-lastlog \
---enable-mousewheel \
---enable-next-scroll \
---enable-perl \
---enable-pointer-blank \
---enable-rxvt-scroll \
---enable-selectionscrolling \
---enable-slipwheeling \
---disable-smart-resize \
---enable-startup-notification \
---enable-transparency \
---enable-unicode3 \
---enable-utmp \
---enable-wtmp \
---enable-xft \
---enable-xim \
---enable-xterm-scroll \
---disable-pixbuf \
---disable-frills
-  make
-}
-
-package_rxvt-unicode() {
-  pkgdesc='A unicode enabled rxvt-clone terminal emulator (urxvt)'
-  depends=('rxvt-unicode-terminfo' 'libxft' 'perl' 'startup-notification')
-  optdepends=('gtk2-perl: to use the urxvt-tabbed')
-
-  # install freedesktop menu
-  for _f in urxvt urxvtc urxvt-tabbed; do
-install -Dm644 $_f.desktop "$pkgdir/usr/share/applications/$_f.desktop"
-  done
-  cd $pkgname-$pkgver
-  # workaround terminfo installation
-  export TERMINFO="$srcdir/terminfo"
-  install -d "$TERMINFO"
-  make DESTDIR="$pkgdir" install
-  # install the tabbing wrapper ( requires gtk2-perl! )
-  sed -i 's/\"rxvt\"/"urxvt"/' doc/rxvt-tabbed
-  install -Dm 755 doc/rxvt-tabbed "$pkgdir/usr/bin/urxvt-tabbed"
-}
-
-package_rxvt-unicode-terminfo() {
-  pkgdesc='Terminfo files for urxvt'
-  conflict=('rxvt-unicode<=9.18-6')
-  install -dm 755 "$pkgdir/usr/share/"
-  mv terminfo "$pkgdir/usr/share/"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: rxvt-unicode/repos/community-i686/PKGBUILD (fro

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

2015-09-25 Thread Sébastien Luttringer
Date: Saturday, September 26, 2015 @ 01:43:53
  Author: seblu
Revision: 141614

upgpkg: rxvt-unicode 9.21-3

- fix FS#46424

Modified:
  rxvt-unicode/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-25 23:37:18 UTC (rev 141613)
+++ PKGBUILD2015-09-25 23:43:53 UTC (rev 141614)
@@ -7,7 +7,7 @@
 pkgbase=rxvt-unicode
 pkgname=('rxvt-unicode' 'rxvt-unicode-terminfo')
 pkgver=9.21
-pkgrel=2
+pkgrel=3
 arch=('i686' 'x86_64')
 url='http://software.schmorp.de/pkg/rxvt-unicode.html'
 license=('GPL')
@@ -26,9 +26,9 @@
 build() {
   cd $pkgname-$pkgver
   # we disable smart-resize (FS#34807)
+  # do not specify --with-terminfo (FS#46424)
   ./configure \
 --prefix=/usr \
---with-terminfo=/usr/share/terminfo \
 --enable-256-color \
 --enable-combining \
 --enable-fading \


[arch-commits] Commit in lldpd/repos (24 files)

2015-09-25 Thread Sébastien Luttringer
Date: Saturday, September 26, 2015 @ 01:37:18
  Author: seblu
Revision: 141613

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

Added:
  lldpd/repos/community-i686/LICENSE
(from rev 141612, lldpd/trunk/LICENSE)
  lldpd/repos/community-i686/PKGBUILD
(from rev 141612, lldpd/trunk/PKGBUILD)
  lldpd/repos/community-i686/lldpd.install
(from rev 141612, lldpd/trunk/lldpd.install)
  lldpd/repos/community-i686/lldpd.service
(from rev 141612, lldpd/trunk/lldpd.service)
  lldpd/repos/community-i686/lldpd.sysusers
(from rev 141612, lldpd/trunk/lldpd.sysusers)
  lldpd/repos/community-i686/lldpd.tmpfiles
(from rev 141612, lldpd/trunk/lldpd.tmpfiles)
  lldpd/repos/community-x86_64/LICENSE
(from rev 141612, lldpd/trunk/LICENSE)
  lldpd/repos/community-x86_64/PKGBUILD
(from rev 141612, lldpd/trunk/PKGBUILD)
  lldpd/repos/community-x86_64/lldpd.install
(from rev 141612, lldpd/trunk/lldpd.install)
  lldpd/repos/community-x86_64/lldpd.service
(from rev 141612, lldpd/trunk/lldpd.service)
  lldpd/repos/community-x86_64/lldpd.sysusers
(from rev 141612, lldpd/trunk/lldpd.sysusers)
  lldpd/repos/community-x86_64/lldpd.tmpfiles
(from rev 141612, lldpd/trunk/lldpd.tmpfiles)
Deleted:
  lldpd/repos/community-i686/LICENSE
  lldpd/repos/community-i686/PKGBUILD
  lldpd/repos/community-i686/lldpd.install
  lldpd/repos/community-i686/lldpd.service
  lldpd/repos/community-i686/lldpd.sysusers
  lldpd/repos/community-i686/lldpd.tmpfiles
  lldpd/repos/community-x86_64/LICENSE
  lldpd/repos/community-x86_64/PKGBUILD
  lldpd/repos/community-x86_64/lldpd.install
  lldpd/repos/community-x86_64/lldpd.service
  lldpd/repos/community-x86_64/lldpd.sysusers
  lldpd/repos/community-x86_64/lldpd.tmpfiles

-+
 /LICENSE|   22 ++
 /PKGBUILD   |  130 ++
 /lldpd.install  |   22 ++
 /lldpd.service  |   24 +++
 /lldpd.sysusers |2 
 /lldpd.tmpfiles |2 
 community-i686/LICENSE  |   11 ---
 community-i686/PKGBUILD |   65 ---
 community-i686/lldpd.install|   11 ---
 community-i686/lldpd.service|   12 ---
 community-i686/lldpd.sysusers   |1 
 community-i686/lldpd.tmpfiles   |1 
 community-x86_64/LICENSE|   11 ---
 community-x86_64/PKGBUILD   |   65 ---
 community-x86_64/lldpd.install  |   11 ---
 community-x86_64/lldpd.service  |   12 ---
 community-x86_64/lldpd.sysusers |1 
 community-x86_64/lldpd.tmpfiles |1 
 18 files changed, 202 insertions(+), 202 deletions(-)

Deleted: community-i686/LICENSE
===
--- community-i686/LICENSE  2015-09-25 23:36:06 UTC (rev 141612)
+++ community-i686/LICENSE  2015-09-25 23:37:18 UTC (rev 141613)
@@ -1,11 +0,0 @@
-Permission to use, copy, modify, and/or distribute this software for any
-purpose with or without fee is hereby granted, provided that the above
-copyright notice and this permission notice appear in all copies.
-
-THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
-WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
-MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
-ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
-WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
-ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
-OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

Copied: lldpd/repos/community-i686/LICENSE (from rev 141612, 
lldpd/trunk/LICENSE)
===
--- community-i686/LICENSE  (rev 0)
+++ community-i686/LICENSE  2015-09-25 23:37:18 UTC (rev 141613)
@@ -0,0 +1,11 @@
+Permission to use, copy, modify, and/or distribute this software for any
+purpose with or without fee is hereby granted, provided that the above
+copyright notice and this permission notice appear in all copies.
+
+THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-09-25 23:36:06 UTC (rev 141612)
+++ community-i686/PKGBUILD 2015-09-25 23:37:18 UTC (rev 141613)
@@ -1,65 +0,0 @@
-# $Id$
-# Maintainer: Sébastien "Seblu" Luttringer
-# Contributor: Brian B

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

2015-09-25 Thread Sébastien Luttringer
Date: Saturday, September 26, 2015 @ 01:36:06
  Author: seblu
Revision: 141612

upgpkg: lldpd 0.7.18-1

Modified:
  lldpd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-25 23:34:12 UTC (rev 141611)
+++ PKGBUILD2015-09-25 23:36:06 UTC (rev 141612)
@@ -3,7 +3,7 @@
 # Contributor: Brian Bidulock 
 
 pkgname=lldpd
-pkgver=0.7.17
+pkgver=0.7.18
 pkgrel=1
 pkgdesc='802.1ab implementation (LLDP) to help you locate neighbors'
 arch=('i686' 'x86_64')
@@ -18,7 +18,7 @@
 'lldpd.service'
 'lldpd.sysusers'
 'lldpd.tmpfiles')
-md5sums=('8cb74065956bc32a575ee5203b0e0fb5'
+md5sums=('2549d07e254cbadde329fcdb42e0c086'
  '8ae98663bac55afe5d989919d296f28a'
  'a650af7390db0632480184f9f2e7ee4a'
  '8623610442a9d553de764b50046cd6d3'


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

2015-09-25 Thread Sven-Hendrik Haase
Date: Saturday, September 26, 2015 @ 01:34:12
  Author: svenstaro
Revision: 141611

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

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

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

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

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

Deleted: community-i686/sfml.install
===
--- community-i686/sfml.install 2015-09-25 23:34:03 UTC (rev 141610)
+++ community-i686/sfml.install 2015-09-25 23:34:12 UTC (rev 141611)
@@ -1,3 +0,0 @@
-post_install() {
-echo "To view the SFML samples, go to /usr/share/SFML/examples/ and run 
them individually"
-}

Copied: sfml/repos/community-i686/sfml.install (from rev 141610, 
sfml/trunk/sfml.install)
===
--- community-i686/sfml.install (rev 0)
+++ community-i686/sfml.install 2015-09-25 23:34:12 UTC (rev 141611)
@@ -0,0 +1,3 @@
+post_install() {
+echo "To view the SFML samples, go to /usr/share/SFML/examples/ and run 
them individually"
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-09-25 23:34:03 UTC (rev 141610)
+++ community-x86_64/PKGBUILD   2015-09-25 23:34:12 UTC (rev 141611)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Ondrej Martinak 
-
-pkgname=sfml
-pkgver=2.3.1
-pkgrel=2
-pkgdesc='A simple, fast, cross-platform, and object-oriented multimedia API'
-arch=('

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

2015-09-25 Thread Sven-Hendrik Haase
Date: Saturday, September 26, 2015 @ 01:34:03
  Author: svenstaro
Revision: 141610

upgpkg: sfml 2.3.2-1

upstream release 2.3.2

Modified:
  sfml/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-25 23:32:25 UTC (rev 141609)
+++ PKGBUILD2015-09-25 23:34:03 UTC (rev 141610)
@@ -3,8 +3,8 @@
 # Contributor: Ondrej Martinak 
 
 pkgname=sfml
-pkgver=2.3.1
-pkgrel=2
+pkgver=2.3.2
+pkgrel=1
 pkgdesc='A simple, fast, cross-platform, and object-oriented multimedia API'
 arch=('i686' 'x86_64')
 url='http://www.sfml-dev.org/'


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

2015-09-25 Thread Sven-Hendrik Haase
Date: Saturday, September 26, 2015 @ 01:32:25
  Author: svenstaro
Revision: 141609

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

Added:
  teamspeak3/repos/community-i686/PERMISSION.eml
(from rev 141608, teamspeak3/trunk/PERMISSION.eml)
  teamspeak3/repos/community-i686/PKGBUILD
(from rev 141608, teamspeak3/trunk/PKGBUILD)
  teamspeak3/repos/community-i686/teamspeak3.desktop
(from rev 141608, teamspeak3/trunk/teamspeak3.desktop)
  teamspeak3/repos/community-i686/teamspeak3.launcher
(from rev 141608, teamspeak3/trunk/teamspeak3.launcher)
  teamspeak3/repos/community-i686/teamspeak3.png
(from rev 141608, teamspeak3/trunk/teamspeak3.png)
  teamspeak3/repos/community-x86_64/PERMISSION.eml
(from rev 141608, teamspeak3/trunk/PERMISSION.eml)
  teamspeak3/repos/community-x86_64/PKGBUILD
(from rev 141608, teamspeak3/trunk/PKGBUILD)
  teamspeak3/repos/community-x86_64/teamspeak3.desktop
(from rev 141608, teamspeak3/trunk/teamspeak3.desktop)
  teamspeak3/repos/community-x86_64/teamspeak3.launcher
(from rev 141608, teamspeak3/trunk/teamspeak3.launcher)
  teamspeak3/repos/community-x86_64/teamspeak3.png
(from rev 141608, teamspeak3/trunk/teamspeak3.png)
Deleted:
  teamspeak3/repos/community-i686/PERMISSION.eml
  teamspeak3/repos/community-i686/PKGBUILD
  teamspeak3/repos/community-i686/teamspeak3.desktop
  teamspeak3/repos/community-i686/teamspeak3.launcher
  teamspeak3/repos/community-i686/teamspeak3.png
  teamspeak3/repos/community-x86_64/PERMISSION.eml
  teamspeak3/repos/community-x86_64/PKGBUILD
  teamspeak3/repos/community-x86_64/teamspeak3.desktop
  teamspeak3/repos/community-x86_64/teamspeak3.launcher
  teamspeak3/repos/community-x86_64/teamspeak3.png

--+
 /PKGBUILD|  132 +
 /teamspeak3.desktop  |   22 +
 /teamspeak3.launcher |   12 +++
 community-i686/PKGBUILD  |   66 
 community-i686/teamspeak3.desktop|   11 --
 community-i686/teamspeak3.launcher   |6 -
 community-x86_64/PKGBUILD|   66 
 community-x86_64/teamspeak3.desktop  |   11 --
 community-x86_64/teamspeak3.launcher |6 -
 9 files changed, 166 insertions(+), 166 deletions(-)

Deleted: community-i686/PERMISSION.eml
===
(Binary files differ)

Copied: teamspeak3/repos/community-i686/PERMISSION.eml (from rev 141608, 
teamspeak3/trunk/PERMISSION.eml)
===
(Binary files differ)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-09-25 23:32:10 UTC (rev 141608)
+++ community-i686/PKGBUILD 2015-09-25 23:32:25 UTC (rev 141609)
@@ -1,66 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Slash 
-# Contributor: J.W. Birdsong  
-
-pkgname=teamspeak3
-pkgver=3.0.17
-pkgrel=1
-pkgdesc="TeamSpeak is software for quality voice communication via the 
Internet"
-url="http://www.teamspeak.com/";
-license=('custom')
-depends=('qt5-base' 'libxkbcommon-x11')
-optdepends=('libpulse')
-arch=('i686' 'x86_64')
-source=("http://teamspeak.gameserver.gamed.de/ts3/releases/${pkgver}/TeamSpeak3-Client-linux_x86-${pkgver}.run";
-
"http://teamspeak.gameserver.gamed.de/ts3/releases/${pkgver}/TeamSpeak3-Client-linux_amd64-${pkgver}.run";
-'teamspeak3.desktop'
-'teamspeak3.png'
-'teamspeak3.launcher')
-md5sums=('4037f6976a6f571b1a1a1034258e5d18'
- '76416da6c114ab87af79de5f5532a8ee'
- '98e987a42511f159fa2228f5e0bffed1'
- '1d193af5808f4ca718c800da3f127ca9'
- '170fcbb1b468ce4f3dba7ee3fb2a1c6d')
-
-[[ "$CARCH" == "i686" ]] && _TSARCH='x86'
-[[ "$CARCH" == "x86_64" ]] && _TSARCH='amd64'
-
-prepare() {
-  mkdir archive && cd archive
-  sh ../TeamSpeak3-Client-linux_${_TSARCH}-${pkgver}.run --tar -xf 2>/dev/null
-
-  # Delete bundled Qt libs to use system-wide ones
-  rm libQt5*
-
-  # Fix FS#34190
-  sed -i "/export QTDIR.*/d" ts3client_runscript.sh
-  sed -i "/export QT_PLUGIN_PATH*/d" ts3client_runscript.sh
-  
-  # Fix FS#34189
-  rm qt.conf
-
-  # Fix permissions
-  find -type d | xargs chmod 755
-  find -type f | xargs chmod 644
-  find -name *.so | xargs chmod 755
-  chmod +x ts3client*
-}
-
-package() {
-  install -d ${pkgdir}/{usr/bin/,opt/teamspeak3}
-
-  cp -r archive/* ${pkgdir}/opt/teamspeak3/
-
-  # Install Desktop File
-  install -D -m644 $srcdir/teamspeak3.desktop 
${pkgdir}/usr/share/applications/teamspeak3.desktop
-
-  # Install Icon File
-  install -D -m644 $srcdir/teamspeak3.png 
${pkgdir}/usr/share/pixmaps/teamspeak3.png
-
-  # Install Custom License
-  #install -D -m644 ${pkgdir}/opt/teamspeak3/LICENSE 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-
-  # Install Client Launcher
-  install -D -m755 $srcdir/teamspeak3.launcher ${pkgdir}/

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

2015-09-25 Thread Sven-Hendrik Haase
Date: Saturday, September 26, 2015 @ 01:32:10
  Author: svenstaro
Revision: 141608

upgpkg: teamspeak3 3.0.18-1

upstream release 3.0.18

Modified:
  teamspeak3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-25 18:26:57 UTC (rev 141607)
+++ PKGBUILD2015-09-25 23:32:10 UTC (rev 141608)
@@ -3,7 +3,7 @@
 # Contributor: J.W. Birdsong  
 
 pkgname=teamspeak3
-pkgver=3.0.17
+pkgver=3.0.18
 pkgrel=1
 pkgdesc="TeamSpeak is software for quality voice communication via the 
Internet"
 url="http://www.teamspeak.com/";
@@ -16,8 +16,8 @@
 'teamspeak3.desktop'
 'teamspeak3.png'
 'teamspeak3.launcher')
-md5sums=('4037f6976a6f571b1a1a1034258e5d18'
- '76416da6c114ab87af79de5f5532a8ee'
+md5sums=('c970823b01b97bbab68c5027a2564e86'
+ 'e7293ac9343635960d6917a2ad6c3348'
  '98e987a42511f159fa2228f5e0bffed1'
  '1d193af5808f4ca718c800da3f127ca9'
  '170fcbb1b468ce4f3dba7ee3fb2a1c6d')


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

2015-09-25 Thread Jan Steffens
Date: Saturday, September 26, 2015 @ 01:00:05
  Author: heftig
Revision: 247514

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  gstreamer-vaapi/repos/gnome-unstable-i686/PKGBUILD
(from rev 247513, gstreamer-vaapi/trunk/PKGBUILD)
  gstreamer-vaapi/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 247513, gstreamer-vaapi/trunk/PKGBUILD)
Deleted:
  gstreamer-vaapi/repos/gnome-unstable-i686/PKGBUILD
  gstreamer-vaapi/repos/gnome-unstable-x86_64/PKGBUILD

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

Deleted: gnome-unstable-i686/PKGBUILD
===
--- gnome-unstable-i686/PKGBUILD2015-09-25 22:59:12 UTC (rev 247513)
+++ gnome-unstable-i686/PKGBUILD2015-09-25 23:00:05 UTC (rev 247514)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=gstreamer-vaapi
-pkgver=0.6.0
-pkgrel=2
-pkgdesc="GStreamer Multimedia Framework VA Plugins"
-arch=(i686 x86_64)
-license=(LGPL)
-url="http://www.freedesktop.org/software/vaapi/releases/gstreamer-vaapi/";
-depends=(gst-plugins-base gst-plugins-bad libva libxrandr libvpx)
-makedepends=(gtk-doc)
-provides=("gst-vaapi=$pkgver")
-conflicts=(gst-vaapi)
-replaces=(gst-vaapi)
-source=($url/$pkgname-$pkgver.tar.bz2)
-sha1sums=('e011f472327c166769f6912bda453776cdc894ff')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --disable-static --disable-builtin-libvpx \
---enable-gtk-doc
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make -k check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: gstreamer-vaapi/repos/gnome-unstable-i686/PKGBUILD (from rev 247513, 
gstreamer-vaapi/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2015-09-25 23:00:05 UTC (rev 247514)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=gstreamer-vaapi
+pkgver=0.6.0
+pkgrel=3
+pkgdesc="GStreamer Multimedia Framework VA Plugins"
+arch=(i686 x86_64)
+license=(LGPL)
+url="http://www.freedesktop.org/software/vaapi/releases/gstreamer-vaapi/";
+depends=(gst-plugins-base gst-plugins-bad libva libxrandr libvpx)
+makedepends=(gtk-doc)
+provides=("gst-vaapi=$pkgver")
+conflicts=(gst-vaapi)
+replaces=(gst-vaapi)
+source=($url/$pkgname-$pkgver.tar.bz2)
+sha1sums=('e011f472327c166769f6912bda453776cdc894ff')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --disable-static --disable-builtin-libvpx \
+--enable-gtk-doc
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make -k check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: gnome-unstable-x86_64/PKGBUILD
===
--- gnome-unstable-x86_64/PKGBUILD  2015-09-25 22:59:12 UTC (rev 247513)
+++ gnome-unstable-x86_64/PKGBUILD  2015-09-25 23:00:05 UTC (rev 247514)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=gstreamer-vaapi
-pkgver=0.6.0
-pkgrel=2
-pkgdesc="GStreamer Multimedia Framework VA Plugins"
-arch=(i686 x86_64)
-license=(LGPL)
-url="http://www.freedesktop.org/software/vaapi/releases/gstreamer-vaapi/";
-depends=(gst-plugins-base gst-plugins-bad libva libxrandr libvpx)
-makedepends=(gtk-doc)
-provides=("gst-vaapi=$pkgver")
-conflicts=(gst-vaapi)
-replaces=(gst-vaapi)
-source=($url/$pkgname-$pkgver.tar.bz2)
-sha1sums=('e011f472327c166769f6912bda453776cdc894ff')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --disable-static --disable-builtin-libvpx \
---enable-gtk-doc
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make -k check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: gstreamer-vaapi/repos/gnome-unstable-x86_64/PKGBUILD (from rev 247513, 
gstreamer-vaapi/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2015-09-25 23:00:05 UTC (rev 247514)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=gstreamer-vaapi
+pkgver=0.6.0
+pkgrel=3
+pkgdesc="GStreamer Multimedia Framework VA Plugins"
+arch=(i686 x86_64)
+license=(LGPL)
+url="http://www.freedesktop.org/software/vaapi/releases/gstreamer-vaapi/";
+depends=(gst-plugins-base gst-plugins-bad libva libxrandr libvpx)
+makedepends=(gtk-doc)
+provi

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

2015-09-25 Thread Jan Steffens
Date: Saturday, September 26, 2015 @ 00:58:39
  Author: heftig
Revision: 247512

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  gst-plugins-ugly/repos/gnome-unstable-i686/PKGBUILD
(from rev 247511, gst-plugins-ugly/trunk/PKGBUILD)
  gst-plugins-ugly/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 247511, gst-plugins-ugly/trunk/PKGBUILD)
Deleted:
  gst-plugins-ugly/repos/gnome-unstable-i686/PKGBUILD
  gst-plugins-ugly/repos/gnome-unstable-x86_64/PKGBUILD

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

Deleted: gnome-unstable-i686/PKGBUILD
===
--- gnome-unstable-i686/PKGBUILD2015-09-25 22:56:39 UTC (rev 247511)
+++ gnome-unstable-i686/PKGBUILD2015-09-25 22:58:39 UTC (rev 247512)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=gst-plugins-ugly
-pkgver=1.5.91
-pkgrel=1
-pkgdesc="GStreamer Multimedia Framework Ugly Plugins"
-arch=('i686' 'x86_64')
-license=('LGPL')
-url="http://gstreamer.freedesktop.org/";
-depends=('gst-plugins-base-libs' 'libdvdread' 'lame' 'libmpeg2' 'a52dec' 
'libmad' 'libsidplay' 'libcdio' 'libx264' 'opencore-amr')
-makedepends=('python' 'gtk-doc' 'x264')
-options=(!emptydirs)
-source=(${url}/src/$pkgname/$pkgname-$pkgver.tar.xz)
-sha256sums=('3a487329271f45dc56eaf53993aef319a9f57e61ec166a4fd61e2f4e04256950')
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---disable-static --enable-experimental --enable-gtk-doc \
---with-package-name="GStreamer Ugly Plugins (Arch Linux)" \
---with-package-origin="http://www.archlinux.org/";
-
-  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="${pkgdir}" install
-}

Copied: gst-plugins-ugly/repos/gnome-unstable-i686/PKGBUILD (from rev 247511, 
gst-plugins-ugly/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2015-09-25 22:58:39 UTC (rev 247512)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=gst-plugins-ugly
+pkgver=1.6.0
+pkgrel=1
+pkgdesc="GStreamer Multimedia Framework Ugly Plugins"
+arch=('i686' 'x86_64')
+license=('LGPL')
+url="http://gstreamer.freedesktop.org/";
+depends=('gst-plugins-base-libs' 'libdvdread' 'lame' 'libmpeg2' 'a52dec' 
'libmad' 'libsidplay' 'libcdio' 'libx264' 'opencore-amr')
+makedepends=('python' 'gtk-doc' 'x264')
+options=(!emptydirs)
+source=(${url}/src/$pkgname/$pkgname-$pkgver.tar.xz)
+sha256sums=('91178dc0d687a83c083190a905681d3a66901374b1004fc52cd300b7802e5f06')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--disable-static --enable-experimental --enable-gtk-doc \
+--with-package-name="GStreamer Ugly Plugins (Arch Linux)" \
+--with-package-origin="http://www.archlinux.org/";
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="${pkgdir}" install
+}

Deleted: gnome-unstable-x86_64/PKGBUILD
===
--- gnome-unstable-x86_64/PKGBUILD  2015-09-25 22:56:39 UTC (rev 247511)
+++ gnome-unstable-x86_64/PKGBUILD  2015-09-25 22:58:39 UTC (rev 247512)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=gst-plugins-ugly
-pkgver=1.5.91
-pkgrel=1
-pkgdesc="GStreamer Multimedia Framework Ugly Plugins"
-arch=('i686' 'x86_64')
-license=('LGPL')
-url="http://gstreamer.freedesktop.org/";
-depends=('gst-plugins-base-libs' 'libdvdread' 'lame' 'libmpeg2' 'a52dec' 
'libmad' 'libsidplay' 'libcdio' 'libx264' 'opencore-amr')
-makedepends=('python' 'gtk-doc' 'x264')
-options=(!emptydirs)
-source=(${url}/src/$pkgname/$pkgname-$pkgver.tar.xz)
-sha256sums=('3a487329271f45dc56eaf53993aef319a9f57e61ec166a4fd61e2f4e04256950')
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---disable-static --enable-experimental --enable-gtk-doc \
---with-package-name="GStreamer Ugly Plugins (Arch Linux)" \
---with-package-origin="http://www.archlinux.org/";
-
-  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DEST

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

2015-09-25 Thread Jan Steffens
Date: Saturday, September 26, 2015 @ 00:59:12
  Author: heftig
Revision: 247513

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  gst-libav/repos/gnome-unstable-i686/PKGBUILD
(from rev 247512, gst-libav/trunk/PKGBUILD)
  gst-libav/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 247512, gst-libav/trunk/PKGBUILD)
Deleted:
  gst-libav/repos/gnome-unstable-i686/PKGBUILD
  gst-libav/repos/gnome-unstable-x86_64/PKGBUILD

+
 /PKGBUILD  |   90 +++
 gnome-unstable-i686/PKGBUILD   |   45 ---
 gnome-unstable-x86_64/PKGBUILD |   45 ---
 3 files changed, 90 insertions(+), 90 deletions(-)

Deleted: gnome-unstable-i686/PKGBUILD
===
--- gnome-unstable-i686/PKGBUILD2015-09-25 22:58:39 UTC (rev 247512)
+++ gnome-unstable-i686/PKGBUILD2015-09-25 22:59:12 UTC (rev 247513)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=gst-libav
-pkgver=1.5.91
-pkgrel=1
-pkgdesc="Gstreamer libav Plugin"
-arch=('i686' 'x86_64')
-license=('GPL')
-url="http://gstreamer.freedesktop.org/";
-depends=('gst-plugins-base-libs' 'bzip2' 'ffmpeg')
-makedepends=('python' 'yasm')
-options=(!emptydirs)
-provides=("gst-ffmpeg=$pkgver-$pkgrel")
-source=(${url}/src/$pkgname/$pkgname-$pkgver.tar.xz)
-sha256sums=('1473e8254d7446bacdea3a7481313d9125f17cfdacc0b4cc413abeab535217fd')
-
-prepare() {
-  cd $pkgname-$pkgver
-}
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---disable-static --with-libav-extra-configure="--enable-runtime-cpudetect" 
\
---with-package-name="GStreamer libav Plugin (Arch Linux)" \
---with-package-origin="http://www.archlinux.org/"; \
---with-system-libav
-
-  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="${pkgdir}" install
-}

Copied: gst-libav/repos/gnome-unstable-i686/PKGBUILD (from rev 247512, 
gst-libav/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2015-09-25 22:59:12 UTC (rev 247513)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=gst-libav
+pkgver=1.6.0
+pkgrel=1
+pkgdesc="Gstreamer libav Plugin"
+arch=('i686' 'x86_64')
+license=('GPL')
+url="http://gstreamer.freedesktop.org/";
+depends=('gst-plugins-base-libs' 'bzip2' 'ffmpeg')
+makedepends=('python' 'yasm')
+options=(!emptydirs)
+provides=("gst-ffmpeg=$pkgver-$pkgrel")
+source=(${url}/src/$pkgname/$pkgname-$pkgver.tar.xz)
+sha256sums=('6cca6cf73182a882768ef0c860af88c2fd2c77e2c81ce464a998ab4e6baa604c')
+
+prepare() {
+  cd $pkgname-$pkgver
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--disable-static --with-libav-extra-configure="--enable-runtime-cpudetect" 
\
+--with-package-name="GStreamer libav Plugin (Arch Linux)" \
+--with-package-origin="http://www.archlinux.org/"; \
+--with-system-libav
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="${pkgdir}" install
+}

Deleted: gnome-unstable-x86_64/PKGBUILD
===
--- gnome-unstable-x86_64/PKGBUILD  2015-09-25 22:58:39 UTC (rev 247512)
+++ gnome-unstable-x86_64/PKGBUILD  2015-09-25 22:59:12 UTC (rev 247513)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=gst-libav
-pkgver=1.5.91
-pkgrel=1
-pkgdesc="Gstreamer libav Plugin"
-arch=('i686' 'x86_64')
-license=('GPL')
-url="http://gstreamer.freedesktop.org/";
-depends=('gst-plugins-base-libs' 'bzip2' 'ffmpeg')
-makedepends=('python' 'yasm')
-options=(!emptydirs)
-provides=("gst-ffmpeg=$pkgver-$pkgrel")
-source=(${url}/src/$pkgname/$pkgname-$pkgver.tar.xz)
-sha256sums=('1473e8254d7446bacdea3a7481313d9125f17cfdacc0b4cc413abeab535217fd')
-
-prepare() {
-  cd $pkgname-$pkgver
-}
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---disable-static --with-libav-extra-configure="--enable-runtime-cpudetect" 
\
---with-package-name="GStreamer libav Plugin (Arch Linux)" \
---with-package-origin="http://www.archlinux.org/"; \
---with-system-libav
-
-  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="${pkgdir}" install
-}

C

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

2015-09-25 Thread Jan Steffens
Date: Saturday, September 26, 2015 @ 00:56:39
  Author: heftig
Revision: 247511

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  gst-plugins-bad/repos/gnome-unstable-i686/PKGBUILD
(from rev 247510, gst-plugins-bad/trunk/PKGBUILD)
  gst-plugins-bad/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 247510, gst-plugins-bad/trunk/PKGBUILD)
Deleted:
  gst-plugins-bad/repos/gnome-unstable-i686/PKGBUILD
  gst-plugins-bad/repos/gnome-unstable-x86_64/PKGBUILD

+
 /PKGBUILD  |   94 +++
 gnome-unstable-i686/PKGBUILD   |   47 ---
 gnome-unstable-x86_64/PKGBUILD |   47 ---
 3 files changed, 94 insertions(+), 94 deletions(-)

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

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

Deleted: gnome-unstable-x86_64/PKGBUILD
===
--- gnome-unstable-x86_64/PKGBUILD  2015-09-25 22:55:32 UTC (rev 247510)
+++ gnome-unstable-x86_64/PKGBUILD  2015-09-25 22:56:39 UTC (rev 247511)
@@ -1,47 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=gst-plugins-bad
-pkgver=1.5.91
-pkgrel=1
-pkgde

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

2015-09-25 Thread Jan Steffens
Date: Saturday, September 26, 2015 @ 00:55:32
  Author: heftig
Revision: 247510

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  gst-plugins-good/repos/gnome-unstable-i686/PKGBUILD
(from rev 247509, gst-plugins-good/trunk/PKGBUILD)
  gst-plugins-good/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 247509, gst-plugins-good/trunk/PKGBUILD)
Deleted:
  gst-plugins-good/repos/gnome-unstable-i686/PKGBUILD
  gst-plugins-good/repos/gnome-unstable-x86_64/PKGBUILD

+
 /PKGBUILD  |   80 +++
 gnome-unstable-i686/PKGBUILD   |   40 ---
 gnome-unstable-x86_64/PKGBUILD |   40 ---
 3 files changed, 80 insertions(+), 80 deletions(-)

Deleted: gnome-unstable-i686/PKGBUILD
===
--- gnome-unstable-i686/PKGBUILD2015-09-25 22:53:57 UTC (rev 247509)
+++ gnome-unstable-i686/PKGBUILD2015-09-25 22:55:32 UTC (rev 247510)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=gst-plugins-good
-pkgver=1.5.91
-pkgrel=1
-pkgdesc="GStreamer Multimedia Framework Good Plugins"
-arch=('i686' 'x86_64')
-license=('LGPL')
-url="http://gstreamer.freedesktop.org/";
-depends=('libpulse' 'jack' 'libsoup' 'gst-plugins-base-libs' 'wavpack' 'aalib' 
'taglib' 'libdv' 'libshout' 'libvpx' 'gdk-pixbuf2' 'libcaca' 'libavc1394' 
'libiec61883' 'libxdamage' 'v4l-utils' 'cairo' 'libgudev')
-makedepends=('gstreamer' 'speex' 'flac' 'libraw1394' 'python' 'gtk-doc')
-options=(!emptydirs)
-source=(${url}/src/$pkgname/$pkgname-$pkgver.tar.xz)
-sha256sums=('bdd892935e9b6be5d87ec62de147e941c5ba5ec1510ca80e60faa9b961f5140a')
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---disable-static --enable-experimental --enable-gtk-doc \
---with-package-name="GStreamer Good Plugins (Arch Linux)" \
---with-package-origin="http://www.archlinux.org/";
-
-  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-# Disabled for now: souphttpsrc times out, and takes a damn long time to do so
-#check() {
-#  cd $pkgname-$pkgver
-#  make check
-#}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="${pkgdir}" install
-}

Copied: gst-plugins-good/repos/gnome-unstable-i686/PKGBUILD (from rev 247509, 
gst-plugins-good/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2015-09-25 22:55:32 UTC (rev 247510)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=gst-plugins-good
+pkgver=1.6.0
+pkgrel=1
+pkgdesc="GStreamer Multimedia Framework Good Plugins"
+arch=('i686' 'x86_64')
+license=('LGPL')
+url="http://gstreamer.freedesktop.org/";
+depends=('libpulse' 'jack' 'libsoup' 'gst-plugins-base-libs' 'wavpack' 'aalib' 
'taglib' 'libdv' 'libshout' 'libvpx' 'gdk-pixbuf2' 'libcaca' 'libavc1394' 
'libiec61883' 'libxdamage' 'v4l-utils' 'cairo' 'libgudev')
+makedepends=('gstreamer' 'speex' 'flac' 'libraw1394' 'python' 'gtk-doc')
+options=(!emptydirs)
+source=(${url}/src/$pkgname/$pkgname-$pkgver.tar.xz)
+sha256sums=('a0915639595305e48884656e22b16fda7c6892aa02cdb3eb43e23dab6e6b81fa')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--disable-static --enable-experimental --enable-gtk-doc \
+--with-package-name="GStreamer Good Plugins (Arch Linux)" \
+--with-package-origin="http://www.archlinux.org/";
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+# Disabled for now: souphttpsrc times out, and takes a damn long time to do so
+#check() {
+#  cd $pkgname-$pkgver
+#  make check
+#}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="${pkgdir}" install
+}

Deleted: gnome-unstable-x86_64/PKGBUILD
===
--- gnome-unstable-x86_64/PKGBUILD  2015-09-25 22:53:57 UTC (rev 247509)
+++ gnome-unstable-x86_64/PKGBUILD  2015-09-25 22:55:32 UTC (rev 247510)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=gst-plugins-good
-pkgver=1.5.91
-pkgrel=1
-pkgdesc="GStreamer Multimedia Framework Good Plugins"
-arch=('i686' 'x86_64')
-license=('LGPL')
-url="http://gstreamer.freedesktop.org/";
-depends=('libpulse' 'jack' 'libsoup' 'gst-plugins-base-libs' 'wavpack' 'aalib' 
'taglib' 'libdv' 'libshout' 'libvpx' 'gdk-pixbuf2' 'libcaca' 'libavc1394' 
'libiec61883' 'libxdamage' 'v4l-utils' 'cairo' 'libgudev')
-makedepends=('gstreamer' 'speex' 'flac' 'libraw1394' 'python' 'gtk-doc')
-options=(!emptydirs)
-source=(${url}/src/$pkgname/$pkgname-$pkgver.tar.xz)
-sha256sums=('bdd892935e9b6be5d87ec62de147e941c5ba5ec1510ca80e60faa9b961f5140a')
-
-build() {

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

2015-09-25 Thread Jan Steffens
Date: Saturday, September 26, 2015 @ 00:53:57
  Author: heftig
Revision: 247509

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  gst-plugins-base/repos/gnome-unstable-i686/PKGBUILD
(from rev 247508, gst-plugins-base/trunk/PKGBUILD)
  gst-plugins-base/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 247508, gst-plugins-base/trunk/PKGBUILD)
Deleted:
  gst-plugins-base/repos/gnome-unstable-i686/PKGBUILD
  gst-plugins-base/repos/gnome-unstable-x86_64/PKGBUILD

+
 /PKGBUILD  |  108 +++
 gnome-unstable-i686/PKGBUILD   |   54 ---
 gnome-unstable-x86_64/PKGBUILD |   54 ---
 3 files changed, 108 insertions(+), 108 deletions(-)

Deleted: gnome-unstable-i686/PKGBUILD
===
--- gnome-unstable-i686/PKGBUILD2015-09-25 22:52:49 UTC (rev 247508)
+++ gnome-unstable-i686/PKGBUILD2015-09-25 22:53:57 UTC (rev 247509)
@@ -1,54 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgbase=gst-plugins-base
-pkgname=('gst-plugins-base-libs' 'gst-plugins-base')
-pkgver=1.5.91
-pkgrel=1
-pkgdesc="GStreamer Multimedia Framework Base Plugins"
-arch=('i686' 'x86_64')
-license=('LGPL')
-makedepends=('pkgconfig' 'gstreamer' 'orc' 'libxv' 'alsa-lib' 'cdparanoia' 
'libvisual' 'libvorbis' 'libtheora' 'pango' 'gobject-introspection' 'python2')
-options=(!emptydirs)
-url="http://gstreamer.freedesktop.org/";
-source=(${url}/src/$pkgbase/$pkgbase-${pkgver}.tar.xz)
-sha256sums=('b56d3cde64903acf8dc0dd0cc42f99bf5f1a5be14bd2994e16f6509a7e994a19')
-
-build() {
-  cd $pkgbase-$pkgver
-
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---disable-static --enable-experimental \
---with-package-name="GStreamer Base Plugins (Arch Linux)" \
---with-package-origin="http://www.archlinux.org/";
-
-  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-
-  sed -e 's/^SUBDIRS_EXT =.*/SUBDIRS_EXT =/' -i Makefile
-}
-
-check() {
-  cd $pkgbase-$pkgver
-  # Testsuite fails on one test. Some refcount leak
-  make check
-}
-
-package_gst-plugins-base-libs() {
-  pkgdesc="GStreamer Multimedia Framework Base Plugin libraries"
-  depends=('gstreamer' 'orc' 'libxv')
-
-  cd $pkgbase-$pkgver
-  make DESTDIR="${pkgdir}" install
-}
-
-package_gst-plugins-base() {
-  depends=("gst-plugins-base-libs=$pkgver" 'alsa-lib' 'cdparanoia' 'libvisual' 
'libvorbis' 'libtheora' 'pango')
-
-  cd $pkgbase-$pkgver
-  make -C gst-libs DESTDIR="${pkgdir}" install
-  make -C ext DESTDIR="${pkgdir}" install
-  make -C gst-libs DESTDIR="${pkgdir}" uninstall
-}

Copied: gst-plugins-base/repos/gnome-unstable-i686/PKGBUILD (from rev 247508, 
gst-plugins-base/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2015-09-25 22:53:57 UTC (rev 247509)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgbase=gst-plugins-base
+pkgname=('gst-plugins-base-libs' 'gst-plugins-base')
+pkgver=1.6.0
+pkgrel=1
+pkgdesc="GStreamer Multimedia Framework Base Plugins"
+arch=('i686' 'x86_64')
+license=('LGPL')
+makedepends=('pkgconfig' 'gstreamer' 'orc' 'libxv' 'alsa-lib' 'cdparanoia' 
'libvisual' 'libvorbis' 'libtheora' 'pango' 'gobject-introspection' 'python2')
+options=(!emptydirs)
+url="http://gstreamer.freedesktop.org/";
+source=(${url}/src/$pkgbase/$pkgbase-${pkgver}.tar.xz)
+sha256sums=('314fd1b707f65caf8eb6164d9422fc51e2b220a890ccd2de6ec03a2883d77231')
+
+build() {
+  cd $pkgbase-$pkgver
+
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--disable-static --enable-experimental \
+--with-package-name="GStreamer Base Plugins (Arch Linux)" \
+--with-package-origin="http://www.archlinux.org/";
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+
+  sed -e 's/^SUBDIRS_EXT =.*/SUBDIRS_EXT =/' -i Makefile
+}
+
+check() {
+  cd $pkgbase-$pkgver
+  # Testsuite fails on one test. Some refcount leak
+  make check
+}
+
+package_gst-plugins-base-libs() {
+  pkgdesc="GStreamer Multimedia Framework Base Plugin libraries"
+  depends=('gstreamer' 'orc' 'libxv')
+
+  cd $pkgbase-$pkgver
+  make DESTDIR="${pkgdir}" install
+}
+
+package_gst-plugins-base() {
+  depends=("gst-plugins-base-libs=$pkgver" 'alsa-lib' 'cdparanoia' 'libvisual' 
'libvorbis' 'libtheora' 'pango')
+
+  cd $pkgbase-$pkgver
+  make -C gst-libs DESTDIR="${pkgdir}" install
+  make -C ext DESTDIR="${pkgdir}" install
+  make -C gst-libs DESTDIR="${pkgdir}" uninstall
+}

Deleted: gnome-unstable-x86_64/PKGBUILD
===
--- gnome-unstable-x86_64/PKGBUILD  2015-09-25 22:52:49 UTC (rev 247508)
+++ gnome-unstable-x8

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

2015-09-25 Thread Jan Steffens
Date: Saturday, September 26, 2015 @ 00:52:49
  Author: heftig
Revision: 247508

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  gstreamer/repos/gnome-unstable-i686/PKGBUILD
(from rev 247507, gstreamer/trunk/PKGBUILD)
  gstreamer/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 247507, gstreamer/trunk/PKGBUILD)
Deleted:
  gstreamer/repos/gnome-unstable-i686/PKGBUILD
  gstreamer/repos/gnome-unstable-x86_64/PKGBUILD

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

Deleted: gnome-unstable-i686/PKGBUILD
===
--- gnome-unstable-i686/PKGBUILD2015-09-25 22:52:24 UTC (rev 247507)
+++ gnome-unstable-i686/PKGBUILD2015-09-25 22:52:49 UTC (rev 247508)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=gstreamer
-pkgver=1.5.91
-pkgrel=1
-pkgdesc="GStreamer Multimedia Framework"
-arch=('i686' 'x86_64')
-license=('LGPL')
-url="http://gstreamer.freedesktop.org/";
-depends=('libxml2' 'glib2')
-optdepends=('sh: feedback script')
-makedepends=('intltool' 'pkgconfig' 'gtk-doc' 'gobject-introspection' 
'python2')
-source=(${url}/src/gstreamer/gstreamer-${pkgver}.tar.xz)
-sha256sums=('1b25416d9908ee46ad79c2e070ed7560439d47e14cc77d4d509b5a3b03004f32')
-
-build() {
-  cd "${srcdir}/gstreamer-${pkgver}"
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--libexecdir=/usr/lib \
---with-package-name="GStreamer (Arch Linux)" \
---with-package-origin="http://www.archlinux.org/"; \
---enable-gtk-doc --disable-static
-
-  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-check() {
-  cd "${srcdir}/gstreamer-${pkgver}"
-  make check
-}
-
-package() {
-  cd "${srcdir}/gstreamer-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-}

Copied: gstreamer/repos/gnome-unstable-i686/PKGBUILD (from rev 247507, 
gstreamer/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2015-09-25 22:52:49 UTC (rev 247508)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=gstreamer
+pkgver=1.6.0
+pkgrel=1
+pkgdesc="GStreamer Multimedia Framework"
+arch=('i686' 'x86_64')
+license=('LGPL')
+url="http://gstreamer.freedesktop.org/";
+depends=('libxml2' 'glib2')
+optdepends=('sh: feedback script')
+makedepends=('intltool' 'pkgconfig' 'gtk-doc' 'gobject-introspection' 
'python2')
+source=(${url}/src/gstreamer/gstreamer-${pkgver}.tar.xz)
+sha256sums=('52ef885647afef11c8b7645a9afefe04aa09e8971c4b932e7717872ab8a30fcc')
+
+build() {
+  cd "${srcdir}/gstreamer-${pkgver}"
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--libexecdir=/usr/lib \
+--with-package-name="GStreamer (Arch Linux)" \
+--with-package-origin="http://www.archlinux.org/"; \
+--enable-gtk-doc --disable-static
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+check() {
+  cd "${srcdir}/gstreamer-${pkgver}"
+  make check
+}
+
+package() {
+  cd "${srcdir}/gstreamer-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}

Deleted: gnome-unstable-x86_64/PKGBUILD
===
--- gnome-unstable-x86_64/PKGBUILD  2015-09-25 22:52:24 UTC (rev 247507)
+++ gnome-unstable-x86_64/PKGBUILD  2015-09-25 22:52:49 UTC (rev 247508)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=gstreamer
-pkgver=1.5.91
-pkgrel=1
-pkgdesc="GStreamer Multimedia Framework"
-arch=('i686' 'x86_64')
-license=('LGPL')
-url="http://gstreamer.freedesktop.org/";
-depends=('libxml2' 'glib2')
-optdepends=('sh: feedback script')
-makedepends=('intltool' 'pkgconfig' 'gtk-doc' 'gobject-introspection' 
'python2')
-source=(${url}/src/gstreamer/gstreamer-${pkgver}.tar.xz)
-sha256sums=('1b25416d9908ee46ad79c2e070ed7560439d47e14cc77d4d509b5a3b03004f32')
-
-build() {
-  cd "${srcdir}/gstreamer-${pkgver}"
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--libexecdir=/usr/lib \
---with-package-name="GStreamer (Arch Linux)" \
---with-package-origin="http://www.archlinux.org/"; \
---enable-gtk-doc --disable-static
-
-  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-check() {
-  cd "${srcdir}/gstreamer-${pkgver}"
-  make check
-}
-
-package() {
-  cd "${srcdir}/gstreamer-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-}

Copied: gstreamer/repos/gnome-unstable-x86_64/PKGBUILD (from rev 247507, 
gstreamer/trunk/PKGBUILD)
===

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

2015-09-25 Thread Jan Steffens
Date: Saturday, September 26, 2015 @ 00:52:24
  Author: heftig
Revision: 247507

gst 1.6

Modified:
  gstreamer-vaapi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-25 22:51:31 UTC (rev 247506)
+++ PKGBUILD2015-09-25 22:52:24 UTC (rev 247507)
@@ -3,7 +3,7 @@
 
 pkgname=gstreamer-vaapi
 pkgver=0.6.0
-pkgrel=2
+pkgrel=3
 pkgdesc="GStreamer Multimedia Framework VA Plugins"
 arch=(i686 x86_64)
 license=(LGPL)


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

2015-09-25 Thread Jan Steffens
Date: Saturday, September 26, 2015 @ 00:51:31
  Author: heftig
Revision: 247506

1.6.0

Modified:
  gst-libav/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-25 22:51:01 UTC (rev 247505)
+++ PKGBUILD2015-09-25 22:51:31 UTC (rev 247506)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot 
 
 pkgname=gst-libav
-pkgver=1.5.91
+pkgver=1.6.0
 pkgrel=1
 pkgdesc="Gstreamer libav Plugin"
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 options=(!emptydirs)
 provides=("gst-ffmpeg=$pkgver-$pkgrel")
 source=(${url}/src/$pkgname/$pkgname-$pkgver.tar.xz)
-sha256sums=('1473e8254d7446bacdea3a7481313d9125f17cfdacc0b4cc413abeab535217fd')
+sha256sums=('6cca6cf73182a882768ef0c860af88c2fd2c77e2c81ce464a998ab4e6baa604c')
 
 prepare() {
   cd $pkgname-$pkgver


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

2015-09-25 Thread Jan Steffens
Date: Saturday, September 26, 2015 @ 00:51:01
  Author: heftig
Revision: 247505

1.6.0

Modified:
  gst-plugins-ugly/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-25 22:50:58 UTC (rev 247504)
+++ PKGBUILD2015-09-25 22:51:01 UTC (rev 247505)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot 
 
 pkgname=gst-plugins-ugly
-pkgver=1.5.91
+pkgver=1.6.0
 pkgrel=1
 pkgdesc="GStreamer Multimedia Framework Ugly Plugins"
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 makedepends=('python' 'gtk-doc' 'x264')
 options=(!emptydirs)
 source=(${url}/src/$pkgname/$pkgname-$pkgver.tar.xz)
-sha256sums=('3a487329271f45dc56eaf53993aef319a9f57e61ec166a4fd61e2f4e04256950')
+sha256sums=('91178dc0d687a83c083190a905681d3a66901374b1004fc52cd300b7802e5f06')
 
 build() {
   cd $pkgname-$pkgver


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

2015-09-25 Thread Jan Steffens
Date: Saturday, September 26, 2015 @ 00:50:58
  Author: heftig
Revision: 247504

1.6.0

Modified:
  gst-plugins-bad/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-25 22:26:40 UTC (rev 247503)
+++ PKGBUILD2015-09-25 22:50:58 UTC (rev 247504)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot 
 
 pkgname=gst-plugins-bad
-pkgver=1.5.91
+pkgver=1.6.0
 pkgrel=1
 pkgdesc="GStreamer Multimedia Framework Bad Plugins"
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
  'gobject-introspection' 'gtk-doc' 'gtk3' 'clutter' 'opencv' 
'libtiger' 'ladspa' 'openal' 'libusb')
 options=(!emptydirs)
 source=(${url}/src/$pkgname/$pkgname-$pkgver.tar.xz)
-sha256sums=('193534a17c4338f8e8fa2f1720e6f61557e72ee6a6985d551020f63226a0c810')
+sha256sums=('d8ff26128d4ecd2ffeb28e14843808d2d971b09056b7cee6f08afcae01fc0f49')
 
 prepare() {
   cd $pkgname-$pkgver


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

2015-09-25 Thread Jan Steffens
Date: Saturday, September 26, 2015 @ 00:26:40
  Author: heftig
Revision: 247503

1.6.0

Modified:
  gst-plugins-good/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-25 22:25:05 UTC (rev 247502)
+++ PKGBUILD2015-09-25 22:26:40 UTC (rev 247503)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot 
 
 pkgname=gst-plugins-good
-pkgver=1.5.91
+pkgver=1.6.0
 pkgrel=1
 pkgdesc="GStreamer Multimedia Framework Good Plugins"
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 makedepends=('gstreamer' 'speex' 'flac' 'libraw1394' 'python' 'gtk-doc')
 options=(!emptydirs)
 source=(${url}/src/$pkgname/$pkgname-$pkgver.tar.xz)
-sha256sums=('bdd892935e9b6be5d87ec62de147e941c5ba5ec1510ca80e60faa9b961f5140a')
+sha256sums=('a0915639595305e48884656e22b16fda7c6892aa02cdb3eb43e23dab6e6b81fa')
 
 build() {
   cd $pkgname-$pkgver


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

2015-09-25 Thread Jan Steffens
Date: Saturday, September 26, 2015 @ 00:25:05
  Author: heftig
Revision: 247502

1.6.0

Modified:
  gst-plugins-base/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-25 22:23:19 UTC (rev 247501)
+++ PKGBUILD2015-09-25 22:25:05 UTC (rev 247502)
@@ -3,7 +3,7 @@
 
 pkgbase=gst-plugins-base
 pkgname=('gst-plugins-base-libs' 'gst-plugins-base')
-pkgver=1.5.91
+pkgver=1.6.0
 pkgrel=1
 pkgdesc="GStreamer Multimedia Framework Base Plugins"
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 options=(!emptydirs)
 url="http://gstreamer.freedesktop.org/";
 source=(${url}/src/$pkgbase/$pkgbase-${pkgver}.tar.xz)
-sha256sums=('b56d3cde64903acf8dc0dd0cc42f99bf5f1a5be14bd2994e16f6509a7e994a19')
+sha256sums=('314fd1b707f65caf8eb6164d9422fc51e2b220a890ccd2de6ec03a2883d77231')
 
 build() {
   cd $pkgbase-$pkgver


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

2015-09-25 Thread Jan Steffens
Date: Saturday, September 26, 2015 @ 00:23:19
  Author: heftig
Revision: 247501

1.6.0

Modified:
  gstreamer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-25 22:18:34 UTC (rev 247500)
+++ PKGBUILD2015-09-25 22:23:19 UTC (rev 247501)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot 
 
 pkgname=gstreamer
-pkgver=1.5.91
+pkgver=1.6.0
 pkgrel=1
 pkgdesc="GStreamer Multimedia Framework"
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 optdepends=('sh: feedback script')
 makedepends=('intltool' 'pkgconfig' 'gtk-doc' 'gobject-introspection' 
'python2')
 source=(${url}/src/gstreamer/gstreamer-${pkgver}.tar.xz)
-sha256sums=('1b25416d9908ee46ad79c2e070ed7560439d47e14cc77d4d509b5a3b03004f32')
+sha256sums=('52ef885647afef11c8b7645a9afefe04aa09e8971c4b932e7717872ab8a30fcc')
 
 build() {
   cd "${srcdir}/gstreamer-${pkgver}"


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

2015-09-25 Thread Jan Steffens
Date: Saturday, September 26, 2015 @ 00:17:59
  Author: heftig
Revision: 247499

0.2.7

Modified:
  libgusb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-25 21:16:22 UTC (rev 247498)
+++ PKGBUILD2015-09-25 22:17:59 UTC (rev 247499)
@@ -2,7 +2,7 @@
 # Maintainer: Ionut Biru 
 
 pkgname=libgusb
-pkgver=0.2.6
+pkgver=0.2.7
 pkgrel=1
 pkgdesc="GLib wrapper around libusb1"
 arch=('i686' 'x86_64')
@@ -11,7 +11,7 @@
 depends=('udev' 'libusbx' 'glib2')
 makedepends=('gobject-introspection' 'python2')
 
source=(http://people.freedesktop.org/~hughsient/releases/$pkgname-$pkgver.tar.xz)
-sha256sums=('6f638bdbc4e77643c0a198a300e50b592ad326e56bddf359de15e04689209c06')
+sha256sums=('0be9578f7875cecb6c163ad47eb39bc6bf497e501b08986c0d384748a054c3ee')
 
 build() {
   cd $pkgname-$pkgver


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

2015-09-25 Thread Jan Steffens
Date: Saturday, September 26, 2015 @ 00:18:34
  Author: heftig
Revision: 247500

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-09-25 22:17:59 UTC (rev 247499)
+++ extra-i686/PKGBUILD 2015-09-25 22:18:34 UTC (rev 247500)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru 
-
-pkgname=libgusb
-pkgver=0.2.6
-pkgrel=1
-pkgdesc="GLib wrapper around libusb1"
-arch=('i686' 'x86_64')
-url="https://github.com/hughsie/libgusb";
-license=('LGPL2.1')
-depends=('udev' 'libusbx' 'glib2')
-makedepends=('gobject-introspection' 'python2')
-source=(http://people.freedesktop.org/~hughsient/releases/$pkgname-$pkgver.tar.xz)
-sha256sums=('6f638bdbc4e77643c0a198a300e50b592ad326e56bddf359de15e04689209c06')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --disable-static
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: libgusb/repos/extra-i686/PKGBUILD (from rev 247499, 
libgusb/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-09-25 22:18:34 UTC (rev 247500)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Ionut Biru 
+
+pkgname=libgusb
+pkgver=0.2.7
+pkgrel=1
+pkgdesc="GLib wrapper around libusb1"
+arch=('i686' 'x86_64')
+url="https://github.com/hughsie/libgusb";
+license=('LGPL2.1')
+depends=('udev' 'libusbx' 'glib2')
+makedepends=('gobject-introspection' 'python2')
+source=(http://people.freedesktop.org/~hughsient/releases/$pkgname-$pkgver.tar.xz)
+sha256sums=('0be9578f7875cecb6c163ad47eb39bc6bf497e501b08986c0d384748a054c3ee')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-09-25 22:17:59 UTC (rev 247499)
+++ extra-x86_64/PKGBUILD   2015-09-25 22:18:34 UTC (rev 247500)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru 
-
-pkgname=libgusb
-pkgver=0.2.6
-pkgrel=1
-pkgdesc="GLib wrapper around libusb1"
-arch=('i686' 'x86_64')
-url="https://github.com/hughsie/libgusb";
-license=('LGPL2.1')
-depends=('udev' 'libusbx' 'glib2')
-makedepends=('gobject-introspection' 'python2')
-source=(http://people.freedesktop.org/~hughsient/releases/$pkgname-$pkgver.tar.xz)
-sha256sums=('6f638bdbc4e77643c0a198a300e50b592ad326e56bddf359de15e04689209c06')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --disable-static
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: libgusb/repos/extra-x86_64/PKGBUILD (from rev 247499, 
libgusb/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2015-09-25 22:18:34 UTC (rev 247500)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Ionut Biru 
+
+pkgname=libgusb
+pkgver=0.2.7
+pkgrel=1
+pkgdesc="GLib wrapper around libusb1"
+arch=('i686' 'x86_64')
+url="https://github.com/hughsie/libgusb";
+license=('LGPL2.1')
+depends=('udev' 'libusbx' 'glib2')
+makedepends=('gobject-introspection' 'python2')
+source=(http://people.freedesktop.org/~hughsient/releases/$pkgname-$pkgver.tar.xz)
+sha256sums=('0be9578f7875cecb6c163ad47eb39bc6bf497e501b08986c0d384748a054c3ee')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:


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

2015-09-25 Thread Jan Steffens
Date: Friday, September 25, 2015 @ 23:16:22
  Author: heftig
Revision: 247498

replace elfutils with just libelf

Modified:
  glib2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-25 19:11:09 UTC (rev 247497)
+++ PKGBUILD2015-09-25 21:16:22 UTC (rev 247498)
@@ -8,7 +8,7 @@
 pkgdesc="Common C routines used by GTK+ and other libs"
 url="http://www.gtk.org/";
 arch=(i686 x86_64)
-makedepends=('pkg-config' 'python2' 'libxslt' 'docbook-xml' 'pcre' 'libffi' 
'elfutils')
+makedepends=('pkg-config' 'python2' 'libxslt' 'docbook-xml' 'pcre' 'libffi' 
'libelf')
 
source=(http://ftp.gnome.org/pub/GNOME/sources/glib/${pkgver:0:4}/glib-$pkgver.tar.xz
 0001-Revert-list-store-Fix-a-parameter-check.patch
 revert-warn-glib-compile-schemas.patch)
@@ -39,7 +39,7 @@
 package_glib2() {
   depends=('pcre' 'libffi')
   optdepends=('python2: for gdbus-codegen and gtester-report'
-  'elfutils: gresource inspection tool')
+  'libelf: gresource inspection tool')
   options=('!docs' '!emptydirs')
   license=('LGPL')
 


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

2015-09-25 Thread Jan Steffens
Date: Friday, September 25, 2015 @ 20:57:44
  Author: heftig
Revision: 247495

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

Added:
  plasma-workspace/repos/testing-i686/PKGBUILD
(from rev 247493, plasma-workspace/trunk/PKGBUILD)
  plasma-workspace/repos/testing-i686/dbus-update-environment.patch
(from rev 247493, plasma-workspace/trunk/dbus-update-environment.patch)
  plasma-workspace/repos/testing-i686/kde.pam
(from rev 247493, plasma-workspace/trunk/kde.pam)
  plasma-workspace/repos/testing-x86_64/PKGBUILD
(from rev 247493, plasma-workspace/trunk/PKGBUILD)
  plasma-workspace/repos/testing-x86_64/dbus-update-environment.patch
(from rev 247494, plasma-workspace/trunk/dbus-update-environment.patch)
  plasma-workspace/repos/testing-x86_64/kde.pam
(from rev 247494, plasma-workspace/trunk/kde.pam)
Deleted:
  plasma-workspace/repos/testing-i686/PKGBUILD
  plasma-workspace/repos/testing-i686/dbus-update-environment.patch
  plasma-workspace/repos/testing-i686/kde.pam
  plasma-workspace/repos/testing-x86_64/PKGBUILD
  plasma-workspace/repos/testing-x86_64/dbus-update-environment.patch
  plasma-workspace/repos/testing-x86_64/kde.pam

--+
 /PKGBUILD|  150 +
 /dbus-update-environment.patch   |  108 ++
 /kde.pam |   18 +++
 testing-i686/PKGBUILD|   75 
 testing-i686/dbus-update-environment.patch   |   24 
 testing-i686/kde.pam |9 -
 testing-x86_64/PKGBUILD  |   75 
 testing-x86_64/dbus-update-environment.patch |   24 
 testing-x86_64/kde.pam   |9 -
 9 files changed, 276 insertions(+), 216 deletions(-)

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2015-09-25 18:57:35 UTC (rev 247494)
+++ testing-i686/PKGBUILD   2015-09-25 18:57:44 UTC (rev 247495)
@@ -1,75 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Antonio Rojas
-# Contributor: Alexey D. 
-
-pkgbase=plasma-workspace
-pkgname=('plasma-workspace' 'drkonqi')
-pkgver=5.4.1
-pkgrel=3
-pkgdesc='KDE Plasma Workspace'
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/workspace/plasma-workspace'
-license=('LGPL')
-# note on libxdamage:
-# not detected by namcap because libgl depends on it
-# but nvidia providing libgl does not depend on libxdamage
-depends=('knewstuff' 'kjsembed' 'knotifyconfig' 'libxdamage' 'kwayland'
- 'libksysguard' 'libkscreen' 'ktexteditor' 'libqalculate'
- 'qt5-tools' 'kded' 'kde-cli-tools' 'xorg-xrdb' 'xorg-xsetroot'
- 'xorg-xmessage' 'xorg-xprop' 'milou' 'breeze' 'prison-frameworks')
-makedepends=('extra-cmake-modules' 'kdoctools' 'kwin' 'gpsd' 'baloo'
- 'krunner' 'kxmlrpcclient' 'networkmanager-qt')
-groups=('plasma')
-source=("http://download.kde.org/stable/plasma/${pkgver}/${pkgbase}-${pkgver}.tar.xz";
-'kde.pam' 'dbus-update-environment.patch')
-md5sums=('0675ac84f739218cd1a17cfdc3d91e22'
- '378ee33a9ec2870a1a899f2e05ee00d4'
- '93414bae74d99b1ded7e8d7bd65b8882')
-
-prepare() {
-  mkdir build
-
-  cd ${pkgbase}-${pkgver}
-  # sends env vars to existing dbus
-  patch -p1 -i "${srcdir}"/dbus-update-environment.patch
-  # be sure to use the Qt5 version of qtpaths
-  sed -i 's:qtpaths:qtpaths-qt5:' startkde/startkde.cmake
-}
-
-build() {
-  cd build
-  cmake ../${pkgbase}-${pkgver} \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DLIB_INSTALL_DIR=lib \
--DLIBEXEC_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package_plasma-workspace() {
-  optdepends=('plasma-workspace-wallpapers: additional wallpapers'
-  'gpsd: GPS based geolocation' 'networkmanager-qt: IP based 
geolocation')
-  conflicts=('kdebase-workspace')
-
-  cd build
-  make DESTDIR="${pkgdir}" install
-
-  install -Dm644 "${srcdir}"/kde.pam \
-"${pkgdir}"/etc/pam.d/kde
-
-  # Remove conflicts with drkonqi
-  rm "${pkgdir}"/usr/lib/drkonqi
-  rm -r "${pkgdir}"/usr/share/drkonqi
-}
-
-package_drkonqi() {
-  pkgdesc='KDE crash handler'
-  depends=('kdewebkit' 'kxmlrpcclient' 'gdb')
-
-  cd build/drkonqi
-  make DESTDIR="${pkgdir}" install
-}

Copied: plasma-workspace/repos/testing-i686/PKGBUILD (from rev 247493, 
plasma-workspace/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-09-25 18:57:44 UTC (rev 247495)
@@ -0,0 +1,75 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Antonio Rojas
+# Contributor: Alexey D. 
+
+pkgbase=plasma-workspace
+pkgname=('plasma-workspace' 'drkonqi')
+pkgver=5

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

2015-09-25 Thread Jan Steffens
Date: Friday, September 25, 2015 @ 20:57:35
  Author: heftig
Revision: 247494

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  gnome-maps/repos/gnome-unstable-i686/PKGBUILD
(from rev 247493, gnome-maps/trunk/PKGBUILD)
  gnome-maps/repos/gnome-unstable-i686/gnome-maps.install
(from rev 247493, gnome-maps/trunk/gnome-maps.install)
  gnome-maps/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 247493, gnome-maps/trunk/PKGBUILD)
  gnome-maps/repos/gnome-unstable-x86_64/gnome-maps.install
(from rev 247493, gnome-maps/trunk/gnome-maps.install)
Deleted:
  gnome-maps/repos/gnome-unstable-i686/PKGBUILD
  gnome-maps/repos/gnome-unstable-i686/gnome-maps.install
  gnome-maps/repos/gnome-unstable-x86_64/PKGBUILD
  gnome-maps/repos/gnome-unstable-x86_64/gnome-maps.install

--+
 /PKGBUILD|   54 +
 /gnome-maps.install  |   24 
 gnome-unstable-i686/PKGBUILD |   27 --
 gnome-unstable-i686/gnome-maps.install   |   12 --
 gnome-unstable-x86_64/PKGBUILD   |   27 --
 gnome-unstable-x86_64/gnome-maps.install |   12 --
 6 files changed, 78 insertions(+), 78 deletions(-)

Deleted: gnome-unstable-i686/PKGBUILD
===
--- gnome-unstable-i686/PKGBUILD2015-09-25 18:55:15 UTC (rev 247493)
+++ gnome-unstable-i686/PKGBUILD2015-09-25 18:57:35 UTC (rev 247494)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=gnome-maps
-pkgver=3.18.0
-pkgrel=1
-pkgdesc="A simple GNOME 3 maps application"
-arch=(i686 x86_64)
-license=('GPL')
-url="https://live.gnome.org/Maps";
-depends=(geocode-glib geoclue2 gjs libchamplain gnome-themes-standard libgee 
folks gfbgraph)
-makedepends=(intltool gobject-introspection)
-groups=('gnome-extra')
-install=gnome-maps.install
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('242f70346a1527ba0d9a664bd863b02e2227f9f0f0f577b9b0c00dc3075eb85e')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --disable-schemas-compile
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make -j1 DESTDIR="${pkgdir}" install
-}

Copied: gnome-maps/repos/gnome-unstable-i686/PKGBUILD (from rev 247493, 
gnome-maps/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2015-09-25 18:57:35 UTC (rev 247494)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=gnome-maps
+pkgver=3.18.0.1
+pkgrel=1
+pkgdesc="A simple GNOME 3 maps application"
+arch=(i686 x86_64)
+license=('GPL')
+url="https://live.gnome.org/Maps";
+depends=(geocode-glib geoclue2 gjs libchamplain gnome-themes-standard libgee 
folks gfbgraph)
+makedepends=(intltool gobject-introspection)
+groups=('gnome-extra')
+install=gnome-maps.install
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('a5eb37bb6a867c3f27a4339d9cb562ea3cc385945f87b8d6829e0c6acd67e83e')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --disable-schemas-compile
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make -j1 DESTDIR="${pkgdir}" install
+}

Deleted: gnome-unstable-i686/gnome-maps.install
===
--- gnome-unstable-i686/gnome-maps.install  2015-09-25 18:55:15 UTC (rev 
247493)
+++ gnome-unstable-i686/gnome-maps.install  2015-09-25 18:57:35 UTC (rev 
247494)
@@ -1,12 +0,0 @@
-post_install() {
-  glib-compile-schemas usr/share/glib-2.0/schemas
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: gnome-maps/repos/gnome-unstable-i686/gnome-maps.install (from rev 
247493, gnome-maps/trunk/gnome-maps.install)
===
--- gnome-unstable-i686/gnome-maps.install  (rev 0)
+++ gnome-unstable-i686/gnome-maps.install  2015-09-25 18:57:35 UTC (rev 
247494)
@@ -0,0 +1,12 @@
+post_install() {
+  glib-compile-schemas usr/share/glib-2.0/schemas
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Deleted: gnome-unstable-x86_64/PKGBUILD
===
--- gnome-unstable-x86_64/PKGBUILD  2015-09-25 18:55:15 UTC (rev 247493)
+++ gnome-unstable-x86_64/PKGBUILD  2015-09-25 18:57:35 UTC (rev 247494)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=gnome-maps
-pkgver=3.18.0
-pkgrel=1
-pkgdesc="A simple GNOME 3 maps application"
-arch=(i686 x86_64)
-license=('GPL')
-url="https://live.gnome.org/Maps";
-dep

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

2015-09-25 Thread Jan Steffens
Date: Friday, September 25, 2015 @ 20:55:15
  Author: heftig
Revision: 247493

3.18.0.1

Modified:
  gnome-maps/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-25 18:54:35 UTC (rev 247492)
+++ PKGBUILD2015-09-25 18:55:15 UTC (rev 247493)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot 
 
 pkgname=gnome-maps
-pkgver=3.18.0
+pkgver=3.18.0.1
 pkgrel=1
 pkgdesc="A simple GNOME 3 maps application"
 arch=(i686 x86_64)
@@ -13,7 +13,7 @@
 groups=('gnome-extra')
 install=gnome-maps.install
 
source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('242f70346a1527ba0d9a664bd863b02e2227f9f0f0f577b9b0c00dc3075eb85e')
+sha256sums=('a5eb37bb6a867c3f27a4339d9cb562ea3cc385945f87b8d6829e0c6acd67e83e')
 
 build() {
   cd $pkgname-$pkgver


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

2015-09-25 Thread Jan Steffens
Date: Friday, September 25, 2015 @ 20:54:35
  Author: heftig
Revision: 247492

move d-u-a-e call

Modified:
  plasma-workspace/trunk/PKGBUILD
  plasma-workspace/trunk/dbus-update-environment.patch

---+
 PKGBUILD  |4 +-
 dbus-update-environment.patch |   74 
 2 files changed, 54 insertions(+), 24 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-09-25 17:58:30 UTC (rev 247491)
+++ PKGBUILD2015-09-25 18:54:35 UTC (rev 247492)
@@ -7,7 +7,7 @@
 pkgbase=plasma-workspace
 pkgname=('plasma-workspace' 'drkonqi')
 pkgver=5.4.1
-pkgrel=3
+pkgrel=4
 pkgdesc='KDE Plasma Workspace'
 arch=('i686' 'x86_64')
 url='https://projects.kde.org/projects/kde/workspace/plasma-workspace'
@@ -26,7 +26,7 @@
 'kde.pam' 'dbus-update-environment.patch')
 md5sums=('0675ac84f739218cd1a17cfdc3d91e22'
  '378ee33a9ec2870a1a899f2e05ee00d4'
- '93414bae74d99b1ded7e8d7bd65b8882')
+ '5ca1a098128753c12b23ee316d9ee78e')
 
 prepare() {
   mkdir build

Modified: dbus-update-environment.patch
===
--- dbus-update-environment.patch   2015-09-25 17:58:30 UTC (rev 247491)
+++ dbus-update-environment.patch   2015-09-25 18:54:35 UTC (rev 247492)
@@ -1,24 +1,54 @@
-diff -u -r plasma-workspace-5.4.1/startkde/startkde.cmake 
plasma-workspace-5.4.1-dbus/startkde/startkde.cmake
 plasma-workspace-5.4.1/startkde/startkde.cmake 2015-09-25 
19:12:09.630988076 +0200
-+++ plasma-workspace-5.4.1-dbus/startkde/startkde.cmake2015-09-25 
19:15:07.320598595 +0200
-@@ -286,6 +286,8 @@
- # D-Bus autolaunch is broken
- if test -z "$DBUS_SESSION_BUS_ADDRESS" ; then
- eval `dbus-launch --sh-syntax --exit-with-session`
-+elif which dbus-update-activation-environment >/dev/null 2>/dev/null ; then
-+dbus-update-activation-environment --systemd --all
+From 195a2f24ea87d642c654ad6e06f3fede4fb66c64 Mon Sep 17 00:00:00 2001
+From: "Jan Alexander Steffens (heftig)" 
+Date: Fri, 25 Sep 2015 19:27:29 +0200
+Subject: [PATCH] [startkde] Use dbus-update-activation-environment
+
+The difference to ksyncdbusenv is that d-u-a-e can update systemd's
+environment, too. This is only important if a userspace (dbus-daemon) bus
+is used and service files make use of SystemdService to have dbus-daemon
+tell systemd to start the service.
+
+In the kernel bus (kdbus) case, systemd's environment gets updated when
+org.freedesktop.dbus.UpdateActivationEnvironment is called.
+---
+ startkde/startkde.cmake  | 6 +-
+ startkde/startplasmacompositor.cmake | 6 +-
+ 2 files changed, 10 insertions(+), 2 deletions(-)
+
+diff --git a/startkde/startkde.cmake b/startkde/startkde.cmake
+index b034b96..f5748dc 100644
+--- a/startkde/startkde.cmake
 b/startkde/startkde.cmake
+@@ -343,7 +343,11 @@ if test -n "$PAM_KWALLET5_LOGIN" ; then
  fi
- if $qdbus >/dev/null 2>/dev/null; then
- : # ok
-diff -u -r plasma-workspace-5.4.1/startkde/startplasmacompositor.cmake 
plasma-workspace-5.4.1-dbus/startkde/startplasmacompositor.cmake
 plasma-workspace-5.4.1/startkde/startplasmacompositor.cmake
2015-09-03 12:26:33.0 +0200
-+++ plasma-workspace-5.4.1-dbus/startkde/startplasmacompositor.cmake   
2015-09-25 19:15:17.150577050 +0200
-@@ -163,6 +163,8 @@
- # D-Bus autolaunch is broken
- if test -z "$DBUS_SESSION_BUS_ADDRESS" ; then
- eval `dbus-launch --sh-syntax --exit-with-session`
-+elif which dbus-update-activation-environment >/dev/null 2>/dev/null ; then
+ 
+ # At this point all environment variables are set, let's send it to the DBus 
session server to update the activation environment
+-@CMAKE_INSTALL_FULL_LIBEXECDIR@/ksyncdbusenv
++if which dbus-update-activation-environment >/dev/null 2>/dev/null ; then
 +dbus-update-activation-environment --systemd --all
- fi
- if $qdbus >/dev/null 2>/dev/null; then
- : # ok
++else
++@CMAKE_INSTALL_FULL_LIBEXECDIR@/ksyncdbusenv
++fi
+ if test $? -ne 0; then
+   # Startup error
+   echo 'startkde: Could not sync environment to dbus.'  1>&2
+diff --git a/startkde/startplasmacompositor.cmake 
b/startkde/startplasmacompositor.cmake
+index d8ed68e..17f5881 100644
+--- a/startkde/startplasmacompositor.cmake
 b/startkde/startplasmacompositor.cmake
+@@ -212,7 +212,11 @@ QT_QPA_PLATFORM=wayland
+ export QT_QPA_PLATFORM
+ 
+ # At this point all environment variables are set, let's send it to the DBus 
session server to update the activation environment
+-@CMAKE_INSTALL_FULL_LIBEXECDIR@/ksyncdbusenv
++if which dbus-update-activation-environment >/dev/null 2>/dev/null ; then
++dbus-update-activation-environment --systemd --all
++else
++@CMAKE_INSTALL_FULL_LIBEXECDIR@/ksyncdbusenv
++fi
+ if test $? -ne 0; then
+   # Startup error
+   echo 'startplasmacompositor: Could not sync environment to dbus.'  1>&2
+-- 
+2.4.6
+


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

2015-09-25 Thread Alexander Rødseth
Date: Friday, September 25, 2015 @ 20:26:57
  Author: arodseth
Revision: 141607

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

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

--+
 community-staging-i686/PKGBUILD  |   49 +
 community-staging-i686/nemiver.install   |   14 
 community-staging-x86_64/PKGBUILD|   49 +
 community-staging-x86_64/nemiver.install |   14 
 4 files changed, 126 insertions(+)

Copied: nemiver/repos/community-staging-i686/PKGBUILD (from rev 141606, 
nemiver/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-09-25 18:26:57 UTC (rev 141607)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: jordz 
+
+pkgname=nemiver
+pkgver=0.9.6
+pkgrel=1
+pkgdesc='C/C++ debugger for GNOME'
+arch=('x86_64' 'i686')
+license=('GPL')
+url='http://www.gnome.org/projects/nemiver/'
+install="$pkgname.install"
+depends=('gdlmm' 'gdb' 'gtksourceviewmm' 'libgtop' 'vte3' 'ghex' 
'gsettings-desktop-schemas')
+makedepends=('boost' 'intltool' 'itstool' 'gconf' 'gnome-common' 'yelp-tools')
+source=("http://ftp.acc.umu.se/pub/GNOME/sources/nemiver/0.9/$pkgname-$pkgver.tar.xz";)
+options=('!emptydirs')
+sha256sums=('85ab8cf6c4f83262f441cb0952a6147d075c3c53d0687389a3555e946b694ef2')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+
+  NOCONFIGURE=1 AUTOPOINT=intltoolize gnome-autogen.sh
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--disable-static \
+--with-boost \
+--disable-scrollkeeper \
+--enable-symsvis=yes \
+--enable-memoryview=yes \
+--enable-gsettings=yes \
+--disable-schemas-compile
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+}
+
+# getver: git.gnome.org/browse/nemiver/plain/configure.ac
+# vim:set ts=2 sw=2 et:

Copied: nemiver/repos/community-staging-i686/nemiver.install (from rev 141606, 
nemiver/trunk/nemiver.install)
===
--- community-staging-i686/nemiver.install  (rev 0)
+++ community-staging-i686/nemiver.install  2015-09-25 18:26:57 UTC (rev 
141607)
@@ -0,0 +1,14 @@
+post_install() {
+  glib-compile-schemas /usr/share/glib-2.0/schemas
+  gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: nemiver/repos/community-staging-x86_64/PKGBUILD (from rev 141606, 
nemiver/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-09-25 18:26:57 UTC (rev 141607)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: jordz 
+
+pkgname=nemiver
+pkgver=0.9.6
+pkgrel=1
+pkgdesc='C/C++ debugger for GNOME'
+arch=('x86_64' 'i686')
+license=('GPL')
+url='http://www.gnome.org/projects/nemiver/'
+install="$pkgname.install"
+depends=('gdlmm' 'gdb' 'gtksourceviewmm' 'libgtop' 'vte3' 'ghex' 
'gsettings-desktop-schemas')
+makedepends=('boost' 'intltool' 'itstool' 'gconf' 'gnome-common' 'yelp-tools')
+source=("http://ftp.acc.umu.se/pub/GNOME/sources/nemiver/0.9/$pkgname-$pkgver.tar.xz";)
+options=('!emptydirs')
+sha256sums=('85ab8cf6c4f83262f441cb0952a6147d075c3c53d0687389a3555e946b694ef2')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+
+  NOCONFIGURE=1 AUTOPOINT=intltoolize gnome-autogen.sh
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--disable-static \
+--with-boost \
+--disable-scrollkeeper \
+--enable-symsvis=yes \
+--enable-memoryview=yes \
+--enable-gsettings=yes \
+--disable-schemas-compile
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+}
+
+# getver: git.gnome.org/browse/nemiver/plain/configure.ac
+# vim:set ts=2 sw=2 et:

Copied: nemiver/repos/community-staging-x86_64/nemiver.install (from rev 
141606, nemiver/trunk/nemiver.install)
===
--- community-staging-x86_64/nemiver.install(rev

[arch-commits] Commit in nemiver/trunk (PKGBUILD vte2.91.patch)

2015-09-25 Thread Alexander Rødseth
Date: Friday, September 25, 2015 @ 20:26:44
  Author: arodseth
Revision: 141606

upgpkg: nemiver 0.9.6-1

Modified:
  nemiver/trunk/PKGBUILD
Deleted:
  nemiver/trunk/vte2.91.patch

---+
 PKGBUILD  |   17 +---
 vte2.91.patch |  227 
 2 files changed, 7 insertions(+), 237 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-09-25 17:04:24 UTC (rev 141605)
+++ PKGBUILD2015-09-25 18:26:44 UTC (rev 141606)
@@ -3,8 +3,8 @@
 # Contributor: jordz 
 
 pkgname=nemiver
-pkgver=0.9.5
-pkgrel=3
+pkgver=0.9.6
+pkgrel=1
 pkgdesc='C/C++ debugger for GNOME'
 arch=('x86_64' 'i686')
 license=('GPL')
@@ -12,21 +12,17 @@
 install="$pkgname.install"
 depends=('gdlmm' 'gdb' 'gtksourceviewmm' 'libgtop' 'vte3' 'ghex' 
'gsettings-desktop-schemas')
 makedepends=('boost' 'intltool' 'itstool' 'gconf' 'gnome-common' 'yelp-tools')
-source=("http://ftp.acc.umu.se/pub/GNOME/sources/nemiver/0.9/$pkgname-$pkgver.tar.xz";
-vte2.91.patch)
+source=("http://ftp.acc.umu.se/pub/GNOME/sources/nemiver/0.9/$pkgname-$pkgver.tar.xz";)
 options=('!emptydirs')
-sha256sums=('33590e3964092cabb629a6ba8415786b054702063a944eca5fe4156048baf8d9'
-'25b7b6d81fac0d465ac8ac854a99135702fef49d1fba214c0f72b4d4674d52eb')
+sha256sums=('85ab8cf6c4f83262f441cb0952a6147d075c3c53d0687389a3555e946b694ef2')
 
-prepare() {
+prepare() {
   cd "$pkgname-$pkgver"
 
-  # Consolidated from patches on git master for 
https://bugzilla.gnome.org/show_bug.cgi?id=730243
-  patch -Np1 -i ../vte2.91.patch
   NOCONFIGURE=1 AUTOPOINT=intltoolize gnome-autogen.sh
 }
 
-build() {  
+build() {
   cd "$pkgname-$pkgver"
 
   ./configure \
@@ -49,4 +45,5 @@
   make DESTDIR="$pkgdir" install
 }
 
+# getver: git.gnome.org/browse/nemiver/plain/configure.ac
 # vim:set ts=2 sw=2 et:

Deleted: vte2.91.patch
===
--- vte2.91.patch   2015-09-25 17:04:24 UTC (rev 141605)
+++ vte2.91.patch   2015-09-25 18:26:44 UTC (rev 141606)
@@ -1,227 +0,0 @@
-diff -u -r nemiver-0.9.5/configure.ac nemiver-0.9.5-vte2.91/configure.ac
 nemiver-0.9.5/configure.ac 2013-05-20 21:04:42.0 +0200
-+++ nemiver-0.9.5-vte2.91/configure.ac 2014-09-28 23:52:45.123979923 +0200
-@@ -353,7 +353,7 @@
- DEP_UICOMMON=" gtkmm-3.0 >= $LIBGTKMM_VERSION \
-gtk+-3.0 >= $LIBGTK_VERSION \
-gtksourceviewmm-3.0 >= $LIBGTKSOURCEVIEWMM_VERSION \
--   vte-2.90 >= $LIBVTE_VERSION"
-+   vte-2.91 >= $LIBVTE_VERSION"
- 
- PKG_CHECK_MODULES(NEMIVERUICOMMON, $DEP_UICOMMON $DEP_COMMON $DEP_MEMORYVIEW)
- NEMIVERUICOMMON_CFLAGS="$NEMIVERUICOMMON_CFLAGS $CPPUNIT_CFLAGS"
-@@ -376,7 +376,7 @@
- 
- dnl library dependencies for the nemiver debug perspective plugin
- DEP_PERSP="gtksourceviewmm-3.0 >= $LIBGTKSOURCEVIEWMM_VERSION \
--   vte-2.90 >= $LIBVTE_VERSION"
-+   vte-2.91 >= $LIBVTE_VERSION"
- 
- PKG_CHECK_MODULES(NEMIVERDBGPERSP, $DEP_UICOMMON $DEP_VFS $DEP_PERSP 
$DEP_MEMORYVIEW $DEP_DYNAMICLAYOUT)
- NEMIVERDBGPERSP_LIBS="$NEMIVERDBGPERSP_LIBS $CPPUNIT_LIBS"
-diff -u -r nemiver-0.9.5/src/common/nmv-safe-ptr-utils.h 
nemiver-0.9.5-vte2.91/src/common/nmv-safe-ptr-utils.h
 nemiver-0.9.5/src/common/nmv-safe-ptr-utils.h  2013-01-21 
13:05:35.0 +0100
-+++ nemiver-0.9.5-vte2.91/src/common/nmv-safe-ptr-utils.h  2014-09-28 
23:53:20.317162220 +0200
-@@ -30,7 +30,7 @@
- #ifndef __NMV_SAFE_PTR_UTILS_H__
- #define __NMV_SAFE_PTR_UTILS_H__
- 
--#include 
-+#include 
- #include "nmv-object.h"
- #include "nmv-safe-ptr.h"
- #include "nmv-namespace.h"
-@@ -99,13 +99,50 @@
- }
- };
- 
--typedef SafePtr  GCharSafePtr;
--typedef SafePtr  ObjectSafePtr;
--typedef SafePtr  CharSafePtr;
--typedef SafePtr  UnicharSafePtr;
-+struct GErrorRef {
-+void
-+operator () (GError *)
-+{}
-+};
-+
-+struct GErrorUnref {
-+void
-+operator () (GError *a_error)
-+{
-+if (a_error) {
-+g_error_free (a_error);
-+}
-+}
-+};
-+
-+struct RefGObjectNative {
-+void operator () (void *a_object)
-+{
-+if (a_object && G_IS_OBJECT (a_object)) {
-+g_object_ref (G_OBJECT (a_object));
-+}
-+}
-+};
-+
-+struct UnrefGObjectNative {
-+void operator () (void *a_object)
-+{
-+if (a_object && G_IS_OBJECT (a_object)) {
-+g_object_unref (G_OBJECT (a_object));
-+}
-+}
-+};
-+
-+typedef SafePtr GCharSafePtr;
-+typedef SafePtr ObjectSafePtr;
-+typedef SafePtr CharSafePtr;
-+typedef SafePtr UnicharSafePtr;
-+typedef SafePtr GErrorSafePtr;
-+typedef SafePtr NativeGObjectSafePtr;
- 
- NEMIVER_END_NAMESPACE(common)
- NEMIVER_END_NAMESPACE(nemiver)
- 
- #endif
--
-diff -u -r nemiver-0.9.5/src/common/nmv-ustring.cc 
nemiver-0.9.5-vte2.91/src/common/nmv-ustring.cc
 nemiver-0.9.5/src/common/nmv-ustring.cc2013-01-21 13:05:35.0 
+010

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

2015-09-25 Thread Jan Steffens
Date: Friday, September 25, 2015 @ 19:58:30
  Author: heftig
Revision: 247491

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  gnome-builder/repos/gnome-unstable-i686/
  gnome-builder/repos/gnome-unstable-i686/PKGBUILD
(from rev 247490, gnome-builder/trunk/PKGBUILD)
  gnome-builder/repos/gnome-unstable-i686/gnome-builder.install
(from rev 247490, gnome-builder/trunk/gnome-builder.install)
  gnome-builder/repos/gnome-unstable-x86_64/
  gnome-builder/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 247490, gnome-builder/trunk/PKGBUILD)
  gnome-builder/repos/gnome-unstable-x86_64/gnome-builder.install
(from rev 247490, gnome-builder/trunk/gnome-builder.install)

-+
 gnome-unstable-i686/PKGBUILD|   38 ++
 gnome-unstable-i686/gnome-builder.install   |   13 
 gnome-unstable-x86_64/PKGBUILD  |   38 ++
 gnome-unstable-x86_64/gnome-builder.install |   13 
 4 files changed, 102 insertions(+)

Copied: gnome-builder/repos/gnome-unstable-i686/PKGBUILD (from rev 247490, 
gnome-builder/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2015-09-25 17:58:30 UTC (rev 247491)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=gnome-builder
+pkgver=3.18.0
+pkgrel=1
+pkgdesc="An IDE for writing GNOME-based software"
+url="https://wiki.gnome.org/Apps/Builder";
+arch=(i686 x86_64)
+license=(GPL3)
+depends=(gtksourceview3 devhelp libgit2-glib gjs python-gobject clang 
desktop-file-utils
+ ctags libpeas vte3)
+makedepends=(intltool llvm gobject-introspection)
+groups=(gnome-extra)
+install=gnome-builder.install
+source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('b32586c93ba26b8a4028d7779e81e7c56d54603c11a70db436e96ed977dbe9b4')
+
+prepare() {
+  cd $pkgname-$pkgver
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--libexecdir=/usr/lib
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make -k check || :
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Copied: gnome-builder/repos/gnome-unstable-i686/gnome-builder.install (from rev 
247490, gnome-builder/trunk/gnome-builder.install)
===
--- gnome-unstable-i686/gnome-builder.install   (rev 0)
+++ gnome-unstable-i686/gnome-builder.install   2015-09-25 17:58:30 UTC (rev 
247491)
@@ -0,0 +1,13 @@
+post_install() {
+  glib-compile-schemas /usr/share/glib-2.0/schemas
+  gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Copied: gnome-builder/repos/gnome-unstable-x86_64/PKGBUILD (from rev 247490, 
gnome-builder/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2015-09-25 17:58:30 UTC (rev 247491)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=gnome-builder
+pkgver=3.18.0
+pkgrel=1
+pkgdesc="An IDE for writing GNOME-based software"
+url="https://wiki.gnome.org/Apps/Builder";
+arch=(i686 x86_64)
+license=(GPL3)
+depends=(gtksourceview3 devhelp libgit2-glib gjs python-gobject clang 
desktop-file-utils
+ ctags libpeas vte3)
+makedepends=(intltool llvm gobject-introspection)
+groups=(gnome-extra)
+install=gnome-builder.install
+source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('b32586c93ba26b8a4028d7779e81e7c56d54603c11a70db436e96ed977dbe9b4')
+
+prepare() {
+  cd $pkgname-$pkgver
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--libexecdir=/usr/lib
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make -k check || :
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Copied: gnome-builder/repos/gnome-unstable-x86_64/gnome-builder.install (from 
rev 247490, gnome-builder/trunk/gnome-builder.install)
===
--- gnome-unstable-x86_64/gnome-builder.install (rev 0)
+++ gnome-unstable-x86_64/gnome-builder.install 2015-09-25 17:58:30 UTC (rev 
247491)
@@ -0,0 +1,13 @@
+post_install() {
+  glib-compile-schemas /usr/share/glib-2.0/schemas
+  gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}


[arch-commits] Commit in gnome-code-assistance/repos (6 files)

2015-09-25 Thread Jan Steffens
Date: Friday, September 25, 2015 @ 19:57:48
  Author: heftig
Revision: 247490

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  gnome-code-assistance/repos/gnome-unstable-i686/
  gnome-code-assistance/repos/gnome-unstable-i686/PKGBUILD
(from rev 247489, gnome-code-assistance/trunk/PKGBUILD)
  gnome-code-assistance/repos/gnome-unstable-i686/gnome-code-assistance.install
(from rev 247489, gnome-code-assistance/trunk/gnome-code-assistance.install)
  gnome-code-assistance/repos/gnome-unstable-x86_64/
  gnome-code-assistance/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 247489, gnome-code-assistance/trunk/PKGBUILD)
  
gnome-code-assistance/repos/gnome-unstable-x86_64/gnome-code-assistance.install
(from rev 247489, gnome-code-assistance/trunk/gnome-code-assistance.install)

-+
 gnome-unstable-i686/PKGBUILD|   40 ++
 gnome-unstable-i686/gnome-code-assistance.install   |   11 
 gnome-unstable-x86_64/PKGBUILD  |   40 ++
 gnome-unstable-x86_64/gnome-code-assistance.install |   11 
 4 files changed, 102 insertions(+)

Copied: gnome-code-assistance/repos/gnome-unstable-i686/PKGBUILD (from rev 
247489, gnome-code-assistance/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2015-09-25 17:57:48 UTC (rev 247490)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=gnome-code-assistance
+pkgver=3.16.0
+pkgrel=4
+pkgdesc="Code assistance services for GNOME"
+arch=(i686 x86_64)
+license=(GPL3)
+depends=(python-dbus python-gobject)
+makedepends=(intltool gobject-introspection llvm clang ruby-dbus gjs vala 
libgee go gnome-common)
+optdepends=('clang: Assistance for C and C++'
+'ruby-dbus: Assistance for Ruby and CSS'
+'gjs: Assistance for JavaScript'
+'vala: Assistance for Vala'
+'libgee: Assistance for Vala'
+'go: Assistance for Go')
+groups=(gnome-extra)
+url="http://www.gnome.org";
+install=gnome-code-assistance.install
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('47539b05a13886eca9fe0c079d3e9cee5205a9cfd45a788cdd57734990fc457e')
+
+prepare() {
+  cd $pkgname-$pkgver
+  sed -i 's/libvala-0.26/libvala-0.28/g' configure.ac
+  autoreconf -fvi
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--libexecdir=/usr/lib
+  make
+}
+
+package(){
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Copied: 
gnome-code-assistance/repos/gnome-unstable-i686/gnome-code-assistance.install 
(from rev 247489, gnome-code-assistance/trunk/gnome-code-assistance.install)
===
--- gnome-unstable-i686/gnome-code-assistance.install   
(rev 0)
+++ gnome-unstable-i686/gnome-code-assistance.install   2015-09-25 17:57:48 UTC 
(rev 247490)
@@ -0,0 +1,11 @@
+post_install() {
+  glib-compile-schemas usr/share/glib-2.0/schemas
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Copied: gnome-code-assistance/repos/gnome-unstable-x86_64/PKGBUILD (from rev 
247489, gnome-code-assistance/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2015-09-25 17:57:48 UTC (rev 247490)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=gnome-code-assistance
+pkgver=3.16.0
+pkgrel=4
+pkgdesc="Code assistance services for GNOME"
+arch=(i686 x86_64)
+license=(GPL3)
+depends=(python-dbus python-gobject)
+makedepends=(intltool gobject-introspection llvm clang ruby-dbus gjs vala 
libgee go gnome-common)
+optdepends=('clang: Assistance for C and C++'
+'ruby-dbus: Assistance for Ruby and CSS'
+'gjs: Assistance for JavaScript'
+'vala: Assistance for Vala'
+'libgee: Assistance for Vala'
+'go: Assistance for Go')
+groups=(gnome-extra)
+url="http://www.gnome.org";
+install=gnome-code-assistance.install
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('47539b05a13886eca9fe0c079d3e9cee5205a9cfd45a788cdd57734990fc457e')
+
+prepare() {
+  cd $pkgname-$pkgver
+  sed -i 's/libvala-0.26/libvala-0.28/g' configure.ac
+  autoreconf -fvi
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--libexecdir=/usr/lib
+  make
+}
+
+package(){
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Copied: 
gnome-code-assistance/repos/gnome-unstable-x86_64/gnome-code-assistance.in

[arch-commits] Commit in gnome-builder/trunk (4 files)

2015-09-25 Thread Jan Steffens
Date: Friday, September 25, 2015 @ 19:56:52
  Author: heftig
Revision: 247489

3.18.0

Modified:
  gnome-builder/trunk/PKGBUILD
Deleted:
  gnome-builder/trunk/git1.patch
  gnome-builder/trunk/git2.patch
  gnome-builder/trunk/git3.patch

+
 PKGBUILD   |   17 +
 git1.patch |   22 --
 git2.patch |   48 
 git3.patch |   52 
 4 files changed, 5 insertions(+), 134 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-09-25 17:53:43 UTC (rev 247488)
+++ PKGBUILD2015-09-25 17:56:52 UTC (rev 247489)
@@ -2,29 +2,22 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgname=gnome-builder
-pkgver=3.16.3
-pkgrel=7
+pkgver=3.18.0
+pkgrel=1
 pkgdesc="An IDE for writing GNOME-based software"
 url="https://wiki.gnome.org/Apps/Builder";
 arch=(i686 x86_64)
 license=(GPL3)
 depends=(gtksourceview3 devhelp libgit2-glib gjs python-gobject clang 
desktop-file-utils
- ctags)
+ ctags libpeas vte3)
 makedepends=(intltool llvm gobject-introspection)
 groups=(gnome-extra)
 install=gnome-builder.install
-source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz
-git1.patch git2.patch git3.patch)
-sha256sums=('a1d7b287d39ce724114c128e25bb00e273ecd8982ed22c8aba48cad9c4d51e61'
-'e2b3edad8db87c9798abfad2dc831c2133736b6b9cb26e629e8adf0eb2c5e0a7'
-'d81adf53ff7a918e0f037e6dc61515c0ad14a0c226f500a71d1a7daabf64b119'
-'39be431517fe5cedd17738b0289adc16afad8bcbb5a84e4b656a40d5bc1c2353')
+source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('b32586c93ba26b8a4028d7779e81e7c56d54603c11a70db436e96ed977dbe9b4')
 
 prepare() {
   cd $pkgname-$pkgver
-  patch -Np1 -i ../git1.patch
-  patch -Np1 -i ../git2.patch
-  patch -Np1 -i ../git3.patch
 }
 
 build() {

Deleted: git1.patch
===
--- git1.patch  2015-09-25 17:53:43 UTC (rev 247488)
+++ git1.patch  2015-09-25 17:56:52 UTC (rev 247489)
@@ -1,22 +0,0 @@
-From f77c428772273db365bba4d21b6913196b7947ad Mon Sep 17 00:00:00 2001
-From: Ignacio Casal Quinteiro 
-Date: Fri, 17 Jul 2015 11:58:34 +0200
-Subject: git: pass NULL to the new binary callback
-
-
-diff --git a/libide/git/ide-git-buffer-change-monitor.c 
b/libide/git/ide-git-buffer-change-monitor.c
-index a6a306d..7763c76 100644
 a/libide/git/ide-git-buffer-change-monitor.c
-+++ b/libide/git/ide-git-buffer-change-monitor.c
-@@ -618,7 +618,7 @@ ide_git_buffer_change_monitor_calculate_threaded 
(IdeGitBufferChangeMonitor  *se
-   data = g_bytes_get_data (diff->content, &data_len);
- 
-   ggit_diff_blob_to_buffer (diff->blob, relative_path, data, data_len, 
relative_path,
--NULL, NULL, NULL, diff_line_cb, 
(gpointer)diff->state, error);
-+NULL, NULL, NULL, NULL, diff_line_cb, 
(gpointer)diff->state, error);
- 
-   return ((*error) == NULL);
- }
--- 
-cgit v0.10.2
-

Deleted: git2.patch
===
--- git2.patch  2015-09-25 17:53:43 UTC (rev 247488)
+++ git2.patch  2015-09-25 17:56:52 UTC (rev 247489)
@@ -1,48 +0,0 @@
-From 31a64d94369d21bfe9dd890e0e8412361c49563d Mon Sep 17 00:00:00 2001
-From: Ignacio Casal Quinteiro 
-Date: Fri, 17 Jul 2015 12:04:50 +0200
-Subject: new-project-dialog: use the new fetch options to add the remote
- callbacks
-
-
-diff --git a/src/dialogs/gb-new-project-dialog.c 
b/src/dialogs/gb-new-project-dialog.c
-index f011e34..dfa7e91 100644
 a/src/dialogs/gb-new-project-dialog.c
-+++ b/src/dialogs/gb-new-project-dialog.c
-@@ -188,6 +188,7 @@ gb_new_project_dialog__clone_worker (GTask*task,
-   g_autoptr(GFile) workdir = NULL;
-   CloneRequest *req = task_data;
-   GgitCloneOptions *clone_options;
-+  GgitFetchOptions *fetch_options;
-   GgitRemoteCallbacks *callbacks;
-   IdeProgress *progress;
-   GError *error = NULL;
-@@ -197,16 +198,20 @@ gb_new_project_dialog__clone_worker (GTask*task,
-   g_assert (req != NULL);
-   g_assert (!cancellable || G_IS_CANCELLABLE (cancellable));
- 
--  clone_options = ggit_clone_options_new ();
--  ggit_clone_options_set_is_bare (clone_options, FALSE);
--  ggit_clone_options_set_checkout_branch (clone_options, "master");
--
-   callbacks = g_object_new (IDE_TYPE_GIT_REMOTE_CALLBACKS, NULL);
-   progress = ide_git_remote_callbacks_get_progress (IDE_GIT_REMOTE_CALLBACKS 
(callbacks));
-   g_object_bind_property (progress, "fraction",
-   self->clone_progress, "fraction",
-   G_BINDING_SYNC_CREATE);
--  ggit_clone_options_set_remote_callbacks (clone_options, callbacks);
-+
-+  fetch_options = ggit_fetch_options_new ();
-+  ggit_fetch_options_set_remote_callbacks (fetch_options, callbacks);
-+
-+ 

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

2015-09-25 Thread Jan Steffens
Date: Friday, September 25, 2015 @ 19:53:43
  Author: heftig
Revision: 247488

libvala rebuild

Modified:
  gnome-code-assistance/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-25 17:48:49 UTC (rev 247487)
+++ PKGBUILD2015-09-25 17:53:43 UTC (rev 247488)
@@ -3,7 +3,7 @@
 
 pkgname=gnome-code-assistance
 pkgver=3.16.0
-pkgrel=3
+pkgrel=4
 pkgdesc="Code assistance services for GNOME"
 arch=(i686 x86_64)
 license=(GPL3)


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

2015-09-25 Thread Jan Steffens
Date: Friday, September 25, 2015 @ 19:48:49
  Author: heftig
Revision: 247487

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

Added:
  plasma-workspace/repos/testing-i686/
  plasma-workspace/repos/testing-i686/PKGBUILD
(from rev 247486, plasma-workspace/trunk/PKGBUILD)
  plasma-workspace/repos/testing-i686/dbus-update-environment.patch
(from rev 247486, plasma-workspace/trunk/dbus-update-environment.patch)
  plasma-workspace/repos/testing-i686/kde.pam
(from rev 247486, plasma-workspace/trunk/kde.pam)
  plasma-workspace/repos/testing-x86_64/
  plasma-workspace/repos/testing-x86_64/PKGBUILD
(from rev 247486, plasma-workspace/trunk/PKGBUILD)
  plasma-workspace/repos/testing-x86_64/dbus-update-environment.patch
(from rev 247486, plasma-workspace/trunk/dbus-update-environment.patch)
  plasma-workspace/repos/testing-x86_64/kde.pam
(from rev 247486, plasma-workspace/trunk/kde.pam)

--+
 testing-i686/PKGBUILD|   75 +
 testing-i686/dbus-update-environment.patch   |   24 
 testing-i686/kde.pam |9 +++
 testing-x86_64/PKGBUILD  |   75 +
 testing-x86_64/dbus-update-environment.patch |   24 
 testing-x86_64/kde.pam   |9 +++
 6 files changed, 216 insertions(+)

Copied: plasma-workspace/repos/testing-i686/PKGBUILD (from rev 247486, 
plasma-workspace/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-09-25 17:48:49 UTC (rev 247487)
@@ -0,0 +1,75 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Antonio Rojas
+# Contributor: Alexey D. 
+
+pkgbase=plasma-workspace
+pkgname=('plasma-workspace' 'drkonqi')
+pkgver=5.4.1
+pkgrel=3
+pkgdesc='KDE Plasma Workspace'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/workspace/plasma-workspace'
+license=('LGPL')
+# note on libxdamage:
+# not detected by namcap because libgl depends on it
+# but nvidia providing libgl does not depend on libxdamage
+depends=('knewstuff' 'kjsembed' 'knotifyconfig' 'libxdamage' 'kwayland'
+ 'libksysguard' 'libkscreen' 'ktexteditor' 'libqalculate'
+ 'qt5-tools' 'kded' 'kde-cli-tools' 'xorg-xrdb' 'xorg-xsetroot'
+ 'xorg-xmessage' 'xorg-xprop' 'milou' 'breeze' 'prison-frameworks')
+makedepends=('extra-cmake-modules' 'kdoctools' 'kwin' 'gpsd' 'baloo'
+ 'krunner' 'kxmlrpcclient' 'networkmanager-qt')
+groups=('plasma')
+source=("http://download.kde.org/stable/plasma/${pkgver}/${pkgbase}-${pkgver}.tar.xz";
+'kde.pam' 'dbus-update-environment.patch')
+md5sums=('0675ac84f739218cd1a17cfdc3d91e22'
+ '378ee33a9ec2870a1a899f2e05ee00d4'
+ '93414bae74d99b1ded7e8d7bd65b8882')
+
+prepare() {
+  mkdir build
+
+  cd ${pkgbase}-${pkgver}
+  # sends env vars to existing dbus
+  patch -p1 -i "${srcdir}"/dbus-update-environment.patch
+  # be sure to use the Qt5 version of qtpaths
+  sed -i 's:qtpaths:qtpaths-qt5:' startkde/startkde.cmake
+}
+
+build() {
+  cd build
+  cmake ../${pkgbase}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DLIB_INSTALL_DIR=lib \
+-DLIBEXEC_INSTALL_DIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package_plasma-workspace() {
+  optdepends=('plasma-workspace-wallpapers: additional wallpapers'
+  'gpsd: GPS based geolocation' 'networkmanager-qt: IP based 
geolocation')
+  conflicts=('kdebase-workspace')
+
+  cd build
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm644 "${srcdir}"/kde.pam \
+"${pkgdir}"/etc/pam.d/kde
+
+  # Remove conflicts with drkonqi
+  rm "${pkgdir}"/usr/lib/drkonqi
+  rm -r "${pkgdir}"/usr/share/drkonqi
+}
+
+package_drkonqi() {
+  pkgdesc='KDE crash handler'
+  depends=('kdewebkit' 'kxmlrpcclient' 'gdb')
+
+  cd build/drkonqi
+  make DESTDIR="${pkgdir}" install
+}

Copied: plasma-workspace/repos/testing-i686/dbus-update-environment.patch (from 
rev 247486, plasma-workspace/trunk/dbus-update-environment.patch)
===
--- testing-i686/dbus-update-environment.patch  (rev 0)
+++ testing-i686/dbus-update-environment.patch  2015-09-25 17:48:49 UTC (rev 
247487)
@@ -0,0 +1,24 @@
+diff -u -r plasma-workspace-5.4.1/startkde/startkde.cmake 
plasma-workspace-5.4.1-dbus/startkde/startkde.cmake
+--- plasma-workspace-5.4.1/startkde/startkde.cmake 2015-09-25 
19:12:09.630988076 +0200
 plasma-workspace-5.4.1-dbus/startkde/startkde.cmake2015-09-25 
19:15:07.320598595 +0200
+@@ -286,6 +286,8 @@
+ # D-Bus autolaunch is broken
+ if test -z "$DBUS_SESSION_BUS_ADDRESS" ; then
+ eval `dbus-launch --sh-syntax --exit-with-session`
++elif which dbus-update-activation-env

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

2015-09-25 Thread Evangelos Foutras
Date: Friday, September 25, 2015 @ 19:46:37
  Author: foutrelis
Revision: 247485

upgpkg: gnome-code-assistance 3.16.0-3

Python 3.5 rebuild.

Modified:
  gnome-code-assistance/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-25 17:46:18 UTC (rev 247484)
+++ PKGBUILD2015-09-25 17:46:37 UTC (rev 247485)
@@ -3,7 +3,7 @@
 
 pkgname=gnome-code-assistance
 pkgver=3.16.0
-pkgrel=2
+pkgrel=3
 pkgdesc="Code assistance services for GNOME"
 arch=(i686 x86_64)
 license=(GPL3)


[arch-commits] Commit in kdebase-workspace/repos (26 files)

2015-09-25 Thread Jan Steffens
Date: Friday, September 25, 2015 @ 19:46:18
  Author: heftig
Revision: 247484

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

Added:
  kdebase-workspace/repos/testing-i686/
  kdebase-workspace/repos/testing-i686/PKGBUILD
(from rev 247483, kdebase-workspace/trunk/PKGBUILD)
  kdebase-workspace/repos/testing-i686/dbus-update-environment.patch
(from rev 247483, kdebase-workspace/trunk/dbus-update-environment.patch)
  kdebase-workspace/repos/testing-i686/etc-scripts.patch
(from rev 247483, kdebase-workspace/trunk/etc-scripts.patch)
  kdebase-workspace/repos/testing-i686/kde-np.pam
(from rev 247483, kdebase-workspace/trunk/kde-np.pam)
  kdebase-workspace/repos/testing-i686/kde.pam
(from rev 247483, kdebase-workspace/trunk/kde.pam)
  kdebase-workspace/repos/testing-i686/kdebase-workspace.install
(from rev 247483, kdebase-workspace/trunk/kdebase-workspace.install)
  kdebase-workspace/repos/testing-i686/kdm-xinitrd.patch
(from rev 247483, kdebase-workspace/trunk/kdm-xinitrd.patch)
  kdebase-workspace/repos/testing-i686/kdm.logrotate
(from rev 247483, kdebase-workspace/trunk/kdm.logrotate)
  kdebase-workspace/repos/testing-i686/kdm.service
(from rev 247483, kdebase-workspace/trunk/kdm.service)
  kdebase-workspace/repos/testing-i686/khotkeys-qt4.patch
(from rev 247483, kdebase-workspace/trunk/khotkeys-qt4.patch)
  kdebase-workspace/repos/testing-i686/kscreensaver.pam
(from rev 247483, kdebase-workspace/trunk/kscreensaver.pam)
  kdebase-workspace/repos/testing-i686/terminate-server.patch
(from rev 247483, kdebase-workspace/trunk/terminate-server.patch)
  kdebase-workspace/repos/testing-x86_64/
  kdebase-workspace/repos/testing-x86_64/PKGBUILD
(from rev 247483, kdebase-workspace/trunk/PKGBUILD)
  kdebase-workspace/repos/testing-x86_64/dbus-update-environment.patch
(from rev 247483, kdebase-workspace/trunk/dbus-update-environment.patch)
  kdebase-workspace/repos/testing-x86_64/etc-scripts.patch
(from rev 247483, kdebase-workspace/trunk/etc-scripts.patch)
  kdebase-workspace/repos/testing-x86_64/kde-np.pam
(from rev 247483, kdebase-workspace/trunk/kde-np.pam)
  kdebase-workspace/repos/testing-x86_64/kde.pam
(from rev 247483, kdebase-workspace/trunk/kde.pam)
  kdebase-workspace/repos/testing-x86_64/kdebase-workspace.install
(from rev 247483, kdebase-workspace/trunk/kdebase-workspace.install)
  kdebase-workspace/repos/testing-x86_64/kdm-xinitrd.patch
(from rev 247483, kdebase-workspace/trunk/kdm-xinitrd.patch)
  kdebase-workspace/repos/testing-x86_64/kdm.logrotate
(from rev 247483, kdebase-workspace/trunk/kdm.logrotate)
  kdebase-workspace/repos/testing-x86_64/kdm.service
(from rev 247483, kdebase-workspace/trunk/kdm.service)
  kdebase-workspace/repos/testing-x86_64/khotkeys-qt4.patch
(from rev 247483, kdebase-workspace/trunk/khotkeys-qt4.patch)
  kdebase-workspace/repos/testing-x86_64/kscreensaver.pam
(from rev 247483, kdebase-workspace/trunk/kscreensaver.pam)
  kdebase-workspace/repos/testing-x86_64/terminate-server.patch
(from rev 247483, kdebase-workspace/trunk/terminate-server.patch)

--+
 testing-i686/PKGBUILD|   96 +
 testing-i686/dbus-update-environment.patch   |   12 +++
 testing-i686/etc-scripts.patch   |   11 ++
 testing-i686/kde-np.pam  |   12 +++
 testing-i686/kde.pam |8 ++
 testing-i686/kdebase-workspace.install   |   25 ++
 testing-i686/kdm-xinitrd.patch   |   18 
 testing-i686/kdm.logrotate   |6 +
 testing-i686/kdm.service |9 ++
 testing-i686/khotkeys-qt4.patch  |   22 +
 testing-i686/kscreensaver.pam|2 
 testing-i686/terminate-server.patch  |   11 ++
 testing-x86_64/PKGBUILD  |   96 +
 testing-x86_64/dbus-update-environment.patch |   12 +++
 testing-x86_64/etc-scripts.patch |   11 ++
 testing-x86_64/kde-np.pam|   12 +++
 testing-x86_64/kde.pam   |8 ++
 testing-x86_64/kdebase-workspace.install |   25 ++
 testing-x86_64/kdm-xinitrd.patch |   18 
 testing-x86_64/kdm.logrotate |6 +
 testing-x86_64/kdm.service   |9 ++
 testing-x86_64/khotkeys-qt4.patch|   22 +
 testing-x86_64/kscreensaver.pam  |2 
 testing-x86_64/terminate-server.patch|   11 ++
 24 files changed, 464 insertions(+)

Copied: kdebase-workspace/repos/testing-i686/PKGBUILD (from rev 247483, 
kdebase-workspace/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-09-25 17:46:18 UTC (rev 247484)
@@ -0,0 +1,96 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# M

[arch-commits] Commit in gnome-code-assistance/repos (6 files)

2015-09-25 Thread Evangelos Foutras
Date: Friday, September 25, 2015 @ 19:46:45
  Author: foutrelis
Revision: 247486

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

Added:
  gnome-code-assistance/repos/staging-i686/
  gnome-code-assistance/repos/staging-i686/PKGBUILD
(from rev 247485, gnome-code-assistance/trunk/PKGBUILD)
  gnome-code-assistance/repos/staging-i686/gnome-code-assistance.install
(from rev 247485, gnome-code-assistance/trunk/gnome-code-assistance.install)
  gnome-code-assistance/repos/staging-x86_64/
  gnome-code-assistance/repos/staging-x86_64/PKGBUILD
(from rev 247485, gnome-code-assistance/trunk/PKGBUILD)
  gnome-code-assistance/repos/staging-x86_64/gnome-code-assistance.install
(from rev 247485, gnome-code-assistance/trunk/gnome-code-assistance.install)

--+
 staging-i686/PKGBUILD|   40 +
 staging-i686/gnome-code-assistance.install   |   11 ++
 staging-x86_64/PKGBUILD  |   40 +
 staging-x86_64/gnome-code-assistance.install |   11 ++
 4 files changed, 102 insertions(+)

Copied: gnome-code-assistance/repos/staging-i686/PKGBUILD (from rev 247485, 
gnome-code-assistance/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-09-25 17:46:45 UTC (rev 247486)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=gnome-code-assistance
+pkgver=3.16.0
+pkgrel=3
+pkgdesc="Code assistance services for GNOME"
+arch=(i686 x86_64)
+license=(GPL3)
+depends=(python-dbus python-gobject)
+makedepends=(intltool gobject-introspection llvm clang ruby-dbus gjs vala 
libgee go gnome-common)
+optdepends=('clang: Assistance for C and C++'
+'ruby-dbus: Assistance for Ruby and CSS'
+'gjs: Assistance for JavaScript'
+'vala: Assistance for Vala'
+'libgee: Assistance for Vala'
+'go: Assistance for Go')
+groups=(gnome-extra)
+url="http://www.gnome.org";
+install=gnome-code-assistance.install
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('47539b05a13886eca9fe0c079d3e9cee5205a9cfd45a788cdd57734990fc457e')
+
+prepare() {
+  cd $pkgname-$pkgver
+  sed -i 's/libvala-0.26/libvala-0.28/g' configure.ac
+  autoreconf -fvi
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--libexecdir=/usr/lib
+  make
+}
+
+package(){
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Copied: gnome-code-assistance/repos/staging-i686/gnome-code-assistance.install 
(from rev 247485, gnome-code-assistance/trunk/gnome-code-assistance.install)
===
--- staging-i686/gnome-code-assistance.install  (rev 0)
+++ staging-i686/gnome-code-assistance.install  2015-09-25 17:46:45 UTC (rev 
247486)
@@ -0,0 +1,11 @@
+post_install() {
+  glib-compile-schemas usr/share/glib-2.0/schemas
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Copied: gnome-code-assistance/repos/staging-x86_64/PKGBUILD (from rev 247485, 
gnome-code-assistance/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2015-09-25 17:46:45 UTC (rev 247486)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=gnome-code-assistance
+pkgver=3.16.0
+pkgrel=3
+pkgdesc="Code assistance services for GNOME"
+arch=(i686 x86_64)
+license=(GPL3)
+depends=(python-dbus python-gobject)
+makedepends=(intltool gobject-introspection llvm clang ruby-dbus gjs vala 
libgee go gnome-common)
+optdepends=('clang: Assistance for C and C++'
+'ruby-dbus: Assistance for Ruby and CSS'
+'gjs: Assistance for JavaScript'
+'vala: Assistance for Vala'
+'libgee: Assistance for Vala'
+'go: Assistance for Go')
+groups=(gnome-extra)
+url="http://www.gnome.org";
+install=gnome-code-assistance.install
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('47539b05a13886eca9fe0c079d3e9cee5205a9cfd45a788cdd57734990fc457e')
+
+prepare() {
+  cd $pkgname-$pkgver
+  sed -i 's/libvala-0.26/libvala-0.28/g' configure.ac
+  autoreconf -fvi
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--libexecdir=/usr/lib
+  make
+}
+
+package(){
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Copied: 
gnome-code-assistance/repos/staging-x86_64/gnome-code-assistance.install (from 
rev 247485, gnome-code-assistance/trunk/gnome-code-assistance.install)
=

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

2015-09-25 Thread Jan Steffens
Date: Friday, September 25, 2015 @ 19:39:58
  Author: heftig
Revision: 247483

fix dbus activation

Added:
  plasma-workspace/trunk/dbus-update-environment.patch
Modified:
  plasma-workspace/trunk/PKGBUILD

---+
 PKGBUILD  |9 ++---
 dbus-update-environment.patch |   24 
 2 files changed, 30 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-09-25 17:39:36 UTC (rev 247482)
+++ PKGBUILD2015-09-25 17:39:58 UTC (rev 247483)
@@ -7,7 +7,7 @@
 pkgbase=plasma-workspace
 pkgname=('plasma-workspace' 'drkonqi')
 pkgver=5.4.1
-pkgrel=2
+pkgrel=3
 pkgdesc='KDE Plasma Workspace'
 arch=('i686' 'x86_64')
 url='https://projects.kde.org/projects/kde/workspace/plasma-workspace'
@@ -23,14 +23,17 @@
  'krunner' 'kxmlrpcclient' 'networkmanager-qt')
 groups=('plasma')
 
source=("http://download.kde.org/stable/plasma/${pkgver}/${pkgbase}-${pkgver}.tar.xz";
-'kde.pam')
+'kde.pam' 'dbus-update-environment.patch')
 md5sums=('0675ac84f739218cd1a17cfdc3d91e22'
- '378ee33a9ec2870a1a899f2e05ee00d4')
+ '378ee33a9ec2870a1a899f2e05ee00d4'
+ '93414bae74d99b1ded7e8d7bd65b8882')
 
 prepare() {
   mkdir build
 
   cd ${pkgbase}-${pkgver}
+  # sends env vars to existing dbus
+  patch -p1 -i "${srcdir}"/dbus-update-environment.patch
   # be sure to use the Qt5 version of qtpaths
   sed -i 's:qtpaths:qtpaths-qt5:' startkde/startkde.cmake
 }

Added: dbus-update-environment.patch
===
--- dbus-update-environment.patch   (rev 0)
+++ dbus-update-environment.patch   2015-09-25 17:39:58 UTC (rev 247483)
@@ -0,0 +1,24 @@
+diff -u -r plasma-workspace-5.4.1/startkde/startkde.cmake 
plasma-workspace-5.4.1-dbus/startkde/startkde.cmake
+--- plasma-workspace-5.4.1/startkde/startkde.cmake 2015-09-25 
19:12:09.630988076 +0200
 plasma-workspace-5.4.1-dbus/startkde/startkde.cmake2015-09-25 
19:15:07.320598595 +0200
+@@ -286,6 +286,8 @@
+ # D-Bus autolaunch is broken
+ if test -z "$DBUS_SESSION_BUS_ADDRESS" ; then
+ eval `dbus-launch --sh-syntax --exit-with-session`
++elif which dbus-update-activation-environment >/dev/null 2>/dev/null ; then
++dbus-update-activation-environment --systemd --all
+ fi
+ if $qdbus >/dev/null 2>/dev/null; then
+ : # ok
+diff -u -r plasma-workspace-5.4.1/startkde/startplasmacompositor.cmake 
plasma-workspace-5.4.1-dbus/startkde/startplasmacompositor.cmake
+--- plasma-workspace-5.4.1/startkde/startplasmacompositor.cmake
2015-09-03 12:26:33.0 +0200
 plasma-workspace-5.4.1-dbus/startkde/startplasmacompositor.cmake   
2015-09-25 19:15:17.150577050 +0200
+@@ -163,6 +163,8 @@
+ # D-Bus autolaunch is broken
+ if test -z "$DBUS_SESSION_BUS_ADDRESS" ; then
+ eval `dbus-launch --sh-syntax --exit-with-session`
++elif which dbus-update-activation-environment >/dev/null 2>/dev/null ; then
++dbus-update-activation-environment --systemd --all
+ fi
+ if $qdbus >/dev/null 2>/dev/null; then
+ : # ok


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

2015-09-25 Thread Jan Steffens
Date: Friday, September 25, 2015 @ 19:39:36
  Author: heftig
Revision: 247482

fix dbus activation

Added:
  kdebase-workspace/trunk/dbus-update-environment.patch
Modified:
  kdebase-workspace/trunk/PKGBUILD

---+
 PKGBUILD  |9 ++---
 dbus-update-environment.patch |   12 
 2 files changed, 18 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-09-25 17:37:56 UTC (rev 247481)
+++ PKGBUILD2015-09-25 17:39:36 UTC (rev 247482)
@@ -7,7 +7,7 @@
 _pkgname=kde-workspace
 pkgver=4.11.22
 _pkgver=15.08.0
-pkgrel=2
+pkgrel=3
 pkgdesc="Provides the interface and basic tools for the KDE workspace"
 arch=('i686' 'x86_64')
 url='https://projects.kde.org/projects/kde/kde-workspace'
@@ -29,7 +29,7 @@
 
source=("http://download.kde.org/stable/applications/${_pkgver}/src/${_pkgname}-${pkgver}.tar.xz";
 'kde.pam' 'kde-np.pam' 'kscreensaver.pam' 'kdm.service' 'kdm.logrotate'
 'etc-scripts.patch' 'terminate-server.patch' 'kdm-xinitrd.patch'
-'khotkeys-qt4.patch')
+'khotkeys-qt4.patch' 'dbus-update-environment.patch')
 sha1sums=('f08fbe309ed16c51ad31b0b260b2adeb7af1bb37'
   '660eae40a707d2711d8d7f32a93214865506b795'
   '6aeecc9e0e221f0515c6bf544f9a3c11cb6961fe'
@@ -39,7 +39,8 @@
   'c079ebd157c836ba996190f0d2bcea1a7828d02c'
   'ac7bc292c865bc1ab8c02e6341aa7aeaf1a3'
   'd509dac592bd8b310df27991b208c95b6d907514'
-  'aa9d2e5a69986c4c3d47829721ea99edb473be12')
+  'aa9d2e5a69986c4c3d47829721ea99edb473be12'
+  '410311314b1ccb1ed5607dcf8bd418074d8c4019')
 
 prepare() {
 mkdir build
@@ -48,6 +49,8 @@
 
 # reads the shell scripts in /etc/kde/
 patch -p0 -i "${srcdir}"/etc-scripts.patch
+# sends env vars to existing dbus
+patch -p1 -i "${srcdir}"/dbus-update-environment.patch
 # FS#26120
 patch -p1 -i "${srcdir}"/kdm-xinitrd.patch
 # FS#39188

Added: dbus-update-environment.patch
===
--- dbus-update-environment.patch   (rev 0)
+++ dbus-update-environment.patch   2015-09-25 17:39:36 UTC (rev 247482)
@@ -0,0 +1,12 @@
+diff -u -r kde-workspace-4.11.22/startkde.cmake 
kde-workspace-4.11.22-dbus/startkde.cmake
+--- kde-workspace-4.11.22/startkde.cmake   2015-09-25 19:04:25.415328264 
+0200
 kde-workspace-4.11.22-dbus/startkde.cmake  2015-09-25 19:06:06.115118584 
+0200
+@@ -272,6 +272,8 @@
+ # D-Bus autolaunch is broken
+ if test -z "$DBUS_SESSION_BUS_ADDRESS" ; then
+ eval `dbus-launch --sh-syntax --exit-with-session`
++else
++dbus-update-activation-environment --systemd --all
+ fi
+ if $qdbus >/dev/null 2>/dev/null; then
+ : # ok


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

2015-09-25 Thread Evangelos Foutras
Date: Friday, September 25, 2015 @ 19:37:56
  Author: foutrelis
Revision: 247481

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

Added:
  gnome-builder/repos/staging-i686/PKGBUILD
(from rev 247480, gnome-builder/trunk/PKGBUILD)
  gnome-builder/repos/staging-i686/git1.patch
(from rev 247480, gnome-builder/trunk/git1.patch)
  gnome-builder/repos/staging-i686/git2.patch
(from rev 247480, gnome-builder/trunk/git2.patch)
  gnome-builder/repos/staging-i686/git3.patch
(from rev 247480, gnome-builder/trunk/git3.patch)
  gnome-builder/repos/staging-i686/gnome-builder.install
(from rev 247480, gnome-builder/trunk/gnome-builder.install)
  gnome-builder/repos/staging-x86_64/PKGBUILD
(from rev 247480, gnome-builder/trunk/PKGBUILD)
  gnome-builder/repos/staging-x86_64/git1.patch
(from rev 247480, gnome-builder/trunk/git1.patch)
  gnome-builder/repos/staging-x86_64/git2.patch
(from rev 247480, gnome-builder/trunk/git2.patch)
  gnome-builder/repos/staging-x86_64/git3.patch
(from rev 247480, gnome-builder/trunk/git3.patch)
  gnome-builder/repos/staging-x86_64/gnome-builder.install
(from rev 247480, gnome-builder/trunk/gnome-builder.install)
Deleted:
  gnome-builder/repos/staging-i686/PKGBUILD
  gnome-builder/repos/staging-i686/git1.patch
  gnome-builder/repos/staging-i686/git2.patch
  gnome-builder/repos/staging-i686/git3.patch
  gnome-builder/repos/staging-i686/gnome-builder.install
  gnome-builder/repos/staging-x86_64/PKGBUILD
  gnome-builder/repos/staging-x86_64/git1.patch
  gnome-builder/repos/staging-x86_64/git2.patch
  gnome-builder/repos/staging-x86_64/git3.patch
  gnome-builder/repos/staging-x86_64/gnome-builder.install

--+
 /PKGBUILD|   90 
 /git1.patch  |   44 +
 /git2.patch  |   96 ++
 /git3.patch  |  104 +
 /gnome-builder.install   |   26 
 staging-i686/PKGBUILD|   45 --
 staging-i686/git1.patch  |   22 --
 staging-i686/git2.patch  |   48 ---
 staging-i686/git3.patch  |   52 
 staging-i686/gnome-builder.install   |   13 
 staging-x86_64/PKGBUILD  |   45 --
 staging-x86_64/git1.patch|   22 --
 staging-x86_64/git2.patch|   48 ---
 staging-x86_64/git3.patch|   52 
 staging-x86_64/gnome-builder.install |   13 
 15 files changed, 360 insertions(+), 360 deletions(-)

Deleted: staging-i686/PKGBUILD
===
--- staging-i686/PKGBUILD   2015-09-25 17:37:35 UTC (rev 247480)
+++ staging-i686/PKGBUILD   2015-09-25 17:37:56 UTC (rev 247481)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=gnome-builder
-pkgver=3.16.3
-pkgrel=5
-pkgdesc="An IDE for writing GNOME-based software"
-url="https://wiki.gnome.org/Apps/Builder";
-arch=(i686 x86_64)
-license=(GPL3)
-depends=(gtksourceview3 devhelp libgit2-glib gjs python-gobject clang 
desktop-file-utils
- ctags)
-makedepends=(intltool llvm gobject-introspection)
-groups=(gnome-extra)
-install=gnome-builder.install
-source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz
-git1.patch git2.patch git3.patch)
-sha256sums=('a1d7b287d39ce724114c128e25bb00e273ecd8982ed22c8aba48cad9c4d51e61'
-'e2b3edad8db87c9798abfad2dc831c2133736b6b9cb26e629e8adf0eb2c5e0a7'
-'d81adf53ff7a918e0f037e6dc61515c0ad14a0c226f500a71d1a7daabf64b119'
-'39be431517fe5cedd17738b0289adc16afad8bcbb5a84e4b656a40d5bc1c2353')
-
-prepare() {
-  cd $pkgname-$pkgver
-  patch -Np1 -i ../git1.patch
-  patch -Np1 -i ../git2.patch
-  patch -Np1 -i ../git3.patch
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---libexecdir=/usr/lib
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make -k check || :
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: gnome-builder/repos/staging-i686/PKGBUILD (from rev 247480, 
gnome-builder/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-09-25 17:37:56 UTC (rev 247481)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=gnome-builder
+pkgver=3.16.3
+pkgrel=7
+pkgdesc="An IDE for writing GNOME-based software"
+url="https://wiki.gnome.org/Apps/Builder";
+arch=(i686 x86_64)
+license=(GPL3)
+depends=(gtksourceview3 devhelp libgit2-glib gjs python-gobject clang 
desktop-file-utils
+ ctags)
+makedepends=(intltool llvm gobject-introspection)
+groups=(gno

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

2015-09-25 Thread Evangelos Foutras
Date: Friday, September 25, 2015 @ 19:37:35
  Author: foutrelis
Revision: 247480

upgpkg: gnome-builder 3.16.3-7

Python 3.5 rebuild.

Modified:
  gnome-builder/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-25 17:34:13 UTC (rev 247479)
+++ PKGBUILD2015-09-25 17:37:35 UTC (rev 247480)
@@ -3,7 +3,7 @@
 
 pkgname=gnome-builder
 pkgver=3.16.3
-pkgrel=6
+pkgrel=7
 pkgdesc="An IDE for writing GNOME-based software"
 url="https://wiki.gnome.org/Apps/Builder";
 arch=(i686 x86_64)


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

2015-09-25 Thread Evangelos Foutras
Date: Friday, September 25, 2015 @ 19:34:13
  Author: foutrelis
Revision: 247479

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

Added:
  gnome-builder/repos/testing-i686/PKGBUILD
(from rev 247478, gnome-builder/trunk/PKGBUILD)
  gnome-builder/repos/testing-i686/git1.patch
(from rev 247478, gnome-builder/trunk/git1.patch)
  gnome-builder/repos/testing-i686/git2.patch
(from rev 247478, gnome-builder/trunk/git2.patch)
  gnome-builder/repos/testing-i686/git3.patch
(from rev 247478, gnome-builder/trunk/git3.patch)
  gnome-builder/repos/testing-i686/gnome-builder.install
(from rev 247478, gnome-builder/trunk/gnome-builder.install)
  gnome-builder/repos/testing-x86_64/PKGBUILD
(from rev 247478, gnome-builder/trunk/PKGBUILD)
  gnome-builder/repos/testing-x86_64/git1.patch
(from rev 247478, gnome-builder/trunk/git1.patch)
  gnome-builder/repos/testing-x86_64/git2.patch
(from rev 247478, gnome-builder/trunk/git2.patch)
  gnome-builder/repos/testing-x86_64/git3.patch
(from rev 247478, gnome-builder/trunk/git3.patch)
  gnome-builder/repos/testing-x86_64/gnome-builder.install
(from rev 247478, gnome-builder/trunk/gnome-builder.install)
Deleted:
  gnome-builder/repos/testing-i686/PKGBUILD
  gnome-builder/repos/testing-i686/git1.patch
  gnome-builder/repos/testing-i686/git2.patch
  gnome-builder/repos/testing-i686/git3.patch
  gnome-builder/repos/testing-i686/gnome-builder.install
  gnome-builder/repos/testing-x86_64/PKGBUILD
  gnome-builder/repos/testing-x86_64/git1.patch
  gnome-builder/repos/testing-x86_64/git2.patch
  gnome-builder/repos/testing-x86_64/git3.patch
  gnome-builder/repos/testing-x86_64/gnome-builder.install

--+
 /PKGBUILD|   90 
 /git1.patch  |   44 +
 /git2.patch  |   96 ++
 /git3.patch  |  104 +
 /gnome-builder.install   |   26 
 testing-i686/PKGBUILD|   45 --
 testing-i686/git1.patch  |   22 --
 testing-i686/git2.patch  |   48 ---
 testing-i686/git3.patch  |   52 
 testing-i686/gnome-builder.install   |   13 
 testing-x86_64/PKGBUILD  |   45 --
 testing-x86_64/git1.patch|   22 --
 testing-x86_64/git2.patch|   48 ---
 testing-x86_64/git3.patch|   52 
 testing-x86_64/gnome-builder.install |   13 
 15 files changed, 360 insertions(+), 360 deletions(-)

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2015-09-25 17:33:51 UTC (rev 247478)
+++ testing-i686/PKGBUILD   2015-09-25 17:34:13 UTC (rev 247479)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=gnome-builder
-pkgver=3.16.3
-pkgrel=4
-pkgdesc="An IDE for writing GNOME-based software"
-url="https://wiki.gnome.org/Apps/Builder";
-arch=(i686 x86_64)
-license=(GPL3)
-depends=(gtksourceview3 devhelp libgit2-glib gjs python-gobject clang 
desktop-file-utils
- ctags)
-makedepends=(intltool llvm gobject-introspection)
-groups=(gnome-extra)
-install=gnome-builder.install
-source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz
-git1.patch git2.patch git3.patch)
-sha256sums=('a1d7b287d39ce724114c128e25bb00e273ecd8982ed22c8aba48cad9c4d51e61'
-'e2b3edad8db87c9798abfad2dc831c2133736b6b9cb26e629e8adf0eb2c5e0a7'
-'d81adf53ff7a918e0f037e6dc61515c0ad14a0c226f500a71d1a7daabf64b119'
-'39be431517fe5cedd17738b0289adc16afad8bcbb5a84e4b656a40d5bc1c2353')
-
-prepare() {
-  cd $pkgname-$pkgver
-  patch -Np1 -i ../git1.patch
-  patch -Np1 -i ../git2.patch
-  patch -Np1 -i ../git3.patch
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---libexecdir=/usr/lib
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make -k check || :
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: gnome-builder/repos/testing-i686/PKGBUILD (from rev 247478, 
gnome-builder/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-09-25 17:34:13 UTC (rev 247479)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=gnome-builder
+pkgver=3.16.3
+pkgrel=6
+pkgdesc="An IDE for writing GNOME-based software"
+url="https://wiki.gnome.org/Apps/Builder";
+arch=(i686 x86_64)
+license=(GPL3)
+depends=(gtksourceview3 devhelp libgit2-glib gjs python-gobject clang 
desktop-file-utils
+ ctags)
+makedepends=(intltool llvm gobject-introspection)
+groups=(gno

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

2015-09-25 Thread Evangelos Foutras
Date: Friday, September 25, 2015 @ 19:33:51
  Author: foutrelis
Revision: 247478

upgpkg: gnome-builder 3.16.3-6

clang 3.7.0-2 rebuild.

Modified:
  gnome-builder/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-25 17:29:31 UTC (rev 247477)
+++ PKGBUILD2015-09-25 17:33:51 UTC (rev 247478)
@@ -3,7 +3,7 @@
 
 pkgname=gnome-builder
 pkgver=3.16.3
-pkgrel=5
+pkgrel=6
 pkgdesc="An IDE for writing GNOME-based software"
 url="https://wiki.gnome.org/Apps/Builder";
 arch=(i686 x86_64)


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

2015-09-25 Thread Evangelos Foutras
Date: Friday, September 25, 2015 @ 19:16:18
  Author: foutrelis
Revision: 247474

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

Added:
  qtcreator/repos/staging-i686/
  qtcreator/repos/staging-i686/PKGBUILD
(from rev 247473, qtcreator/trunk/PKGBUILD)
  qtcreator/repos/staging-i686/qtcreator.desktop
(from rev 247473, qtcreator/trunk/qtcreator.desktop)
  qtcreator/repos/staging-i686/qtcreator.install
(from rev 247473, qtcreator/trunk/qtcreator.install)
  qtcreator/repos/staging-x86_64/
  qtcreator/repos/staging-x86_64/PKGBUILD
(from rev 247473, qtcreator/trunk/PKGBUILD)
  qtcreator/repos/staging-x86_64/qtcreator.desktop
(from rev 247473, qtcreator/trunk/qtcreator.desktop)
  qtcreator/repos/staging-x86_64/qtcreator.install
(from rev 247473, qtcreator/trunk/qtcreator.install)

--+
 staging-i686/PKGBUILD|   67 +
 staging-i686/qtcreator.desktop   |   10 +
 staging-i686/qtcreator.install   |   12 ++
 staging-x86_64/PKGBUILD  |   67 +
 staging-x86_64/qtcreator.desktop |   10 +
 staging-x86_64/qtcreator.install |   12 ++
 6 files changed, 178 insertions(+)

Copied: qtcreator/repos/staging-i686/PKGBUILD (from rev 247473, 
qtcreator/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-09-25 17:16:18 UTC (rev 247474)
@@ -0,0 +1,67 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Imanol Celaya 
+# Contributor: Lukas Jirkovsky 
+# Contributor: Dan Vratil 
+# Contributor: thotypous 
+# Contributor: delor 
+
+pkgname=qtcreator
+pkgver=3.5.0
+_pkgver=v3.5.0
+pkgrel=3
+pkgdesc='Lightweight, cross-platform integrated development environment'
+arch=('i686' 'x86_64')
+url='http://qt-project.org'
+license=('LGPL')
+depends=('qt5-quick1' 'qt5-tools' 'qt5-quickcontrols')
+makedepends=('git' 'mesa' 'clang')
+options=('docs')
+optdepends=('qt5-doc: for the integrated Qt documentation'
+'gdb: for the debugger'
+'cmake: for cmake project support'
+'openssh-askpass: for ssh support'
+'git: for git support'
+'mercurial: for mercurial support'
+'bzr: for bazaar support'
+'clang: Clang code model'
+'valgrind: for analyze support')
+install=qtcreator.install
+source=("git://code.qt.io/qt-creator/qt-creator.git#tag=${_pkgver}"
+"git://code.qt.io/qt-labs/qbs.git"
+'qtcreator.desktop')
+md5sums=('SKIP'
+ 'SKIP'
+ '800c94165c547b64012a207d9830250a')
+
+prepare() {
+  cd qt-creator
+  git submodule init
+  git config submodule.qbs.url $srcdir/qbs
+  git submodule update
+}
+
+build() {
+  [[ -d build ]] && rm -r build
+  mkdir build && cd build
+
+  LLVM_INSTALL_DIR=/usr qmake CONFIG+=journald -r ../qt-creator/qtcreator.pro
+  make
+  make docs -j1
+}
+
+package() {
+  cd build
+
+  make INSTALL_ROOT="${pkgdir}/usr/" install
+  make INSTALL_ROOT="${pkgdir}/usr/" install_docs
+
+  # Workaround for FS#40583
+  mv "${pkgdir}"/usr/bin/qtcreator "${pkgdir}"/usr/bin/qtcreator-bin
+  echo "#!/bin/sh" > "${pkgdir}"/usr/bin/qtcreator
+  echo "QT_LOGGING_TO_CONSOLE=1 qtcreator-bin \$@" >> 
"${pkgdir}"/usr/bin/qtcreator
+  chmod +x "${pkgdir}"/usr/bin/qtcreator
+
+  install -Dm644 ${srcdir}/qtcreator.desktop 
${pkgdir}/usr/share/applications/qtcreator.desktop
+  install -Dm644 ${srcdir}/qt-creator/LGPL_EXCEPTION.TXT 
${pkgdir}/usr/share/licenses/qtcreator/LGPL_EXCEPTION.TXT
+}

Copied: qtcreator/repos/staging-i686/qtcreator.desktop (from rev 247473, 
qtcreator/trunk/qtcreator.desktop)
===
--- staging-i686/qtcreator.desktop  (rev 0)
+++ staging-i686/qtcreator.desktop  2015-09-25 17:16:18 UTC (rev 247474)
@@ -0,0 +1,10 @@
+[Desktop Entry]
+Type=Application
+Exec=qtcreator %F
+Name=Qt Creator
+GenericName=C++ IDE for developing Qt applications
+X-KDE-StartupNotify=true
+Icon=QtProject-qtcreator
+Terminal=false
+Categories=Development;IDE;Qt;
+MimeType=text/x-c++src;text/x-c++hdr;text/x-xsrc;application/x-designer;application/vnd.nokia.qt.qmakeprofile;application/vnd.nokia.xml.qt.resource;

Copied: qtcreator/repos/staging-i686/qtcreator.install (from rev 247473, 
qtcreator/trunk/qtcreator.install)
===
--- staging-i686/qtcreator.install  (rev 0)
+++ staging-i686/qtcreator.install  2015-09-25 17:16:18 UTC (rev 247474)
@@ -0,0 +1,12 @@
+post_install() {
+update-desktop-database -q
+gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}

Copied: qtcreator/repos/staging-x86_64/PKGBUILD (from rev 247473, 
qtcreator/trunk/PKGBUILD)
===

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

2015-09-25 Thread Evangelos Foutras
Date: Friday, September 25, 2015 @ 19:16:02
  Author: foutrelis
Revision: 247473

upgpkg: qtcreator 3.5.0-3

clang 3.7.0-2 rebuild.

Modified:
  qtcreator/trunk/PKGBUILD  (contents, properties)

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-25 16:38:05 UTC (rev 247472)
+++ PKGBUILD2015-09-25 17:16:02 UTC (rev 247473)
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 101820 2013-12-02 00:06:01Z svenstaro $
+# $Id$
 # Maintainer: Sven-Hendrik Haase 
 # Contributor: Imanol Celaya 
 # Contributor: Lukas Jirkovsky 
@@ -9,7 +9,7 @@
 pkgname=qtcreator
 pkgver=3.5.0
 _pkgver=v3.5.0
-pkgrel=2
+pkgrel=3
 pkgdesc='Lightweight, cross-platform integrated development environment'
 arch=('i686' 'x86_64')
 url='http://qt-project.org'


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


[arch-commits] Commit in lxde-common/trunk (PKGBUILD dbus-update-environment.patch)

2015-09-25 Thread Jan Steffens
Date: Friday, September 25, 2015 @ 19:03:40
  Author: heftig
Revision: 141604

fix dbus activation

Added:
  lxde-common/trunk/dbus-update-environment.patch
Modified:
  lxde-common/trunk/PKGBUILD

---+
 PKGBUILD  |   13 ++---
 dbus-update-environment.patch |   20 
 2 files changed, 30 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-09-25 13:04:46 UTC (rev 141603)
+++ PKGBUILD2015-09-25 17:03:40 UTC (rev 141604)
@@ -5,7 +5,7 @@
 
 pkgname=lxde-common
 pkgver=0.99.0
-pkgrel=2
+pkgrel=3
 pkgdesc='Common files of the LXDE Desktop'
 arch=('any')
 url='http://lxde.org/'
@@ -17,9 +17,16 @@
 makedepends=('intltool')
 optdepends=('gtk-engines: default GTK+ theme'
 'lxde-icon-theme: default icon theme')
-source=(http://downloads.sourceforge.net/lxde/${pkgname}-${pkgver}.tar.xz)
-md5sums=('5a417f5a0e5b510a0c018b66b0dc4081')
+source=(http://downloads.sourceforge.net/lxde/${pkgname}-${pkgver}.tar.xz
+dbus-update-environment.patch)
+md5sums=('5a417f5a0e5b510a0c018b66b0dc4081'
+ '9f5cdfb8aef6286b6de79a50d1fddd7f')
 
+prepare() {
+cd $srcdir/$pkgname-$pkgver
+patch -Np1 -i ../dbus-update-environment.patch
+}
+
 build() {
 cd $srcdir/$pkgname-$pkgver
 ./configure --sysconfdir=/etc --prefix=/usr

Added: dbus-update-environment.patch
===
--- dbus-update-environment.patch   (rev 0)
+++ dbus-update-environment.patch   2015-09-25 17:03:40 UTC (rev 141604)
@@ -0,0 +1,20 @@
+diff -u -r lxde-common-0.99.0/startlxde.in lxde-common-0.99.0-dbus/startlxde.in
+--- lxde-common-0.99.0/startlxde.in2014-10-23 16:08:00.0 +0200
 lxde-common-0.99.0-dbus/startlxde.in   2015-09-25 19:00:01.152474183 
+0200
+@@ -26,8 +26,14 @@
+ export SAL_USE_VCLPLUGIN=gtk
+ 
+ # Launch DBus if needed
+-if which dbus-launch >/dev/null && test -z "$DBUS_SESSION_BUS_ADDRESS"; then
+-  eval "$(dbus-launch --sh-syntax --exit-with-session)"
++if test -z "$DBUS_SESSION_BUS_ADDRESS"; then
++  if which dbus-launch >/dev/null; then
++  eval "$(dbus-launch --sh-syntax --exit-with-session)"
++  fi
++else
++  if which dbus-update-activation-environment >/dev/null; then
++  dbus-update-activation-environment --systemd --all
++  fi
+ fi
+ 
+ export XDG_MENU_PREFIX="lxde-"


[arch-commits] Commit in lxde-common/repos/community-any (3 files)

2015-09-25 Thread Jan Steffens
Date: Friday, September 25, 2015 @ 19:04:24
  Author: heftig
Revision: 141605

archrelease: copy trunk to community-any

Added:
  lxde-common/repos/community-any/PKGBUILD
(from rev 141604, lxde-common/trunk/PKGBUILD)
  lxde-common/repos/community-any/dbus-update-environment.patch
(from rev 141604, lxde-common/trunk/dbus-update-environment.patch)
Deleted:
  lxde-common/repos/community-any/PKGBUILD

---+
 PKGBUILD  |   71 +---
 dbus-update-environment.patch |   20 +++
 2 files changed, 59 insertions(+), 32 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-09-25 17:03:40 UTC (rev 141604)
+++ PKGBUILD2015-09-25 17:04:24 UTC (rev 141605)
@@ -1,32 +0,0 @@
-# $Id$
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Angel Velasquez 
-# Contributor: Juergen Hoetzel 
-
-pkgname=lxde-common
-pkgver=0.99.0
-pkgrel=2
-pkgdesc='Common files of the LXDE Desktop'
-arch=('any')
-url='http://lxde.org/'
-license=('GPL2')
-groups=('lxde')
-backup=(etc/xdg/lxsession/LXDE/desktop.conf
-etc/xdg/lxsession/LXDE/autostart)
-depends=('lxsession')
-makedepends=('intltool')
-optdepends=('gtk-engines: default GTK+ theme'
-'lxde-icon-theme: default icon theme')
-source=(http://downloads.sourceforge.net/lxde/${pkgname}-${pkgver}.tar.xz)
-md5sums=('5a417f5a0e5b510a0c018b66b0dc4081')
-
-build() {
-cd $srcdir/$pkgname-$pkgver
-./configure --sysconfdir=/etc --prefix=/usr
-make
-}
-
-package() {
-cd $srcdir/$pkgname-$pkgver
-make DESTDIR=$pkgdir install
-}

Copied: lxde-common/repos/community-any/PKGBUILD (from rev 141604, 
lxde-common/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-09-25 17:04:24 UTC (rev 141605)
@@ -0,0 +1,39 @@
+# $Id$
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Angel Velasquez 
+# Contributor: Juergen Hoetzel 
+
+pkgname=lxde-common
+pkgver=0.99.0
+pkgrel=3
+pkgdesc='Common files of the LXDE Desktop'
+arch=('any')
+url='http://lxde.org/'
+license=('GPL2')
+groups=('lxde')
+backup=(etc/xdg/lxsession/LXDE/desktop.conf
+etc/xdg/lxsession/LXDE/autostart)
+depends=('lxsession')
+makedepends=('intltool')
+optdepends=('gtk-engines: default GTK+ theme'
+'lxde-icon-theme: default icon theme')
+source=(http://downloads.sourceforge.net/lxde/${pkgname}-${pkgver}.tar.xz
+dbus-update-environment.patch)
+md5sums=('5a417f5a0e5b510a0c018b66b0dc4081'
+ '9f5cdfb8aef6286b6de79a50d1fddd7f')
+
+prepare() {
+cd $srcdir/$pkgname-$pkgver
+patch -Np1 -i ../dbus-update-environment.patch
+}
+
+build() {
+cd $srcdir/$pkgname-$pkgver
+./configure --sysconfdir=/etc --prefix=/usr
+make
+}
+
+package() {
+cd $srcdir/$pkgname-$pkgver
+make DESTDIR=$pkgdir install
+}

Copied: lxde-common/repos/community-any/dbus-update-environment.patch (from rev 
141604, lxde-common/trunk/dbus-update-environment.patch)
===
--- dbus-update-environment.patch   (rev 0)
+++ dbus-update-environment.patch   2015-09-25 17:04:24 UTC (rev 141605)
@@ -0,0 +1,20 @@
+diff -u -r lxde-common-0.99.0/startlxde.in lxde-common-0.99.0-dbus/startlxde.in
+--- lxde-common-0.99.0/startlxde.in2014-10-23 16:08:00.0 +0200
 lxde-common-0.99.0-dbus/startlxde.in   2015-09-25 19:00:01.152474183 
+0200
+@@ -26,8 +26,14 @@
+ export SAL_USE_VCLPLUGIN=gtk
+ 
+ # Launch DBus if needed
+-if which dbus-launch >/dev/null && test -z "$DBUS_SESSION_BUS_ADDRESS"; then
+-  eval "$(dbus-launch --sh-syntax --exit-with-session)"
++if test -z "$DBUS_SESSION_BUS_ADDRESS"; then
++  if which dbus-launch >/dev/null; then
++  eval "$(dbus-launch --sh-syntax --exit-with-session)"
++  fi
++else
++  if which dbus-update-activation-environment >/dev/null; then
++  dbus-update-activation-environment --systemd --all
++  fi
+ fi
+ 
+ export XDG_MENU_PREFIX="lxde-"


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

2015-09-25 Thread Jan Steffens
Date: Friday, September 25, 2015 @ 18:37:45
  Author: heftig
Revision: 247471

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  seahorse/repos/gnome-unstable-i686/
  seahorse/repos/gnome-unstable-i686/PKGBUILD
(from rev 247470, seahorse/trunk/PKGBUILD)
  seahorse/repos/gnome-unstable-i686/gpg-2.1.patch
(from rev 247470, seahorse/trunk/gpg-2.1.patch)
  seahorse/repos/gnome-unstable-i686/seahorse-ssh-askpass.sh
(from rev 247470, seahorse/trunk/seahorse-ssh-askpass.sh)
  seahorse/repos/gnome-unstable-i686/seahorse.install
(from rev 247470, seahorse/trunk/seahorse.install)
  seahorse/repos/gnome-unstable-x86_64/
  seahorse/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 247470, seahorse/trunk/PKGBUILD)
  seahorse/repos/gnome-unstable-x86_64/gpg-2.1.patch
(from rev 247470, seahorse/trunk/gpg-2.1.patch)
  seahorse/repos/gnome-unstable-x86_64/seahorse-ssh-askpass.sh
(from rev 247470, seahorse/trunk/seahorse-ssh-askpass.sh)
  seahorse/repos/gnome-unstable-x86_64/seahorse.install
(from rev 247470, seahorse/trunk/seahorse.install)

---+
 gnome-unstable-i686/PKGBUILD  |   38 
 gnome-unstable-i686/gpg-2.1.patch |   11 ++
 gnome-unstable-i686/seahorse-ssh-askpass.sh   |3 +
 gnome-unstable-i686/seahorse.install  |   13 
 gnome-unstable-x86_64/PKGBUILD|   38 
 gnome-unstable-x86_64/gpg-2.1.patch   |   11 ++
 gnome-unstable-x86_64/seahorse-ssh-askpass.sh |3 +
 gnome-unstable-x86_64/seahorse.install|   13 
 8 files changed, 130 insertions(+)

Copied: seahorse/repos/gnome-unstable-i686/PKGBUILD (from rev 247470, 
seahorse/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2015-09-25 16:37:45 UTC (rev 247471)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+# Contributor: Michel Brabants 
+
+pkgname=seahorse
+pkgver=3.17.4
+pkgrel=1
+pkgdesc="GNOME application for managing PGP keys."
+arch=(i686 x86_64)
+license=(GPL)
+url="http://projects.gnome.org/seahorse/";
+depends=(gtk3 gcr libsecret libsoup desktop-file-utils hicolor-icon-theme 
dconf)
+makedepends=(libldap intltool yelp-tools gobject-introspection openssh libsm 
vala)
+optdepends=('openssh: SSH support')
+provides=(x11-ssh-askpass)
+options=('!emptydirs')
+groups=(gnome-extra)
+install=seahorse.install
+source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz
+seahorse-ssh-askpass.sh)
+sha256sums=('5c8dd9521a00bd6b0b1191a75daf0a88f844c24b871a9a8f0e9fad10767c2bf6'
+'400ea9a6084acc93f1dbd4223b95622bbd48071b763063328efba00de378b68c')
+
+build() {
+  cd "$pkgname-$pkgver"
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+  --enable-ldap --enable-hkp \
+  --disable-schemas-compile
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+  install -Dm755 "$srcdir/seahorse-ssh-askpass.sh" \
+"$pkgdir/etc/profile.d/seahorse-ssh-askpass.sh"
+}

Copied: seahorse/repos/gnome-unstable-i686/gpg-2.1.patch (from rev 247470, 
seahorse/trunk/gpg-2.1.patch)
===
--- gnome-unstable-i686/gpg-2.1.patch   (rev 0)
+++ gnome-unstable-i686/gpg-2.1.patch   2015-09-25 16:37:45 UTC (rev 247471)
@@ -0,0 +1,11 @@
+--- a/configure.ac 2015-01-19 09:47:35.260129636 +
 b/configure.ac 2015-01-19 09:47:41.363436425 +
+@@ -9,7 +9,7 @@
+ GTK_REQ=3.4.0
+ GTK_MAX=GTK_VERSION_3_4
+ 
+-GNUPG_ACCEPTED="1.2 1.4 2.0"
++GNUPG_ACCEPTED="1.2 1.4 2.0 2.1"
+ GPGME_REQUIRED=1.0.0
+ LIBSECRET_REQUIRED=0.16
+ AVAHI_GLIB_REQUIRED=0.6

Copied: seahorse/repos/gnome-unstable-i686/seahorse-ssh-askpass.sh (from rev 
247470, seahorse/trunk/seahorse-ssh-askpass.sh)
===
--- gnome-unstable-i686/seahorse-ssh-askpass.sh (rev 0)
+++ gnome-unstable-i686/seahorse-ssh-askpass.sh 2015-09-25 16:37:45 UTC (rev 
247471)
@@ -0,0 +1,3 @@
+if [ -z "$SSH_ASKPASS" ] && [ -n "$DISPLAY" ]; then
+  export SSH_ASKPASS=/usr/lib/seahorse/seahorse-ssh-askpass
+fi

Copied: seahorse/repos/gnome-unstable-i686/seahorse.install (from rev 247470, 
seahorse/trunk/seahorse.install)
===
--- gnome-unstable-i686/seahorse.install(rev 0)
+++ gnome-unstable-i686/seahorse.install2015-09-25 16:37:45 UTC (rev 
247471)
@@ -0,0 +1,13 @@
+post_install() {
+  glib-compile-schemas /usr/share/glib-2.0/schemas
+  update-desktop-database -q
+  gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+}
+
+post_upgrad

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

2015-09-25 Thread Antonio Rojas
Date: Friday, September 25, 2015 @ 18:38:05
  Author: arojas
Revision: 247472

Drop akonadi backend

Modified:
  kaccounts-integration/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-25 16:37:45 UTC (rev 247471)
+++ PKGBUILD2015-09-25 16:38:05 UTC (rev 247472)
@@ -1,3 +1,4 @@
+# $Id$
 # Maintainer: Antonio Rojas  
 
 pkgname=kaccounts-integration
@@ -10,8 +11,7 @@
 license=(GPL)
 groups=(kde-applications kdenetwork)
 depends=(kcmutils signon-kwallet-extension signon-plugin-oauth2 signon-ui)
-makedepends=(extra-cmake-modules kdoctools akonadi-client)
-optdepends=('akonadi-client: Akonadi accounts support')
+makedepends=(extra-cmake-modules kdoctools)
 
source=("http://download.kde.org/stable/applications/${pkgver}/src/$pkgname-${pkgver}.tar.xz";)
 md5sums=('e27071a5e2724f759ad7ed189ea407c9')
 


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

2015-09-25 Thread Jan Steffens
Date: Friday, September 25, 2015 @ 18:36:55
  Author: heftig
Revision: 247470

3.17.4

Modified:
  seahorse/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-25 16:34:46 UTC (rev 247469)
+++ PKGBUILD2015-09-25 16:36:55 UTC (rev 247470)
@@ -4,7 +4,7 @@
 # Contributor: Michel Brabants 
 
 pkgname=seahorse
-pkgver=3.16.0
+pkgver=3.17.4
 pkgrel=1
 pkgdesc="GNOME application for managing PGP keys."
 arch=(i686 x86_64)
@@ -19,7 +19,7 @@
 install=seahorse.install
 
source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz
 seahorse-ssh-askpass.sh)
-sha256sums=('770a5f03b8745054ef04cef9923dd713b1fbf309169150bc8dd32d7e5f7ee131'
+sha256sums=('5c8dd9521a00bd6b0b1191a75daf0a88f844c24b871a9a8f0e9fad10767c2bf6'
 '400ea9a6084acc93f1dbd4223b95622bbd48071b763063328efba00de378b68c')
 
 build() {


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

2015-09-25 Thread Jan Steffens
Date: Friday, September 25, 2015 @ 18:34:46
  Author: heftig
Revision: 247469

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  hitori/repos/gnome-unstable-i686/
  hitori/repos/gnome-unstable-i686/PKGBUILD
(from rev 247468, hitori/trunk/PKGBUILD)
  hitori/repos/gnome-unstable-i686/hitori.install
(from rev 247468, hitori/trunk/hitori.install)
  hitori/repos/gnome-unstable-x86_64/
  hitori/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 247468, hitori/trunk/PKGBUILD)
  hitori/repos/gnome-unstable-x86_64/hitori.install
(from rev 247468, hitori/trunk/hitori.install)

--+
 gnome-unstable-i686/PKGBUILD |   27 +++
 gnome-unstable-i686/hitori.install   |   12 
 gnome-unstable-x86_64/PKGBUILD   |   27 +++
 gnome-unstable-x86_64/hitori.install |   12 
 4 files changed, 78 insertions(+)

Copied: hitori/repos/gnome-unstable-i686/PKGBUILD (from rev 247468, 
hitori/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2015-09-25 16:34:46 UTC (rev 247469)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Balló György 
+
+pkgname=hitori
+pkgver=3.16.1
+pkgrel=1
+pkgdesc="GTK+ application to generate and let you play games of Hitori"
+arch=('i686' 'x86_64')
+url="https://wiki.gnome.org/Apps/Hitori";
+license=('GPL')
+depends=('gtk3')
+groups=('gnome-extra')
+makedepends=('intltool' 'itstool')
+install=hitori.install
+source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('a169af5f74dcc7622dae2dfd69c5dcaeb653ae1232cc504247ebc902681ff51e')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir/" install
+}

Copied: hitori/repos/gnome-unstable-i686/hitori.install (from rev 247468, 
hitori/trunk/hitori.install)
===
--- gnome-unstable-i686/hitori.install  (rev 0)
+++ gnome-unstable-i686/hitori.install  2015-09-25 16:34:46 UTC (rev 247469)
@@ -0,0 +1,12 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+  glib-compile-schemas /usr/share/glib-2.0/schemas
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  post_install $1
+}

Copied: hitori/repos/gnome-unstable-x86_64/PKGBUILD (from rev 247468, 
hitori/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2015-09-25 16:34:46 UTC (rev 247469)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Balló György 
+
+pkgname=hitori
+pkgver=3.16.1
+pkgrel=1
+pkgdesc="GTK+ application to generate and let you play games of Hitori"
+arch=('i686' 'x86_64')
+url="https://wiki.gnome.org/Apps/Hitori";
+license=('GPL')
+depends=('gtk3')
+groups=('gnome-extra')
+makedepends=('intltool' 'itstool')
+install=hitori.install
+source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('a169af5f74dcc7622dae2dfd69c5dcaeb653ae1232cc504247ebc902681ff51e')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir/" install
+}

Copied: hitori/repos/gnome-unstable-x86_64/hitori.install (from rev 247468, 
hitori/trunk/hitori.install)
===
--- gnome-unstable-x86_64/hitori.install(rev 0)
+++ gnome-unstable-x86_64/hitori.install2015-09-25 16:34:46 UTC (rev 
247469)
@@ -0,0 +1,12 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+  glib-compile-schemas /usr/share/glib-2.0/schemas
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  post_install $1
+}


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

2015-09-25 Thread Jan Steffens
Date: Friday, September 25, 2015 @ 18:34:17
  Author: heftig
Revision: 247468

3.16.1

Modified:
  hitori/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-25 16:32:51 UTC (rev 247467)
+++ PKGBUILD2015-09-25 16:34:17 UTC (rev 247468)
@@ -2,7 +2,7 @@
 # Maintainer: Balló György 
 
 pkgname=hitori
-pkgver=3.16.0
+pkgver=3.16.1
 pkgrel=1
 pkgdesc="GTK+ application to generate and let you play games of Hitori"
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 makedepends=('intltool' 'itstool')
 install=hitori.install
 
source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('8306f762a8826895517d91d84bc69320051ca44dc14d864ee409aa3643a12778')
+sha256sums=('a169af5f74dcc7622dae2dfd69c5dcaeb653ae1232cc504247ebc902681ff51e')
 
 build() {
   cd "$srcdir/$pkgname-$pkgver"


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

2015-09-25 Thread Evangelos Foutras
Date: Friday, September 25, 2015 @ 18:32:51
  Author: foutrelis
Revision: 247467

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

Added:
  mesa/repos/staging-i686/
  mesa/repos/staging-i686/0001-i965-Remove-early-release-of-DRI2-miptree.patch
(from rev 247466, 
mesa/trunk/0001-i965-Remove-early-release-of-DRI2-miptree.patch)
  mesa/repos/staging-i686/LICENSE
(from rev 247466, mesa/trunk/LICENSE)
  mesa/repos/staging-i686/PKGBUILD
(from rev 247466, mesa/trunk/PKGBUILD)
  mesa/repos/staging-x86_64/
  mesa/repos/staging-x86_64/0001-i965-Remove-early-release-of-DRI2-miptree.patch
(from rev 247466, 
mesa/trunk/0001-i965-Remove-early-release-of-DRI2-miptree.patch)
  mesa/repos/staging-x86_64/LICENSE
(from rev 247466, mesa/trunk/LICENSE)
  mesa/repos/staging-x86_64/PKGBUILD
(from rev 247466, mesa/trunk/PKGBUILD)

-+
 staging-i686/0001-i965-Remove-early-release-of-DRI2-miptree.patch   |   33 +
 staging-i686/LICENSE|   82 
 staging-i686/PKGBUILD   |  177 
++
 staging-x86_64/0001-i965-Remove-early-release-of-DRI2-miptree.patch |   33 +
 staging-x86_64/LICENSE  |   82 
 staging-x86_64/PKGBUILD |  177 
++
 6 files changed, 584 insertions(+)

Copied: 
mesa/repos/staging-i686/0001-i965-Remove-early-release-of-DRI2-miptree.patch 
(from rev 247466, 
mesa/trunk/0001-i965-Remove-early-release-of-DRI2-miptree.patch)
===
--- staging-i686/0001-i965-Remove-early-release-of-DRI2-miptree.patch   
(rev 0)
+++ staging-i686/0001-i965-Remove-early-release-of-DRI2-miptree.patch   
2015-09-25 16:32:51 UTC (rev 247467)
@@ -0,0 +1,33 @@
+From e2a696a4cd93c2dbe445243de48ed478fbdb8009 Mon Sep 17 00:00:00 2001
+From: Chris Wilson 
+Date: Fri, 10 Jul 2015 10:41:35 +0100
+Subject: [PATCH] i965: Remove early release of DRI2 miptree
+
+intel_update_winsys_renderbuffer_miptree() will release the existing
+miptree when wrapping a new DRI2 buffer, so we can remove the early
+release and so prevent a NULL mt dereference should importing the new
+DRI2 name fail for any reason. (Reusing the old DRI2 name will result
+in the rendering going astray, to a stale buffer, and not shown on the
+screen, but it allows us to issue a warning and not crash much later in
+innocent code.)
+
+Signed-off-by: Chris Wilson 
+---
+ src/mesa/drivers/dri/i965/brw_context.c | 1 -
+ 1 file changed, 1 deletion(-)
+
+diff --git a/src/mesa/drivers/dri/i965/brw_context.c 
b/src/mesa/drivers/dri/i965/brw_context.c
+index e8d1396..72f3897 100644
+--- a/src/mesa/drivers/dri/i965/brw_context.c
 b/src/mesa/drivers/dri/i965/brw_context.c
+@@ -1388,7 +1388,6 @@ intel_process_dri2_buffer(struct brw_context *brw,
+   buffer->cpp, buffer->pitch);
+}
+ 
+-   intel_miptree_release(&rb->mt);
+bo = drm_intel_bo_gem_create_from_name(brw->bufmgr, buffer_name,
+   buffer->name);
+if (!bo) {
+-- 
+2.5.0
+

Copied: mesa/repos/staging-i686/LICENSE (from rev 247466, mesa/trunk/LICENSE)
===
--- staging-i686/LICENSE(rev 0)
+++ staging-i686/LICENSE2015-09-25 16:32:51 UTC (rev 247467)
@@ -0,0 +1,82 @@
+Disclaimer
+
+Mesa is a 3-D graphics library with an API which is very similar to
+that of OpenGL*
+To the extent that Mesa utilizes the OpenGL command syntax or state
+machine, it is being used with authorization from Silicon Graphics,
+Inc.(SGI). However, the author does not possess an OpenGL license
+from SGI, and makes no claim that Mesa is in any way a compatible
+replacement for OpenGL or associated with SGI. Those who want a
+licensed implementation of OpenGL should contact a licensed
+vendor.
+
+Please do not refer to the library as MesaGL (for legal
+reasons). It's just Mesa or The Mesa 3-D graphics
+library
+
+* OpenGL is a trademark of Silicon Graphics Incorporated.
+
+License / Copyright Information
+
+The Mesa distribution consists of several components.  Different copyrights
+and licenses apply to different components.  For example, GLUT is copyrighted
+by Mark Kilgard, some demo programs are copyrighted by SGI, some of the Mesa
+device drivers are copyrighted by their authors.  See below for a list of
+Mesa's main components and the license for each.
+
+The core Mesa library is licensed according to the terms of the MIT license.
+This allows integration with the XFree86, Xorg and DRI projects.
+
+The default Mesa license is as follows:
+
+Copyright (C) 1999-2007  Brian Paul   All Rights Reserved.
+
+Permission is hereby granted, free of charge, to any person obtaining a
+copy of this software and associated documentation files (th

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

2015-09-25 Thread Evangelos Foutras
Date: Friday, September 25, 2015 @ 18:32:36
  Author: foutrelis
Revision: 247466

upgpkg: mesa 11.0.0-3

llvm 3.7.0-2 rebuild.

Modified:
  mesa/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-25 16:31:15 UTC (rev 247465)
+++ PKGBUILD2015-09-25 16:32:36 UTC (rev 247466)
@@ -5,7 +5,7 @@
 pkgbase=mesa
 pkgname=('opencl-mesa' 'libva-mesa-driver' 'mesa-vdpau' 'mesa' 'mesa-libgl')
 pkgver=11.0.0
-pkgrel=2
+pkgrel=3
 arch=('i686' 'x86_64')
 makedepends=('python2-mako' 'libxml2' 'libx11' 'glproto' 'libdrm' 'dri2proto' 
'dri3proto' 'presentproto' 
  'libxshmfence' 'libxxf86vm' 'libxdamage' 'libvdpau' 'libva' 
'wayland' 'elfutils' 'llvm'
@@ -26,6 +26,9 @@
 
   # Should fix FS#45750, tested by heftig - Not merged upstream
   patch -Np1 -i ../0001-i965-Remove-early-release-of-DRI2-miptree.patch
+
+  # Fix detection of libLLVM when built with CMake
+  sed -i 's/LLVM_SO_NAME=.*/LLVM_SO_NAME=LLVM/' configure
 }
 
 build() {


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

2015-09-25 Thread Jan Steffens
Date: Friday, September 25, 2015 @ 18:31:15
  Author: heftig
Revision: 247465

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

Added:
  
xfce4-session/repos/extra-i686/0001-Pass-VT-number-to-xinit-if-XDG_VTNR-is-set.patch
(from rev 247464, 
xfce4-session/trunk/0001-Pass-VT-number-to-xinit-if-XDG_VTNR-is-set.patch)
  xfce4-session/repos/extra-i686/PKGBUILD
(from rev 247464, xfce4-session/trunk/PKGBUILD)
  xfce4-session/repos/extra-i686/dbus-update-environment.patch
(from rev 247464, xfce4-session/trunk/dbus-update-environment.patch)
  
xfce4-session/repos/extra-i686/xfce-polkit-gnome-authentication-agent-1.desktop
(from rev 247464, 
xfce4-session/trunk/xfce-polkit-gnome-authentication-agent-1.desktop)
  xfce4-session/repos/extra-i686/xfce4-session.install
(from rev 247464, xfce4-session/trunk/xfce4-session.install)
  
xfce4-session/repos/extra-x86_64/0001-Pass-VT-number-to-xinit-if-XDG_VTNR-is-set.patch
(from rev 247464, 
xfce4-session/trunk/0001-Pass-VT-number-to-xinit-if-XDG_VTNR-is-set.patch)
  xfce4-session/repos/extra-x86_64/PKGBUILD
(from rev 247464, xfce4-session/trunk/PKGBUILD)
  xfce4-session/repos/extra-x86_64/dbus-update-environment.patch
(from rev 247464, xfce4-session/trunk/dbus-update-environment.patch)
  
xfce4-session/repos/extra-x86_64/xfce-polkit-gnome-authentication-agent-1.desktop
(from rev 247464, 
xfce4-session/trunk/xfce-polkit-gnome-authentication-agent-1.desktop)
  xfce4-session/repos/extra-x86_64/xfce4-session.install
(from rev 247464, xfce4-session/trunk/xfce4-session.install)
Deleted:
  
xfce4-session/repos/extra-i686/0001-Pass-VT-number-to-xinit-if-XDG_VTNR-is-set.patch
  xfce4-session/repos/extra-i686/PKGBUILD
  
xfce4-session/repos/extra-i686/xfce-polkit-gnome-authentication-agent-1.desktop
  xfce4-session/repos/extra-i686/xfce4-session.install
  
xfce4-session/repos/extra-x86_64/0001-Pass-VT-number-to-xinit-if-XDG_VTNR-is-set.patch
  xfce4-session/repos/extra-x86_64/PKGBUILD
  
xfce4-session/repos/extra-x86_64/xfce-polkit-gnome-authentication-agent-1.desktop
  xfce4-session/repos/extra-x86_64/xfce4-session.install

+
 /0001-Pass-VT-number-to-xinit-if-XDG_VTNR-is-set.patch |   54 +++
 /PKGBUILD  |  130 
+++
 /xfce-polkit-gnome-authentication-agent-1.desktop  |  174 
++
 /xfce4-session.install |   26 +
 extra-i686/0001-Pass-VT-number-to-xinit-if-XDG_VTNR-is-set.patch   |   27 -
 extra-i686/PKGBUILD|   60 ---
 extra-i686/dbus-update-environment.patch   |   36 ++
 extra-i686/xfce-polkit-gnome-authentication-agent-1.desktop|   87 -
 extra-i686/xfce4-session.install   |   13 
 extra-x86_64/0001-Pass-VT-number-to-xinit-if-XDG_VTNR-is-set.patch |   27 -
 extra-x86_64/PKGBUILD  |   60 ---
 extra-x86_64/dbus-update-environment.patch |   36 ++
 extra-x86_64/xfce-polkit-gnome-authentication-agent-1.desktop  |   87 -
 extra-x86_64/xfce4-session.install |   13 
 14 files changed, 456 insertions(+), 374 deletions(-)

Deleted: extra-i686/0001-Pass-VT-number-to-xinit-if-XDG_VTNR-is-set.patch
===
--- extra-i686/0001-Pass-VT-number-to-xinit-if-XDG_VTNR-is-set.patch
2015-09-25 16:27:03 UTC (rev 247464)
+++ extra-i686/0001-Pass-VT-number-to-xinit-if-XDG_VTNR-is-set.patch
2015-09-25 16:31:15 UTC (rev 247465)
@@ -1,27 +0,0 @@
-From e740aad5d6761ce9a9df48a3d87ff29240433d19 Mon Sep 17 00:00:00 2001
-From: Evangelos Foutras 
-Date: Tue, 24 Mar 2015 10:09:33 +0200
-Subject: [PATCH] Pass VT number to xinit if XDG_VTNR is set
-

- scripts/startxfce4.in | 4 
- 1 file changed, 4 insertions(+)
-
-diff --git a/scripts/startxfce4.in b/scripts/startxfce4.in
-index d0a74a9..bf3201b 100644
 a/scripts/startxfce4.in
-+++ b/scripts/startxfce4.in
-@@ -92,6 +92,10 @@ if test "x$DISPLAY" = "x"
- then
-   echo "$0: Starting X server"
-   prog=xinit
-+
-+  if test ! "x$XDG_VTNR" = "x"; then
-+SERVERRC="vt$XDG_VTNR $SERVERRC"
-+  fi
- else
-   echo "$0: X server already running on display $DISPLAY"
-   prog=/bin/sh
--- 
-2.3.4
-

Copied: 
xfce4-session/repos/extra-i686/0001-Pass-VT-number-to-xinit-if-XDG_VTNR-is-set.patch
 (from rev 247464, 
xfce4-session/trunk/0001-Pass-VT-number-to-xinit-if-XDG_VTNR-is-set.patch)
===
--- extra-i686/0001-Pass-VT-number-to-xinit-if-XDG_VTNR-is-set.patch
(rev 0)
+++ extra-i686/0001-Pass-VT-number-to-xinit-if-XDG_VTNR-is-set.patch
2015-09-25 16:31:15 UTC (rev 247465)
@@ -0,0 +1,27 @@
+From e740aad5d6761ce9a9df48a3d87ff29240433d19 Mon Sep

[arch-commits] Commit in xfce4-session/trunk (PKGBUILD dbus-update-environment.patch)

2015-09-25 Thread Jan Steffens
Date: Friday, September 25, 2015 @ 18:27:03
  Author: heftig
Revision: 247464

patch the right files

Modified:
  xfce4-session/trunk/PKGBUILD
  xfce4-session/trunk/dbus-update-environment.patch

---+
 PKGBUILD  |2 +-
 dbus-update-environment.patch |   20 +++-
 2 files changed, 20 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-09-25 16:26:05 UTC (rev 247463)
+++ PKGBUILD2015-09-25 16:27:03 UTC (rev 247464)
@@ -26,7 +26,7 @@
 xfce-polkit-gnome-authentication-agent-1.desktop)
 sha256sums=('97d7f2a2d0af7f3623b68d1f04091e02913b28f9555dab8b0d26c8a1299d08fd'
 '7ea702a1d3391d36958cff57496ba2474592dd915cf7569a65501522c2410cf1'
-'fcdc6f9c29da129bd2d33aa247f3a89865623374ac7bb809e16088f74cc36098'
+'0a3f23c2ee1b73cec3ecb999b2cc1b5d97e7023482e42b418e6f14cd4f671c0b'
 '74c94c5f7893d714e04ec7d8b8520c978a5748757a0cdcf5128492f09f31b643')
 
 prepare() {

Modified: dbus-update-environment.patch
===
--- dbus-update-environment.patch   2015-09-25 16:26:05 UTC (rev 247463)
+++ dbus-update-environment.patch   2015-09-25 16:27:03 UTC (rev 247464)
@@ -1,6 +1,6 @@
 diff -u -r xfce4-session-4.12.1/scripts/xinitrc.in 
xfce4-session-4.12.1-dbus/scripts/xinitrc.in
 --- xfce4-session-4.12.1/scripts/xinitrc.in2015-03-16 08:29:52.0 
+0100
-+++ xfce4-session-4.12.1-dbus/scripts/xinitrc.in   2015-09-25 
18:17:11.524016526 +0200
 xfce4-session-4.12.1-dbus/scripts/xinitrc.in   2015-09-25 
18:23:46.069944338 +0200
 @@ -132,7 +132,13 @@
  export DBUS_SESSION_BUS_ADDRESS
else
@@ -16,3 +16,21 @@
  fi
  
  # this is only necessary when running w/o xfce4-session
+diff -u -r xfce4-session-4.12.1/scripts/xinitrc.in.in 
xfce4-session-4.12.1-dbus/scripts/xinitrc.in.in
+--- xfce4-session-4.12.1/scripts/xinitrc.in.in 2014-10-20 07:23:02.0 
+0200
 xfce4-session-4.12.1-dbus/scripts/xinitrc.in.in2015-09-25 
18:24:06.106572945 +0200
+@@ -132,7 +132,13 @@
+ export DBUS_SESSION_BUS_ADDRESS
+   else
+ echo "Could not find dbus-launch; Xfce will not work properly" >&2
+-fi
++  fi
++else
++  if which dbus-update-activation-environment >/dev/null 2>&1; then
++dbus-update-activation-environment --systemd --all
++  else
++echo "Could not find dbus-update-activation-environment; Xfce will not 
work properly" >&2
++  fi
+ fi
+ 
+ # this is only necessary when running w/o xfce4-session


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

2015-09-25 Thread Jan Steffens
Date: Friday, September 25, 2015 @ 18:26:05
  Author: heftig
Revision: 247463

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  file-roller/repos/gnome-unstable-i686/
  file-roller/repos/gnome-unstable-i686/PKGBUILD
(from rev 247462, file-roller/trunk/PKGBUILD)
  file-roller/repos/gnome-unstable-i686/file-roller.install
(from rev 247462, file-roller/trunk/file-roller.install)
  file-roller/repos/gnome-unstable-x86_64/
  file-roller/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 247462, file-roller/trunk/PKGBUILD)
  file-roller/repos/gnome-unstable-x86_64/file-roller.install
(from rev 247462, file-roller/trunk/file-roller.install)

---+
 gnome-unstable-i686/PKGBUILD  |   38 
 gnome-unstable-i686/file-roller.install   |   13 +
 gnome-unstable-x86_64/PKGBUILD|   38 
 gnome-unstable-x86_64/file-roller.install |   13 +
 4 files changed, 102 insertions(+)

Copied: file-roller/repos/gnome-unstable-i686/PKGBUILD (from rev 247462, 
file-roller/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2015-09-25 16:26:05 UTC (rev 247463)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgname=file-roller
+pkgver=3.16.4
+pkgrel=1
+pkgdesc="Create and modify archives"
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('desktop-file-utils' 'gtk3' 'hicolor-icon-theme' 'dconf' 'libarchive' 
'file' 'json-glib' 'libnotify' 'zip' 'unzip')
+makedepends=('intltool' 'pkg-config' 'libnautilus-extension' 'itstool' 
'docbook-xsl')
+optdepends=('p7zip: 7z, arj, exe and encrypted zip files support'
+'unrar: better RAR archive support'
+'unace: ACE archive support'
+'lrzip: lrzip archive support'
+'cdrkit: ISO image support')
+groups=('gnome-extra')
+options=('!emptydirs')
+install=file-roller.install
+url="http://www.gnome.org";
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('5455980b2c9c7eb063d2d65560ae7ab2e7f01b208ea3947e151680231c7a4185')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --libexecdir=/usr/lib/file-roller \
+  --localstatedir=/var --disable-static \
+  --disable-schemas-compile
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Copied: file-roller/repos/gnome-unstable-i686/file-roller.install (from rev 
247462, file-roller/trunk/file-roller.install)
===
--- gnome-unstable-i686/file-roller.install (rev 0)
+++ gnome-unstable-i686/file-roller.install 2015-09-25 16:26:05 UTC (rev 
247463)
@@ -0,0 +1,13 @@
+post_install() {
+glib-compile-schemas /usr/share/glib-2.0/schemas
+update-desktop-database -q
+gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}

Copied: file-roller/repos/gnome-unstable-x86_64/PKGBUILD (from rev 247462, 
file-roller/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2015-09-25 16:26:05 UTC (rev 247463)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgname=file-roller
+pkgver=3.16.4
+pkgrel=1
+pkgdesc="Create and modify archives"
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('desktop-file-utils' 'gtk3' 'hicolor-icon-theme' 'dconf' 'libarchive' 
'file' 'json-glib' 'libnotify' 'zip' 'unzip')
+makedepends=('intltool' 'pkg-config' 'libnautilus-extension' 'itstool' 
'docbook-xsl')
+optdepends=('p7zip: 7z, arj, exe and encrypted zip files support'
+'unrar: better RAR archive support'
+'unace: ACE archive support'
+'lrzip: lrzip archive support'
+'cdrkit: ISO image support')
+groups=('gnome-extra')
+options=('!emptydirs')
+install=file-roller.install
+url="http://www.gnome.org";
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('5455980b2c9c7eb063d2d65560ae7ab2e7f01b208ea3947e151680231c7a4185')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --libexecdir=/usr/lib/file-roller \
+  --localstatedir=/var --disable-static \
+  --disable-schemas-compile
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Copied: file-roller/repos/gnome-unstable-x86_64/file-roller.install (from rev 
247462, file-roller/trunk/file-roller.install)

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

2015-09-25 Thread Jan Steffens
Date: Friday, September 25, 2015 @ 18:25:19
  Author: heftig
Revision: 247462

3.16.4

Modified:
  file-roller/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-25 16:21:20 UTC (rev 247461)
+++ PKGBUILD2015-09-25 16:25:19 UTC (rev 247462)
@@ -3,7 +3,7 @@
 # Contributor: Jan de Groot 
 
 pkgname=file-roller
-pkgver=3.16.3
+pkgver=3.16.4
 pkgrel=1
 pkgdesc="Create and modify archives"
 arch=('i686' 'x86_64')
@@ -20,7 +20,7 @@
 install=file-roller.install
 url="http://www.gnome.org";
 
source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('2b3acaba26e67b96559a3118a700dbfb6a4c6ad7ebd3e509df227995411c')
+sha256sums=('5455980b2c9c7eb063d2d65560ae7ab2e7f01b208ea3947e151680231c7a4185')
 
 build() {
   cd $pkgname-$pkgver


[arch-commits] Commit in xfce4-session/trunk (PKGBUILD dbus-update-environment.patch)

2015-09-25 Thread Jan Steffens
Date: Friday, September 25, 2015 @ 18:21:20
  Author: heftig
Revision: 247461

fix dbus activation

Added:
  xfce4-session/trunk/dbus-update-environment.patch
Modified:
  xfce4-session/trunk/PKGBUILD

---+
 PKGBUILD  |7 ++-
 dbus-update-environment.patch |   18 ++
 2 files changed, 24 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-09-25 16:14:33 UTC (rev 247460)
+++ PKGBUILD2015-09-25 16:21:20 UTC (rev 247461)
@@ -4,7 +4,7 @@
 
 pkgname=xfce4-session
 pkgver=4.12.1
-pkgrel=2
+pkgrel=3
 pkgdesc="A session manager for Xfce"
 arch=('i686' 'x86_64')
 url="http://www.xfce.org/";
@@ -22,9 +22,11 @@
 install=$pkgname.install
 
source=(http://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2
 0001-Pass-VT-number-to-xinit-if-XDG_VTNR-is-set.patch
+dbus-update-environment.patch
 xfce-polkit-gnome-authentication-agent-1.desktop)
 sha256sums=('97d7f2a2d0af7f3623b68d1f04091e02913b28f9555dab8b0d26c8a1299d08fd'
 '7ea702a1d3391d36958cff57496ba2474592dd915cf7569a65501522c2410cf1'
+'fcdc6f9c29da129bd2d33aa247f3a89865623374ac7bb809e16088f74cc36098'
 '74c94c5f7893d714e04ec7d8b8520c978a5748757a0cdcf5128492f09f31b643')
 
 prepare() {
@@ -32,6 +34,9 @@
 
   # https://bugzilla.xfce.org/show_bug.cgi?id=11759
   patch -Np1 -i ../0001-Pass-VT-number-to-xinit-if-XDG_VTNR-is-set.patch
+
+  # Support using existing dbus-daemon
+  patch -Np1 -i ../dbus-update-environment.patch
 }
 
 build() {

Added: dbus-update-environment.patch
===
--- dbus-update-environment.patch   (rev 0)
+++ dbus-update-environment.patch   2015-09-25 16:21:20 UTC (rev 247461)
@@ -0,0 +1,18 @@
+diff -u -r xfce4-session-4.12.1/scripts/xinitrc.in 
xfce4-session-4.12.1-dbus/scripts/xinitrc.in
+--- xfce4-session-4.12.1/scripts/xinitrc.in2015-03-16 08:29:52.0 
+0100
 xfce4-session-4.12.1-dbus/scripts/xinitrc.in   2015-09-25 
18:17:11.524016526 +0200
+@@ -132,7 +132,13 @@
+ export DBUS_SESSION_BUS_ADDRESS
+   else
+ echo "Could not find dbus-launch; Xfce will not work properly" >&2
+-fi
++  fi
++else
++  if which dbus-update-activation-environment >/dev/null 2>&1; then
++dbus-update-activation-environment --systemd --all
++  else
++echo "Could not find dbus-update-activation-environment; Xfce will not 
work properly" >&2
++  fi
+ fi
+ 
+ # this is only necessary when running w/o xfce4-session


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

2015-09-25 Thread Evangelos Foutras
Date: Friday, September 25, 2015 @ 18:14:33
  Author: foutrelis
Revision: 247460

Pass HEAD instead of master to git rev-list

Modified:
  libclc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-25 16:00:42 UTC (rev 247459)
+++ PKGBUILD2015-09-25 16:14:33 UTC (rev 247460)
@@ -16,7 +16,7 @@
 pkgver() {
   cd libclc
 
-  echo 0.2.0+$(git rev-list --count master)+$(git describe --always)
+  echo 0.2.0+$(git rev-list --count HEAD)+$(git describe --always)
   #git describe --long | sed 's/-/+/g'
 }
 


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

2015-09-25 Thread Jan Steffens
Date: Friday, September 25, 2015 @ 18:00:42
  Author: heftig
Revision: 247459

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  gnote/repos/gnome-unstable-i686/
  gnote/repos/gnome-unstable-i686/PKGBUILD
(from rev 247458, gnote/trunk/PKGBUILD)
  gnote/repos/gnome-unstable-i686/gnote.install
(from rev 247458, gnote/trunk/gnote.install)
  gnote/repos/gnome-unstable-x86_64/
  gnote/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 247458, gnote/trunk/PKGBUILD)
  gnote/repos/gnome-unstable-x86_64/gnote.install
(from rev 247458, gnote/trunk/gnote.install)

-+
 gnome-unstable-i686/PKGBUILD|   39 ++
 gnome-unstable-i686/gnote.install   |   21 ++
 gnome-unstable-x86_64/PKGBUILD  |   39 ++
 gnome-unstable-x86_64/gnote.install |   21 ++
 4 files changed, 120 insertions(+)

Copied: gnote/repos/gnome-unstable-i686/PKGBUILD (from rev 247458, 
gnote/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2015-09-25 16:00:42 UTC (rev 247459)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer:  Ionut Biru 
+# Contributor: uastasi 
+
+pkgname=gnote
+pkgver=3.17.1
+pkgrel=1
+pkgdesc='A note taking application'
+arch=('i686' 'x86_64')
+url='http://live.gnome.org/Gnote'
+license=('GPL3')
+depends=('gtkmm3' 'libxslt' 'hicolor-icon-theme' 'desktop-file-utils' 'dconf'
+ 'libsecret')
+makedepends=('intltool' 'itstool' 'boost')
+install=gnote.install
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('83325032cb948f1dc9dfe266e69a447e755cf7cbf94327c5440f2e380512fa99')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--libexecdir=/usr/lib/gnote \
+--disable-scrollkeeper \
+--disable-schemas-compile \
+--disable-static
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Copied: gnote/repos/gnome-unstable-i686/gnote.install (from rev 247458, 
gnote/trunk/gnote.install)
===
--- gnome-unstable-i686/gnote.install   (rev 0)
+++ gnome-unstable-i686/gnote.install   2015-09-25 16:00:42 UTC (rev 247459)
@@ -0,0 +1,21 @@
+pkgname=gnote
+
+post_install() {
+glib-compile-schemas usr/share/glib-2.0/schemas
+gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+update-desktop-database -q
+}
+
+pre_upgrade() {
+if [ -f usr/share/gconf/schemas/${pkgname}.schemas ]; then
+usr/sbin/gconfpkg --uninstall ${pkgname}
+fi
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}

Copied: gnote/repos/gnome-unstable-x86_64/PKGBUILD (from rev 247458, 
gnote/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2015-09-25 16:00:42 UTC (rev 247459)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer:  Ionut Biru 
+# Contributor: uastasi 
+
+pkgname=gnote
+pkgver=3.17.1
+pkgrel=1
+pkgdesc='A note taking application'
+arch=('i686' 'x86_64')
+url='http://live.gnome.org/Gnote'
+license=('GPL3')
+depends=('gtkmm3' 'libxslt' 'hicolor-icon-theme' 'desktop-file-utils' 'dconf'
+ 'libsecret')
+makedepends=('intltool' 'itstool' 'boost')
+install=gnote.install
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('83325032cb948f1dc9dfe266e69a447e755cf7cbf94327c5440f2e380512fa99')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--libexecdir=/usr/lib/gnote \
+--disable-scrollkeeper \
+--disable-schemas-compile \
+--disable-static
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Copied: gnote/repos/gnome-unstable-x86_64/gnote.install (from rev 247458, 
gnote/trunk/gnote.install)
===
--- gnome-unstable-x86_64/gnote.install (rev 0)
+++ gnome-unstable-x86_64/gnote.install 2015-09-25 16:00:42 UTC (rev 247459)
@@ -0,0 +1,21 @@
+pkgname=gnote
+
+post_install() {
+glib-compile-schemas usr/share/glib-2.0/schemas
+gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+update-desktop-database -q
+}
+
+pre_upgrade() {
+if [ -f usr/share/gconf/schemas/${pkgname}.schemas ]; then
+usr/sbin/gconfpkg --uninstall ${pkgname}
+fi
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}


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

2015-09-25 Thread Jan Steffens
Date: Friday, September 25, 2015 @ 17:59:09
  Author: heftig
Revision: 247458

3.17.1

Modified:
  gnote/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-25 15:55:36 UTC (rev 247457)
+++ PKGBUILD2015-09-25 15:59:09 UTC (rev 247458)
@@ -3,7 +3,7 @@
 # Contributor: uastasi 
 
 pkgname=gnote
-pkgver=3.16.1
+pkgver=3.17.1
 pkgrel=1
 pkgdesc='A note taking application'
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 makedepends=('intltool' 'itstool' 'boost')
 install=gnote.install
 
source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('8360a8ddfbc1cddd8970a29c66965f2de4d1330145f7cc7d47831205e2b10087')
+sha256sums=('83325032cb948f1dc9dfe266e69a447e755cf7cbf94327c5440f2e380512fa99')
 
 build() {
   cd $pkgname-$pkgver


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

2015-09-25 Thread Jan Steffens
Date: Friday, September 25, 2015 @ 17:55:36
  Author: heftig
Revision: 247457

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  eog-plugins/repos/gnome-unstable-i686/
  eog-plugins/repos/gnome-unstable-i686/PKGBUILD
(from rev 247456, eog-plugins/trunk/PKGBUILD)
  eog-plugins/repos/gnome-unstable-i686/eog-plugins.install
(from rev 247456, eog-plugins/trunk/eog-plugins.install)
  eog-plugins/repos/gnome-unstable-x86_64/
  eog-plugins/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 247456, eog-plugins/trunk/PKGBUILD)
  eog-plugins/repos/gnome-unstable-x86_64/eog-plugins.install
(from rev 247456, eog-plugins/trunk/eog-plugins.install)

---+
 gnome-unstable-i686/PKGBUILD  |   33 
 gnome-unstable-i686/eog-plugins.install   |   11 +
 gnome-unstable-x86_64/PKGBUILD|   33 
 gnome-unstable-x86_64/eog-plugins.install |   11 +
 4 files changed, 88 insertions(+)

Copied: eog-plugins/repos/gnome-unstable-i686/PKGBUILD (from rev 247456, 
eog-plugins/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2015-09-25 15:55:36 UTC (rev 247457)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=eog-plugins
+pkgver=3.16.1
+pkgrel=1
+pkgdesc="Plugins for Eye of Gnome"
+arch=('i686' 'x86_64')
+url="https://wiki.gnome.org/Apps/EyeOfGnome/Plugins";
+license=('GPL2')
+depends=('eog' 'libchamplain' 'libgdata' 'python')
+makedepends=('intltool' 'gobject-introspection')
+install=eog-plugins.install
+source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('c586b6708064dcd03612f9373a6160214b2fa4797bf8c07db530b18eda4074d9')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr \
+--sysconfdir=/etc --localstatedir=/var
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: eog-plugins/repos/gnome-unstable-i686/eog-plugins.install (from rev 
247456, eog-plugins/trunk/eog-plugins.install)
===
--- gnome-unstable-i686/eog-plugins.install (rev 0)
+++ gnome-unstable-i686/eog-plugins.install 2015-09-25 15:55:36 UTC (rev 
247457)
@@ -0,0 +1,11 @@
+post_install() {
+  usr/bin/glib-compile-schemas usr/share/glib-2.0/schemas
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Copied: eog-plugins/repos/gnome-unstable-x86_64/PKGBUILD (from rev 247456, 
eog-plugins/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2015-09-25 15:55:36 UTC (rev 247457)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=eog-plugins
+pkgver=3.16.1
+pkgrel=1
+pkgdesc="Plugins for Eye of Gnome"
+arch=('i686' 'x86_64')
+url="https://wiki.gnome.org/Apps/EyeOfGnome/Plugins";
+license=('GPL2')
+depends=('eog' 'libchamplain' 'libgdata' 'python')
+makedepends=('intltool' 'gobject-introspection')
+install=eog-plugins.install
+source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('c586b6708064dcd03612f9373a6160214b2fa4797bf8c07db530b18eda4074d9')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr \
+--sysconfdir=/etc --localstatedir=/var
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: eog-plugins/repos/gnome-unstable-x86_64/eog-plugins.install (from rev 
247456, eog-plugins/trunk/eog-plugins.install)
===
--- gnome-unstable-x86_64/eog-plugins.install   (rev 0)
+++ gnome-unstable-x86_64/eog-plugins.install   2015-09-25 15:55:36 UTC (rev 
247457)
@@ -0,0 +1,11 @@
+post_install() {
+  usr/bin/glib-compile-schemas usr/share/glib-2.0/schemas
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}


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

2015-09-25 Thread Jan Steffens
Date: Friday, September 25, 2015 @ 17:54:46
  Author: heftig
Revision: 247456

3.16.1

Modified:
  eog-plugins/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-25 15:54:42 UTC (rev 247455)
+++ PKGBUILD2015-09-25 15:54:46 UTC (rev 247456)
@@ -2,8 +2,8 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgname=eog-plugins
-pkgver=3.16.0
-pkgrel=2
+pkgver=3.16.1
+pkgrel=1
 pkgdesc="Plugins for Eye of Gnome"
 arch=('i686' 'x86_64')
 url="https://wiki.gnome.org/Apps/EyeOfGnome/Plugins";
@@ -12,7 +12,7 @@
 makedepends=('intltool' 'gobject-introspection')
 install=eog-plugins.install
 
source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('6fab1c1e0705fc2b0e4a63caf3ba1c5b64b4eaa1301e4cbc04bb934428b68450')
+sha256sums=('c586b6708064dcd03612f9373a6160214b2fa4797bf8c07db530b18eda4074d9')
 
 build() {
   cd $pkgname-$pkgver


[arch-commits] Commit in gnome-sound-recorder/repos (3 files)

2015-09-25 Thread Jan Steffens
Date: Friday, September 25, 2015 @ 17:54:42
  Author: heftig
Revision: 247455

archrelease: copy trunk to gnome-unstable-any

Added:
  gnome-sound-recorder/repos/gnome-unstable-any/
  gnome-sound-recorder/repos/gnome-unstable-any/PKGBUILD
(from rev 247454, gnome-sound-recorder/trunk/PKGBUILD)
  gnome-sound-recorder/repos/gnome-unstable-any/gnome-sound-recorder.install
(from rev 247454, gnome-sound-recorder/trunk/gnome-sound-recorder.install)

--+
 PKGBUILD |   29 +
 gnome-sound-recorder.install |   12 
 2 files changed, 41 insertions(+)

Copied: gnome-sound-recorder/repos/gnome-unstable-any/PKGBUILD (from rev 
247454, gnome-sound-recorder/trunk/PKGBUILD)
===
--- gnome-unstable-any/PKGBUILD (rev 0)
+++ gnome-unstable-any/PKGBUILD 2015-09-25 15:54:42 UTC (rev 247455)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=gnome-sound-recorder
+pkgver=3.17.92
+pkgrel=1
+pkgdesc="A utility to make simple audio recording from your GNOME desktop"
+arch=(any)
+url="https://wiki.gnome.org/Design/Apps/SoundRecorder";
+license=(GPL2)
+depends=(gtk3 gjs gst-plugins-good gst-plugins-base)
+makedepends=(intltool gobject-introspection)
+install=gnome-sound-recorder.install
+groups=('gnome-extra')
+source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('1e4a5278e7e7ccef91a31e75610c189466cfe493e047c04faff7166c56143ef0')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: 
gnome-sound-recorder/repos/gnome-unstable-any/gnome-sound-recorder.install 
(from rev 247454, gnome-sound-recorder/trunk/gnome-sound-recorder.install)
===
--- gnome-unstable-any/gnome-sound-recorder.install 
(rev 0)
+++ gnome-unstable-any/gnome-sound-recorder.install 2015-09-25 15:54:42 UTC 
(rev 247455)
@@ -0,0 +1,12 @@
+post_install() {
+  glib-compile-schemas /usr/share/glib-2.0/schemas
+  gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}


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

2015-09-25 Thread Jan Steffens
Date: Friday, September 25, 2015 @ 17:54:24
  Author: heftig
Revision: 247454

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  libxml++/repos/gnome-unstable-i686/
  libxml++/repos/gnome-unstable-i686/PKGBUILD
(from rev 247453, libxml++/trunk/PKGBUILD)
  libxml++/repos/gnome-unstable-x86_64/
  libxml++/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 247453, libxml++/trunk/PKGBUILD)

+
 gnome-unstable-i686/PKGBUILD   |   38 ++
 gnome-unstable-x86_64/PKGBUILD |   38 ++
 2 files changed, 76 insertions(+)

Copied: libxml++/repos/gnome-unstable-i686/PKGBUILD (from rev 247453, 
libxml++/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2015-09-25 15:54:24 UTC (rev 247454)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: damir 
+
+pkgbase=libxml++
+pkgname=('libxml++' 'libxml++-docs')
+pkgver=2.40.0
+pkgrel=1
+arch=('i686' 'x86_64')
+license=('LGPL')
+url="http://libxmlplusplus.sourceforge.net/";
+makedepends=('pkgconfig' 'glibmm-docs' 'libxml2' 'glibmm')
+options=('!emptydirs')
+source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgbase}/${pkgver:0:4}/${pkgbase}-${pkgver}.tar.xz)
+sha256sums=('a7b9703203696972cae50436e150979ef187d9b03c95519bdd89623b4068162a')
+
+build() {
+  cd "${srcdir}/${pkgbase}-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+package_libxml++() {
+  pkgdesc="C++ bindings to libxml2"
+  depends=('libxml2' 'glibmm')
+  replaces=('libxml++2')
+  provides=("libxml++2=${pkgver}")
+  conflicts=('libxml++2')
+
+  cd "${srcdir}/${pkgbase}-${pkgver}"
+  make DESTDIR="${pkgdir}" install doc_subdirs=
+}
+
+package_libxml++-docs() {
+  pkgdesc="Developer documentation for libxml++"
+  depends=('glibmm-docs')
+  cd "${srcdir}/${pkgbase}-${pkgver}"
+  make DESTDIR="${pkgdir}" -C docs install
+}

Copied: libxml++/repos/gnome-unstable-x86_64/PKGBUILD (from rev 247453, 
libxml++/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2015-09-25 15:54:24 UTC (rev 247454)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: damir 
+
+pkgbase=libxml++
+pkgname=('libxml++' 'libxml++-docs')
+pkgver=2.40.0
+pkgrel=1
+arch=('i686' 'x86_64')
+license=('LGPL')
+url="http://libxmlplusplus.sourceforge.net/";
+makedepends=('pkgconfig' 'glibmm-docs' 'libxml2' 'glibmm')
+options=('!emptydirs')
+source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgbase}/${pkgver:0:4}/${pkgbase}-${pkgver}.tar.xz)
+sha256sums=('a7b9703203696972cae50436e150979ef187d9b03c95519bdd89623b4068162a')
+
+build() {
+  cd "${srcdir}/${pkgbase}-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+package_libxml++() {
+  pkgdesc="C++ bindings to libxml2"
+  depends=('libxml2' 'glibmm')
+  replaces=('libxml++2')
+  provides=("libxml++2=${pkgver}")
+  conflicts=('libxml++2')
+
+  cd "${srcdir}/${pkgbase}-${pkgver}"
+  make DESTDIR="${pkgdir}" install doc_subdirs=
+}
+
+package_libxml++-docs() {
+  pkgdesc="Developer documentation for libxml++"
+  depends=('glibmm-docs')
+  cd "${srcdir}/${pkgbase}-${pkgver}"
+  make DESTDIR="${pkgdir}" -C docs install
+}


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

2015-09-25 Thread Jan Steffens
Date: Friday, September 25, 2015 @ 17:53:47
  Author: heftig
Revision: 247453

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  gnome-maps/repos/gnome-unstable-i686/
  gnome-maps/repos/gnome-unstable-i686/PKGBUILD
(from rev 247452, gnome-maps/trunk/PKGBUILD)
  gnome-maps/repos/gnome-unstable-i686/gnome-maps.install
(from rev 247452, gnome-maps/trunk/gnome-maps.install)
  gnome-maps/repos/gnome-unstable-x86_64/
  gnome-maps/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 247452, gnome-maps/trunk/PKGBUILD)
  gnome-maps/repos/gnome-unstable-x86_64/gnome-maps.install
(from rev 247452, gnome-maps/trunk/gnome-maps.install)

--+
 gnome-unstable-i686/PKGBUILD |   27 +++
 gnome-unstable-i686/gnome-maps.install   |   12 
 gnome-unstable-x86_64/PKGBUILD   |   27 +++
 gnome-unstable-x86_64/gnome-maps.install |   12 
 4 files changed, 78 insertions(+)

Copied: gnome-maps/repos/gnome-unstable-i686/PKGBUILD (from rev 247452, 
gnome-maps/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2015-09-25 15:53:47 UTC (rev 247453)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=gnome-maps
+pkgver=3.18.0
+pkgrel=1
+pkgdesc="A simple GNOME 3 maps application"
+arch=(i686 x86_64)
+license=('GPL')
+url="https://live.gnome.org/Maps";
+depends=(geocode-glib geoclue2 gjs libchamplain gnome-themes-standard libgee 
folks gfbgraph)
+makedepends=(intltool gobject-introspection)
+groups=('gnome-extra')
+install=gnome-maps.install
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('242f70346a1527ba0d9a664bd863b02e2227f9f0f0f577b9b0c00dc3075eb85e')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --disable-schemas-compile
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make -j1 DESTDIR="${pkgdir}" install
+}

Copied: gnome-maps/repos/gnome-unstable-i686/gnome-maps.install (from rev 
247452, gnome-maps/trunk/gnome-maps.install)
===
--- gnome-unstable-i686/gnome-maps.install  (rev 0)
+++ gnome-unstable-i686/gnome-maps.install  2015-09-25 15:53:47 UTC (rev 
247453)
@@ -0,0 +1,12 @@
+post_install() {
+  glib-compile-schemas usr/share/glib-2.0/schemas
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Copied: gnome-maps/repos/gnome-unstable-x86_64/PKGBUILD (from rev 247452, 
gnome-maps/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2015-09-25 15:53:47 UTC (rev 247453)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=gnome-maps
+pkgver=3.18.0
+pkgrel=1
+pkgdesc="A simple GNOME 3 maps application"
+arch=(i686 x86_64)
+license=('GPL')
+url="https://live.gnome.org/Maps";
+depends=(geocode-glib geoclue2 gjs libchamplain gnome-themes-standard libgee 
folks gfbgraph)
+makedepends=(intltool gobject-introspection)
+groups=('gnome-extra')
+install=gnome-maps.install
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('242f70346a1527ba0d9a664bd863b02e2227f9f0f0f577b9b0c00dc3075eb85e')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --disable-schemas-compile
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make -j1 DESTDIR="${pkgdir}" install
+}

Copied: gnome-maps/repos/gnome-unstable-x86_64/gnome-maps.install (from rev 
247452, gnome-maps/trunk/gnome-maps.install)
===
--- gnome-unstable-x86_64/gnome-maps.install(rev 0)
+++ gnome-unstable-x86_64/gnome-maps.install2015-09-25 15:53:47 UTC (rev 
247453)
@@ -0,0 +1,12 @@
+post_install() {
+  glib-compile-schemas usr/share/glib-2.0/schemas
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}


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

2015-09-25 Thread Jan Steffens
Date: Friday, September 25, 2015 @ 17:53:17
  Author: heftig
Revision: 247452

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  sound-juicer/repos/gnome-unstable-i686/
  sound-juicer/repos/gnome-unstable-i686/PKGBUILD
(from rev 247451, sound-juicer/trunk/PKGBUILD)
  sound-juicer/repos/gnome-unstable-i686/sound-juicer.install
(from rev 247451, sound-juicer/trunk/sound-juicer.install)
  sound-juicer/repos/gnome-unstable-x86_64/
  sound-juicer/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 247451, sound-juicer/trunk/PKGBUILD)
  sound-juicer/repos/gnome-unstable-x86_64/sound-juicer.install
(from rev 247451, sound-juicer/trunk/sound-juicer.install)

+
 gnome-unstable-i686/PKGBUILD   |   30 +++
 gnome-unstable-i686/sound-juicer.install   |   18 
 gnome-unstable-x86_64/PKGBUILD |   30 +++
 gnome-unstable-x86_64/sound-juicer.install |   18 
 4 files changed, 96 insertions(+)

Copied: sound-juicer/repos/gnome-unstable-i686/PKGBUILD (from rev 247451, 
sound-juicer/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2015-09-25 15:53:17 UTC (rev 247452)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+# Contributor: Ben 
+
+pkgname=sound-juicer
+pkgver=3.18.0
+pkgrel=1
+pkgdesc="A cd ripper application"
+arch=(i686 x86_64)
+license=(GPL)
+depends=(libmusicbrainz5 libdiscid gtk3 gst-plugins-base gst-plugins-good 
brasero hicolor-icon-theme iso-codes)
+makedepends=(intltool itstool)
+options=(!emptydirs)
+url="http://www.gnome.org";
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+install=sound-juicer.install
+sha256sums=('0525cfcdf76379d7aa5255fae2cde9e44ad0a24b12ac953d4fbc3dc55dfab048')
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}

Copied: sound-juicer/repos/gnome-unstable-i686/sound-juicer.install (from rev 
247451, sound-juicer/trunk/sound-juicer.install)
===
--- gnome-unstable-i686/sound-juicer.install(rev 0)
+++ gnome-unstable-i686/sound-juicer.install2015-09-25 15:53:17 UTC (rev 
247452)
@@ -0,0 +1,18 @@
+post_install() {
+  glib-compile-schemas /usr/share/glib-2.0/schemas
+  update-desktop-database -q
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+pre_upgrade() {
+  (( $(vercmp $2 3.12.0) < 0 )) && gconfpkg --uninstall sound-juicer
+  return 0
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Copied: sound-juicer/repos/gnome-unstable-x86_64/PKGBUILD (from rev 247451, 
sound-juicer/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2015-09-25 15:53:17 UTC (rev 247452)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+# Contributor: Ben 
+
+pkgname=sound-juicer
+pkgver=3.18.0
+pkgrel=1
+pkgdesc="A cd ripper application"
+arch=(i686 x86_64)
+license=(GPL)
+depends=(libmusicbrainz5 libdiscid gtk3 gst-plugins-base gst-plugins-good 
brasero hicolor-icon-theme iso-codes)
+makedepends=(intltool itstool)
+options=(!emptydirs)
+url="http://www.gnome.org";
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+install=sound-juicer.install
+sha256sums=('0525cfcdf76379d7aa5255fae2cde9e44ad0a24b12ac953d4fbc3dc55dfab048')
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}

Copied: sound-juicer/repos/gnome-unstable-x86_64/sound-juicer.install (from rev 
247451, sound-juicer/trunk/sound-juicer.install)
===
--- gnome-unstable-x86_64/sound-juicer.install  (rev 0)
+++ gnome-unstable-x86_64/sound-juicer.install  2015-09-25 15:53:17 UTC (rev 
247452)
@@ -0,0 +1,18 @@
+post_install() {
+  glib-compile-schemas /usr/share/glib-2.0/schemas
+  update-desktop-database -q
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+pre_upgrade() {
+  (( $(vercmp $2 3.12.0) < 0 )) && gconfpkg --uninstall sound-juicer
+  return 0
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}


[arch-commits] Commit in gnome-power-manager/repos (6 files)

2015-09-25 Thread Jan Steffens
Date: Friday, September 25, 2015 @ 17:52:45
  Author: heftig
Revision: 247451

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  gnome-power-manager/repos/gnome-unstable-i686/
  gnome-power-manager/repos/gnome-unstable-i686/PKGBUILD
(from rev 247450, gnome-power-manager/trunk/PKGBUILD)
  gnome-power-manager/repos/gnome-unstable-i686/gnome-power-manager.install
(from rev 247450, gnome-power-manager/trunk/gnome-power-manager.install)
  gnome-power-manager/repos/gnome-unstable-x86_64/
  gnome-power-manager/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 247450, gnome-power-manager/trunk/PKGBUILD)
  gnome-power-manager/repos/gnome-unstable-x86_64/gnome-power-manager.install
(from rev 247450, gnome-power-manager/trunk/gnome-power-manager.install)

---+
 gnome-unstable-i686/PKGBUILD  |   31 
 gnome-unstable-i686/gnome-power-manager.install   |   12 +++
 gnome-unstable-x86_64/PKGBUILD|   31 
 gnome-unstable-x86_64/gnome-power-manager.install |   12 +++
 4 files changed, 86 insertions(+)

Copied: gnome-power-manager/repos/gnome-unstable-i686/PKGBUILD (from rev 
247450, gnome-power-manager/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2015-09-25 15:52:45 UTC (rev 247451)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgname=gnome-power-manager
+pkgver=3.18.0
+pkgrel=1
+pkgdesc="System power information and statistics"
+arch=(i686 x86_64)
+url="http://www.gnome.org/projects/gnome-power-manager/";
+license=(GPL)
+depends=(gtk3 upower dconf hicolor-icon-theme)
+makedepends=(intltool)
+options=(!emptydirs)
+install=gnome-power-manager.install
+source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgname}/${pkgver:0:4}/${pkgname}-${pkgver}.tar.xz)
+sha256sums=('afe5921a4313d15757f39f6ff4ec6f7c9e9cbb9b2aaa0b8a290e1cd7557e28f0')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var \
+  --libexecdir=/usr/lib/gnome-power-manager \
+  --disable-schemas-compile
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Copied: 
gnome-power-manager/repos/gnome-unstable-i686/gnome-power-manager.install (from 
rev 247450, gnome-power-manager/trunk/gnome-power-manager.install)
===
--- gnome-unstable-i686/gnome-power-manager.install 
(rev 0)
+++ gnome-unstable-i686/gnome-power-manager.install 2015-09-25 15:52:45 UTC 
(rev 247451)
@@ -0,0 +1,12 @@
+post_install() {
+  glib-compile-schemas /usr/share/glib-2.0/schemas
+  gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Copied: gnome-power-manager/repos/gnome-unstable-x86_64/PKGBUILD (from rev 
247450, gnome-power-manager/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2015-09-25 15:52:45 UTC (rev 247451)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgname=gnome-power-manager
+pkgver=3.18.0
+pkgrel=1
+pkgdesc="System power information and statistics"
+arch=(i686 x86_64)
+url="http://www.gnome.org/projects/gnome-power-manager/";
+license=(GPL)
+depends=(gtk3 upower dconf hicolor-icon-theme)
+makedepends=(intltool)
+options=(!emptydirs)
+install=gnome-power-manager.install
+source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgname}/${pkgver:0:4}/${pkgname}-${pkgver}.tar.xz)
+sha256sums=('afe5921a4313d15757f39f6ff4ec6f7c9e9cbb9b2aaa0b8a290e1cd7557e28f0')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var \
+  --libexecdir=/usr/lib/gnome-power-manager \
+  --disable-schemas-compile
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Copied: 
gnome-power-manager/repos/gnome-unstable-x86_64/gnome-power-manager.install 
(from rev 247450, gnome-power-manager/trunk/gnome-power-manager.install)
===
--- gnome-unstable-x86_64/gnome-power-manager.install   
(rev 0)
+++ gnome-unstable-x86_64/gnome-power-manager.install   2015-09-25 15:52:45 UTC 
(rev 247451)
@@ -0,0 +1,12 @@
+post_install() {
+  glib-compile-schemas /usr/share/glib-2.0/schemas
+  gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}


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

2015-09-25 Thread Jan Steffens
Date: Friday, September 25, 2015 @ 17:52:09
  Author: heftig
Revision: 247449

2.40.0

Modified:
  libxml++/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-25 15:50:59 UTC (rev 247448)
+++ PKGBUILD2015-09-25 15:52:09 UTC (rev 247449)
@@ -3,7 +3,7 @@
 
 pkgbase=libxml++
 pkgname=('libxml++' 'libxml++-docs')
-pkgver=2.38.1
+pkgver=2.40.0
 pkgrel=1
 arch=('i686' 'x86_64')
 license=('LGPL')
@@ -11,7 +11,7 @@
 makedepends=('pkgconfig' 'glibmm-docs' 'libxml2' 'glibmm')
 options=('!emptydirs')
 
source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgbase}/${pkgver:0:4}/${pkgbase}-${pkgver}.tar.xz)
-sha256sums=('882529189b03db6c69925b3f579ab1941feb4f02b5fe2612504ee7e498a4a05f')
+sha256sums=('a7b9703203696972cae50436e150979ef187d9b03c95519bdd89623b4068162a')
 
 build() {
   cd "${srcdir}/${pkgbase}-${pkgver}"
@@ -27,8 +27,7 @@
   conflicts=('libxml++2')
 
   cd "${srcdir}/${pkgbase}-${pkgver}"
-  sed -i -e 's/install-data-am: install-data-local 
install-dist_referenceDATA/install-data-am: /' Makefile
-  make DESTDIR="${pkgdir}" install
+  make DESTDIR="${pkgdir}" install doc_subdirs=
 }
 
 package_libxml++-docs() {
@@ -35,5 +34,5 @@
   pkgdesc="Developer documentation for libxml++"
   depends=('glibmm-docs')
   cd "${srcdir}/${pkgbase}-${pkgver}"
-  make DESTDIR="${pkgdir}" install-data-local install-dist_referenceDATA
+  make DESTDIR="${pkgdir}" -C docs install
 }


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

2015-09-25 Thread Jan Steffens
Date: Friday, September 25, 2015 @ 17:52:17
  Author: heftig
Revision: 247450

3.17.92

Modified:
  gnome-sound-recorder/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-25 15:52:09 UTC (rev 247449)
+++ PKGBUILD2015-09-25 15:52:17 UTC (rev 247450)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot 
 
 pkgname=gnome-sound-recorder
-pkgver=3.16.0
+pkgver=3.17.92
 pkgrel=1
 pkgdesc="A utility to make simple audio recording from your GNOME desktop"
 arch=(any)
@@ -13,7 +13,7 @@
 install=gnome-sound-recorder.install
 groups=('gnome-extra')
 
source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('9af4935a8007810f750b40039a77cc762c260cb554339c1fc13e6ee52f6a1c04')
+sha256sums=('1e4a5278e7e7ccef91a31e75610c189466cfe493e047c04faff7166c56143ef0')
 
 build() {
   cd $pkgname-$pkgver


  1   2   3   >