[arch-commits] Commit in python-setuptools/repos/extra-any (PKGBUILD PKGBUILD)

2016-09-14 Thread Felix Yan
Date: Wednesday, September 14, 2016 @ 23:27:31
  Author: felixonmars
Revision: 276431

archrelease: copy trunk to extra-any

Added:
  python-setuptools/repos/extra-any/PKGBUILD
(from rev 276430, python-setuptools/trunk/PKGBUILD)
Deleted:
  python-setuptools/repos/extra-any/PKGBUILD

--+
 PKGBUILD |  152 ++---
 1 file changed, 76 insertions(+), 76 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-09-14 23:27:14 UTC (rev 276430)
+++ PKGBUILD2016-09-14 23:27:31 UTC (rev 276431)
@@ -1,76 +0,0 @@
-# $Id$
-# Maintainer: Angel Velasquez 
-# Maintainer: Felix Yan 
-
-pkgbase=python-setuptools
-pkgname=('python-setuptools' 'python2-setuptools')
-pkgver=27.1.2
-pkgrel=1
-epoch=1
-pkgdesc="Easily download, build, install, upgrade, and uninstall Python 
packages"
-arch=('any')
-license=('PSF')
-url="http://pypi.python.org/pypi/setuptools;
-makedepends=('python-packaging' 'python2-packaging' 'python-mock' 
'python2-mock' 'python-appdirs'
- 'python2-appdirs' 'git')
-checkdepends=('python-pytest-runner' 'python2-pytest-runner' 
'python-pytest-flake8'
-  'python2-pytest-flake8' 'git')
-source=("git+https://github.com/pypa/setuptools.git#tag=v$pkgver;)
-sha512sums=('SKIP')
-
-prepare() {
-  # Remove vendored packages
-  rm -rv setuptools/pkg_resources/_vendor
-
-  # Remove post-release tag since we are using stable tags
-  sed -e '/tag_build = .post/d' \
-  -e '/tag_date = 1/d' \
-  -i setuptools/setup.cfg
-
-  cp -a setuptools{,-py2}
-
-  cd "$srcdir"/setuptools
-  sed -i -e "s|^#\!.*/usr/bin/env python|#!/usr/bin/env python3|" 
setuptools/command/easy_install.py
-
-  cd "$srcdir"/setuptools-py2
-  sed -i -e "s|^#\!.*/usr/bin/env python|#!/usr/bin/env python2|" 
setuptools/command/easy_install.py
-}
-
-build() {
-  cd "$srcdir"/setuptools
-  python bootstrap.py
-  python setup.py build
-
-  cd "$srcdir"/setuptools-py2
-  python2 bootstrap.py
-  python2 setup.py build
-}
-
-check() {
-  # Workaround UTF-8 tests by setting LC_CTYPE
-
-  cd "$srcdir"/setuptools
-  LC_CTYPE=en_US.utf8 python setup.py ptr
-
-  cd "$srcdir"/setuptools-py2
-  LC_CTYPE=en_US.utf8 python2 setup.py ptr
-}
- 
-package_python-setuptools() {
-  depends=('python-packaging' 'python-appdirs')
-  provides=('python-distribute')
-  replaces=('python-distribute')
-
-  cd "$srcdir"/setuptools
-  python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1 
--skip-build
-}
- 
-package_python2-setuptools() {
-  depends=('python2-packaging' 'python2-appdirs')
-  provides=('python2-distribute')
-  replaces=('python2-distribute')
-
-  cd "$srcdir"/setuptools-py2
-  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1 
--skip-build
-  rm "$pkgdir"/usr/bin/easy_install
-}

Copied: python-setuptools/repos/extra-any/PKGBUILD (from rev 276430, 
python-setuptools/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-09-14 23:27:31 UTC (rev 276431)
@@ -0,0 +1,76 @@
+# $Id$
+# Maintainer: Angel Velasquez 
+# Maintainer: Felix Yan 
+
+pkgbase=python-setuptools
+pkgname=('python-setuptools' 'python2-setuptools')
+pkgver=27.2.0
+pkgrel=1
+epoch=1
+pkgdesc="Easily download, build, install, upgrade, and uninstall Python 
packages"
+arch=('any')
+license=('PSF')
+url="http://pypi.python.org/pypi/setuptools;
+makedepends=('python-packaging' 'python2-packaging' 'python-mock' 
'python2-mock' 'python-appdirs'
+ 'python2-appdirs' 'git')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 
'python-pytest-flake8'
+  'python2-pytest-flake8' 'git')
+source=("git+https://github.com/pypa/setuptools.git#tag=v$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  # Remove vendored packages
+  rm -rv setuptools/pkg_resources/_vendor
+
+  # Remove post-release tag since we are using stable tags
+  sed -e '/tag_build = .post/d' \
+  -e '/tag_date = 1/d' \
+  -i setuptools/setup.cfg
+
+  cp -a setuptools{,-py2}
+
+  cd "$srcdir"/setuptools
+  sed -i -e "s|^#\!.*/usr/bin/env python|#!/usr/bin/env python3|" 
setuptools/command/easy_install.py
+
+  cd "$srcdir"/setuptools-py2
+  sed -i -e "s|^#\!.*/usr/bin/env python|#!/usr/bin/env python2|" 
setuptools/command/easy_install.py
+}
+
+build() {
+  cd "$srcdir"/setuptools
+  python bootstrap.py
+  python setup.py build
+
+  cd "$srcdir"/setuptools-py2
+  python2 bootstrap.py
+  python2 setup.py build
+}
+
+check() {
+  # Workaround UTF-8 tests by setting LC_CTYPE
+
+  cd "$srcdir"/setuptools
+  LC_CTYPE=en_US.utf8 python setup.py ptr
+
+  cd "$srcdir"/setuptools-py2
+  LC_CTYPE=en_US.utf8 python2 setup.py ptr
+}
+ 
+package_python-setuptools() {
+  depends=('python-packaging' 'python-appdirs')
+  

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

2016-09-14 Thread Felix Yan
Date: Wednesday, September 14, 2016 @ 23:27:14
  Author: felixonmars
Revision: 276430

upgpkg: python-setuptools 1:27.2.0-1

Modified:
  python-setuptools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-14 20:45:56 UTC (rev 276429)
+++ PKGBUILD2016-09-14 23:27:14 UTC (rev 276430)
@@ -4,7 +4,7 @@
 
 pkgbase=python-setuptools
 pkgname=('python-setuptools' 'python2-setuptools')
-pkgver=27.1.2
+pkgver=27.2.0
 pkgrel=1
 epoch=1
 pkgdesc="Easily download, build, install, upgrade, and uninstall Python 
packages"


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

2016-09-14 Thread Jaroslav Lichtblau
Date: Wednesday, September 14, 2016 @ 21:45:13
  Author: jlichtblau
Revision: 189334

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

Added:
  qlandkartegt/repos/community-staging-i686/
  qlandkartegt/repos/community-staging-i686/PKGBUILD
(from rev 189333, qlandkartegt/trunk/PKGBUILD)
  qlandkartegt/repos/community-staging-i686/qlandkartegt-mimetypes.xml
(from rev 189333, qlandkartegt/trunk/qlandkartegt-mimetypes.xml)
  qlandkartegt/repos/community-staging-i686/qlandkartegt.changelog
(from rev 189333, qlandkartegt/trunk/qlandkartegt.changelog)
  qlandkartegt/repos/community-staging-x86_64/
  qlandkartegt/repos/community-staging-x86_64/PKGBUILD
(from rev 189333, qlandkartegt/trunk/PKGBUILD)
  qlandkartegt/repos/community-staging-x86_64/qlandkartegt-mimetypes.xml
(from rev 189333, qlandkartegt/trunk/qlandkartegt-mimetypes.xml)
  qlandkartegt/repos/community-staging-x86_64/qlandkartegt.changelog
(from rev 189333, qlandkartegt/trunk/qlandkartegt.changelog)

-+
 community-staging-i686/PKGBUILD |   44 
 community-staging-i686/qlandkartegt-mimetypes.xml   |7 +
 community-staging-i686/qlandkartegt.changelog   |   90 ++
 community-staging-x86_64/PKGBUILD   |   44 
 community-staging-x86_64/qlandkartegt-mimetypes.xml |7 +
 community-staging-x86_64/qlandkartegt.changelog |   90 ++
 6 files changed, 282 insertions(+)

Copied: qlandkartegt/repos/community-staging-i686/PKGBUILD (from rev 189333, 
qlandkartegt/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-09-14 21:45:13 UTC (rev 189334)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Matthias Maennich 
+# Contributor: 
+
+pkgname=qlandkartegt
+pkgver=1.8.1
+pkgrel=7
+pkgdesc="Use your GPS with Linux"
+arch=('i686' 'x86_64')
+url="http://www.qlandkarte.org/;
+license=('GPL')
+depends=('gdal' 'gpsd' 'libdmtx' 'libexif' 'libmariadbclient' 'glu'
+ 'postgresql-libs' 'shared-mime-info' 'qtwebkit' 'proj')
+makedepends=('cmake' 'garmindev' 'mesa')
+optdepends=('garmindev: to connect garmin devices')
+changelog=$pkgname.changelog
+source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz
+$pkgname-mimetypes.xml)
+sha256sums=('9e0605ab8f4cbd27741b507f252f08370e9ccca4e05ec35878256c59b22a9be7'
+'e8d33948831f8a66edd752c71c653085d6c4d9f1969e70dd8c40b9c7ca37fba0')
+
+prepare() {
+  cd "${srcdir}"
+  mkdir build
+}
+
+build() {
+  cd "${srcdir}"/build
+
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package(){
+  cd "${srcdir}"/build
+
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm644 "${srcdir}"/$pkgname-mimetypes.xml \
+"${pkgdir}"/usr/share/mime/packages/$pkgname-mimetypes.xml
+}

Copied: qlandkartegt/repos/community-staging-i686/qlandkartegt-mimetypes.xml 
(from rev 189333, qlandkartegt/trunk/qlandkartegt-mimetypes.xml)
===
--- community-staging-i686/qlandkartegt-mimetypes.xml   
(rev 0)
+++ community-staging-i686/qlandkartegt-mimetypes.xml   2016-09-14 21:45:13 UTC 
(rev 189334)
@@ -0,0 +1,7 @@
+
+
+  
+QLandkarteGT File
+
+  
+

Copied: qlandkartegt/repos/community-staging-i686/qlandkartegt.changelog (from 
rev 189333, qlandkartegt/trunk/qlandkartegt.changelog)
===
--- community-staging-i686/qlandkartegt.changelog   
(rev 0)
+++ community-staging-i686/qlandkartegt.changelog   2016-09-14 21:45:13 UTC 
(rev 189334)
@@ -0,0 +1,90 @@
+2016-09-14 Jaroslav Lichtblau 
+   * qlandkartegt 1.8.1-7 proj 4.9.3 rebuild
+
+2016-04-29 Jaroslav Lichtblau 
+   * qlandkartegt 1.8.1-6 pacman hooks rebuild
+
+2015-06-28 Jaroslav Lichtblau 
+   * qlandkartegt 1.8.1-4 gdal 2.0.0 rebuild
+
+2015-03-10 Jaroslav Lichtblau 
+   * qlandkartegt 1.8.1-1
+
+2015-02-09 Jaroslav Lichtblau 
+   * qlandkartegt 1.8.0-1
+
+2014-07-13 Jaroslav Lichtblau 
+   * qlandkartegt 1.7.7-1
+
+2014-02-22 Jaroslav Lichtblau 
+   * qlandkartegt 1.7.6-1
+
+2013-10-16 Jaroslav Lichtblau 
+   * qlandkartegt 1.7.5-1
+
+2013-09-28 Jaroslav Lichtblau 
+   * qlandkartegt 1.7.4-1
+
+2013-09-02 Jaroslav Lichtblau 
+   * qlandkartegt 1.7.3-1
+
+2013-07-14 Jaroslav Lichtblau 

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

2016-09-14 Thread Jaroslav Lichtblau
Date: Wednesday, September 14, 2016 @ 21:44:53
  Author: jlichtblau
Revision: 189333

upgpkg: qlandkartegt 1.8.1-7 - proj 4.9.3 rebuild

Modified:
  qlandkartegt/trunk/PKGBUILD
  qlandkartegt/trunk/qlandkartegt.changelog

+
 PKGBUILD   |2 +-
 qlandkartegt.changelog |3 +++
 2 files changed, 4 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-09-14 21:30:09 UTC (rev 189332)
+++ PKGBUILD2016-09-14 21:44:53 UTC (rev 189333)
@@ -5,7 +5,7 @@
 
 pkgname=qlandkartegt
 pkgver=1.8.1
-pkgrel=6
+pkgrel=7
 pkgdesc="Use your GPS with Linux"
 arch=('i686' 'x86_64')
 url="http://www.qlandkarte.org/;

Modified: qlandkartegt.changelog
===
--- qlandkartegt.changelog  2016-09-14 21:30:09 UTC (rev 189332)
+++ qlandkartegt.changelog  2016-09-14 21:44:53 UTC (rev 189333)
@@ -1,3 +1,6 @@
+2016-09-14 Jaroslav Lichtblau 
+   * qlandkartegt 1.8.1-7 proj 4.9.3 rebuild
+
 2016-04-29 Jaroslav Lichtblau 
* qlandkartegt 1.8.1-6 pacman hooks rebuild
 


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

2016-09-14 Thread Jaroslav Lichtblau
Date: Wednesday, September 14, 2016 @ 21:30:09
  Author: jlichtblau
Revision: 189332

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

Added:
  postgis/repos/community-staging-i686/
  postgis/repos/community-staging-i686/PKGBUILD
(from rev 189331, postgis/trunk/PKGBUILD)
  postgis/repos/community-staging-i686/postgis.changelog
(from rev 189331, postgis/trunk/postgis.changelog)
  postgis/repos/community-staging-x86_64/
  postgis/repos/community-staging-x86_64/PKGBUILD
(from rev 189331, postgis/trunk/PKGBUILD)
  postgis/repos/community-staging-x86_64/postgis.changelog
(from rev 189331, postgis/trunk/postgis.changelog)

+
 community-staging-i686/PKGBUILD|   30 +++
 community-staging-i686/postgis.changelog   |   68 +++
 community-staging-x86_64/PKGBUILD  |   30 +++
 community-staging-x86_64/postgis.changelog |   68 +++
 4 files changed, 196 insertions(+)

Copied: postgis/repos/community-staging-i686/PKGBUILD (from rev 189331, 
postgis/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-09-14 21:30:09 UTC (rev 189332)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: dibblethewrecker dibblethewrecker.at.jiwe.dot.org
+# Contributor: William Rea 
+
+pkgname=postgis
+pkgver=2.2.2
+pkgrel=2
+pkgdesc="Adds support for geographic objects to PostgreSQL"
+arch=('i686' 'x86_64')
+url="http://postgis.net/;
+license=('GPL')
+depends=('postgresql' 'gdal' 'json-c' 'proj')
+changelog=$pkgname.changelog
+options=('!makeflags')
+source=(http://download.osgeo.org/postgis/source/${pkgname}-${pkgver}.tar.gz)
+sha256sums=('40232391f8f66a6dc740ebb26088e568c8ccb663666998616c71c3bdaeed4163')
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+
+  make DESTDIR="${pkgdir}" install
+}

Copied: postgis/repos/community-staging-i686/postgis.changelog (from rev 
189331, postgis/trunk/postgis.changelog)
===
--- community-staging-i686/postgis.changelog(rev 0)
+++ community-staging-i686/postgis.changelog2016-09-14 21:30:09 UTC (rev 
189332)
@@ -0,0 +1,68 @@
+2016-09-14 Jaroslav Lichtblau 
+* postgis-2.2.2-2 proj 4.9.3 rebuild
+
+2016-05-16 Jaroslav Lichtblau 
+* postgis-2.2.2-1
+
+2016-01-22 Jaroslav Lichtblau 
+* postgis-2.2.1-2 postgresql 9.5 rebuild
+
+2016-01-09 Jaroslav Lichtblau 
+* postgis-2.2.1-1
+
+2015-10-22 Jaroslav Lichtblau 
+* postgis-2.2.0-1
+
+2015-09-12 Jaroslav Lichtblau 
+* postgis-2.1.8-1
+
+2015-06-28 Jaroslav Lichtblau 
+* postgis-2.1.5-2 gdal 2.0.0 rebuild
+
+2015-03-14 Jaroslav Lichtblau 
+* postgis-2.1.5-2 proj soname rebuild
+
+2015-01-20 Jaroslav Lichtblau 
+* postgis-2.1.5-1
+
+2014-09-12 Jaroslav Lichtblau 
+* postgis-2.1.4-1
+
+2014-05-25 Jaroslav Lichtblau 
+* postgis-2.1.3-1
+
+2014-04-02 Jaroslav Lichtblau 
+* postgis-2.1.2-1
+
+2013-11-11 Jaroslav Lichtblau 
+* postgis-2.1.1-1
+
+2013-08-22 Maxime Gauduin 
+* postgis-2.1.0-1
+* Fixes FS#35816
+
+2013-06-15 Jaroslav Lichtblau 
+* postgis-2.0.3-1
+
+2013-01-05 Jaroslav Lichtblau 
+* postgis-2.0.2-1
+
+2012-09-24 Dan McGee 
+* Rebuild for PostgreSQL 9.2.x
+* Update to minor release 2.0.1
+
+2012-05-31 Andrea Scarpino 
+* Add JSON-C support
+* Build utils (FS#25836)
+
+2012-05-31 Andrea Scarpino 
+* Update to major release 2.0.0-1
+
+2011-10-26 Jaroslav Lichtblau 
+* FS#26159 fix in postgis-1.5.3-2
+
+2010-10-30 Jaroslav Lichtblau 
+* Update to major release 1.5.2
+
+2010-03-21 Jaroslav Lichtblau 
+* Update to major release 1.5.1

Copied: postgis/repos/community-staging-x86_64/PKGBUILD (from rev 189331, 
postgis/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-09-14 21:30:09 UTC (rev 189332)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: 

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

2016-09-14 Thread Jaroslav Lichtblau
Date: Wednesday, September 14, 2016 @ 21:28:51
  Author: jlichtblau
Revision: 189331

upgpkg: postgis 2.2.2-2 - proj 4.9.3 rebuild

Modified:
  postgis/trunk/PKGBUILD
  postgis/trunk/postgis.changelog

---+
 PKGBUILD  |2 +-
 postgis.changelog |3 +++
 2 files changed, 4 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-09-14 21:15:45 UTC (rev 189330)
+++ PKGBUILD2016-09-14 21:28:51 UTC (rev 189331)
@@ -5,7 +5,7 @@
 
 pkgname=postgis
 pkgver=2.2.2
-pkgrel=1
+pkgrel=2
 pkgdesc="Adds support for geographic objects to PostgreSQL"
 arch=('i686' 'x86_64')
 url="http://postgis.net/;

Modified: postgis.changelog
===
--- postgis.changelog   2016-09-14 21:15:45 UTC (rev 189330)
+++ postgis.changelog   2016-09-14 21:28:51 UTC (rev 189331)
@@ -1,3 +1,6 @@
+2016-09-14 Jaroslav Lichtblau 
+* postgis-2.2.2-2 proj 4.9.3 rebuild
+
 2016-05-16 Jaroslav Lichtblau 
 * postgis-2.2.2-1
 


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

2016-09-14 Thread Jaroslav Lichtblau
Date: Wednesday, September 14, 2016 @ 21:15:45
  Author: jlichtblau
Revision: 189330

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

Added:
  python-pyproj/repos/community-staging-i686/
  python-pyproj/repos/community-staging-i686/PKGBUILD
(from rev 189329, python-pyproj/trunk/PKGBUILD)
  python-pyproj/repos/community-staging-x86_64/
  python-pyproj/repos/community-staging-x86_64/PKGBUILD
(from rev 189329, python-pyproj/trunk/PKGBUILD)

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

Copied: python-pyproj/repos/community-staging-i686/PKGBUILD (from rev 189329, 
python-pyproj/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-09-14 21:15:45 UTC (rev 189330)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Stéphane Gaudreault 
+
+pkgbase=python-pyproj
+pkgname=('python-pyproj' 'python2-pyproj')
+pkgver=1.9.5.1
+pkgrel=2
+pkgdesc="Python interfaces to PROJ.4 library"
+arch=('i686' 'x86_64')
+url="http://jswhit.github.io/pyproj/;
+license=('custom')
+makedepends=('python-setuptools' 'python2-setuptools' 'proj')
+source=($pkgname-$pkgver.tar.gz::https://github.com/jswhit/pyproj/archive/v${pkgver}rel.tar.gz)
+sha256sums=('0e19f02ebbf4c253813142ffe06e12489f3861877c3fab75b6c769c1a1960cac')
+
+prepare() {
+  cd "${srcdir}"
+  
+# Remove RPATH
+  sed -i "s/runtime_library_dirs=libdirs,//" pyproj-${pkgver}rel/setup.py
+
+  cp -a pyproj-${pkgver}rel{,-python2}
+}
+
+build() {
+  cd "${srcdir}"
+
+  export PROJ_DIR=/usr/share/proj
+
+# Build python 3 module
+  cd pyproj-${pkgver}rel
+  python setup.py build
+
+# Build python 2 module
+  cd ../pyproj-${pkgver}rel-python2
+  python2 setup.py build
+}
+
+package_python-pyproj() {
+  depends=('proj' 'python>=3.5')
+
+  cd "${srcdir}"/pyproj-${pkgver}rel
+  python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1 
--skip-build
+
+  install -Dm644 LICENSE_proj4 
"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}
+
+package_python2-pyproj() {
+  depends=('proj' 'python2>=2.7')
+
+  cd "${srcdir}"/pyproj-${pkgver}rel-python2
+  python2 setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1 
--skip-build
+
+  install -Dm644 LICENSE_proj4 
"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}

Copied: python-pyproj/repos/community-staging-x86_64/PKGBUILD (from rev 189329, 
python-pyproj/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-09-14 21:15:45 UTC (rev 189330)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Stéphane Gaudreault 
+
+pkgbase=python-pyproj
+pkgname=('python-pyproj' 'python2-pyproj')
+pkgver=1.9.5.1
+pkgrel=2
+pkgdesc="Python interfaces to PROJ.4 library"
+arch=('i686' 'x86_64')
+url="http://jswhit.github.io/pyproj/;
+license=('custom')
+makedepends=('python-setuptools' 'python2-setuptools' 'proj')
+source=($pkgname-$pkgver.tar.gz::https://github.com/jswhit/pyproj/archive/v${pkgver}rel.tar.gz)
+sha256sums=('0e19f02ebbf4c253813142ffe06e12489f3861877c3fab75b6c769c1a1960cac')
+
+prepare() {
+  cd "${srcdir}"
+  
+# Remove RPATH
+  sed -i "s/runtime_library_dirs=libdirs,//" pyproj-${pkgver}rel/setup.py
+
+  cp -a pyproj-${pkgver}rel{,-python2}
+}
+
+build() {
+  cd "${srcdir}"
+
+  export PROJ_DIR=/usr/share/proj
+
+# Build python 3 module
+  cd pyproj-${pkgver}rel
+  python setup.py build
+
+# Build python 2 module
+  cd ../pyproj-${pkgver}rel-python2
+  python2 setup.py build
+}
+
+package_python-pyproj() {
+  depends=('proj' 'python>=3.5')
+
+  cd "${srcdir}"/pyproj-${pkgver}rel
+  python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1 
--skip-build
+
+  install -Dm644 LICENSE_proj4 
"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}
+
+package_python2-pyproj() {
+  depends=('proj' 'python2>=2.7')
+
+  cd "${srcdir}"/pyproj-${pkgver}rel-python2
+  python2 setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1 
--skip-build
+
+  install -Dm644 LICENSE_proj4 
"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}


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

2016-09-14 Thread Jaroslav Lichtblau
Date: Wednesday, September 14, 2016 @ 21:15:21
  Author: jlichtblau
Revision: 189329

upgpkg: python-pyproj 1.9.5.1-2 - proj 4.9.3 rebuild

Modified:
  python-pyproj/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-14 20:39:13 UTC (rev 189328)
+++ PKGBUILD2016-09-14 21:15:21 UTC (rev 189329)
@@ -5,17 +5,21 @@
 pkgbase=python-pyproj
 pkgname=('python-pyproj' 'python2-pyproj')
 pkgver=1.9.5.1
-pkgrel=1
+pkgrel=2
 pkgdesc="Python interfaces to PROJ.4 library"
 arch=('i686' 'x86_64')
 url="http://jswhit.github.io/pyproj/;
 license=('custom')
-makedepends=('python-setuptools' 'python2-setuptools')
+makedepends=('python-setuptools' 'python2-setuptools' 'proj')
 
source=($pkgname-$pkgver.tar.gz::https://github.com/jswhit/pyproj/archive/v${pkgver}rel.tar.gz)
 sha256sums=('0e19f02ebbf4c253813142ffe06e12489f3861877c3fab75b6c769c1a1960cac')
 
 prepare() {
   cd "${srcdir}"
+  
+# Remove RPATH
+  sed -i "s/runtime_library_dirs=libdirs,//" pyproj-${pkgver}rel/setup.py
+
   cp -a pyproj-${pkgver}rel{,-python2}
 }
 
@@ -22,6 +26,8 @@
 build() {
   cd "${srcdir}"
 
+  export PROJ_DIR=/usr/share/proj
+
 # Build python 3 module
   cd pyproj-${pkgver}rel
   python setup.py build


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

2016-09-14 Thread Jan Steffens
Date: Wednesday, September 14, 2016 @ 20:45:56
  Author: heftig
Revision: 276429

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-09-14 20:43:43 UTC (rev 276428)
+++ extra-i686/PKGBUILD 2016-09-14 20:45:56 UTC (rev 276429)
@@ -1,52 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru 
-
-pkgname=gnome-online-accounts
-pkgver=3.20.3+5+gc098f5d
-pkgrel=1
-pkgdesc="Single sign-on framework for GNOME"
-url="https://wiki.gnome.org/Projects/GnomeOnlineAccounts;
-arch=(i686 x86_64)
-license=(LGPL)
-depends=(webkit2gtk json-glib libnotify rest libsecret telepathy-glib krb5 gcr)
-makedepends=(intltool gobject-introspection gtk-doc vala git gnome-common)
-optdepends=('gvfs-goa: Virtual file systems (e.g. OwnCloud)'
-'gvfs-google: Google Drive')
-_commit=c098f5d796441e4d7f07edc18f95296069c607f6
-source=("git://git.gnome.org/gnome-online-accounts#commit=$_commit")
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  NOCONFIGURE=1 ./autogen.sh
-}
-  
-
-build() {
-  cd $pkgname
-
-  ./configure \
---prefix=/usr \
---libexecdir=/usr/lib/$pkgname \
---disable-static \
---enable-media-server \
---enable-kerberos \
---enable-lastfm \
---enable-gtk-doc
-
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gnome-online-accounts/repos/extra-i686/PKGBUILD (from rev 276428, 
gnome-online-accounts/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-09-14 20:45:56 UTC (rev 276429)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Ionut Biru 
+
+pkgname=gnome-online-accounts
+pkgver=3.20.4
+pkgrel=1
+pkgdesc="Single sign-on framework for GNOME"
+url="https://wiki.gnome.org/Projects/GnomeOnlineAccounts;
+arch=(i686 x86_64)
+license=(LGPL)
+depends=(webkit2gtk json-glib libnotify rest libsecret telepathy-glib krb5 gcr)
+makedepends=(intltool gobject-introspection gtk-doc vala git gnome-common)
+optdepends=('gvfs-goa: Virtual file systems (e.g. OwnCloud)'
+'gvfs-google: Google Drive')
+source=("git://git.gnome.org/gnome-online-accounts#tag=$pkgver")
+sha256sums=('SKIP')
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+build() {
+  cd $pkgname
+
+  ./configure \
+--prefix=/usr \
+--libexecdir=/usr/lib/$pkgname \
+--disable-static \
+--enable-media-server \
+--enable-kerberos \
+--enable-lastfm \
+--enable-gtk-doc
+
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-09-14 20:43:43 UTC (rev 276428)
+++ extra-x86_64/PKGBUILD   2016-09-14 20:45:56 UTC (rev 276429)
@@ -1,52 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru 
-
-pkgname=gnome-online-accounts
-pkgver=3.20.3+5+gc098f5d
-pkgrel=1
-pkgdesc="Single sign-on framework for GNOME"
-url="https://wiki.gnome.org/Projects/GnomeOnlineAccounts;
-arch=(i686 x86_64)
-license=(LGPL)
-depends=(webkit2gtk json-glib libnotify rest libsecret telepathy-glib krb5 gcr)
-makedepends=(intltool gobject-introspection gtk-doc vala git gnome-common)
-optdepends=('gvfs-goa: Virtual file systems (e.g. OwnCloud)'
-'gvfs-google: Google Drive')
-_commit=c098f5d796441e4d7f07edc18f95296069c607f6
-source=("git://git.gnome.org/gnome-online-accounts#commit=$_commit")
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  NOCONFIGURE=1 ./autogen.sh
-}
-  
-
-build() {
-  cd $pkgname
-
-  ./configure \
---prefix=/usr \
---libexecdir=/usr/lib/$pkgname \
---disable-static \
---enable-media-server \
---enable-kerberos \
---enable-lastfm \
---enable-gtk-doc
-
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  

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

2016-09-14 Thread Jaroslav Lichtblau
Date: Wednesday, September 14, 2016 @ 20:38:55
  Author: jlichtblau
Revision: 189327

upgpkg: qmapshack 1.7.1-1 - new upstream release

Modified:
  qmapshack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-14 20:29:50 UTC (rev 189326)
+++ PKGBUILD2016-09-14 20:38:55 UTC (rev 189327)
@@ -3,8 +3,8 @@
 # Contributor: Sanpi 
 
 pkgname=qmapshack
-pkgver=1.6.3
-pkgrel=2
+pkgver=1.7.1
+pkgrel=1
 pkgdesc='Plan your next outdoor trip'
 arch=('x86_64') #Due to limited resources Linux 32bit versions are not 
supported
 url='https://bitbucket.org/maproom/qmapshack/'
@@ -12,7 +12,7 @@
 depends=('hicolor-icon-theme' 'gdal' 'routino>=3.1' 'qt5-script' 'qt5-tools' 
'qt5-webkit')
 makedepends=('cmake')
 
source=(https://bitbucket.org/maproom/qmapshack/downloads/$pkgname-$pkgver.tar.gz)
-sha256sums=('6fa5158bd823e8d43eb8a4e4db35a05720d1fe8d624eb65320b905ae315bd708')
+sha256sums=('5da33e575fec11c1bfe097ab9c89c9d815124436b5ebf736ec0681acbda4a509')
 
 build() {
   cd "$pkgname-$pkgver"


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

2016-09-14 Thread Jan Steffens
Date: Wednesday, September 14, 2016 @ 20:43:43
  Author: heftig
Revision: 276428

3.20.4-1

Modified:
  gnome-online-accounts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-14 19:29:52 UTC (rev 276427)
+++ PKGBUILD2016-09-14 20:43:43 UTC (rev 276428)
@@ -2,7 +2,7 @@
 # Maintainer: Ionut Biru 
 
 pkgname=gnome-online-accounts
-pkgver=3.20.3+5+gc098f5d
+pkgver=3.20.4
 pkgrel=1
 pkgdesc="Single sign-on framework for GNOME"
 url="https://wiki.gnome.org/Projects/GnomeOnlineAccounts;
@@ -12,20 +12,18 @@
 makedepends=(intltool gobject-introspection gtk-doc vala git gnome-common)
 optdepends=('gvfs-goa: Virtual file systems (e.g. OwnCloud)'
 'gvfs-google: Google Drive')
-_commit=c098f5d796441e4d7f07edc18f95296069c607f6
-source=("git://git.gnome.org/gnome-online-accounts#commit=$_commit")
+source=("git://git.gnome.org/gnome-online-accounts#tag=$pkgver")
 sha256sums=('SKIP')
 
-pkgver() {
+prepare() {
   cd $pkgname
-  git describe --tags | sed 's/-/+/g'
+  NOCONFIGURE=1 ./autogen.sh
 }
 
-prepare() {
+pkgver() {
   cd $pkgname
-  NOCONFIGURE=1 ./autogen.sh
+  git describe --tags | sed 's/-/+/g'
 }
-  
 
 build() {
   cd $pkgname


[arch-commits] Commit in qmapshack/repos/community-x86_64 (PKGBUILD PKGBUILD)

2016-09-14 Thread Jaroslav Lichtblau
Date: Wednesday, September 14, 2016 @ 20:39:13
  Author: jlichtblau
Revision: 189328

archrelease: copy trunk to community-x86_64

Added:
  qmapshack/repos/community-x86_64/PKGBUILD
(from rev 189327, qmapshack/trunk/PKGBUILD)
Deleted:
  qmapshack/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   56 
 1 file changed, 28 insertions(+), 28 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-09-14 20:38:55 UTC (rev 189327)
+++ PKGBUILD2016-09-14 20:39:13 UTC (rev 189328)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Sanpi 
-
-pkgname=qmapshack
-pkgver=1.6.3
-pkgrel=2
-pkgdesc='Plan your next outdoor trip'
-arch=('x86_64') #Due to limited resources Linux 32bit versions are not 
supported
-url='https://bitbucket.org/maproom/qmapshack/'
-license=('GPL3')
-depends=('hicolor-icon-theme' 'gdal' 'routino>=3.1' 'qt5-script' 'qt5-tools' 
'qt5-webkit')
-makedepends=('cmake')
-source=(https://bitbucket.org/maproom/qmapshack/downloads/$pkgname-$pkgver.tar.gz)
-sha256sums=('6fa5158bd823e8d43eb8a4e4db35a05720d1fe8d624eb65320b905ae315bd708')
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  cmake ./ -DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  make DESTDIR="${pkgdir}" install
-}

Copied: qmapshack/repos/community-x86_64/PKGBUILD (from rev 189327, 
qmapshack/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-09-14 20:39:13 UTC (rev 189328)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Sanpi 
+
+pkgname=qmapshack
+pkgver=1.7.1
+pkgrel=1
+pkgdesc='Plan your next outdoor trip'
+arch=('x86_64') #Due to limited resources Linux 32bit versions are not 
supported
+url='https://bitbucket.org/maproom/qmapshack/'
+license=('GPL3')
+depends=('hicolor-icon-theme' 'gdal' 'routino>=3.1' 'qt5-script' 'qt5-tools' 
'qt5-webkit')
+makedepends=('cmake')
+source=(https://bitbucket.org/maproom/qmapshack/downloads/$pkgname-$pkgver.tar.gz)
+sha256sums=('5da33e575fec11c1bfe097ab9c89c9d815124436b5ebf736ec0681acbda4a509')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  cmake ./ -DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  make DESTDIR="${pkgdir}" install
+}


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

2016-09-14 Thread Jaroslav Lichtblau
Date: Wednesday, September 14, 2016 @ 20:29:28
  Author: jlichtblau
Revision: 189325

upgpkg: libspatialite 4.3.0.a-2 - proj 4.9.3 rebuild

Modified:
  libspatialite/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-14 20:22:26 UTC (rev 189324)
+++ PKGBUILD2016-09-14 20:29:28 UTC (rev 189325)
@@ -5,7 +5,7 @@
 
 pkgname=libspatialite
 pkgver=4.3.0.a
-pkgrel=1
+pkgrel=2
 pkgdesc="SQLite extension to support spatial data types and operations"
 arch=('i686' 'x86_64')
 url="https://www.gaia-gis.it/fossil/libspatialite;


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

2016-09-14 Thread Jaroslav Lichtblau
Date: Wednesday, September 14, 2016 @ 20:29:50
  Author: jlichtblau
Revision: 189326

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

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

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

Copied: libspatialite/repos/community-staging-i686/PKGBUILD (from rev 189325, 
libspatialite/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-09-14 20:29:50 UTC (rev 189326)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Brian Galey 
+# Contributor: Pietro Zambelli 
+
+pkgname=libspatialite
+pkgver=4.3.0.a
+pkgrel=2
+pkgdesc="SQLite extension to support spatial data types and operations"
+arch=('i686' 'x86_64')
+url="https://www.gaia-gis.it/fossil/libspatialite;
+license=('MPL' 'GPL' 'LGPL')
+depends=('geos' 'libfreexl' 'libxml2' 'proj' 'sqlite')
+source=(http://www.gaia-gis.it/gaia-sins/$pkgname-4.3.0a.tar.gz)
+sha256sums=('88900030a4762904a7880273f292e5e8ca6b15b7c6c3fb88ffa9e67ee8a5a499')
+
+build() {
+  cd "${srcdir}"/$pkgname-4.3.0a
+
+  ./configure --prefix=/usr --enable-libxml2
+  make
+}
+
+package() {
+  cd "${srcdir}"/$pkgname-4.3.0a
+
+  make DESTDIR="${pkgdir}" install
+}

Copied: libspatialite/repos/community-staging-x86_64/PKGBUILD (from rev 189325, 
libspatialite/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-09-14 20:29:50 UTC (rev 189326)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Brian Galey 
+# Contributor: Pietro Zambelli 
+
+pkgname=libspatialite
+pkgver=4.3.0.a
+pkgrel=2
+pkgdesc="SQLite extension to support spatial data types and operations"
+arch=('i686' 'x86_64')
+url="https://www.gaia-gis.it/fossil/libspatialite;
+license=('MPL' 'GPL' 'LGPL')
+depends=('geos' 'libfreexl' 'libxml2' 'proj' 'sqlite')
+source=(http://www.gaia-gis.it/gaia-sins/$pkgname-4.3.0a.tar.gz)
+sha256sums=('88900030a4762904a7880273f292e5e8ca6b15b7c6c3fb88ffa9e67ee8a5a499')
+
+build() {
+  cd "${srcdir}"/$pkgname-4.3.0a
+
+  ./configure --prefix=/usr --enable-libxml2
+  make
+}
+
+package() {
+  cd "${srcdir}"/$pkgname-4.3.0a
+
+  make DESTDIR="${pkgdir}" install
+}


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

2016-09-14 Thread Jaroslav Lichtblau
Date: Wednesday, September 14, 2016 @ 20:22:26
  Author: jlichtblau
Revision: 189324

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

Added:
  libgeotiff/repos/community-staging-i686/
  libgeotiff/repos/community-staging-i686/PKGBUILD
(from rev 189323, libgeotiff/trunk/PKGBUILD)
  libgeotiff/repos/community-staging-i686/libgeotiff.changelog
(from rev 189323, libgeotiff/trunk/libgeotiff.changelog)
  libgeotiff/repos/community-staging-x86_64/
  libgeotiff/repos/community-staging-x86_64/PKGBUILD
(from rev 189323, libgeotiff/trunk/PKGBUILD)
  libgeotiff/repos/community-staging-x86_64/libgeotiff.changelog
(from rev 189323, libgeotiff/trunk/libgeotiff.changelog)

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

Copied: libgeotiff/repos/community-staging-i686/PKGBUILD (from rev 189323, 
libgeotiff/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-09-14 20:22:26 UTC (rev 189324)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Brad Fanella 
+# Contributor: dibblethewrecker dibblethewrecker.at.jiwe.dot.org
+# Contributor: William Rea 
+
+pkgname=libgeotiff
+pkgver=1.4.2
+pkgrel=1
+pkgdesc="A TIFF based interchange format for georeferenced raster imagery"
+arch=('i686' 'x86_64')
+url="https://trac.osgeo.org/geotiff/;
+license=('custom')
+depends=('libtiff' 'proj' 'libjpeg>=7')
+# options=('!makeflags')
+changelog=$pkgname.changelog
+source=(http://download.osgeo.org/geotiff/$pkgname/$pkgname-$pkgver.tar.gz)
+sha256sums=('ad87048adb91167b07f34974a8e53e4ec356494c29f1748de95252e8f81a5e6e')
+
+build() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/libgeotiff/LICENSE
+}

Copied: libgeotiff/repos/community-staging-i686/libgeotiff.changelog (from rev 
189323, libgeotiff/trunk/libgeotiff.changelog)
===
--- community-staging-i686/libgeotiff.changelog (rev 0)
+++ community-staging-i686/libgeotiff.changelog 2016-09-14 20:22:26 UTC (rev 
189324)
@@ -0,0 +1,12 @@
+2016-09-14 Jaroslav Lichtblau 
+   * libgeotiff 1.4.2-1
+   * proj 4.9.3 soname rebuild
+
+2015-03-12 Jaroslav Lichtblau 
+   * libgeotiff 1.4.1-2 proj rebuild
+
+2015-01-22 Jaroslav Lichtblau 
+   * libgeotiff 1.4.1-1
+
+2012-10-28 Jaroslav Lichtblau 
+   * libgeotiff 1.4.0-1

Copied: libgeotiff/repos/community-staging-x86_64/PKGBUILD (from rev 189323, 
libgeotiff/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-09-14 20:22:26 UTC (rev 189324)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Brad Fanella 
+# Contributor: dibblethewrecker dibblethewrecker.at.jiwe.dot.org
+# Contributor: William Rea 
+
+pkgname=libgeotiff
+pkgver=1.4.2
+pkgrel=1
+pkgdesc="A TIFF based interchange format for georeferenced raster imagery"
+arch=('i686' 'x86_64')
+url="https://trac.osgeo.org/geotiff/;
+license=('custom')
+depends=('libtiff' 'proj' 'libjpeg>=7')
+# options=('!makeflags')
+changelog=$pkgname.changelog
+source=(http://download.osgeo.org/geotiff/$pkgname/$pkgname-$pkgver.tar.gz)
+sha256sums=('ad87048adb91167b07f34974a8e53e4ec356494c29f1748de95252e8f81a5e6e')
+
+build() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/libgeotiff/LICENSE
+}

Copied: libgeotiff/repos/community-staging-x86_64/libgeotiff.changelog (from 
rev 189323, libgeotiff/trunk/libgeotiff.changelog)
===
--- community-staging-x86_64/libgeotiff.changelog   
(rev 0)
+++ community-staging-x86_64/libgeotiff.changelog   2016-09-14 20:22:26 UTC 
(rev 189324)
@@ -0,0 +1,12 @@
+2016-09-14 Jaroslav Lichtblau 
+   * libgeotiff 1.4.2-1
+   * proj 4.9.3 soname rebuild
+

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

2016-09-14 Thread Jaroslav Lichtblau
Date: Wednesday, September 14, 2016 @ 20:22:10
  Author: jlichtblau
Revision: 189323

upgpkg: libgeotiff 1.4.2-1 - new upstream release
and proj 4.9.3 soname bump

Modified:
  libgeotiff/trunk/PKGBUILD
  libgeotiff/trunk/libgeotiff.changelog

--+
 PKGBUILD |   10 +-
 libgeotiff.changelog |4 
 2 files changed, 9 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-09-14 20:02:32 UTC (rev 189322)
+++ PKGBUILD2016-09-14 20:22:10 UTC (rev 189323)
@@ -5,17 +5,17 @@
 # Contributor: William Rea 
 
 pkgname=libgeotiff
-pkgver=1.4.1
-pkgrel=2
+pkgver=1.4.2
+pkgrel=1
 pkgdesc="A TIFF based interchange format for georeferenced raster imagery"
 arch=('i686' 'x86_64')
-url="http://www.remotesensing.org/geotiff;
+url="https://trac.osgeo.org/geotiff/;
 license=('custom')
 depends=('libtiff' 'proj' 'libjpeg>=7')
-options=('!makeflags')
+# options=('!makeflags')
 changelog=$pkgname.changelog
 source=(http://download.osgeo.org/geotiff/$pkgname/$pkgname-$pkgver.tar.gz)
-sha256sums=('acfc76ee19b3d41bb9c7e8b780ca55d413893a96c09f3b27bdb9b2573b41fd23')
+sha256sums=('ad87048adb91167b07f34974a8e53e4ec356494c29f1748de95252e8f81a5e6e')
 
 build() {
   cd "${srcdir}"/$pkgname-$pkgver

Modified: libgeotiff.changelog
===
--- libgeotiff.changelog2016-09-14 20:02:32 UTC (rev 189322)
+++ libgeotiff.changelog2016-09-14 20:22:10 UTC (rev 189323)
@@ -1,3 +1,7 @@
+2016-09-14 Jaroslav Lichtblau 
+   * libgeotiff 1.4.2-1
+   * proj 4.9.3 soname rebuild
+
 2015-03-12 Jaroslav Lichtblau 
* libgeotiff 1.4.1-2 proj rebuild
 


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

2016-09-14 Thread Sergej Pupykin
Date: Wednesday, September 14, 2016 @ 20:02:32
  Author: spupykin
Revision: 189322

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-09-14 20:02:15 UTC (rev 189321)
+++ community-i686/PKGBUILD 2016-09-14 20:02:32 UTC (rev 189322)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: William Rea 
-# Contributor: Hans Janssen 
-
-pkgname=simgear
-pkgver=2016.2.1
-_pkgver=2016.2
-pkgrel=1
-pkgdesc="A set of open-source libraries designed to be used as building blocks 
for quickly assembling 3d simulations, games, and visualization applications."
-arch=(i686 x86_64)
-depends=('glu' 'glut' 'freealut' 'plib' 'openscenegraph')
-makedepends=('boost' 'cmake' 'mesa')
-license=("GPL")
-url="http://www.flightgear.org/;
-options=('!makeflags' 'staticlibs')
-source=("http://downloads.sourceforge.net/project/flightgear/release-${_pkgver}/${pkgname}-${pkgver}.tar.bz2;)
-#source=("git://git.code.sf.net/p/flightgear/simgear#commit=41f40a9a106520e92385d059b80c4ed3779eedcb")
-md5sums=('7bd21e63ffb83109f530627c593d94cd')
-
-build() {
-  cd $srcdir/simgear-$pkgver
-  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib .
-  make
-}
-
-package() {
-  cd $srcdir/simgear-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: simgear/repos/community-i686/PKGBUILD (from rev 189321, 
simgear/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-09-14 20:02:32 UTC (rev 189322)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: William Rea 
+# Contributor: Hans Janssen 
+
+pkgname=simgear
+pkgver=2016.3.1
+_pkgver=2016.3
+pkgrel=1
+pkgdesc="A set of open-source libraries designed to be used as building blocks 
for quickly assembling 3d simulations, games, and visualization applications."
+arch=(i686 x86_64)
+depends=('glu' 'glut' 'freealut' 'plib' 'openscenegraph')
+makedepends=('boost' 'cmake' 'mesa')
+license=("GPL")
+url="http://www.flightgear.org/;
+options=('!makeflags' 'staticlibs')
+source=("http://downloads.sourceforge.net/project/flightgear/release-${_pkgver}/${pkgname}-${pkgver}.tar.bz2;)
+#source=("git://git.code.sf.net/p/flightgear/simgear#commit=41f40a9a106520e92385d059b80c4ed3779eedcb")
+md5sums=('4c422dac10a91ab6315153ea9441e71c')
+
+build() {
+  cd $srcdir/simgear-$pkgver
+  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib .
+  make
+}
+
+package() {
+  cd $srcdir/simgear-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-09-14 20:02:15 UTC (rev 189321)
+++ community-x86_64/PKGBUILD   2016-09-14 20:02:32 UTC (rev 189322)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: William Rea 
-# Contributor: Hans Janssen 
-
-pkgname=simgear
-pkgver=2016.2.1
-_pkgver=2016.2
-pkgrel=1
-pkgdesc="A set of open-source libraries designed to be used as building blocks 
for quickly assembling 3d simulations, games, and visualization applications."
-arch=(i686 x86_64)
-depends=('glu' 'glut' 'freealut' 'plib' 'openscenegraph')
-makedepends=('boost' 'cmake' 'mesa')
-license=("GPL")
-url="http://www.flightgear.org/;
-options=('!makeflags' 'staticlibs')
-source=("http://downloads.sourceforge.net/project/flightgear/release-${_pkgver}/${pkgname}-${pkgver}.tar.bz2;)
-#source=("git://git.code.sf.net/p/flightgear/simgear#commit=41f40a9a106520e92385d059b80c4ed3779eedcb")
-md5sums=('7bd21e63ffb83109f530627c593d94cd')
-
-build() {
-  cd $srcdir/simgear-$pkgver
-  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib .
-  make
-}
-
-package() {
-  cd $srcdir/simgear-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: simgear/repos/community-x86_64/PKGBUILD (from rev 189321, 
simgear/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-09-14 20:02:32 UTC (rev 189322)
@@ -0,0 

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

2016-09-14 Thread Sergej Pupykin
Date: Wednesday, September 14, 2016 @ 20:02:15
  Author: spupykin
Revision: 189321

upgpkg: simgear 2016.3.1-1

upd

Modified:
  simgear/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-14 19:53:17 UTC (rev 189320)
+++ PKGBUILD2016-09-14 20:02:15 UTC (rev 189321)
@@ -4,8 +4,8 @@
 # Contributor: Hans Janssen 
 
 pkgname=simgear
-pkgver=2016.2.1
-_pkgver=2016.2
+pkgver=2016.3.1
+_pkgver=2016.3
 pkgrel=1
 pkgdesc="A set of open-source libraries designed to be used as building blocks 
for quickly assembling 3d simulations, games, and visualization applications."
 arch=(i686 x86_64)
@@ -16,7 +16,7 @@
 options=('!makeflags' 'staticlibs')
 
source=("http://downloads.sourceforge.net/project/flightgear/release-${_pkgver}/${pkgname}-${pkgver}.tar.bz2;)
 
#source=("git://git.code.sf.net/p/flightgear/simgear#commit=41f40a9a106520e92385d059b80c4ed3779eedcb")
-md5sums=('7bd21e63ffb83109f530627c593d94cd')
+md5sums=('4c422dac10a91ab6315153ea9441e71c')
 
 build() {
   cd $srcdir/simgear-$pkgver


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

2016-09-14 Thread Sergej Pupykin
Date: Wednesday, September 14, 2016 @ 19:53:17
  Author: spupykin
Revision: 189320

archrelease: copy trunk to community-any

Added:
  flightgear-data/repos/community-any/PKGBUILD
(from rev 189319, flightgear-data/trunk/PKGBUILD)
Deleted:
  flightgear-data/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-09-14 19:52:49 UTC (rev 189319)
+++ PKGBUILD2016-09-14 19:53:17 UTC (rev 189320)
@@ -1,23 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: William Rea 
-# Contributor: Hans Janssen 
-
-pkgname=flightgear-data
-pkgver=2016.2.1
-_pkgver=2016.2
-pkgrel=1
-pkgdesc="Base-Data for the opensource flight-simulator."
-arch=(any)
-license=('GPL')
-url="http://www.flightgear.org/;
-options=(!strip)
-source=("http://downloads.sourceforge.net/project/flightgear/release-${_pkgver}/FlightGear-${pkgver}-data.tar.bz2;)
-md5sums=('f118026487513e16d0aad185d3818f7b')
-
-package() {
-  cd $srcdir
-  mkdir -p $pkgdir/usr/share/flightgear
-  mv fgdata/ $pkgdir/usr/share/flightgear/data
-  chown root:root $pkgdir/usr/share/flightgear/data
-}

Copied: flightgear-data/repos/community-any/PKGBUILD (from rev 189319, 
flightgear-data/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-09-14 19:53:17 UTC (rev 189320)
@@ -0,0 +1,23 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: William Rea 
+# Contributor: Hans Janssen 
+
+pkgname=flightgear-data
+pkgver=2016.3.1
+_pkgver=2016.3
+pkgrel=1
+pkgdesc="Base-Data for the opensource flight-simulator."
+arch=(any)
+license=('GPL')
+url="http://www.flightgear.org/;
+options=(!strip)
+source=("http://downloads.sourceforge.net/project/flightgear/release-${_pkgver}/FlightGear-${pkgver}-data.tar.bz2;)
+md5sums=('aa2d81bc24ee7dd9a87cfdb96511f1e7')
+
+package() {
+  cd $srcdir
+  mkdir -p $pkgdir/usr/share/flightgear
+  mv fgdata/ $pkgdir/usr/share/flightgear/data
+  chown root:root $pkgdir/usr/share/flightgear/data
+}


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

2016-09-14 Thread Sergej Pupykin
Date: Wednesday, September 14, 2016 @ 19:52:21
  Author: spupykin
Revision: 189317

upgpkg: flightgear 2016.3.1-1

upd

Modified:
  flightgear/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-14 19:38:29 UTC (rev 189316)
+++ PKGBUILD2016-09-14 19:52:21 UTC (rev 189317)
@@ -4,9 +4,9 @@
 # Contributor: Hans Janssen 
 
 pkgname=flightgear
-pkgver=2016.2.1
-_pkgver=2016.2
-pkgrel=2
+pkgver=2016.3.1
+_pkgver=2016.3
+pkgrel=1
 pkgdesc="An open-source, multi-platform flight simulator"
 arch=(i686 x86_64)
 depends=('libxmu' 'libxi' 'zlib' 'openscenegraph' 'subversion' 'libxrandr' 
'glu' 'openal')
@@ -17,7 +17,7 @@
 options=('!makeflags')
 
source=("http://downloads.sourceforge.net/project/flightgear/release-${_pkgver}/${pkgname}-${pkgver}.tar.bz2;
"build-fix.patch")
-md5sums=('04b4817ba9d8953013c43f5f201b495f'
+md5sums=('70936a91c80ee18a7dd7ed663c0273e3'
  'b3d60c225955fd4b8d80ac2087288e43')
 
 prepare() {


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

2016-09-14 Thread Sergej Pupykin
Date: Wednesday, September 14, 2016 @ 19:52:40
  Author: spupykin
Revision: 189318

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

Added:
  flightgear/repos/community-i686/PKGBUILD
(from rev 189317, flightgear/trunk/PKGBUILD)
  flightgear/repos/community-i686/build-fix.patch
(from rev 189317, flightgear/trunk/build-fix.patch)
  flightgear/repos/community-x86_64/PKGBUILD
(from rev 189317, flightgear/trunk/PKGBUILD)
  flightgear/repos/community-x86_64/build-fix.patch
(from rev 189317, flightgear/trunk/build-fix.patch)
Deleted:
  flightgear/repos/community-i686/PKGBUILD
  flightgear/repos/community-i686/build-fix.patch
  flightgear/repos/community-x86_64/PKGBUILD
  flightgear/repos/community-x86_64/build-fix.patch

--+
 /PKGBUILD|  100 +
 /build-fix.patch |   40 ++
 community-i686/PKGBUILD  |   50 --
 community-i686/build-fix.patch   |   20 ---
 community-x86_64/PKGBUILD|   50 --
 community-x86_64/build-fix.patch |   20 ---
 6 files changed, 140 insertions(+), 140 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-09-14 19:52:21 UTC (rev 189317)
+++ community-i686/PKGBUILD 2016-09-14 19:52:40 UTC (rev 189318)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: William Rea 
-# Contributor: Hans Janssen 
-
-pkgname=flightgear
-pkgver=2016.2.1
-_pkgver=2016.2
-pkgrel=2
-pkgdesc="An open-source, multi-platform flight simulator"
-arch=(i686 x86_64)
-depends=('libxmu' 'libxi' 'zlib' 'openscenegraph' 'subversion' 'libxrandr' 
'glu' 'openal')
-makedepends=('boost' 'cmake' 'mesa' 'sharutils' 'simgear' 'qt5-base')
-optdepends=('qt5-base: fgfs --launcher')
-license=("GPL")
-url="http://www.flightgear.org/;
-options=('!makeflags')
-source=("http://downloads.sourceforge.net/project/flightgear/release-${_pkgver}/${pkgname}-${pkgver}.tar.bz2;
-   "build-fix.patch")
-md5sums=('04b4817ba9d8953013c43f5f201b495f'
- 'b3d60c225955fd4b8d80ac2087288e43')
-
-prepare() {
-  cd $srcdir/flightgear-$pkgver
-  patch -p1 -i $srcdir/build-fix.patch
-}
-
-build() {
-  cd $srcdir/flightgear-$pkgver
-  cmake \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DCMAKE_INSTALL_LIBDIR=lib \
-   -DFG_DATA_DIR:STRING="/usr/share/flightgear/data" .
-  uudecode -o package/flightgear.png package/flightgear.png.uue
-  make
-  sed -i 's|Exec=.*|Exec=fgfs --fg-root=/usr/share/flightgear/data|' 
package/flightgear.desktop
-}
-
-package() {
-  depends=(${depends[@]} 'flightgear-data')
-
-  cd $srcdir/flightgear-$pkgver
-  make DESTDIR=$pkgdir install
-
-  install -Dm0644 package/flightgear.desktop 
$pkgdir/usr/share/applications/flightgear.desktop
-  install -Dm0644 package/flightgear.ico $pkgdir/usr/share/icons/flightgear.ico
-  install -Dm0644 package/flightgear.png $pkgdir/usr/share/icons/flightgear.png
-  install -Dm0644 scripts/completion/fg-completion.bash 
$pkgdir/usr/share/bash-completion/completions/fgfs
-  ln -sf flightgear $pkgdir/usr/share/FlightGear
-}

Copied: flightgear/repos/community-i686/PKGBUILD (from rev 189317, 
flightgear/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-09-14 19:52:40 UTC (rev 189318)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: William Rea 
+# Contributor: Hans Janssen 
+
+pkgname=flightgear
+pkgver=2016.3.1
+_pkgver=2016.3
+pkgrel=1
+pkgdesc="An open-source, multi-platform flight simulator"
+arch=(i686 x86_64)
+depends=('libxmu' 'libxi' 'zlib' 'openscenegraph' 'subversion' 'libxrandr' 
'glu' 'openal')
+makedepends=('boost' 'cmake' 'mesa' 'sharutils' 'simgear' 'qt5-base')
+optdepends=('qt5-base: fgfs --launcher')
+license=("GPL")
+url="http://www.flightgear.org/;
+options=('!makeflags')
+source=("http://downloads.sourceforge.net/project/flightgear/release-${_pkgver}/${pkgname}-${pkgver}.tar.bz2;
+   "build-fix.patch")
+md5sums=('70936a91c80ee18a7dd7ed663c0273e3'
+ 'b3d60c225955fd4b8d80ac2087288e43')
+
+prepare() {
+  cd $srcdir/flightgear-$pkgver
+  patch -p1 -i $srcdir/build-fix.patch
+}
+
+build() {
+  cd $srcdir/flightgear-$pkgver
+  cmake \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_INSTALL_LIBDIR=lib \
+   -DFG_DATA_DIR:STRING="/usr/share/flightgear/data" .
+  uudecode -o package/flightgear.png package/flightgear.png.uue
+  make
+  sed -i 's|Exec=.*|Exec=fgfs --fg-root=/usr/share/flightgear/data|' 
package/flightgear.desktop
+}
+
+package() {
+  depends=(${depends[@]} 'flightgear-data')
+
+  cd $srcdir/flightgear-$pkgver
+  make DESTDIR=$pkgdir 

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

2016-09-14 Thread Sergej Pupykin
Date: Wednesday, September 14, 2016 @ 19:52:49
  Author: spupykin
Revision: 189319

upgpkg: flightgear-data 2016.3.1-1

upd

Modified:
  flightgear-data/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-14 19:52:40 UTC (rev 189318)
+++ PKGBUILD2016-09-14 19:52:49 UTC (rev 189319)
@@ -4,8 +4,8 @@
 # Contributor: Hans Janssen 
 
 pkgname=flightgear-data
-pkgver=2016.2.1
-_pkgver=2016.2
+pkgver=2016.3.1
+_pkgver=2016.3
 pkgrel=1
 pkgdesc="Base-Data for the opensource flight-simulator."
 arch=(any)
@@ -13,7 +13,7 @@
 url="http://www.flightgear.org/;
 options=(!strip)
 
source=("http://downloads.sourceforge.net/project/flightgear/release-${_pkgver}/FlightGear-${pkgver}-data.tar.bz2;)
-md5sums=('f118026487513e16d0aad185d3818f7b')
+md5sums=('aa2d81bc24ee7dd9a87cfdb96511f1e7')
 
 package() {
   cd $srcdir


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

2016-09-14 Thread Jaroslav Lichtblau
Date: Wednesday, September 14, 2016 @ 19:38:12
  Author: jlichtblau
Revision: 189315

upgpkg: proj 4.9.3-1 - new upstream release

Modified:
  proj/trunk/PKGBUILD
  proj/trunk/proj.changelog

+
 PKGBUILD   |   14 --
 proj.changelog |3 +++
 2 files changed, 11 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-09-14 19:28:34 UTC (rev 189314)
+++ PKGBUILD2016-09-14 19:38:12 UTC (rev 189315)
@@ -5,25 +5,27 @@
 # Contributor: William Rea 
 
 pkgname=proj
-pkgver=4.9.2
+pkgver=4.9.3
 pkgrel=1
-pkgdesc='Cartographic Projections library.'
+pkgdesc='Cartographic Projections library'
 arch=('i686' 'x86_64')
 url="http://trac.osgeo.org/proj/;
 license=('MIT')
+makedepends=('autoconf')
 changelog=$pkgname.changelog
 
source=($pkgname-$pkgver.tar.gz::https://github.com/OSGeo/proj.4/archive/$pkgver.tar.gz
-http://download.osgeo.org/proj/proj-datumgrid-1.5.tar.gz)
-sha256sums=('9a40de36183d23a395cf51ba7a465e1e6c982b6e4553b31310c42012d188be6b'
-'6047362ec2cdf67a34acce36bb739df9834e10f4be93b7b51ae7d8b2be084d5e')
+http://download.osgeo.org/proj/proj-datumgrid-1.6.zip)
+sha256sums=('c34254f9d54e1f1fcafd322e529a6ca2785785ff99b529dc40b2a25a8a46c871'
+'054e7b63b474926c79f25fbe5cd8760351e8d93e5a167b5473e993c01bb08866')
 
 prepare() {
-  bsdtar -xzvf "${srcdir}"/proj-datumgrid-1.5.tar.gz -C 
"${srcdir}"/proj.4-$pkgver/nad
+  bsdtar -xzvf "${srcdir}"/proj-datumgrid-1.6.zip -C 
"${srcdir}"/proj.4-$pkgver/nad
 }
 
 build(){
   cd "${srcdir}"/$pkgname.4-$pkgver
 
+  autoreconf -if
   ./configure --prefix=/usr
   make
 }

Modified: proj.changelog
===
--- proj.changelog  2016-09-14 19:28:34 UTC (rev 189314)
+++ proj.changelog  2016-09-14 19:38:12 UTC (rev 189315)
@@ -1,3 +1,6 @@
+2016-09-14 Jaroslav Lichtblau 
+   * proj 4.9.3-1
+
 2016-01-09 Jaroslav Lichtblau 
* proj 4.9.2-1
 


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

2016-09-14 Thread Jaroslav Lichtblau
Date: Wednesday, September 14, 2016 @ 19:38:29
  Author: jlichtblau
Revision: 189316

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

Added:
  proj/repos/community-staging-i686/
  proj/repos/community-staging-i686/PKGBUILD
(from rev 189315, proj/trunk/PKGBUILD)
  proj/repos/community-staging-i686/proj.changelog
(from rev 189315, proj/trunk/proj.changelog)
  proj/repos/community-staging-x86_64/
  proj/repos/community-staging-x86_64/PKGBUILD
(from rev 189315, proj/trunk/PKGBUILD)
  proj/repos/community-staging-x86_64/proj.changelog
(from rev 189315, proj/trunk/proj.changelog)

-+
 community-staging-i686/PKGBUILD |   39 ++
 community-staging-i686/proj.changelog   |   23 +
 community-staging-x86_64/PKGBUILD   |   39 ++
 community-staging-x86_64/proj.changelog |   23 +
 4 files changed, 124 insertions(+)

Copied: proj/repos/community-staging-i686/PKGBUILD (from rev 189315, 
proj/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-09-14 19:38:29 UTC (rev 189316)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Mateusz Herych 
+# Contributor: dibblethewrecker 
+# Contributor: William Rea 
+
+pkgname=proj
+pkgver=4.9.3
+pkgrel=1
+pkgdesc='Cartographic Projections library'
+arch=('i686' 'x86_64')
+url="http://trac.osgeo.org/proj/;
+license=('MIT')
+makedepends=('autoconf')
+changelog=$pkgname.changelog
+source=($pkgname-$pkgver.tar.gz::https://github.com/OSGeo/proj.4/archive/$pkgver.tar.gz
+http://download.osgeo.org/proj/proj-datumgrid-1.6.zip)
+sha256sums=('c34254f9d54e1f1fcafd322e529a6ca2785785ff99b529dc40b2a25a8a46c871'
+'054e7b63b474926c79f25fbe5cd8760351e8d93e5a167b5473e993c01bb08866')
+
+prepare() {
+  bsdtar -xzvf "${srcdir}"/proj-datumgrid-1.6.zip -C 
"${srcdir}"/proj.4-$pkgver/nad
+}
+
+build(){
+  cd "${srcdir}"/$pkgname.4-$pkgver
+
+  autoreconf -if
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/$pkgname.4-$pkgver
+
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm644 COPYING "${pkgdir}"/usr/share/licenses/$pkgname/LICENSE
+}

Copied: proj/repos/community-staging-i686/proj.changelog (from rev 189315, 
proj/trunk/proj.changelog)
===
--- community-staging-i686/proj.changelog   (rev 0)
+++ community-staging-i686/proj.changelog   2016-09-14 19:38:29 UTC (rev 
189316)
@@ -0,0 +1,23 @@
+2016-09-14 Jaroslav Lichtblau 
+   * proj 4.9.3-1
+
+2016-01-09 Jaroslav Lichtblau 
+   * proj 4.9.2-1
+
+2015-03-12 Jaroslav Lichtblau 
+   * proj 4.9.1-1
+
+2013-12-25 Jaroslav Lichtblau 
+   * proj 4.8.0-3 static library removed
+
+2013-02-24 Jaroslav Lichtblau 
+   * proj 4.8.0-2 chenyx06a.zip file location fix
+
+2012-05-05 Jaroslav Lichtblau 
+   * proj 4.8.0-1
+
+2012-03-11 Jaroslav Lichtblau 
+   * proj 4.7.0-2 adopted, package signed, FS#27119 fixed
+
+2007-06-27 tardo 
+   * Fixed license dir | license -> licenses

Copied: proj/repos/community-staging-x86_64/PKGBUILD (from rev 189315, 
proj/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-09-14 19:38:29 UTC (rev 189316)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Mateusz Herych 
+# Contributor: dibblethewrecker 
+# Contributor: William Rea 
+
+pkgname=proj
+pkgver=4.9.3
+pkgrel=1
+pkgdesc='Cartographic Projections library'
+arch=('i686' 'x86_64')
+url="http://trac.osgeo.org/proj/;
+license=('MIT')
+makedepends=('autoconf')
+changelog=$pkgname.changelog
+source=($pkgname-$pkgver.tar.gz::https://github.com/OSGeo/proj.4/archive/$pkgver.tar.gz
+http://download.osgeo.org/proj/proj-datumgrid-1.6.zip)
+sha256sums=('c34254f9d54e1f1fcafd322e529a6ca2785785ff99b529dc40b2a25a8a46c871'
+'054e7b63b474926c79f25fbe5cd8760351e8d93e5a167b5473e993c01bb08866')
+
+prepare() {
+  bsdtar -xzvf "${srcdir}"/proj-datumgrid-1.6.zip -C 
"${srcdir}"/proj.4-$pkgver/nad
+}
+
+build(){
+  cd "${srcdir}"/$pkgname.4-$pkgver
+
+  autoreconf -if
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/$pkgname.4-$pkgver
+
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm644 COPYING 

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

2016-09-14 Thread Jan Steffens
Date: Wednesday, September 14, 2016 @ 19:29:52
  Author: heftig
Revision: 276427

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

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

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

Copied: libinput/repos/testing-i686/PKGBUILD (from rev 276426, 
libinput/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-09-14 19:29:52 UTC (rev 276427)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Maintainer: Jan de Groot
+
+pkgname=libinput
+pkgver=1.5.0
+pkgrel=1
+pkgdesc="Input device management and event handling library"
+arch=(i686 x86_64)
+url="http://www.freedesktop.org/wiki/Software/libinput/;
+license=(custom:X11)
+depends=('mtdev' 'systemd' 'libevdev' 'libwacom')
+# currently no doc files to install
+makedepends=('doxygen' 'graphviz' 'gtk3')
+#checkdepends=('check' 'libunwind')
+source=(http://freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz{,.sig})
+sha256sums=('5a96559385ecfaa30f9e72ea89eb8ebbc97caf68e458f451f4ed62315311081c'
+'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"
+  # install doc - no Makefile target
+  install -v -dm755 ${pkgdir}/usr/share/doc/libinput
+  cp -rv doc/html/* ${pkgdir}/usr/share/doc/libinput
+}

Copied: libinput/repos/testing-x86_64/PKGBUILD (from rev 276426, 
libinput/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-09-14 19:29:52 UTC (rev 276427)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Maintainer: Jan de Groot
+
+pkgname=libinput
+pkgver=1.5.0
+pkgrel=1
+pkgdesc="Input device management and event handling library"
+arch=(i686 x86_64)
+url="http://www.freedesktop.org/wiki/Software/libinput/;
+license=(custom:X11)
+depends=('mtdev' 'systemd' 'libevdev' 'libwacom')
+# currently no doc files to install
+makedepends=('doxygen' 'graphviz' 'gtk3')
+#checkdepends=('check' 'libunwind')
+source=(http://freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz{,.sig})
+sha256sums=('5a96559385ecfaa30f9e72ea89eb8ebbc97caf68e458f451f4ed62315311081c'
+'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"
+  # install doc - no Makefile target
+  install -v -dm755 ${pkgdir}/usr/share/doc/libinput
+  cp -rv doc/html/* ${pkgdir}/usr/share/doc/libinput
+}


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

2016-09-14 Thread Jan Steffens
Date: Wednesday, September 14, 2016 @ 19:29:23
  Author: heftig
Revision: 276426

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

Added:
  gnome-calendar/repos/extra-i686/PKGBUILD
(from rev 276425, gnome-calendar/trunk/PKGBUILD)
  gnome-calendar/repos/extra-i686/year-view-use-gsettings-desktop-schemas.patch
(from rev 276425, 
gnome-calendar/trunk/year-view-use-gsettings-desktop-schemas.patch)
  gnome-calendar/repos/extra-x86_64/PKGBUILD
(from rev 276425, gnome-calendar/trunk/PKGBUILD)
  
gnome-calendar/repos/extra-x86_64/year-view-use-gsettings-desktop-schemas.patch
(from rev 276425, 
gnome-calendar/trunk/year-view-use-gsettings-desktop-schemas.patch)
Deleted:
  gnome-calendar/repos/extra-i686/PKGBUILD
  gnome-calendar/repos/extra-i686/year-view-use-gsettings-desktop-schemas.patch
  gnome-calendar/repos/extra-x86_64/PKGBUILD
  
gnome-calendar/repos/extra-x86_64/year-view-use-gsettings-desktop-schemas.patch

+
 /PKGBUILD  |   72 +
 /year-view-use-gsettings-desktop-schemas.patch |  144 +++
 extra-i686/PKGBUILD|   36 --
 extra-i686/year-view-use-gsettings-desktop-schemas.patch   |   72 -
 extra-x86_64/PKGBUILD  |   36 --
 extra-x86_64/year-view-use-gsettings-desktop-schemas.patch |   72 -
 6 files changed, 216 insertions(+), 216 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-09-14 19:29:00 UTC (rev 276425)
+++ extra-i686/PKGBUILD 2016-09-14 19:29:23 UTC (rev 276426)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=gnome-calendar
-pkgver=3.20.3
-pkgrel=1
-pkgdesc="Simple and beautiful calendar application designed to perfectly fit 
the GNOME desktop"
-url="https://wiki.gnome.org/Apps/Calendar;
-arch=(i686 x86_64)
-license=(GPL)
-depends=(evolution-data-server 'gsettings-desktop-schemas>=3.21.2')
-makedepends=(intltool python gnome-common)
-groups=(gnome-extra)
-source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz
-year-view-use-gsettings-desktop-schemas.patch)
-sha256sums=('8f12f554447d3147817b162d708dfd4a596b8303bfee9fe358ec7091fceec36b'
-'668a698fc5e6902f3796b70a418c6c88ef49ab1e1c11bb9e2f4f16d344ee8f77')
-
-prepare() {
-  cd $pkgname-$pkgver
-  patch -Np1 -i ../year-view-use-gsettings-desktop-schemas.patch
-}
-
-build() {
-  cd $pkgname-$pkgver
-  autoreconf -fi
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gnome-calendar/repos/extra-i686/PKGBUILD (from rev 276425, 
gnome-calendar/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-09-14 19:29:23 UTC (rev 276426)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=gnome-calendar
+pkgver=3.20.4
+pkgrel=1
+pkgdesc="Simple and beautiful calendar application designed to perfectly fit 
the GNOME desktop"
+url="https://wiki.gnome.org/Apps/Calendar;
+arch=(i686 x86_64)
+license=(GPL)
+depends=(evolution-data-server 'gsettings-desktop-schemas>=3.21.2')
+makedepends=(intltool python gnome-common)
+groups=(gnome-extra)
+source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz
+year-view-use-gsettings-desktop-schemas.patch)
+sha256sums=('eb39488c7087eb597d281f16414fe6439fc8280b618535a66db85e5cfceccc11'
+'668a698fc5e6902f3796b70a418c6c88ef49ab1e1c11bb9e2f4f16d344ee8f77')
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -Np1 -i ../year-view-use-gsettings-desktop-schemas.patch
+}
+
+build() {
+  cd $pkgname-$pkgver
+  autoreconf -fi
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: extra-i686/year-view-use-gsettings-desktop-schemas.patch
===
--- extra-i686/year-view-use-gsettings-desktop-schemas.patch2016-09-14 
19:29:00 UTC (rev 276425)
+++ extra-i686/year-view-use-gsettings-desktop-schemas.patch2016-09-14 
19:29:23 UTC (rev 276426)
@@ -1,72 +0,0 @@
-From da06a48fde20f84d920953a7d4f80f67ed51fe50 Mon Sep 17 00:00:00 2001
-From: Iain Lane 
-Date: Thu, 12 May 2016 11:26:35 +0100
-Subject: [PATCH] year-view: Use the new schema from gsettings-desktop-schemas
-
-So that we don't have to depend on GNOME shell.
-
-https://bugzilla.gnome.org/show_bug.cgi?id=764001

- configure.ac |  4 +++-
- src/gcal-year-view.c | 10 +-
- 2 files changed, 8 insertions(+), 6 deletions(-)
-
-diff --git a/configure.ac b/configure.ac
-index 815260e..693d38e 100644

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

2016-09-14 Thread Jan Steffens
Date: Wednesday, September 14, 2016 @ 19:29:00
  Author: heftig
Revision: 276425

1.5.0-1

Modified:
  libinput/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-14 19:27:39 UTC (rev 276424)
+++ PKGBUILD2016-09-14 19:29:00 UTC (rev 276425)
@@ -3,7 +3,7 @@
 # Maintainer: Jan de Groot
 
 pkgname=libinput
-pkgver=1.4.2
+pkgver=1.5.0
 pkgrel=1
 pkgdesc="Input device management and event handling library"
 arch=(i686 x86_64)
@@ -14,7 +14,7 @@
 makedepends=('doxygen' 'graphviz' 'gtk3')
 #checkdepends=('check' 'libunwind')
 
source=(http://freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz{,.sig})
-sha256sums=('8c38826a785594811bef6a9daadbfa2e172e3f070f8863393d6fb7ca4c68e451'
+sha256sums=('5a96559385ecfaa30f9e72ea89eb8ebbc97caf68e458f451f4ed62315311081c'
 'SKIP')
 validpgpkeys=('3C2C43D9447D5938EF4551EBE23B7E70B467F0BF') # Peter Hutterer 
(Who-T) 
 


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

2016-09-14 Thread Jelle van der Waa
Date: Wednesday, September 14, 2016 @ 19:28:34
  Author: jelle
Revision: 189314

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

Added:
  python-sqlalchemy/repos/community-i686/PKGBUILD
(from rev 189313, python-sqlalchemy/trunk/PKGBUILD)
  python-sqlalchemy/repos/community-x86_64/PKGBUILD
(from rev 189313, python-sqlalchemy/trunk/PKGBUILD)
Deleted:
  python-sqlalchemy/repos/community-i686/PKGBUILD
  python-sqlalchemy/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-09-14 19:28:22 UTC (rev 189313)
+++ community-i686/PKGBUILD 2016-09-14 19:28:34 UTC (rev 189314)
@@ -1,62 +0,0 @@
-# $Id$ 
-# Maintainer: Angel Velasquez 
-# Maintainer: Felix Yan 
-# Contributor: Sébastien Luttringer 
-
-pkgbase=python-sqlalchemy
-pkgname=('python-sqlalchemy' 'python2-sqlalchemy')
-pkgver=1.0.14
-pkgrel=1
-arch=('i686' 'x86_64') # python2 package contain .so
-url="http://www.sqlalchemy.org/;
-license=('MIT')
-makedepends=('python-setuptools' 'python2-setuptools')
-checkdepends=('python-pytest-runner' 'python2-pytest-runner' 
'python-pytest-xdist' 'python2-pytest-xdist' 'python-mock' 'python2-mock')
-source=("https://pypi.io/packages/source/S/SQLAlchemy/SQLAlchemy-$pkgver.tar.gz"{,.asc})
-validpgpkeys=('83AF7ACE251C13E6BB7DEFBD330239C1C4DAFEE1')
-md5sums=('173c9d1ea5cf51893e65d213c280bd2a'
- 'SKIP')
-
-prepare() {
-  cp -a SQLAlchemy-$pkgver SQLAlchemy2-$pkgver
-}
-
-build() {
-  cd "$srcdir"/SQLAlchemy-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/SQLAlchemy2-$pkgver
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/SQLAlchemy-$pkgver
-  python setup.py ptr
- 
-  cd "$srcdir"/SQLAlchemy2-$pkgver  
-  python2 setup.py ptr
-}
-
-package_python-sqlalchemy() {
-  pkgdesc='Python SQL toolkit and Object Relational Mapper'
-  depends=('python')
-  optdepends=('python-psycopg2: connect to PostgreSQL database')
-
-  cd SQLAlchemy-$pkgver
-  python setup.py install --root="${pkgdir}"
-  install -D -m644 LICENSE \
- "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_python2-sqlalchemy() {
-  pkgdesc='Python 2 SQL toolkit and Object Relational Mapper'
-  depends=('python2')
-  optdepends=('python2-psycopg2: connect to PostgreSQL database')
-
-  cd SQLAlchemy2-$pkgver
-  python2 setup.py install --root="$pkgdir"
-  install -D -m644 LICENSE \
- "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# vim:set ts=2 sw=2 ft=sh et:

Copied: python-sqlalchemy/repos/community-i686/PKGBUILD (from rev 189313, 
python-sqlalchemy/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-09-14 19:28:34 UTC (rev 189314)
@@ -0,0 +1,62 @@
+# $Id$ 
+# Maintainer: Angel Velasquez 
+# Maintainer: Felix Yan 
+# Contributor: Sébastien Luttringer 
+
+pkgbase=python-sqlalchemy
+pkgname=('python-sqlalchemy' 'python2-sqlalchemy')
+pkgver=1.0.15
+pkgrel=1
+arch=('i686' 'x86_64') # python2 package contain .so
+url="http://www.sqlalchemy.org/;
+license=('MIT')
+makedepends=('python-setuptools' 'python2-setuptools')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 
'python-pytest-xdist' 'python2-pytest-xdist' 'python-mock' 'python2-mock')
+source=("https://pypi.io/packages/source/S/SQLAlchemy/SQLAlchemy-$pkgver.tar.gz"{,.asc})
+validpgpkeys=('83AF7ACE251C13E6BB7DEFBD330239C1C4DAFEE1')
+md5sums=('740ee7f2efddc8388170e14b8d1d938f'
+ 'SKIP')
+
+prepare() {
+  cp -a SQLAlchemy-$pkgver SQLAlchemy2-$pkgver
+}
+
+build() {
+  cd "$srcdir"/SQLAlchemy-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/SQLAlchemy2-$pkgver
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/SQLAlchemy-$pkgver
+  python setup.py ptr
+ 
+  cd "$srcdir"/SQLAlchemy2-$pkgver  
+  python2 setup.py ptr
+}
+
+package_python-sqlalchemy() {
+  pkgdesc='Python SQL toolkit and Object Relational Mapper'
+  depends=('python')
+  optdepends=('python-psycopg2: connect to PostgreSQL database')
+
+  cd SQLAlchemy-$pkgver
+  python setup.py install --root="${pkgdir}"
+  install -D -m644 LICENSE \
+ "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_python2-sqlalchemy() {
+  pkgdesc='Python 2 SQL toolkit and Object Relational Mapper'
+  depends=('python2')
+  optdepends=('python2-psycopg2: connect to PostgreSQL database')
+
+  cd SQLAlchemy2-$pkgver
+  python2 setup.py install --root="$pkgdir"
+  install -D -m644 LICENSE \
+ 

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

2016-09-14 Thread Jelle van der Waa
Date: Wednesday, September 14, 2016 @ 19:28:22
  Author: jelle
Revision: 189313

upgpkg: python-sqlalchemy 1.0.15-1

Modified:
  python-sqlalchemy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-14 17:00:42 UTC (rev 189312)
+++ PKGBUILD2016-09-14 19:28:22 UTC (rev 189313)
@@ -5,7 +5,7 @@
 
 pkgbase=python-sqlalchemy
 pkgname=('python-sqlalchemy' 'python2-sqlalchemy')
-pkgver=1.0.14
+pkgver=1.0.15
 pkgrel=1
 arch=('i686' 'x86_64') # python2 package contain .so
 url="http://www.sqlalchemy.org/;
@@ -14,7 +14,7 @@
 checkdepends=('python-pytest-runner' 'python2-pytest-runner' 
'python-pytest-xdist' 'python2-pytest-xdist' 'python-mock' 'python2-mock')
 
source=("https://pypi.io/packages/source/S/SQLAlchemy/SQLAlchemy-$pkgver.tar.gz"{,.asc})
 validpgpkeys=('83AF7ACE251C13E6BB7DEFBD330239C1C4DAFEE1')
-md5sums=('173c9d1ea5cf51893e65d213c280bd2a'
+md5sums=('740ee7f2efddc8388170e14b8d1d938f'
  'SKIP')
 
 prepare() {


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

2016-09-14 Thread Jan Steffens
Date: Wednesday, September 14, 2016 @ 19:27:39
  Author: heftig
Revision: 276424

3.20.4-1

Modified:
  gnome-calendar/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-14 12:21:47 UTC (rev 276423)
+++ PKGBUILD2016-09-14 19:27:39 UTC (rev 276424)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot 
 
 pkgname=gnome-calendar
-pkgver=3.20.3
+pkgver=3.20.4
 pkgrel=1
 pkgdesc="Simple and beautiful calendar application designed to perfectly fit 
the GNOME desktop"
 url="https://wiki.gnome.org/Apps/Calendar;
@@ -13,7 +13,7 @@
 groups=(gnome-extra)
 
source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz
 year-view-use-gsettings-desktop-schemas.patch)
-sha256sums=('8f12f554447d3147817b162d708dfd4a596b8303bfee9fe358ec7091fceec36b'
+sha256sums=('eb39488c7087eb597d281f16414fe6439fc8280b618535a66db85e5cfceccc11'
 '668a698fc5e6902f3796b70a418c6c88ef49ab1e1c11bb9e2f4f16d344ee8f77')
 
 prepare() {


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

2016-09-14 Thread Sergej Pupykin
Date: Wednesday, September 14, 2016 @ 17:00:42
  Author: spupykin
Revision: 189312

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-09-14 17:00:26 UTC (rev 189311)
+++ community-i686/PKGBUILD 2016-09-14 17:00:42 UTC (rev 189312)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer : Ionut Biru 
-# Contributor: Joeny Ang 
-
-pkgname=shotwell
-epoch=1
-pkgver=0.23.6
-_basever=$(echo $pkgver | cut -f1-2 -d.)
-pkgrel=1
-pkgdesc="A digital photo organizer designed for the GNOME desktop environment"
-arch=('i686' 'x86_64')
-url="http://yorba.org/shotwell/;
-license=('LGPL2.1')
-depends=('libgee' 'webkit2gtk' 'libgexiv2' 'libraw' 'rest'
-'desktop-file-utils' 'dconf' 'hicolor-icon-theme' 'json-glib'
-'gst-plugins-base' 'libgphoto2' 'libgudev')
-makedepends=('intltool' 'vala>=0.17.2' 'gnome-doc-utils' 'itstool')
-source=("https://download.gnome.org/sources/shotwell/${_basever}/shotwell-$pkgver.tar.xz;)
-md5sums=('5d5d5c74064866eea1127dc0f18b3a6b')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr --libexec=/usr/lib \
-   --disable-schemas-compile \
-   --disable-desktop-update \
-   --disable-icon-update
-  make -j1
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-}

Copied: shotwell/repos/community-i686/PKGBUILD (from rev 189311, 
shotwell/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-09-14 17:00:42 UTC (rev 189312)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer : Ionut Biru 
+# Contributor: Joeny Ang 
+
+pkgname=shotwell
+epoch=1
+pkgver=0.23.7
+_basever=$(echo $pkgver | cut -f1-2 -d.)
+pkgrel=1
+pkgdesc="A digital photo organizer designed for the GNOME desktop environment"
+arch=('i686' 'x86_64')
+url="http://yorba.org/shotwell/;
+license=('LGPL2.1')
+depends=('libgee' 'webkit2gtk' 'libgexiv2' 'libraw' 'rest'
+'desktop-file-utils' 'dconf' 'hicolor-icon-theme' 'json-glib'
+'gst-plugins-base' 'libgphoto2' 'libgudev')
+makedepends=('intltool' 'vala>=0.17.2' 'gnome-doc-utils' 'itstool')
+source=("https://download.gnome.org/sources/shotwell/${_basever}/shotwell-$pkgver.tar.xz;)
+md5sums=('79779f852be4a5b041a3e7aff25abaa2')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr --libexec=/usr/lib \
+   --disable-schemas-compile \
+   --disable-desktop-update \
+   --disable-icon-update
+  make -j1
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-09-14 17:00:26 UTC (rev 189311)
+++ community-x86_64/PKGBUILD   2016-09-14 17:00:42 UTC (rev 189312)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer : Ionut Biru 
-# Contributor: Joeny Ang 
-
-pkgname=shotwell
-epoch=1
-pkgver=0.23.6
-_basever=$(echo $pkgver | cut -f1-2 -d.)
-pkgrel=1
-pkgdesc="A digital photo organizer designed for the GNOME desktop environment"
-arch=('i686' 'x86_64')
-url="http://yorba.org/shotwell/;
-license=('LGPL2.1')
-depends=('libgee' 'webkit2gtk' 'libgexiv2' 'libraw' 'rest'
-'desktop-file-utils' 'dconf' 'hicolor-icon-theme' 'json-glib'
-'gst-plugins-base' 'libgphoto2' 'libgudev')
-makedepends=('intltool' 'vala>=0.17.2' 'gnome-doc-utils' 'itstool')
-source=("https://download.gnome.org/sources/shotwell/${_basever}/shotwell-$pkgver.tar.xz;)
-md5sums=('5d5d5c74064866eea1127dc0f18b3a6b')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr --libexec=/usr/lib \
-   --disable-schemas-compile \
-   --disable-desktop-update \
-   --disable-icon-update
-  make -j1
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-}

Copied: shotwell/repos/community-x86_64/PKGBUILD (from rev 189311, 

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

2016-09-14 Thread Sergej Pupykin
Date: Wednesday, September 14, 2016 @ 17:00:26
  Author: spupykin
Revision: 189311

upgpkg: shotwell 1:0.23.7-1

upd

Modified:
  shotwell/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-14 17:00:21 UTC (rev 189310)
+++ PKGBUILD2016-09-14 17:00:26 UTC (rev 189311)
@@ -5,7 +5,7 @@
 
 pkgname=shotwell
 epoch=1
-pkgver=0.23.6
+pkgver=0.23.7
 _basever=$(echo $pkgver | cut -f1-2 -d.)
 pkgrel=1
 pkgdesc="A digital photo organizer designed for the GNOME desktop environment"
@@ -17,7 +17,7 @@
 'gst-plugins-base' 'libgphoto2' 'libgudev')
 makedepends=('intltool' 'vala>=0.17.2' 'gnome-doc-utils' 'itstool')
 
source=("https://download.gnome.org/sources/shotwell/${_basever}/shotwell-$pkgver.tar.xz;)
-md5sums=('5d5d5c74064866eea1127dc0f18b3a6b')
+md5sums=('79779f852be4a5b041a3e7aff25abaa2')
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"


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

2016-09-14 Thread Sergej Pupykin
Date: Wednesday, September 14, 2016 @ 17:00:21
  Author: spupykin
Revision: 189310

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

Added:
  libvirt-python/repos/community-i686/PKGBUILD
(from rev 189309, libvirt-python/trunk/PKGBUILD)
  libvirt-python/repos/community-i686/libvirt-python.install
(from rev 189309, libvirt-python/trunk/libvirt-python.install)
  libvirt-python/repos/community-x86_64/PKGBUILD
(from rev 189309, libvirt-python/trunk/PKGBUILD)
  libvirt-python/repos/community-x86_64/libvirt-python.install
(from rev 189309, libvirt-python/trunk/libvirt-python.install)
Deleted:
  libvirt-python/repos/community-i686/PKGBUILD
  libvirt-python/repos/community-i686/libvirt-python.install
  libvirt-python/repos/community-x86_64/PKGBUILD
  libvirt-python/repos/community-x86_64/libvirt-python.install

-+
 /PKGBUILD   |   66 ++
 /libvirt-python.install |6 ++
 community-i686/PKGBUILD |   33 ---
 community-i686/libvirt-python.install   |3 -
 community-x86_64/PKGBUILD   |   33 ---
 community-x86_64/libvirt-python.install |3 -
 6 files changed, 72 insertions(+), 72 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-09-14 17:00:02 UTC (rev 189309)
+++ community-i686/PKGBUILD 2016-09-14 17:00:21 UTC (rev 189310)
@@ -1,33 +0,0 @@
-# $Id: PKGBUILD 101980 2013-12-03 09:48:38Z spupykin $
-# Maintainer: Sergej Pupykin 
-# Contributor: Jonathan Wiersma 
-
-pkgbase=libvirt-python
-pkgname=(libvirt-python libvirt-python3)
-pkgver=2.1.0
-pkgrel=1
-pkgdesc="libvirt python binding"
-arch=('i686' 'x86_64')
-url="http://libvirt.org/;
-license=('LGPL')
-makedepends=('python' 'python2' 'libvirt')
-options=('emptydirs')
-install="libvirt-python.install"
-source=("http://libvirt.org/sources/python/libvirt-python-$pkgver.tar.gz;)
-md5sums=('7f595fed5b9da18b07fd73beafd82ed2')
-
-package_libvirt-python() {
-  depends=('python2' 'libvirt')
-
-  cd "$srcdir/$pkgbase-$pkgver"
-  python2 setup.py clean
-  python2 setup.py install --root=$pkgdir
-}
-
-package_libvirt-python3() {
-  depends=('python' 'libvirt')
-
-  cd "$srcdir/$pkgbase-$pkgver"
-  python setup.py clean
-  python setup.py install --root=$pkgdir
-}

Copied: libvirt-python/repos/community-i686/PKGBUILD (from rev 189309, 
libvirt-python/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-09-14 17:00:21 UTC (rev 189310)
@@ -0,0 +1,33 @@
+# $Id: PKGBUILD 101980 2013-12-03 09:48:38Z spupykin $
+# Maintainer: Sergej Pupykin 
+# Contributor: Jonathan Wiersma 
+
+pkgbase=libvirt-python
+pkgname=(libvirt-python libvirt-python3)
+pkgver=2.2.0
+pkgrel=1
+pkgdesc="libvirt python binding"
+arch=('i686' 'x86_64')
+url="http://libvirt.org/;
+license=('LGPL')
+makedepends=('python' 'python2' 'libvirt')
+options=('emptydirs')
+install="libvirt-python.install"
+source=("http://libvirt.org/sources/python/libvirt-python-$pkgver.tar.gz;)
+md5sums=('fde20090374d7631ac8ea2bdab6ba510')
+
+package_libvirt-python() {
+  depends=('python2' 'libvirt')
+
+  cd "$srcdir/$pkgbase-$pkgver"
+  python2 setup.py clean
+  python2 setup.py install --root=$pkgdir
+}
+
+package_libvirt-python3() {
+  depends=('python' 'libvirt')
+
+  cd "$srcdir/$pkgbase-$pkgver"
+  python setup.py clean
+  python setup.py install --root=$pkgdir
+}

Deleted: community-i686/libvirt-python.install
===
--- community-i686/libvirt-python.install   2016-09-14 17:00:02 UTC (rev 
189309)
+++ community-i686/libvirt-python.install   2016-09-14 17:00:21 UTC (rev 
189310)
@@ -1,3 +0,0 @@
-post_remove() {
-   rm -f /usr/lib/python[0-9].[0-9]/site-packages/libvirt.pyc
-}

Copied: libvirt-python/repos/community-i686/libvirt-python.install (from rev 
189309, libvirt-python/trunk/libvirt-python.install)
===
--- community-i686/libvirt-python.install   (rev 0)
+++ community-i686/libvirt-python.install   2016-09-14 17:00:21 UTC (rev 
189310)
@@ -0,0 +1,3 @@
+post_remove() {
+   rm -f /usr/lib/python[0-9].[0-9]/site-packages/libvirt.pyc
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-09-14 17:00:02 UTC (rev 189309)
+++ community-x86_64/PKGBUILD   2016-09-14 17:00:21 UTC (rev 189310)
@@ -1,33 +0,0 @@
-# $Id: PKGBUILD 101980 2013-12-03 09:48:38Z spupykin $
-# Maintainer: Sergej Pupykin 
-# Contributor: Jonathan Wiersma 
-
-pkgbase=libvirt-python
-pkgname=(libvirt-python 

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

2016-09-14 Thread Sergej Pupykin
Date: Wednesday, September 14, 2016 @ 17:00:02
  Author: spupykin
Revision: 189309

upgpkg: libvirt-python 2.2.0-1

upd

Modified:
  libvirt-python/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-14 15:06:36 UTC (rev 189308)
+++ PKGBUILD2016-09-14 17:00:02 UTC (rev 189309)
@@ -4,7 +4,7 @@
 
 pkgbase=libvirt-python
 pkgname=(libvirt-python libvirt-python3)
-pkgver=2.1.0
+pkgver=2.2.0
 pkgrel=1
 pkgdesc="libvirt python binding"
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 options=('emptydirs')
 install="libvirt-python.install"
 source=("http://libvirt.org/sources/python/libvirt-python-$pkgver.tar.gz;)
-md5sums=('7f595fed5b9da18b07fd73beafd82ed2')
+md5sums=('fde20090374d7631ac8ea2bdab6ba510')
 
 package_libvirt-python() {
   depends=('python2' 'libvirt')


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

2016-09-14 Thread Maxime Gauduin
Date: Wednesday, September 14, 2016 @ 15:06:36
  Author: alucryd
Revision: 189308

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

Added:
  pantheon-photos/repos/community-i686/PKGBUILD
(from rev 189307, pantheon-photos/trunk/PKGBUILD)
  pantheon-photos/repos/community-x86_64/PKGBUILD
(from rev 189307, pantheon-photos/trunk/PKGBUILD)
Deleted:
  pantheon-photos/repos/community-i686/PKGBUILD
  pantheon-photos/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-09-14 15:06:25 UTC (rev 189307)
+++ community-i686/PKGBUILD 2016-09-14 15:06:36 UTC (rev 189308)
@@ -1,47 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin 
-
-pkgname=pantheon-photos
-pkgver=0.2
-pkgrel=1
-pkgdesc='The Pantheon Photos Manager'
-arch=('i686' 'x86_64')
-url='https://launchpad.net/pantheon-photos'
-license=('GPL3')
-depends=('cairo' 'desktop-file-utils' 'gdk-pixbuf2' 'glib2' 'glibc'
- 'gst-plugins-base-libs' 'gstreamer' 'gtk3' 'hicolor-icon-theme'
- 'libexif' 'libgee' 'libgexiv2' 'libgphoto2' 'libraw' 'pango' 'sqlite'
- 'libgranite.so' 'libgudev-1.0.so')
-makedepends=('cmake' 'intltool' 'vala' 'webkit2gtk')
-optdepends=('webkit2gtk: Publishing plugins')
-conflicts=('shotwell')
-source=("https://launchpad.net/pantheon-photos/0.2.x/${pkgver}/+download/pantheon-photos-${pkgver}.tar.xz;)
-sha256sums=('4e2a14ffa955706ece4391c999d4bf9e353a16461ce3fefc3735d1975b595862')
-
-prepare() {
-  cd pantheon-photos-${pkgver}
-
-  if [[ -d build ]]; then
-rm -rf build
-  fi
-  mkdir build
-}
-
-build() {
-  cd pantheon-photos-${pkgver}/build
-
-  cmake .. \
--DCMAKE_BUILD_TYPE='Release' \
--DCMAKE_INSTALL_PREFIX='/usr' \
--DCMAKE_INSTALL_LIBDIR='/usr/lib' \
--DGSETTINGS_COMPILE='OFF'
-  make
-}
-
-package() {
-  cd pantheon-photos-${pkgver}/build
-
-  make DESTDIR="${pkgdir}" install
-}
-
-# vim: ts=2 sw=2 et:

Copied: pantheon-photos/repos/community-i686/PKGBUILD (from rev 189307, 
pantheon-photos/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-09-14 15:06:36 UTC (rev 189308)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+
+pkgname=pantheon-photos
+pkgver=0.2
+pkgrel=2
+pkgdesc='The Pantheon Photos Manager'
+arch=('i686' 'x86_64')
+url='https://launchpad.net/pantheon-photos'
+license=('GPL3')
+depends=('cairo' 'desktop-file-utils' 'gdk-pixbuf2' 'glib2' 'glibc'
+ 'gst-plugins-base-libs' 'gstreamer' 'gtk3' 'hicolor-icon-theme'
+ 'libexif' 'libgee' 'libgexiv2' 'libgphoto2' 'libraw' 'pango' 'sqlite'
+ 'libgranite.so' 'libgudev-1.0.so')
+makedepends=('cmake' 'intltool' 'vala' 'webkit2gtk')
+optdepends=('webkit2gtk: Publishing plugins')
+source=("https://launchpad.net/pantheon-photos/0.2.x/${pkgver}/+download/pantheon-photos-${pkgver}.tar.xz;)
+sha256sums=('4e2a14ffa955706ece4391c999d4bf9e353a16461ce3fefc3735d1975b595862')
+
+prepare() {
+  cd pantheon-photos-${pkgver}
+
+  if [[ -d build ]]; then
+rm -rf build
+  fi
+  mkdir build
+}
+
+build() {
+  cd pantheon-photos-${pkgver}/build
+
+  cmake .. \
+-DCMAKE_BUILD_TYPE='Release' \
+-DCMAKE_INSTALL_PREFIX='/usr' \
+-DCMAKE_INSTALL_LIBDIR='/usr/lib' \
+-DGSETTINGS_COMPILE='OFF'
+  make
+}
+
+package() {
+  cd pantheon-photos-${pkgver}/build
+
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-09-14 15:06:25 UTC (rev 189307)
+++ community-x86_64/PKGBUILD   2016-09-14 15:06:36 UTC (rev 189308)
@@ -1,47 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin 
-
-pkgname=pantheon-photos
-pkgver=0.2
-pkgrel=1
-pkgdesc='The Pantheon Photos Manager'
-arch=('i686' 'x86_64')
-url='https://launchpad.net/pantheon-photos'
-license=('GPL3')
-depends=('cairo' 'desktop-file-utils' 'gdk-pixbuf2' 'glib2' 'glibc'
- 'gst-plugins-base-libs' 'gstreamer' 'gtk3' 'hicolor-icon-theme'
- 'libexif' 'libgee' 'libgexiv2' 'libgphoto2' 'libraw' 'pango' 'sqlite'
- 'libgranite.so' 'libgudev-1.0.so')
-makedepends=('cmake' 'intltool' 'vala' 'webkit2gtk')
-optdepends=('webkit2gtk: Publishing plugins')
-conflicts=('shotwell')
-source=("https://launchpad.net/pantheon-photos/0.2.x/${pkgver}/+download/pantheon-photos-${pkgver}.tar.xz;)
-sha256sums=('4e2a14ffa955706ece4391c999d4bf9e353a16461ce3fefc3735d1975b595862')
-
-prepare() {
-  cd pantheon-photos-${pkgver}
-
-  if [[ -d 

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

2016-09-14 Thread Maxime Gauduin
Date: Wednesday, September 14, 2016 @ 15:06:25
  Author: alucryd
Revision: 189307

FS#50737: pantheon-photos 0.2-2

Modified:
  pantheon-photos/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-14 14:21:26 UTC (rev 189306)
+++ PKGBUILD2016-09-14 15:06:25 UTC (rev 189307)
@@ -3,7 +3,7 @@
 
 pkgname=pantheon-photos
 pkgver=0.2
-pkgrel=1
+pkgrel=2
 pkgdesc='The Pantheon Photos Manager'
 arch=('i686' 'x86_64')
 url='https://launchpad.net/pantheon-photos'
@@ -14,7 +14,6 @@
  'libgranite.so' 'libgudev-1.0.so')
 makedepends=('cmake' 'intltool' 'vala' 'webkit2gtk')
 optdepends=('webkit2gtk: Publishing plugins')
-conflicts=('shotwell')
 
source=("https://launchpad.net/pantheon-photos/0.2.x/${pkgver}/+download/pantheon-photos-${pkgver}.tar.xz;)
 sha256sums=('4e2a14ffa955706ece4391c999d4bf9e353a16461ce3fefc3735d1975b595862')
 


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

2016-09-14 Thread Felix Yan
Date: Wednesday, September 14, 2016 @ 14:21:26
  Author: felixonmars
Revision: 189306

archrelease: copy trunk to community-any

Added:
  python-requests-mock/repos/community-any/PKGBUILD
(from rev 189305, python-requests-mock/trunk/PKGBUILD)
Deleted:
  python-requests-mock/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-09-14 14:21:11 UTC (rev 189305)
+++ PKGBUILD2016-09-14 14:21:26 UTC (rev 189306)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgbase=python-requests-mock
-pkgname=('python-requests-mock' 'python2-requests-mock')
-pkgver=1.0.0
-pkgrel=1
-pkgdesc="A mock of useful classes and functions to be used with 
python-requests."
-arch=('any')
-url="https://github.com/openstack/requests-mock;
-license=('Apache')
-makedepends=('python-pbr' 'python2-pbr' 'python-requests' 'python2-requests'
- 'python-six' 'python2-six' 'git')
-checkdepends=('python-testrepository' 'python2-testrepository' 'python-mock' 
'python2-mock')
-source=("git+https://github.com/openstack/requests-mock.git#tag=$pkgver;)
-md5sums=('SKIP')
-
-prepare() {
-  cp -a requests-mock{,-py2}
-}
-
-build() {
-  cd "$srcdir"/requests-mock
-  python setup.py build
-
-  cd "$srcdir"/requests-mock-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/requests-mock
-  python setup.py testr
-
-  cd "$srcdir"/requests-mock-py2
-  PYTHON=python2 python2 setup.py testr
-}
-
-package_python-requests-mock() {
-  depends=('python-requests' 'python-six')
-
-  cd requests-mock
-  python setup.py install --root="$pkgdir" --optimize=1
-}
-
-package_python2-requests-mock() {
-  depends=('python2-requests' 'python2-six')
-
-  cd requests-mock-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python-requests-mock/repos/community-any/PKGBUILD (from rev 189305, 
python-requests-mock/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-09-14 14:21:26 UTC (rev 189306)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-requests-mock
+pkgname=('python-requests-mock' 'python2-requests-mock')
+pkgver=1.1.0
+pkgrel=1
+pkgdesc="A mock of useful classes and functions to be used with 
python-requests."
+arch=('any')
+url="https://github.com/openstack/requests-mock;
+license=('Apache')
+makedepends=('python-pbr' 'python2-pbr' 'python-requests' 'python2-requests'
+ 'python-six' 'python2-six' 'git')
+checkdepends=('python-testrepository' 'python2-testrepository' 'python-mock' 
'python2-mock')
+source=("git+https://github.com/openstack/requests-mock.git#tag=$pkgver;)
+md5sums=('SKIP')
+
+prepare() {
+  cp -a requests-mock{,-py2}
+}
+
+build() {
+  cd "$srcdir"/requests-mock
+  python setup.py build
+
+  cd "$srcdir"/requests-mock-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/requests-mock
+  python setup.py testr
+
+  cd "$srcdir"/requests-mock-py2
+  PYTHON=python2 python2 setup.py testr
+}
+
+package_python-requests-mock() {
+  depends=('python-requests' 'python-six')
+
+  cd requests-mock
+  python setup.py install --root="$pkgdir" --optimize=1
+}
+
+package_python2-requests-mock() {
+  depends=('python2-requests' 'python2-six')
+
+  cd requests-mock-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+}


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

2016-09-14 Thread Felix Yan
Date: Wednesday, September 14, 2016 @ 14:21:11
  Author: felixonmars
Revision: 189305

upgpkg: python-requests-mock 1.1.0-1

Modified:
  python-requests-mock/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-14 12:09:51 UTC (rev 189304)
+++ PKGBUILD2016-09-14 14:21:11 UTC (rev 189305)
@@ -3,7 +3,7 @@
 
 pkgbase=python-requests-mock
 pkgname=('python-requests-mock' 'python2-requests-mock')
-pkgver=1.0.0
+pkgver=1.1.0
 pkgrel=1
 pkgdesc="A mock of useful classes and functions to be used with 
python-requests."
 arch=('any')


[arch-commits] Commit in kirigami (5 files)

2016-09-14 Thread Antonio Rojas
Date: Wednesday, September 14, 2016 @ 12:21:47
  Author: arojas
Revision: 276423

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

Added:
  kirigami/repos/
  kirigami/repos/extra-i686/
  kirigami/repos/extra-i686/PKGBUILD
(from rev 276422, kirigami/trunk/PKGBUILD)
  kirigami/repos/extra-x86_64/
  kirigami/repos/extra-x86_64/PKGBUILD
(from rev 276422, kirigami/trunk/PKGBUILD)

---+
 extra-i686/PKGBUILD   |   36 
 extra-x86_64/PKGBUILD |   36 
 2 files changed, 72 insertions(+)

Copied: kirigami/repos/extra-i686/PKGBUILD (from rev 276422, 
kirigami/trunk/PKGBUILD)
===
--- repos/extra-i686/PKGBUILD   (rev 0)
+++ repos/extra-i686/PKGBUILD   2016-09-14 12:21:47 UTC (rev 276423)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgname=kirigami
+pkgver=1.0.2
+pkgrel=1
+pkgdesc='A QtQuick based components set'
+arch=(i686 x86_64)
+url='https://community.kde.org/Frameworks'
+license=(LGPL)
+depends=(qt5-declarative qt5-svg)
+makedepends=(extra-cmake-modules qt5-tools plasma-framework)
+source=("http://download.kde.org/stable/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig})
+md5sums=('e16e1d34d5ab03db3ea272c603a87898'
+ 'SKIP')
+validpgpkeys=('1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin 

+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}
+

Copied: kirigami/repos/extra-x86_64/PKGBUILD (from rev 276422, 
kirigami/trunk/PKGBUILD)
===
--- repos/extra-x86_64/PKGBUILD (rev 0)
+++ repos/extra-x86_64/PKGBUILD 2016-09-14 12:21:47 UTC (rev 276423)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgname=kirigami
+pkgver=1.0.2
+pkgrel=1
+pkgdesc='A QtQuick based components set'
+arch=(i686 x86_64)
+url='https://community.kde.org/Frameworks'
+license=(LGPL)
+depends=(qt5-declarative qt5-svg)
+makedepends=(extra-cmake-modules qt5-tools plasma-framework)
+source=("http://download.kde.org/stable/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig})
+md5sums=('e16e1d34d5ab03db3ea272c603a87898'
+ 'SKIP')
+validpgpkeys=('1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin 

+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}
+


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

2016-09-14 Thread Antonio Rojas
Date: Wednesday, September 14, 2016 @ 12:21:01
  Author: arojas
Revision: 276422

New Plasma dependency

Added:
  kirigami/
  kirigami/trunk/
  kirigami/trunk/PKGBUILD

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

Added: kirigami/trunk/PKGBUILD
===
--- kirigami/trunk/PKGBUILD (rev 0)
+++ kirigami/trunk/PKGBUILD 2016-09-14 12:21:01 UTC (rev 276422)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgname=kirigami
+pkgver=1.0.2
+pkgrel=1
+pkgdesc='A QtQuick based components set'
+arch=(i686 x86_64)
+url='https://community.kde.org/Frameworks'
+license=(LGPL)
+depends=(qt5-declarative qt5-svg)
+makedepends=(extra-cmake-modules qt5-tools plasma-framework)
+source=("http://download.kde.org/stable/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig})
+md5sums=('e16e1d34d5ab03db3ea272c603a87898'
+ 'SKIP')
+validpgpkeys=('1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin 

+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}
+


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


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

2016-09-14 Thread Sven-Hendrik Haase
Date: Wednesday, September 14, 2016 @ 12:09:40
  Author: svenstaro
Revision: 189303

upgpkg: glm 0.9.8.0-1

upstream release 0.9.8.0

Modified:
  glm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-14 11:51:54 UTC (rev 189302)
+++ PKGBUILD2016-09-14 12:09:40 UTC (rev 189303)
@@ -1,7 +1,7 @@
 # Maintainer: Sven-Hendrik Haase 
 # Contributor: Peter Hatina 
 pkgname=glm
-pkgver=0.9.7.6
+pkgver=0.9.8.0
 pkgrel=1
 pkgdesc="C++ mathematics library for 3D software based on the OpenGL Shading 
Language (GLSL) specification"
 arch=('any')
@@ -9,7 +9,7 @@
 url="http://glm.g-truc.net;
 makedepends=('cmake')
 
source=("https://github.com/g-truc/glm/releases/download/${pkgver}/glm-${pkgver}.zip;)
-md5sums=('d0ed95bf9afeacb31cbe013ae1b0839b')
+md5sums=('b24613c1f7e16f504d936ae3ac1f4917')
 
 package() {
 cd $pkgname


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

2016-09-14 Thread Sven-Hendrik Haase
Date: Wednesday, September 14, 2016 @ 12:09:51
  Author: svenstaro
Revision: 189304

archrelease: copy trunk to community-any

Added:
  glm/repos/community-any/PKGBUILD
(from rev 189303, glm/trunk/PKGBUILD)
Deleted:
  glm/repos/community-any/PKGBUILD

--+
 PKGBUILD |   64 ++---
 1 file changed, 32 insertions(+), 32 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-09-14 12:09:40 UTC (rev 189303)
+++ PKGBUILD2016-09-14 12:09:51 UTC (rev 189304)
@@ -1,32 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Peter Hatina 
-pkgname=glm
-pkgver=0.9.7.6
-pkgrel=1
-pkgdesc="C++ mathematics library for 3D software based on the OpenGL Shading 
Language (GLSL) specification"
-arch=('any')
-license=('MIT')
-url="http://glm.g-truc.net;
-makedepends=('cmake')
-source=("https://github.com/g-truc/glm/releases/download/${pkgver}/glm-${pkgver}.zip;)
-md5sums=('d0ed95bf9afeacb31cbe013ae1b0839b')
-
-package() {
-cd $pkgname
-
-mkdir build
-cd build
-
-cmake -DCMAKE_INSTALL_PREFIX=/usr ..
-make DESTDIR=$pkgdir install
-
-cd ..
-
-mkdir -p $pkgdir/usr/share/doc
-cp -r doc $pkgdir/usr/share/doc/glm
-
-find $pkgdir -type f -exec chmod 644 {} \;
-find $pkgdir -type d -exec chmod 755 {} \;
-
-install -Dm644 copying.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}

Copied: glm/repos/community-any/PKGBUILD (from rev 189303, glm/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-09-14 12:09:51 UTC (rev 189304)
@@ -0,0 +1,32 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Peter Hatina 
+pkgname=glm
+pkgver=0.9.8.0
+pkgrel=1
+pkgdesc="C++ mathematics library for 3D software based on the OpenGL Shading 
Language (GLSL) specification"
+arch=('any')
+license=('MIT')
+url="http://glm.g-truc.net;
+makedepends=('cmake')
+source=("https://github.com/g-truc/glm/releases/download/${pkgver}/glm-${pkgver}.zip;)
+md5sums=('b24613c1f7e16f504d936ae3ac1f4917')
+
+package() {
+cd $pkgname
+
+mkdir build
+cd build
+
+cmake -DCMAKE_INSTALL_PREFIX=/usr ..
+make DESTDIR=$pkgdir install
+
+cd ..
+
+mkdir -p $pkgdir/usr/share/doc
+cp -r doc $pkgdir/usr/share/doc/glm
+
+find $pkgdir -type f -exec chmod 644 {} \;
+find $pkgdir -type d -exec chmod 755 {} \;
+
+install -Dm644 copying.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}


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

2016-09-14 Thread Sven-Hendrik Haase
Date: Wednesday, September 14, 2016 @ 11:51:03
  Author: svenstaro
Revision: 189301

upgpkg: gitlab 8.11.5-1

upstream 8.11.5

Modified:
  gitlab/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-14 10:44:24 UTC (rev 189300)
+++ PKGBUILD2016-09-14 11:51:03 UTC (rev 189301)
@@ -7,7 +7,7 @@
 # Contributor: Caleb Maclennan 
 
 pkgname=gitlab
-pkgver=8.11.4
+pkgver=8.11.5
 pkgrel=1
 pkgdesc="Project management and code hosting application"
 arch=('i686' 'x86_64')
@@ -42,7 +42,7 @@
 nginx-ssl.conf.example
 lighttpd.conf.example)
 install='gitlab.install'
-sha256sums=('940c1d1d421eb852576d3e4f814a1aea3d0976a4f481a47c3c121441ca1b4b68'
+sha256sums=('95ca79831667d20d5e5c9cb281b82fdcad21662bd21dc8e81dbd0dda8798c862'
 '0dabb9c10f6ba49404c13d6be2d0d6cf1bf7e5a0b95f0dea566e33c356997307'
 'a348d69cf0d08a1aa0713deb615815ae5a2305a1a1c386bcee29f49eae446757'
 'e16a68539eeb49d24d2ab4a53ff95e33c67264a674b611c006dc5c8a24f41e0e'


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

2016-09-14 Thread Dave Reisner
Date: Wednesday, September 14, 2016 @ 11:23:45
  Author: dreisner
Revision: 276421

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

Added:
  curl/repos/testing-i686/
  curl/repos/testing-i686/PKGBUILD
(from rev 276420, curl/trunk/PKGBUILD)
  curl/repos/testing-i686/curlbuild.h
(from rev 276420, curl/trunk/curlbuild.h)
  curl/repos/testing-x86_64/
  curl/repos/testing-x86_64/PKGBUILD
(from rev 276420, curl/trunk/PKGBUILD)
  curl/repos/testing-x86_64/curlbuild.h
(from rev 276420, curl/trunk/curlbuild.h)

+
 testing-i686/PKGBUILD  |   60 +++
 testing-i686/curlbuild.h   |9 ++
 testing-x86_64/PKGBUILD|   60 +++
 testing-x86_64/curlbuild.h |9 ++
 4 files changed, 138 insertions(+)

Copied: curl/repos/testing-i686/PKGBUILD (from rev 276420, curl/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-09-14 11:23:45 UTC (rev 276421)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Dave Reisner 
+# Contributor: Angel Velasquez 
+# Contributor: Eric Belanger 
+# Contributor: Lucien Immink 
+# Contributor: Daniel J Griffiths 
+
+pkgname=curl
+pkgver=7.50.3
+pkgrel=1
+pkgdesc="An URL retrieval utility and library"
+arch=('i686' 'x86_64')
+url="http://curl.haxx.se;
+license=('MIT')
+depends=('ca-certificates' 'krb5' 'libidn' 'libssh2' 'openssl' 'zlib')
+provides=('libcurl.so')
+options=('strip' 'debug')
+source=("http://curl.haxx.se/download/$pkgname-$pkgver.tar.gz"{,.asc}
+curlbuild.h)
+md5sums=('870e16fd88a88b52e26a4f04dfc161db'
+ 'SKIP'
+ '751bd433ede935c8fae727377625a8ae')
+validpgpkeys=('27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2'   # Daniel Stenberg
+  '914C533DF9B2ADA2204F586D78E11C6B279D5C91')  # Daniel Stenberg 
(old key)
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure \
+  --prefix=/usr \
+  --mandir=/usr/share/man \
+  --disable-ldap \
+  --disable-ldaps \
+  --enable-ipv6 \
+  --enable-manual \
+  --enable-versioned-symbols \
+  --enable-threaded-resolver \
+  --with-gssapi \
+  --with-libidn \
+  --with-random=/dev/urandom \
+  --with-ca-bundle=/etc/ssl/certs/ca-certificates.crt
+
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+
+  local wordsize=$(cpp -include 'bits/wordsize.h' <<<'__WORDSIZE' | sed '$!d')
+  local _curlbuild=curlbuild-$wordsize.h
+
+  # license
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
+
+  # devel
+  mv "$pkgdir/usr/include/curl/curlbuild.h" 
"$pkgdir/usr/include/curl/$_curlbuild"
+  install -m644 "$srcdir/curlbuild.h" "$pkgdir/usr/include/curl/curlbuild.h"
+}

Copied: curl/repos/testing-i686/curlbuild.h (from rev 276420, 
curl/trunk/curlbuild.h)
===
--- testing-i686/curlbuild.h(rev 0)
+++ testing-i686/curlbuild.h2016-09-14 11:23:45 UTC (rev 276421)
@@ -0,0 +1,9 @@
+#include 
+
+#if __WORDSIZE == 32
+#include "curlbuild-32.h"
+#elif __WORDSIZE == 64
+#include "curlbuild-64.h"
+#else
+#error "Unknown word size"
+#endif

Copied: curl/repos/testing-x86_64/PKGBUILD (from rev 276420, 
curl/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-09-14 11:23:45 UTC (rev 276421)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Dave Reisner 
+# Contributor: Angel Velasquez 
+# Contributor: Eric Belanger 
+# Contributor: Lucien Immink 
+# Contributor: Daniel J Griffiths 
+
+pkgname=curl
+pkgver=7.50.3
+pkgrel=1
+pkgdesc="An URL retrieval utility and library"
+arch=('i686' 'x86_64')
+url="http://curl.haxx.se;
+license=('MIT')
+depends=('ca-certificates' 'krb5' 'libidn' 'libssh2' 'openssl' 'zlib')
+provides=('libcurl.so')
+options=('strip' 'debug')
+source=("http://curl.haxx.se/download/$pkgname-$pkgver.tar.gz"{,.asc}
+curlbuild.h)
+md5sums=('870e16fd88a88b52e26a4f04dfc161db'
+ 'SKIP'
+ '751bd433ede935c8fae727377625a8ae')
+validpgpkeys=('27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2'   # Daniel Stenberg
+  '914C533DF9B2ADA2204F586D78E11C6B279D5C91')  # Daniel Stenberg 
(old key)
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure \
+  --prefix=/usr \
+  --mandir=/usr/share/man \
+  --disable-ldap \
+  --disable-ldaps \
+  --enable-ipv6 \
+  --enable-manual \
+  --enable-versioned-symbols \
+  --enable-threaded-resolver \
+  --with-gssapi \
+  

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

2016-09-14 Thread Dave Reisner
Date: Wednesday, September 14, 2016 @ 11:23:18
  Author: dreisner
Revision: 276420

upgpkg: curl 7.50.3-1

Modified:
  curl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-14 11:16:08 UTC (rev 276419)
+++ PKGBUILD2016-09-14 11:23:18 UTC (rev 276420)
@@ -6,7 +6,7 @@
 # Contributor: Daniel J Griffiths 
 
 pkgname=curl
-pkgver=7.50.2
+pkgver=7.50.3
 pkgrel=1
 pkgdesc="An URL retrieval utility and library"
 arch=('i686' 'x86_64')
@@ -17,7 +17,7 @@
 options=('strip' 'debug')
 source=("http://curl.haxx.se/download/$pkgname-$pkgver.tar.gz"{,.asc}
 curlbuild.h)
-md5sums=('185360d036683812622c63c157d91c03'
+md5sums=('870e16fd88a88b52e26a4f04dfc161db'
  'SKIP'
  '751bd433ede935c8fae727377625a8ae')
 validpgpkeys=('27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2'   # Daniel Stenberg


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

2016-09-14 Thread Jan Steffens
Date: Wednesday, September 14, 2016 @ 11:16:08
  Author: heftig
Revision: 276419

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-09-14 11:15:28 UTC (rev 276418)
+++ extra-i686/PKGBUILD 2016-09-14 11:16:08 UTC (rev 276419)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgname=gitg
-pkgver=3.20.2
-pkgrel=1
-pkgdesc='A GIT repository viewer based on GTK+'
-arch=('i686' 'x86_64')
-url='https://git.gnome.org/browse/gitg/'
-license=('GPL')
-depends=('gtksourceview3' 'git' 'desktop-file-utils' 'libgit2-glib' 'libgee' 
'webkit2gtk' 'libpeas' 'gtkspell3'
- 'python-gobject')
-makedepends=('intltool' 'vala' 'gobject-introspection' 'gnome-common' 'glade')
-groups=('gnome-extra')
-source=(ftp://ftp.gnome.org/pub/GNOME/sources/gitg/${pkgver:0:4}/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('76cb421bbc5c1e57d4f58f9e63c7b77ed229cadc96c7de4296db60c46ee7d71b')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr --enable-glade-catalog
-
-  # Don't overlink
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' libtool
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-}

Copied: gitg/repos/extra-i686/PKGBUILD (from rev 276418, gitg/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-09-14 11:16:08 UTC (rev 276419)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=gitg
+pkgver=3.20.3
+pkgrel=1
+pkgdesc='A GIT repository viewer based on GTK+'
+arch=('i686' 'x86_64')
+url='https://git.gnome.org/browse/gitg/'
+license=('GPL')
+depends=('gtksourceview3' 'git' 'desktop-file-utils' 'libgit2-glib' 'libgee' 
'webkit2gtk' 'libpeas' 'gtkspell3'
+ 'python-gobject')
+makedepends=('intltool' 'vala' 'gobject-introspection' 'gnome-common' 'glade')
+groups=('gnome-extra')
+source=(ftp://ftp.gnome.org/pub/GNOME/sources/gitg/${pkgver:0:4}/${pkgname}-${pkgver}.tar.xz)
+sha256sums=('4b0802360cdf1341b27a73458930768d139143b568b9153e93378f32f7ba6669')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --enable-glade-catalog
+
+  # Don't overlink
+  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-09-14 11:15:28 UTC (rev 276418)
+++ extra-x86_64/PKGBUILD   2016-09-14 11:16:08 UTC (rev 276419)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgname=gitg
-pkgver=3.20.2
-pkgrel=1
-pkgdesc='A GIT repository viewer based on GTK+'
-arch=('i686' 'x86_64')
-url='https://git.gnome.org/browse/gitg/'
-license=('GPL')
-depends=('gtksourceview3' 'git' 'desktop-file-utils' 'libgit2-glib' 'libgee' 
'webkit2gtk' 'libpeas' 'gtkspell3'
- 'python-gobject')
-makedepends=('intltool' 'vala' 'gobject-introspection' 'gnome-common' 'glade')
-groups=('gnome-extra')
-source=(ftp://ftp.gnome.org/pub/GNOME/sources/gitg/${pkgver:0:4}/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('76cb421bbc5c1e57d4f58f9e63c7b77ed229cadc96c7de4296db60c46ee7d71b')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr --enable-glade-catalog
-
-  # Don't overlink
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' libtool
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-}

Copied: gitg/repos/extra-x86_64/PKGBUILD (from rev 276418, gitg/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-09-14 11:16:08 UTC (rev 276419)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=gitg
+pkgver=3.20.3
+pkgrel=1
+pkgdesc='A GIT repository viewer based on GTK+'
+arch=('i686' 'x86_64')
+url='https://git.gnome.org/browse/gitg/'
+license=('GPL')
+depends=('gtksourceview3' 'git' 'desktop-file-utils' 'libgit2-glib' 'libgee' 
'webkit2gtk' 'libpeas' 'gtkspell3'
+ 'python-gobject')
+makedepends=('intltool' 'vala' 'gobject-introspection' 'gnome-common' 'glade')
+groups=('gnome-extra')

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

2016-09-14 Thread Jan Steffens
Date: Wednesday, September 14, 2016 @ 11:15:28
  Author: heftig
Revision: 276418

3.20.3-1

Modified:
  gitg/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-14 10:45:07 UTC (rev 276417)
+++ PKGBUILD2016-09-14 11:15:28 UTC (rev 276418)
@@ -2,7 +2,7 @@
 # Maintainer: Eric Bélanger 
 
 pkgname=gitg
-pkgver=3.20.2
+pkgver=3.20.3
 pkgrel=1
 pkgdesc='A GIT repository viewer based on GTK+'
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 makedepends=('intltool' 'vala' 'gobject-introspection' 'gnome-common' 'glade')
 groups=('gnome-extra')
 
source=(ftp://ftp.gnome.org/pub/GNOME/sources/gitg/${pkgver:0:4}/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('76cb421bbc5c1e57d4f58f9e63c7b77ed229cadc96c7de4296db60c46ee7d71b')
+sha256sums=('4b0802360cdf1341b27a73458930768d139143b568b9153e93378f32f7ba6669')
 
 build() {
   cd ${pkgname}-${pkgver}


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

2016-09-14 Thread Evangelos Foutras
Date: Wednesday, September 14, 2016 @ 10:45:07
  Author: foutrelis
Revision: 276417

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

Added:
  flashplugin/repos/extra-i686/PKGBUILD
(from rev 276416, flashplugin/trunk/PKGBUILD)
  flashplugin/repos/extra-i686/flashplugin.install
(from rev 276416, flashplugin/trunk/flashplugin.install)
  flashplugin/repos/extra-i686/mms.cfg
(from rev 276416, flashplugin/trunk/mms.cfg)
  flashplugin/repos/extra-x86_64/PKGBUILD
(from rev 276416, flashplugin/trunk/PKGBUILD)
  flashplugin/repos/extra-x86_64/flashplugin.install
(from rev 276416, flashplugin/trunk/flashplugin.install)
  flashplugin/repos/extra-x86_64/mms.cfg
(from rev 276416, flashplugin/trunk/mms.cfg)
Deleted:
  flashplugin/repos/extra-i686/PKGBUILD
  flashplugin/repos/extra-i686/flashplugin.install
  flashplugin/repos/extra-i686/mms.cfg
  flashplugin/repos/extra-x86_64/PKGBUILD
  flashplugin/repos/extra-x86_64/flashplugin.install
  flashplugin/repos/extra-x86_64/mms.cfg

--+
 /PKGBUILD|   88 +
 /flashplugin.install |   26 ++
 /mms.cfg |4 +
 extra-i686/PKGBUILD  |   44 --
 extra-i686/flashplugin.install   |   13 -
 extra-i686/mms.cfg   |2 
 extra-x86_64/PKGBUILD|   44 --
 extra-x86_64/flashplugin.install |   13 -
 extra-x86_64/mms.cfg |2 
 9 files changed, 118 insertions(+), 118 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-09-14 10:43:58 UTC (rev 276416)
+++ extra-i686/PKGBUILD 2016-09-14 10:45:07 UTC (rev 276417)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer : Ionut Biru 
-# Contributor: Andrea Scarpino 
-
-pkgname=flashplugin
-_licensefile='PlatformClients_PC_WWEULA_Combined_20100108_1657.pdf'
-pkgver=11.2.202.632
-pkgrel=1
-pkgdesc='Adobe Flash Player'
-url='http://get.adobe.com/flashplayer'
-arch=('i686' 'x86_64')
-depends=('mozilla-common' 'libxt' 'libxpm' 'gtk2' 'nss' 'curl' 
'hicolor-icon-theme')
-optdepends=('libvdpau: GPU acceleration on Nvidia card')
-provides=('flashplayer')
-license=('custom')
-options=(!strip)
-install=flashplugin.install
-backup=(etc/adobe/mms.cfg)
-source=(http://www.adobe.com/products/eulas/pdfs/${_licensefile}
-mms.cfg)
-source_i686=(flashplugin_$pkgver.i386.tar.gz::http://fpdownload.macromedia.com/get/flashplayer/pdc/$pkgver/install_flash_player_11_linux.i386.tar.gz)
-source_x86_64=(flashplugin_$pkgver.x86_64.tar.gz::http://fpdownload.macromedia.com/get/flashplayer/pdc/$pkgver/install_flash_player_11_linux.x86_64.tar.gz)
-md5sums=('94ca2aecb409abfe36494d1a7ec7591d'
- 'f34aae6279b40e0bd2abfb0d9963d7b8')
-md5sums_i686=('7bf30d1b2747b14dcf1ee77ca2ce04db')
-md5sums_x86_64=('ace1a0801f00a25fd90172f63e98e101')
-
-package () {
-install -Dm755 libflashplayer.so 
"$pkgdir/usr/lib/mozilla/plugins/libflashplayer.so"
-if [ "$CARCH" = x86_64 ]; then
-install -Dm755 usr/lib64/kde4/kcm_adobe_flash_player.so 
"$pkgdir/usr/lib/kde4/kcm_adobe_flash_player.so"
-else
-install -Dm755 usr/lib/kde4/kcm_adobe_flash_player.so 
"$pkgdir/usr/lib/kde4/kcm_adobe_flash_player.so"
-fi
-install -Dm755 usr/bin/flash-player-properties 
"$pkgdir/usr/bin/flash-player-properties"
-for i in 16x16 22x22 24x24 32x32 48x48; do
-install -Dm644 
usr/share/icons/hicolor/$i/apps/flash-player-properties.png \
-
"$pkgdir/usr/share/icons/hicolor/$i/apps/flash-player-properties.png"
-done
-install -Dm644 usr/share/applications/flash-player-properties.desktop 
"$pkgdir/usr/share/applications/flash-player-properties.desktop"
-install -Dm644 usr/share/kde4/services/kcm_adobe_flash_player.desktop 
"$pkgdir/usr/share/kde4/services/kcm_adobe_flash_player.desktop"
-install -Dm644 "${_licensefile}" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE.pdf"
-install -Dm644 mms.cfg "$pkgdir/etc/adobe/mms.cfg"
-}

Copied: flashplugin/repos/extra-i686/PKGBUILD (from rev 276416, 
flashplugin/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-09-14 10:45:07 UTC (rev 276417)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer : Ionut Biru 
+# Contributor: Andrea Scarpino 
+
+pkgname=flashplugin
+_licensefile='PlatformClients_PC_WWEULA_Combined_20100108_1657.pdf'
+pkgver=11.2.202.635
+pkgrel=1
+pkgdesc='Adobe Flash Player'
+url='http://get.adobe.com/flashplayer'
+arch=('i686' 'x86_64')
+depends=('mozilla-common' 'libxt' 'libxpm' 'gtk2' 'nss' 'curl' 
'hicolor-icon-theme')
+optdepends=('libvdpau: GPU acceleration on Nvidia card')
+provides=('flashplayer')
+license=('custom')
+options=(!strip)
+install=flashplugin.install

[arch-commits] Commit in lib32-flashplugin/repos/multilib-x86_64 (PKGBUILD PKGBUILD)

2016-09-14 Thread Evangelos Foutras
Date: Wednesday, September 14, 2016 @ 10:44:24
  Author: foutrelis
Revision: 189300

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-flashplugin/repos/multilib-x86_64/PKGBUILD
(from rev 189299, lib32-flashplugin/trunk/PKGBUILD)
Deleted:
  lib32-flashplugin/repos/multilib-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-09-14 10:43:45 UTC (rev 189299)
+++ PKGBUILD2016-09-14 10:44:24 UTC (rev 189300)
@@ -1,22 +0,0 @@
-# $Id$
-# Maintainer: Daniel Wallace 
-
-pkgname=lib32-flashplugin
-_licensefile='PlatformClients_PC_WWEULA_Combined_20100108_1657.pdf'
-pkgver=11.2.202.632
-pkgrel=1
-license=('custom')
-pkgdesc='Adobe Flash Player for 32-bit Mozilla-based browsers'
-url="http://get.adobe.com/flashplayer;
-arch=('x86_64')
-depends=('mozilla-common' 'lib32-libxt' 'lib32-gtk2' 'lib32-nss' 'lib32-curl' 
'lib32-alsa-lib')
-#optdepends=('lib32-libvdpau: video hardware decoding for supporting players')
-options=(!strip)
-source=("flashplugin_$pkgver.i386.tar.gz::http://fpdownload.macromedia.com/get/flashplayer/pdc/$pkgver/install_flash_player_11_linux.i386.tar.gz;)
-md5sums=('7bf30d1b2747b14dcf1ee77ca2ce04db')
-
-package() {
-  install -Dm644 "${srcdir}/libflashplayer.so" 
"${pkgdir}/usr/lib32/mozilla/plugins/libflashplayer.so"
-  install -d "$pkgdir/usr/share/licenses"
-  ln -s "${pkgname#*-}" "$pkgdir/usr/share/licenses/$pkgname"
-}

Copied: lib32-flashplugin/repos/multilib-x86_64/PKGBUILD (from rev 189299, 
lib32-flashplugin/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-09-14 10:44:24 UTC (rev 189300)
@@ -0,0 +1,22 @@
+# $Id$
+# Maintainer: Daniel Wallace 
+
+pkgname=lib32-flashplugin
+_licensefile='PlatformClients_PC_WWEULA_Combined_20100108_1657.pdf'
+pkgver=11.2.202.635
+pkgrel=1
+license=('custom')
+pkgdesc='Adobe Flash Player for 32-bit Mozilla-based browsers'
+url="http://get.adobe.com/flashplayer;
+arch=('x86_64')
+depends=('mozilla-common' 'lib32-libxt' 'lib32-gtk2' 'lib32-nss' 'lib32-curl' 
'lib32-alsa-lib')
+#optdepends=('lib32-libvdpau: video hardware decoding for supporting players')
+options=(!strip)
+source=("flashplugin_$pkgver.i386.tar.gz::http://fpdownload.macromedia.com/get/flashplayer/pdc/$pkgver/install_flash_player_11_linux.i386.tar.gz;)
+md5sums=('757d0835a038a1358d2e33ce7fb6c9eb')
+
+package() {
+  install -Dm644 "${srcdir}/libflashplayer.so" 
"${pkgdir}/usr/lib32/mozilla/plugins/libflashplayer.so"
+  install -d "$pkgdir/usr/share/licenses"
+  ln -s "${pkgname#*-}" "$pkgdir/usr/share/licenses/$pkgname"
+}


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

2016-09-14 Thread Evangelos Foutras
Date: Wednesday, September 14, 2016 @ 10:43:58
  Author: foutrelis
Revision: 276416

upgpkg: flashplugin 11.2.202.635-1

New upstream release.

Modified:
  flashplugin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-14 10:05:19 UTC (rev 276415)
+++ PKGBUILD2016-09-14 10:43:58 UTC (rev 276416)
@@ -4,7 +4,7 @@
 
 pkgname=flashplugin
 _licensefile='PlatformClients_PC_WWEULA_Combined_20100108_1657.pdf'
-pkgver=11.2.202.632
+pkgver=11.2.202.635
 pkgrel=1
 pkgdesc='Adobe Flash Player'
 url='http://get.adobe.com/flashplayer'
@@ -22,8 +22,8 @@
 
source_x86_64=(flashplugin_$pkgver.x86_64.tar.gz::http://fpdownload.macromedia.com/get/flashplayer/pdc/$pkgver/install_flash_player_11_linux.x86_64.tar.gz)
 md5sums=('94ca2aecb409abfe36494d1a7ec7591d'
  'f34aae6279b40e0bd2abfb0d9963d7b8')
-md5sums_i686=('7bf30d1b2747b14dcf1ee77ca2ce04db')
-md5sums_x86_64=('ace1a0801f00a25fd90172f63e98e101')
+md5sums_i686=('757d0835a038a1358d2e33ce7fb6c9eb')
+md5sums_x86_64=('5bb834820d1563b2df2ed52fd9986b24')
 
 package () {
 install -Dm755 libflashplayer.so 
"$pkgdir/usr/lib/mozilla/plugins/libflashplayer.so"


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

2016-09-14 Thread Evangelos Foutras
Date: Wednesday, September 14, 2016 @ 10:43:45
  Author: foutrelis
Revision: 189299

upgpkg: lib32-flashplugin 11.2.202.635-1

New upstream release.

Modified:
  lib32-flashplugin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-14 10:39:13 UTC (rev 189298)
+++ PKGBUILD2016-09-14 10:43:45 UTC (rev 189299)
@@ -3,7 +3,7 @@
 
 pkgname=lib32-flashplugin
 _licensefile='PlatformClients_PC_WWEULA_Combined_20100108_1657.pdf'
-pkgver=11.2.202.632
+pkgver=11.2.202.635
 pkgrel=1
 license=('custom')
 pkgdesc='Adobe Flash Player for 32-bit Mozilla-based browsers'
@@ -13,7 +13,7 @@
 #optdepends=('lib32-libvdpau: video hardware decoding for supporting players')
 options=(!strip)
 
source=("flashplugin_$pkgver.i386.tar.gz::http://fpdownload.macromedia.com/get/flashplayer/pdc/$pkgver/install_flash_player_11_linux.i386.tar.gz;)
-md5sums=('7bf30d1b2747b14dcf1ee77ca2ce04db')
+md5sums=('757d0835a038a1358d2e33ce7fb6c9eb')
 
 package() {
   install -Dm644 "${srcdir}/libflashplayer.so" 
"${pkgdir}/usr/lib32/mozilla/plugins/libflashplayer.so"


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

2016-09-14 Thread Nicola Squartini
Date: Wednesday, September 14, 2016 @ 10:31:58
  Author: tensor5
Revision: 189297

upgpkg: electron 1.3.6-1

Modified:
  electron/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-14 09:12:17 UTC (rev 189296)
+++ PKGBUILD2016-09-14 10:31:58 UTC (rev 189297)
@@ -3,8 +3,8 @@
 
 _chromiumver=52.0.2743.82
 pkgname=electron
-pkgver=1.3.5
-pkgrel=4
+pkgver=1.3.6
+pkgrel=1
 pkgdesc='Build cross platform desktop apps with web technologies'
 arch=('i686' 'x86_64')
 url='http://electron.atom.io/'


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

2016-09-14 Thread Felix Yan
Date: Wednesday, September 14, 2016 @ 10:05:19
  Author: felixonmars
Revision: 276415

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

Added:
  kross/repos/testing-i686/
  kross/repos/testing-i686/PKGBUILD
(from rev 276414, kross/trunk/PKGBUILD)
  kross/repos/testing-x86_64/
  kross/repos/testing-x86_64/PKGBUILD
(from rev 276414, kross/trunk/PKGBUILD)

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

Copied: kross/repos/testing-i686/PKGBUILD (from rev 276414, 
kross/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-09-14 10:05:19 UTC (rev 276415)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kross
+pkgver=5.26.0
+pkgrel=1
+pkgdesc='Multi-language application scripting'
+arch=('i686' 'x86_64')
+url='https://community.kde.org/Frameworks'
+license=('LGPL')
+depends=('kparts')
+makedepends=('extra-cmake-modules' 'kdoctools' 'qt5-tools' 'python')
+groups=('kf5-aids')
+source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/portingAids/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('a90ac03e225b9cb20af537d694eda2c1')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kross/repos/testing-x86_64/PKGBUILD (from rev 276414, 
kross/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-09-14 10:05:19 UTC (rev 276415)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kross
+pkgver=5.26.0
+pkgrel=1
+pkgdesc='Multi-language application scripting'
+arch=('i686' 'x86_64')
+url='https://community.kde.org/Frameworks'
+license=('LGPL')
+depends=('kparts')
+makedepends=('extra-cmake-modules' 'kdoctools' 'qt5-tools' 'python')
+groups=('kf5-aids')
+source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/portingAids/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('a90ac03e225b9cb20af537d694eda2c1')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}


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

2016-09-14 Thread Felix Yan
Date: Wednesday, September 14, 2016 @ 10:04:50
  Author: felixonmars
Revision: 276414

upgpkg: kross 5.26.0-1

Upstream release

Modified:
  kross/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-14 10:04:43 UTC (rev 276413)
+++ PKGBUILD2016-09-14 10:04:50 UTC (rev 276414)
@@ -3,7 +3,7 @@
 # Contributor: Andrea Scarpino 
 
 pkgname=kross
-pkgver=5.25.0
+pkgver=5.26.0
 pkgrel=1
 pkgdesc='Multi-language application scripting'
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 makedepends=('extra-cmake-modules' 'kdoctools' 'qt5-tools' 'python')
 groups=('kf5-aids')
 
source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/portingAids/${pkgname}-${pkgver}.tar.xz;)
-md5sums=('bb96fd634617bcac31974f9b63f41252')
+md5sums=('a90ac03e225b9cb20af537d694eda2c1')
 
 prepare() {
   mkdir -p build


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

2016-09-14 Thread Felix Yan
Date: Wednesday, September 14, 2016 @ 10:04:43
  Author: felixonmars
Revision: 276413

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

Added:
  kmediaplayer/repos/testing-i686/
  kmediaplayer/repos/testing-i686/PKGBUILD
(from rev 276412, kmediaplayer/trunk/PKGBUILD)
  kmediaplayer/repos/testing-x86_64/
  kmediaplayer/repos/testing-x86_64/PKGBUILD
(from rev 276412, kmediaplayer/trunk/PKGBUILD)

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

Copied: kmediaplayer/repos/testing-i686/PKGBUILD (from rev 276412, 
kmediaplayer/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-09-14 10:04:43 UTC (rev 276413)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kmediaplayer
+pkgver=5.26.0
+pkgrel=1
+pkgdesc='Plugin interface for media player features'
+arch=('i686' 'x86_64')
+url='https://community.kde.org/Frameworks'
+license=('LGPL')
+depends=('kparts')
+makedepends=('extra-cmake-modules' 'python')
+groups=('kf5-aids')
+source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/portingAids/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('e5cbccb1a1b9e68e8cff60b2f8c5bc31')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kmediaplayer/repos/testing-x86_64/PKGBUILD (from rev 276412, 
kmediaplayer/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-09-14 10:04:43 UTC (rev 276413)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kmediaplayer
+pkgver=5.26.0
+pkgrel=1
+pkgdesc='Plugin interface for media player features'
+arch=('i686' 'x86_64')
+url='https://community.kde.org/Frameworks'
+license=('LGPL')
+depends=('kparts')
+makedepends=('extra-cmake-modules' 'python')
+groups=('kf5-aids')
+source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/portingAids/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('e5cbccb1a1b9e68e8cff60b2f8c5bc31')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}


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

2016-09-14 Thread Felix Yan
Date: Wednesday, September 14, 2016 @ 10:04:09
  Author: felixonmars
Revision: 276412

upgpkg: kmediaplayer 5.26.0-1

Upstream release

Modified:
  kmediaplayer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-14 10:03:59 UTC (rev 276411)
+++ PKGBUILD2016-09-14 10:04:09 UTC (rev 276412)
@@ -3,7 +3,7 @@
 # Contributor: Andrea Scarpino 
 
 pkgname=kmediaplayer
-pkgver=5.25.0
+pkgver=5.26.0
 pkgrel=1
 pkgdesc='Plugin interface for media player features'
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 makedepends=('extra-cmake-modules' 'python')
 groups=('kf5-aids')
 
source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/portingAids/${pkgname}-${pkgver}.tar.xz;)
-md5sums=('a844acb7da10a7b23fa50dade3b523c6')
+md5sums=('e5cbccb1a1b9e68e8cff60b2f8c5bc31')
 
 prepare() {
   mkdir -p build


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

2016-09-14 Thread Felix Yan
Date: Wednesday, September 14, 2016 @ 10:03:32
  Author: felixonmars
Revision: 276410

upgpkg: kjsembed 5.26.0-1

Upstream release

Modified:
  kjsembed/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-14 10:03:16 UTC (rev 276409)
+++ PKGBUILD2016-09-14 10:03:32 UTC (rev 276410)
@@ -3,7 +3,7 @@
 # Contributor: Andrea Scarpino 
 
 pkgname=kjsembed
-pkgver=5.25.0
+pkgver=5.26.0
 pkgrel=1
 pkgdesc='Embedded JS'
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 makedepends=('extra-cmake-modules' 'qt5-tools' 'kdoctools' 'python')
 groups=('kf5-aids')
 
source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/portingAids/${pkgname}-${pkgver}.tar.xz;)
-md5sums=('f1d0c9a46be19e69a493f75fc8af54e7')
+md5sums=('e9ba464861bf4f1c0b92b68326b2633a')
 
 prepare() {
   mkdir -p build


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

2016-09-14 Thread Felix Yan
Date: Wednesday, September 14, 2016 @ 10:03:59
  Author: felixonmars
Revision: 276411

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

Added:
  kjsembed/repos/testing-i686/
  kjsembed/repos/testing-i686/PKGBUILD
(from rev 276410, kjsembed/trunk/PKGBUILD)
  kjsembed/repos/testing-x86_64/
  kjsembed/repos/testing-x86_64/PKGBUILD
(from rev 276410, kjsembed/trunk/PKGBUILD)

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

Copied: kjsembed/repos/testing-i686/PKGBUILD (from rev 276410, 
kjsembed/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-09-14 10:03:59 UTC (rev 276411)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kjsembed
+pkgver=5.26.0
+pkgrel=1
+pkgdesc='Embedded JS'
+arch=('i686' 'x86_64')
+url='https://community.kde.org/Frameworks'
+license=('LGPL')
+depends=('qt5-svg' 'ki18n' 'kjs')
+makedepends=('extra-cmake-modules' 'qt5-tools' 'kdoctools' 'python')
+groups=('kf5-aids')
+source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/portingAids/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('e9ba464861bf4f1c0b92b68326b2633a')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kjsembed/repos/testing-x86_64/PKGBUILD (from rev 276410, 
kjsembed/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-09-14 10:03:59 UTC (rev 276411)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kjsembed
+pkgver=5.26.0
+pkgrel=1
+pkgdesc='Embedded JS'
+arch=('i686' 'x86_64')
+url='https://community.kde.org/Frameworks'
+license=('LGPL')
+depends=('qt5-svg' 'ki18n' 'kjs')
+makedepends=('extra-cmake-modules' 'qt5-tools' 'kdoctools' 'python')
+groups=('kf5-aids')
+source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/portingAids/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('e9ba464861bf4f1c0b92b68326b2633a')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}


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

2016-09-14 Thread Felix Yan
Date: Wednesday, September 14, 2016 @ 10:02:48
  Author: felixonmars
Revision: 276408

upgpkg: khtml 5.26.0-1

Upstream release

Modified:
  khtml/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-14 10:02:29 UTC (rev 276407)
+++ PKGBUILD2016-09-14 10:02:48 UTC (rev 276408)
@@ -3,7 +3,7 @@
 # Contributor: Andrea Scarpino 
 
 pkgname=khtml
-pkgver=5.25.0
+pkgver=5.26.0
 pkgrel=1
 pkgdesc='KHTML APIs'
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 makedepends=('extra-cmake-modules' 'python')
 groups=('kf5-aids')
 
source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/portingAids/${pkgname}-${pkgver}.tar.xz;)
-md5sums=('e9b1763b2649d7e21e6cda3e0c5773bf')
+md5sums=('15f8e2d5d80379efb9d561e1822aab83')
 
 prepare() {
   mkdir -p build


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

2016-09-14 Thread Felix Yan
Date: Wednesday, September 14, 2016 @ 10:03:16
  Author: felixonmars
Revision: 276409

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

Added:
  khtml/repos/testing-i686/
  khtml/repos/testing-i686/PKGBUILD
(from rev 276408, khtml/trunk/PKGBUILD)
  khtml/repos/testing-x86_64/
  khtml/repos/testing-x86_64/PKGBUILD
(from rev 276408, khtml/trunk/PKGBUILD)

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

Copied: khtml/repos/testing-i686/PKGBUILD (from rev 276408, 
khtml/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-09-14 10:03:16 UTC (rev 276409)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=khtml
+pkgver=5.26.0
+pkgrel=1
+pkgdesc='KHTML APIs'
+arch=('i686' 'x86_64')
+url='https://community.kde.org/Frameworks'
+license=('LGPL')
+depends=('giflib' 'kparts' 'kjs')
+makedepends=('extra-cmake-modules' 'python')
+groups=('kf5-aids')
+source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/portingAids/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('15f8e2d5d80379efb9d561e1822aab83')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: khtml/repos/testing-x86_64/PKGBUILD (from rev 276408, 
khtml/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-09-14 10:03:16 UTC (rev 276409)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=khtml
+pkgver=5.26.0
+pkgrel=1
+pkgdesc='KHTML APIs'
+arch=('i686' 'x86_64')
+url='https://community.kde.org/Frameworks'
+license=('LGPL')
+depends=('giflib' 'kparts' 'kjs')
+makedepends=('extra-cmake-modules' 'python')
+groups=('kf5-aids')
+source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/portingAids/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('15f8e2d5d80379efb9d561e1822aab83')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}


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

2016-09-14 Thread Felix Yan
Date: Wednesday, September 14, 2016 @ 10:02:29
  Author: felixonmars
Revision: 276407

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

Added:
  kdelibs4support/repos/testing-i686/
  kdelibs4support/repos/testing-i686/PKGBUILD
(from rev 276406, kdelibs4support/trunk/PKGBUILD)
  kdelibs4support/repos/testing-x86_64/
  kdelibs4support/repos/testing-x86_64/PKGBUILD
(from rev 276406, kdelibs4support/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   43 +++
 testing-x86_64/PKGBUILD |   43 +++
 2 files changed, 86 insertions(+)

Copied: kdelibs4support/repos/testing-i686/PKGBUILD (from rev 276406, 
kdelibs4support/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-09-14 10:02:29 UTC (rev 276407)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdelibs4support
+pkgver=5.26.0
+pkgrel=1
+pkgdesc='Porting aid from KDELibs4'
+arch=('i686' 'x86_64')
+url='https://community.kde.org/Frameworks'
+license=('LGPL')
+depends=('kunitconversion' 'kitemmodels' 'kemoticons' 'kded' 'kparts')
+makedepends=('extra-cmake-modules' 'kdoctools' 'qt5-tools' 'networkmanager' 
'perl-uri' 'python' 'kdesignerplugin')
+groups=('kf5-aids')
+replaces=('kde4support')
+conflicts=('kde4support')
+source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/portingAids/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('88d50371f1580070d4cc9dd3f1bdcdf9')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_LIBEXECDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+
+# cert bundle seems to be hardcoded
+# link it to the one from ca-certificates
+  rm -f "$pkgdir"/usr/share/kf5/kssl/ca-bundle.crt
+  ln -sf /etc/ssl/certs/ca-certificates.crt 
"${pkgdir}"/usr/share/kf5/kssl/ca-bundle.crt
+}

Copied: kdelibs4support/repos/testing-x86_64/PKGBUILD (from rev 276406, 
kdelibs4support/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-09-14 10:02:29 UTC (rev 276407)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdelibs4support
+pkgver=5.26.0
+pkgrel=1
+pkgdesc='Porting aid from KDELibs4'
+arch=('i686' 'x86_64')
+url='https://community.kde.org/Frameworks'
+license=('LGPL')
+depends=('kunitconversion' 'kitemmodels' 'kemoticons' 'kded' 'kparts')
+makedepends=('extra-cmake-modules' 'kdoctools' 'qt5-tools' 'networkmanager' 
'perl-uri' 'python' 'kdesignerplugin')
+groups=('kf5-aids')
+replaces=('kde4support')
+conflicts=('kde4support')
+source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/portingAids/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('88d50371f1580070d4cc9dd3f1bdcdf9')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_LIBEXECDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+
+# cert bundle seems to be hardcoded
+# link it to the one from ca-certificates
+  rm -f "$pkgdir"/usr/share/kf5/kssl/ca-bundle.crt
+  ln -sf /etc/ssl/certs/ca-certificates.crt 
"${pkgdir}"/usr/share/kf5/kssl/ca-bundle.crt
+}


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

2016-09-14 Thread Felix Yan
Date: Wednesday, September 14, 2016 @ 10:01:59
  Author: felixonmars
Revision: 276406

upgpkg: kdelibs4support 5.26.0-1

Upstream release

Modified:
  kdelibs4support/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-14 09:54:54 UTC (rev 276405)
+++ PKGBUILD2016-09-14 10:01:59 UTC (rev 276406)
@@ -3,7 +3,7 @@
 # Contributor: Andrea Scarpino 
 
 pkgname=kdelibs4support
-pkgver=5.25.0
+pkgver=5.26.0
 pkgrel=1
 pkgdesc='Porting aid from KDELibs4'
 arch=('i686' 'x86_64')
@@ -15,7 +15,7 @@
 replaces=('kde4support')
 conflicts=('kde4support')
 
source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/portingAids/${pkgname}-${pkgver}.tar.xz;)
-md5sums=('37284190af0a84cdd2a12636b5b71b2e')
+md5sums=('88d50371f1580070d4cc9dd3f1bdcdf9')
 
 prepare() {
   mkdir -p build


[arch-commits] Commit in oxygen-icons/repos (testing-any testing-any/PKGBUILD)

2016-09-14 Thread Felix Yan
Date: Wednesday, September 14, 2016 @ 09:54:54
  Author: felixonmars
Revision: 276405

archrelease: copy trunk to testing-any

Added:
  oxygen-icons/repos/testing-any/
  oxygen-icons/repos/testing-any/PKGBUILD
(from rev 276404, oxygen-icons/trunk/PKGBUILD)

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

Copied: oxygen-icons/repos/testing-any/PKGBUILD (from rev 276404, 
oxygen-icons/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2016-09-14 09:54:54 UTC (rev 276405)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgbase=oxygen-icons
+pkgname=('oxygen-icons'
+ 'oxygen-icons-svg')
+pkgver=5.26.0
+epoch=1
+pkgrel=1
+pkgdesc="The Oxygen Icon Theme"
+arch=('any')
+url='https://community.kde.org/Frameworks'
+license=('LGPL')
+makedepends=('extra-cmake-modules' 'qt5-base')
+source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}5-${pkgver}.tar.xz;)
+sha1sums=('7ab2d0b4584ca3a25211042627e9800d1377f680')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgbase}5-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package_oxygen-icons() {
+  groups=('kf5')
+
+  cd build
+  make DESTDIR="$pkgdir" install
+}
+
+package_oxygen-icons-svg() {
+  pkgdesc="The Oxygen Icon Theme (Scalable Vector Graphics)"
+
+  cd ${pkgbase}5-${pkgver}
+  find scalable -type f ! -name '*.sh' -exec \
+install -D -m644 "{}" "${pkgdir}/usr/share/icons/oxygen/{}" \;
+}


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

2016-09-14 Thread Felix Yan
Date: Wednesday, September 14, 2016 @ 09:54:21
  Author: felixonmars
Revision: 276403

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

Added:
  networkmanager-qt/repos/testing-i686/
  networkmanager-qt/repos/testing-i686/PKGBUILD
(from rev 276402, networkmanager-qt/trunk/PKGBUILD)
  networkmanager-qt/repos/testing-x86_64/
  networkmanager-qt/repos/testing-x86_64/PKGBUILD
(from rev 276402, networkmanager-qt/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   37 +
 testing-x86_64/PKGBUILD |   37 +
 2 files changed, 74 insertions(+)

Copied: networkmanager-qt/repos/testing-i686/PKGBUILD (from rev 276402, 
networkmanager-qt/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-09-14 09:54:21 UTC (rev 276403)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=networkmanager-qt
+pkgver=5.26.0
+pkgrel=1
+pkgdesc='Qt wrapper for NetworkManager API'
+arch=('i686' 'x86_64')
+url='https://community.kde.org/Frameworks'
+license=('LGPL')
+depends=('networkmanager' 'qt5-base')
+makedepends=('extra-cmake-modules')
+groups=('kf5')
+replaces=('libnm-qt5')
+conflicts=('libnm-qt5')
+source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('44dbaa13999f909054cba031a5b37323')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: networkmanager-qt/repos/testing-x86_64/PKGBUILD (from rev 276402, 
networkmanager-qt/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-09-14 09:54:21 UTC (rev 276403)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=networkmanager-qt
+pkgver=5.26.0
+pkgrel=1
+pkgdesc='Qt wrapper for NetworkManager API'
+arch=('i686' 'x86_64')
+url='https://community.kde.org/Frameworks'
+license=('LGPL')
+depends=('networkmanager' 'qt5-base')
+makedepends=('extra-cmake-modules')
+groups=('kf5')
+replaces=('libnm-qt5')
+conflicts=('libnm-qt5')
+source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('44dbaa13999f909054cba031a5b37323')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}


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

2016-09-14 Thread Felix Yan
Date: Wednesday, September 14, 2016 @ 09:54:29
  Author: felixonmars
Revision: 276404

upgpkg: oxygen-icons 1:5.26.0-1

Upstream release

Modified:
  oxygen-icons/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-14 09:54:21 UTC (rev 276403)
+++ PKGBUILD2016-09-14 09:54:29 UTC (rev 276404)
@@ -6,7 +6,7 @@
 pkgbase=oxygen-icons
 pkgname=('oxygen-icons'
  'oxygen-icons-svg')
-pkgver=5.25.0
+pkgver=5.26.0
 epoch=1
 pkgrel=1
 pkgdesc="The Oxygen Icon Theme"
@@ -15,7 +15,7 @@
 license=('LGPL')
 makedepends=('extra-cmake-modules' 'qt5-base')
 
source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}5-${pkgver}.tar.xz;)
-sha1sums=('13631f7644c3e52e9d961960ee4a229bc5469c04')
+sha1sums=('7ab2d0b4584ca3a25211042627e9800d1377f680')
 
 prepare() {
   mkdir -p build


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

2016-09-14 Thread Felix Yan
Date: Wednesday, September 14, 2016 @ 09:53:14
  Author: felixonmars
Revision: 276399

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

Added:
  kxmlrpcclient/repos/testing-i686/
  kxmlrpcclient/repos/testing-i686/PKGBUILD
(from rev 276398, kxmlrpcclient/trunk/PKGBUILD)
  kxmlrpcclient/repos/testing-x86_64/
  kxmlrpcclient/repos/testing-x86_64/PKGBUILD
(from rev 276398, kxmlrpcclient/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   36 
 testing-x86_64/PKGBUILD |   36 
 2 files changed, 72 insertions(+)

Copied: kxmlrpcclient/repos/testing-i686/PKGBUILD (from rev 276398, 
kxmlrpcclient/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-09-14 09:53:14 UTC (rev 276399)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+
+pkgname=kxmlrpcclient
+pkgver=5.26.0
+pkgrel=1
+pkgdesc="XML-RPC client library for KDE"
+arch=('i686' 'x86_64')
+url="https://projects.kde.org/projects/kde/pim/kxmlrpcclient;
+license=('LGPL')
+depends=('kio')
+makedepends=('extra-cmake-modules' 'python')
+conflicts=('plasma-workspace<5.2.95')
+groups=('kf5')
+source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('73e07356ad5a3c9a0aedb1bed8d33d06')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Copied: kxmlrpcclient/repos/testing-x86_64/PKGBUILD (from rev 276398, 
kxmlrpcclient/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-09-14 09:53:14 UTC (rev 276399)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+
+pkgname=kxmlrpcclient
+pkgver=5.26.0
+pkgrel=1
+pkgdesc="XML-RPC client library for KDE"
+arch=('i686' 'x86_64')
+url="https://projects.kde.org/projects/kde/pim/kxmlrpcclient;
+license=('LGPL')
+depends=('kio')
+makedepends=('extra-cmake-modules' 'python')
+conflicts=('plasma-workspace<5.2.95')
+groups=('kf5')
+source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('73e07356ad5a3c9a0aedb1bed8d33d06')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


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

2016-09-14 Thread Felix Yan
Date: Wednesday, September 14, 2016 @ 09:53:21
  Author: felixonmars
Revision: 276400

upgpkg: modemmanager-qt 5.26.0-1

Upstream release

Modified:
  modemmanager-qt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-14 09:53:14 UTC (rev 276399)
+++ PKGBUILD2016-09-14 09:53:21 UTC (rev 276400)
@@ -3,7 +3,7 @@
 # Mainrainer: Antonio Rojas 
 
 pkgname=modemmanager-qt
-pkgver=5.25.0
+pkgver=5.26.0
 pkgrel=1
 pkgdesc='Qt wrapper for ModemManager DBus API'
 arch=(i686 x86_64)
@@ -14,7 +14,7 @@
 groups=(kf5)
 conflicts=(libmm-qt5)
 
source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
-md5sums=('df3b50fe7df5b7c409d80b83beb0337f')
+md5sums=('df873628817140e16a7c5f943f8a42a6')
 
 prepare() {
   mkdir -p build


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

2016-09-14 Thread Felix Yan
Date: Wednesday, September 14, 2016 @ 09:53:54
  Author: felixonmars
Revision: 276402

upgpkg: networkmanager-qt 5.26.0-1

Upstream release

Modified:
  networkmanager-qt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-14 09:53:46 UTC (rev 276401)
+++ PKGBUILD2016-09-14 09:53:54 UTC (rev 276402)
@@ -3,7 +3,7 @@
 # Contributor: Andrea Scarpino 
 
 pkgname=networkmanager-qt
-pkgver=5.25.0
+pkgver=5.26.0
 pkgrel=1
 pkgdesc='Qt wrapper for NetworkManager API'
 arch=('i686' 'x86_64')
@@ -15,7 +15,7 @@
 replaces=('libnm-qt5')
 conflicts=('libnm-qt5')
 
source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
-md5sums=('45b8586afc97200ea687996fc5ce2327')
+md5sums=('44dbaa13999f909054cba031a5b37323')
 
 prepare() {
   mkdir -p build


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

2016-09-14 Thread Felix Yan
Date: Wednesday, September 14, 2016 @ 09:53:46
  Author: felixonmars
Revision: 276401

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

Added:
  modemmanager-qt/repos/testing-i686/
  modemmanager-qt/repos/testing-i686/PKGBUILD
(from rev 276400, modemmanager-qt/trunk/PKGBUILD)
  modemmanager-qt/repos/testing-x86_64/
  modemmanager-qt/repos/testing-x86_64/PKGBUILD
(from rev 276400, modemmanager-qt/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   36 
 testing-x86_64/PKGBUILD |   36 
 2 files changed, 72 insertions(+)

Copied: modemmanager-qt/repos/testing-i686/PKGBUILD (from rev 276400, 
modemmanager-qt/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-09-14 09:53:46 UTC (rev 276401)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Mainrainer: Antonio Rojas 
+
+pkgname=modemmanager-qt
+pkgver=5.26.0
+pkgrel=1
+pkgdesc='Qt wrapper for ModemManager DBus API'
+arch=(i686 x86_64)
+url='https://community.kde.org/Frameworks'
+license=(LGPL)
+depends=(modemmanager qt5-base)
+makedepends=(extra-cmake-modules)
+groups=(kf5)
+conflicts=(libmm-qt5)
+source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('df873628817140e16a7c5f943f8a42a6')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Copied: modemmanager-qt/repos/testing-x86_64/PKGBUILD (from rev 276400, 
modemmanager-qt/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-09-14 09:53:46 UTC (rev 276401)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Mainrainer: Antonio Rojas 
+
+pkgname=modemmanager-qt
+pkgver=5.26.0
+pkgrel=1
+pkgdesc='Qt wrapper for ModemManager DBus API'
+arch=(i686 x86_64)
+url='https://community.kde.org/Frameworks'
+license=(LGPL)
+depends=(modemmanager qt5-base)
+makedepends=(extra-cmake-modules)
+groups=(kf5)
+conflicts=(libmm-qt5)
+source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('df873628817140e16a7c5f943f8a42a6')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


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

2016-09-14 Thread Felix Yan
Date: Wednesday, September 14, 2016 @ 09:52:47
  Author: felixonmars
Revision: 276398

upgpkg: kxmlrpcclient 5.26.0-1

Upstream release

Modified:
  kxmlrpcclient/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-14 09:52:38 UTC (rev 276397)
+++ PKGBUILD2016-09-14 09:52:47 UTC (rev 276398)
@@ -3,7 +3,7 @@
 # Maintainer: Antonio Rojas 
 
 pkgname=kxmlrpcclient
-pkgver=5.25.0
+pkgver=5.26.0
 pkgrel=1
 pkgdesc="XML-RPC client library for KDE"
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 conflicts=('plasma-workspace<5.2.95')
 groups=('kf5')
 
source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
-md5sums=('c4295e2ebab459374b5570d2164a8279')
+md5sums=('73e07356ad5a3c9a0aedb1bed8d33d06')
 
 prepare() {
   mkdir -p build


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

2016-09-14 Thread Felix Yan
Date: Wednesday, September 14, 2016 @ 09:52:38
  Author: felixonmars
Revision: 276397

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

Added:
  kwayland/repos/testing-i686/
  kwayland/repos/testing-i686/PKGBUILD
(from rev 276396, kwayland/trunk/PKGBUILD)
  kwayland/repos/testing-x86_64/
  kwayland/repos/testing-x86_64/PKGBUILD
(from rev 276396, kwayland/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   37 +
 testing-x86_64/PKGBUILD |   37 +
 2 files changed, 74 insertions(+)

Copied: kwayland/repos/testing-i686/PKGBUILD (from rev 276396, 
kwayland/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-09-14 09:52:38 UTC (rev 276397)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=kwayland
+pkgver=5.26.0
+pkgrel=1
+pkgdesc='Qt-style Client and Server library wrapper for the Wayland libraries'
+arch=('i686' 'x86_64')
+url='http://www.kde.org'
+license=('LGPL')
+depends=('qt5-base' 'wayland') # namcap note: wayland is needed for 
nvidia-libgl users
+makedepends=('extra-cmake-modules')
+groups=('kf5')
+source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('07635da514cfc3b4360b947717090725')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_LIBEXECDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Copied: kwayland/repos/testing-x86_64/PKGBUILD (from rev 276396, 
kwayland/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-09-14 09:52:38 UTC (rev 276397)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=kwayland
+pkgver=5.26.0
+pkgrel=1
+pkgdesc='Qt-style Client and Server library wrapper for the Wayland libraries'
+arch=('i686' 'x86_64')
+url='http://www.kde.org'
+license=('LGPL')
+depends=('qt5-base' 'wayland') # namcap note: wayland is needed for 
nvidia-libgl users
+makedepends=('extra-cmake-modules')
+groups=('kf5')
+source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('07635da514cfc3b4360b947717090725')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_LIBEXECDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


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

2016-09-14 Thread Felix Yan
Date: Wednesday, September 14, 2016 @ 09:52:11
  Author: felixonmars
Revision: 276396

upgpkg: kwayland 5.26.0-1

Upstream release

Modified:
  kwayland/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-14 09:51:44 UTC (rev 276395)
+++ PKGBUILD2016-09-14 09:52:11 UTC (rev 276396)
@@ -4,7 +4,7 @@
 # Contributor: Andrea Scarpino 
 
 pkgname=kwayland
-pkgver=5.25.0
+pkgver=5.26.0
 pkgrel=1
 pkgdesc='Qt-style Client and Server library wrapper for the Wayland libraries'
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 makedepends=('extra-cmake-modules')
 groups=('kf5')
 
source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
-md5sums=('d70abca43cbf6e6a6eba9d79830bf1a1')
+md5sums=('07635da514cfc3b4360b947717090725')
 
 prepare() {
   mkdir -p build


[arch-commits] Commit in ktexteditor/trunk (PKGBUILD pkgbuild-syntax-highlight.patch)

2016-09-14 Thread Felix Yan
Date: Wednesday, September 14, 2016 @ 09:51:18
  Author: felixonmars
Revision: 276394

upgpkg: ktexteditor 5.26.0-1

Upstream release

Modified:
  ktexteditor/trunk/PKGBUILD
  ktexteditor/trunk/pkgbuild-syntax-highlight.patch

-+
 PKGBUILD|6 +++---
 pkgbuild-syntax-highlight.patch |4 ++--
 2 files changed, 5 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-09-14 09:51:09 UTC (rev 276393)
+++ PKGBUILD2016-09-14 09:51:18 UTC (rev 276394)
@@ -3,7 +3,7 @@
 # Contributor: Andrea Scarpino 
 
 pkgname=ktexteditor
-pkgver=5.25.0
+pkgver=5.26.0
 pkgrel=1
 pkgdesc='Advanced embeddable text editor'
 arch=('i686' 'x86_64')
@@ -14,8 +14,8 @@
 groups=('kf5')
 
source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;
 'pkgbuild-syntax-highlight.patch')
-md5sums=('c34217c409480ac45f48693c72e3ed8a'
- '3a03efe92f1403991c51f2859ee092f6')
+md5sums=('3c44e3cdd5aeb599ebdcdf6d97c50489'
+ '489275f1330fe43e4e24e9c5b3c842e1')
 
 prepare() {
   mkdir -p build

Modified: pkgbuild-syntax-highlight.patch
===
--- pkgbuild-syntax-highlight.patch 2016-09-14 09:51:09 UTC (rev 276393)
+++ pkgbuild-syntax-highlight.patch 2016-09-14 09:51:18 UTC (rev 276394)
@@ -4,8 +4,8 @@
  
   
  ]>
--
-+
+-
++
  
  

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

2016-09-14 Thread Felix Yan
Date: Wednesday, September 14, 2016 @ 09:51:44
  Author: felixonmars
Revision: 276395

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

Added:
  ktexteditor/repos/testing-i686/
  ktexteditor/repos/testing-i686/PKGBUILD
(from rev 276394, ktexteditor/trunk/PKGBUILD)
  ktexteditor/repos/testing-i686/pkgbuild-syntax-highlight.patch
(from rev 276394, ktexteditor/trunk/pkgbuild-syntax-highlight.patch)
  ktexteditor/repos/testing-x86_64/
  ktexteditor/repos/testing-x86_64/PKGBUILD
(from rev 276394, ktexteditor/trunk/PKGBUILD)
  ktexteditor/repos/testing-x86_64/pkgbuild-syntax-highlight.patch
(from rev 276394, ktexteditor/trunk/pkgbuild-syntax-highlight.patch)

+
 testing-i686/PKGBUILD  |   40 +++
 testing-i686/pkgbuild-syntax-highlight.patch   |   11 ++
 testing-x86_64/PKGBUILD|   40 +++
 testing-x86_64/pkgbuild-syntax-highlight.patch |   11 ++
 4 files changed, 102 insertions(+)

Copied: ktexteditor/repos/testing-i686/PKGBUILD (from rev 276394, 
ktexteditor/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-09-14 09:51:44 UTC (rev 276395)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=ktexteditor
+pkgver=5.26.0
+pkgrel=1
+pkgdesc='Advanced embeddable text editor'
+arch=('i686' 'x86_64')
+url='https://community.kde.org/Frameworks'
+license=('LGPL')
+depends=('kparts' 'libgit2')
+makedepends=('extra-cmake-modules' 'python')
+groups=('kf5')
+source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;
+'pkgbuild-syntax-highlight.patch')
+md5sums=('3c44e3cdd5aeb599ebdcdf6d97c50489'
+ '489275f1330fe43e4e24e9c5b3c842e1')
+
+prepare() {
+  mkdir -p build
+
+  cd ${pkgname}-${pkgver}
+  patch -p0 -i "${srcdir}"/pkgbuild-syntax-highlight.patch
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: ktexteditor/repos/testing-i686/pkgbuild-syntax-highlight.patch (from 
rev 276394, ktexteditor/trunk/pkgbuild-syntax-highlight.patch)
===
--- testing-i686/pkgbuild-syntax-highlight.patch
(rev 0)
+++ testing-i686/pkgbuild-syntax-highlight.patch2016-09-14 09:51:44 UTC 
(rev 276395)
@@ -0,0 +1,11 @@
+--- src/syntax/data/bash.xml~  2013-06-13 09:46:51.569245577 +
 src/syntax/data/bash.xml   2013-06-13 09:47:31.745637790 +
+@@ -8,7 +8,7 @@
+ 
+  
+ ]>
+-
++
+ 
+ 
+  
+ ]>
+-
++
+ 
+ 

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

2016-09-14 Thread Felix Yan
Date: Wednesday, September 14, 2016 @ 09:51:09
  Author: felixonmars
Revision: 276393

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

Added:
  krunner/repos/testing-i686/
  krunner/repos/testing-i686/PKGBUILD
(from rev 276392, krunner/trunk/PKGBUILD)
  krunner/repos/testing-x86_64/
  krunner/repos/testing-x86_64/PKGBUILD
(from rev 276392, krunner/trunk/PKGBUILD)

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

Copied: krunner/repos/testing-i686/PKGBUILD (from rev 276392, 
krunner/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-09-14 09:51:09 UTC (rev 276393)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=krunner
+pkgver=5.26.0
+pkgrel=1
+pkgdesc='Framework for providing different actions given a string query'
+arch=('i686' 'x86_64')
+url='https://community.kde.org/Frameworks'
+license=('LGPL')
+groups=('kf5')
+depends=('plasma-framework' 'threadweaver')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('fb68365d9cb051d5d2f7b0dd3853dd06')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: krunner/repos/testing-x86_64/PKGBUILD (from rev 276392, 
krunner/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-09-14 09:51:09 UTC (rev 276393)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=krunner
+pkgver=5.26.0
+pkgrel=1
+pkgdesc='Framework for providing different actions given a string query'
+arch=('i686' 'x86_64')
+url='https://community.kde.org/Frameworks'
+license=('LGPL')
+groups=('kf5')
+depends=('plasma-framework' 'threadweaver')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('fb68365d9cb051d5d2f7b0dd3853dd06')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}


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

2016-09-14 Thread Felix Yan
Date: Wednesday, September 14, 2016 @ 09:50:41
  Author: felixonmars
Revision: 276392

upgpkg: krunner 5.26.0-1

Upstream release

Modified:
  krunner/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-14 09:50:34 UTC (rev 276391)
+++ PKGBUILD2016-09-14 09:50:41 UTC (rev 276392)
@@ -3,7 +3,7 @@
 # Contributor: Andrea Scarpino 
 
 pkgname=krunner
-pkgver=5.25.0
+pkgver=5.26.0
 pkgrel=1
 pkgdesc='Framework for providing different actions given a string query'
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 depends=('plasma-framework' 'threadweaver')
 makedepends=('extra-cmake-modules' 'kdoctools' 'python')
 
source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
-md5sums=('427349a763c831796b3de0be4b17a019')
+md5sums=('fb68365d9cb051d5d2f7b0dd3853dd06')
 
 prepare() {
   mkdir build


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

2016-09-14 Thread Felix Yan
Date: Wednesday, September 14, 2016 @ 09:50:07
  Author: felixonmars
Revision: 276390

upgpkg: kpeople 5.26.0-1

Upstream release

Modified:
  kpeople/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-14 09:50:00 UTC (rev 276389)
+++ PKGBUILD2016-09-14 09:50:07 UTC (rev 276390)
@@ -3,7 +3,7 @@
 # Maintainer: Antonio Rojas 
 
 pkgname=kpeople
-pkgver=5.25.0
+pkgver=5.26.0
 pkgrel=1
 pkgdesc='A library that provides access to all contacts and the people who 
hold them'
 arch=(i686 x86_64)
@@ -13,7 +13,7 @@
 makedepends=(extra-cmake-modules python mesa)
 groups=(kf5)
 
source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
-md5sums=('dc439cc6a4b3093cbee780cac616d1b4')
+md5sums=('eb2c3076f7e744f3da557ed48b8471f7')
 
 prepare() {
   mkdir -p build


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

2016-09-14 Thread Felix Yan
Date: Wednesday, September 14, 2016 @ 09:50:34
  Author: felixonmars
Revision: 276391

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

Added:
  kpeople/repos/testing-i686/
  kpeople/repos/testing-i686/PKGBUILD
(from rev 276390, kpeople/trunk/PKGBUILD)
  kpeople/repos/testing-x86_64/
  kpeople/repos/testing-x86_64/PKGBUILD
(from rev 276390, kpeople/trunk/PKGBUILD)

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

Copied: kpeople/repos/testing-i686/PKGBUILD (from rev 276390, 
kpeople/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-09-14 09:50:34 UTC (rev 276391)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+
+pkgname=kpeople
+pkgver=5.26.0
+pkgrel=1
+pkgdesc='A library that provides access to all contacts and the people who 
hold them'
+arch=(i686 x86_64)
+url='https://community.kde.org/Frameworks'
+license=(LGPL)
+depends=(kservice kwidgetsaddons kitemviews qt5-declarative)
+makedepends=(extra-cmake-modules python mesa)
+groups=(kf5)
+source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('eb2c3076f7e744f3da557ed48b8471f7')
+
+prepare() {
+  mkdir -p build
+}
+
+build() { 
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Copied: kpeople/repos/testing-x86_64/PKGBUILD (from rev 276390, 
kpeople/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-09-14 09:50:34 UTC (rev 276391)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+
+pkgname=kpeople
+pkgver=5.26.0
+pkgrel=1
+pkgdesc='A library that provides access to all contacts and the people who 
hold them'
+arch=(i686 x86_64)
+url='https://community.kde.org/Frameworks'
+license=(LGPL)
+depends=(kservice kwidgetsaddons kitemviews qt5-declarative)
+makedepends=(extra-cmake-modules python mesa)
+groups=(kf5)
+source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('eb2c3076f7e744f3da557ed48b8471f7')
+
+prepare() {
+  mkdir -p build
+}
+
+build() { 
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


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

2016-09-14 Thread Felix Yan
Date: Wednesday, September 14, 2016 @ 09:50:00
  Author: felixonmars
Revision: 276389

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

Added:
  knotifyconfig/repos/testing-i686/
  knotifyconfig/repos/testing-i686/PKGBUILD
(from rev 276388, knotifyconfig/trunk/PKGBUILD)
  knotifyconfig/repos/testing-x86_64/
  knotifyconfig/repos/testing-x86_64/PKGBUILD
(from rev 276388, knotifyconfig/trunk/PKGBUILD)

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

Copied: knotifyconfig/repos/testing-i686/PKGBUILD (from rev 276388, 
knotifyconfig/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-09-14 09:50:00 UTC (rev 276389)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=knotifyconfig
+pkgver=5.26.0
+pkgrel=1
+pkgdesc='Configuration system for KNotify'
+arch=('i686' 'x86_64')
+url='https://community.kde.org/Frameworks'
+license=('LGPL')
+depends=('kio')
+makedepends=('extra-cmake-modules' 'python')
+groups=('kf5')
+source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('108bab8a15fb33312e8a9f21ebf61ffa')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: knotifyconfig/repos/testing-x86_64/PKGBUILD (from rev 276388, 
knotifyconfig/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-09-14 09:50:00 UTC (rev 276389)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=knotifyconfig
+pkgver=5.26.0
+pkgrel=1
+pkgdesc='Configuration system for KNotify'
+arch=('i686' 'x86_64')
+url='https://community.kde.org/Frameworks'
+license=('LGPL')
+depends=('kio')
+makedepends=('extra-cmake-modules' 'python')
+groups=('kf5')
+source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('108bab8a15fb33312e8a9f21ebf61ffa')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}


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

2016-09-14 Thread Felix Yan
Date: Wednesday, September 14, 2016 @ 09:49:25
  Author: felixonmars
Revision: 276388

upgpkg: knotifyconfig 5.26.0-1

Upstream release

Modified:
  knotifyconfig/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-14 09:49:15 UTC (rev 276387)
+++ PKGBUILD2016-09-14 09:49:25 UTC (rev 276388)
@@ -3,7 +3,7 @@
 # Contributor: Andrea Scarpino 
 
 pkgname=knotifyconfig
-pkgver=5.25.0
+pkgver=5.26.0
 pkgrel=1
 pkgdesc='Configuration system for KNotify'
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 makedepends=('extra-cmake-modules' 'python')
 groups=('kf5')
 
source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
-md5sums=('61f5e3d3095a7b0cb87d1693c9b1ad05')
+md5sums=('108bab8a15fb33312e8a9f21ebf61ffa')
 
 prepare() {
   mkdir -p build


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

2016-09-14 Thread Felix Yan
Date: Wednesday, September 14, 2016 @ 09:49:15
  Author: felixonmars
Revision: 276387

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

Added:
  knewstuff/repos/testing-i686/
  knewstuff/repos/testing-i686/PKGBUILD
(from rev 276386, knewstuff/trunk/PKGBUILD)
  knewstuff/repos/testing-x86_64/
  knewstuff/repos/testing-x86_64/PKGBUILD
(from rev 276386, knewstuff/trunk/PKGBUILD)

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

Copied: knewstuff/repos/testing-i686/PKGBUILD (from rev 276386, 
knewstuff/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-09-14 09:49:15 UTC (rev 276387)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=knewstuff
+pkgver=5.26.0
+pkgrel=1
+pkgdesc='Support for downloading application assets from the network'
+arch=('i686' 'x86_64')
+url='https://community.kde.org/Frameworks'
+license=('LGPL')
+depends=('kio')
+makedepends=('extra-cmake-modules' 'python')
+groups=('kf5')
+source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('a991eac8b5909e55aa5f72afd3af41a8')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: knewstuff/repos/testing-x86_64/PKGBUILD (from rev 276386, 
knewstuff/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-09-14 09:49:15 UTC (rev 276387)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=knewstuff
+pkgver=5.26.0
+pkgrel=1
+pkgdesc='Support for downloading application assets from the network'
+arch=('i686' 'x86_64')
+url='https://community.kde.org/Frameworks'
+license=('LGPL')
+depends=('kio')
+makedepends=('extra-cmake-modules' 'python')
+groups=('kf5')
+source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('a991eac8b5909e55aa5f72afd3af41a8')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}


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

2016-09-14 Thread Felix Yan
Date: Wednesday, September 14, 2016 @ 09:48:48
  Author: felixonmars
Revision: 276386

upgpkg: knewstuff 5.26.0-1

Upstream release

Modified:
  knewstuff/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-14 09:48:36 UTC (rev 276385)
+++ PKGBUILD2016-09-14 09:48:48 UTC (rev 276386)
@@ -3,7 +3,7 @@
 # Contributor: Andrea Scarpino 
 
 pkgname=knewstuff
-pkgver=5.25.0
+pkgver=5.26.0
 pkgrel=1
 pkgdesc='Support for downloading application assets from the network'
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 makedepends=('extra-cmake-modules' 'python')
 groups=('kf5')
 
source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
-md5sums=('2ea7e17162776681193f67d66821182d')
+md5sums=('a991eac8b5909e55aa5f72afd3af41a8')
 
 prepare() {
   mkdir -p build


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

2016-09-14 Thread Felix Yan
Date: Wednesday, September 14, 2016 @ 09:48:09
  Author: felixonmars
Revision: 276384

upgpkg: kitemmodels 5.26.0-1

Upstream release

Modified:
  kitemmodels/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-14 09:48:02 UTC (rev 276383)
+++ PKGBUILD2016-09-14 09:48:09 UTC (rev 276384)
@@ -3,7 +3,7 @@
 # Contributor: Andrea Scarpino 
 
 pkgname=kitemmodels
-pkgver=5.25.0
+pkgver=5.26.0
 pkgrel=1
 pkgdesc='Models for Qt Model/View system'
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 makedepends=('extra-cmake-modules')
 groups=('kf5')
 
source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
-md5sums=('83b9a034bbfaedf0cc12191157899006')
+md5sums=('e1a8e1484398a40d2f9c14ece0bd657f')
 
 prepare() {
   mkdir -p build


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

2016-09-14 Thread Felix Yan
Date: Wednesday, September 14, 2016 @ 09:48:36
  Author: felixonmars
Revision: 276385

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

Added:
  kitemmodels/repos/testing-i686/
  kitemmodels/repos/testing-i686/PKGBUILD
(from rev 276384, kitemmodels/trunk/PKGBUILD)
  kitemmodels/repos/testing-x86_64/
  kitemmodels/repos/testing-x86_64/PKGBUILD
(from rev 276384, kitemmodels/trunk/PKGBUILD)

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

Copied: kitemmodels/repos/testing-i686/PKGBUILD (from rev 276384, 
kitemmodels/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-09-14 09:48:36 UTC (rev 276385)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kitemmodels
+pkgver=5.26.0
+pkgrel=1
+pkgdesc='Models for Qt Model/View system'
+arch=('i686' 'x86_64')
+url='https://community.kde.org/Frameworks'
+license=('LGPL')
+depends=('qt5-base')
+makedepends=('extra-cmake-modules')
+groups=('kf5')
+source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('e1a8e1484398a40d2f9c14ece0bd657f')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kitemmodels/repos/testing-x86_64/PKGBUILD (from rev 276384, 
kitemmodels/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-09-14 09:48:36 UTC (rev 276385)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kitemmodels
+pkgver=5.26.0
+pkgrel=1
+pkgdesc='Models for Qt Model/View system'
+arch=('i686' 'x86_64')
+url='https://community.kde.org/Frameworks'
+license=('LGPL')
+depends=('qt5-base')
+makedepends=('extra-cmake-modules')
+groups=('kf5')
+source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('e1a8e1484398a40d2f9c14ece0bd657f')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}


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

2016-09-14 Thread Felix Yan
Date: Wednesday, September 14, 2016 @ 09:48:02
  Author: felixonmars
Revision: 276383

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

Added:
  kimageformats/repos/testing-i686/
  kimageformats/repos/testing-i686/PKGBUILD
(from rev 276382, kimageformats/trunk/PKGBUILD)
  kimageformats/repos/testing-x86_64/
  kimageformats/repos/testing-x86_64/PKGBUILD
(from rev 276382, kimageformats/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   36 
 testing-x86_64/PKGBUILD |   36 
 2 files changed, 72 insertions(+)

Copied: kimageformats/repos/testing-i686/PKGBUILD (from rev 276382, 
kimageformats/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-09-14 09:48:02 UTC (rev 276383)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kimageformats
+pkgver=5.26.0
+pkgrel=1
+pkgdesc='Image format plugins for Qt5'
+arch=('i686' 'x86_64')
+url='https://community.kde.org/Frameworks'
+license=('LGPL')
+depends=('qt5-base' 'openexr')
+makedepends=('extra-cmake-modules' 'karchive' 'mesa')
+optdepends=('karchive: plugin for Krita and OpenRaster images')
+groups=('kf5')
+source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('8ffada20200fb834249717f7884bfc3e')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kimageformats/repos/testing-x86_64/PKGBUILD (from rev 276382, 
kimageformats/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-09-14 09:48:02 UTC (rev 276383)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kimageformats
+pkgver=5.26.0
+pkgrel=1
+pkgdesc='Image format plugins for Qt5'
+arch=('i686' 'x86_64')
+url='https://community.kde.org/Frameworks'
+license=('LGPL')
+depends=('qt5-base' 'openexr')
+makedepends=('extra-cmake-modules' 'karchive' 'mesa')
+optdepends=('karchive: plugin for Krita and OpenRaster images')
+groups=('kf5')
+source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('8ffada20200fb834249717f7884bfc3e')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}


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

2016-09-14 Thread Felix Yan
Date: Wednesday, September 14, 2016 @ 09:47:28
  Author: felixonmars
Revision: 276382

upgpkg: kimageformats 5.26.0-1

Upstream release

Modified:
  kimageformats/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-14 09:47:12 UTC (rev 276381)
+++ PKGBUILD2016-09-14 09:47:28 UTC (rev 276382)
@@ -3,7 +3,7 @@
 # Contributor: Andrea Scarpino 
 
 pkgname=kimageformats
-pkgver=5.25.0
+pkgver=5.26.0
 pkgrel=1
 pkgdesc='Image format plugins for Qt5'
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 optdepends=('karchive: plugin for Krita and OpenRaster images')
 groups=('kf5')
 
source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
-md5sums=('610989615ba775f55bf07f1b5f5b3bf9')
+md5sums=('8ffada20200fb834249717f7884bfc3e')
 
 prepare() {
   mkdir -p build


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

2016-09-14 Thread Felix Yan
Date: Wednesday, September 14, 2016 @ 09:47:12
  Author: felixonmars
Revision: 276381

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

Added:
  kemoticons/repos/testing-i686/
  kemoticons/repos/testing-i686/PKGBUILD
(from rev 276380, kemoticons/trunk/PKGBUILD)
  kemoticons/repos/testing-x86_64/
  kemoticons/repos/testing-x86_64/PKGBUILD
(from rev 276380, kemoticons/trunk/PKGBUILD)

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

Copied: kemoticons/repos/testing-i686/PKGBUILD (from rev 276380, 
kemoticons/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-09-14 09:47:12 UTC (rev 276381)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kemoticons
+pkgver=5.26.0
+pkgrel=1
+pkgdesc='Support for emoticons and emoticons themes'
+arch=('i686' 'x86_64')
+url='https://community.kde.org/Frameworks'
+license=('LGPL')
+depends=('karchive' 'kservice')
+makedepends=('extra-cmake-modules' 'python' 'mesa')
+groups=('kf5')
+source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('fafd4049b6651c48b714ddd4ea3ca5c7')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kemoticons/repos/testing-x86_64/PKGBUILD (from rev 276380, 
kemoticons/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-09-14 09:47:12 UTC (rev 276381)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kemoticons
+pkgver=5.26.0
+pkgrel=1
+pkgdesc='Support for emoticons and emoticons themes'
+arch=('i686' 'x86_64')
+url='https://community.kde.org/Frameworks'
+license=('LGPL')
+depends=('karchive' 'kservice')
+makedepends=('extra-cmake-modules' 'python' 'mesa')
+groups=('kf5')
+source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('fafd4049b6651c48b714ddd4ea3ca5c7')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}


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

2016-09-14 Thread Felix Yan
Date: Wednesday, September 14, 2016 @ 09:46:09
  Author: felixonmars
Revision: 276378

upgpkg: kdnssd 5.26.0-1

Upstream release

Modified:
  kdnssd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-14 09:46:02 UTC (rev 276377)
+++ PKGBUILD2016-09-14 09:46:09 UTC (rev 276378)
@@ -3,7 +3,7 @@
 # Contributor: Andrea Scarpino 
 
 pkgname=kdnssd
-pkgver=5.25.0
+pkgver=5.26.0
 pkgrel=1
 pkgdesc='Abstraction to system DNSSD features'
 arch=('i686' 'x86_64')
@@ -15,7 +15,7 @@
 replaces=('kdnssd-framework')
 conflicts=('kdnssd-framework')
 
source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
-md5sums=('31c35cb2b97f150d103484501cc55aca')
+md5sums=('7e9ba01b4649b7b4f2c0c88aedc70d10')
 
 prepare() {
   mkdir -p build


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

2016-09-14 Thread Felix Yan
Date: Wednesday, September 14, 2016 @ 09:46:02
  Author: felixonmars
Revision: 276377

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

Added:
  kdesu/repos/testing-i686/
  kdesu/repos/testing-i686/PKGBUILD
(from rev 276376, kdesu/trunk/PKGBUILD)
  kdesu/repos/testing-x86_64/
  kdesu/repos/testing-x86_64/PKGBUILD
(from rev 276376, kdesu/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   40 
 testing-x86_64/PKGBUILD |   40 
 2 files changed, 80 insertions(+)

Copied: kdesu/repos/testing-i686/PKGBUILD (from rev 276376, 
kdesu/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-09-14 09:46:02 UTC (rev 276377)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdesu
+pkgver=5.26.0
+pkgrel=1
+pkgdesc='Integration with su for elevated privileges'
+arch=('i686' 'x86_64')
+url='https://community.kde.org/Frameworks'
+license=('LGPL')
+depends=('kservice' 'kpty')
+makedepends=('extra-cmake-modules' 'python')
+groups=('kf5')
+source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('223f0c4a3e96672602c85e8ced2c7a8d')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_LIBEXECDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+
+# See FS#44277
+  chown :nobody "${pkgdir}"/usr/lib/kf5/kdesud
+  chmod g+s "${pkgdir}"/usr/lib/kf5/kdesud
+}

Copied: kdesu/repos/testing-x86_64/PKGBUILD (from rev 276376, 
kdesu/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-09-14 09:46:02 UTC (rev 276377)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdesu
+pkgver=5.26.0
+pkgrel=1
+pkgdesc='Integration with su for elevated privileges'
+arch=('i686' 'x86_64')
+url='https://community.kde.org/Frameworks'
+license=('LGPL')
+depends=('kservice' 'kpty')
+makedepends=('extra-cmake-modules' 'python')
+groups=('kf5')
+source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('223f0c4a3e96672602c85e8ced2c7a8d')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_LIBEXECDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+
+# See FS#44277
+  chown :nobody "${pkgdir}"/usr/lib/kf5/kdesud
+  chmod g+s "${pkgdir}"/usr/lib/kf5/kdesud
+}


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

2016-09-14 Thread Felix Yan
Date: Wednesday, September 14, 2016 @ 09:46:44
  Author: felixonmars
Revision: 276380

upgpkg: kemoticons 5.26.0-1

Upstream release

Modified:
  kemoticons/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-14 09:46:37 UTC (rev 276379)
+++ PKGBUILD2016-09-14 09:46:44 UTC (rev 276380)
@@ -3,7 +3,7 @@
 # Contributor: Andrea Scarpino 
 
 pkgname=kemoticons
-pkgver=5.25.0
+pkgver=5.26.0
 pkgrel=1
 pkgdesc='Support for emoticons and emoticons themes'
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 makedepends=('extra-cmake-modules' 'python' 'mesa')
 groups=('kf5')
 
source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
-md5sums=('7a38172342fa120969b73d868e2b4211')
+md5sums=('fafd4049b6651c48b714ddd4ea3ca5c7')
 
 prepare() {
   mkdir -p build


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

2016-09-14 Thread Felix Yan
Date: Wednesday, September 14, 2016 @ 09:46:37
  Author: felixonmars
Revision: 276379

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

Added:
  kdnssd/repos/testing-i686/
  kdnssd/repos/testing-i686/PKGBUILD
(from rev 276378, kdnssd/trunk/PKGBUILD)
  kdnssd/repos/testing-x86_64/
  kdnssd/repos/testing-x86_64/PKGBUILD
(from rev 276378, kdnssd/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   37 +
 testing-x86_64/PKGBUILD |   37 +
 2 files changed, 74 insertions(+)

Copied: kdnssd/repos/testing-i686/PKGBUILD (from rev 276378, 
kdnssd/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-09-14 09:46:37 UTC (rev 276379)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdnssd
+pkgver=5.26.0
+pkgrel=1
+pkgdesc='Abstraction to system DNSSD features'
+arch=('i686' 'x86_64')
+url='https://community.kde.org/Frameworks'
+license=('LGPL')
+depends=('qt5-base' 'avahi')
+makedepends=('extra-cmake-modules' 'qt5-tools')
+groups=('kf5')
+replaces=('kdnssd-framework')
+conflicts=('kdnssd-framework')
+source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('7e9ba01b4649b7b4f2c0c88aedc70d10')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kdnssd/repos/testing-x86_64/PKGBUILD (from rev 276378, 
kdnssd/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-09-14 09:46:37 UTC (rev 276379)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdnssd
+pkgver=5.26.0
+pkgrel=1
+pkgdesc='Abstraction to system DNSSD features'
+arch=('i686' 'x86_64')
+url='https://community.kde.org/Frameworks'
+license=('LGPL')
+depends=('qt5-base' 'avahi')
+makedepends=('extra-cmake-modules' 'qt5-tools')
+groups=('kf5')
+replaces=('kdnssd-framework')
+conflicts=('kdnssd-framework')
+source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('7e9ba01b4649b7b4f2c0c88aedc70d10')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}


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

2016-09-14 Thread Felix Yan
Date: Wednesday, September 14, 2016 @ 09:45:34
  Author: felixonmars
Revision: 276376

upgpkg: kdesu 5.26.0-1

Upstream release

Modified:
  kdesu/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-14 09:45:27 UTC (rev 276375)
+++ PKGBUILD2016-09-14 09:45:34 UTC (rev 276376)
@@ -3,7 +3,7 @@
 # Contributor: Andrea Scarpino 
 
 pkgname=kdesu
-pkgver=5.25.0
+pkgver=5.26.0
 pkgrel=1
 pkgdesc='Integration with su for elevated privileges'
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 makedepends=('extra-cmake-modules' 'python')
 groups=('kf5')
 
source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
-md5sums=('f85faafcbdbf994bdb8b4cbcd7c85f03')
+md5sums=('223f0c4a3e96672602c85e8ced2c7a8d')
 
 prepare() {
   mkdir -p build


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

2016-09-14 Thread Felix Yan
Date: Wednesday, September 14, 2016 @ 09:45:27
  Author: felixonmars
Revision: 276375

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

Added:
  kded/repos/testing-i686/
  kded/repos/testing-i686/PKGBUILD
(from rev 276374, kded/trunk/PKGBUILD)
  kded/repos/testing-x86_64/
  kded/repos/testing-x86_64/PKGBUILD
(from rev 276374, kded/trunk/PKGBUILD)

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

Copied: kded/repos/testing-i686/PKGBUILD (from rev 276374, kded/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-09-14 09:45:27 UTC (rev 276375)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kded
+pkgver=5.26.0
+pkgrel=1
+pkgdesc='Extensible deamon for providing system level services'
+arch=('i686' 'x86_64')
+url='https://community.kde.org/Frameworks'
+license=('LGPL')
+depends=('kinit')
+makedepends=('extra-cmake-modules' 'kdoctools')
+groups=('kf5')
+source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('3497297ffd42fb64b6628a0d0b1c535e')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kded/repos/testing-x86_64/PKGBUILD (from rev 276374, 
kded/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-09-14 09:45:27 UTC (rev 276375)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kded
+pkgver=5.26.0
+pkgrel=1
+pkgdesc='Extensible deamon for providing system level services'
+arch=('i686' 'x86_64')
+url='https://community.kde.org/Frameworks'
+license=('LGPL')
+depends=('kinit')
+makedepends=('extra-cmake-modules' 'kdoctools')
+groups=('kf5')
+source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('3497297ffd42fb64b6628a0d0b1c535e')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}


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

2016-09-14 Thread Felix Yan
Date: Wednesday, September 14, 2016 @ 09:45:01
  Author: felixonmars
Revision: 276374

upgpkg: kded 5.26.0-1

Upstream release

Modified:
  kded/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-14 09:44:54 UTC (rev 276373)
+++ PKGBUILD2016-09-14 09:45:01 UTC (rev 276374)
@@ -3,7 +3,7 @@
 # Contributor: Andrea Scarpino 
 
 pkgname=kded
-pkgver=5.25.0
+pkgver=5.26.0
 pkgrel=1
 pkgdesc='Extensible deamon for providing system level services'
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 makedepends=('extra-cmake-modules' 'kdoctools')
 groups=('kf5')
 
source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
-md5sums=('f859f8818fd5f81645bdfb2cf89ee020')
+md5sums=('3497297ffd42fb64b6628a0d0b1c535e')
 
 prepare() {
   mkdir -p build


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

2016-09-14 Thread Felix Yan
Date: Wednesday, September 14, 2016 @ 09:44:54
  Author: felixonmars
Revision: 276373

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

Added:
  kactivities-stats/repos/testing-i686/
  kactivities-stats/repos/testing-i686/PKGBUILD
(from rev 276372, kactivities-stats/trunk/PKGBUILD)
  kactivities-stats/repos/testing-x86_64/
  kactivities-stats/repos/testing-x86_64/PKGBUILD
(from rev 276372, kactivities-stats/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   36 
 testing-x86_64/PKGBUILD |   36 
 2 files changed, 72 insertions(+)

Copied: kactivities-stats/repos/testing-i686/PKGBUILD (from rev 276372, 
kactivities-stats/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-09-14 09:44:54 UTC (rev 276373)
@@ -0,0 +1,36 @@
+# $Id: PKGBUILD 261838 2016-03-16 07:36:15Z arojas $
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=kactivities-stats
+pkgver=5.26.0
+pkgrel=1
+arch=('i686' 'x86_64')
+pkgdesc="A library for accessing the usage data collected by the activities 
system"
+url='https://community.kde.org/Frameworks'
+license=('LGPL')
+depends=('kactivities')
+makedepends=('extra-cmake-modules' 'boost')
+groups=('kf5')
+source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz;)
+md5sums=('e20249a1394d466c351fb0fabd0a39fa')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: kactivities-stats/repos/testing-x86_64/PKGBUILD (from rev 276372, 
kactivities-stats/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-09-14 09:44:54 UTC (rev 276373)
@@ -0,0 +1,36 @@
+# $Id: PKGBUILD 261838 2016-03-16 07:36:15Z arojas $
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=kactivities-stats
+pkgver=5.26.0
+pkgrel=1
+arch=('i686' 'x86_64')
+pkgdesc="A library for accessing the usage data collected by the activities 
system"
+url='https://community.kde.org/Frameworks'
+license=('LGPL')
+depends=('kactivities')
+makedepends=('extra-cmake-modules' 'boost')
+groups=('kf5')
+source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz;)
+md5sums=('e20249a1394d466c351fb0fabd0a39fa')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}


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

2016-09-14 Thread Felix Yan
Date: Wednesday, September 14, 2016 @ 09:44:12
  Author: felixonmars
Revision: 276371

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

Added:
  frameworkintegration/repos/testing-i686/
  frameworkintegration/repos/testing-i686/PKGBUILD
(from rev 276370, frameworkintegration/trunk/PKGBUILD)
  frameworkintegration/repos/testing-x86_64/
  frameworkintegration/repos/testing-x86_64/PKGBUILD
(from rev 276370, frameworkintegration/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   36 
 testing-x86_64/PKGBUILD |   36 
 2 files changed, 72 insertions(+)

Copied: frameworkintegration/repos/testing-i686/PKGBUILD (from rev 276370, 
frameworkintegration/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-09-14 09:44:12 UTC (rev 276371)
@@ -0,0 +1,36 @@
+
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=frameworkintegration
+pkgver=5.26.0
+pkgrel=1
+pkgdesc='Framework providing components to allow applications to integrate 
with a KDE Workspace'
+arch=('i686' 'x86_64')
+url='https://community.kde.org/Frameworks'
+license=('LGPL')
+depends=('knotifications' 'kiconthemes')
+makedepends=('extra-cmake-modules' 'python')
+groups=('kf5')
+source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('3f345a8155d26a7d875e36741a03d751')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: frameworkintegration/repos/testing-x86_64/PKGBUILD (from rev 276370, 
frameworkintegration/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-09-14 09:44:12 UTC (rev 276371)
@@ -0,0 +1,36 @@
+
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=frameworkintegration
+pkgver=5.26.0
+pkgrel=1
+pkgdesc='Framework providing components to allow applications to integrate 
with a KDE Workspace'
+arch=('i686' 'x86_64')
+url='https://community.kde.org/Frameworks'
+license=('LGPL')
+depends=('knotifications' 'kiconthemes')
+makedepends=('extra-cmake-modules' 'python')
+groups=('kf5')
+source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('3f345a8155d26a7d875e36741a03d751')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}


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

2016-09-14 Thread Felix Yan
Date: Wednesday, September 14, 2016 @ 09:44:27
  Author: felixonmars
Revision: 276372

upgpkg: kactivities-stats 5.26.0-1

Upstream release

Modified:
  kactivities-stats/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-14 09:44:12 UTC (rev 276371)
+++ PKGBUILD2016-09-14 09:44:27 UTC (rev 276372)
@@ -4,7 +4,7 @@
 # Contributor: Andrea Scarpino 
 
 pkgname=kactivities-stats
-pkgver=5.25.0
+pkgver=5.26.0
 pkgrel=1
 arch=('i686' 'x86_64')
 pkgdesc="A library for accessing the usage data collected by the activities 
system"
@@ -14,7 +14,7 @@
 makedepends=('extra-cmake-modules' 'boost')
 groups=('kf5')
 
source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz;)
-md5sums=('fbda904a579120cc23eb6ec9bc660f67')
+md5sums=('e20249a1394d466c351fb0fabd0a39fa')
 
 prepare() {
   mkdir -p build


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

2016-09-14 Thread Felix Yan
Date: Wednesday, September 14, 2016 @ 09:43:05
  Author: felixonmars
Revision: 276367

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

Added:
  bluez-qt/repos/testing-i686/
  bluez-qt/repos/testing-i686/PKGBUILD
(from rev 276366, bluez-qt/trunk/PKGBUILD)
  bluez-qt/repos/testing-x86_64/
  bluez-qt/repos/testing-x86_64/PKGBUILD
(from rev 276366, bluez-qt/trunk/PKGBUILD)

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

Copied: bluez-qt/repos/testing-i686/PKGBUILD (from rev 276366, 
bluez-qt/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-09-14 09:43:05 UTC (rev 276367)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgname=bluez-qt
+pkgver=5.26.0
+pkgrel=1
+pkgdesc='Qt wrapper for Bluez 5 DBus API'
+arch=(i686 x86_64)
+url='https://community.kde.org/Frameworks'
+license=(GPL2)
+depends=(qt5-declarative bluez)
+makedepends=(extra-cmake-modules mesa)
+conflicts=(libbluedevil-frameworks)
+groups=(kf5)
+source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('95d95967de460f078a86245b96e0ef1b')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DUDEV_RULES_INSTALL_DIR=/usr/lib/udev/rules.d
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Copied: bluez-qt/repos/testing-x86_64/PKGBUILD (from rev 276366, 
bluez-qt/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-09-14 09:43:05 UTC (rev 276367)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgname=bluez-qt
+pkgver=5.26.0
+pkgrel=1
+pkgdesc='Qt wrapper for Bluez 5 DBus API'
+arch=(i686 x86_64)
+url='https://community.kde.org/Frameworks'
+license=(GPL2)
+depends=(qt5-declarative bluez)
+makedepends=(extra-cmake-modules mesa)
+conflicts=(libbluedevil-frameworks)
+groups=(kf5)
+source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('95d95967de460f078a86245b96e0ef1b')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DUDEV_RULES_INSTALL_DIR=/usr/lib/udev/rules.d
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in breeze-icons/repos (testing-any testing-any/PKGBUILD)

2016-09-14 Thread Felix Yan
Date: Wednesday, September 14, 2016 @ 09:43:30
  Author: felixonmars
Revision: 276369

archrelease: copy trunk to testing-any

Added:
  breeze-icons/repos/testing-any/
  breeze-icons/repos/testing-any/PKGBUILD
(from rev 276368, breeze-icons/trunk/PKGBUILD)

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

Copied: breeze-icons/repos/testing-any/PKGBUILD (from rev 276368, 
breeze-icons/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2016-09-14 09:43:30 UTC (rev 276369)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Antonio Rojas
+
+pkgname=breeze-icons
+pkgver=5.26.0
+pkgrel=1
+pkgdesc='Breeze icon themes'
+arch=('any')
+url='https://community.kde.org/Frameworks'
+license=('LGPL')
+groups=('kf5')
+makedepends=('extra-cmake-modules' 'qt5-base')
+source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz;)
+md5sums=('b3a784fe7be04be0e1bf79573fc7a1be')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


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

2016-09-14 Thread Felix Yan
Date: Wednesday, September 14, 2016 @ 09:43:45
  Author: felixonmars
Revision: 276370

upgpkg: frameworkintegration 5.26.0-1

Upstream release

Modified:
  frameworkintegration/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-14 09:43:30 UTC (rev 276369)
+++ PKGBUILD2016-09-14 09:43:45 UTC (rev 276370)
@@ -4,7 +4,7 @@
 # Contributor: Andrea Scarpino 
 
 pkgname=frameworkintegration
-pkgver=5.25.0
+pkgver=5.26.0
 pkgrel=1
 pkgdesc='Framework providing components to allow applications to integrate 
with a KDE Workspace'
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 makedepends=('extra-cmake-modules' 'python')
 groups=('kf5')
 
source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
-md5sums=('d63e9454ee42955c44cad1cc78a98d44')
+md5sums=('3f345a8155d26a7d875e36741a03d751')
 
 prepare() {
   mkdir -p build


  1   2   3   >