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

2016-04-12 Thread Felix Yan
Date: Wednesday, April 13, 2016 @ 07:32:20
  Author: fyan
Revision: 170807

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-04-13 05:31:59 UTC (rev 170806)
+++ PKGBUILD2016-04-13 05:32:20 UTC (rev 170807)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgbase=python-betamax
-pkgname=('python-betamax' 'python2-betamax')
-pkgver=0.5.1
-pkgrel=1
-pkgdesc="A VCR imitation for python-requests"
-arch=('any')
-license=('GPL')
-url='https://github.com/sigmavirus24/betamax'
-makedepends=('python-setuptools' 'python2-setuptools' 'python-requests' 
'python2-requests' 'git')
-checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'python2-mock')
-source=("git+https://github.com/sigmavirus24/betamax.git#tag=$pkgver;)
-md5sums=('SKIP')
-
-prepare() {
-  cp -a betamax{,-py2}
-}
-
-check() {
-  # Failure about isinstance urllib3.response.HTTPResponse affects only tests.
-  # We need to investigate it more.
-
-  cd "$srcdir/betamax"
-  python setup.py ptr || warning "Tests failed"
-
-  cd "$srcdir/betamax-py2"
-  python2 setup.py ptr || warning "Tests failed"
-}
-
-package_python-betamax() {
-  depends=('python-requests')
-
-  cd "${srcdir}/betamax"
-  python setup.py install --root="${pkgdir}" --optimize=1
-  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-package_python2-betamax() {
-  depends=('python2-requests')
-
-  cd "${srcdir}/betamax-py2"
-  python2 setup.py install --root="${pkgdir}" --optimize=1
-  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: python-betamax/repos/community-any/PKGBUILD (from rev 170806, 
python-betamax/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-04-13 05:32:20 UTC (rev 170807)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-betamax
+pkgname=('python-betamax' 'python2-betamax')
+pkgver=0.6.0
+pkgrel=1
+pkgdesc="A VCR imitation for python-requests"
+arch=('any')
+license=('GPL')
+url='https://github.com/sigmavirus24/betamax'
+makedepends=('python-setuptools' 'python2-setuptools' 'python-requests' 
'python2-requests' 'git')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'python2-mock')
+source=("git+https://github.com/sigmavirus24/betamax.git#tag=$pkgver;)
+md5sums=('SKIP')
+
+prepare() {
+  cp -a betamax{,-py2}
+}
+
+check() {
+  # Failure about isinstance urllib3.response.HTTPResponse affects only tests.
+  # We need to investigate it more.
+
+  cd "$srcdir"/betamax
+  python setup.py ptr || warning "Tests failed"
+
+  cd "$srcdir"/betamax-py2
+  python2 setup.py ptr || warning "Tests failed"
+}
+
+package_python-betamax() {
+  depends=('python-requests')
+
+  cd betamax
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-betamax() {
+  depends=('python2-requests')
+
+  cd betamax-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2016-04-12 Thread Felix Yan
Date: Wednesday, April 13, 2016 @ 07:31:59
  Author: fyan
Revision: 170806

upgpkg: python-betamax 0.6.0-1

Modified:
  python-betamax/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-13 04:57:08 UTC (rev 170805)
+++ PKGBUILD2016-04-13 05:31:59 UTC (rev 170806)
@@ -3,7 +3,7 @@
 
 pkgbase=python-betamax
 pkgname=('python-betamax' 'python2-betamax')
-pkgver=0.5.1
+pkgver=0.6.0
 pkgrel=1
 pkgdesc="A VCR imitation for python-requests"
 arch=('any')
@@ -22,10 +22,10 @@
   # Failure about isinstance urllib3.response.HTTPResponse affects only tests.
   # We need to investigate it more.
 
-  cd "$srcdir/betamax"
+  cd "$srcdir"/betamax
   python setup.py ptr || warning "Tests failed"
 
-  cd "$srcdir/betamax-py2"
+  cd "$srcdir"/betamax-py2
   python2 setup.py ptr || warning "Tests failed"
 }
 
@@ -32,15 +32,15 @@
 package_python-betamax() {
   depends=('python-requests')
 
-  cd "${srcdir}/betamax"
-  python setup.py install --root="${pkgdir}" --optimize=1
-  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  cd betamax
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 }
 
 package_python2-betamax() {
   depends=('python2-requests')
 
-  cd "${srcdir}/betamax-py2"
-  python2 setup.py install --root="${pkgdir}" --optimize=1
-  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  cd betamax-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 }


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

2016-04-12 Thread Sven-Hendrik Haase
Date: Wednesday, April 13, 2016 @ 06:57:08
  Author: svenstaro
Revision: 170805

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

Added:
  glslang/repos/community-i686/
  glslang/repos/community-i686/PKGBUILD
(from rev 170804, glslang/trunk/PKGBUILD)
  glslang/repos/community-x86_64/
  glslang/repos/community-x86_64/PKGBUILD
(from rev 170804, glslang/trunk/PKGBUILD)

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

Copied: glslang/repos/community-i686/PKGBUILD (from rev 170804, 
glslang/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-04-13 04:57:08 UTC (rev 170805)
@@ -0,0 +1,26 @@
+# Maintainer: Sven-Hendrik Haase 
+pkgname=glslang
+_gitver=e1cd410
+pkgver=3.0.git.${_gitver}
+pkgrel=1
+pkgdesc='An OpenGL and OpenGL ES shader front end and validator'
+arch=('x86_64' 'i686')
+url='https://github.com/KhronosGroup/glslang'
+license=('BSD')
+depends=('gcc-libs')
+makedepends=('cmake' 'git')
+source=("git://github.com/KhronosGroup/glslang.git#commit=${_gitver}")
+sha256sums=('SKIP')
+
+build() {
+   cd "${srcdir}/${pkgname}"
+
+mkdir build && cd build
+   cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}/build"
+   make DESTDIR="${pkgdir}" install
+}

Copied: glslang/repos/community-x86_64/PKGBUILD (from rev 170804, 
glslang/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-04-13 04:57:08 UTC (rev 170805)
@@ -0,0 +1,26 @@
+# Maintainer: Sven-Hendrik Haase 
+pkgname=glslang
+_gitver=e1cd410
+pkgver=3.0.git.${_gitver}
+pkgrel=1
+pkgdesc='An OpenGL and OpenGL ES shader front end and validator'
+arch=('x86_64' 'i686')
+url='https://github.com/KhronosGroup/glslang'
+license=('BSD')
+depends=('gcc-libs')
+makedepends=('cmake' 'git')
+source=("git://github.com/KhronosGroup/glslang.git#commit=${_gitver}")
+sha256sums=('SKIP')
+
+build() {
+   cd "${srcdir}/${pkgname}"
+
+mkdir build && cd build
+   cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}/build"
+   make DESTDIR="${pkgdir}" install
+}


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

2016-04-12 Thread Sven-Hendrik Haase
Date: Wednesday, April 13, 2016 @ 06:56:36
  Author: svenstaro
Revision: 170804

Add glslang as an optdep of vulkan

Added:
  glslang/
  glslang/repos/
  glslang/trunk/
  glslang/trunk/PKGBUILD

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

Added: glslang/trunk/PKGBUILD
===
--- glslang/trunk/PKGBUILD  (rev 0)
+++ glslang/trunk/PKGBUILD  2016-04-13 04:56:36 UTC (rev 170804)
@@ -0,0 +1,26 @@
+# Maintainer: Sven-Hendrik Haase 
+pkgname=glslang
+_gitver=e1cd410
+pkgver=3.0.git.${_gitver}
+pkgrel=1
+pkgdesc='An OpenGL and OpenGL ES shader front end and validator'
+arch=('x86_64' 'i686')
+url='https://github.com/KhronosGroup/glslang'
+license=('BSD')
+depends=('gcc-libs')
+makedepends=('cmake' 'git')
+source=("git://github.com/KhronosGroup/glslang.git#commit=${_gitver}")
+sha256sums=('SKIP')
+
+build() {
+   cd "${srcdir}/${pkgname}"
+
+mkdir build && cd build
+   cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}/build"
+   make DESTDIR="${pkgdir}" install
+}


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

2016-04-12 Thread Jan Steffens
Date: Wednesday, April 13, 2016 @ 06:44:53
  Author: heftig
Revision: 264812

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

Added:
  firefox/repos/extra-i686/PKGBUILD
(from rev 264811, firefox/trunk/PKGBUILD)
  firefox/repos/extra-i686/firefox-fixed-loading-icon.png
(from rev 264811, firefox/trunk/firefox-fixed-loading-icon.png)
  firefox/repos/extra-i686/firefox-gtk3-20.patch
(from rev 264811, firefox/trunk/firefox-gtk3-20.patch)
  firefox/repos/extra-i686/firefox-install-dir.patch
(from rev 264811, firefox/trunk/firefox-install-dir.patch)
  firefox/repos/extra-i686/firefox-symbolic.svg
(from rev 264811, firefox/trunk/firefox-symbolic.svg)
  firefox/repos/extra-i686/firefox.desktop
(from rev 264811, firefox/trunk/firefox.desktop)
  firefox/repos/extra-i686/firefox.install
(from rev 264811, firefox/trunk/firefox.install)
  firefox/repos/extra-i686/mozconfig
(from rev 264811, firefox/trunk/mozconfig)
  firefox/repos/extra-i686/no-libnotify.patch
(from rev 264811, firefox/trunk/no-libnotify.patch)
  firefox/repos/extra-i686/vendor.js
(from rev 264811, firefox/trunk/vendor.js)
  firefox/repos/extra-x86_64/PKGBUILD
(from rev 264811, firefox/trunk/PKGBUILD)
  firefox/repos/extra-x86_64/firefox-fixed-loading-icon.png
(from rev 264811, firefox/trunk/firefox-fixed-loading-icon.png)
  firefox/repos/extra-x86_64/firefox-gtk3-20.patch
(from rev 264811, firefox/trunk/firefox-gtk3-20.patch)
  firefox/repos/extra-x86_64/firefox-install-dir.patch
(from rev 264811, firefox/trunk/firefox-install-dir.patch)
  firefox/repos/extra-x86_64/firefox-symbolic.svg
(from rev 264811, firefox/trunk/firefox-symbolic.svg)
  firefox/repos/extra-x86_64/firefox.desktop
(from rev 264811, firefox/trunk/firefox.desktop)
  firefox/repos/extra-x86_64/firefox.install
(from rev 264811, firefox/trunk/firefox.install)
  firefox/repos/extra-x86_64/mozconfig
(from rev 264811, firefox/trunk/mozconfig)
  firefox/repos/extra-x86_64/no-libnotify.patch
(from rev 264811, firefox/trunk/no-libnotify.patch)
  firefox/repos/extra-x86_64/vendor.js
(from rev 264811, firefox/trunk/vendor.js)
Deleted:
  firefox/repos/extra-i686/PKGBUILD
  firefox/repos/extra-i686/firefox-fixed-loading-icon.png
  firefox/repos/extra-i686/firefox-gtk3-20.patch
  firefox/repos/extra-i686/firefox-install-dir.patch
  firefox/repos/extra-i686/firefox-symbolic.svg
  firefox/repos/extra-i686/firefox.desktop
  firefox/repos/extra-i686/firefox.install
  firefox/repos/extra-i686/mozconfig
  firefox/repos/extra-i686/no-libnotify.patch
  firefox/repos/extra-i686/vendor.js
  firefox/repos/extra-x86_64/PKGBUILD
  firefox/repos/extra-x86_64/firefox-fixed-loading-icon.png
  firefox/repos/extra-x86_64/firefox-gtk3-20.patch
  firefox/repos/extra-x86_64/firefox-install-dir.patch
  firefox/repos/extra-x86_64/firefox-symbolic.svg
  firefox/repos/extra-x86_64/firefox.desktop
  firefox/repos/extra-x86_64/firefox.install
  firefox/repos/extra-x86_64/mozconfig
  firefox/repos/extra-x86_64/no-libnotify.patch
  firefox/repos/extra-x86_64/vendor.js

+
 /PKGBUILD  |  272 ++
 /firefox-gtk3-20.patch | 3276 +++
 /firefox-install-dir.patch |   24 
 /firefox-symbolic.svg  |   60 
 /firefox.desktop   |  704 ++
 /firefox.install   |   26 
 /mozconfig |   78 
 /no-libnotify.patch|  102 
 /vendor.js |   18 
 extra-i686/PKGBUILD|  136 -
 extra-i686/firefox-gtk3-20.patch   | 1638 ---
 extra-i686/firefox-install-dir.patch   |   12 
 extra-i686/firefox-symbolic.svg|   30 
 extra-i686/firefox.desktop |  352 ---
 extra-i686/firefox.install |   13 
 extra-i686/mozconfig   |   39 
 extra-i686/no-libnotify.patch  |   51 
 extra-i686/vendor.js   |9 
 extra-x86_64/PKGBUILD  |  136 -
 extra-x86_64/firefox-gtk3-20.patch | 1638 ---
 extra-x86_64/firefox-install-dir.patch |   12 
 extra-x86_64/firefox-symbolic.svg  |   30 
 extra-x86_64/firefox.desktop   |  352 ---
 extra-x86_64/firefox.install   |   13 
 extra-x86_64/mozconfig |   39 
 extra-x86_64/no-libnotify.patch|   51 
 extra-x86_64/vendor.js |9 
 27 files changed, 4560 insertions(+), 4560 deletions(-)

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


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

2016-04-12 Thread Eric Bélanger
Date: Wednesday, April 13, 2016 @ 04:39:26
  Author: eric
Revision: 264811

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

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

---+
 /PKGBUILD |   74 
 /bluefish.install |   56 ++
 extra-i686/PKGBUILD   |   37 
 extra-i686/bluefish.install   |   28 ---
 extra-x86_64/PKGBUILD |   37 
 extra-x86_64/bluefish.install |   28 ---
 6 files changed, 130 insertions(+), 130 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-04-13 02:36:49 UTC (rev 264810)
+++ extra-i686/PKGBUILD 2016-04-13 02:39:26 UTC (rev 264811)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgname=bluefish
-pkgver=2.2.7
-pkgrel=1
-pkgdesc="A powerful HTML editor for experienced web designers and programmers"
-arch=('i686' 'x86_64')
-url="http://bluefish.openoffice.nl/;
-license=('GPL3')
-depends=('gtk3' 'enchant' 'python2' 'desktop-file-utils')
-makedepends=('gucharmap' 'intltool')
-optdepends=('gucharmap: for using the charmap plugin')
-install=bluefish.install
-source=(http://www.bennewitz.com/bluefish/stable/source/bluefish-${pkgver}.tar.bz2{,.sig})
-sha1sums=('132ec9e3b05d34c35c42beda640e726c81b948a9'
-  'SKIP')
-validpgpkeys=('58FD02766D031E832560A6A226073EFCDAC576E6')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  sed -i 's|/usr/bin/env python|/usr/bin/env python2|' \
-src/plugin_zencoding/zencoding/{,filters/,actions/}*.py \
-data/{cssmin.py,jsbeautify,jsmin.py,lorem-ipsum-generator}
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-  PYTHON=/usr/bin/python2 ./configure --prefix=/usr --sysconfdir=/etc 
--localstatedir=/var \
---enable-spell-check --disable-update-databases 
--disable-xml-catalog-update
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-}

Copied: bluefish/repos/extra-i686/PKGBUILD (from rev 264810, 
bluefish/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-04-13 02:39:26 UTC (rev 264811)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=bluefish
+pkgver=2.2.8
+pkgrel=1
+pkgdesc="A powerful HTML editor for experienced web designers and programmers"
+arch=('i686' 'x86_64')
+url="http://bluefish.openoffice.nl/;
+license=('GPL3')
+depends=('gtk3' 'enchant' 'python2' 'desktop-file-utils')
+makedepends=('gucharmap' 'intltool')
+optdepends=('gucharmap: for using the charmap plugin')
+install=bluefish.install
+source=(http://www.bennewitz.com/bluefish/stable/source/bluefish-${pkgver}.tar.bz2{,.sig})
+sha1sums=('b27ea534f4b7c9675f80932f799120d3d9c75b3d'
+  'SKIP')
+validpgpkeys=('58FD02766D031E832560A6A226073EFCDAC576E6')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  sed -i 's|/usr/bin/env python|/usr/bin/env python2|' \
+src/plugin_zencoding/zencoding/{,filters/,actions/}*.py \
+data/{jsbeautify,jsmin.py,lorem-ipsum-generator}
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  PYTHON=/usr/bin/python2 ./configure --prefix=/usr --sysconfdir=/etc 
--localstatedir=/var \
+--enable-spell-check --disable-update-databases 
--disable-xml-catalog-update
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-i686/bluefish.install
===
--- extra-i686/bluefish.install 2016-04-13 02:36:49 UTC (rev 264810)
+++ extra-i686/bluefish.install 2016-04-13 02:39:26 UTC (rev 264811)
@@ -1,28 +0,0 @@
-post_install() {
-  if [ ! -d etc/xml ]; then
-mkdir -p etc/xml
-  fi
-  if [ ! -e etc/xml/catalog ]; then
-xmlcatalog --noout --create etc/xml/catalog
-  fi
-  xmlcatalog --noout --add 'delegateURI' \
-'http://bluefish.openoffice.nl/ns/bflang/2.0/' /usr/share/xml/bluefish \
-etc/xml/catalog
-
-  update-desktop-database -q
-  update-mime-database usr/share/mime > /dev/null
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor   
-}
-
-pre_upgrade() {
-  post_remove
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  xmlcatalog --noout --del \
-/usr/share/xml/bluefish etc/xml/catalog
-}

Copied: 

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

2016-04-12 Thread Eric Bélanger
Date: Wednesday, April 13, 2016 @ 04:36:49
  Author: eric
Revision: 264810

upgpkg: bluefish 2.2.8-1

Upstream update

Modified:
  bluefish/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-13 00:33:43 UTC (rev 264809)
+++ PKGBUILD2016-04-13 02:36:49 UTC (rev 264810)
@@ -2,7 +2,7 @@
 # Maintainer: Eric Bélanger 
 
 pkgname=bluefish
-pkgver=2.2.7
+pkgver=2.2.8
 pkgrel=1
 pkgdesc="A powerful HTML editor for experienced web designers and programmers"
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 optdepends=('gucharmap: for using the charmap plugin')
 install=bluefish.install
 
source=(http://www.bennewitz.com/bluefish/stable/source/bluefish-${pkgver}.tar.bz2{,.sig})
-sha1sums=('132ec9e3b05d34c35c42beda640e726c81b948a9'
+sha1sums=('b27ea534f4b7c9675f80932f799120d3d9c75b3d'
   'SKIP')
 validpgpkeys=('58FD02766D031E832560A6A226073EFCDAC576E6')
 
@@ -21,7 +21,7 @@
   cd ${pkgname}-${pkgver}
   sed -i 's|/usr/bin/env python|/usr/bin/env python2|' \
 src/plugin_zencoding/zencoding/{,filters/,actions/}*.py \
-data/{cssmin.py,jsbeautify,jsmin.py,lorem-ipsum-generator}
+data/{jsbeautify,jsmin.py,lorem-ipsum-generator}
 }
 
 build() {


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

2016-04-12 Thread Jan Steffens
Date: Wednesday, April 13, 2016 @ 02:33:43
  Author: heftig
Revision: 264809

45.0.2-1

Modified:
  firefox/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-12 22:33:13 UTC (rev 264808)
+++ PKGBUILD2016-04-13 00:33:43 UTC (rev 264809)
@@ -3,8 +3,8 @@
 # Contributor: Jakub Schmidtke 
 
 pkgname=firefox
-pkgver=45.0.1
-pkgrel=5
+pkgver=45.0.2
+pkgrel=1
 pkgdesc="Standalone web browser from mozilla.org"
 arch=('i686' 'x86_64')
 license=('MPL' 'GPL' 'LGPL')
@@ -27,7 +27,7 @@
 firefox-fixed-loading-icon.png
 firefox-gtk3-20.patch
 no-libnotify.patch)
-sha256sums=('d1814ac6d8cd687696bd0d98da3bb525f6df11fe655e0d668742b21fca57d9c8'
+sha256sums=('a6b09bac0390d4e48b752026ec1aaa934332dee31fb3ff3ca59f8209f4217a53'
 'a7a5dffa8df27a8f4d1e034c5fc10b39d69068be92ee3f40e8ee7980a68655a6'
 'c202e5e18da1eeddd2e1d81cb3436813f11e44585ca7357c4c5f1bddd4bec826'
 'd86e41d87363656ee62e12543e2f5181aadcff448e406ef3218e91865ae775cd'


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

2016-04-12 Thread Jan Steffens
Date: Wednesday, April 13, 2016 @ 00:33:13
  Author: heftig
Revision: 264808

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

Added:
  file-roller/repos/extra-i686/PKGBUILD
(from rev 264807, file-roller/trunk/PKGBUILD)
  file-roller/repos/extra-i686/file-roller.install
(from rev 264807, file-roller/trunk/file-roller.install)
  file-roller/repos/extra-x86_64/PKGBUILD
(from rev 264807, file-roller/trunk/PKGBUILD)
  file-roller/repos/extra-x86_64/file-roller.install
(from rev 264807, file-roller/trunk/file-roller.install)
Deleted:
  file-roller/repos/extra-i686/PKGBUILD
  file-roller/repos/extra-i686/file-roller.install
  file-roller/repos/extra-x86_64/PKGBUILD
  file-roller/repos/extra-x86_64/file-roller.install

--+
 /PKGBUILD|   76 +
 /file-roller.install |   26 
 extra-i686/PKGBUILD  |   38 --
 extra-i686/file-roller.install   |   13 --
 extra-x86_64/PKGBUILD|   38 --
 extra-x86_64/file-roller.install |   13 --
 6 files changed, 102 insertions(+), 102 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-04-12 22:32:08 UTC (rev 264807)
+++ extra-i686/PKGBUILD 2016-04-12 22:33:13 UTC (rev 264808)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-
-pkgname=file-roller
-pkgver=3.20.0
-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')
-groups=('gnome-extra')
-options=('!emptydirs')
-install=file-roller.install
-url="http://www.gnome.org;
-source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('185a99b2fc6bcfa21988af36c70def4c519931443015accff40db6ef3f4aa5a8')
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --libexecdir=/usr/lib/file-roller \
-  --localstatedir=/var --disable-static \
-  --disable-schemas-compile
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: file-roller/repos/extra-i686/PKGBUILD (from rev 264807, 
file-roller/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-04-12 22:33:13 UTC (rev 264808)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgname=file-roller
+pkgver=3.20.1
+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')
+groups=('gnome-extra')
+options=('!emptydirs')
+install=file-roller.install
+url="http://www.gnome.org;
+source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('c8b3db59ae12d0efde2e8e28d0cb475508ffc33bf08aa5194fbf5f702b6aa333')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --libexecdir=/usr/lib/file-roller \
+  --localstatedir=/var --disable-static \
+  --disable-schemas-compile
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-i686/file-roller.install
===
--- extra-i686/file-roller.install  2016-04-12 22:32:08 UTC (rev 264807)
+++ extra-i686/file-roller.install  2016-04-12 22:33:13 UTC (rev 264808)
@@ -1,13 +0,0 @@
-post_install() {
-glib-compile-schemas /usr/share/glib-2.0/schemas
-update-desktop-database -q
-gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-post_install
-}

Copied: file-roller/repos/extra-i686/file-roller.install (from rev 264807, 
file-roller/trunk/file-roller.install)

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

2016-04-12 Thread Jan Steffens
Date: Wednesday, April 13, 2016 @ 00:32:08
  Author: heftig
Revision: 264807

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

Added:
  gnome-system-monitor/repos/extra-i686/PKGBUILD
(from rev 264806, gnome-system-monitor/trunk/PKGBUILD)
  gnome-system-monitor/repos/extra-i686/gnome-system-monitor.install
(from rev 264806, gnome-system-monitor/trunk/gnome-system-monitor.install)
  gnome-system-monitor/repos/extra-x86_64/PKGBUILD
(from rev 264806, gnome-system-monitor/trunk/PKGBUILD)
  gnome-system-monitor/repos/extra-x86_64/gnome-system-monitor.install
(from rev 264806, gnome-system-monitor/trunk/gnome-system-monitor.install)
Deleted:
  gnome-system-monitor/repos/extra-i686/PKGBUILD
  gnome-system-monitor/repos/extra-i686/gnome-system-monitor.install
  gnome-system-monitor/repos/extra-x86_64/PKGBUILD
  gnome-system-monitor/repos/extra-x86_64/gnome-system-monitor.install

---+
 /PKGBUILD |   60 
 /gnome-system-monitor.install |   22 ++
 extra-i686/PKGBUILD   |   30 --
 extra-i686/gnome-system-monitor.install   |   11 -
 extra-x86_64/PKGBUILD |   30 --
 extra-x86_64/gnome-system-monitor.install |   11 -
 6 files changed, 82 insertions(+), 82 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-04-12 22:31:12 UTC (rev 264806)
+++ extra-i686/PKGBUILD 2016-04-12 22:32:08 UTC (rev 264807)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-
-pkgname=gnome-system-monitor
-pkgver=3.20.0
-pkgrel=1
-pkgdesc="A system monitor for GNOME"
-arch=(i686 x86_64)
-license=('GPL')
-depends=('libgtop' 'gtkmm3' 'librsvg' 'systemd' 'libwnck3')
-makedepends=('itstool' 'docbook-xsl' 'intltool' 'desktop-file-utils' 
'appdata-tools')
-options=(!emptydirs)
-url="http://www.gnome.org;
-groups=('gnome')
-install=gnome-system-monitor.install
-source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('00981b6334ab35cfa186013f1ea0f815bc472c49da4b6764dd716f87e4b49033')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---libexecdir=/usr/lib/$pkgname --enable-systemd --enable-wnck
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: gnome-system-monitor/repos/extra-i686/PKGBUILD (from rev 264806, 
gnome-system-monitor/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-04-12 22:32:08 UTC (rev 264807)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgname=gnome-system-monitor
+pkgver=3.20.1
+pkgrel=1
+pkgdesc="A system monitor for GNOME"
+arch=(i686 x86_64)
+license=('GPL')
+depends=('libgtop' 'gtkmm3' 'librsvg' 'systemd' 'libwnck3')
+makedepends=('itstool' 'docbook-xsl' 'intltool' 'desktop-file-utils' 
'appdata-tools')
+options=(!emptydirs)
+url="http://www.gnome.org;
+groups=('gnome')
+install=gnome-system-monitor.install
+source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('9b23ab443fd92050b95c03a0ab321bbd41696a0ffc89c06e79c8798dca0a44f9')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--libexecdir=/usr/lib/$pkgname --enable-systemd --enable-wnck
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-i686/gnome-system-monitor.install
===
--- extra-i686/gnome-system-monitor.install 2016-04-12 22:31:12 UTC (rev 
264806)
+++ extra-i686/gnome-system-monitor.install 2016-04-12 22:32:08 UTC (rev 
264807)
@@ -1,11 +0,0 @@
-post_install() {
-glib-compile-schemas /usr/share/glib-2.0/schemas
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-post_install
-}

Copied: gnome-system-monitor/repos/extra-i686/gnome-system-monitor.install 
(from rev 264806, gnome-system-monitor/trunk/gnome-system-monitor.install)
===
--- extra-i686/gnome-system-monitor.install (rev 0)
+++ extra-i686/gnome-system-monitor.install 2016-04-12 22:32:08 UTC (rev 
264807)
@@ -0,0 +1,11 @@
+post_install() {
+glib-compile-schemas /usr/share/glib-2.0/schemas
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   

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

2016-04-12 Thread Jan Steffens
Date: Wednesday, April 13, 2016 @ 00:31:12
  Author: heftig
Revision: 264806

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

Added:
  gnome-online-accounts/repos/extra-i686/PKGBUILD
(from rev 264805, gnome-online-accounts/trunk/PKGBUILD)
  gnome-online-accounts/repos/extra-i686/gnome-online-accounts.install
(from rev 264805, gnome-online-accounts/trunk/gnome-online-accounts.install)
  gnome-online-accounts/repos/extra-x86_64/PKGBUILD
(from rev 264805, gnome-online-accounts/trunk/PKGBUILD)
  gnome-online-accounts/repos/extra-x86_64/gnome-online-accounts.install
(from rev 264805, gnome-online-accounts/trunk/gnome-online-accounts.install)
Deleted:
  gnome-online-accounts/repos/extra-i686/PKGBUILD
  gnome-online-accounts/repos/extra-i686/gnome-online-accounts.install
  gnome-online-accounts/repos/extra-x86_64/PKGBUILD
  gnome-online-accounts/repos/extra-x86_64/gnome-online-accounts.install

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-04-12 22:30:00 UTC (rev 264805)
+++ extra-i686/PKGBUILD 2016-04-12 22:31:12 UTC (rev 264806)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru 
-
-pkgname=gnome-online-accounts
-pkgver=3.20.0
-pkgrel=1
-pkgdesc="GNOME service to access online accounts"
-arch=(i686 x86_64)
-url="http://www.gnome.org;
-license=('GPL')
-depends=('webkit2gtk' 'json-glib' 'libnotify' 'rest' 'libsecret' 
'telepathy-glib' 'krb5' 'gcr')
-makedepends=('intltool' 'libxslt' 'gobject-introspection' 'docbook-xsl')
-optdepends=('gvfs-goa: Virtual file systems (e.g. OwnCloud)'
-'gvfs-google: Google Drive')
-install=$pkgname.install
-source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('c98233914c455dc21f8c73904dd2881bee6bfa117a5bdc573ba3a8550c36a460')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --libexecdir=/usr/lib/$pkgname --disable-static \
---enable-media-server --enable-kerberos --enable-lastfm
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make -j1 DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gnome-online-accounts/repos/extra-i686/PKGBUILD (from rev 264805, 
gnome-online-accounts/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-04-12 22:31:12 UTC (rev 264806)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Ionut Biru 
+
+pkgname=gnome-online-accounts
+pkgver=3.20.1
+pkgrel=1
+pkgdesc="GNOME service to access online accounts"
+arch=(i686 x86_64)
+url="http://www.gnome.org;
+license=('GPL')
+depends=('webkit2gtk' 'json-glib' 'libnotify' 'rest' 'libsecret' 
'telepathy-glib' 'krb5' 'gcr')
+makedepends=('intltool' 'libxslt' 'gobject-introspection' 'docbook-xsl')
+optdepends=('gvfs-goa: Virtual file systems (e.g. OwnCloud)'
+'gvfs-google: Google Drive')
+install=$pkgname.install
+source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('c37aebc1e12f31f5516d33a354181e4d202a07da4f7d3a95b0da8cf0028c0c93')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --libexecdir=/usr/lib/$pkgname --disable-static \
+--enable-media-server --enable-kerberos --enable-lastfm
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make -j1 DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: extra-i686/gnome-online-accounts.install
===
--- extra-i686/gnome-online-accounts.install2016-04-12 22:30:00 UTC (rev 
264805)
+++ extra-i686/gnome-online-accounts.install2016-04-12 22:31:12 UTC (rev 
264806)
@@ -1,12 +0,0 @@
-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
-}
-
-post_remove() {
-post_install
-}

Copied: gnome-online-accounts/repos/extra-i686/gnome-online-accounts.install 
(from rev 264805, gnome-online-accounts/trunk/gnome-online-accounts.install)
===
--- extra-i686/gnome-online-accounts.install(rev 0)
+++ extra-i686/gnome-online-accounts.install2016-04-12 22:31:12 UTC (rev 
264806)
@@ 

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

2016-04-12 Thread Jan Steffens
Date: Wednesday, April 13, 2016 @ 00:30:00
  Author: heftig
Revision: 264805

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

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

---+
 /PKGBUILD |   64 
 /yelp.install |   26 +
 extra-i686/PKGBUILD   |   32 --
 extra-i686/yelp.install   |   13 
 extra-x86_64/PKGBUILD |   32 --
 extra-x86_64/yelp.install |   13 
 6 files changed, 90 insertions(+), 90 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-04-12 22:28:55 UTC (rev 264804)
+++ extra-i686/PKGBUILD 2016-04-12 22:30:00 UTC (rev 264805)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-
-pkgname=yelp
-pkgver=3.20.0
-pkgrel=1
-pkgdesc="A help browser for GNOME"
-arch=('i686' 'x86_64')
-depends=('webkit2gtk' 'yelp-xsl' 'libxslt' 'hicolor-icon-theme' 'xz' 'bzip2'
- 'desktop-file-utils' 'dconf')
-makedepends=('intltool' 'gtk-doc' 'itstool')
-groups=('gnome')
-license=('GPL')
-options=('!emptydirs')
-url="http://www.gnome.org;
-install=yelp.install
-source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('bf1543d2c51199c75674bb3b35e9e5a6ccad96cf732c985cb468e447a525803c')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --disable-static
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: yelp/repos/extra-i686/PKGBUILD (from rev 264804, yelp/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-04-12 22:30:00 UTC (rev 264805)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgname=yelp
+pkgver=3.20.1
+pkgrel=1
+pkgdesc="A help browser for GNOME"
+arch=('i686' 'x86_64')
+depends=('webkit2gtk' 'yelp-xsl' 'libxslt' 'hicolor-icon-theme' 'xz' 'bzip2'
+ 'desktop-file-utils' 'dconf')
+makedepends=('intltool' 'gtk-doc' 'itstool')
+groups=('gnome')
+license=('GPL')
+options=('!emptydirs')
+url="http://www.gnome.org;
+install=yelp.install
+source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('dda0b051ad32908cb9d894d1db3ffdac69b21849b8a6a9a74d9669b017f608c2')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-static
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-i686/yelp.install
===
--- extra-i686/yelp.install 2016-04-12 22:28:55 UTC (rev 264804)
+++ extra-i686/yelp.install 2016-04-12 22:30:00 UTC (rev 264805)
@@ -1,13 +0,0 @@
-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: yelp/repos/extra-i686/yelp.install (from rev 264804, 
yelp/trunk/yelp.install)
===
--- extra-i686/yelp.install (rev 0)
+++ extra-i686/yelp.install 2016-04-12 22:30:00 UTC (rev 264805)
@@ -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
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-04-12 22:28:55 UTC (rev 264804)
+++ extra-x86_64/PKGBUILD   2016-04-12 22:30:00 UTC (rev 264805)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-
-pkgname=yelp
-pkgver=3.20.0
-pkgrel=1
-pkgdesc="A help browser for GNOME"
-arch=('i686' 'x86_64')

[arch-commits] Commit in yelp-xsl/repos/extra-any (PKGBUILD PKGBUILD)

2016-04-12 Thread Jan Steffens
Date: Wednesday, April 13, 2016 @ 00:28:55
  Author: heftig
Revision: 264804

archrelease: copy trunk to extra-any

Added:
  yelp-xsl/repos/extra-any/PKGBUILD
(from rev 264803, yelp-xsl/trunk/PKGBUILD)
Deleted:
  yelp-xsl/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-04-12 22:28:20 UTC (rev 264803)
+++ PKGBUILD2016-04-12 22:28:55 UTC (rev 264804)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=yelp-xsl
-pkgver=3.20.0
-pkgrel=1
-pkgdesc="Stylesheets for Yelp"
-arch=(any)
-makedepends=(intltool libxslt libxml2 itstool)
-license=(GPL)
-options=('!emptydirs')
-url="http://www.gnome.org;
-source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('9f327887853c40d7332dde8789ee58c0cf678186719cb905e57ae175b8434848')
-
-build() {
-  cd $pkgname-$pkgver
-  rm xslt/common/domains/yelp-xsl.xml
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: yelp-xsl/repos/extra-any/PKGBUILD (from rev 264803, 
yelp-xsl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-04-12 22:28:55 UTC (rev 264804)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=yelp-xsl
+pkgver=3.20.1
+pkgrel=1
+pkgdesc="Stylesheets for Yelp"
+arch=(any)
+makedepends=(intltool libxslt libxml2 itstool)
+license=(GPL)
+options=('!emptydirs')
+url="http://www.gnome.org;
+source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('dc61849e5dca473573d32e28c6c4e3cf9c1b6afe241f8c26e29539c415f97ba0')
+
+build() {
+  cd $pkgname-$pkgver
+  rm xslt/common/domains/yelp-xsl.xml
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}


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

2016-04-12 Thread Jan Steffens
Date: Wednesday, April 13, 2016 @ 00:27:39
  Author: heftig
Revision: 264802

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

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

-+
 /PKGBUILD   |   56 ++
 /gnome-maps.install |   26 +
 extra-i686/PKGBUILD |   28 ---
 extra-i686/gnome-maps.install   |   13 
 extra-x86_64/PKGBUILD   |   28 ---
 extra-x86_64/gnome-maps.install |   13 
 6 files changed, 82 insertions(+), 82 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-04-12 22:26:44 UTC (rev 264801)
+++ extra-i686/PKGBUILD 2016-04-12 22:27:39 UTC (rev 264802)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=gnome-maps
-pkgver=3.20.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=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('91827901fd7f88db99b3a0d8d45a8a0161568f5ebf48cd2ccead7735242d592e')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --disable-schemas-compile
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make -j1 DESTDIR="${pkgdir}" install
-}

Copied: gnome-maps/repos/extra-i686/PKGBUILD (from rev 264801, 
gnome-maps/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-04-12 22:27:39 UTC (rev 264802)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=gnome-maps
+pkgver=3.20.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=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('4874d10a3cfdffd5d1db6084d67b5e8dc8c2db2ff995302b80060ecfc5e99bd5')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --disable-schemas-compile
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make -j1 DESTDIR="${pkgdir}" install
+}

Deleted: extra-i686/gnome-maps.install
===
--- extra-i686/gnome-maps.install   2016-04-12 22:26:44 UTC (rev 264801)
+++ extra-i686/gnome-maps.install   2016-04-12 22:27:39 UTC (rev 264802)
@@ -1,13 +0,0 @@
-post_install() {
-  glib-compile-schemas usr/share/glib-2.0/schemas
-  update-desktop-database -q
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: gnome-maps/repos/extra-i686/gnome-maps.install (from rev 264801, 
gnome-maps/trunk/gnome-maps.install)
===
--- extra-i686/gnome-maps.install   (rev 0)
+++ extra-i686/gnome-maps.install   2016-04-12 22:27:39 UTC (rev 264802)
@@ -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
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-04-12 22:26:44 UTC (rev 264801)
+++ extra-x86_64/PKGBUILD   2016-04-12 22:27:39 UTC (rev 264802)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=gnome-maps
-pkgver=3.20.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 

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

2016-04-12 Thread Jan Steffens
Date: Wednesday, April 13, 2016 @ 00:28:20
  Author: heftig
Revision: 264803

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

Added:
  geocode-glib/repos/extra-i686/PKGBUILD
(from rev 264802, geocode-glib/trunk/PKGBUILD)
  geocode-glib/repos/extra-x86_64/PKGBUILD
(from rev 264802, geocode-glib/trunk/PKGBUILD)
Deleted:
  geocode-glib/repos/extra-i686/PKGBUILD
  geocode-glib/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 2016-04-12 22:27:39 UTC (rev 264802)
+++ extra-i686/PKGBUILD 2016-04-12 22:28:20 UTC (rev 264803)
@@ -1,27 +0,0 @@
-#$Id:
-#Maintainer: Jan de Groot 
-
-pkgname=geocode-glib
-pkgver=3.20.0
-pkgrel=1
-pkgdesc="Geocode Helper library"
-arch=(i686 x86_64)
-license=('GPL')
-url="https://git.gnome.org/browse/geocode-glib/;
-depends=('glib2' 'json-glib' 'libsoup')
-makedepends=('intltool' 'gobject-introspection')
-options=('!emptydirs')
-source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('5f2264238e9481a95ca260ba2c652bebd247ec1852a27ded5b126117eb1bb6ba')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="${pkgdir}" install
-}
-

Copied: geocode-glib/repos/extra-i686/PKGBUILD (from rev 264802, 
geocode-glib/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-04-12 22:28:20 UTC (rev 264803)
@@ -0,0 +1,27 @@
+#$Id:
+#Maintainer: Jan de Groot 
+
+pkgname=geocode-glib
+pkgver=3.20.1
+pkgrel=1
+pkgdesc="Geocode Helper library"
+arch=(i686 x86_64)
+license=('GPL')
+url="https://git.gnome.org/browse/geocode-glib/;
+depends=('glib2' 'json-glib' 'libsoup')
+makedepends=('intltool' 'gobject-introspection')
+options=('!emptydirs')
+source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('669fc832cabf8cc2f0fc4194a8fa464cdb9c03ebf9aca5353d7cf935ba8637a2')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="${pkgdir}" install
+}
+

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-04-12 22:27:39 UTC (rev 264802)
+++ extra-x86_64/PKGBUILD   2016-04-12 22:28:20 UTC (rev 264803)
@@ -1,27 +0,0 @@
-#$Id:
-#Maintainer: Jan de Groot 
-
-pkgname=geocode-glib
-pkgver=3.20.0
-pkgrel=1
-pkgdesc="Geocode Helper library"
-arch=(i686 x86_64)
-license=('GPL')
-url="https://git.gnome.org/browse/geocode-glib/;
-depends=('glib2' 'json-glib' 'libsoup')
-makedepends=('intltool' 'gobject-introspection')
-options=('!emptydirs')
-source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('5f2264238e9481a95ca260ba2c652bebd247ec1852a27ded5b126117eb1bb6ba')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="${pkgdir}" install
-}
-

Copied: geocode-glib/repos/extra-x86_64/PKGBUILD (from rev 264802, 
geocode-glib/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-04-12 22:28:20 UTC (rev 264803)
@@ -0,0 +1,27 @@
+#$Id:
+#Maintainer: Jan de Groot 
+
+pkgname=geocode-glib
+pkgver=3.20.1
+pkgrel=1
+pkgdesc="Geocode Helper library"
+arch=(i686 x86_64)
+license=('GPL')
+url="https://git.gnome.org/browse/geocode-glib/;
+depends=('glib2' 'json-glib' 'libsoup')
+makedepends=('intltool' 'gobject-introspection')
+options=('!emptydirs')
+source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('669fc832cabf8cc2f0fc4194a8fa464cdb9c03ebf9aca5353d7cf935ba8637a2')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="${pkgdir}" install
+}
+


[arch-commits] Commit in gnome-devel-docs/repos/extra-any (PKGBUILD PKGBUILD)

2016-04-12 Thread Jan Steffens
Date: Wednesday, April 13, 2016 @ 00:26:44
  Author: heftig
Revision: 264801

archrelease: copy trunk to extra-any

Added:
  gnome-devel-docs/repos/extra-any/PKGBUILD
(from rev 264800, gnome-devel-docs/trunk/PKGBUILD)
Deleted:
  gnome-devel-docs/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-04-12 22:23:44 UTC (rev 264800)
+++ PKGBUILD2016-04-12 22:26:44 UTC (rev 264801)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=gnome-devel-docs
-pkgver=3.20.0
-pkgrel=1
-pkgdesc="Developer documentation for GNOME"
-arch=(any)
-license=('FDL')
-depends=('yelp')
-makedepends=('yelp-tools')
-url="http://www.gnome.org;
-groups=('gnome-extra')
-source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('e1397b8ba0bf003e0fb5ccb721e102c96f17f833afe84ff7e32cdb3f65686a8e')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: gnome-devel-docs/repos/extra-any/PKGBUILD (from rev 264800, 
gnome-devel-docs/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-04-12 22:26:44 UTC (rev 264801)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=gnome-devel-docs
+pkgver=3.20.1
+pkgrel=1
+pkgdesc="Developer documentation for GNOME"
+arch=(any)
+license=('FDL')
+depends=('yelp')
+makedepends=('yelp-tools')
+url="http://www.gnome.org;
+groups=('gnome-extra')
+source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('d0838a7901a2fdfd520aa22161b364d3c102da3c2c56bad091d758e3ec9ee846')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}


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

2016-04-12 Thread Jan Steffens
Date: Wednesday, April 13, 2016 @ 00:23:44
  Author: heftig
Revision: 264800

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-04-12 22:22:41 UTC (rev 264799)
+++ extra-i686/PKGBUILD 2016-04-12 22:23:44 UTC (rev 264800)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=gnome-logs
-pkgver=3.20.0
-pkgrel=1
-pkgdesc="A log viewer for the systemd journal"
-arch=(i686 x86_64)
-url="https://wiki.gnome.org/Apps/Logs;
-license=(GPL)
-groups=(gnome-extra)
-depends=(systemd gtk3 gsettings-desktop-schemas)
-makedepends=(intltool itstool)
-install=gnome-logs.install
-source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('3f8856b84ac07720b71786056902f5d4040ccfa884f510677fbe953e681f3843')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: gnome-logs/repos/extra-i686/PKGBUILD (from rev 264799, 
gnome-logs/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-04-12 22:23:44 UTC (rev 264800)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=gnome-logs
+pkgver=3.20.1
+pkgrel=1
+pkgdesc="A log viewer for the systemd journal"
+arch=(i686 x86_64)
+url="https://wiki.gnome.org/Apps/Logs;
+license=(GPL)
+groups=(gnome-extra)
+depends=(systemd gtk3 gsettings-desktop-schemas)
+makedepends=(intltool itstool)
+install=gnome-logs.install
+source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('b797841faac4e176c64497837de27b1b953d16d2482e8a773a48b38117b1367e')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-i686/gnome-logs.install
===
--- extra-i686/gnome-logs.install   2016-04-12 22:22:41 UTC (rev 264799)
+++ extra-i686/gnome-logs.install   2016-04-12 22:23:44 UTC (rev 264800)
@@ -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-logs/repos/extra-i686/gnome-logs.install (from rev 264799, 
gnome-logs/trunk/gnome-logs.install)
===
--- extra-i686/gnome-logs.install   (rev 0)
+++ extra-i686/gnome-logs.install   2016-04-12 22:23:44 UTC (rev 264800)
@@ -0,0 +1,12 @@
+post_install() {
+  glib-compile-schemas /usr/share/glib-2.0/schemas
+  gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-04-12 22:22:41 UTC (rev 264799)
+++ extra-x86_64/PKGBUILD   2016-04-12 22:23:44 UTC (rev 264800)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=gnome-logs
-pkgver=3.20.0
-pkgrel=1
-pkgdesc="A log viewer for the systemd journal"
-arch=(i686 x86_64)
-url="https://wiki.gnome.org/Apps/Logs;
-license=(GPL)
-groups=(gnome-extra)
-depends=(systemd gtk3 gsettings-desktop-schemas)
-makedepends=(intltool itstool)
-install=gnome-logs.install
-source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('3f8856b84ac07720b71786056902f5d4040ccfa884f510677fbe953e681f3843')
-
-build() {
-  cd $pkgname-$pkgver

[arch-commits] Commit in gnome-user-docs/repos/extra-any (PKGBUILD PKGBUILD)

2016-04-12 Thread Jan Steffens
Date: Wednesday, April 13, 2016 @ 00:22:41
  Author: heftig
Revision: 264799

archrelease: copy trunk to extra-any

Added:
  gnome-user-docs/repos/extra-any/PKGBUILD
(from rev 264798, gnome-user-docs/trunk/PKGBUILD)
Deleted:
  gnome-user-docs/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-04-12 22:18:25 UTC (rev 264798)
+++ PKGBUILD2016-04-12 22:22:41 UTC (rev 264799)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru 
-
-pkgname=gnome-user-docs
-pkgver=3.20.0
-pkgrel=1
-pkgdesc="User documentation for GNOME"
-arch=(any)
-license=('FDL')
-depends=('yelp')
-makedepends=('yelp-tools')
-url="http://www.gnome.org;
-groups=('gnome')
-source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('97237c95f8df69e141f1603cf194ca7b1be8578b0a011c6b65358b7d2a785933')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: gnome-user-docs/repos/extra-any/PKGBUILD (from rev 264798, 
gnome-user-docs/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-04-12 22:22:41 UTC (rev 264799)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Ionut Biru 
+
+pkgname=gnome-user-docs
+pkgver=3.20.1
+pkgrel=1
+pkgdesc="User documentation for GNOME"
+arch=(any)
+license=('FDL')
+depends=('yelp')
+makedepends=('yelp-tools')
+url="http://www.gnome.org;
+groups=('gnome')
+source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('89dca8f695a2880461ad1d60a6fc77a7bcefb0cd3fc5eaa6a1df84ff3e5ec0cd')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}


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

2016-04-12 Thread Jan Steffens
Date: Wednesday, April 13, 2016 @ 00:18:25
  Author: heftig
Revision: 264798

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

Added:
  rygel/repos/extra-i686/PKGBUILD
(from rev 264797, rygel/trunk/PKGBUILD)
  rygel/repos/extra-i686/org.gnome.Rygel1.service
(from rev 264797, rygel/trunk/org.gnome.Rygel1.service)
  rygel/repos/extra-i686/rygel.install
(from rev 264797, rygel/trunk/rygel.install)
  rygel/repos/extra-i686/rygel.service
(from rev 264797, rygel/trunk/rygel.service)
  rygel/repos/extra-x86_64/PKGBUILD
(from rev 264797, rygel/trunk/PKGBUILD)
  rygel/repos/extra-x86_64/org.gnome.Rygel1.service
(from rev 264797, rygel/trunk/org.gnome.Rygel1.service)
  rygel/repos/extra-x86_64/rygel.install
(from rev 264797, rygel/trunk/rygel.install)
  rygel/repos/extra-x86_64/rygel.service
(from rev 264797, rygel/trunk/rygel.service)
Deleted:
  rygel/repos/extra-i686/PKGBUILD
  rygel/repos/extra-i686/org.gnome.Rygel1.service
  rygel/repos/extra-i686/rygel.install
  rygel/repos/extra-i686/rygel.service
  rygel/repos/extra-x86_64/PKGBUILD
  rygel/repos/extra-x86_64/org.gnome.Rygel1.service
  rygel/repos/extra-x86_64/rygel.install
  rygel/repos/extra-x86_64/rygel.service

---+
 /PKGBUILD |   94 
 /org.gnome.Rygel1.service |8 ++
 /rygel.install|   22 +++
 /rygel.service|   20 ++
 extra-i686/PKGBUILD   |   47 
 extra-i686/org.gnome.Rygel1.service   |4 -
 extra-i686/rygel.install  |   11 ---
 extra-i686/rygel.service  |   10 ---
 extra-x86_64/PKGBUILD |   47 
 extra-x86_64/org.gnome.Rygel1.service |4 -
 extra-x86_64/rygel.install|   11 ---
 extra-x86_64/rygel.service|   10 ---
 12 files changed, 144 insertions(+), 144 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-04-12 22:17:09 UTC (rev 264797)
+++ extra-i686/PKGBUILD 2016-04-12 22:18:25 UTC (rev 264798)
@@ -1,47 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Balló György 
-
-pkgname=rygel
-pkgver=0.30.0
-pkgrel=2
-pkgdesc="UPnP AV MediaServer and MediaRenderer that allows you to easily share 
audio, video and pictures, and control of media player on your home network"
-arch=(i686 x86_64)
-url="http://live.gnome.org/Rygel;
-license=(LGPL)
-depends=(gupnp-av gupnp-dlna libgee gtk3 libunistring libtracker-sparql 
hicolor-icon-theme xdg-utils libmediaart)
-makedepends=(vala intltool python2 gobject-introspection)
-optdepends=('gst-plugins-base: Extra media codecs'
-'gst-plugins-good: Extra media codecs'
-'gst-plugins-bad: Extra media codecs'
-'gst-plugins-ugly: Extra media codecs'
-'gst-libav: Extra media codecs'
-'tracker: Share indexed media files')
-backup=(etc/rygel.conf)
-install=rygel.install
-groups=('gnome-extra')
-source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz
-org.gnome.Rygel1.service rygel.service)
-sha256sums=('a5344ec726d21e2af1b43491fb3a90450733f2c716f1097eb1ca392b611b5683'
-'0997df280adf182772e30613986c6fdbb4b76626182aa7ac03e4315f745499fe'
-'5fdb7b439e5b69407d0d1a24ee2543657a76ec39eb5d8a8271405b74a1fa9061')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--libexecdir=/usr/lib \
-  --disable-static --enable-mediathek-plugin 
--enable-gst-launch-plugin
-  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
-  install -Dm644 ../rygel.service "$pkgdir/usr/lib/systemd/user/rygel.service"
-  install -m644 ../org.gnome.Rygel1.service 
"$pkgdir/usr/share/dbus-1/services/"
-}

Copied: rygel/repos/extra-i686/PKGBUILD (from rev 264797, rygel/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-04-12 22:18:25 UTC (rev 264798)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Balló György 
+
+pkgname=rygel
+pkgver=0.30.1
+pkgrel=1
+pkgdesc="UPnP AV MediaServer and MediaRenderer that allows you to easily share 
audio, video and pictures, and control of media player on your home network"
+arch=(i686 x86_64)
+url="http://live.gnome.org/Rygel;
+license=(LGPL)
+depends=(gupnp-av gupnp-dlna libgee gtk3 libunistring libtracker-sparql 
hicolor-icon-theme xdg-utils libmediaart)
+makedepends=(vala intltool python2 

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

2016-04-12 Thread Jan Steffens
Date: Wednesday, April 13, 2016 @ 00:17:09
  Author: heftig
Revision: 264797

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

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

-+
 /PKGBUILD   |   78 ++
 /gnome-terminal.install |   26 +++
 extra-i686/PKGBUILD |   39 -
 extra-i686/gnome-terminal.install   |   13 -
 extra-x86_64/PKGBUILD   |   39 -
 extra-x86_64/gnome-terminal.install |   13 -
 6 files changed, 104 insertions(+), 104 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-04-12 22:16:01 UTC (rev 264796)
+++ extra-i686/PKGBUILD 2016-04-12 22:17:09 UTC (rev 264797)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=gnome-terminal
-pkgver=3.20.0
-pkgrel=1
-pkgdesc="The GNOME Terminal Emulator"
-arch=(i686 x86_64)
-license=(GPL)
-depends=(vte3 gsettings-desktop-schemas dconf)
-makedepends=(intltool itstool docbook-xsl desktop-file-utils
- libnautilus-extension appdata-tools gnome-shell gconf vala)
-optdepends=('gconf: settings migration when upgrading from older version')
-options=('!emptydirs')
-url="http://www.gnome.org;
-groups=('gnome')
-install=gnome-terminal.install
-source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('2fe7f6bd3ca4e93ce156f83e673b9e8c3f0155b6bc603e109edc942718eb4150')
-
-build() {
-  cd $pkgname-$pkgver
-  # Build with prerelease, no tarball yet
-  sed -i -e 's/0.44.0/0.43.92/' configure
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---libexecdir=/usr/lib/$pkgname --disable-static --with-nautilus-extension
-  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: gnome-terminal/repos/extra-i686/PKGBUILD (from rev 264796, 
gnome-terminal/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-04-12 22:17:09 UTC (rev 264797)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=gnome-terminal
+pkgver=3.20.1
+pkgrel=1
+pkgdesc="The GNOME Terminal Emulator"
+arch=(i686 x86_64)
+license=(GPL)
+depends=(vte3 gsettings-desktop-schemas dconf)
+makedepends=(intltool itstool docbook-xsl desktop-file-utils
+ libnautilus-extension appdata-tools gnome-shell gconf vala)
+optdepends=('gconf: settings migration when upgrading from older version')
+options=('!emptydirs')
+url="http://www.gnome.org;
+groups=('gnome')
+install=gnome-terminal.install
+source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('98b7f48b13b37f05c92aa6b09006f608985efaf5440a1d76c28eda5f46b50894')
+
+build() {
+  cd $pkgname-$pkgver
+  # Build with prerelease, no tarball yet
+  sed -i -e 's/0.44.0/0.43.92/' configure
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--libexecdir=/usr/lib/$pkgname --disable-static --with-nautilus-extension
+  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: extra-i686/gnome-terminal.install
===
--- extra-i686/gnome-terminal.install   2016-04-12 22:16:01 UTC (rev 264796)
+++ extra-i686/gnome-terminal.install   2016-04-12 22:17:09 UTC (rev 264797)
@@ -1,13 +0,0 @@
-post_install() {
-  glib-compile-schemas /usr/share/glib-2.0/schemas
-}
-
-pre_upgrade() {
-  if [ -f /usr/share/gconf/schemas/gnome-terminal.schemas ]; then
-gconfpkg --uninstall gnome-terminal
-  fi
-}
-
-post_upgrade() {
-  post_install $1
-}

Copied: gnome-terminal/repos/extra-i686/gnome-terminal.install (from rev 
264796, gnome-terminal/trunk/gnome-terminal.install)
===
--- extra-i686/gnome-terminal.install   (rev 0)
+++ 

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

2016-04-12 Thread Jan Steffens
Date: Wednesday, April 13, 2016 @ 00:16:01
  Author: heftig
Revision: 264796

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

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

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

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

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

Deleted: extra-i686/vino.install
===
--- extra-i686/vino.install 2016-04-12 22:15:13 UTC (rev 264795)
+++ extra-i686/vino.install 2016-04-12 22:16:01 UTC (rev 264796)
@@ -1,12 +0,0 @@
-post_install() {
-  glib-compile-schemas /usr/share/glib-2.0/schemas
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: vino/repos/extra-i686/vino.install (from rev 264795, 
vino/trunk/vino.install)
===
--- extra-i686/vino.install (rev 0)
+++ extra-i686/vino.install 2016-04-12 22:16:01 UTC (rev 264796)
@@ -0,0 +1,12 @@
+post_install() {
+  glib-compile-schemas /usr/share/glib-2.0/schemas
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-04-12 22:15:13 UTC (rev 264795)
+++ extra-x86_64/PKGBUILD   2016-04-12 22:16:01 UTC (rev 264796)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-
-pkgname=vino
-pkgver=3.20.0
-pkgrel=1

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

2016-04-12 Thread Jan Steffens
Date: Wednesday, April 13, 2016 @ 00:15:13
  Author: heftig
Revision: 264795

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

Added:
  evolution-ews/repos/extra-i686/PKGBUILD
(from rev 264794, evolution-ews/trunk/PKGBUILD)
  evolution-ews/repos/extra-x86_64/PKGBUILD
(from rev 264794, evolution-ews/trunk/PKGBUILD)
Deleted:
  evolution-ews/repos/extra-i686/PKGBUILD
  evolution-ews/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-04-12 22:14:16 UTC (rev 264794)
+++ extra-i686/PKGBUILD 2016-04-12 22:15:13 UTC (rev 264795)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru 
-
-pkgname=evolution-ews
-pkgver=3.20.0
-pkgrel=1
-pkgdesc="MS Exchange integration through Exchange Web Services"
-arch=('i686' 'x86_64')
-license=('LGPL2.1')
-url="https://wiki.gnome.org/Apps/Evolution/EWS;
-depends=('libmspack' 'evolution')
-makedepends=('intltool')
-options=('!emptydirs')
-source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('34e47331670b940a8eff8ef431bbfb19434f8abae43e5e85af312b869c5a3fd9')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
-  --libexecdir=/usr/lib/evolution --disable-static
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' -e 's/if test 
"$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then/  
func_append compile_command " -Wl,-O1,--as-needed"\n  func_append 
finalize_command " -Wl,-O1,--as-needed"\n\0/' libtool
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: evolution-ews/repos/extra-i686/PKGBUILD (from rev 264794, 
evolution-ews/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-04-12 22:15:13 UTC (rev 264795)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Ionut Biru 
+
+pkgname=evolution-ews
+pkgver=3.20.1
+pkgrel=1
+pkgdesc="MS Exchange integration through Exchange Web Services"
+arch=('i686' 'x86_64')
+license=('LGPL2.1')
+url="https://wiki.gnome.org/Apps/Evolution/EWS;
+depends=('libmspack' 'evolution')
+makedepends=('intltool')
+options=('!emptydirs')
+source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('ab6bba26605d52c934646612edea6d87034f6fdcf987f9486662de622cb3d739')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+  --libexecdir=/usr/lib/evolution --disable-static
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' -e 's/if test 
"$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then/  
func_append compile_command " -Wl,-O1,--as-needed"\n  func_append 
finalize_command " -Wl,-O1,--as-needed"\n\0/' libtool
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-04-12 22:14:16 UTC (rev 264794)
+++ extra-x86_64/PKGBUILD   2016-04-12 22:15:13 UTC (rev 264795)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru 
-
-pkgname=evolution-ews
-pkgver=3.20.0
-pkgrel=1
-pkgdesc="MS Exchange integration through Exchange Web Services"
-arch=('i686' 'x86_64')
-license=('LGPL2.1')
-url="https://wiki.gnome.org/Apps/Evolution/EWS;
-depends=('libmspack' 'evolution')
-makedepends=('intltool')
-options=('!emptydirs')
-source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('34e47331670b940a8eff8ef431bbfb19434f8abae43e5e85af312b869c5a3fd9')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
-  --libexecdir=/usr/lib/evolution --disable-static
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' -e 's/if test 
"$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then/  
func_append compile_command " -Wl,-O1,--as-needed"\n  func_append 
finalize_command " -Wl,-O1,--as-needed"\n\0/' libtool
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: evolution-ews/repos/extra-x86_64/PKGBUILD (from rev 264794, 
evolution-ews/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-04-12 22:15:13 UTC (rev 264795)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Ionut Biru 
+

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

2016-04-12 Thread Jan Steffens
Date: Wednesday, April 13, 2016 @ 00:14:16
  Author: heftig
Revision: 264794

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

Added:
  evolution/repos/extra-i686/PKGBUILD
(from rev 264792, evolution/trunk/PKGBUILD)
  evolution/repos/extra-i686/evolution.install
(from rev 264792, evolution/trunk/evolution.install)
  evolution/repos/extra-x86_64/PKGBUILD
(from rev 264793, evolution/trunk/PKGBUILD)
  evolution/repos/extra-x86_64/evolution.install
(from rev 264793, evolution/trunk/evolution.install)
Deleted:
  evolution/repos/extra-i686/PKGBUILD
  evolution/repos/extra-i686/evolution.install
  evolution/repos/extra-x86_64/PKGBUILD
  evolution/repos/extra-x86_64/evolution.install

+
 /PKGBUILD  |  140 +++
 /evolution.install |   38 ++
 extra-i686/PKGBUILD|   70 ---
 extra-i686/evolution.install   |   19 -
 extra-x86_64/PKGBUILD  |   70 ---
 extra-x86_64/evolution.install |   19 -
 6 files changed, 178 insertions(+), 178 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-04-12 22:14:03 UTC (rev 264793)
+++ extra-i686/PKGBUILD 2016-04-12 22:14:16 UTC (rev 264794)
@@ -1,70 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-
-pkgbase=evolution
-pkgname=('evolution' 'evolution-bogofilter' 'evolution-spamassassin')
-pkgver=3.20.0
-pkgrel=1
-pkgdesc="Manage your email, contacts and schedule"
-arch=(i686 x86_64)
-license=(GPL)
-makedepends=(intltool itstool docbook-xsl networkmanager bogofilter 
spamassassin highlight gnome-desktop evolution-data-server libcanberra libpst 
libytnef desktop-file-utils dconf gtkspell3 webkitgtk libcryptui gnome-common 
gtk-doc)
-options=('!emptydirs')
-url=https://wiki.gnome.org/Apps/Evolution
-source=(https://download.gnome.org/sources/$pkgbase/${pkgver:0:4}/$pkgbase-$pkgver.tar.xz)
-sha256sums=('6bd0cc0c077363a29026a5194062d981d0b0aa9ffea9e7ffcec1f1fdbe9b502e')
-
-prepare() {
-  cd $pkgname-$pkgver
-}
-
-build() {
-  cd $pkgbase-$pkgver
-
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var \
-  --libexecdir=/usr/lib \
-  --enable-nss=yes \
-  --with-openldap=yes \
-  --enable-smime=yes \
-  --disable-schemas-compile \
-  --disable-autoar \
-  --enable-gtk-doc
-  
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-package_evolution() {
-  depends=(gnome-desktop evolution-data-server libcanberra libpst libytnef
-   desktop-file-utils dconf gtkspell3 libcryptui webkitgtk)
-  install=evolution.install
-  optdepends=('highlight: text highlight plugin'
-  'evolution-spamassassin: Spamassassin spam check plugin'
-  'evolution-bogofilter: Bogofilter spam check plugin')
-  groups=('gnome-extra')
-
-  cd $pkgbase-$pkgver
-  make DESTDIR="$pkgdir" install
-
-  mkdir ../plugins
-  mv "$pkgdir/usr/lib/evolution/modules/module-bogofilter.so" ../plugins/
-  mv "$pkgdir/usr/lib/evolution/modules/module-spamassassin.so" ../plugins/
-  mv "$pkgdir/usr/share/appdata/evolution-bogofilter.metainfo.xml" ../plugins/
-  mv "$pkgdir/usr/share/appdata/evolution-spamassassin.metainfo.xml" 
../plugins/
-}
-
-
-package_evolution-bogofilter() {
-  depends=("evolution=$pkgver" 'bogofilter')
-  install -Dm755 plugins/module-bogofilter.so 
"$pkgdir/usr/lib/evolution/modules/module-bogofilter.so"
-  install -Dm644 plugins/evolution-bogofilter.metainfo.xml 
"$pkgdir/usr/share/appdata/evolution-bogofilter.metainfo.xml"
-}
-
-package_evolution-spamassassin() {
-  depends=("evolution=$pkgver" 'spamassassin')
-  install -Dm755 plugins/module-spamassassin.so 
"$pkgdir/usr/lib/evolution/modules/module-spamassassin.so"
-  install -Dm644 plugins/evolution-spamassassin.metainfo.xml 
"$pkgdir/usr/share/appdata/evolution-spamassassin.metainfo.xml"
-}

Copied: evolution/repos/extra-i686/PKGBUILD (from rev 264792, 
evolution/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-04-12 22:14:16 UTC (rev 264794)
@@ -0,0 +1,70 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgbase=evolution
+pkgname=('evolution' 'evolution-bogofilter' 'evolution-spamassassin')
+pkgver=3.20.1
+pkgrel=1
+pkgdesc="Manage your email, contacts and schedule"
+arch=(i686 x86_64)
+license=(GPL)
+makedepends=(intltool itstool docbook-xsl networkmanager bogofilter 
spamassassin highlight gnome-desktop evolution-data-server libcanberra libpst 
libytnef desktop-file-utils dconf gtkspell3 webkitgtk libcryptui gnome-common 
gtk-doc)
+options=('!emptydirs')

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

2016-04-12 Thread Jan Steffens
Date: Wednesday, April 13, 2016 @ 00:14:03
  Author: heftig
Revision: 264793

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-04-12 22:06:16 UTC (rev 264792)
+++ extra-i686/PKGBUILD 2016-04-12 22:14:03 UTC (rev 264793)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=libqmi
-pkgver=1.12.8
-pkgrel=1
-pkgdesc="QMI modem protocol helper library"
-arch=(i686 x86_64)
-url="http://www.freedesktop.org/wiki/Software/libqmi/;
-license=(GPL2)
-depends=(glib2 bash)
-makedepends=(gtk-doc python)
-source=(http://www.freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz)
-sha256sums=('d23a397d9c963f637c99622df74ed08a2ba2276552c21eea1ed1d05eeafc82a7')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---libexecdir=/usr/lib/$pkgname --disable-static
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: libqmi/repos/extra-i686/PKGBUILD (from rev 264792, 
libqmi/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-04-12 22:14:03 UTC (rev 264793)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=libqmi
+pkgver=1.12.10
+pkgrel=1
+pkgdesc="QMI modem protocol helper library"
+arch=(i686 x86_64)
+url="http://www.freedesktop.org/wiki/Software/libqmi/;
+license=(GPL2)
+depends=(glib2 bash)
+makedepends=(gtk-doc python)
+source=(http://www.freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz)
+sha256sums=('ab6f51e724bdbe1f18ebf42573caf0974b8edb4bb25c06a015fff05f238208ec')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--libexecdir=/usr/lib/$pkgname --disable-static
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-04-12 22:06:16 UTC (rev 264792)
+++ extra-x86_64/PKGBUILD   2016-04-12 22:14:03 UTC (rev 264793)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=libqmi
-pkgver=1.12.8
-pkgrel=1
-pkgdesc="QMI modem protocol helper library"
-arch=(i686 x86_64)
-url="http://www.freedesktop.org/wiki/Software/libqmi/;
-license=(GPL2)
-depends=(glib2 bash)
-makedepends=(gtk-doc python)
-source=(http://www.freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz)
-sha256sums=('d23a397d9c963f637c99622df74ed08a2ba2276552c21eea1ed1d05eeafc82a7')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---libexecdir=/usr/lib/$pkgname --disable-static
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: libqmi/repos/extra-x86_64/PKGBUILD (from rev 264792, 
libqmi/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-04-12 22:14:03 UTC (rev 264793)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=libqmi
+pkgver=1.12.10
+pkgrel=1
+pkgdesc="QMI modem protocol helper library"
+arch=(i686 x86_64)
+url="http://www.freedesktop.org/wiki/Software/libqmi/;
+license=(GPL2)
+depends=(glib2 bash)
+makedepends=(gtk-doc python)
+source=(http://www.freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz)
+sha256sums=('ab6f51e724bdbe1f18ebf42573caf0974b8edb4bb25c06a015fff05f238208ec')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--libexecdir=/usr/lib/$pkgname --disable-static
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in evolution-data-server/repos (8 files)

2016-04-12 Thread Jan Steffens
Date: Wednesday, April 13, 2016 @ 00:06:16
  Author: heftig
Revision: 264792

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

Added:
  evolution-data-server/repos/extra-i686/PKGBUILD
(from rev 264791, evolution-data-server/trunk/PKGBUILD)
  evolution-data-server/repos/extra-i686/evolution-data-server.install
(from rev 264791, evolution-data-server/trunk/evolution-data-server.install)
  evolution-data-server/repos/extra-x86_64/PKGBUILD
(from rev 264791, evolution-data-server/trunk/PKGBUILD)
  evolution-data-server/repos/extra-x86_64/evolution-data-server.install
(from rev 264791, evolution-data-server/trunk/evolution-data-server.install)
Deleted:
  evolution-data-server/repos/extra-i686/PKGBUILD
  evolution-data-server/repos/extra-i686/evolution-data-server.install
  evolution-data-server/repos/extra-x86_64/PKGBUILD
  evolution-data-server/repos/extra-x86_64/evolution-data-server.install

+
 /PKGBUILD  |   64 +++
 /evolution-data-server.install |   22 +
 extra-i686/PKGBUILD|   32 -
 extra-i686/evolution-data-server.install   |   11 
 extra-x86_64/PKGBUILD  |   32 -
 extra-x86_64/evolution-data-server.install |   11 
 6 files changed, 86 insertions(+), 86 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-04-12 22:05:56 UTC (rev 264791)
+++ extra-i686/PKGBUILD 2016-04-12 22:06:16 UTC (rev 264792)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=evolution-data-server
-pkgver=3.20.0
-pkgrel=2
-pkgdesc="Centralized access to appointments and contacts"
-arch=(i686 x86_64)
-depends=(gnome-online-accounts nss krb5 libgweather libical db libgdata 
libphonenumber webkitgtk)
-makedepends=(intltool gperf gobject-introspection vala gtk-doc boost)
-install=$pkgname.install
-url="https://wiki.gnome.org/Apps/Evolution;
-license=(GPL)
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('05f2e84fd5b02f9a526ffd549753af564f54c56047b5126aeecb28a8a0fa4f4b')
-
-build() {
-  cd "$pkgname-$pkgver"
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --with-openldap=yes \
-  --libexecdir=/usr/lib/evolution-data-server \
-  --with-krb5=/usr --with-libdb=/usr --with-phonenumber=/usr \
-  --enable-vala-bindings --disable-uoa \
-  --enable-gtk-doc
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}

Copied: evolution-data-server/repos/extra-i686/PKGBUILD (from rev 264791, 
evolution-data-server/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-04-12 22:06:16 UTC (rev 264792)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=evolution-data-server
+pkgver=3.20.1
+pkgrel=1
+pkgdesc="Centralized access to appointments and contacts"
+arch=(i686 x86_64)
+depends=(gnome-online-accounts nss krb5 libgweather libical db libgdata 
libphonenumber webkitgtk)
+makedepends=(intltool gperf gobject-introspection vala gtk-doc boost)
+install=$pkgname.install
+url="https://wiki.gnome.org/Apps/Evolution;
+license=(GPL)
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('1dfbf6b45656c202f3d68212afb11710e40188db84748d3e487a89ccd4874b53')
+
+build() {
+  cd "$pkgname-$pkgver"
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --with-openldap=yes \
+  --libexecdir=/usr/lib/evolution-data-server \
+  --with-krb5=/usr --with-libdb=/usr --with-phonenumber=/usr \
+  --enable-vala-bindings --disable-uoa \
+  --enable-gtk-doc
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-i686/evolution-data-server.install
===
--- extra-i686/evolution-data-server.install2016-04-12 22:05:56 UTC (rev 
264791)
+++ extra-i686/evolution-data-server.install2016-04-12 22:06:16 UTC (rev 
264792)
@@ -1,11 +0,0 @@
-post_install () {
-glib-compile-schemas /usr/share/glib-2.0/schemas
-}
-
-post_upgrade () {
-post_install
-}
-
-post_remove () {
-post_install
-}

Copied: evolution-data-server/repos/extra-i686/evolution-data-server.install 
(from rev 264791, evolution-data-server/trunk/evolution-data-server.install)
===
--- extra-i686/evolution-data-server.install(rev 0)
+++ extra-i686/evolution-data-server.install2016-04-12 

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

2016-04-12 Thread Jan Steffens
Date: Wednesday, April 13, 2016 @ 00:05:56
  Author: heftig
Revision: 264791

1.12.10-1

Modified:
  libqmi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-12 22:02:38 UTC (rev 264790)
+++ PKGBUILD2016-04-12 22:05:56 UTC (rev 264791)
@@ -2,7 +2,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgname=libqmi
-pkgver=1.12.8
+pkgver=1.12.10
 pkgrel=1
 pkgdesc="QMI modem protocol helper library"
 arch=(i686 x86_64)
@@ -11,7 +11,7 @@
 depends=(glib2 bash)
 makedepends=(gtk-doc python)
 source=(http://www.freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz)
-sha256sums=('d23a397d9c963f637c99622df74ed08a2ba2276552c21eea1ed1d05eeafc82a7')
+sha256sums=('ab6f51e724bdbe1f18ebf42573caf0974b8edb4bb25c06a015fff05f238208ec')
 
 build() {
   cd $pkgname-$pkgver


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

2016-04-12 Thread Jan Steffens
Date: Wednesday, April 13, 2016 @ 00:02:38
  Author: heftig
Revision: 264790

3.20.1-1

Modified:
  evolution-ews/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-12 22:00:59 UTC (rev 264789)
+++ PKGBUILD2016-04-12 22:02:38 UTC (rev 264790)
@@ -2,7 +2,7 @@
 # Maintainer: Ionut Biru 
 
 pkgname=evolution-ews
-pkgver=3.20.0
+pkgver=3.20.1
 pkgrel=1
 pkgdesc="MS Exchange integration through Exchange Web Services"
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 makedepends=('intltool')
 options=('!emptydirs')
 
source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('34e47331670b940a8eff8ef431bbfb19434f8abae43e5e85af312b869c5a3fd9')
+sha256sums=('ab6bba26605d52c934646612edea6d87034f6fdcf987f9486662de622cb3d739')
 
 build() {
   cd $pkgname-$pkgver


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

2016-04-12 Thread Jan Steffens
Date: Wednesday, April 13, 2016 @ 00:00:59
  Author: heftig
Revision: 264789

3.20.1-1

Modified:
  evolution/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-12 21:59:07 UTC (rev 264788)
+++ PKGBUILD2016-04-12 22:00:59 UTC (rev 264789)
@@ -4,7 +4,7 @@
 
 pkgbase=evolution
 pkgname=('evolution' 'evolution-bogofilter' 'evolution-spamassassin')
-pkgver=3.20.0
+pkgver=3.20.1
 pkgrel=1
 pkgdesc="Manage your email, contacts and schedule"
 arch=(i686 x86_64)
@@ -13,7 +13,7 @@
 options=('!emptydirs')
 url=https://wiki.gnome.org/Apps/Evolution
 
source=(https://download.gnome.org/sources/$pkgbase/${pkgver:0:4}/$pkgbase-$pkgver.tar.xz)
-sha256sums=('6bd0cc0c077363a29026a5194062d981d0b0aa9ffea9e7ffcec1f1fdbe9b502e')
+sha256sums=('029567e20fa62263c5fcd2e7f3a0dff96364b647cf9d36a5b99a3abe3b0027d3')
 
 prepare() {
   cd $pkgname-$pkgver


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

2016-04-12 Thread Jan Steffens
Date: Tuesday, April 12, 2016 @ 23:59:07
  Author: heftig
Revision: 264788

3.20.1-1

Modified:
  file-roller/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-12 21:58:03 UTC (rev 264787)
+++ PKGBUILD2016-04-12 21:59:07 UTC (rev 264788)
@@ -3,7 +3,7 @@
 # Contributor: Jan de Groot 
 
 pkgname=file-roller
-pkgver=3.20.0
+pkgver=3.20.1
 pkgrel=1
 pkgdesc="Create and modify archives"
 arch=('i686' 'x86_64')
@@ -19,7 +19,7 @@
 install=file-roller.install
 url="http://www.gnome.org;
 
source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('185a99b2fc6bcfa21988af36c70def4c519931443015accff40db6ef3f4aa5a8')
+sha256sums=('c8b3db59ae12d0efde2e8e28d0cb475508ffc33bf08aa5194fbf5f702b6aa333')
 
 build() {
   cd $pkgname-$pkgver


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

2016-04-12 Thread Jan Steffens
Date: Tuesday, April 12, 2016 @ 23:58:03
  Author: heftig
Revision: 264787

3.20.1-1

Modified:
  gnome-system-monitor/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-12 21:57:41 UTC (rev 264786)
+++ PKGBUILD2016-04-12 21:58:03 UTC (rev 264787)
@@ -3,7 +3,7 @@
 # Contributor: Jan de Groot 
 
 pkgname=gnome-system-monitor
-pkgver=3.20.0
+pkgver=3.20.1
 pkgrel=1
 pkgdesc="A system monitor for GNOME"
 arch=(i686 x86_64)
@@ -15,7 +15,7 @@
 groups=('gnome')
 install=gnome-system-monitor.install
 
source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('00981b6334ab35cfa186013f1ea0f815bc472c49da4b6764dd716f87e4b49033')
+sha256sums=('9b23ab443fd92050b95c03a0ab321bbd41696a0ffc89c06e79c8798dca0a44f9')
 
 build() {
   cd $pkgname-$pkgver


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

2016-04-12 Thread Jan Steffens
Date: Tuesday, April 12, 2016 @ 23:57:20
  Author: heftig
Revision: 264785

3.20.1-1

Modified:
  gnome-online-accounts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-12 21:56:32 UTC (rev 264784)
+++ PKGBUILD2016-04-12 21:57:20 UTC (rev 264785)
@@ -2,7 +2,7 @@
 # Maintainer: Ionut Biru 
 
 pkgname=gnome-online-accounts
-pkgver=3.20.0
+pkgver=3.20.1
 pkgrel=1
 pkgdesc="GNOME service to access online accounts"
 arch=(i686 x86_64)
@@ -14,7 +14,7 @@
 'gvfs-google: Google Drive')
 install=$pkgname.install
 
source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('c98233914c455dc21f8c73904dd2881bee6bfa117a5bdc573ba3a8550c36a460')
+sha256sums=('c37aebc1e12f31f5516d33a354181e4d202a07da4f7d3a95b0da8cf0028c0c93')
 
 build() {
   cd $pkgname-$pkgver


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

2016-04-12 Thread Jan Steffens
Date: Tuesday, April 12, 2016 @ 23:57:41
  Author: heftig
Revision: 264786

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

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

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

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

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

Deleted: extra-i686/vinagre.install
===
--- extra-i686/vinagre.install  2016-04-12 21:57:20 UTC (rev 264785)
+++ extra-i686/vinagre.install  2016-04-12 21:57:41 UTC (rev 264786)
@@ -1,14 +0,0 @@
-post_install() {
-  glib-compile-schemas /usr/share/glib-2.0/schemas
-  update-desktop-database -q
-  gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
-  update-mime-database usr/share/mime > /dev/null
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: vinagre/repos/extra-i686/vinagre.install (from rev 264785, 
vinagre/trunk/vinagre.install)
===
--- extra-i686/vinagre.install  (rev 0)
+++ extra-i686/vinagre.install  2016-04-12 21:57:41 UTC (rev 264786)
@@ -0,0 +1,14 @@
+post_install() {
+  glib-compile-schemas /usr/share/glib-2.0/schemas
+  update-desktop-database -q
+  gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+  update-mime-database usr/share/mime > /dev/null
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {

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

2016-04-12 Thread Jan Steffens
Date: Tuesday, April 12, 2016 @ 23:56:32
  Author: heftig
Revision: 264784

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-04-12 21:56:06 UTC (rev 264783)
+++ extra-i686/PKGBUILD 2016-04-12 21:56:32 UTC (rev 264784)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru 
-
-pkgbase=vte3
-pkgname=(vte3 vte-common)
-pkgver=0.44.0
-pkgrel=1
-pkgdesc="Virtual Terminal Emulator widget for use with GTK3"
-arch=('i686' 'x86_64')
-license=('LGPL')
-options=('!emptydirs')
-makedepends=('intltool' 'gobject-introspection' 'gtk3' 'vala' 'glade')
-url="http://www.gnome.org;
-source=(http://download.gnome.org/sources/vte/${pkgver::4}/vte-$pkgver.tar.xz)
-sha256sums=('93a3b1a71a885f416a119a5a8fb27b8f36bb176b8d0bec5e48188d1db5ef12aa')
-
-build() {
-  cd "vte-$pkgver"
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --libexecdir=/usr/lib/vte \
-  --localstatedir=/var --disable-static \
-  --enable-introspection --enable-glade-catalogue
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-package_vte3(){
-  depends=('gtk3' 'vte-common')
-  cd "vte-$pkgver"
-  make DESTDIR="$pkgdir" install
-
-  rm "$pkgdir"/etc/profile.d/vte.sh
-}
-
-package_vte-common() {
-  pkgdesc="Common files used by vte and vte3"
-  cd "vte-$pkgver"
-
-  install -Dm644 src/vte.sh "$pkgdir"/etc/profile.d/vte.sh
-}

Copied: vte3/repos/extra-i686/PKGBUILD (from rev 264783, vte3/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-04-12 21:56:32 UTC (rev 264784)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Ionut Biru 
+
+pkgbase=vte3
+pkgname=(vte3 vte-common)
+pkgver=0.44.1
+pkgrel=1
+pkgdesc="Virtual Terminal Emulator widget for use with GTK3"
+arch=('i686' 'x86_64')
+license=('LGPL')
+options=('!emptydirs')
+makedepends=('intltool' 'gobject-introspection' 'gtk3' 'vala' 'glade')
+url="http://www.gnome.org;
+source=(http://download.gnome.org/sources/vte/${pkgver::4}/vte-$pkgver.tar.xz)
+sha256sums=('712dd548339f600fd7e221d12b2670a13a4361b2cd23ba0e057e76cc19fe5d4e')
+
+build() {
+  cd "vte-$pkgver"
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --libexecdir=/usr/lib/vte \
+  --localstatedir=/var --disable-static \
+  --enable-introspection --enable-glade-catalogue
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package_vte3(){
+  depends=('gtk3' 'vte-common')
+  cd "vte-$pkgver"
+  make DESTDIR="$pkgdir" install
+
+  rm "$pkgdir"/etc/profile.d/vte.sh
+}
+
+package_vte-common() {
+  pkgdesc="Common files used by vte and vte3"
+  cd "vte-$pkgver"
+
+  install -Dm644 src/vte.sh "$pkgdir"/etc/profile.d/vte.sh
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-04-12 21:56:06 UTC (rev 264783)
+++ extra-x86_64/PKGBUILD   2016-04-12 21:56:32 UTC (rev 264784)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru 
-
-pkgbase=vte3
-pkgname=(vte3 vte-common)
-pkgver=0.44.0
-pkgrel=1
-pkgdesc="Virtual Terminal Emulator widget for use with GTK3"
-arch=('i686' 'x86_64')
-license=('LGPL')
-options=('!emptydirs')
-makedepends=('intltool' 'gobject-introspection' 'gtk3' 'vala' 'glade')
-url="http://www.gnome.org;
-source=(http://download.gnome.org/sources/vte/${pkgver::4}/vte-$pkgver.tar.xz)
-sha256sums=('93a3b1a71a885f416a119a5a8fb27b8f36bb176b8d0bec5e48188d1db5ef12aa')
-
-build() {
-  cd "vte-$pkgver"
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --libexecdir=/usr/lib/vte \
-  --localstatedir=/var --disable-static \
-  --enable-introspection --enable-glade-catalogue
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-package_vte3(){
-  depends=('gtk3' 'vte-common')
-  cd "vte-$pkgver"
-  make DESTDIR="$pkgdir" install
-
-  rm "$pkgdir"/etc/profile.d/vte.sh
-}
-
-package_vte-common() {
-  pkgdesc="Common files used by vte and vte3"
-  cd "vte-$pkgver"
-
-  install -Dm644 src/vte.sh "$pkgdir"/etc/profile.d/vte.sh
-}

Copied: vte3/repos/extra-x86_64/PKGBUILD (from rev 264783, vte3/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-04-12 

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

2016-04-12 Thread Jan Steffens
Date: Tuesday, April 12, 2016 @ 23:56:06
  Author: heftig
Revision: 264783

3.20.1-1

Modified:
  yelp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-12 21:55:33 UTC (rev 264782)
+++ PKGBUILD2016-04-12 21:56:06 UTC (rev 264783)
@@ -3,7 +3,7 @@
 # Contributor: Jan de Groot 
 
 pkgname=yelp
-pkgver=3.20.0
+pkgver=3.20.1
 pkgrel=1
 pkgdesc="A help browser for GNOME"
 arch=('i686' 'x86_64')
@@ -16,7 +16,7 @@
 url="http://www.gnome.org;
 install=yelp.install
 
source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('bf1543d2c51199c75674bb3b35e9e5a6ccad96cf732c985cb468e447a525803c')
+sha256sums=('dda0b051ad32908cb9d894d1db3ffdac69b21849b8a6a9a74d9669b017f608c2')
 
 build() {
   cd $pkgname-$pkgver


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

2016-04-12 Thread Jan Steffens
Date: Tuesday, April 12, 2016 @ 23:55:33
  Author: heftig
Revision: 264782

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

Added:
  gnome-session/repos/extra-i686/PKGBUILD
(from rev 264781, gnome-session/trunk/PKGBUILD)
  gnome-session/repos/extra-i686/gnome-session.install
(from rev 264781, gnome-session/trunk/gnome-session.install)
  gnome-session/repos/extra-i686/timeout.patch
(from rev 264781, gnome-session/trunk/timeout.patch)
  gnome-session/repos/extra-x86_64/PKGBUILD
(from rev 264781, gnome-session/trunk/PKGBUILD)
  gnome-session/repos/extra-x86_64/gnome-session.install
(from rev 264781, gnome-session/trunk/gnome-session.install)
  gnome-session/repos/extra-x86_64/timeout.patch
(from rev 264781, gnome-session/trunk/timeout.patch)
Deleted:
  
gnome-session/repos/extra-i686/0001-main-fix-starting-gnome-session-via-startx.patch
  gnome-session/repos/extra-i686/PKGBUILD
  gnome-session/repos/extra-i686/gnome-session.install
  gnome-session/repos/extra-i686/timeout.patch
  
gnome-session/repos/extra-x86_64/0001-main-fix-starting-gnome-session-via-startx.patch
  gnome-session/repos/extra-x86_64/PKGBUILD
  gnome-session/repos/extra-x86_64/gnome-session.install
  gnome-session/repos/extra-x86_64/timeout.patch

+
 /PKGBUILD  |   78 
++
 /gnome-session.install |   24 +++
 /timeout.patch |   48 
++
 extra-i686/0001-main-fix-starting-gnome-session-via-startx.patch   |   66 

 extra-i686/PKGBUILD|   43 -
 extra-i686/gnome-session.install   |   12 -
 extra-i686/timeout.patch   |   24 ---
 extra-x86_64/0001-main-fix-starting-gnome-session-via-startx.patch |   66 

 extra-x86_64/PKGBUILD  |   43 -
 extra-x86_64/gnome-session.install |   12 -
 extra-x86_64/timeout.patch |   24 ---
 11 files changed, 150 insertions(+), 290 deletions(-)

Deleted: extra-i686/0001-main-fix-starting-gnome-session-via-startx.patch
===
--- extra-i686/0001-main-fix-starting-gnome-session-via-startx.patch
2016-04-12 21:54:44 UTC (rev 264781)
+++ extra-i686/0001-main-fix-starting-gnome-session-via-startx.patch
2016-04-12 21:55:33 UTC (rev 264782)
@@ -1,66 +0,0 @@
-From 2d2dcf3354701aa663d08e8337c608e245a9f2c1 Mon Sep 17 00:00:00 2001
-From: Andreas Henriksson 
-Date: Wed, 30 Mar 2016 18:49:15 +0200
-Subject: [PATCH] main: fix starting gnome session via startx
-
-The changes related to gsm_util_setenv during 3.19.x seems to have
-broken starting a gnome desktop the old fashioned way, eg. via startx.
-
-The gnome.session required components has OnlyShowIn=GNOME; which
-disqualifies them from being started unless XDG_CURRENT_DESKTOP is also
-set to GNOME (by the gio utility function used to look up info).
-
-Currently gnome-session already carries code to catch the case of
-XDG_CURRENT_DESKTOP being unset and set it to GNOME as a fallback.
-Unfortunately the changes to gsm_util_setenv seems to have made it only
-set the values in the (dbus activated) child environment, rather than
-the current environment which g_desktop_app_info_get_show_in is looking
-at.
-
-Make the fallback code set XDG_CURRENT_DESKTOP in both current
-and child environment fixes it.
-Also move the entire hunk of code before initializing gio to
-prevent potential thread issues, now that is uses g_setenv.
-
-https://bugzilla.gnome.org/show_bug.cgi?id=764379

- gnome-session/main.c | 16 +---
- 1 file changed, 9 insertions(+), 7 deletions(-)
-
-diff --git a/gnome-session/main.c b/gnome-session/main.c
-index 14b201b..9f3ca0f 100644
 a/gnome-session/main.c
-+++ b/gnome-session/main.c
-@@ -292,6 +292,15 @@ main (int argc, char **argv)
- gsm_util_init_error (TRUE, "%s", error->message);
- }
- 
-+/* From 3.14 GDM sets XDG_CURRENT_DESKTOP. For compatibility with
-+ * older versions of GDM,  other display managers, and startx,
-+ * set a fallback value if we don't find it set.
-+ */
-+if (g_getenv ("XDG_CURRENT_DESKTOP") == NULL) {
-+g_setenv("XDG_CURRENT_DESKTOP", "GNOME", TRUE);
-+gsm_util_setenv ("XDG_CURRENT_DESKTOP", "GNOME");
-+}
-+
- /* Make sure we initialize gio in a way that does not autostart any 
daemon */
- initialize_gio ();
- 
-@@ -375,13 +384,6 @@ main (int argc, char **argv)
- exit (1);
- }
- 
--/* From 3.14 GDM sets XDG_CURRENT_DESKTOP. For compatibility with
-- * older versions of GDM,  

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

2016-04-12 Thread Jan Steffens
Date: Tuesday, April 12, 2016 @ 23:54:09
  Author: heftig
Revision: 264778

3.20.1-1

Modified:
  geocode-glib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-12 21:53:11 UTC (rev 264777)
+++ PKGBUILD2016-04-12 21:54:09 UTC (rev 264778)
@@ -2,7 +2,7 @@
 #Maintainer: Jan de Groot 
 
 pkgname=geocode-glib
-pkgver=3.20.0
+pkgver=3.20.1
 pkgrel=1
 pkgdesc="Geocode Helper library"
 arch=(i686 x86_64)
@@ -12,7 +12,7 @@
 makedepends=('intltool' 'gobject-introspection')
 options=('!emptydirs')
 
source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('5f2264238e9481a95ca260ba2c652bebd247ec1852a27ded5b126117eb1bb6ba')
+sha256sums=('669fc832cabf8cc2f0fc4194a8fa464cdb9c03ebf9aca5353d7cf935ba8637a2')
 
 build() {
   cd $pkgname-$pkgver


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

2016-04-12 Thread Jan Steffens
Date: Tuesday, April 12, 2016 @ 23:54:32
  Author: heftig
Revision: 264780

3.20.1-1

Modified:
  gnome-maps/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-12 21:54:29 UTC (rev 264779)
+++ PKGBUILD2016-04-12 21:54:32 UTC (rev 264780)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot 
 
 pkgname=gnome-maps
-pkgver=3.20.0
+pkgver=3.20.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=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('91827901fd7f88db99b3a0d8d45a8a0161568f5ebf48cd2ccead7735242d592e')
+sha256sums=('4874d10a3cfdffd5d1db6084d67b5e8dc8c2db2ff995302b80060ecfc5e99bd5')
 
 build() {
   cd $pkgname-$pkgver


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

2016-04-12 Thread Jan Steffens
Date: Tuesday, April 12, 2016 @ 23:54:44
  Author: heftig
Revision: 264781

3.20.1-1

Modified:
  yelp-xsl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-12 21:54:32 UTC (rev 264780)
+++ PKGBUILD2016-04-12 21:54:44 UTC (rev 264781)
@@ -2,7 +2,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgname=yelp-xsl
-pkgver=3.20.0
+pkgver=3.20.1
 pkgrel=1
 pkgdesc="Stylesheets for Yelp"
 arch=(any)
@@ -11,7 +11,7 @@
 options=('!emptydirs')
 url="http://www.gnome.org;
 
source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('9f327887853c40d7332dde8789ee58c0cf678186719cb905e57ae175b8434848')
+sha256sums=('dc61849e5dca473573d32e28c6c4e3cf9c1b6afe241f8c26e29539c415f97ba0')
 
 build() {
   cd $pkgname-$pkgver


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

2016-04-12 Thread Jan Steffens
Date: Tuesday, April 12, 2016 @ 23:54:29
  Author: heftig
Revision: 264779

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

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

-+
 /PKGBUILD   |   70 ++
 /cheese.install |   24 ++
 extra-i686/PKGBUILD |   35 -
 extra-i686/cheese.install   |   12 ---
 extra-x86_64/PKGBUILD   |   35 -
 extra-x86_64/cheese.install |   12 ---
 6 files changed, 94 insertions(+), 94 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-04-12 21:54:09 UTC (rev 264778)
+++ extra-i686/PKGBUILD 2016-04-12 21:54:29 UTC (rev 264779)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-
-pkgname=cheese
-pkgver=3.20.0
-pkgrel=1
-pkgdesc="Use your webcam to take photos and videos, apply fancy special 
effects and share the fun with others"
-arch=(i686 x86_64)
-license=('GPL')
-depends=('gtk3' 'gstreamer' 'gst-plugins-bad' 'gst-plugins-base' 
'gst-plugins-good' 'clutter-gst' 'clutter-gtk' 'libcanberra' 
'gnome-video-effects' 'librsvg' 'gnome-desktop' 'libgudev')
-makedepends=('pkgconfig' 'intltool' 'gobject-introspection' 'itstool' 'vala')
-optdepends=('frei0r-plugins: More camera effects')
-groups=('gnome-extra')
-options=('!emptydirs')
-url="http://www.gnome.org/projects/cheese/;
-install=cheese.install
-source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('41e2b16f0ad9bbc0f81b082fb42dc7978e52306be486637eaacb8d8f5a80caac')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
-  --disable-static --disable-schemas-compile --libexecdir=/usr/lib/cheese
-
-  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: cheese/repos/extra-i686/PKGBUILD (from rev 264778, 
cheese/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-04-12 21:54:29 UTC (rev 264779)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgname=cheese
+pkgver=3.20.1
+pkgrel=1
+pkgdesc="Use your webcam to take photos and videos, apply fancy special 
effects and share the fun with others"
+arch=(i686 x86_64)
+license=('GPL')
+depends=('gtk3' 'gstreamer' 'gst-plugins-bad' 'gst-plugins-base' 
'gst-plugins-good' 'clutter-gst' 'clutter-gtk' 'libcanberra' 
'gnome-video-effects' 'librsvg' 'gnome-desktop' 'libgudev')
+makedepends=('pkgconfig' 'intltool' 'gobject-introspection' 'itstool' 'vala')
+optdepends=('frei0r-plugins: More camera effects')
+groups=('gnome-extra')
+options=('!emptydirs')
+url="http://www.gnome.org/projects/cheese/;
+install=cheese.install
+source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('13b454a84be4032832e0bd9b3ec5b0a6ba50cf329800a212fd1133d95fa33a4c')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+  --disable-static --disable-schemas-compile --libexecdir=/usr/lib/cheese
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-i686/cheese.install
===
--- extra-i686/cheese.install   2016-04-12 21:54:09 UTC (rev 264778)
+++ extra-i686/cheese.install   2016-04-12 21:54:29 UTC (rev 264779)
@@ -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: cheese/repos/extra-i686/cheese.install (from rev 264778, 
cheese/trunk/cheese.install)
===
--- extra-i686/cheese.install   (rev 0)
+++ extra-i686/cheese.install   2016-04-12 21:54:29 UTC (rev 

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

2016-04-12 Thread Jan Steffens
Date: Tuesday, April 12, 2016 @ 23:53:11
  Author: heftig
Revision: 264777

3.20.1-1

Modified:
  gnome-devel-docs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-12 21:52:49 UTC (rev 264776)
+++ PKGBUILD2016-04-12 21:53:11 UTC (rev 264777)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot 
 
 pkgname=gnome-devel-docs
-pkgver=3.20.0
+pkgver=3.20.1
 pkgrel=1
 pkgdesc="Developer documentation for GNOME"
 arch=(any)
@@ -12,7 +12,7 @@
 url="http://www.gnome.org;
 groups=('gnome-extra')
 
source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('e1397b8ba0bf003e0fb5ccb721e102c96f17f833afe84ff7e32cdb3f65686a8e')
+sha256sums=('d0838a7901a2fdfd520aa22161b364d3c102da3c2c56bad091d758e3ec9ee846')
 
 build() {
   cd $pkgname-$pkgver


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

2016-04-12 Thread Jan Steffens
Date: Tuesday, April 12, 2016 @ 23:52:39
  Author: heftig
Revision: 170803

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

Added:
  gnome-software/repos/community-i686/PKGBUILD
(from rev 170802, gnome-software/trunk/PKGBUILD)
  gnome-software/repos/community-i686/gnome-software.install
(from rev 170802, gnome-software/trunk/gnome-software.install)
  gnome-software/repos/community-x86_64/PKGBUILD
(from rev 170802, gnome-software/trunk/PKGBUILD)
  gnome-software/repos/community-x86_64/gnome-software.install
(from rev 170802, gnome-software/trunk/gnome-software.install)
Deleted:
  gnome-software/repos/community-i686/PKGBUILD
  gnome-software/repos/community-i686/gnome-software.install
  gnome-software/repos/community-x86_64/PKGBUILD
  gnome-software/repos/community-x86_64/gnome-software.install

-+
 /PKGBUILD   |   66 ++
 /gnome-software.install |   26 +++
 community-i686/PKGBUILD |   33 ---
 community-i686/gnome-software.install   |   13 -
 community-x86_64/PKGBUILD   |   33 ---
 community-x86_64/gnome-software.install |   13 -
 6 files changed, 92 insertions(+), 92 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-04-12 21:50:27 UTC (rev 170802)
+++ community-i686/PKGBUILD 2016-04-12 21:52:39 UTC (rev 170803)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-# Contributor: Yosef Or Boczko 
-
-pkgname=gnome-software
-pkgver=3.20.0
-pkgrel=1
-pkgdesc="GNOME Software Tools"
-arch=(i686 x86_64)
-license=('GPL2')
-url="https://wiki.gnome.org/Apps/Software/;
-depends=(gtk3 appstream-glib libsoup gsettings-desktop-schemas gnome-desktop 
packagekit
- desktop-file-utils archlinux-appstream-data gtkspell3)
-makedepends=(intltool python)
-install=gnome-software.install
-source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('3d2e187b8f0c70e5b5e0841b123310bd3bf961a47e23fcca106a84ea92b80b70')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---disable-static --disable-schemas-compile
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="${pkgdir}" install
-
-  # Remove fedora-only plugins
-  rm "${pkgdir}"/usr/lib/gs-plugins-*/libgs_plugin_fedora_tagger*
-}

Copied: gnome-software/repos/community-i686/PKGBUILD (from rev 170802, 
gnome-software/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-04-12 21:52:39 UTC (rev 170803)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+# Contributor: Yosef Or Boczko 
+
+pkgname=gnome-software
+pkgver=3.20.1
+pkgrel=1
+pkgdesc="GNOME Software Tools"
+arch=(i686 x86_64)
+license=('GPL2')
+url="https://wiki.gnome.org/Apps/Software/;
+depends=(gtk3 appstream-glib libsoup gsettings-desktop-schemas gnome-desktop 
packagekit
+ desktop-file-utils archlinux-appstream-data gtkspell3)
+makedepends=(intltool python)
+install=gnome-software.install
+source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('c5f5db23322c4cd946cd20735ced01515e4756c3d8cae1f16d24b6bf13197bc6')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--disable-static --disable-schemas-compile
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="${pkgdir}" install
+
+  # Remove fedora-only plugins
+  rm "${pkgdir}"/usr/lib/gs-plugins-*/libgs_plugin_fedora_tagger*
+}

Deleted: community-i686/gnome-software.install
===
--- community-i686/gnome-software.install   2016-04-12 21:50:27 UTC (rev 
170802)
+++ community-i686/gnome-software.install   2016-04-12 21:52:39 UTC (rev 
170803)
@@ -1,13 +0,0 @@
-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-software/repos/community-i686/gnome-software.install (from rev 
170802, gnome-software/trunk/gnome-software.install)
===
--- community-i686/gnome-software.install   (rev 0)
+++ community-i686/gnome-software.install   2016-04-12 21:52:39 UTC (rev 
170803)
@@ -0,0 +1,13 @@

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

2016-04-12 Thread Jan Steffens
Date: Tuesday, April 12, 2016 @ 23:52:49
  Author: heftig
Revision: 264776

3.20.1-1

Modified:
  gnome-logs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-12 21:51:14 UTC (rev 264775)
+++ PKGBUILD2016-04-12 21:52:49 UTC (rev 264776)
@@ -2,7 +2,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgname=gnome-logs
-pkgver=3.20.0
+pkgver=3.20.1
 pkgrel=1
 pkgdesc="A log viewer for the systemd journal"
 arch=(i686 x86_64)
@@ -13,7 +13,7 @@
 makedepends=(intltool itstool)
 install=gnome-logs.install
 
source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('3f8856b84ac07720b71786056902f5d4040ccfa884f510677fbe953e681f3843')
+sha256sums=('b797841faac4e176c64497837de27b1b953d16d2482e8a773a48b38117b1367e')
 
 build() {
   cd $pkgname-$pkgver


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

2016-04-12 Thread Jan Steffens
Date: Tuesday, April 12, 2016 @ 23:51:14
  Author: heftig
Revision: 264775

3.20.1-1

Modified:
  gnome-user-docs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-12 21:51:13 UTC (rev 264774)
+++ PKGBUILD2016-04-12 21:51:14 UTC (rev 264775)
@@ -2,7 +2,7 @@
 # Maintainer: Ionut Biru 
 
 pkgname=gnome-user-docs
-pkgver=3.20.0
+pkgver=3.20.1
 pkgrel=1
 pkgdesc="User documentation for GNOME"
 arch=(any)
@@ -12,7 +12,7 @@
 url="http://www.gnome.org;
 groups=('gnome')
 
source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('97237c95f8df69e141f1603cf194ca7b1be8578b0a011c6b65358b7d2a785933')
+sha256sums=('89dca8f695a2880461ad1d60a6fc77a7bcefb0cd3fc5eaa6a1df84ff3e5ec0cd')
 
 build() {
   cd $pkgname-$pkgver


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

2016-04-12 Thread Jan Steffens
Date: Tuesday, April 12, 2016 @ 23:51:13
  Author: heftig
Revision: 264774

0.30.1-1

Modified:
  rygel/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-12 21:49:12 UTC (rev 264773)
+++ PKGBUILD2016-04-12 21:51:13 UTC (rev 264774)
@@ -3,8 +3,8 @@
 # Contributor: Balló György 
 
 pkgname=rygel
-pkgver=0.30.0
-pkgrel=2
+pkgver=0.30.1
+pkgrel=1
 pkgdesc="UPnP AV MediaServer and MediaRenderer that allows you to easily share 
audio, video and pictures, and control of media player on your home network"
 arch=(i686 x86_64)
 url="http://live.gnome.org/Rygel;
@@ -22,7 +22,7 @@
 groups=('gnome-extra')
 
source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz
 org.gnome.Rygel1.service rygel.service)
-sha256sums=('a5344ec726d21e2af1b43491fb3a90450733f2c716f1097eb1ca392b611b5683'
+sha256sums=('f4e188008f450c40d79bd5bb41c53c2db97301183dce414ef83eeb80f445c376'
 '0997df280adf182772e30613986c6fdbb4b76626182aa7ac03e4315f745499fe'
 '5fdb7b439e5b69407d0d1a24ee2543657a76ec39eb5d8a8271405b74a1fa9061')
 


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

2016-04-12 Thread Alexander Rødseth
Date: Tuesday, April 12, 2016 @ 23:50:27
  Author: arodseth
Revision: 170802

Builds, but not in a chroot. Add TODO comment.

Modified:
  jedit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-12 21:39:46 UTC (rev 170801)
+++ PKGBUILD2016-04-12 21:50:27 UTC (rev 170802)
@@ -6,6 +6,7 @@
 # Contributor: Dusty Phillips 
 
 # Does not currently build in a chroot.
+# TODO: move apache-ivy from AUR
 
 pkgname=jedit
 pkgver=5.3.0
@@ -15,7 +16,7 @@
 url='http://www.jedit.org/'
 license=('GPL')
 depends=('java-runtime' 'desktop-file-utils')
-makedepends=('apache-ant' 'gendesk' 'unzip' 'tar')
+makedepends=('apache-ant' 'gendesk' 'unzip' 'tar' 'maven' 'java-environment')
 optdepends=('java-environment: for java development'
 'noto-fonts: usable font')
 options=('!emptydirs')
@@ -42,7 +43,7 @@
 build() {
   cd jEdit
 
-  ant dist-java
+  ant -k dist-java
 }
 
 package() {


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

2016-04-12 Thread Jan Steffens
Date: Tuesday, April 12, 2016 @ 23:49:12
  Author: heftig
Revision: 264773

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

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

+
 /PKGBUILD  |   74 +++
 /pango.install |   16 +
 extra-i686/PKGBUILD|   37 -
 extra-i686/pango.install   |8 
 extra-x86_64/PKGBUILD  |   37 -
 extra-x86_64/pango.install |8 
 6 files changed, 90 insertions(+), 90 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-04-12 21:47:48 UTC (rev 264772)
+++ extra-i686/PKGBUILD 2016-04-12 21:49:12 UTC (rev 264773)
@@ -1,37 +0,0 @@
-# $Id$ 
-# Maintainer: Jan de Groot 
-
-pkgname=pango
-pkgver=1.40.0
-pkgrel=1
-pkgdesc="A library for layout and rendering of text"
-arch=('i686' 'x86_64')
-license=('LGPL')
-depends=('libthai' 'cairo' 'libxft' 'harfbuzz')
-makedepends=('harfbuzz' 'fontconfig' 'cairo' 'libxft' 'libthai' 
'gobject-introspection' 'help2man')
-checkdepends=('ttf-dejavu')
-install=pango.install
-source=(http://download.gnome.org/sources/${pkgname}/${pkgver:0:4}/${pkgname}-${pkgver}.tar.xz)
-url="http://www.pango.org/;
-sha256sums=('da17985df314cb07d066ab5424f59c21ce973ece05b7de4df04d798ec8511c8b')
-
-build() {
-  cd ${pkgname}-${pkgver}
-
-  rm -f pango-view/pango-view.1.in
-
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --with-included-modules=basic-fc
-  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 -j1 DESTDIR="${pkgdir}" install
-}

Copied: pango/repos/extra-i686/PKGBUILD (from rev 264772, pango/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-04-12 21:49:12 UTC (rev 264773)
@@ -0,0 +1,37 @@
+# $Id$ 
+# Maintainer: Jan de Groot 
+
+pkgname=pango
+pkgver=1.40.1
+pkgrel=1
+pkgdesc="A library for layout and rendering of text"
+arch=('i686' 'x86_64')
+license=('LGPL')
+depends=('libthai' 'cairo' 'libxft' 'harfbuzz')
+makedepends=('harfbuzz' 'fontconfig' 'cairo' 'libxft' 'libthai' 
'gobject-introspection' 'help2man')
+checkdepends=('ttf-dejavu')
+install=pango.install
+source=(http://download.gnome.org/sources/${pkgname}/${pkgver:0:4}/${pkgname}-${pkgver}.tar.xz)
+url="http://www.pango.org/;
+sha256sums=('e27af54172c72b3ac6be53c9a4c67053e16c905e02addcf3a603ceb2005c1a40')
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  rm -f pango-view/pango-view.1.in
+
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --with-included-modules=basic-fc
+  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 -j1 DESTDIR="${pkgdir}" install
+}

Deleted: extra-i686/pango.install
===
--- extra-i686/pango.install2016-04-12 21:47:48 UTC (rev 264772)
+++ extra-i686/pango.install2016-04-12 21:49:12 UTC (rev 264773)
@@ -1,8 +0,0 @@
-post_upgrade() {
-   if [ -f usr/etc/pango/pango.modules ]; then
-   rm usr/etc/pango/pango.modules
-   fi
-   if [ -f etc/pango/pango.modules ]; then
-   rm etc/pango/pango.modules
-   fi
-}

Copied: pango/repos/extra-i686/pango.install (from rev 264772, 
pango/trunk/pango.install)
===
--- extra-i686/pango.install(rev 0)
+++ extra-i686/pango.install2016-04-12 21:49:12 UTC (rev 264773)
@@ -0,0 +1,8 @@
+post_upgrade() {
+   if [ -f usr/etc/pango/pango.modules ]; then
+   rm usr/etc/pango/pango.modules
+   fi
+   if [ -f etc/pango/pango.modules ]; then
+   rm etc/pango/pango.modules
+   fi
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-04-12 21:47:48 UTC (rev 264772)
+++ extra-x86_64/PKGBUILD   2016-04-12 21:49:12 UTC (rev 264773)
@@ -1,37 +0,0 @@
-# $Id$ 
-# Maintainer: Jan de Groot 
-
-pkgname=pango
-pkgver=1.40.0
-pkgrel=1
-pkgdesc="A library 

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

2016-04-12 Thread Jan Steffens
Date: Tuesday, April 12, 2016 @ 23:47:48
  Author: heftig
Revision: 264772

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-04-12 21:46:30 UTC (rev 264771)
+++ extra-i686/PKGBUILD 2016-04-12 21:47:48 UTC (rev 264772)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-
-pkgname=gnome-nibbles
-pkgver=3.20.0
-pkgrel=1
-pkgdesc="Guide a worm around a maze"
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('hicolor-icon-theme' 'clutter-gtk' 'libcanberra' 'librsvg' 
'libgames-support' 'libgee')
-makedepends=('intltool' 'itstool' 'gobject-introspection')
-conflicts=('gnome-games')
-replaces=('gnome-games')
-options=('!emptydirs')
-install=gnome-nibbles.install
-url="https://wiki.gnome.org/Apps/Nibbles;
-groups=('gnome-extra')
-source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('9773077d73c2c58be3ef546457228d74b1e61cd1501ca213d6d5fbc1b0d478cc')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
-  --disable-schemas-compile
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: gnome-nibbles/repos/extra-i686/PKGBUILD (from rev 264771, 
gnome-nibbles/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-04-12 21:47:48 UTC (rev 264772)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgname=gnome-nibbles
+pkgver=3.20.1
+pkgrel=1
+pkgdesc="Guide a worm around a maze"
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('hicolor-icon-theme' 'clutter-gtk' 'libcanberra' 'librsvg' 
'libgames-support' 'libgee')
+makedepends=('intltool' 'itstool' 'gobject-introspection')
+conflicts=('gnome-games')
+replaces=('gnome-games')
+options=('!emptydirs')
+install=gnome-nibbles.install
+url="https://wiki.gnome.org/Apps/Nibbles;
+groups=('gnome-extra')
+source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('2de5929f1a26d1e4afe2a0d6d8b832a2d0a6ebd631943a5824f1cd8c67d286d7')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+  --disable-schemas-compile
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-i686/gnome-nibbles.install
===
--- extra-i686/gnome-nibbles.install2016-04-12 21:46:30 UTC (rev 264771)
+++ extra-i686/gnome-nibbles.install2016-04-12 21:47:48 UTC (rev 264772)
@@ -1,12 +0,0 @@
-post_install() {
-  glib-compile-schemas usr/share/glib-2.0/schemas
-  gtk-update-icon-cache -q -f usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: gnome-nibbles/repos/extra-i686/gnome-nibbles.install (from rev 264771, 
gnome-nibbles/trunk/gnome-nibbles.install)
===
--- extra-i686/gnome-nibbles.install(rev 0)
+++ extra-i686/gnome-nibbles.install2016-04-12 21:47:48 UTC (rev 264772)
@@ -0,0 +1,12 @@
+post_install() {
+  glib-compile-schemas usr/share/glib-2.0/schemas
+  gtk-update-icon-cache -q -f usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-04-12 21:46:30 UTC (rev 264771)
+++ extra-x86_64/PKGBUILD   

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

2016-04-12 Thread Jan Steffens
Date: Tuesday, April 12, 2016 @ 23:46:30
  Author: heftig
Revision: 264771

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-04-12 21:46:07 UTC (rev 264770)
+++ extra-i686/PKGBUILD 2016-04-12 21:46:30 UTC (rev 264771)
@@ -1,24 +0,0 @@
-# $Id:
-# Maintainer: Jan de Groot 
-pkgname=gspell
-pkgver=1.0.0
-pkgrel=1
-pkgdesc="a flexible API to implement the spell checking in a GTK+ application"
-arch=('i686' 'x86_64')
-url="https://wiki.gnome.org/Projects/gspell;
-license=('GPL2')
-depends=('gtk3' 'enchant' 'libxml2' 'iso-codes')
-makedepends=('intltool' 'gobject-introspection' 'vala')
-source=("https://download.gnome.org/sources/gspell/${pkgver:0:3}/gspell-${pkgver}.tar.xz;)
-sha256sums=('6a50257c871c318445881c115bdd11bb8da6672f7d5b99e96c2e7b5c00f077da')
-
-build() {
-  cd "$pkgname-$pkgver"
-  ./configure  --prefix=/usr
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-package(){
-  cd "$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}

Copied: gspell/repos/extra-i686/PKGBUILD (from rev 264770, 
gspell/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-04-12 21:46:30 UTC (rev 264771)
@@ -0,0 +1,24 @@
+# $Id$
+# Maintainer: Jan de Groot 
+pkgname=gspell
+pkgver=1.0.1
+pkgrel=1
+pkgdesc="a flexible API to implement the spell checking in a GTK+ application"
+arch=('i686' 'x86_64')
+url="https://wiki.gnome.org/Projects/gspell;
+license=('GPL2')
+depends=('gtk3' 'enchant' 'libxml2' 'iso-codes')
+makedepends=('intltool' 'gobject-introspection' 'vala')
+source=("https://download.gnome.org/sources/gspell/${pkgver:0:3}/gspell-${pkgver}.tar.xz;)
+sha256sums=('22cd0545351801a83c0da8da5baa6755b9032654c1bea95e116458066f7bc71b')
+
+build() {
+  cd "$pkgname-$pkgver"
+  ./configure  --prefix=/usr
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+package(){
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-04-12 21:46:07 UTC (rev 264770)
+++ extra-x86_64/PKGBUILD   2016-04-12 21:46:30 UTC (rev 264771)
@@ -1,24 +0,0 @@
-# $Id:
-# Maintainer: Jan de Groot 
-pkgname=gspell
-pkgver=1.0.0
-pkgrel=1
-pkgdesc="a flexible API to implement the spell checking in a GTK+ application"
-arch=('i686' 'x86_64')
-url="https://wiki.gnome.org/Projects/gspell;
-license=('GPL2')
-depends=('gtk3' 'enchant' 'libxml2' 'iso-codes')
-makedepends=('intltool' 'gobject-introspection' 'vala')
-source=("https://download.gnome.org/sources/gspell/${pkgver:0:3}/gspell-${pkgver}.tar.xz;)
-sha256sums=('6a50257c871c318445881c115bdd11bb8da6672f7d5b99e96c2e7b5c00f077da')
-
-build() {
-  cd "$pkgname-$pkgver"
-  ./configure  --prefix=/usr
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-package(){
-  cd "$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}

Copied: gspell/repos/extra-x86_64/PKGBUILD (from rev 264770, 
gspell/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-04-12 21:46:30 UTC (rev 264771)
@@ -0,0 +1,24 @@
+# $Id$
+# Maintainer: Jan de Groot 
+pkgname=gspell
+pkgver=1.0.1
+pkgrel=1
+pkgdesc="a flexible API to implement the spell checking in a GTK+ application"
+arch=('i686' 'x86_64')
+url="https://wiki.gnome.org/Projects/gspell;
+license=('GPL2')
+depends=('gtk3' 'enchant' 'libxml2' 'iso-codes')
+makedepends=('intltool' 'gobject-introspection' 'vala')
+source=("https://download.gnome.org/sources/gspell/${pkgver:0:3}/gspell-${pkgver}.tar.xz;)
+sha256sums=('22cd0545351801a83c0da8da5baa6755b9032654c1bea95e116458066f7bc71b')
+
+build() {
+  cd "$pkgname-$pkgver"
+  ./configure  --prefix=/usr
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+package(){
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}


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

2016-04-12 Thread Jan Steffens
Date: Tuesday, April 12, 2016 @ 23:46:07
  Author: heftig
Revision: 264770

3.20.1-1

Modified:
  gnome-terminal/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-12 21:45:43 UTC (rev 264769)
+++ PKGBUILD2016-04-12 21:46:07 UTC (rev 264770)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot 
 
 pkgname=gnome-terminal
-pkgver=3.20.0
+pkgver=3.20.1
 pkgrel=1
 pkgdesc="The GNOME Terminal Emulator"
 arch=(i686 x86_64)
@@ -16,7 +16,7 @@
 groups=('gnome')
 install=gnome-terminal.install
 
source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('2fe7f6bd3ca4e93ce156f83e673b9e8c3f0155b6bc603e109edc942718eb4150')
+sha256sums=('98b7f48b13b37f05c92aa6b09006f608985efaf5440a1d76c28eda5f46b50894')
 
 build() {
   cd $pkgname-$pkgver


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

2016-04-12 Thread Jan Steffens
Date: Tuesday, April 12, 2016 @ 23:45:43
  Author: heftig
Revision: 264769

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

Added:
  epiphany/repos/extra-i686/PKGBUILD
(from rev 264767, epiphany/trunk/PKGBUILD)
  epiphany/repos/extra-i686/epiphany.install
(from rev 264767, epiphany/trunk/epiphany.install)
  epiphany/repos/extra-x86_64/PKGBUILD
(from rev 264768, epiphany/trunk/PKGBUILD)
  epiphany/repos/extra-x86_64/epiphany.install
(from rev 264768, epiphany/trunk/epiphany.install)
Deleted:
  epiphany/repos/extra-i686/PKGBUILD
  epiphany/repos/extra-i686/epiphany.install
  epiphany/repos/extra-x86_64/PKGBUILD
  epiphany/repos/extra-x86_64/epiphany.install

---+
 /PKGBUILD |   66 
 /epiphany.install |   26 +++
 extra-i686/PKGBUILD   |   33 
 extra-i686/epiphany.install   |   13 ---
 extra-x86_64/PKGBUILD |   33 
 extra-x86_64/epiphany.install |   13 ---
 6 files changed, 92 insertions(+), 92 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-04-12 21:45:28 UTC (rev 264768)
+++ extra-i686/PKGBUILD 2016-04-12 21:45:43 UTC (rev 264769)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=epiphany
-pkgver=3.20.1
-pkgrel=1
-install=epiphany.install
-pkgdesc="A GNOME web browser based on the WebKit rendering engine."
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('libsoup' 'libnotify' 'gsettings-desktop-schemas' 'webkit2gtk' 'nss' 
'iso-codes' 'dconf' 'desktop-file-utils' 'gcr' 'gnome-desktop' 'libwnck3' 
'gnome-themes-standard')
-makedepends=('intltool' 'itstool' 'docbook-xml' 'startup-notification' 
'gobject-introspection')
-options=('!emptydirs')
-groups=('gnome')
-url="https://wiki.gnome.org/Apps/Web;
-source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('7171f67d5edde0e82b8bad4761638622aa969d6ffcea896cd94bbe509af9c9e7')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --libexecdir=/usr/lib/$pkgname
-
-  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: epiphany/repos/extra-i686/PKGBUILD (from rev 264767, 
epiphany/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-04-12 21:45:43 UTC (rev 264769)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=epiphany
+pkgver=3.20.1
+pkgrel=1
+install=epiphany.install
+pkgdesc="A GNOME web browser based on the WebKit rendering engine."
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('libsoup' 'libnotify' 'gsettings-desktop-schemas' 'webkit2gtk' 'nss' 
'iso-codes' 'dconf' 'desktop-file-utils' 'gcr' 'gnome-desktop' 'libwnck3' 
'gnome-themes-standard')
+makedepends=('intltool' 'itstool' 'docbook-xml' 'startup-notification' 
'gobject-introspection')
+options=('!emptydirs')
+groups=('gnome')
+url="https://wiki.gnome.org/Apps/Web;
+source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('7171f67d5edde0e82b8bad4761638622aa969d6ffcea896cd94bbe509af9c9e7')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --libexecdir=/usr/lib/$pkgname
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-i686/epiphany.install
===
--- extra-i686/epiphany.install 2016-04-12 21:45:28 UTC (rev 264768)
+++ extra-i686/epiphany.install 2016-04-12 21:45:43 UTC (rev 264769)
@@ -1,13 +0,0 @@
-post_install() {
-glib-compile-schemas /usr/share/glib-2.0/schemas
-update-desktop-database -q
-gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-post_install
-}

Copied: epiphany/repos/extra-i686/epiphany.install (from rev 264767, 
epiphany/trunk/epiphany.install)
===
--- extra-i686/epiphany.install (rev 0)
+++ extra-i686/epiphany.install 2016-04-12 21:45:43 UTC (rev 264769)
@@ -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
+}

Deleted: 

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

2016-04-12 Thread Jan Steffens
Date: Tuesday, April 12, 2016 @ 23:45:28
  Author: heftig
Revision: 264768

3.20.1-1

Modified:
  vino/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-12 21:44:24 UTC (rev 264767)
+++ PKGBUILD2016-04-12 21:45:28 UTC (rev 264768)
@@ -3,7 +3,7 @@
 # Contributor: Jan de Groot 
 
 pkgname=vino
-pkgver=3.20.0
+pkgver=3.20.1
 pkgrel=1
 pkgdesc="a VNC server for the GNOME desktop"
 arch=(i686 x86_64)
@@ -15,7 +15,7 @@
 options=(!emptydirs)
 install=vino.install
 
source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('ed61d0ba18d9b21a4151c23dd76f17d45d6e66b621a9389578daf88a9266a367')
+sha256sums=('d7f4a6d58ae864904487ce6b8f298a6f51268e9148be377e64134aa542b15fc7')
 
 build() {
   cd $pkgname-$pkgver


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

2016-04-12 Thread Jan Steffens
Date: Tuesday, April 12, 2016 @ 23:44:24
  Author: heftig
Revision: 264767

3.20.1-1

Modified:
  evolution-data-server/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-12 21:43:29 UTC (rev 264766)
+++ PKGBUILD2016-04-12 21:44:24 UTC (rev 264767)
@@ -2,8 +2,8 @@
 # Maintainer: Jan de Groot 
 
 pkgname=evolution-data-server
-pkgver=3.20.0
-pkgrel=2
+pkgver=3.20.1
+pkgrel=1
 pkgdesc="Centralized access to appointments and contacts"
 arch=(i686 x86_64)
 depends=(gnome-online-accounts nss krb5 libgweather libical db libgdata 
libphonenumber webkitgtk)
@@ -12,7 +12,7 @@
 url="https://wiki.gnome.org/Apps/Evolution;
 license=(GPL)
 
source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('05f2e84fd5b02f9a526ffd549753af564f54c56047b5126aeecb28a8a0fa4f4b')
+sha256sums=('1dfbf6b45656c202f3d68212afb11710e40188db84748d3e487a89ccd4874b53')
 
 build() {
   cd "$pkgname-$pkgver"


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

2016-04-12 Thread Jan Steffens
Date: Tuesday, April 12, 2016 @ 23:43:29
  Author: heftig
Revision: 264766

3.20.1-1

Modified:
  vinagre/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-12 21:43:22 UTC (rev 264765)
+++ PKGBUILD2016-04-12 21:43:29 UTC (rev 264766)
@@ -5,7 +5,7 @@
 # Contributor: lp76 
 
 pkgname=vinagre
-pkgver=3.20.0
+pkgver=3.20.1
 pkgrel=1
 pkgdesc="A VNC Client for the GNOME Desktop"
 arch=(i686 x86_64)
@@ -19,7 +19,7 @@
 groups=(gnome-extra)
 options=('!emptydirs')
 
source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('0525e08eb6f70e8e3c436d474cbf2ee92f9fa8418bd0b56eb2e4fd36dc96f55a')
+sha256sums=('0dc2038776cf58097baec16aef9d9eb1b4cf1ed9a4973e2c2ead3415cbbcb172')
 
 build() {
   cd $pkgname-$pkgver


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

2016-04-12 Thread Jan Steffens
Date: Tuesday, April 12, 2016 @ 23:43:22
  Author: heftig
Revision: 264765

0.44.1-1

Modified:
  vte3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-12 21:42:47 UTC (rev 264764)
+++ PKGBUILD2016-04-12 21:43:22 UTC (rev 264765)
@@ -3,7 +3,7 @@
 
 pkgbase=vte3
 pkgname=(vte3 vte-common)
-pkgver=0.44.0
+pkgver=0.44.1
 pkgrel=1
 pkgdesc="Virtual Terminal Emulator widget for use with GTK3"
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 makedepends=('intltool' 'gobject-introspection' 'gtk3' 'vala' 'glade')
 url="http://www.gnome.org;
 source=(http://download.gnome.org/sources/vte/${pkgver::4}/vte-$pkgver.tar.xz)
-sha256sums=('93a3b1a71a885f416a119a5a8fb27b8f36bb176b8d0bec5e48188d1db5ef12aa')
+sha256sums=('712dd548339f600fd7e221d12b2670a13a4361b2cd23ba0e057e76cc19fe5d4e')
 
 build() {
   cd "vte-$pkgver"


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

2016-04-12 Thread Jan Steffens
Date: Tuesday, April 12, 2016 @ 23:42:47
  Author: heftig
Revision: 264764

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

Added:
  libgames-support/repos/extra-i686/PKGBUILD
(from rev 264763, libgames-support/trunk/PKGBUILD)
  libgames-support/repos/extra-x86_64/PKGBUILD
(from rev 264763, libgames-support/trunk/PKGBUILD)
Deleted:
  libgames-support/repos/extra-i686/PKGBUILD
  libgames-support/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-04-12 21:42:03 UTC (rev 264763)
+++ extra-i686/PKGBUILD 2016-04-12 21:42:47 UTC (rev 264764)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=libgames-support
-pkgver=1.0
-pkgrel=1
-pkgdesc="Code shared between GNOME games"
-url="https://git.gnome.org/browse/libgames-support/;
-license=(LGPL)
-arch=(i686 x86_64)
-depends=(gtk3 libgee)
-makedepends=(gobject-introspection vala intltool)
-source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:3}/$pkgname-$pkgver.tar.xz)
-sha256sums=('187b665292baa8596cdcb75c45029a57ad358f93397bcb11b407c4501300160b')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --disable-static
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: libgames-support/repos/extra-i686/PKGBUILD (from rev 264763, 
libgames-support/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-04-12 21:42:47 UTC (rev 264764)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=libgames-support
+pkgver=1.0.1
+pkgrel=1
+pkgdesc="Code shared between GNOME games"
+url="https://git.gnome.org/browse/libgames-support/;
+license=(LGPL)
+arch=(i686 x86_64)
+depends=(gtk3 libgee)
+makedepends=(gobject-introspection vala intltool)
+source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:3}/$pkgname-$pkgver.tar.xz)
+sha256sums=('976c8a87a09c90c73dbbd6d72b4136b747c098e665060feb6ba40e53c8221091')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --disable-static
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-04-12 21:42:03 UTC (rev 264763)
+++ extra-x86_64/PKGBUILD   2016-04-12 21:42:47 UTC (rev 264764)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=libgames-support
-pkgver=1.0
-pkgrel=1
-pkgdesc="Code shared between GNOME games"
-url="https://git.gnome.org/browse/libgames-support/;
-license=(LGPL)
-arch=(i686 x86_64)
-depends=(gtk3 libgee)
-makedepends=(gobject-introspection vala intltool)
-source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:3}/$pkgname-$pkgver.tar.xz)
-sha256sums=('187b665292baa8596cdcb75c45029a57ad358f93397bcb11b407c4501300160b')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --disable-static
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: libgames-support/repos/extra-x86_64/PKGBUILD (from rev 264763, 
libgames-support/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-04-12 21:42:47 UTC (rev 264764)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=libgames-support
+pkgver=1.0.1
+pkgrel=1
+pkgdesc="Code shared between GNOME games"
+url="https://git.gnome.org/browse/libgames-support/;
+license=(LGPL)
+arch=(i686 x86_64)
+depends=(gtk3 libgee)
+makedepends=(gobject-introspection vala intltool)
+source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:3}/$pkgname-$pkgver.tar.xz)
+sha256sums=('976c8a87a09c90c73dbbd6d72b4136b747c098e665060feb6ba40e53c8221091')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --disable-static
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}


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

2016-04-12 Thread Jan Steffens
Date: Tuesday, April 12, 2016 @ 23:41:57
  Author: heftig
Revision: 264762

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-04-12 21:41:23 UTC (rev 264761)
+++ extra-i686/PKGBUILD 2016-04-12 21:41:57 UTC (rev 264762)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-
-pkgname=gnome-robots
-pkgver=3.20.0.1
-pkgrel=1
-pkgdesc="Avoid the robots and make them crash into each other"
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('hicolor-icon-theme' 'gtk3' 'libcanberra' 'librsvg' 
'libgames-support')
-makedepends=('intltool' 'itstool' 'gobject-introspection')
-conflicts=('gnome-games')
-replaces=('gnome-games')
-options=('!emptydirs')
-install=gnome-robots.install
-url="https://live.gnome.org/Robots;
-groups=('gnome-extra')
-source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('7e1e2c75d963aceca5a07ec420e625d2c39870d17ad9ba4d352aa53a01f06bde')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
-  --disable-schemas-compile
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: gnome-robots/repos/extra-i686/PKGBUILD (from rev 264761, 
gnome-robots/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-04-12 21:41:57 UTC (rev 264762)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgname=gnome-robots
+pkgver=3.20.1
+pkgrel=1
+pkgdesc="Avoid the robots and make them crash into each other"
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('hicolor-icon-theme' 'gtk3' 'libcanberra' 'librsvg' 
'libgames-support')
+makedepends=('intltool' 'itstool' 'gobject-introspection')
+conflicts=('gnome-games')
+replaces=('gnome-games')
+options=('!emptydirs')
+install=gnome-robots.install
+url="https://live.gnome.org/Robots;
+groups=('gnome-extra')
+source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('df8682cc99c7aaac41c9e8f5cd57168c80ebf57ca57e4b749f16b4fed9710f05')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+  --disable-schemas-compile
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-i686/gnome-robots.install
===
--- extra-i686/gnome-robots.install 2016-04-12 21:41:23 UTC (rev 264761)
+++ extra-i686/gnome-robots.install 2016-04-12 21:41:57 UTC (rev 264762)
@@ -1,12 +0,0 @@
-post_install() {
-  glib-compile-schemas usr/share/glib-2.0/schemas
-  gtk-update-icon-cache -q -f usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: gnome-robots/repos/extra-i686/gnome-robots.install (from rev 264761, 
gnome-robots/trunk/gnome-robots.install)
===
--- extra-i686/gnome-robots.install (rev 0)
+++ extra-i686/gnome-robots.install 2016-04-12 21:41:57 UTC (rev 264762)
@@ -0,0 +1,12 @@
+post_install() {
+  glib-compile-schemas usr/share/glib-2.0/schemas
+  gtk-update-icon-cache -q -f usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-04-12 21:41:23 UTC (rev 264761)
+++ extra-x86_64/PKGBUILD   2016-04-12 21:41:57 UTC 

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

2016-04-12 Thread Jan Steffens
Date: Tuesday, April 12, 2016 @ 23:42:03
  Author: heftig
Revision: 264763

3.20.1-1

Modified:
  gnome-session/trunk/PKGBUILD
Deleted:
  gnome-session/trunk/0001-main-fix-starting-gnome-session-via-startx.patch

---+
 0001-main-fix-starting-gnome-session-via-startx.patch |   66 
 PKGBUILD  |   10 --
 2 files changed, 3 insertions(+), 73 deletions(-)

Deleted: 0001-main-fix-starting-gnome-session-via-startx.patch
===
--- 0001-main-fix-starting-gnome-session-via-startx.patch   2016-04-12 
21:41:57 UTC (rev 264762)
+++ 0001-main-fix-starting-gnome-session-via-startx.patch   2016-04-12 
21:42:03 UTC (rev 264763)
@@ -1,66 +0,0 @@
-From 2d2dcf3354701aa663d08e8337c608e245a9f2c1 Mon Sep 17 00:00:00 2001
-From: Andreas Henriksson 
-Date: Wed, 30 Mar 2016 18:49:15 +0200
-Subject: [PATCH] main: fix starting gnome session via startx
-
-The changes related to gsm_util_setenv during 3.19.x seems to have
-broken starting a gnome desktop the old fashioned way, eg. via startx.
-
-The gnome.session required components has OnlyShowIn=GNOME; which
-disqualifies them from being started unless XDG_CURRENT_DESKTOP is also
-set to GNOME (by the gio utility function used to look up info).
-
-Currently gnome-session already carries code to catch the case of
-XDG_CURRENT_DESKTOP being unset and set it to GNOME as a fallback.
-Unfortunately the changes to gsm_util_setenv seems to have made it only
-set the values in the (dbus activated) child environment, rather than
-the current environment which g_desktop_app_info_get_show_in is looking
-at.
-
-Make the fallback code set XDG_CURRENT_DESKTOP in both current
-and child environment fixes it.
-Also move the entire hunk of code before initializing gio to
-prevent potential thread issues, now that is uses g_setenv.
-
-https://bugzilla.gnome.org/show_bug.cgi?id=764379

- gnome-session/main.c | 16 +---
- 1 file changed, 9 insertions(+), 7 deletions(-)
-
-diff --git a/gnome-session/main.c b/gnome-session/main.c
-index 14b201b..9f3ca0f 100644
 a/gnome-session/main.c
-+++ b/gnome-session/main.c
-@@ -292,6 +292,15 @@ main (int argc, char **argv)
- gsm_util_init_error (TRUE, "%s", error->message);
- }
- 
-+/* From 3.14 GDM sets XDG_CURRENT_DESKTOP. For compatibility with
-+ * older versions of GDM,  other display managers, and startx,
-+ * set a fallback value if we don't find it set.
-+ */
-+if (g_getenv ("XDG_CURRENT_DESKTOP") == NULL) {
-+g_setenv("XDG_CURRENT_DESKTOP", "GNOME", TRUE);
-+gsm_util_setenv ("XDG_CURRENT_DESKTOP", "GNOME");
-+}
-+
- /* Make sure we initialize gio in a way that does not autostart any 
daemon */
- initialize_gio ();
- 
-@@ -375,13 +384,6 @@ main (int argc, char **argv)
- exit (1);
- }
- 
--/* From 3.14 GDM sets XDG_CURRENT_DESKTOP. For compatibility with
-- * older versions of GDM,  other display managers, and startx,
-- * set a fallback value if we don't find it set.
-- */
--if (g_getenv ("XDG_CURRENT_DESKTOP") == NULL)
--gsm_util_setenv ("XDG_CURRENT_DESKTOP", "GNOME");
--
- /* Push locale variables to dbus-daemon */
- maybe_push_env_var ("LC_TIME");
- maybe_push_env_var ("LC_NUMERIC");
--- 
-2.8.0
-

Modified: PKGBUILD
===
--- PKGBUILD2016-04-12 21:41:57 UTC (rev 264762)
+++ PKGBUILD2016-04-12 21:42:03 UTC (rev 264763)
@@ -2,8 +2,8 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgname=gnome-session
-pkgver=3.20.0
-pkgrel=2
+pkgver=3.20.1
+pkgrel=1
 pkgdesc="The GNOME Session Handler"
 arch=(i686 x86_64)
 license=(GPL LGPL)
@@ -15,17 +15,13 @@
 url="http://www.gnome.org;
 groups=(gnome)
 
source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz
-0001-main-fix-starting-gnome-session-via-startx.patch
 timeout.patch)
-sha256sums=('66ff72379a2e7ee11ab7fcec37ad911d36f12471845dc7755e1ce55d29301b34'
-'5b23b7718531d610bb94611599bd9771e1cd7ca1353dcb9868ddead76aa37c96'
+sha256sums=('2ae9f53dc74f851222fbefbe0dc08db0a78cc76ceeb156f92ebd4d40fd038913'
 '9eaf31857b41db417475c3b14adc11b10c8226ed76978cdf96dd648fa6e505fc')
 
 prepare() {
   cd $pkgname-$pkgver
 
-  patch -Np1 -i ../0001-main-fix-starting-gnome-session-via-startx.patch
-
   # Increase timeout, for slow machines
   patch -Np1 -i ../timeout.patch
 }


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

2016-04-12 Thread Jan Steffens
Date: Tuesday, April 12, 2016 @ 23:41:23
  Author: heftig
Revision: 264761

3.20.1-1

Modified:
  cheese/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-12 21:40:29 UTC (rev 264760)
+++ PKGBUILD2016-04-12 21:41:23 UTC (rev 264761)
@@ -3,7 +3,7 @@
 # Contributor: Jan de Groot 
 
 pkgname=cheese
-pkgver=3.20.0
+pkgver=3.20.1
 pkgrel=1
 pkgdesc="Use your webcam to take photos and videos, apply fancy special 
effects and share the fun with others"
 arch=(i686 x86_64)
@@ -16,7 +16,7 @@
 url="http://www.gnome.org/projects/cheese/;
 install=cheese.install
 
source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('41e2b16f0ad9bbc0f81b082fb42dc7978e52306be486637eaacb8d8f5a80caac')
+sha256sums=('13b454a84be4032832e0bd9b3ec5b0a6ba50cf329800a212fd1133d95fa33a4c')
 
 build() {
   cd $pkgname-$pkgver


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

2016-04-12 Thread Jan Steffens
Date: Tuesday, April 12, 2016 @ 23:40:29
  Author: heftig
Revision: 264760

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-04-12 21:39:21 UTC (rev 264759)
+++ extra-i686/PKGBUILD 2016-04-12 21:40:29 UTC (rev 264760)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-
-pkgname=gnome-klotski
-pkgver=3.20.0
-pkgrel=1
-pkgdesc="Slide blocks to solve the puzzle"
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('hicolor-icon-theme' 'gtk3' 'librsvg' 'libgames-support')
-makedepends=('intltool' 'itstool' 'gobject-introspection')
-conflicts=('gnome-games')
-replaces=('gnome-games')
-options=('!emptydirs')
-install=gnome-klotski.install
-url="https://live.gnome.org/Klotski;
-groups=('gnome-extra')
-source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('77fe56bc21dab59fd126215848e7d231513c5c3ebec557b308b8728d221b1a02')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
-  --disable-schemas-compile
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: gnome-klotski/repos/extra-i686/PKGBUILD (from rev 264759, 
gnome-klotski/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-04-12 21:40:29 UTC (rev 264760)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgname=gnome-klotski
+pkgver=3.20.1
+pkgrel=1
+pkgdesc="Slide blocks to solve the puzzle"
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('hicolor-icon-theme' 'gtk3' 'librsvg' 'libgames-support')
+makedepends=('intltool' 'itstool' 'gobject-introspection')
+conflicts=('gnome-games')
+replaces=('gnome-games')
+options=('!emptydirs')
+install=gnome-klotski.install
+url="https://live.gnome.org/Klotski;
+groups=('gnome-extra')
+source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('920bd02fe066b5740f1e4bb58d7ad2fd7065d5207881fdfa58e4c034b5d96084')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+  --disable-schemas-compile
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-i686/gnome-klotski.install
===
--- extra-i686/gnome-klotski.install2016-04-12 21:39:21 UTC (rev 264759)
+++ extra-i686/gnome-klotski.install2016-04-12 21:40:29 UTC (rev 264760)
@@ -1,12 +0,0 @@
-post_install() {
-  glib-compile-schemas usr/share/glib-2.0/schemas
-  gtk-update-icon-cache -f -q usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: gnome-klotski/repos/extra-i686/gnome-klotski.install (from rev 264759, 
gnome-klotski/trunk/gnome-klotski.install)
===
--- extra-i686/gnome-klotski.install(rev 0)
+++ extra-i686/gnome-klotski.install2016-04-12 21:40:29 UTC (rev 264760)
@@ -0,0 +1,12 @@
+post_install() {
+  glib-compile-schemas usr/share/glib-2.0/schemas
+  gtk-update-icon-cache -f -q usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-04-12 21:39:21 UTC (rev 264759)
+++ extra-x86_64/PKGBUILD   2016-04-12 21:40:29 UTC (rev 264760)
@@ -1,32 +0,0 @@
-# $Id$

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

2016-04-12 Thread Jan Steffens
Date: Tuesday, April 12, 2016 @ 23:39:46
  Author: heftig
Revision: 170801

3.20.1-1

Modified:
  gnome-software/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-12 21:33:10 UTC (rev 170800)
+++ PKGBUILD2016-04-12 21:39:46 UTC (rev 170801)
@@ -4,7 +4,7 @@
 # Contributor: Yosef Or Boczko 
 
 pkgname=gnome-software
-pkgver=3.20.0
+pkgver=3.20.1
 pkgrel=1
 pkgdesc="GNOME Software Tools"
 arch=(i686 x86_64)
@@ -15,7 +15,7 @@
 makedepends=(intltool python)
 install=gnome-software.install
 
source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('3d2e187b8f0c70e5b5e0841b123310bd3bf961a47e23fcca106a84ea92b80b70')
+sha256sums=('c5f5db23322c4cd946cd20735ced01515e4756c3d8cae1f16d24b6bf13197bc6')
 
 build() {
   cd $pkgname-$pkgver


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

2016-04-12 Thread Jan Steffens
Date: Tuesday, April 12, 2016 @ 23:39:21
  Author: heftig
Revision: 264759

1.40.1-1

Modified:
  pango/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-12 21:38:30 UTC (rev 264758)
+++ PKGBUILD2016-04-12 21:39:21 UTC (rev 264759)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot 
 
 pkgname=pango
-pkgver=1.40.0
+pkgver=1.40.1
 pkgrel=1
 pkgdesc="A library for layout and rendering of text"
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 install=pango.install
 
source=(http://download.gnome.org/sources/${pkgname}/${pkgver:0:4}/${pkgname}-${pkgver}.tar.xz)
 url="http://www.pango.org/;
-sha256sums=('da17985df314cb07d066ab5424f59c21ce973ece05b7de4df04d798ec8511c8b')
+sha256sums=('e27af54172c72b3ac6be53c9a4c67053e16c905e02addcf3a603ceb2005c1a40')
 
 build() {
   cd ${pkgname}-${pkgver}


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

2016-04-12 Thread Jan Steffens
Date: Tuesday, April 12, 2016 @ 23:38:30
  Author: heftig
Revision: 264758

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

Added:
  gnome-disk-utility/repos/extra-i686/PKGBUILD
(from rev 264757, gnome-disk-utility/trunk/PKGBUILD)
  gnome-disk-utility/repos/extra-i686/gnome-disk-utility.install
(from rev 264757, gnome-disk-utility/trunk/gnome-disk-utility.install)
  gnome-disk-utility/repos/extra-x86_64/PKGBUILD
(from rev 264757, gnome-disk-utility/trunk/PKGBUILD)
  gnome-disk-utility/repos/extra-x86_64/gnome-disk-utility.install
(from rev 264757, gnome-disk-utility/trunk/gnome-disk-utility.install)
Deleted:
  gnome-disk-utility/repos/extra-i686/PKGBUILD
  gnome-disk-utility/repos/extra-i686/gnome-disk-utility.install
  gnome-disk-utility/repos/extra-x86_64/PKGBUILD
  gnome-disk-utility/repos/extra-x86_64/gnome-disk-utility.install

-+
 /PKGBUILD   |   70 ++
 /gnome-disk-utility.install |   26 +++
 extra-i686/PKGBUILD |   35 ---
 extra-i686/gnome-disk-utility.install   |   13 -
 extra-x86_64/PKGBUILD   |   35 ---
 extra-x86_64/gnome-disk-utility.install |   13 -
 6 files changed, 96 insertions(+), 96 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-04-12 21:37:37 UTC (rev 264757)
+++ extra-i686/PKGBUILD 2016-04-12 21:38:30 UTC (rev 264758)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-# Contributor: Silvio Knizek (killermoehre)
-
-pkgname=gnome-disk-utility
-pkgver=3.20.0
-pkgrel=1
-pkgdesc="Disk Management Utility for GNOME"
-arch=(i686 x86_64)
-license=(GPL)
-url="http://www.gnome.org;
-groups=(gnome)
-depends=(udisks2 gtk3 libsecret libpwquality libcanberra libdvdread libnotify 
desktop-file-utils parted)
-makedepends=(intltool docbook-xsl gnome-settings-daemon)
-options=('!emptydirs')
-install=gnome-disk-utility.install
-source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('31c20cb086aa1bf3ac466607aeca4ebf45a9c46f273b91a322c987091da32eab')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --disable-static
-  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: gnome-disk-utility/repos/extra-i686/PKGBUILD (from rev 264757, 
gnome-disk-utility/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-04-12 21:38:30 UTC (rev 264758)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Silvio Knizek (killermoehre)
+
+pkgname=gnome-disk-utility
+pkgver=3.20.1
+pkgrel=1
+pkgdesc="Disk Management Utility for GNOME"
+arch=(i686 x86_64)
+license=(GPL)
+url="http://www.gnome.org;
+groups=(gnome)
+depends=(udisks2 gtk3 libsecret libpwquality libcanberra libdvdread libnotify 
desktop-file-utils parted)
+makedepends=(intltool docbook-xsl gnome-settings-daemon)
+options=('!emptydirs')
+install=gnome-disk-utility.install
+source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('6877a5b6ea949c9527aac7a1ac38c02b4dd5f8230dc59be5a8f48a0ee381f1cd')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --disable-static
+  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: extra-i686/gnome-disk-utility.install
===
--- extra-i686/gnome-disk-utility.install   2016-04-12 21:37:37 UTC (rev 
264757)
+++ extra-i686/gnome-disk-utility.install   2016-04-12 21:38:30 UTC (rev 
264758)
@@ -1,13 +0,0 @@
-post_install() {
-glib-compile-schemas /usr/share/glib-2.0/schemas
-update-desktop-database -q
-gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-post_install
-}

Copied: gnome-disk-utility/repos/extra-i686/gnome-disk-utility.install (from 
rev 264757, gnome-disk-utility/trunk/gnome-disk-utility.install)
===
--- extra-i686/gnome-disk-utility.install   (rev 0)
+++ extra-i686/gnome-disk-utility.install   2016-04-12 21:38:30 UTC (rev 
264758)
@@ -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() {
+

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

2016-04-12 Thread Jan Steffens
Date: Tuesday, April 12, 2016 @ 23:37:37
  Author: heftig
Revision: 264757

3.20.1-1

Modified:
  gnome-nibbles/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-12 21:37:17 UTC (rev 264756)
+++ PKGBUILD2016-04-12 21:37:37 UTC (rev 264757)
@@ -3,7 +3,7 @@
 # Contributor: Jan de Groot 
 
 pkgname=gnome-nibbles
-pkgver=3.20.0
+pkgver=3.20.1
 pkgrel=1
 pkgdesc="Guide a worm around a maze"
 arch=('i686' 'x86_64')
@@ -17,7 +17,7 @@
 url="https://wiki.gnome.org/Apps/Nibbles;
 groups=('gnome-extra')
 
source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('9773077d73c2c58be3ef546457228d74b1e61cd1501ca213d6d5fbc1b0d478cc')
+sha256sums=('2de5929f1a26d1e4afe2a0d6d8b832a2d0a6ebd631943a5824f1cd8c67d286d7')
 
 build() {
   cd $pkgname-$pkgver


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

2016-04-12 Thread Jan Steffens
Date: Tuesday, April 12, 2016 @ 23:37:10
  Author: heftig
Revision: 264755

Add $Id$

Modified:
  gspell/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-12 21:36:33 UTC (rev 264754)
+++ PKGBUILD2016-04-12 21:37:10 UTC (rev 264755)
@@ -1,4 +1,4 @@
-# $Id:
+# $Id$
 # Maintainer: Jan de Groot 
 pkgname=gspell
 pkgver=1.0.1


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

2016-04-12 Thread Jan Steffens
Date: Tuesday, April 12, 2016 @ 23:37:17
  Author: heftig
Revision: 264756

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

Added:
  epiphany/repos/extra-i686/PKGBUILD
(from rev 264754, epiphany/trunk/PKGBUILD)
  epiphany/repos/extra-i686/epiphany.install
(from rev 264754, epiphany/trunk/epiphany.install)
  epiphany/repos/extra-x86_64/PKGBUILD
(from rev 264754, epiphany/trunk/PKGBUILD)
  epiphany/repos/extra-x86_64/epiphany.install
(from rev 264755, epiphany/trunk/epiphany.install)
Deleted:
  epiphany/repos/extra-i686/PKGBUILD
  epiphany/repos/extra-i686/epiphany.install
  epiphany/repos/extra-x86_64/PKGBUILD
  epiphany/repos/extra-x86_64/epiphany.install

---+
 /PKGBUILD |   66 
 /epiphany.install |   26 +++
 extra-i686/PKGBUILD   |   33 
 extra-i686/epiphany.install   |   13 ---
 extra-x86_64/PKGBUILD |   33 
 extra-x86_64/epiphany.install |   13 ---
 6 files changed, 92 insertions(+), 92 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-04-12 21:37:10 UTC (rev 264755)
+++ extra-i686/PKGBUILD 2016-04-12 21:37:17 UTC (rev 264756)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=epiphany
-pkgver=3.20.0
-pkgrel=1
-install=epiphany.install
-pkgdesc="A GNOME web browser based on the WebKit rendering engine."
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('libsoup' 'libnotify' 'gsettings-desktop-schemas' 'webkit2gtk' 'nss' 
'iso-codes' 'dconf' 'desktop-file-utils' 'gcr' 'gnome-desktop' 'libwnck3' 
'gnome-themes-standard')
-makedepends=('intltool' 'itstool' 'docbook-xml' 'startup-notification' 
'gobject-introspection')
-options=('!emptydirs')
-groups=('gnome')
-url="https://wiki.gnome.org/Apps/Web;
-source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('c368e652343f8c1e87c04e1fd11649dbeee4f7c5bdb216de48bcb70f986b0974')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --libexecdir=/usr/lib/$pkgname
-
-  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: epiphany/repos/extra-i686/PKGBUILD (from rev 264754, 
epiphany/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-04-12 21:37:17 UTC (rev 264756)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=epiphany
+pkgver=3.20.1
+pkgrel=1
+install=epiphany.install
+pkgdesc="A GNOME web browser based on the WebKit rendering engine."
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('libsoup' 'libnotify' 'gsettings-desktop-schemas' 'webkit2gtk' 'nss' 
'iso-codes' 'dconf' 'desktop-file-utils' 'gcr' 'gnome-desktop' 'libwnck3' 
'gnome-themes-standard')
+makedepends=('intltool' 'itstool' 'docbook-xml' 'startup-notification' 
'gobject-introspection')
+options=('!emptydirs')
+groups=('gnome')
+url="https://wiki.gnome.org/Apps/Web;
+source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('7171f67d5edde0e82b8bad4761638622aa969d6ffcea896cd94bbe509af9c9e7')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --libexecdir=/usr/lib/$pkgname
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-i686/epiphany.install
===
--- extra-i686/epiphany.install 2016-04-12 21:37:10 UTC (rev 264755)
+++ extra-i686/epiphany.install 2016-04-12 21:37:17 UTC (rev 264756)
@@ -1,13 +0,0 @@
-post_install() {
-glib-compile-schemas /usr/share/glib-2.0/schemas
-update-desktop-database -q
-gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-post_install
-}

Copied: epiphany/repos/extra-i686/epiphany.install (from rev 264754, 
epiphany/trunk/epiphany.install)
===
--- extra-i686/epiphany.install (rev 0)
+++ extra-i686/epiphany.install 2016-04-12 21:37:17 UTC (rev 264756)
@@ -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
+}

Deleted: 

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

2016-04-12 Thread Jan Steffens
Date: Tuesday, April 12, 2016 @ 23:36:33
  Author: heftig
Revision: 264754

1.0.1-1

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

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-12 21:34:47 UTC (rev 264753)
+++ PKGBUILD2016-04-12 21:36:33 UTC (rev 264754)
@@ -1,7 +1,7 @@
 # $Id:
 # Maintainer: Jan de Groot 
 pkgname=gspell
-pkgver=1.0.0
+pkgver=1.0.1
 pkgrel=1
 pkgdesc="a flexible API to implement the spell checking in a GTK+ application"
 arch=('i686' 'x86_64')
@@ -10,7 +10,7 @@
 depends=('gtk3' 'enchant' 'libxml2' 'iso-codes')
 makedepends=('intltool' 'gobject-introspection' 'vala')
 
source=("https://download.gnome.org/sources/gspell/${pkgver:0:3}/gspell-${pkgver}.tar.xz;)
-sha256sums=('6a50257c871c318445881c115bdd11bb8da6672f7d5b99e96c2e7b5c00f077da')
+sha256sums=('22cd0545351801a83c0da8da5baa6755b9032654c1bea95e116458066f7bc71b')
 
 build() {
   cd "$pkgname-$pkgver"


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


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

2016-04-12 Thread Jan Steffens
Date: Tuesday, April 12, 2016 @ 23:34:44
  Author: heftig
Revision: 264752

3.20.1-1

Modified:
  gnome-robots/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-12 21:03:23 UTC (rev 264751)
+++ PKGBUILD2016-04-12 21:34:44 UTC (rev 264752)
@@ -3,7 +3,7 @@
 # Contributor: Jan de Groot 
 
 pkgname=gnome-robots
-pkgver=3.20.0.1
+pkgver=3.20.1
 pkgrel=1
 pkgdesc="Avoid the robots and make them crash into each other"
 arch=('i686' 'x86_64')
@@ -17,7 +17,7 @@
 url="https://live.gnome.org/Robots;
 groups=('gnome-extra')
 
source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('7e1e2c75d963aceca5a07ec420e625d2c39870d17ad9ba4d352aa53a01f06bde')
+sha256sums=('df8682cc99c7aaac41c9e8f5cd57168c80ebf57ca57e4b749f16b4fed9710f05')
 
 build() {
   cd $pkgname-$pkgver


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

2016-04-12 Thread Jan Steffens
Date: Tuesday, April 12, 2016 @ 23:34:47
  Author: heftig
Revision: 264753

1.0.1-1

Modified:
  libgames-support/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-12 21:34:44 UTC (rev 264752)
+++ PKGBUILD2016-04-12 21:34:47 UTC (rev 264753)
@@ -2,7 +2,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgname=libgames-support
-pkgver=1.0
+pkgver=1.0.1
 pkgrel=1
 pkgdesc="Code shared between GNOME games"
 url="https://git.gnome.org/browse/libgames-support/;
@@ -11,7 +11,7 @@
 depends=(gtk3 libgee)
 makedepends=(gobject-introspection vala intltool)
 
source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:3}/$pkgname-$pkgver.tar.xz)
-sha256sums=('187b665292baa8596cdcb75c45029a57ad358f93397bcb11b407c4501300160b')
+sha256sums=('976c8a87a09c90c73dbbd6d72b4136b747c098e665060feb6ba40e53c8221091')
 
 build() {
   cd $pkgname-$pkgver


[arch-commits] Commit in jedit/trunk (PKGBUILD jedit.props)

2016-04-12 Thread Alexander Rødseth
Date: Tuesday, April 12, 2016 @ 23:32:59
  Author: arodseth
Revision: 170799

upgpkg: jedit 5.3.0-2

Modified:
  jedit/trunk/PKGBUILD
  jedit/trunk/jedit.props

-+
 PKGBUILD|6 +++---
 jedit.props |3 ++-
 2 files changed, 5 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-04-12 21:17:32 UTC (rev 170798)
+++ PKGBUILD2016-04-12 21:32:59 UTC (rev 170799)
@@ -9,7 +9,7 @@
 
 pkgname=jedit
 pkgver=5.3.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Text editor for programmers'
 arch=('any')
 url='http://www.jedit.org/'
@@ -17,7 +17,7 @@
 depends=('java-runtime' 'desktop-file-utils')
 makedepends=('apache-ant' 'gendesk' 'unzip' 'tar')
 optdepends=('java-environment: for java development'
-'ttf-fira-mono: usable font')
+'noto-fonts: usable font')
 options=('!emptydirs')
 install=$pkgname.install
 noextract=("${pkgname}${pkgver}install.jar")
@@ -27,7 +27,7 @@
 
"http://sourceforge.net/projects/jedit/files/jedit/$pkgver/jedit${pkgver}source.tar.bz2;)
 sha256sums=('b2e5a8f2f4818b336b5d71f677114f1bc01e929d7fa60918675cc2234dae1a3a'
 'a1dd1b688f08c5c967861fe80df13cac201afa6dcfcecc9a289b2c3bec7c8915'
-'1a8c6e51810abc9ff56606b61042e2e980cb4b479fa0099b3c93acd7e4b9295b'
+'dc5fe0050321d4f34bce556895fbc39cc6f7df194e14eb4f6ea53166a4d82347'
 '8d56d036be4dd45254748f063ade01293b862a615cdff6aed274ab58085f6304')
 
 prepare() {

Modified: jedit.props
===
--- jedit.props 2016-04-12 21:17:32 UTC (rev 170798)
+++ jedit.props 2016-04-12 21:32:59 UTC (rev 170799)
@@ -14,8 +14,9 @@
 icon-theme=tango
 lookAndFeel=com.sun.java.swing.plaf.gtk.GTKLookAndFeel
 view.fontsize=14
-view.font=Fira Mono
+view.font=Noto Mono
 view.selectionFg=false
+view.antiAlias=standard
 view.caretColor=\#33
 view.lineHighlightColor=\#deebfb
 view.thickCaret=false


[arch-commits] Commit in jedit/repos/community-any (10 files)

2016-04-12 Thread Alexander Rødseth
Date: Tuesday, April 12, 2016 @ 23:33:10
  Author: arodseth
Revision: 170800

archrelease: copy trunk to community-any

Added:
  jedit/repos/community-any/PKGBUILD
(from rev 170799, jedit/trunk/PKGBUILD)
  jedit/repos/community-any/jedit.install
(from rev 170799, jedit/trunk/jedit.install)
  jedit/repos/community-any/jedit.props
(from rev 170799, jedit/trunk/jedit.props)
  jedit/repos/community-any/jedit.sh
(from rev 170799, jedit/trunk/jedit.sh)
  jedit/repos/community-any/jeditbg.sh
(from rev 170799, jedit/trunk/jeditbg.sh)
Deleted:
  jedit/repos/community-any/PKGBUILD
  jedit/repos/community-any/jedit.install
  jedit/repos/community-any/jedit.props
  jedit/repos/community-any/jedit.sh
  jedit/repos/community-any/jeditbg.sh

---+
 PKGBUILD  |  152 
 jedit.install |   26 -
 jedit.props   |  125 +++---
 jedit.sh  |   32 +--
 jeditbg.sh|6 +-
 5 files changed, 171 insertions(+), 170 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-04-12 21:32:59 UTC (rev 170799)
+++ PKGBUILD2016-04-12 21:33:10 UTC (rev 170800)
@@ -1,76 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-# Contributor: Daniel J Griffiths 
-# Contributor: Jaroslav Lichtblau 
-# Contributor: Jeff Mickey 
-# Contributor: Dusty Phillips 
-
-# Does not currently build in a chroot.
-
-pkgname=jedit
-pkgver=5.3.0
-pkgrel=1
-pkgdesc='Text editor for programmers'
-arch=('any')
-url='http://www.jedit.org/'
-license=('GPL')
-depends=('java-runtime' 'desktop-file-utils')
-makedepends=('apache-ant' 'gendesk' 'unzip' 'tar')
-optdepends=('java-environment: for java development'
-'ttf-fira-mono: usable font')
-options=('!emptydirs')
-install=$pkgname.install
-noextract=("${pkgname}${pkgver}install.jar")
-source=('jedit.sh'
-'jeditbg.sh'
-'jedit.props'
-
"http://sourceforge.net/projects/jedit/files/jedit/$pkgver/jedit${pkgver}source.tar.bz2;)
-sha256sums=('b2e5a8f2f4818b336b5d71f677114f1bc01e929d7fa60918675cc2234dae1a3a'
-'a1dd1b688f08c5c967861fe80df13cac201afa6dcfcecc9a289b2c3bec7c8915'
-'1a8c6e51810abc9ff56606b61042e2e980cb4b479fa0099b3c93acd7e4b9295b'
-'8d56d036be4dd45254748f063ade01293b862a615cdff6aed274ab58085f6304')
-
-prepare() {
-  gendesk -f -n --pkgname "$pkgname" --pkgdesc "$pkgdesc" --exec 'jeditbg %U' \
---name 'jEdit' --genericname 'Editor'
-
-  # Extract the documentation so that it can be installed manually
-  #unzip "${pkgname}${pkgver}install.jar"
-  #tar jxf installer/jedit-api.tar.bz2
-}
-
-build() {
-  cd jEdit
-
-  ant dist-java
-}
-
-package() {
-  install -d "$pkgdir/usr/share/java/$pkgdir" \
-"$pkgdir/usr/bin" \
-"$pkgdir/usr/share/man/man1"
-
-  cd jEdit/dist
-
-  # Run the installer
-  (java -jar "${pkgname}${pkgver}install.jar" auto \
-"$pkgdir/usr/share/java/$pkgname/" \
-unix-script="$pkgdir/usr/bin/" \
-unix-man="$pkgdir/usr/share/man/man1/" 2>&1) > inst.log
-
-  cd "$srcdir"
-
-  # Launchers, properties and desktop shortcuts
-  install -Dm755 jedit.sh "$pkgdir/usr/bin/jedit"
-  install -Dm755 jeditbg.sh "$pkgdir/usr/bin/jeditbg"
-  install -Dm644 jedit.props "$pkgdir/usr/share/jedit/default.props"
-  install -Dm644 jedit.desktop "$pkgdir/usr/share/applications/jedit.desktop"
-  install -Dm644 "$pkgdir/usr/share/java/jedit/doc/jedit.png" \
-"$pkgdir/usr/share/pixmaps/jedit.png"
-
-  # The missing documentation files
-  cd jEdit
-  cp -ru doc "$pkgdir/usr/share/java/jedit/doc"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: jedit/repos/community-any/PKGBUILD (from rev 170799, 
jedit/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-04-12 21:33:10 UTC (rev 170800)
@@ -0,0 +1,76 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+# Contributor: Daniel J Griffiths 
+# Contributor: Jaroslav Lichtblau 
+# Contributor: Jeff Mickey 
+# Contributor: Dusty Phillips 
+
+# Does not currently build in a chroot.
+
+pkgname=jedit
+pkgver=5.3.0
+pkgrel=2
+pkgdesc='Text editor for programmers'
+arch=('any')
+url='http://www.jedit.org/'
+license=('GPL')
+depends=('java-runtime' 'desktop-file-utils')
+makedepends=('apache-ant' 'gendesk' 'unzip' 'tar')
+optdepends=('java-environment: for java development'
+'noto-fonts: usable font')
+options=('!emptydirs')
+install=$pkgname.install
+noextract=("${pkgname}${pkgver}install.jar")
+source=('jedit.sh'
+'jeditbg.sh'
+'jedit.props'
+
"http://sourceforge.net/projects/jedit/files/jedit/$pkgver/jedit${pkgver}source.tar.bz2;)

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

2016-04-12 Thread Alexandre Filgueira
Date: Tuesday, April 12, 2016 @ 23:17:32
  Author: faidoc
Revision: 170798

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

Added:
  nemo/repos/community-i686/0001-Fix-fallback-style-for-GTK-3.20.patch
(from rev 170797, nemo/trunk/0001-Fix-fallback-style-for-GTK-3.20.patch)
  nemo/repos/community-i686/PKGBUILD
(from rev 170797, nemo/trunk/PKGBUILD)
  nemo/repos/community-i686/deep-count-one-filesystem.patch
(from rev 170797, nemo/trunk/deep-count-one-filesystem.patch)
  nemo/repos/community-i686/nemo-gtk-3.20-style-classes.patch
(from rev 170797, nemo/trunk/nemo-gtk-3.20-style-classes.patch)
  nemo/repos/community-i686/nemo.install
(from rev 170797, nemo/trunk/nemo.install)
  nemo/repos/community-x86_64/0001-Fix-fallback-style-for-GTK-3.20.patch
(from rev 170797, nemo/trunk/0001-Fix-fallback-style-for-GTK-3.20.patch)
  nemo/repos/community-x86_64/PKGBUILD
(from rev 170797, nemo/trunk/PKGBUILD)
  nemo/repos/community-x86_64/deep-count-one-filesystem.patch
(from rev 170797, nemo/trunk/deep-count-one-filesystem.patch)
  nemo/repos/community-x86_64/nemo-gtk-3.20-style-classes.patch
(from rev 170797, nemo/trunk/nemo-gtk-3.20-style-classes.patch)
  nemo/repos/community-x86_64/nemo.install
(from rev 170797, nemo/trunk/nemo.install)
Deleted:
  nemo/repos/community-i686/nemo-gtk-3.20-style-classes.patch
  nemo/repos/community-x86_64/0001-Fix-fallback-style-for-GTK-3.20.patch
  nemo/repos/community-x86_64/PKGBUILD
  nemo/repos/community-x86_64/deep-count-one-filesystem.patch
  nemo/repos/community-x86_64/nemo-gtk-3.20-style-classes.patch
  nemo/repos/community-x86_64/nemo.install

-+
 /0001-Fix-fallback-style-for-GTK-3.20.patch |   55 
 /PKGBUILD   |   70 +
 /deep-count-one-filesystem.patch|  120 ++
 /nemo-gtk-3.20-style-classes.patch  |   88 +++
 /nemo.install   |   14 +
 community-i686/0001-Fix-fallback-style-for-GTK-3.20.patch   |   55 
 community-i686/PKGBUILD |   70 +
 community-i686/deep-count-one-filesystem.patch  |  120 ++
 community-i686/nemo-gtk-3.20-style-classes.patch|   44 ---
 community-i686/nemo.install |   14 +
 community-x86_64/0001-Fix-fallback-style-for-GTK-3.20.patch |   55 
 community-x86_64/PKGBUILD   |   70 -
 community-x86_64/deep-count-one-filesystem.patch|  120 --
 community-x86_64/nemo-gtk-3.20-style-classes.patch  |   44 ---
 community-x86_64/nemo.install   |   14 -
 15 files changed, 606 insertions(+), 347 deletions(-)

Copied: nemo/repos/community-i686/0001-Fix-fallback-style-for-GTK-3.20.patch 
(from rev 170797, nemo/trunk/0001-Fix-fallback-style-for-GTK-3.20.patch)
===
--- community-i686/0001-Fix-fallback-style-for-GTK-3.20.patch   
(rev 0)
+++ community-i686/0001-Fix-fallback-style-for-GTK-3.20.patch   2016-04-12 
21:17:32 UTC (rev 170798)
@@ -0,0 +1,55 @@
+From 81ac4e3e7ebc618c6c05e4a1b158a98402e72e0f Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Ball=C3=B3=20Gy=C3=B6rgy?= 
+Date: Sun, 10 Apr 2016 17:38:02 +0200
+Subject: [PATCH] Fix fallback style for GTK 3.20
+
+---
+ libnemo-private/nemo-places-tree-view.c | 2 +-
+ src/nemo-style-fallback.css | 8 
+ 2 files changed, 5 insertions(+), 5 deletions(-)
+
+diff --git a/libnemo-private/nemo-places-tree-view.c 
b/libnemo-private/nemo-places-tree-view.c
+index b7836e1..53775dd 100644
+--- a/libnemo-private/nemo-places-tree-view.c
 b/libnemo-private/nemo-places-tree-view.c
+@@ -34,7 +34,7 @@ static gpointer parent_class;
+ static void
+ nemo_places_tree_view_init (NemoPlacesTreeView *tree_view)
+ {
+-
++gtk_style_context_add_class (gtk_widget_get_style_context (GTK_WIDGET 
(tree_view)), "places-treeview");
+ }
+ 
+ static void
+diff --git a/src/nemo-style-fallback.css b/src/nemo-style-fallback.css
+index 0e5684e..ba64a52 100644
+--- a/src/nemo-style-fallback.css
 b/src/nemo-style-fallback.css
+@@ -1,6 +1,6 @@
+ /* For Places Sidebar diskfull indicators */
+ 
+-NemoPlacesTreeView {
++.places-treeview {
+ -NemoPlacesTreeView-disk-full-bg-color: shade(@theme_bg_color, .65);
+ -NemoPlacesTreeView-disk-full-fg-color: shade(@theme_selected_bg_color, 
1.0);
+ -NemoPlacesTreeView-disk-full-bar-width: 2px;
+@@ -9,13 +9,13 @@ NemoPlacesTreeView {
+ -NemoPlacesTreeView-disk-full-max-length: 70px;
+ }
+ 
+-NemoPlacesTreeView:selected {
++.places-treeview:selected {
+ -NemoPlacesTreeView-disk-full-bg-color: shade(@theme_bg_color, 2.0);
+ -NemoPlacesTreeView-disk-full-fg-color: shade(@theme_fg_color, 

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

2016-04-12 Thread Jan Steffens
Date: Tuesday, April 12, 2016 @ 23:03:23
  Author: heftig
Revision: 264751

3.20.1-1

Modified:
  gnome-klotski/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-12 21:03:21 UTC (rev 264750)
+++ PKGBUILD2016-04-12 21:03:23 UTC (rev 264751)
@@ -3,7 +3,7 @@
 # Contributor: Jan de Groot 
 
 pkgname=gnome-klotski
-pkgver=3.20.0
+pkgver=3.20.1
 pkgrel=1
 pkgdesc="Slide blocks to solve the puzzle"
 arch=('i686' 'x86_64')
@@ -17,7 +17,7 @@
 url="https://live.gnome.org/Klotski;
 groups=('gnome-extra')
 
source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('77fe56bc21dab59fd126215848e7d231513c5c3ebec557b308b8728d221b1a02')
+sha256sums=('920bd02fe066b5740f1e4bb58d7ad2fd7065d5207881fdfa58e4c034b5d96084')
 
 build() {
   cd $pkgname-$pkgver


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

2016-04-12 Thread Jan Steffens
Date: Tuesday, April 12, 2016 @ 23:03:21
  Author: heftig
Revision: 264750

3.20.1-1

Modified:
  gnome-disk-utility/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-12 20:59:52 UTC (rev 264749)
+++ PKGBUILD2016-04-12 21:03:21 UTC (rev 264750)
@@ -3,7 +3,7 @@
 # Contributor: Silvio Knizek (killermoehre)
 
 pkgname=gnome-disk-utility
-pkgver=3.20.0
+pkgver=3.20.1
 pkgrel=1
 pkgdesc="Disk Management Utility for GNOME"
 arch=(i686 x86_64)
@@ -15,7 +15,7 @@
 options=('!emptydirs')
 install=gnome-disk-utility.install
 
source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('31c20cb086aa1bf3ac466607aeca4ebf45a9c46f273b91a322c987091da32eab')
+sha256sums=('6877a5b6ea949c9527aac7a1ac38c02b4dd5f8230dc59be5a8f48a0ee381f1cd')
 
 build() {
   cd $pkgname-$pkgver


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

2016-04-12 Thread Jan Steffens
Date: Tuesday, April 12, 2016 @ 22:59:52
  Author: heftig
Revision: 264749

3.20.1-1

Modified:
  epiphany/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-12 20:12:06 UTC (rev 264748)
+++ PKGBUILD2016-04-12 20:59:52 UTC (rev 264749)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot 
 
 pkgname=epiphany
-pkgver=3.20.0
+pkgver=3.20.1
 pkgrel=1
 install=epiphany.install
 pkgdesc="A GNOME web browser based on the WebKit rendering engine."
@@ -14,7 +14,7 @@
 groups=('gnome')
 url="https://wiki.gnome.org/Apps/Web;
 
source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('c368e652343f8c1e87c04e1fd11649dbeee4f7c5bdb216de48bcb70f986b0974')
+sha256sums=('7171f67d5edde0e82b8bad4761638622aa969d6ffcea896cd94bbe509af9c9e7')
 
 build() {
   cd $pkgname-$pkgver


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

2016-04-12 Thread Alexandre Filgueira
Date: Tuesday, April 12, 2016 @ 22:28:09
  Author: faidoc
Revision: 170797

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

Added:
  nemo/repos/community-i686/nemo-gtk-3.20-style-classes.patch
(from rev 170794, nemo/trunk/nemo-gtk-3.20-style-classes.patch)
  nemo/repos/community-x86_64/0001-Fix-fallback-style-for-GTK-3.20.patch
(from rev 170796, nemo/trunk/0001-Fix-fallback-style-for-GTK-3.20.patch)
  nemo/repos/community-x86_64/PKGBUILD
(from rev 170796, nemo/trunk/PKGBUILD)
  nemo/repos/community-x86_64/deep-count-one-filesystem.patch
(from rev 170796, nemo/trunk/deep-count-one-filesystem.patch)
  nemo/repos/community-x86_64/nemo-gtk-3.20-style-classes.patch
(from rev 170796, nemo/trunk/nemo-gtk-3.20-style-classes.patch)
  nemo/repos/community-x86_64/nemo.install
(from rev 170796, nemo/trunk/nemo.install)
Deleted:
  nemo/repos/community-i686/0001-Fix-fallback-style-for-GTK-3.20.patch
  nemo/repos/community-i686/PKGBUILD
  nemo/repos/community-i686/deep-count-one-filesystem.patch
  nemo/repos/community-i686/nemo.install
  nemo/repos/community-x86_64/0001-Fix-fallback-style-for-GTK-3.20.patch
  nemo/repos/community-x86_64/PKGBUILD
  nemo/repos/community-x86_64/deep-count-one-filesystem.patch
  nemo/repos/community-x86_64/nemo.install

-+
 /0001-Fix-fallback-style-for-GTK-3.20.patch |   55 
 /PKGBUILD   |   70 +
 /deep-count-one-filesystem.patch|  120 ++
 /nemo.install   |   14 +
 community-i686/0001-Fix-fallback-style-for-GTK-3.20.patch   |   55 
 community-i686/PKGBUILD |   63 -
 community-i686/deep-count-one-filesystem.patch  |  120 --
 community-i686/nemo-gtk-3.20-style-classes.patch|   44 +++
 community-i686/nemo.install |   14 -
 community-x86_64/0001-Fix-fallback-style-for-GTK-3.20.patch |   55 
 community-x86_64/PKGBUILD   |   63 -
 community-x86_64/deep-count-one-filesystem.patch|  120 --
 community-x86_64/nemo-gtk-3.20-style-classes.patch  |   44 +++
 community-x86_64/nemo.install   |   14 -
 14 files changed, 347 insertions(+), 504 deletions(-)

Deleted: community-i686/0001-Fix-fallback-style-for-GTK-3.20.patch
===
--- community-i686/0001-Fix-fallback-style-for-GTK-3.20.patch   2016-04-12 
20:26:40 UTC (rev 170796)
+++ community-i686/0001-Fix-fallback-style-for-GTK-3.20.patch   2016-04-12 
20:28:09 UTC (rev 170797)
@@ -1,55 +0,0 @@
-From 81ac4e3e7ebc618c6c05e4a1b158a98402e72e0f Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Ball=C3=B3=20Gy=C3=B6rgy?= 
-Date: Sun, 10 Apr 2016 17:38:02 +0200
-Subject: [PATCH] Fix fallback style for GTK 3.20
-

- libnemo-private/nemo-places-tree-view.c | 2 +-
- src/nemo-style-fallback.css | 8 
- 2 files changed, 5 insertions(+), 5 deletions(-)
-
-diff --git a/libnemo-private/nemo-places-tree-view.c 
b/libnemo-private/nemo-places-tree-view.c
-index b7836e1..53775dd 100644
 a/libnemo-private/nemo-places-tree-view.c
-+++ b/libnemo-private/nemo-places-tree-view.c
-@@ -34,7 +34,7 @@ static gpointer parent_class;
- static void
- nemo_places_tree_view_init (NemoPlacesTreeView *tree_view)
- {
--
-+gtk_style_context_add_class (gtk_widget_get_style_context (GTK_WIDGET 
(tree_view)), "places-treeview");
- }
- 
- static void
-diff --git a/src/nemo-style-fallback.css b/src/nemo-style-fallback.css
-index 0e5684e..ba64a52 100644
 a/src/nemo-style-fallback.css
-+++ b/src/nemo-style-fallback.css
-@@ -1,6 +1,6 @@
- /* For Places Sidebar diskfull indicators */
- 
--NemoPlacesTreeView {
-+.places-treeview {
- -NemoPlacesTreeView-disk-full-bg-color: shade(@theme_bg_color, .65);
- -NemoPlacesTreeView-disk-full-fg-color: shade(@theme_selected_bg_color, 
1.0);
- -NemoPlacesTreeView-disk-full-bar-width: 2px;
-@@ -9,13 +9,13 @@ NemoPlacesTreeView {
- -NemoPlacesTreeView-disk-full-max-length: 70px;
- }
- 
--NemoPlacesTreeView:selected {
-+.places-treeview:selected {
- -NemoPlacesTreeView-disk-full-bg-color: shade(@theme_bg_color, 2.0);
- -NemoPlacesTreeView-disk-full-fg-color: shade(@theme_fg_color, 2.0);
- }
- 
--NemoPlacesTreeView:hover {
-+.places-treeview:hover {
- }
- 
--NemoPlacesTreeView:selected:hover {
-+.places-treeview:selected:hover {
- }
--- 
-2.8.0
-

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-04-12 20:26:40 UTC (rev 170796)
+++ community-i686/PKGBUILD 2016-04-12 20:28:09 UTC (rev 170797)
@@ -1,63 +0,0 @@
-# $Id$
-# Maintainer: Alexandre Filgueira 
-# Contributor: 

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

2016-04-12 Thread Lukas Fleischer
Date: Tuesday, April 12, 2016 @ 22:26:40
  Author: lfleischer
Revision: 170796

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-04-12 20:23:28 UTC (rev 170795)
+++ community-i686/PKGBUILD 2016-04-12 20:26:40 UTC (rev 170796)
@@ -1,45 +0,0 @@
-# Maintainer: Lukas Fleischer 
-# Contributor: Kaiting Chen 
-# Contributor: Aaron Schaefer 
-
-pkgname=duplicity
-pkgver=0.7.06
-pkgrel=2
-pkgdesc='A utility for encrypted, bandwidth-efficient backups using the rsync 
algorithm.'
-arch=('i686' 'x86_64')
-url='http://www.nongnu.org/duplicity/'
-license=('GPL')
-depends=('gnupg' 'librsync' 'ncftp' 'python2-paramiko' 'python2-lockfile')
-makedepends=('python2-setuptools')
-optdepends=('lftp: FTPS backend'
-'python2-boto: Amazon S3 and Google Cloud Storage backend'
-'python2-dropbox: Dropbox backend'
-'python2-gobject: GIO backend'
-'gvfs: GIO backend'
-'python2-gdata: Google Docs backend'
-'rsync: rsync backend')
-source=("https://launchpad.net/$pkgname/0.7-series/${pkgver}/+download/$pkgname-$pkgver.tar.gz"{,.sig})
-md5sums=('ca81b220ead17dcd454ffcf52dbb6f33'
- 'SKIP')
-validpgpkeys=('9D95920CED4A8D5F8B086A9F8B6F8FF4E654E600')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  # python2 fix
-  for file in $(find . -name '*.py' -print); do
-sed -i 's_^#!.*/usr/bin/python$_#!/usr/bin/python2_' $file
-sed -i 's_^#!.*/usr/bin/env.*python$_#!/usr/bin/env python2_' $file
-  done
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  
-  python2 setup.py install --root="$pkgdir" --optimize=1
-
-  # fix broken documentation permissions until upstream does (FS#27301)
-  chmod 644 "$pkgdir/usr/share/man/man1/$pkgname.1"
-  chmod 644 "$pkgdir/usr/share/man/man1/rdiffdir.1"
-  chmod 644 "$pkgdir/usr/share/doc/$pkgname-$pkgver"/*
-}

Copied: duplicity/repos/community-i686/PKGBUILD (from rev 170795, 
duplicity/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-04-12 20:26:40 UTC (rev 170796)
@@ -0,0 +1,45 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: Kaiting Chen 
+# Contributor: Aaron Schaefer 
+
+pkgname=duplicity
+pkgver=0.7.07
+pkgrel=1
+pkgdesc='A utility for encrypted, bandwidth-efficient backups using the rsync 
algorithm.'
+arch=('i686' 'x86_64')
+url='http://www.nongnu.org/duplicity/'
+license=('GPL')
+depends=('gnupg' 'librsync' 'ncftp' 'python2-paramiko' 'python2-lockfile')
+makedepends=('python2-setuptools')
+optdepends=('lftp: FTPS backend'
+'python2-boto: Amazon S3 and Google Cloud Storage backend'
+'python2-dropbox: Dropbox backend'
+'python2-gobject: GIO backend'
+'gvfs: GIO backend'
+'python2-gdata: Google Docs backend'
+'rsync: rsync backend')
+source=("https://launchpad.net/$pkgname/0.7-series/${pkgver}/+download/$pkgname-$pkgver.tar.gz"{,.sig})
+md5sums=('a17bf31e02cc0af5ed2dbcd7bc908972'
+ 'SKIP')
+validpgpkeys=('9D95920CED4A8D5F8B086A9F8B6F8FF4E654E600')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  # python2 fix
+  for file in $(find . -name '*.py' -print); do
+sed -i 's_^#!.*/usr/bin/python$_#!/usr/bin/python2_' $file
+sed -i 's_^#!.*/usr/bin/env.*python$_#!/usr/bin/env python2_' $file
+  done
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  
+  python2 setup.py install --root="$pkgdir" --optimize=1
+
+  # fix broken documentation permissions until upstream does (FS#27301)
+  chmod 644 "$pkgdir/usr/share/man/man1/$pkgname.1"
+  chmod 644 "$pkgdir/usr/share/man/man1/rdiffdir.1"
+  chmod 644 "$pkgdir/usr/share/doc/$pkgname-$pkgver"/*
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-04-12 20:23:28 UTC (rev 170795)
+++ community-x86_64/PKGBUILD   2016-04-12 20:26:40 UTC (rev 170796)
@@ -1,45 +0,0 @@
-# Maintainer: Lukas Fleischer 
-# Contributor: Kaiting Chen 
-# Contributor: Aaron 

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

2016-04-12 Thread Lukas Fleischer
Date: Tuesday, April 12, 2016 @ 22:23:28
  Author: lfleischer
Revision: 170795

upgpkg: duplicity 0.7.07-1

Upstream update.

Modified:
  duplicity/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-12 20:15:12 UTC (rev 170794)
+++ PKGBUILD2016-04-12 20:23:28 UTC (rev 170795)
@@ -3,8 +3,8 @@
 # Contributor: Aaron Schaefer 
 
 pkgname=duplicity
-pkgver=0.7.06
-pkgrel=2
+pkgver=0.7.07
+pkgrel=1
 pkgdesc='A utility for encrypted, bandwidth-efficient backups using the rsync 
algorithm.'
 arch=('i686' 'x86_64')
 url='http://www.nongnu.org/duplicity/'
@@ -19,7 +19,7 @@
 'python2-gdata: Google Docs backend'
 'rsync: rsync backend')
 
source=("https://launchpad.net/$pkgname/0.7-series/${pkgver}/+download/$pkgname-$pkgver.tar.gz"{,.sig})
-md5sums=('ca81b220ead17dcd454ffcf52dbb6f33'
+md5sums=('a17bf31e02cc0af5ed2dbcd7bc908972'
  'SKIP')
 validpgpkeys=('9D95920CED4A8D5F8B086A9F8B6F8FF4E654E600')
 


[arch-commits] Commit in nemo/trunk (PKGBUILD nemo-gtk-3.20-style-classes.patch)

2016-04-12 Thread Alexandre Filgueira
Date: Tuesday, April 12, 2016 @ 22:15:12
  Author: faidoc
Revision: 170794

upgpkg: nemo 2.8.7-4

Added:
  nemo/trunk/nemo-gtk-3.20-style-classes.patch
Modified:
  nemo/trunk/PKGBUILD

---+
 PKGBUILD  |   13 --
 nemo-gtk-3.20-style-classes.patch |   44 
 2 files changed, 54 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-04-12 19:37:53 UTC (rev 170793)
+++ PKGBUILD2016-04-12 20:15:12 UTC (rev 170794)
@@ -4,7 +4,7 @@
 
 pkgname=nemo
 pkgver=2.8.7
-pkgrel=3
+pkgrel=4
 pkgdesc="Cinnamon file manager (Nautilus fork)"
 arch=('i686' 'x86_64')
 url="https://github.com/linuxmint/nemo;
@@ -16,10 +16,12 @@
 install=nemo.install
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxmint/nemo/tarball/$pkgver;
 "deep-count-one-filesystem.patch"
-"0001-Fix-fallback-style-for-GTK-3.20.patch")
+"0001-Fix-fallback-style-for-GTK-3.20.patch"
+   "nemo-gtk-3.20-style-classes.patch")
 sha256sums=('21f290212bcfb4ac58f7bdc17e9dccfafb59d9fd52a7540a7e199e252a7c2fe4'
 '1acd384b7e345d4e2815c51a94b4ffbb802ee376004c3db75cc871eef551cbfa'
-'cb5aa9ec771afd5380cee08e1dd17ef35b6d6502ab8c778d85e88350a30ddfc5')
+'cb5aa9ec771afd5380cee08e1dd17ef35b6d6502ab8c778d85e88350a30ddfc5'
+'b93d549c17ea1e30b52a7ea0a8c8b0262d0b827e96414843bdaaddce01e73bec')
 
 prepare() {
   cd linuxmint-nemo-*
@@ -33,6 +35,11 @@
 
   # Fix fallback style for GTK 3.20
   # https://github.com/linuxmint/nemo/pull/1138
+  patch -Np1 -i ../nemo-gtk-3.20-style-classes.patch
+
+
+  # Fix fallback style for GTK 3.20
+  # https://github.com/linuxmint/nemo/pull/1131
   patch -Np1 -i ../0001-Fix-fallback-style-for-GTK-3.20.patch
 
   # Rename 'Files' app name to avoid having the same as nautilus

Added: nemo-gtk-3.20-style-classes.patch
===
--- nemo-gtk-3.20-style-classes.patch   (rev 0)
+++ nemo-gtk-3.20-style-classes.patch   2016-04-12 20:15:12 UTC (rev 170794)
@@ -0,0 +1,44 @@
+diff --git a/src/nemo-window.c b/src/nemo-window.c
+--- a/src/nemo-window.c2015-11-27 11:00:22.0 +0100
 b/src/nemo-window.c2016-02-13 22:13:11.907508549 +0100
+@@ -2066,6 +2066,11 @@ nemo_window_init (NemoWindow *window)
+ 
+   window->details = G_TYPE_INSTANCE_GET_PRIVATE (window, 
NEMO_TYPE_WINDOW, NemoWindowDetails);
+ 
++GtkStyleContext *context;
++
++context = gtk_widget_get_style_context (GTK_WIDGET (window));
++gtk_style_context_add_class (context, "nemo-window");
++
+   window->details->panes = NULL;
+   window->details->active_pane = NULL;
+ 
+diff --git a/src/nemo-window-pane.c b/src/nemo-window-pane.c
+--- a/src/nemo-window-pane.c   2015-11-27 11:00:22.0 +0100
 b/src/nemo-window-pane.c   2016-02-13 22:35:49.996213630 +0100
+@@ -983,6 +983,11 @@ nemo_window_pane_init (NemoWindowPane *p
+   pane->active_slot = NULL;
+ 
+   gtk_orientable_set_orientation (GTK_ORIENTABLE (pane), 
GTK_ORIENTATION_VERTICAL);
++
++  GtkStyleContext *context;
++
++  context = gtk_widget_get_style_context (GTK_WIDGET (pane));
++  gtk_style_context_add_class (context, "nemo-window-pane");
+ }
+ 
+ NemoWindowPane *
+
+diff --git a/src/nemo-file-management-properties.glade 
b/src/nemo-file-management-properties.glade
+--- a/src/nemo-file-management-properties.glade2015-11-27 
11:00:22.0 +0100
 b/src/nemo-file-management-properties.glade2016-02-17 
09:05:07.491011645 +0100
+@@ -253,6 +253,9 @@
+ center
+ 800
+ 600
++
++  
++
+ dialog
+ 
+   
\ No newline at end of file


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

2016-04-12 Thread Lukas Fleischer
Date: Tuesday, April 12, 2016 @ 22:11:06
  Author: lfleischer
Revision: 264739

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

Added:
  xerces-c/repos/extra-i686/PKGBUILD
(from rev 264738, xerces-c/trunk/PKGBUILD)
  xerces-c/repos/extra-x86_64/PKGBUILD
(from rev 264738, xerces-c/trunk/PKGBUILD)
Deleted:
  xerces-c/repos/extra-i686/PKGBUILD
  xerces-c/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-04-12 20:10:44 UTC (rev 264738)
+++ extra-i686/PKGBUILD 2016-04-12 20:11:06 UTC (rev 264739)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: Sergej Pupykin 
-# Contributor: Geoffroy Carrier 
-# Contributor: Roman Kyrylych 
-
-pkgname=xerces-c
-pkgver=3.1.2
-pkgrel=2
-pkgdesc="A validating XML parser written in a portable subset of C++"
-arch=('i686' 'x86_64')
-url="http://xerces.apache.org/xerces-c/;
-license=('APACHE')
-depends=('gcc-libs' 'curl')
-source=("http://apache.osuosl.org/xerces/c/3/sources/${pkgname}-${pkgver}.tar.gz;)
-md5sums=('9eb1048939e88d6a7232c67569b23985')
-
-build() {
-  cd ${pkgname}-${pkgver}
-
-  [[ "${CARCH}" = "i686" ]] && SSE2="--disable-sse2"
-
-  ./configure --prefix=/usr \
---sysconfdir=/etc ${SSE2}
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}/" install
-}

Copied: xerces-c/repos/extra-i686/PKGBUILD (from rev 264738, 
xerces-c/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-04-12 20:11:06 UTC (rev 264739)
@@ -0,0 +1,28 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: Sergej Pupykin 
+# Contributor: Geoffroy Carrier 
+# Contributor: Roman Kyrylych 
+
+pkgname=xerces-c
+pkgver=3.1.3
+pkgrel=1
+pkgdesc="A validating XML parser written in a portable subset of C++"
+arch=('i686' 'x86_64')
+url="http://xerces.apache.org/xerces-c/;
+license=('APACHE')
+depends=('gcc-libs' 'curl')
+source=("http://apache.osuosl.org/xerces/c/3/sources/${pkgname}-${pkgver}.tar.gz;)
+md5sums=('70320ab0e3269e47d978a6ca0c0e1e2d')
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  [[ "${CARCH}" = "i686" ]] && SSE2="--disable-sse2"
+  ./configure --prefix=/usr --sysconfdir=/etc ${SSE2}
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}/" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-04-12 20:10:44 UTC (rev 264738)
+++ extra-x86_64/PKGBUILD   2016-04-12 20:11:06 UTC (rev 264739)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: Sergej Pupykin 
-# Contributor: Geoffroy Carrier 
-# Contributor: Roman Kyrylych 
-
-pkgname=xerces-c
-pkgver=3.1.2
-pkgrel=2
-pkgdesc="A validating XML parser written in a portable subset of C++"
-arch=('i686' 'x86_64')
-url="http://xerces.apache.org/xerces-c/;
-license=('APACHE')
-depends=('gcc-libs' 'curl')
-source=("http://apache.osuosl.org/xerces/c/3/sources/${pkgname}-${pkgver}.tar.gz;)
-md5sums=('9eb1048939e88d6a7232c67569b23985')
-
-build() {
-  cd ${pkgname}-${pkgver}
-
-  [[ "${CARCH}" = "i686" ]] && SSE2="--disable-sse2"
-
-  ./configure --prefix=/usr \
---sysconfdir=/etc ${SSE2}
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}/" install
-}

Copied: xerces-c/repos/extra-x86_64/PKGBUILD (from rev 264738, 
xerces-c/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-04-12 20:11:06 UTC (rev 264739)
@@ -0,0 +1,28 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: Sergej Pupykin 
+# Contributor: Geoffroy Carrier 
+# Contributor: Roman Kyrylych 
+
+pkgname=xerces-c
+pkgver=3.1.3
+pkgrel=1
+pkgdesc="A validating XML parser written in a portable subset of C++"
+arch=('i686' 'x86_64')
+url="http://xerces.apache.org/xerces-c/;
+license=('APACHE')
+depends=('gcc-libs' 'curl')
+source=("http://apache.osuosl.org/xerces/c/3/sources/${pkgname}-${pkgver}.tar.gz;)
+md5sums=('70320ab0e3269e47d978a6ca0c0e1e2d')
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  [[ "${CARCH}" = "i686" ]] && SSE2="--disable-sse2"
+  ./configure --prefix=/usr --sysconfdir=/etc ${SSE2}
+  make
+}
+
+package() {
+  cd 

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

2016-04-12 Thread Lukas Fleischer
Date: Tuesday, April 12, 2016 @ 22:10:44
  Author: lfleischer
Revision: 264738

xerces-c: Remove repos/community-*

Deleted:
  xerces-c/repos/community-i686/
  xerces-c/repos/community-x86_64/


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

2016-04-12 Thread Lukas Fleischer
Date: Tuesday, April 12, 2016 @ 22:02:32
  Author: lfleischer
Revision: 264736

upgpkg: xerces-c 3.1.3-1

Upstream update.

Modified:
  xerces-c/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-12 18:52:18 UTC (rev 264735)
+++ PKGBUILD2016-04-12 20:02:32 UTC (rev 264736)
@@ -1,12 +1,11 @@
-# $Id$
-# Maintainer:
+# Maintainer: Lukas Fleischer 
 # Contributor: Sergej Pupykin 
 # Contributor: Geoffroy Carrier 
 # Contributor: Roman Kyrylych 
 
 pkgname=xerces-c
-pkgver=3.1.2
-pkgrel=2
+pkgver=3.1.3
+pkgrel=1
 pkgdesc="A validating XML parser written in a portable subset of C++"
 arch=('i686' 'x86_64')
 url="http://xerces.apache.org/xerces-c/;
@@ -13,15 +12,13 @@
 license=('APACHE')
 depends=('gcc-libs' 'curl')
 
source=("http://apache.osuosl.org/xerces/c/3/sources/${pkgname}-${pkgver}.tar.gz;)
-md5sums=('9eb1048939e88d6a7232c67569b23985')
+md5sums=('70320ab0e3269e47d978a6ca0c0e1e2d')
 
 build() {
   cd ${pkgname}-${pkgver}
 
   [[ "${CARCH}" = "i686" ]] && SSE2="--disable-sse2"
-
-  ./configure --prefix=/usr \
---sysconfdir=/etc ${SSE2}
+  ./configure --prefix=/usr --sysconfdir=/etc ${SSE2}
   make
 }
 


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

2016-04-12 Thread Lukas Fleischer
Date: Tuesday, April 12, 2016 @ 22:02:42
  Author: lfleischer
Revision: 264737

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

Added:
  xerces-c/repos/community-i686/
  xerces-c/repos/community-i686/PKGBUILD
(from rev 264736, xerces-c/trunk/PKGBUILD)
  xerces-c/repos/community-x86_64/
  xerces-c/repos/community-x86_64/PKGBUILD
(from rev 264736, xerces-c/trunk/PKGBUILD)

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

Copied: xerces-c/repos/community-i686/PKGBUILD (from rev 264736, 
xerces-c/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-04-12 20:02:42 UTC (rev 264737)
@@ -0,0 +1,28 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: Sergej Pupykin 
+# Contributor: Geoffroy Carrier 
+# Contributor: Roman Kyrylych 
+
+pkgname=xerces-c
+pkgver=3.1.3
+pkgrel=1
+pkgdesc="A validating XML parser written in a portable subset of C++"
+arch=('i686' 'x86_64')
+url="http://xerces.apache.org/xerces-c/;
+license=('APACHE')
+depends=('gcc-libs' 'curl')
+source=("http://apache.osuosl.org/xerces/c/3/sources/${pkgname}-${pkgver}.tar.gz;)
+md5sums=('70320ab0e3269e47d978a6ca0c0e1e2d')
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  [[ "${CARCH}" = "i686" ]] && SSE2="--disable-sse2"
+  ./configure --prefix=/usr --sysconfdir=/etc ${SSE2}
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}/" install
+}

Copied: xerces-c/repos/community-x86_64/PKGBUILD (from rev 264736, 
xerces-c/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-04-12 20:02:42 UTC (rev 264737)
@@ -0,0 +1,28 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: Sergej Pupykin 
+# Contributor: Geoffroy Carrier 
+# Contributor: Roman Kyrylych 
+
+pkgname=xerces-c
+pkgver=3.1.3
+pkgrel=1
+pkgdesc="A validating XML parser written in a portable subset of C++"
+arch=('i686' 'x86_64')
+url="http://xerces.apache.org/xerces-c/;
+license=('APACHE')
+depends=('gcc-libs' 'curl')
+source=("http://apache.osuosl.org/xerces/c/3/sources/${pkgname}-${pkgver}.tar.gz;)
+md5sums=('70320ab0e3269e47d978a6ca0c0e1e2d')
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  [[ "${CARCH}" = "i686" ]] && SSE2="--disable-sse2"
+  ./configure --prefix=/usr --sysconfdir=/etc ${SSE2}
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}/" install
+}


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

2016-04-12 Thread Johannes Löthberg
Date: Tuesday, April 12, 2016 @ 21:37:39
  Author: demize
Revision: 170792

upgpkg: go-ipfs 0.4.0-1

Modified:
  go-ipfs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-12 19:08:38 UTC (rev 170791)
+++ PKGBUILD2016-04-12 19:37:39 UTC (rev 170792)
@@ -5,30 +5,37 @@
 # Contributor: Ian Naval 
 
 pkgname=go-ipfs
-pkgver=0.3.11
-pkgrel=2
-pkgdesc='The InterPlanetary File System is a peer-to-peer hypermedia 
distribution protocol'
+pkgver=0.4.0
+pkgrel=1
+
+pkgdesc='A peer-to-peer hypermedia distribution protocol'
 url='http://ipfs.io/'
 arch=(i686 x86_64)
 license=(MIT)
+
 depends=(glibc)
-makedepends=(go)
 optdepends=('fuse: for mounting/advanced use')
+makedepends=(go git)
+
 
source=(go-ipfs-$pkgver.tar.gz::https://github.com/ipfs/go-ipfs/archive/v$pkgver.tar.gz
-   ipfs.service)
-sha512sums=('2a4d15527d6502add76f9c7f2be3c17293d2c54f90c83eafe4aad7e3d8be09df66e92f5864b4903e85ea147eec103eb9dbd85a67d30110c9a1ecc8c31d008793'
+ipfs.service)
+sha512sums=('ff8d7c7b2da8a1315050706efa440cc3f06d76aa437a3b83dc2b1a2d7287fca1450d5f0d0b353a18407bcaa06748401bd609cdb1ba667a7d0121ba8216d6d444'
 
'1a6bc7fffc3c3640cda3f33c107424edd698c62bd8509731856b8827ea18be1a1845ef0d5ca15325d48d7d871a78daacc011ff9eacea926bc35899850990c1c6')
 
 prepare() {
-  cd go-ipfs-$pkgver
+  export GOPATH="$PWD"/.gopath
+  mkdir -p "$GOPATH"/src/github.com/ipfs
+  ln -sf "$PWD"/go-ipfs-$pkgver "$GOPATH"/src/github.com/ipfs/go-ipfs
 
-  mkdir -p .gopath/src/github.com/ipfs
-  ln -sf "$PWD" .gopath/src/github.com/ipfs/go-ipfs
+  cd "$GOPATH"/src/github.com/ipfs/go-ipfs
+  make toolkit_upgrade
 }
 
 build() {
-  cd go-ipfs-$pkgver/cmd/ipfs
-  GOPATH="$PWD/../../.gopath" go build -v
+  export PATH="$PATH":"$PWD"/.gopath/bin
+  cd "$GOPATH"/src/github.com/ipfs/go-ipfs
+
+  make build
 }
 
 package() {


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

2016-04-12 Thread Johannes Löthberg
Date: Tuesday, April 12, 2016 @ 21:37:53
  Author: demize
Revision: 170793

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

Added:
  go-ipfs/repos/community-i686/PKGBUILD
(from rev 170792, go-ipfs/trunk/PKGBUILD)
  go-ipfs/repos/community-i686/ipfs.service
(from rev 170792, go-ipfs/trunk/ipfs.service)
  go-ipfs/repos/community-x86_64/PKGBUILD
(from rev 170792, go-ipfs/trunk/PKGBUILD)
  go-ipfs/repos/community-x86_64/ipfs.service
(from rev 170792, go-ipfs/trunk/ipfs.service)
Deleted:
  go-ipfs/repos/community-i686/PKGBUILD
  go-ipfs/repos/community-i686/ipfs.service
  go-ipfs/repos/community-x86_64/PKGBUILD
  go-ipfs/repos/community-x86_64/ipfs.service

---+
 /PKGBUILD |   98 
 /ipfs.service |   18 +++
 community-i686/PKGBUILD   |   42 -
 community-i686/ipfs.service   |9 ---
 community-x86_64/PKGBUILD |   42 -
 community-x86_64/ipfs.service |9 ---
 6 files changed, 116 insertions(+), 102 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-04-12 19:37:39 UTC (rev 170792)
+++ community-i686/PKGBUILD 2016-04-12 19:37:53 UTC (rev 170793)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Anatol Pomozov
-# Contributor: kpcyrd 
-# Contributor: Frederik “Freso” S. Olesen 
-# Contributor: Ian Naval 
-
-pkgname=go-ipfs
-pkgver=0.3.11
-pkgrel=2
-pkgdesc='The InterPlanetary File System is a peer-to-peer hypermedia 
distribution protocol'
-url='http://ipfs.io/'
-arch=(i686 x86_64)
-license=(MIT)
-depends=(glibc)
-makedepends=(go)
-optdepends=('fuse: for mounting/advanced use')
-source=(go-ipfs-$pkgver.tar.gz::https://github.com/ipfs/go-ipfs/archive/v$pkgver.tar.gz
-   ipfs.service)
-sha512sums=('2a4d15527d6502add76f9c7f2be3c17293d2c54f90c83eafe4aad7e3d8be09df66e92f5864b4903e85ea147eec103eb9dbd85a67d30110c9a1ecc8c31d008793'
-
'1a6bc7fffc3c3640cda3f33c107424edd698c62bd8509731856b8827ea18be1a1845ef0d5ca15325d48d7d871a78daacc011ff9eacea926bc35899850990c1c6')
-
-prepare() {
-  cd go-ipfs-$pkgver
-
-  mkdir -p .gopath/src/github.com/ipfs
-  ln -sf "$PWD" .gopath/src/github.com/ipfs/go-ipfs
-}
-
-build() {
-  cd go-ipfs-$pkgver/cmd/ipfs
-  GOPATH="$PWD/../../.gopath" go build -v
-}
-
-package() {
-  cd go-ipfs-$pkgver
-
-  install -Dm 755 cmd/ipfs/ipfs "$pkgdir/usr/bin/ipfs"
-  install -Dm 644  ../ipfs.service "$pkgdir/usr/lib/systemd/user/ipfs.service"
-  install -Dm 644 misc/completion/ipfs-completion.bash 
"$pkgdir/usr/share/bash-completion/completions/ipfs"
-  install -Dm 644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE
-  install -Dm 644 -t "$pkgdir/usr/share/doc/$pkgname" README.md
-}

Copied: go-ipfs/repos/community-i686/PKGBUILD (from rev 170792, 
go-ipfs/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-04-12 19:37:53 UTC (rev 170793)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Anatol Pomozov
+# Contributor: kpcyrd 
+# Contributor: Frederik “Freso” S. Olesen 
+# Contributor: Ian Naval 
+
+pkgname=go-ipfs
+pkgver=0.4.0
+pkgrel=1
+
+pkgdesc='A peer-to-peer hypermedia distribution protocol'
+url='http://ipfs.io/'
+arch=(i686 x86_64)
+license=(MIT)
+
+depends=(glibc)
+optdepends=('fuse: for mounting/advanced use')
+makedepends=(go git)
+
+source=(go-ipfs-$pkgver.tar.gz::https://github.com/ipfs/go-ipfs/archive/v$pkgver.tar.gz
+ipfs.service)
+sha512sums=('ff8d7c7b2da8a1315050706efa440cc3f06d76aa437a3b83dc2b1a2d7287fca1450d5f0d0b353a18407bcaa06748401bd609cdb1ba667a7d0121ba8216d6d444'
+
'1a6bc7fffc3c3640cda3f33c107424edd698c62bd8509731856b8827ea18be1a1845ef0d5ca15325d48d7d871a78daacc011ff9eacea926bc35899850990c1c6')
+
+prepare() {
+  export GOPATH="$PWD"/.gopath
+  mkdir -p "$GOPATH"/src/github.com/ipfs
+  ln -sf "$PWD"/go-ipfs-$pkgver "$GOPATH"/src/github.com/ipfs/go-ipfs
+
+  cd "$GOPATH"/src/github.com/ipfs/go-ipfs
+  make toolkit_upgrade
+}
+
+build() {
+  export PATH="$PATH":"$PWD"/.gopath/bin
+  cd "$GOPATH"/src/github.com/ipfs/go-ipfs
+
+  make build
+}
+
+package() {
+  cd go-ipfs-$pkgver
+
+  install -Dm 755 cmd/ipfs/ipfs "$pkgdir/usr/bin/ipfs"
+  install -Dm 644  ../ipfs.service "$pkgdir/usr/lib/systemd/user/ipfs.service"
+  install -Dm 644 misc/completion/ipfs-completion.bash 
"$pkgdir/usr/share/bash-completion/completions/ipfs"
+  install -Dm 644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE
+  install -Dm 644 -t "$pkgdir/usr/share/doc/$pkgname" README.md
+}

Deleted: community-i686/ipfs.service
===
--- community-i686/ipfs.service 2016-04-12 19:37:39 UTC (rev 170792)
+++ community-i686/ipfs.service 

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

2016-04-12 Thread Lukas Fleischer
Date: Tuesday, April 12, 2016 @ 21:08:27
  Author: lfleischer
Revision: 170790

upgpkg: calcurse 4.1.0-1

Upstream update.

Modified:
  calcurse/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-12 18:34:16 UTC (rev 170789)
+++ PKGBUILD2016-04-12 19:08:27 UTC (rev 170790)
@@ -1,19 +1,19 @@
-# $Id$
 # Maintainer: Lukas Fleischer 
 # Contributor: Ronald van Haren 
 # Contributor: wain 
 
 pkgname=calcurse
-pkgver=4.0.0
-pkgrel=2
+pkgver=4.1.0
+pkgrel=1
 pkgdesc='A text-based personal organizer.'
 arch=('i686' 'x86_64')
 url='http://calcurse.org/'
 license=('BSD')
 depends=('ncurses')
+optdepends=('python: for CalDAV support')
 install='calcurse.install'
 source=("http://calcurse.org/files/${pkgname}-${pkgver}.tar.gz"{,.asc})
-md5sums=('3cd414a30e6e1d118ae340bc7cb1a93a'
+md5sums=('baf0b0f736b6ee6609701ef50ea588ad'
  'SKIP')
 validpgpkeys=(2E36D8620221482FC45CB7F2A91764759326B440) # Lukas Fleischer
 


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

2016-04-12 Thread Lukas Fleischer
Date: Tuesday, April 12, 2016 @ 21:08:38
  Author: lfleischer
Revision: 170791

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

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

---+
 /PKGBUILD |   64 
 /calcurse.install |   16 +
 community-i686/PKGBUILD   |   32 --
 community-i686/calcurse.install   |8 
 community-x86_64/PKGBUILD |   32 --
 community-x86_64/calcurse.install |8 
 6 files changed, 80 insertions(+), 80 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-04-12 19:08:27 UTC (rev 170790)
+++ community-i686/PKGBUILD 2016-04-12 19:08:38 UTC (rev 170791)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Lukas Fleischer 
-# Contributor: Ronald van Haren 
-# Contributor: wain 
-
-pkgname=calcurse
-pkgver=4.0.0
-pkgrel=2
-pkgdesc='A text-based personal organizer.'
-arch=('i686' 'x86_64')
-url='http://calcurse.org/'
-license=('BSD')
-depends=('ncurses')
-install='calcurse.install'
-source=("http://calcurse.org/files/${pkgname}-${pkgver}.tar.gz"{,.asc})
-md5sums=('3cd414a30e6e1d118ae340bc7cb1a93a'
- 'SKIP')
-validpgpkeys=(2E36D8620221482FC45CB7F2A91764759326B440) # Lukas Fleischer
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  ./configure --enable-docs --without-asciidoc --prefix=/usr 
--mandir=/usr/share/man
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  make DESTDIR="${pkgdir}" install
-  install -Dm0644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
-}

Copied: calcurse/repos/community-i686/PKGBUILD (from rev 170790, 
calcurse/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-04-12 19:08:38 UTC (rev 170791)
@@ -0,0 +1,32 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: Ronald van Haren 
+# Contributor: wain 
+
+pkgname=calcurse
+pkgver=4.1.0
+pkgrel=1
+pkgdesc='A text-based personal organizer.'
+arch=('i686' 'x86_64')
+url='http://calcurse.org/'
+license=('BSD')
+depends=('ncurses')
+optdepends=('python: for CalDAV support')
+install='calcurse.install'
+source=("http://calcurse.org/files/${pkgname}-${pkgver}.tar.gz"{,.asc})
+md5sums=('baf0b0f736b6ee6609701ef50ea588ad'
+ 'SKIP')
+validpgpkeys=(2E36D8620221482FC45CB7F2A91764759326B440) # Lukas Fleischer
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ./configure --enable-docs --without-asciidoc --prefix=/usr 
--mandir=/usr/share/man
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  make DESTDIR="${pkgdir}" install
+  install -Dm0644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}

Deleted: community-i686/calcurse.install
===
--- community-i686/calcurse.install 2016-04-12 19:08:27 UTC (rev 170790)
+++ community-i686/calcurse.install 2016-04-12 19:08:38 UTC (rev 170791)
@@ -1,8 +0,0 @@
-post_upgrade() {
-  if (( $(vercmp $2 3.0.0) < 0 )); then
-cat <<"EOF"
-==> The configuration file format has changed in calcurse 3.0.0.
-==> Run `calcurse-upgrade` to upgrade your configuration files.
-EOF
-  fi
-}

Copied: calcurse/repos/community-i686/calcurse.install (from rev 170790, 
calcurse/trunk/calcurse.install)
===
--- community-i686/calcurse.install (rev 0)
+++ community-i686/calcurse.install 2016-04-12 19:08:38 UTC (rev 170791)
@@ -0,0 +1,8 @@
+post_upgrade() {
+  if (( $(vercmp $2 3.0.0) < 0 )); then
+cat <<"EOF"
+==> The configuration file format has changed in calcurse 3.0.0.
+==> Run `calcurse-upgrade` to upgrade your configuration files.
+EOF
+  fi
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-04-12 19:08:27 UTC (rev 170790)
+++ community-x86_64/PKGBUILD   2016-04-12 19:08:38 UTC (rev 170791)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Lukas Fleischer 
-# Contributor: Ronald van Haren 
-# Contributor: wain 
-
-pkgname=calcurse
-pkgver=4.0.0
-pkgrel=2
-pkgdesc='A 

[arch-commits] Commit in bash-completion/repos/testing-any (4 files)

2016-04-12 Thread Dave Reisner
Date: Tuesday, April 12, 2016 @ 20:52:18
  Author: dreisner
Revision: 264735

archrelease: copy trunk to testing-any

Added:
  bash-completion/repos/testing-any/PKGBUILD
(from rev 264734, bash-completion/trunk/PKGBUILD)
  bash-completion/repos/testing-any/bash-4.3.patch
(from rev 264734, bash-completion/trunk/bash-4.3.patch)
Deleted:
  bash-completion/repos/testing-any/PKGBUILD
  bash-completion/repos/testing-any/bash-4.3.patch

+
 PKGBUILD   |   85 ++-
 bash-4.3.patch |   54 +-
 2 files changed, 68 insertions(+), 71 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-04-12 18:51:52 UTC (rev 264734)
+++ PKGBUILD2016-04-12 18:52:18 UTC (rev 264735)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgname=bash-completion
-pkgver=2.3
-pkgrel=2
-pkgdesc="Programmable completion for the bash shell"
-arch=('any')
-url="https://github.com/scop/bash-completion;
-license=('GPL2')
-depends=('bash')
-options=('!emptydirs' '!makeflags')
-source=("https://github.com/scop/bash-completion/releases/download/2.3/bash-completion-2.3.tar.xz;
-'bash-4.3.patch')
-sha1sums=('6b42d6747dab48bdc983627e8ce69283ff0e6b79'
-  'd2a01350990c1221bd53d55edf31210c74d02bca')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  patch -p1 -i ../bash-4.3.patch
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr --sysconfdir=/etc
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-
-# bash-completion is sourced in /etc/bash.bashrc so that non-bash shell don't 
source it
-  rm "${pkgdir}/etc/profile.d/bash_completion.sh"
-
-# remove Slackware's makepkg completion
-  rm "${pkgdir}/usr/share/bash-completion/completions/makepkg"
-
-# remove completions which overlap with util-linux
-  rm "${pkgdir}/usr/share/bash-completion/completions"/{u,}mount
-
-# remove completions provided by android-tools
-  rm "${pkgdir}/usr/share/bash-completion/completions"/adb
-}

Copied: bash-completion/repos/testing-any/PKGBUILD (from rev 264734, 
bash-completion/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-04-12 18:52:18 UTC (rev 264735)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=bash-completion
+pkgver=2.3
+pkgrel=3
+pkgdesc="Programmable completion for the bash shell"
+arch=('any')
+url="https://github.com/scop/bash-completion;
+license=('GPL2')
+depends=('bash')
+options=('!emptydirs' '!makeflags')
+source=("https://github.com/scop/bash-completion/releases/download/2.3/bash-completion-2.3.tar.xz;
+'bash-4.3.patch')
+sha1sums=('6b42d6747dab48bdc983627e8ce69283ff0e6b79'
+  'd2a01350990c1221bd53d55edf31210c74d02bca')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  patch -p1 -i ../bash-4.3.patch
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/etc
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+# bash-completion is sourced in /etc/bash.bashrc so that non-bash shell don't 
source it
+  rm "${pkgdir}/etc/profile.d/bash_completion.sh"
+
+# remove Slackware's makepkg completion
+  rm "${pkgdir}/usr/share/bash-completion/completions/makepkg"
+
+# remove completions which overlap with util-linux
+  rm "${pkgdir}/usr/share/bash-completion/completions"/{u,}mount
+}

Deleted: bash-4.3.patch
===
--- bash-4.3.patch  2016-04-12 18:51:52 UTC (rev 264734)
+++ bash-4.3.patch  2016-04-12 18:52:18 UTC (rev 264735)
@@ -1,27 +0,0 @@
 a/bash_completion  2014-03-09 17:38:14 +
-+++ b/bash_completion  2014-03-13 23:26:44 +
-@@ -536,13 +536,23 @@
- # @param $2  Name of variable to return result to
- _quote_readline_by_ref()
- {
--if [[ $1 == \'* ]]; then
-+if [ -z "$1" ]; then
-+# avoid quoting if empty
-+printf -v $2 %s "$1"
-+elif [[ $1 == \'* ]]; then
- # Leave out first character
- printf -v $2 %s "${1:1}"
-+elif [[ $1 == ~* ]]; then
-+# avoid escaping first ~
-+printf -v $2 ~%q "${1:1}"
- else
- printf -v $2 %q "$1"
- fi
- 
-+# Replace double escaping ( \\ ) by single ( \ )
-+# This happens always when argument is already escaped at cmdline,
-+# and passed to this function as e.g.: file\ with\ spaces
-+[[ ${!2} == *\\* ]] && printf -v $2 %s "${1///\\}"
- # If result becomes quoted like this: $'string', re-evaluate in order to
- # drop the additional quoting.  See also: http://www.mail-archive.com/
- # bash-completion-de...@lists.alioth.debian.org/msg01942.html

Copied: bash-completion/repos/testing-any/bash-4.3.patch (from rev 264734, 
bash-completion/trunk/bash-4.3.patch)

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

2016-04-12 Thread Dave Reisner
Date: Tuesday, April 12, 2016 @ 20:51:52
  Author: dreisner
Revision: 264734

upgpkg: bash-completion 2.3-3

- reinstate adb completion, conflict resolved with android-tools

Modified:
  bash-completion/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-12 18:16:35 UTC (rev 264733)
+++ PKGBUILD2016-04-12 18:51:52 UTC (rev 264734)
@@ -3,7 +3,7 @@
 
 pkgname=bash-completion
 pkgver=2.3
-pkgrel=2
+pkgrel=3
 pkgdesc="Programmable completion for the bash shell"
 arch=('any')
 url="https://github.com/scop/bash-completion;
@@ -38,7 +38,4 @@
 
 # remove completions which overlap with util-linux
   rm "${pkgdir}/usr/share/bash-completion/completions"/{u,}mount
-
-# remove completions provided by android-tools
-  rm "${pkgdir}/usr/share/bash-completion/completions"/adb
 }


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

2016-04-12 Thread Jelle van der Waa
Date: Tuesday, April 12, 2016 @ 20:34:16
  Author: jelle
Revision: 170789

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

Added:
  vte3-ng/repos/community-i686/PKGBUILD
(from rev 170788, vte3-ng/trunk/PKGBUILD)
  vte3-ng/repos/community-i686/remove_cursor.patch
(from rev 170788, vte3-ng/trunk/remove_cursor.patch)
  vte3-ng/repos/community-x86_64/PKGBUILD
(from rev 170788, vte3-ng/trunk/PKGBUILD)
  vte3-ng/repos/community-x86_64/remove_cursor.patch
(from rev 170788, vte3-ng/trunk/remove_cursor.patch)
Deleted:
  vte3-ng/repos/community-i686/PKGBUILD
  vte3-ng/repos/community-i686/remove_cursor.patch
  vte3-ng/repos/community-x86_64/PKGBUILD
  vte3-ng/repos/community-x86_64/remove_cursor.patch

--+
 /PKGBUILD|   70 +
 /remove_cursor.patch |   64 ++
 community-i686/PKGBUILD  |   42 ---
 community-i686/remove_cursor.patch   |   32 ---
 community-x86_64/PKGBUILD|   42 ---
 community-x86_64/remove_cursor.patch |   32 ---
 6 files changed, 134 insertions(+), 148 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-04-12 18:34:04 UTC (rev 170788)
+++ community-i686/PKGBUILD 2016-04-12 18:34:16 UTC (rev 170789)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Daniel Micay 
-
-pkgname=vte3-ng
-_basever=0.44.0
-pkgver=$_basever.a
-pkgrel=2
-pkgdesc="Enhanced Virtual Terminal Emulator widget for use with GTK3"
-arch=('i686' 'x86_64')
-license=('LGPL')
-options=('!emptydirs')
-depends=('gtk3' 'vte-common' 'pcre2')
-makedepends=('intltool' 'gobject-introspection' 'gtk3' 'vala' 'gtk-doc' 
'gperf')
-url="https://github.com/thestinger/vte-ng;
-source=(https://github.com/thestinger/vte-ng/archive/$pkgver.tar.gz 
remove_cursor.patch::https://github.com/GNOME/vte/commit/e5a00b5b71194be9f2881dee67d82c308406dea7.patch)
 
-sha256sums=('bfa4f4148a63e8b730ab272792f55d03c8afa632bb5c28a440e1a5a8134c4b1b'
-'b5a3be5c66f363b106673ac79359fa8af3233512376ed6596ca5f4a2301dda7a')
-provides=(vte3=$_basever vte3-select-text=$_basever)
-conflicts=(vte3 vte3-select-text)
-replaces=(vte3-select-text)
-
-prepare() {
-  cd "vte-ng-$pkgver"
-  # Add patch for https://bugzilla.gnome.org/show_bug.cgi?id=764299
-  patch -Np1 -i $srcdir/remove_cursor.patch
-}
-
-build() {
-  cd "vte-ng-$pkgver"
-  ./autogen.sh --prefix=/usr --sysconfdir=/etc \
-  --libexecdir=/usr/lib/vte \
-  --localstatedir=/var --disable-static \
-  --enable-introspection
-  make
-}
-
-package() {
-  cd "vte-ng-$pkgver"
-  make DESTDIR="$pkgdir" install
-
-  rm "$pkgdir/etc/profile.d/vte.sh"
-}

Copied: vte3-ng/repos/community-i686/PKGBUILD (from rev 170788, 
vte3-ng/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-04-12 18:34:16 UTC (rev 170789)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Daniel Micay 
+
+pkgname=vte3-ng
+_basever=0.44.1
+pkgver=$_basever.a
+pkgrel=1
+pkgdesc="Enhanced Virtual Terminal Emulator widget for use with GTK3"
+arch=('i686' 'x86_64')
+license=('LGPL')
+options=('!emptydirs')
+depends=('gtk3' 'vte-common' 'pcre2')
+makedepends=('intltool' 'gobject-introspection' 'gtk3' 'vala' 'gtk-doc' 
'gperf')
+url="https://github.com/thestinger/vte-ng;
+source=("https://github.com/thestinger/vte-ng/archive/$pkgver.tar.gz;)
+md5sums=('c9841e2aa5b299c2b61ac1ab83f64760')
+provides=(vte3=$_basever vte3-select-text=$_basever)
+conflicts=(vte3 vte3-select-text)
+replaces=(vte3-select-text)
+
+build() {
+  cd "vte-ng-$pkgver"
+  ./autogen.sh --prefix=/usr --sysconfdir=/etc \
+  --libexecdir=/usr/lib/vte \
+  --localstatedir=/var --disable-static \
+  --enable-introspection
+  make
+}
+
+package() {
+  cd "vte-ng-$pkgver"
+  make DESTDIR="$pkgdir" install
+
+  rm "$pkgdir/etc/profile.d/vte.sh"
+}

Deleted: community-i686/remove_cursor.patch
===
--- community-i686/remove_cursor.patch  2016-04-12 18:34:04 UTC (rev 170788)
+++ community-i686/remove_cursor.patch  2016-04-12 18:34:16 UTC (rev 170789)
@@ -1,32 +0,0 @@
-From e5a00b5b71194be9f2881dee67d82c308406dea7 Mon Sep 17 00:00:00 2001
-From: Egmont Koblinger 
-Date: Wed, 30 Mar 2016 10:46:53 +0200
-Subject: [PATCH] widget: Properly remove the cursor from its old position
-
-https://bugzilla.gnome.org/show_bug.cgi?id=764299

- src/vte.cc | 4 +---
- 1 file changed, 1 insertion(+), 3 deletions(-)
-
-diff --git a/src/vte.cc b/src/vte.cc
-index ce54d89..23f2782 100644
 a/src/vte.cc
-+++ b/src/vte.cc
-@@ -4069,8 +4069,7 @@ VteTerminalPrivate::process_incoming()
- if ((saved_cursor.col != 

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

2016-04-12 Thread Jelle van der Waa
Date: Tuesday, April 12, 2016 @ 20:34:04
  Author: jelle
Revision: 170788

upgpkg: vte3-ng 0.44.1.a-1

Modified:
  vte3-ng/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-12 18:02:54 UTC (rev 170787)
+++ PKGBUILD2016-04-12 18:34:04 UTC (rev 170788)
@@ -2,9 +2,9 @@
 # Maintainer: Daniel Micay 
 
 pkgname=vte3-ng
-_basever=0.44.0
+_basever=0.44.1
 pkgver=$_basever.a
-pkgrel=2
+pkgrel=1
 pkgdesc="Enhanced Virtual Terminal Emulator widget for use with GTK3"
 arch=('i686' 'x86_64')
 license=('LGPL')
@@ -12,19 +12,12 @@
 depends=('gtk3' 'vte-common' 'pcre2')
 makedepends=('intltool' 'gobject-introspection' 'gtk3' 'vala' 'gtk-doc' 
'gperf')
 url="https://github.com/thestinger/vte-ng;
-source=(https://github.com/thestinger/vte-ng/archive/$pkgver.tar.gz 
remove_cursor.patch::https://github.com/GNOME/vte/commit/e5a00b5b71194be9f2881dee67d82c308406dea7.patch)
 
-sha256sums=('bfa4f4148a63e8b730ab272792f55d03c8afa632bb5c28a440e1a5a8134c4b1b'
-'b5a3be5c66f363b106673ac79359fa8af3233512376ed6596ca5f4a2301dda7a')
+source=("https://github.com/thestinger/vte-ng/archive/$pkgver.tar.gz;)
+md5sums=('c9841e2aa5b299c2b61ac1ab83f64760')
 provides=(vte3=$_basever vte3-select-text=$_basever)
 conflicts=(vte3 vte3-select-text)
 replaces=(vte3-select-text)
 
-prepare() {
-  cd "vte-ng-$pkgver"
-  # Add patch for https://bugzilla.gnome.org/show_bug.cgi?id=764299
-  patch -Np1 -i $srcdir/remove_cursor.patch
-}
-
 build() {
   cd "vte-ng-$pkgver"
   ./autogen.sh --prefix=/usr --sysconfdir=/etc \


[arch-commits] Commit in bash-completion/repos/testing-any (4 files)

2016-04-12 Thread Dave Reisner
Date: Tuesday, April 12, 2016 @ 20:16:35
  Author: dreisner
Revision: 264733

archrelease: copy trunk to testing-any

Added:
  bash-completion/repos/testing-any/PKGBUILD
(from rev 264732, bash-completion/trunk/PKGBUILD)
  bash-completion/repos/testing-any/bash-4.3.patch
(from rev 264732, bash-completion/trunk/bash-4.3.patch)
Deleted:
  bash-completion/repos/testing-any/PKGBUILD
  bash-completion/repos/testing-any/bash-4.3.patch

+
 PKGBUILD   |   85 ---
 bash-4.3.patch |   54 +-
 2 files changed, 71 insertions(+), 68 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-04-12 18:16:18 UTC (rev 264732)
+++ PKGBUILD2016-04-12 18:16:35 UTC (rev 264733)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgname=bash-completion
-pkgver=2.3
-pkgrel=1
-pkgdesc="Programmable completion for the bash shell"
-arch=('any')
-url="https://github.com/scop/bash-completion;
-license=('GPL2')
-depends=('bash')
-options=('!emptydirs' '!makeflags')
-source=("https://github.com/scop/bash-completion/releases/download/2.3/bash-completion-2.3.tar.xz;
-'bash-4.3.patch')
-sha1sums=('6b42d6747dab48bdc983627e8ce69283ff0e6b79'
-  'd2a01350990c1221bd53d55edf31210c74d02bca')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  patch -p1 -i ../bash-4.3.patch
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr --sysconfdir=/etc
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-
-# bash-completion is sourced in /etc/bash.bashrc so that non-bash shell don't 
source it
-  rm "${pkgdir}/etc/profile.d/bash_completion.sh"
-
-# remove Slackware's makepkg completion
-  rm "${pkgdir}/usr/share/bash-completion/completions/makepkg"
-
-# remove completions which overlap with util-linux
-  rm "${pkgdir}/usr/share/bash-completion/completions"/{u,}mount
-}

Copied: bash-completion/repos/testing-any/PKGBUILD (from rev 264732, 
bash-completion/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-04-12 18:16:35 UTC (rev 264733)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=bash-completion
+pkgver=2.3
+pkgrel=2
+pkgdesc="Programmable completion for the bash shell"
+arch=('any')
+url="https://github.com/scop/bash-completion;
+license=('GPL2')
+depends=('bash')
+options=('!emptydirs' '!makeflags')
+source=("https://github.com/scop/bash-completion/releases/download/2.3/bash-completion-2.3.tar.xz;
+'bash-4.3.patch')
+sha1sums=('6b42d6747dab48bdc983627e8ce69283ff0e6b79'
+  'd2a01350990c1221bd53d55edf31210c74d02bca')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  patch -p1 -i ../bash-4.3.patch
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/etc
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+# bash-completion is sourced in /etc/bash.bashrc so that non-bash shell don't 
source it
+  rm "${pkgdir}/etc/profile.d/bash_completion.sh"
+
+# remove Slackware's makepkg completion
+  rm "${pkgdir}/usr/share/bash-completion/completions/makepkg"
+
+# remove completions which overlap with util-linux
+  rm "${pkgdir}/usr/share/bash-completion/completions"/{u,}mount
+
+# remove completions provided by android-tools
+  rm "${pkgdir}/usr/share/bash-completion/completions"/adb
+}

Deleted: bash-4.3.patch
===
--- bash-4.3.patch  2016-04-12 18:16:18 UTC (rev 264732)
+++ bash-4.3.patch  2016-04-12 18:16:35 UTC (rev 264733)
@@ -1,27 +0,0 @@
 a/bash_completion  2014-03-09 17:38:14 +
-+++ b/bash_completion  2014-03-13 23:26:44 +
-@@ -536,13 +536,23 @@
- # @param $2  Name of variable to return result to
- _quote_readline_by_ref()
- {
--if [[ $1 == \'* ]]; then
-+if [ -z "$1" ]; then
-+# avoid quoting if empty
-+printf -v $2 %s "$1"
-+elif [[ $1 == \'* ]]; then
- # Leave out first character
- printf -v $2 %s "${1:1}"
-+elif [[ $1 == ~* ]]; then
-+# avoid escaping first ~
-+printf -v $2 ~%q "${1:1}"
- else
- printf -v $2 %q "$1"
- fi
- 
-+# Replace double escaping ( \\ ) by single ( \ )
-+# This happens always when argument is already escaped at cmdline,
-+# and passed to this function as e.g.: file\ with\ spaces
-+[[ ${!2} == *\\* ]] && printf -v $2 %s "${1///\\}"
- # If result becomes quoted like this: $'string', re-evaluate in order to
- # drop the additional quoting.  See also: http://www.mail-archive.com/
- # bash-completion-de...@lists.alioth.debian.org/msg01942.html

Copied: bash-completion/repos/testing-any/bash-4.3.patch (from rev 264732, 
bash-completion/trunk/bash-4.3.patch)

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

2016-04-12 Thread Dave Reisner
Date: Tuesday, April 12, 2016 @ 20:16:18
  Author: dreisner
Revision: 264732

upgpkg: bash-completion 2.3-2

- drop adb completion, provided by android-tools

Modified:
  bash-completion/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-12 17:55:39 UTC (rev 264731)
+++ PKGBUILD2016-04-12 18:16:18 UTC (rev 264732)
@@ -3,7 +3,7 @@
 
 pkgname=bash-completion
 pkgver=2.3
-pkgrel=1
+pkgrel=2
 pkgdesc="Programmable completion for the bash shell"
 arch=('any')
 url="https://github.com/scop/bash-completion;
@@ -38,4 +38,7 @@
 
 # remove completions which overlap with util-linux
   rm "${pkgdir}/usr/share/bash-completion/completions"/{u,}mount
+
+# remove completions provided by android-tools
+  rm "${pkgdir}/usr/share/bash-completion/completions"/adb
 }


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

2016-04-12 Thread Anatol Pomozov
Date: Tuesday, April 12, 2016 @ 20:02:54
  Author: anatolik
Revision: 170787

archrelease: copy trunk to community-any

Added:
  ruby-tins/repos/community-any/PKGBUILD
(from rev 170786, ruby-tins/trunk/PKGBUILD)
Deleted:
  ruby-tins/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-04-12 18:01:59 UTC (rev 170786)
+++ PKGBUILD2016-04-12 18:02:54 UTC (rev 170787)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin 
-# Contributor: Julien Nicoulaud 
-# Contributor: Hyacinthe Cartiaux 
-
-pkgname=ruby-tins
-pkgver=1.9.0
-pkgrel=1
-pkgdesc='All the stuff that is not good/big enough for a real library'
-arch=('any')
-url='https://github.com/flori/tins'
-license=('MIT')
-depends=('ruby')
-options=('!emptydirs')
-source=("https://rubygems.org/downloads/tins-${pkgver}.gem;)
-noextract=("tins-${pkgver}.gem")
-sha256sums=('2d17beff65a34ef74ca1a6721428a6436cf0473b6d701fa68289d3cd2c450deb')
-
-package() {
-  local _gemdir="$(ruby -e'puts Gem.default_dir')"
-
-  gem install --ignore-dependencies --no-user-install -N -i 
"${pkgdir}"/${_gemdir} tins-${pkgver}.gem
-  find "${pkgdir}" -type f -name *.gem -delete
-
-  install -dm 755 "${pkgdir}"/usr/share/licenses/ruby-tins
-  ln -s ${_gemdir}/gems/tins-${pkgver}/COPYING 
"${pkgdir}"/usr/share/licenses/ruby-tins/
-}

Copied: ruby-tins/repos/community-any/PKGBUILD (from rev 170786, 
ruby-tins/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-04-12 18:02:54 UTC (rev 170787)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: Julien Nicoulaud 
+# Contributor: Hyacinthe Cartiaux 
+
+pkgname=ruby-tins
+pkgver=1.10.0
+pkgrel=1
+pkgdesc='All the stuff that is not good/big enough for a real library'
+arch=('any')
+url='https://github.com/flori/tins'
+license=('MIT')
+depends=('ruby')
+options=('!emptydirs')
+source=("https://rubygems.org/downloads/tins-${pkgver}.gem;)
+noextract=("tins-${pkgver}.gem")
+sha256sums=('aa179b7bec51465b19b5175ff129a114d1262bc9ea1de3bae06859ecb6447546')
+
+package() {
+  local _gemdir="$(ruby -e'puts Gem.default_dir')"
+
+  gem install --ignore-dependencies --no-user-install -N -i 
"${pkgdir}"/${_gemdir} tins-${pkgver}.gem
+  find "${pkgdir}" -type f -name *.gem -delete
+
+  install -dm 755 "${pkgdir}"/usr/share/licenses/ruby-tins
+  ln -s ${_gemdir}/gems/tins-${pkgver}/COPYING 
"${pkgdir}"/usr/share/licenses/ruby-tins/
+}


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

2016-04-12 Thread Anatol Pomozov
Date: Tuesday, April 12, 2016 @ 20:01:59
  Author: anatolik
Revision: 170786

upgpkg: ruby-tins 1.10.0-1

Modified:
  ruby-tins/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-12 16:37:55 UTC (rev 170785)
+++ PKGBUILD2016-04-12 18:01:59 UTC (rev 170786)
@@ -4,7 +4,7 @@
 # Contributor: Hyacinthe Cartiaux 
 
 pkgname=ruby-tins
-pkgver=1.9.0
+pkgver=1.10.0
 pkgrel=1
 pkgdesc='All the stuff that is not good/big enough for a real library'
 arch=('any')
@@ -14,7 +14,7 @@
 options=('!emptydirs')
 source=("https://rubygems.org/downloads/tins-${pkgver}.gem;)
 noextract=("tins-${pkgver}.gem")
-sha256sums=('2d17beff65a34ef74ca1a6721428a6436cf0473b6d701fa68289d3cd2c450deb')
+sha256sums=('aa179b7bec51465b19b5175ff129a114d1262bc9ea1de3bae06859ecb6447546')
 
 package() {
   local _gemdir="$(ruby -e'puts Gem.default_dir')"


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

2016-04-12 Thread Andreas Radke
Date: Tuesday, April 12, 2016 @ 19:27:25
  Author: andyrtr
Revision: 264730

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

Added:
  xf86-video-intel/repos/testing-i686/
  xf86-video-intel/repos/testing-i686/PKGBUILD
(from rev 264729, xf86-video-intel/trunk/PKGBUILD)
  xf86-video-intel/repos/testing-i686/xf86-video-intel.install
(from rev 264729, xf86-video-intel/trunk/xf86-video-intel.install)
  xf86-video-intel/repos/testing-x86_64/
  xf86-video-intel/repos/testing-x86_64/PKGBUILD
(from rev 264729, xf86-video-intel/trunk/PKGBUILD)
  xf86-video-intel/repos/testing-x86_64/xf86-video-intel.install
(from rev 264729, xf86-video-intel/trunk/xf86-video-intel.install)

-+
 testing-i686/PKGBUILD   |   62 ++
 testing-i686/xf86-video-intel.install   |   20 +
 testing-x86_64/PKGBUILD |   62 ++
 testing-x86_64/xf86-video-intel.install |   20 +
 4 files changed, 164 insertions(+)

Copied: xf86-video-intel/repos/testing-i686/PKGBUILD (from rev 264729, 
xf86-video-intel/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-04-12 17:27:25 UTC (rev 264730)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer: AndyRTR 
+# Maintainer: Jan de Groot 
+
+pkgname=xf86-video-intel
+pkgver=2.99.917+626+ga7526ea
+pkgrel=1
+epoch=1
+arch=(i686 x86_64)
+url="https://01.org/linuxgraphics;
+license=('custom')
+install=$pkgname.install
+pkgdesc="X.org Intel i810/i830/i915/945G/G965+ video drivers"
+depends=('mesa-dri' 'libxvmc' 'pixman' 'xcb-util>=0.3.9')
+makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=20' 'libx11' 
'libxrender'
+ # additional deps for intel-virtual-output
+ 'libxrandr' 'libxinerama' 'libxcursor' 'libxtst' 'libxss'
+ # additional for git snapshot
+ 'git')
+optdepends=('libxrandr: for intel-virtual-output'
+'libxinerama: for intel-virtual-output'
+'libxcursor: for intel-virtual-output'
+'libxtst: for intel-virtual-output'
+'libxss: for intel-virtual-output')
+replaces=('xf86-video-intel-uxa' 'xf86-video-intel-sna')
+provides=('xf86-video-intel-uxa' 'xf86-video-intel-sna')
+conflicts=('xorg-server<1.16' 'X-ABI-VIDEODRV_VERSION<20' 
'X-ABI-VIDEODRV_VERSION>=21'
+   'xf86-video-intel-sna' 'xf86-video-intel-uxa' 'xf86-video-i810' 
'xf86-video-intel-legacy')
+groups=('xorg-drivers' 'xorg')
+#source=(${url}/archive/individual/driver/${pkgname}-${pkgver}.tar.bz2)
+source=('git://anongit.freedesktop.org/xorg/driver/xf86-video-intel#commit=a7526ea')
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --long | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr --libexecdir=/usr/lib
+  make
+}
+
+check() {
+  cd $pkgname
+  make check
+}
+
+package() {
+  cd $pkgname
+
+  make DESTDIR="${pkgdir}" install
+
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}

Copied: xf86-video-intel/repos/testing-i686/xf86-video-intel.install (from rev 
264729, xf86-video-intel/trunk/xf86-video-intel.install)
===
--- testing-i686/xf86-video-intel.install   (rev 0)
+++ testing-i686/xf86-video-intel.install   2016-04-12 17:27:25 UTC (rev 
264730)
@@ -0,0 +1,20 @@
+post_upgrade() {
+  if (( $(vercmp $2 2.21.15) < 0 )); then
+post_install
+  fi
+}
+
+post_install() {
+  cat <>> This driver uses SNA as the default acceleration method. You can try
+falling back to UXA if you run into trouble. To do so, save a file with
+the following content as /etc/X11/xorg.conf.d/20-intel.conf :
+  Section "Device"
+Identifier  "Intel Graphics"
+Driver  "intel"
+Option  "AccelMethod"  "uxa"
+#Option  "AccelMethod"  "sna"
+  EndSection
+MSG
+}
+

Copied: xf86-video-intel/repos/testing-x86_64/PKGBUILD (from rev 264729, 
xf86-video-intel/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-04-12 17:27:25 UTC (rev 264730)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer: AndyRTR 
+# Maintainer: Jan de Groot 
+
+pkgname=xf86-video-intel
+pkgver=2.99.917+626+ga7526ea
+pkgrel=1
+epoch=1
+arch=(i686 x86_64)
+url="https://01.org/linuxgraphics;
+license=('custom')
+install=$pkgname.install
+pkgdesc="X.org Intel i810/i830/i915/945G/G965+ video drivers"
+depends=('mesa-dri' 'libxvmc' 'pixman' 'xcb-util>=0.3.9')

[arch-commits] Commit in xf86-video-intel/trunk (PKGBUILD)

2016-04-12 Thread Andreas Radke
Date: Tuesday, April 12, 2016 @ 19:27:14
  Author: andyrtr
Revision: 264729

upgpkg: xf86-video-intel 1:2.99.917+626+ga7526ea-1

update to lastest git commit

Modified:
  xf86-video-intel/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-12 17:10:54 UTC (rev 264728)
+++ PKGBUILD2016-04-12 17:27:14 UTC (rev 264729)
@@ -3,7 +3,7 @@
 # Maintainer: Jan de Groot 
 
 pkgname=xf86-video-intel
-pkgver=2.99.917+622+gde44aaa
+pkgver=2.99.917+626+ga7526ea
 pkgrel=1
 epoch=1
 arch=(i686 x86_64)
@@ -28,7 +28,7 @@
'xf86-video-intel-sna' 'xf86-video-intel-uxa' 'xf86-video-i810' 
'xf86-video-intel-legacy')
 groups=('xorg-drivers' 'xorg')
 #source=(${url}/archive/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-source=('git://anongit.freedesktop.org/xorg/driver/xf86-video-intel#commit=de44aaa')
+source=('git://anongit.freedesktop.org/xorg/driver/xf86-video-intel#commit=a7526ea')
 sha256sums=('SKIP')
 
 pkgver() {


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

2016-04-12 Thread Andreas Radke
Date: Tuesday, April 12, 2016 @ 19:10:54
  Author: andyrtr
Revision: 264728

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

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

---+
 /PKGBUILD |   76 
 /libinput.install |   22 +++
 extra-i686/PKGBUILD   |   38 
 extra-i686/libinput.install   |   11 -
 extra-x86_64/PKGBUILD |   38 
 extra-x86_64/libinput.install |   11 -
 6 files changed, 98 insertions(+), 98 deletions(-)

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

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

Deleted: extra-i686/libinput.install
===
--- extra-i686/libinput.install 2016-04-12 17:10:40 UTC (rev 264727)
+++ extra-i686/libinput.install 2016-04-12 17:10:54 UTC (rev 264728)
@@ -1,11 +0,0 @@
-post_install() {
-  udevadm hwdb --update >/dev/null 2>&1
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  post_install $1
-}

Copied: libinput/repos/extra-i686/libinput.install (from rev 264727, 
libinput/trunk/libinput.install)
===
--- extra-i686/libinput.install (rev 0)
+++ extra-i686/libinput.install 2016-04-12 17:10:54 UTC (rev 264728)
@@ -0,0 +1,11 @@
+post_install() {
+  udevadm hwdb --update >/dev/null 2>&1
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  post_install $1
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-04-12 17:10:40 UTC (rev 264727)
+++ extra-x86_64/PKGBUILD  

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

2016-04-12 Thread Andreas Radke
Date: Tuesday, April 12, 2016 @ 19:10:40
  Author: andyrtr
Revision: 264727

upgpkg: libinput 1.2.3-1

upstream update 1.2.3

Modified:
  libinput/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-12 15:38:16 UTC (rev 264726)
+++ PKGBUILD2016-04-12 17:10:40 UTC (rev 264727)
@@ -3,7 +3,7 @@
 # Maintainer: Jan de Groot
 
 pkgname=libinput
-pkgver=1.2.2
+pkgver=1.2.3
 pkgrel=1
 pkgdesc="library that handles input devices for display servers and other 
applications that need to directly deal with input devices."
 arch=(i686 x86_64)
@@ -14,7 +14,7 @@
 install=libinput.install
 options=('!libtool')
 
source=(http://freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz{,.sig})
-sha256sums=('08ac5b3620d86df1cdb4970c4137c8746c9f4b9f0c8e7dfab49858dbceb8f367'
+sha256sums=('09b2a9d3a0cc973a9d3fdc7af40162cbef0b16be0a2e415786f83761f519e9f2'
 'SKIP')
 validpgpkeys=('3C2C43D9447D5938EF4551EBE23B7E70B467F0BF') # Peter Hutterer 
(Who-T) 
 


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

2016-04-12 Thread Balló György
Date: Tuesday, April 12, 2016 @ 18:37:55
  Author: bgyorgy
Revision: 170785

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

Added:
  gnome-initial-setup/repos/community-i686/PKGBUILD
(from rev 170784, gnome-initial-setup/trunk/PKGBUILD)
  gnome-initial-setup/repos/community-i686/gnome-initial-setup.install
(from rev 170784, gnome-initial-setup/trunk/gnome-initial-setup.install)
  gnome-initial-setup/repos/community-x86_64/PKGBUILD
(from rev 170784, gnome-initial-setup/trunk/PKGBUILD)
  gnome-initial-setup/repos/community-x86_64/gnome-initial-setup.install
(from rev 170784, gnome-initial-setup/trunk/gnome-initial-setup.install)
Deleted:
  gnome-initial-setup/repos/community-i686/PKGBUILD
  gnome-initial-setup/repos/community-i686/gnome-initial-setup.install
  gnome-initial-setup/repos/community-x86_64/PKGBUILD
  gnome-initial-setup/repos/community-x86_64/gnome-initial-setup.install

--+
 /PKGBUILD|   62 +
 /gnome-initial-setup.install |   20 
 community-i686/PKGBUILD  |   31 
 community-i686/gnome-initial-setup.install   |   10 
 community-x86_64/PKGBUILD|   31 
 community-x86_64/gnome-initial-setup.install |   10 
 6 files changed, 82 insertions(+), 82 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-04-12 16:37:48 UTC (rev 170784)
+++ community-i686/PKGBUILD 2016-04-12 16:37:55 UTC (rev 170785)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-
-pkgname=gnome-initial-setup
-pkgver=3.20.0
-pkgrel=1
-pkgdesc="Simple, easy, and safe way to prepare a new system"
-arch=('i686' 'x86_64')
-url="http://www.gnome.org/;
-license=('GPL')
-depends=('libnm-gtk' 'accountsservice' 'cheese' 'gnome-desktop' 'libgweather'
- 'gnome-online-accounts' 'libgdm' 'libpwquality' 'libibus' 
'libgnomekbd')
-makedepends=('intltool' 'python2')
-optdepends=('gdm: GDM Initial Setup mode'
-'gnome-getting-started-docs: GNOME Welcome Tour')
-install=$pkgname.install
-source=(https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('95eca18adbed6197ad747fa29fcec90fbb8927c24aefd3a54c22a486e9f3b5be')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--libexecdir=/usr/lib/$pkgname
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-  mkdir -p "$pkgdir/var/lib/gnome-initial-setup"
-  install -d -o root -g 102 -m 750 "$pkgdir/usr/share/polkit-1/rules.d"
-}

Copied: gnome-initial-setup/repos/community-i686/PKGBUILD (from rev 170784, 
gnome-initial-setup/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-04-12 16:37:55 UTC (rev 170785)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Balló György 
+
+pkgname=gnome-initial-setup
+pkgver=3.20.1
+pkgrel=1
+pkgdesc="Simple, easy, and safe way to prepare a new system"
+arch=('i686' 'x86_64')
+url="http://www.gnome.org/;
+license=('GPL')
+depends=('libnm-gtk' 'accountsservice' 'cheese' 'gnome-desktop' 'libgweather'
+ 'gnome-online-accounts' 'libgdm' 'libpwquality' 'libibus' 
'libgnomekbd')
+makedepends=('intltool' 'python2')
+optdepends=('gdm: GDM Initial Setup mode'
+'gnome-getting-started-docs: GNOME Welcome Tour')
+install=$pkgname.install
+source=(https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('225daf9ed08638a915740bc9bef2ff50843f53a9d51c3f730b00241f2ab6aa0c')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--libexecdir=/usr/lib/$pkgname
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  mkdir -p "$pkgdir/var/lib/gnome-initial-setup"
+  install -d -o root -g 102 -m 750 "$pkgdir/usr/share/polkit-1/rules.d"
+}

Deleted: community-i686/gnome-initial-setup.install
===
--- community-i686/gnome-initial-setup.install  2016-04-12 16:37:48 UTC (rev 
170784)
+++ community-i686/gnome-initial-setup.install  2016-04-12 16:37:55 UTC (rev 
170785)
@@ -1,10 +0,0 @@
-post_install() {
-  getent passwd gnome-initial-setup > /dev/null 2>&1 && \
-usermod -c 'GNOME Initial Setup' -d /var/lib/gnome-initial-setup -s 
/sbin/nologin gnome-initial-setup > /dev/null 2>&1 || \
-useradd -rM -c 'GNOME Initial Setup' -d /var/lib/gnome-initial-setup -s 
/sbin/nologin gnome-initial-setup
-  passwd -l gnome-initial-setup > /dev/null
-}
-
-post_upgrade() {
-  post_install
-}

Copied: 

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

2016-04-12 Thread Balló György
Date: Tuesday, April 12, 2016 @ 18:37:48
  Author: bgyorgy
Revision: 170784

upgpkg: gnome-initial-setup 3.20.1-1

Update to new version

Modified:
  gnome-initial-setup/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-12 16:26:15 UTC (rev 170783)
+++ PKGBUILD2016-04-12 16:37:48 UTC (rev 170784)
@@ -2,7 +2,7 @@
 # Maintainer: Balló György 
 
 pkgname=gnome-initial-setup
-pkgver=3.20.0
+pkgver=3.20.1
 pkgrel=1
 pkgdesc="Simple, easy, and safe way to prepare a new system"
 arch=('i686' 'x86_64')
@@ -15,7 +15,7 @@
 'gnome-getting-started-docs: GNOME Welcome Tour')
 install=$pkgname.install
 
source=(https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('95eca18adbed6197ad747fa29fcec90fbb8927c24aefd3a54c22a486e9f3b5be')
+sha256sums=('225daf9ed08638a915740bc9bef2ff50843f53a9d51c3f730b00241f2ab6aa0c')
 
 build() {
   cd $pkgname-$pkgver


  1   2   3   >