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

2015-01-20 Thread Jakob Gruber
Date: Tuesday, January 20, 2015 @ 09:38:19
  Author: schuay
Revision: 126283

Add puzzles to LogicGame category

Modified:
  puzzles/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-20 08:32:18 UTC (rev 126282)
+++ PKGBUILD2015-01-20 08:38:19 UTC (rev 126283)
@@ -24,6 +24,9 @@
 
 # Tweak desktop file generation to use proper icon paths.
 sed -i 's_\$icondir\/\$id-48d24.png_$id_' desktop.pl
+
+# And add to LogicGame category (FS#43512).
+sed -i 's_\(Categories=Game;\)_\1LogicGame;_' desktop.pl
 }
 
 build() {


[arch-commits] Commit in packagekit-qt/trunk (11 files)

2015-01-20 Thread Christian Hesse
Date: Tuesday, January 20, 2015 @ 10:42:33
  Author: eworm
Revision: 126292

upgpkg packagekit-qt 0.9.5-4

Added:
  packagekit-qt/trunk/PKGBUILD
Deleted:
  packagekit-qt/trunk/0001-Remove-daemon-proxy-conection-to-changed.patch
  packagekit-qt/trunk/0002-Add-operator-to-bitfield.patch
  
packagekit-qt/trunk/0003-Remove-the-metatype-registration-for-Transaction-typ.patch
  
packagekit-qt/trunk/0004-Remove-RoleUpgradeSystem-as-it-s-not-supported-in-0..patch
  packagekit-qt/trunk/0005-Properly-export-cmake-targets.patch
  packagekit-qt/trunk/0006-Don-t-assume-the-target-is-packagekitqt5.patch
  packagekit-qt/trunk/0007-Fix-compilation-due-to-not-set-cmake-variable.patch
  packagekit-qt/trunk/0008-Fix-QPK-include-dir-in-cmake-module.patch
  
packagekit-qt/trunk/0009-Disable-namespacing-and-classes-names-on-the-interfa.patch
  packagekit-qt/trunk/PKGBUILD

-+
 0001-Remove-daemon-proxy-conection-to-changed.patch |   28 --
 0002-Add-operator-to-bitfield.patch |   74 -
 0003-Remove-the-metatype-registration-for-Transaction-typ.patch |   44 ---
 0004-Remove-RoleUpgradeSystem-as-it-s-not-supported-in-0..patch |   25 -
 0005-Properly-export-cmake-targets.patch|  101 ---
 0006-Don-t-assume-the-target-is-packagekitqt5.patch |   25 -
 0007-Fix-compilation-due-to-not-set-cmake-variable.patch|   32 --
 0008-Fix-QPK-include-dir-in-cmake-module.patch  |   25 -
 0009-Disable-namespacing-and-classes-names-on-the-interfa.patch |  138 
--
 PKGBUILD|  136 
+++--
 10 files changed, 53 insertions(+), 575 deletions(-)

Deleted: 0001-Remove-daemon-proxy-conection-to-changed.patch
===
--- 0001-Remove-daemon-proxy-conection-to-changed.patch 2015-01-20 09:09:12 UTC 
(rev 126291)
+++ 0001-Remove-daemon-proxy-conection-to-changed.patch 2015-01-20 09:42:33 UTC 
(rev 126292)
@@ -1,28 +0,0 @@
-From ec677018df575ef295b5a57b66436b24ded63850 Mon Sep 17 00:00:00 2001
-From: Daniel Nicoletti dantt...@gmail.com
-Date: Tue, 6 May 2014 12:42:28 -0300
-Subject: [PATCH 01/12] Remove daemon proxy conection to changed()
-

- src/daemon.cpp | 5 +
- 1 file changed, 1 insertion(+), 4 deletions(-)
-
-diff --git a/src/daemon.cpp b/src/daemon.cpp
-index 621fb89..06907f4 100755
 a/src/daemon.cpp
-+++ b/src/daemon.cpp
-@@ -94,10 +94,7 @@ void DaemonPrivate::setupSignal(const QString signal, bool 
connect)
- const char *signalToConnect = 0;
- const char *memberToConnect = 0;
- 
--if (signal == SIGNAL(changed())) {
--signalToConnect = SIGNAL(Changed());
--memberToConnect = SIGNAL(changed());
--} else if (signal == SIGNAL(repoListChanged())) {
-+if (signal == SIGNAL(repoListChanged())) {
- signalToConnect = SIGNAL(RepoListChanged());
- memberToConnect = SIGNAL(repoListChanged());
- } else if (signal == SIGNAL(restartScheduled())) {
--- 
-2.0.1
-

Deleted: 0002-Add-operator-to-bitfield.patch
===
--- 0002-Add-operator-to-bitfield.patch 2015-01-20 09:09:12 UTC (rev 126291)
+++ 0002-Add-operator-to-bitfield.patch 2015-01-20 09:42:33 UTC (rev 126292)
@@ -1,74 +0,0 @@
-From c7b3c1dde34409fba8fd80355338d7f3fc1feffe Mon Sep 17 00:00:00 2001
-From: Daniel Nicoletti dantt...@gmail.com
-Date: Tue, 6 May 2014 12:43:26 -0300
-Subject: [PATCH 02/12] Add operator== to bitfield
-

- src/bitfield.cpp | 15 ++-
- src/bitfield.h   |  6 +-
- 2 files changed, 15 insertions(+), 6 deletions(-)
-
-diff --git a/src/bitfield.cpp b/src/bitfield.cpp
-index c986905..68ef80c 100644
 a/src/bitfield.cpp
-+++ b/src/bitfield.cpp
-@@ -2,7 +2,7 @@
- 
- using namespace PackageKit;
- 
--Bitfield::Bitfield () : m_val (0)
-+Bitfield::Bitfield ()
- {
- }
- 
-@@ -61,10 +61,15 @@ Bitfield Bitfield::operator|= (Bitfield mask)
- 
- Bitfield Bitfield::operator= (const Bitfield other)
- {
--  if (this == other)
--  return *this;
-+if (this == other)
-+return *this;
- 
--  m_val = other.m_val;
-+m_val = other.m_val;
- 
--  return *this;
-+return *this;
-+}
-+
-+bool Bitfield::operator==(const Bitfield other)
-+{
-+return m_val == other.m_val;
- }
-diff --git a/src/bitfield.h b/src/bitfield.h
-index d7dd481..8535e46 100644
 a/src/bitfield.h
-+++ b/src/bitfield.h
-@@ -2,6 +2,7 @@
- #define PACKAGEKIT_BITFIELD_H
- 
- #include QtGlobal
-+#include QMetaType
- 
- namespace PackageKit {
- 
-@@ -23,11 +24,14 @@ public:
- Bitfield operator|= (Bitfield mask);
- 
- Bitfield operator= (const Bitfield other);
-+bool operator==(const Bitfield other);
- 
- private:
--qulonglong m_val;
-+qulonglong m_val = 0;
- };
- 
- } // End namespace PackageKit
- 
-+Q_DECLARE_METATYPE(PackageKit::Bitfield)
-+
- 

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

2015-01-20 Thread Andrea Scarpino
Date: Tuesday, January 20, 2015 @ 09:10:13
  Author: andrea
Revision: 229604

upgpkg: qt5 5.4.0-2

Fix sed rules to apply our {C,LD}FLAGS; we don't need staticlibs anymore 
because of pacman 4.2

Modified:
  qt5/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-20 05:15:47 UTC (rev 229603)
+++ PKGBUILD2015-01-20 08:10:13 UTC (rev 229604)
@@ -27,7 +27,7 @@
  'qt5-x11extras'
  'qt5-xmlpatterns')
 pkgver=5.4.0
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 url='http://qt-project.org/'
 license=('GPL3' 'LGPL' 'FDL' 'custom')
@@ -51,12 +51,15 @@
 prepare() {
   cd ${_pkgfqn}
 
-  sed -i /^QMAKE_LFLAGS\s/s|+=|+= ${LDFLAGS}|g 
qtbase/mkspecs/common/gcc-base.conf
+  # Build using Arch {C,LD}FLAGS
+  sed -i -e s|^\(QMAKE_CFLAGS_RELEASE.*\)|\1 ${CFLAGS}| \
+qtbase/mkspecs/common/gcc-base.conf
+  sed -i -e s|^\(QMAKE_LFLAGS_RELEASE.*\)|\1 ${LDFLAGS}| \
+qtbase/mkspecs/common/g++-unix.conf
 
   # Use python2 for Python 2.x
   find . -name '*.py' -exec sed -i \
 's|#![ ]*/usr/bin/python$|2|;s|#![ ]*/usr/bin/env python$|2|' {} +
-
   # There are still a lot of relative calls which need a workaround
   mkdir ${srcdir}/python2-path
   ln -s /usr/bin/python2 ${srcdir}/python2-path/python
@@ -69,8 +72,10 @@
   export 
LD_LIBRARY_PATH=${QTDIR}/qtbase/lib:${QTDIR}/qttools/lib:${LD_LIBRARY_PATH}
   export QT_PLUGIN_PATH=${QTDIR}/qtbase/plugins
 
+  # python2 workaround
   export PATH=${srcdir}/python2-path:$PATH
 
+  # FS#38796
   [[ ${CARCH} = i686 ]]  SSE2=-no-sse2
 
   PYTHON=/usr/bin/python2 ./configure -confirm-license -opensource \
@@ -95,12 +100,19 @@
 
   make
 
-  # Fix paths
-  find ${QTDIR} -name Makefile -exec sed -i 
s|/usr/lib/qt/bin/qdoc|${QTDIR}/qtbase/bin/qdoc|g {} +
-  find ${QTDIR} -name Makefile.qmake-docs -exec sed -i 
s|/usr/lib/qt/bin/qdoc|${QTDIR}/qtbase/bin/qdoc|g {} +
-  find ${QTDIR} -name Makefile -exec sed -i 
s|/usr/lib/qt/bin/qhelpgenerator|${QTDIR}/qttools/bin/qhelpgenerator|g {} +
-  find ${QTDIR} -name Makefile.qmake-docs -exec sed -i 
s|/usr/lib/qt/bin/qhelpgenerator|${QTDIR}/qttools/bin/qhelpgenerator|g {} +
-  sed -i 
s|/usr/lib/qt/bin/qhelpgenerator|${QTDIR}/qttools/bin/qhelpgenerator|g 
qtwebkit/Source/Makefile.api
+  # Fix docs build when qt is not installed
+  sed -i s|/usr/lib/qt/bin/qdoc|${QTDIR}/qtbase/bin/qdoc|g \
+${QTDIR}/qtbase/qmake/Makefile.qmake-docs
+  find ${QTDIR} -name Makefile \
+-exec sed -i s|/usr/lib/qt/bin/qdoc|${QTDIR}/qtbase/bin/qdoc|g {} +
+  sed -i 
s|/usr/lib/qt/bin/qhelpgenerator|${QTDIR}/qttools/bin/qhelpgenerator|g \
+${QTDIR}/qtbase/qmake/Makefile.qmake-docs
+  find ${QTDIR} -name Makefile \
+-exec sed -i 
s|/usr/lib/qt/bin/qhelpgenerator|${QTDIR}/qttools/bin/qhelpgenerator|g {} +
+  sed -i 
s|/usr/lib/qt/bin/qhelpgenerator|${QTDIR}/qttools/bin/qhelpgenerator|g \
+qtwebkit/Source/Makefile.api
+  find ${QTDIR} -name Makefile \
+-exec sed -i 
s|/usr/lib/qt/bin/qmlplugindump|${QTDIR}/qtdeclarative/bin/qmlplugindump|g {} 
+
 
   make docs
 }
@@ -119,7 +131,6 @@
   'libsm: xcb plugin'
   'gtk2: GTK2 plugin')
   conflicts=('qt')
-  options=('staticlibs') #libQt5PlatformSupport builds static only
 
   cd ${_pkgfqn}/qtbase
   make INSTALL_ROOT=${pkgdir} install


[arch-commits] Commit in (5 files)

2015-01-20 Thread Christian Hesse
Date: Tuesday, January 20, 2015 @ 09:04:17
  Author: eworm
Revision: 126281

Initial import of gitolite 3.6.2-2

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

--+
 PKGBUILD |   29 +
 gitolite.install |6 ++
 2 files changed, 35 insertions(+)

Added: gitolite/trunk/PKGBUILD
===
--- gitolite/trunk/PKGBUILD (rev 0)
+++ gitolite/trunk/PKGBUILD 2015-01-20 08:04:17 UTC (rev 126281)
@@ -0,0 +1,29 @@
+# Maintainer: Bartłomiej Piotrowski nos...@bpiotrowski.pl
+# Maintainer: Christian Hesse m...@eworm.de
+# Contributor: Jon Eyolfson j...@eyolfson.com
+
+pkgname=gitolite
+pkgver=3.6.2
+pkgrel=2
+pkgdesc='An access control layer on top of git'
+url='https://github.com/sitaramc/gitolite'
+arch=('any')
+license=('GPL2')
+depends=('git' 'perl')
+conflicts=('gitolite-git' 'gitolite-g2-git' 'gitolite-g3-git')
+install=gitolite.install
+source=(${pkgname}-v${pkgver}.tar.gz::https://github.com/sitaramc/${pkgname}/archive/v${pkgver}.tar.gz;)
+sha256sums=('012c372b53d765558131ae0df23a590d41b042c8b88e38e952992caf52fc4fbf')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}/src
+
+   echo v${pkgver}  VERSION
+}
+
+package() {
+   install -d ${pkgdir}/usr/lib/gitolite
+   cp -a ${srcdir}/${pkgname}-${pkgver}/src/* 
${pkgdir}/usr/lib/gitolite
+   install -d ${pkgdir}/usr/bin
+   ln -s /usr/lib/gitolite/gitolite ${pkgdir}/usr/bin/
+}


Property changes on: gitolite/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: gitolite/trunk/gitolite.install
===
--- gitolite/trunk/gitolite.install (rev 0)
+++ gitolite/trunk/gitolite.install 2015-01-20 08:04:17 UTC (rev 126281)
@@ -0,0 +1,6 @@
+#!/bin/sh
+
+post_install() {
+   echo   Please read documentation in Wiki on how to set up gitolite:
+   echo   https://wiki.archlinux.org/index.php/Gitolite;
+}


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

2015-01-20 Thread Antonio Rojas
Date: Tuesday, January 20, 2015 @ 09:32:18
  Author: arojas
Revision: 126282

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

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

-+
 community-i686/PKGBUILD |   58 ++
 community-i686/packagekit.install   |   11 ++
 community-x86_64/PKGBUILD   |   58 ++
 community-x86_64/packagekit.install |   11 ++
 4 files changed, 138 insertions(+)

Copied: packagekit/repos/community-i686/PKGBUILD (from rev 126281, 
packagekit/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-01-20 08:32:18 UTC (rev 126282)
@@ -0,0 +1,58 @@
+# Maintainer: Christian Hesse m...@eworm.de
+# Contributor: Jonathan Conder jonno.con...@gmail.com
+
+pkgname='packagekit'
+pkgver=1.0.4
+pkgrel=1
+pkgdesc='A system designed to make installation and updates of packages easier'
+arch=('i686' 'x86_64')
+url='http://www.packagekit.org/'
+license=('GPL')
+depends=('dbus-glib' 'pacman' 'polkit' 'shared-mime-info' 'sqlite')
+makedepends=('dbus-glib' 'gobject-introspection' 'gtk-doc' 'intltool'
+   'networkmanager' 'pacman=4.2.0'  'pm-utils' 'polkit'
+   'shared-mime-info' 'sqlite' 'bash-completion')
+optdepends=('networkmanager: detect connection status'
+   'bash-completion: command completion in bash')
+install='packagekit.install'
+backup=('var/lib/PackageKit/transactions.db'
+   'etc/PackageKit/alpm.d/pacman.conf'
+   'etc/PackageKit/alpm.d/repos.list')
+source=(http://www.freedesktop.org/software/PackageKit/releases/PackageKit-${pkgver}.tar.xz;)
+sha256sums=('1b949a7dc92e20f7d7deb634e5b399148dbb749e813cea955f1546a99e169a71')
+
+prepare() {
+   cd ${srcdir}/PackageKit-${pkgver}
+
+   # packagekit does not know about updates made by pacman while daemon is 
running
+   # https://github.com/hughsie/PackageKit/issues/15
+   # For now we just exit the daemon... It will launch with a clean status 
if required.
+   sed -i '/ExecStart=/s/$/ --timed-exit/' data/packagekit.service.in
+}
+
+build() {
+   cd ${srcdir}/PackageKit-${pkgver}
+
+   ./autogen.sh --prefix=/usr \
+   --sysconfdir=/etc \
+   --localstatedir=/var \
+   --libexecdir=/usr/lib/PackageKit \
+   --disable-static \
+   --disable-gtk-doc \
+   --disable-local \
+   --disable-browser-plugin \
+   --disable-gstreamer-plugin \
+   --disable-gtk-module \
+   --disable-command-not-found \
+   --disable-cron \
+   --disable-dummy \
+   --enable-alpm
+   make
+}
+
+package() {
+   cd ${srcdir}/PackageKit-${pkgver}
+
+   make DESTDIR=${pkgdir} install
+}
+

Copied: packagekit/repos/community-i686/packagekit.install (from rev 126281, 
packagekit/trunk/packagekit.install)
===
--- community-i686/packagekit.install   (rev 0)
+++ community-i686/packagekit.install   2015-01-20 08:32:18 UTC (rev 126282)
@@ -0,0 +1,11 @@
+post_install() {
+   update-mime-database usr/share/mime  /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: packagekit/repos/community-x86_64/PKGBUILD (from rev 126281, 
packagekit/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-01-20 08:32:18 UTC (rev 126282)
@@ -0,0 +1,58 @@
+# Maintainer: Christian Hesse m...@eworm.de
+# Contributor: Jonathan Conder jonno.con...@gmail.com
+
+pkgname='packagekit'
+pkgver=1.0.4
+pkgrel=1
+pkgdesc='A system designed to make installation and updates of packages easier'
+arch=('i686' 'x86_64')
+url='http://www.packagekit.org/'
+license=('GPL')
+depends=('dbus-glib' 'pacman' 'polkit' 'shared-mime-info' 'sqlite')
+makedepends=('dbus-glib' 'gobject-introspection' 'gtk-doc' 'intltool'
+   'networkmanager' 'pacman=4.2.0'  'pm-utils' 'polkit'
+   'shared-mime-info' 'sqlite' 'bash-completion')
+optdepends=('networkmanager: detect connection status'
+   'bash-completion: command completion in bash')
+install='packagekit.install'
+backup=('var/lib/PackageKit/transactions.db'
+   

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

2015-01-20 Thread Antonio Rojas
Date: Tuesday, January 20, 2015 @ 10:02:09
  Author: arojas
Revision: 126284

Coinutils 2.10 rebuild

Modified:
  sage-mathematics/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-20 08:38:19 UTC (rev 126283)
+++ PKGBUILD2015-01-20 09:02:09 UTC (rev 126284)
@@ -9,7 +9,7 @@
 
 pkgname=sage-mathematics
 pkgver=6.4.1
-pkgrel=7
+pkgrel=8
 pkgdesc=Open Source Mathematics Software, free alternative to Magma, Maple, 
Mathematica, and Matlab
 arch=('i686' 'x86_64')
 url=http://www.sagemath.org;


[arch-commits] Commit in sage-mathematics/repos (28 files)

2015-01-20 Thread Antonio Rojas
Date: Tuesday, January 20, 2015 @ 10:03:43
  Author: arojas
Revision: 126285

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

Added:
  sage-mathematics/repos/community-staging-i686/
  sage-mathematics/repos/community-staging-i686/ChangeLog
(from rev 126284, sage-mathematics/trunk/ChangeLog)
  sage-mathematics/repos/community-staging-i686/PKGBUILD
(from rev 126284, sage-mathematics/trunk/PKGBUILD)
  sage-mathematics/repos/community-staging-i686/blas.patch
(from rev 126284, sage-mathematics/trunk/blas.patch)
  sage-mathematics/repos/community-staging-i686/c_lib.patch
(from rev 126284, sage-mathematics/trunk/c_lib.patch)
  sage-mathematics/repos/community-staging-i686/clean.patch
(from rev 126284, sage-mathematics/trunk/clean.patch)
  sage-mathematics/repos/community-staging-i686/env.patch
(from rev 126284, sage-mathematics/trunk/env.patch)
  sage-mathematics/repos/community-staging-i686/extensions.patch
(from rev 126284, sage-mathematics/trunk/extensions.patch)
  sage-mathematics/repos/community-staging-i686/fes02.patch
(from rev 126284, sage-mathematics/trunk/fes02.patch)
  sage-mathematics/repos/community-staging-i686/gap-hap.patch
(from rev 126284, sage-mathematics/trunk/gap-hap.patch)
  sage-mathematics/repos/community-staging-i686/paths.patch
(from rev 126284, sage-mathematics/trunk/paths.patch)
  sage-mathematics/repos/community-staging-i686/pexpect-del.patch
(from rev 126284, sage-mathematics/trunk/pexpect-del.patch)
  sage-mathematics/repos/community-staging-i686/pexpect-env.patch
(from rev 126284, sage-mathematics/trunk/pexpect-env.patch)
  sage-mathematics/repos/community-staging-i686/skip-check.patch
(from rev 126284, sage-mathematics/trunk/skip-check.patch)
  sage-mathematics/repos/community-staging-x86_64/
  sage-mathematics/repos/community-staging-x86_64/ChangeLog
(from rev 126284, sage-mathematics/trunk/ChangeLog)
  sage-mathematics/repos/community-staging-x86_64/PKGBUILD
(from rev 126284, sage-mathematics/trunk/PKGBUILD)
  sage-mathematics/repos/community-staging-x86_64/blas.patch
(from rev 126284, sage-mathematics/trunk/blas.patch)
  sage-mathematics/repos/community-staging-x86_64/c_lib.patch
(from rev 126284, sage-mathematics/trunk/c_lib.patch)
  sage-mathematics/repos/community-staging-x86_64/clean.patch
(from rev 126284, sage-mathematics/trunk/clean.patch)
  sage-mathematics/repos/community-staging-x86_64/env.patch
(from rev 126284, sage-mathematics/trunk/env.patch)
  sage-mathematics/repos/community-staging-x86_64/extensions.patch
(from rev 126284, sage-mathematics/trunk/extensions.patch)
  sage-mathematics/repos/community-staging-x86_64/fes02.patch
(from rev 126284, sage-mathematics/trunk/fes02.patch)
  sage-mathematics/repos/community-staging-x86_64/gap-hap.patch
(from rev 126284, sage-mathematics/trunk/gap-hap.patch)
  sage-mathematics/repos/community-staging-x86_64/paths.patch
(from rev 126284, sage-mathematics/trunk/paths.patch)
  sage-mathematics/repos/community-staging-x86_64/pexpect-del.patch
(from rev 126284, sage-mathematics/trunk/pexpect-del.patch)
  sage-mathematics/repos/community-staging-x86_64/pexpect-env.patch
(from rev 126284, sage-mathematics/trunk/pexpect-env.patch)
  sage-mathematics/repos/community-staging-x86_64/skip-check.patch
(from rev 126284, sage-mathematics/trunk/skip-check.patch)

+
 community-staging-i686/ChangeLog   |   11 +
 community-staging-i686/PKGBUILD|  150 +++
 community-staging-i686/blas.patch  |   30 +
 community-staging-i686/c_lib.patch |   26 
 community-staging-i686/clean.patch |   23 
 community-staging-i686/env.patch   |  127 ++
 community-staging-i686/extensions.patch|   12 ++
 community-staging-i686/fes02.patch |   45 
 community-staging-i686/gap-hap.patch   |   11 +
 community-staging-i686/paths.patch |   32 +
 community-staging-i686/pexpect-del.patch   |   15 ++
 community-staging-i686/pexpect-env.patch   |   32 +
 community-staging-i686/skip-check.patch|   21 +++
 community-staging-x86_64/ChangeLog |   11 +
 community-staging-x86_64/PKGBUILD  |  150 +++
 community-staging-x86_64/blas.patch|   30 +
 community-staging-x86_64/c_lib.patch   |   26 
 community-staging-x86_64/clean.patch   |   23 
 community-staging-x86_64/env.patch |  127 ++
 community-staging-x86_64/extensions.patch  |   12 ++
 community-staging-x86_64/fes02.patch   |   45 
 community-staging-x86_64/gap-hap.patch |   11 +
 community-staging-x86_64/paths.patch   |   32 +
 community-staging-x86_64/pexpect-del.patch |   15 ++
 community-staging-x86_64/pexpect-env.patch |   32 +
 community-staging-x86_64/skip-check.patch  |   21 

[arch-commits] Commit in qt5/repos/extra-i686 (12 files)

2015-01-20 Thread Andrea Scarpino
Date: Tuesday, January 20, 2015 @ 09:11:55
  Author: andrea
Revision: 229606

archrelease: copy trunk to extra-i686

Added:
  qt5/repos/extra-i686/PKGBUILD
(from rev 229605, qt5/trunk/PKGBUILD)
  qt5/repos/extra-i686/assistant.desktop
(from rev 229605, qt5/trunk/assistant.desktop)
  qt5/repos/extra-i686/designer.desktop
(from rev 229605, qt5/trunk/designer.desktop)
  qt5/repos/extra-i686/linguist.desktop
(from rev 229605, qt5/trunk/linguist.desktop)
  qt5/repos/extra-i686/qdbusviewer.desktop
(from rev 229605, qt5/trunk/qdbusviewer.desktop)
  qt5/repos/extra-i686/qt5-tools.install
(from rev 229605, qt5/trunk/qt5-tools.install)
Deleted:
  qt5/repos/extra-i686/PKGBUILD
  qt5/repos/extra-i686/assistant.desktop
  qt5/repos/extra-i686/designer.desktop
  qt5/repos/extra-i686/linguist.desktop
  qt5/repos/extra-i686/qdbusviewer.desktop
  qt5/repos/extra-i686/qt5-tools.install

-+
 PKGBUILD| 1073 +-
 assistant.desktop   |   16 
 designer.desktop|   20 
 linguist.desktop|   18 
 qdbusviewer.desktop |   18 
 qt5-tools.install   |   24 -
 6 files changed, 589 insertions(+), 580 deletions(-)

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


[arch-commits] Commit in qt5/repos/extra-x86_64 (12 files)

2015-01-20 Thread Andrea Scarpino
Date: Tuesday, January 20, 2015 @ 09:11:43
  Author: andrea
Revision: 229605

archrelease: copy trunk to extra-x86_64

Added:
  qt5/repos/extra-x86_64/PKGBUILD
(from rev 229604, qt5/trunk/PKGBUILD)
  qt5/repos/extra-x86_64/assistant.desktop
(from rev 229604, qt5/trunk/assistant.desktop)
  qt5/repos/extra-x86_64/designer.desktop
(from rev 229604, qt5/trunk/designer.desktop)
  qt5/repos/extra-x86_64/linguist.desktop
(from rev 229604, qt5/trunk/linguist.desktop)
  qt5/repos/extra-x86_64/qdbusviewer.desktop
(from rev 229604, qt5/trunk/qdbusviewer.desktop)
  qt5/repos/extra-x86_64/qt5-tools.install
(from rev 229604, qt5/trunk/qt5-tools.install)
Deleted:
  qt5/repos/extra-x86_64/PKGBUILD
  qt5/repos/extra-x86_64/assistant.desktop
  qt5/repos/extra-x86_64/designer.desktop
  qt5/repos/extra-x86_64/linguist.desktop
  qt5/repos/extra-x86_64/qdbusviewer.desktop
  qt5/repos/extra-x86_64/qt5-tools.install

-+
 PKGBUILD| 1073 +-
 assistant.desktop   |   16 
 designer.desktop|   20 
 linguist.desktop|   18 
 qdbusviewer.desktop |   18 
 qt5-tools.install   |   24 -
 6 files changed, 589 insertions(+), 580 deletions(-)

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


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

2015-01-20 Thread Christian Hesse
Date: Tuesday, January 20, 2015 @ 11:24:50
  Author: eworm
Revision: 126297

add qt4 and qt5-base to makedepends for packagekit-qt

This fixes build in chroot.

Modified:
  packagekit-qt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-20 10:07:17 UTC (rev 126296)
+++ PKGBUILD2015-01-20 10:24:50 UTC (rev 126297)
@@ -10,7 +10,7 @@
 url='http://www.packagekit.org/'
 license=('LGPL')
 depends=('packagekit')
-makedepends=('cmake')
+makedepends=('cmake' 'qt4' 'qt5-base')
 validpgpkeys=('163EB50119225DB3DF8F49EA17ACBA8DFA970E17') # Richard Hughes
 
source=(http://www.freedesktop.org/software/PackageKit/releases/PackageKit-Qt-${pkgver}.tar.xz{,.asc})
 sha256sums=('f4fb60b82d845d887de57ef44481301f966291912116e416d981156faf3620f0'


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

2015-01-20 Thread Christian Hesse
Date: Tuesday, January 20, 2015 @ 10:55:07
  Author: eworm
Revision: 126294

cmake is makedepend for packagekit-qt

Modified:
  packagekit-qt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-20 09:51:20 UTC (rev 126293)
+++ PKGBUILD2015-01-20 09:55:07 UTC (rev 126294)
@@ -10,6 +10,7 @@
 url='http://www.packagekit.org/'
 license=('LGPL')
 depends=('packagekit')
+makedepends=('cmake')
 validpgpkeys=('163EB50119225DB3DF8F49EA17ACBA8DFA970E17') # Richard Hughes
 
source=(http://www.freedesktop.org/software/PackageKit/releases/PackageKit-Qt-${pkgver}.tar.xz{,.asc})
 sha256sums=('f4fb60b82d845d887de57ef44481301f966291912116e416d981156faf3620f0'


[arch-commits] Commit in (11 files)

2015-01-20 Thread Christian Hesse
Date: Tuesday, January 20, 2015 @ 10:51:20
  Author: eworm
Revision: 126293

add svn keywork Id to my packages

Modified:
  ctemplate/trunk/PKGBUILD
  gitolite/trunk/PKGBUILD
  gnome-packagekit/trunk/PKGBUILD
  libiodbc/trunk/PKGBUILD
  mysql-connector-c++/trunk/PKGBUILD
  mysql-workbench/trunk/PKGBUILD
  packagekit-qt/trunk/PKGBUILD  (properties)
  packagekit/trunk/PKGBUILD
  swig2/trunk/PKGBUILD
  udns/trunk/PKGBUILD
  vsqlite++/trunk/PKGBUILD

+
 ctemplate/trunk/PKGBUILD   |1 +
 gitolite/trunk/PKGBUILD|1 +
 gnome-packagekit/trunk/PKGBUILD|1 +
 libiodbc/trunk/PKGBUILD|1 +
 mysql-connector-c++/trunk/PKGBUILD |1 +
 mysql-workbench/trunk/PKGBUILD |1 +
 packagekit-qt/trunk/PKGBUILD   |1 +
 packagekit/trunk/PKGBUILD  |1 +
 swig2/trunk/PKGBUILD   |1 +
 udns/trunk/PKGBUILD|1 +
 vsqlite++/trunk/PKGBUILD   |1 +
 11 files changed, 11 insertions(+)

Modified: ctemplate/trunk/PKGBUILD
===
--- ctemplate/trunk/PKGBUILD2015-01-20 09:42:33 UTC (rev 126292)
+++ ctemplate/trunk/PKGBUILD2015-01-20 09:51:20 UTC (rev 126293)
@@ -1,3 +1,4 @@
+# $Id$
 # Maintainer: Christian Hesse m...@eworm.de
 # Contributor: Marcel Korpel marcel[dot]korpel[at]gmail
 # Contributor: Ivan Sichmann Freitas ivansichfrei...@gmail.com

Modified: gitolite/trunk/PKGBUILD
===
--- gitolite/trunk/PKGBUILD 2015-01-20 09:42:33 UTC (rev 126292)
+++ gitolite/trunk/PKGBUILD 2015-01-20 09:51:20 UTC (rev 126293)
@@ -1,3 +1,4 @@
+# $Id$
 # Maintainer: Bartłomiej Piotrowski nos...@bpiotrowski.pl
 # Maintainer: Christian Hesse m...@eworm.de
 # Contributor: Jon Eyolfson j...@eyolfson.com

Modified: gnome-packagekit/trunk/PKGBUILD
===
--- gnome-packagekit/trunk/PKGBUILD 2015-01-20 09:42:33 UTC (rev 126292)
+++ gnome-packagekit/trunk/PKGBUILD 2015-01-20 09:51:20 UTC (rev 126293)
@@ -1,3 +1,4 @@
+# $Id$
 # Maintainer: Christian Hesse m...@eworm.de
 # Contributor: Balló György ballogyor+arch at gmail dot com
 # Contributor: Jonathan Conder jonno.con...@gmail.com

Modified: libiodbc/trunk/PKGBUILD
===
--- libiodbc/trunk/PKGBUILD 2015-01-20 09:42:33 UTC (rev 126292)
+++ libiodbc/trunk/PKGBUILD 2015-01-20 09:51:20 UTC (rev 126293)
@@ -1,3 +1,4 @@
+# $Id$
 # Maintainer: Christian Hesse m...@eworm.de
 # Contributor: Andrea Scarpino and...@archlinux.org
 # Contributor: Pierre Schmitz pie...@archlinux.de

Modified: mysql-connector-c++/trunk/PKGBUILD
===
--- mysql-connector-c++/trunk/PKGBUILD  2015-01-20 09:42:33 UTC (rev 126292)
+++ mysql-connector-c++/trunk/PKGBUILD  2015-01-20 09:51:20 UTC (rev 126293)
@@ -1,3 +1,4 @@
+# $Id$
 # Maintainer: Christian Hesse m...@eworm.de
 # Contributor: Marcel Korpel marcel[dot]korpel[at]gmail
 # Contributor: Muflone http://www.muflone.com/contacts/english/

Modified: mysql-workbench/trunk/PKGBUILD
===
--- mysql-workbench/trunk/PKGBUILD  2015-01-20 09:42:33 UTC (rev 126292)
+++ mysql-workbench/trunk/PKGBUILD  2015-01-20 09:51:20 UTC (rev 126293)
@@ -1,3 +1,4 @@
+# $Id$
 # Maintainer: Christian Hesse m...@eworm.de
 # Contributor: Alexandre Boily alexandrebo...@gmail.com
 # Contributor: Illarion Kovalchuk illarion.kovalc...@gmail.com

Modified: packagekit/trunk/PKGBUILD
===
--- packagekit/trunk/PKGBUILD   2015-01-20 09:42:33 UTC (rev 126292)
+++ packagekit/trunk/PKGBUILD   2015-01-20 09:51:20 UTC (rev 126293)
@@ -1,3 +1,4 @@
+# $Id$
 # Maintainer: Christian Hesse m...@eworm.de
 # Contributor: Jonathan Conder jonno.con...@gmail.com
 

Index: packagekit-qt/trunk/PKGBUILD
===
--- packagekit-qt/trunk/PKGBUILD2015-01-20 09:42:33 UTC (rev 126292)
+++ packagekit-qt/trunk/PKGBUILD2015-01-20 09:51:20 UTC (rev 126293)

Property changes on: packagekit-qt/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Modified: swig2/trunk/PKGBUILD
===
--- swig2/trunk/PKGBUILD2015-01-20 09:42:33 UTC (rev 126292)
+++ swig2/trunk/PKGBUILD2015-01-20 09:51:20 UTC (rev 126293)
@@ -1,3 +1,4 @@
+# $Id$
 # Maintainer: Christian Hesse m...@eworm.de
 # Contributor: Hilton Medeiros medeiros.hilton at gmail dot com
 # Contributor: Jason Chu ja...@archlinux.org

Modified: udns/trunk/PKGBUILD
===
--- 

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

2015-01-20 Thread Andrea Scarpino
Date: Tuesday, January 20, 2015 @ 13:53:47
  Author: andrea
Revision: 229607

This is no more needed and it also broke some prl file

Modified:
  qt5/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-20 08:11:55 UTC (rev 229606)
+++ PKGBUILD2015-01-20 12:53:47 UTC (rev 229607)
@@ -27,7 +27,7 @@
  'qt5-x11extras'
  'qt5-xmlpatterns')
 pkgver=5.4.0
-pkgrel=2
+pkgrel=3
 arch=('i686' 'x86_64')
 url='http://qt-project.org/'
 license=('GPL3' 'LGPL' 'FDL' 'custom')
@@ -51,7 +51,8 @@
 prepare() {
   cd ${_pkgfqn}
 
-  # Build using Arch {C,LD}FLAGS
+  # Build qmake using Arch {C,LD}FLAGS
+  # This also sets default {C,XX,LD}FLAGS for projects built using qmake
   sed -i -e s|^\(QMAKE_CFLAGS_RELEASE.*\)|\1 ${CFLAGS}| \
 qtbase/mkspecs/common/gcc-base.conf
   sed -i -e s|^\(QMAKE_LFLAGS_RELEASE.*\)|\1 ${LDFLAGS}| \
@@ -60,7 +61,7 @@
   # Use python2 for Python 2.x
   find . -name '*.py' -exec sed -i \
 's|#![ ]*/usr/bin/python$|2|;s|#![ ]*/usr/bin/env python$|2|' {} +
-  # There are still a lot of relative calls which need a workaround
+  # in qtwebengine there are still a lot of relative calls which need a 
workaround
   mkdir ${srcdir}/python2-path
   ln -s /usr/bin/python2 ${srcdir}/python2-path/python
 }
@@ -139,8 +140,8 @@
 ${pkgdir}/usr/share/licenses/${pkgname}/LGPL_EXCEPTION.txt
 
   # Fix wrong path in prl files
-  find ${pkgdir}/usr/lib -type f -name '*.prl' \
--exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d;s/\(QMAKE_PRL_LIBS =\).*/\1/' {} 
\;
+   find ${pkgdir}/usr/lib -type f -name '*.prl' \
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
 
   # Fix wrong qmake path in pri file
   sed -i s|${srcdir}/${_pkgfqn}/qtbase|/usr| \
@@ -162,7 +163,7 @@
 
   # Fix wrong path in prl files
   find ${pkgdir}/usr/lib -type f -name '*.prl' \
--exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d;s/\(QMAKE_PRL_LIBS =\).*/\1/' {} 
\;
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
 
   install -D -m644 LGPL_EXCEPTION.txt \
 ${pkgdir}/usr/share/licenses/${pkgname}/LGPL_EXCEPTION.txt
@@ -178,7 +179,7 @@
 
   # Fix wrong path in prl files
   find ${pkgdir}/usr/lib -type f -name '*.prl' \
--exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d;s/\(QMAKE_PRL_LIBS =\).*/\1/' {} 
\;
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
 
   # Useful symlinks
   install -d ${pkgdir}/usr/bin
@@ -216,7 +217,7 @@
 
   # Fix wrong path in prl files
   find ${pkgdir}/usr/lib -type f -name '*.prl' \
--exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d;s/\(QMAKE_PRL_LIBS =\).*/\1/' {} 
\;
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
 
   install -D -m644 LGPL_EXCEPTION.txt \
 ${pkgdir}/usr/share/licenses/${pkgname}/LGPL_EXCEPTION.txt
@@ -232,7 +233,7 @@
 
   # Fix wrong path in prl files
   find ${pkgdir}/usr/lib -type f -name '*.prl' \
--exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d;s/\(QMAKE_PRL_LIBS =\).*/\1/' {} 
\;
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
 
   # Useful symlinks
   install -d ${pkgdir}/usr/bin
@@ -267,7 +268,7 @@
 
   # Fix wrong path in prl files
   find ${pkgdir}/usr/lib -type f -name '*.prl' \
--exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d;s/\(QMAKE_PRL_LIBS =\).*/\1/' {} 
\;
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
 
   install -D -m644 LGPL_EXCEPTION.txt \
 ${pkgdir}/usr/share/licenses/${pkgname}/LGPL_EXCEPTION.txt
@@ -305,7 +306,7 @@
 
   # Fix wrong path in prl files
   find ${pkgdir}/usr/lib -type f -name '*.prl' \
--exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d;s/\(QMAKE_PRL_LIBS =\).*/\1/' {} 
\;
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
 
   install -D -m644 LGPL_EXCEPTION.txt \
 ${pkgdir}/usr/share/licenses/${pkgname}/LGPL_EXCEPTION.txt
@@ -321,7 +322,7 @@
 
   # Fix wrong path in prl files
   find ${pkgdir}/usr/lib -type f -name '*.prl' \
--exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d;s/\(QMAKE_PRL_LIBS =\).*/\1/' {} 
\;
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
 
   # Useful symlinks
   install -d ${pkgdir}/usr/bin
@@ -354,7 +355,7 @@
 
   # Fix wrong path in prl files
   find ${pkgdir}/usr/lib -type f -name '*.prl' \
--exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d;s/\(QMAKE_PRL_LIBS =\).*/\1/' {} 
\;
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
 
   install -D -m644 LGPL_EXCEPTION.txt \
 ${pkgdir}/usr/share/licenses/${pkgname}/LGPL_EXCEPTION.txt
@@ -369,7 +370,7 @@
 
   # Fix wrong path in prl files
   find ${pkgdir}/usr/lib -type f -name '*.prl' \
--exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d;s/\(QMAKE_PRL_LIBS =\).*/\1/' {} 
\;
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
 
   install -D -m644 LGPL_EXCEPTION.txt \
 ${pkgdir}/usr/share/licenses/${pkgname}/LGPL_EXCEPTION.txt
@@ -384,7 +385,7 @@
 
   # Fix wrong path in prl files
   find ${pkgdir}/usr/lib -type f -name '*.prl' \
--exec sed -i 

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

2015-01-20 Thread Massimiliano Torromeo
Date: Tuesday, January 20, 2015 @ 11:07:17
  Author: mtorromeo
Revision: 126296

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

Added:
  snapper/repos/community-i686/PKGBUILD
(from rev 126295, snapper/trunk/PKGBUILD)
  snapper/repos/community-x86_64/PKGBUILD
(from rev 126295, snapper/trunk/PKGBUILD)
Deleted:
  snapper/repos/community-i686/PKGBUILD
  snapper/repos/community-i686/cleanup.service
  snapper/repos/community-i686/cleanup.timer
  snapper/repos/community-i686/timeline.service
  snapper/repos/community-i686/timeline.timer
  snapper/repos/community-x86_64/PKGBUILD
  snapper/repos/community-x86_64/cleanup.service
  snapper/repos/community-x86_64/cleanup.timer
  snapper/repos/community-x86_64/timeline.service
  snapper/repos/community-x86_64/timeline.timer

---+
 /PKGBUILD |  158 
 community-i686/PKGBUILD   |   86 ---
 community-i686/cleanup.service|9 --
 community-i686/cleanup.timer  |   12 --
 community-i686/timeline.service   |9 --
 community-i686/timeline.timer |   12 --
 community-x86_64/PKGBUILD |   86 ---
 community-x86_64/cleanup.service  |9 --
 community-x86_64/cleanup.timer|   12 --
 community-x86_64/timeline.service |9 --
 community-x86_64/timeline.timer   |   12 --
 11 files changed, 158 insertions(+), 256 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-01-20 10:06:24 UTC (rev 126295)
+++ community-i686/PKGBUILD 2015-01-20 10:07:17 UTC (rev 126296)
@@ -1,86 +0,0 @@
-# Maintainer: Massimiliano Torromeo massimiliano.torro...@gmail.com
-# Contributor: Tom Kuther gim...@sonnenkinder.org
-
-pkgname=snapper
-pkgver=0.2.4
-pkgrel=2
-pkgdesc=A tool for managing BTRFS and LVM snapshots. It can create, diff and 
restore snapshots and provides timelined auto-snapping.
-arch=('i686' 'x86_64')
-url=http://snapper.io;
-license=('GPL2')
-depends=('btrfs-progs' 'libxml2' 'dbus' 'boost-libs' 'acl')
-makedepends=('boost' 'lvm2' 'libxslt' 'docbook-xsl' 'pam' 'git' 'systemd')
-optdepends=('pam: pam_snapper')
-backup=('etc/conf.d/snapper')
-source=(ftp://ftp.suse.com/pub/projects/$pkgname/$pkgname-$pkgver.tar.bz2;
-cleanup.timer
-cleanup.service
-timeline.timer
-timeline.service)
-
-prepare() {
-  cd $srcdir/$pkgname-$pkgver
-
-  # fix for btrfs-progs 3.16
-  sed 's/BTRFS_LIB_VERSION (100)/BTRFS_LIB_VERSION (101)/g' -i snapper/Btrfs.cc
-
-  # boost fixlets - Arch doesn't use -mt suffix
-  sed -e 's@lboost_thread-mt@lboost_thread@g' \
-  -e 's@lboost_system-mt@lboost_system@g' \
-  -i snapper/Makefile.am
-
-  # cron names
-  sed -e 's...@suse.de-snapper@snapper@g' -i scripts/Makefile.am
-
-  # fix sysconf dir
-  sed -e 's@/etc/sysconfig@/etc/conf.d@g' -i scripts/*snapper*
-
-  # fix pam plugin install location
-  sed -i -e 's@shell echo /@shell echo /usr/@g' pam/Makefile.am
-
-  # all in /usr/bin
-  sed -i -e 's@/usr/sbin@/usr/bin@g' data/org.opensuse.Snapper.service
-
-# NTP drift file location
-  sed -i -e 's@/var/lib/ntp/drift/ntp.drift@/var/lib/ntp/ntp.drift@' 
data/base.txt
-
-  # man pages sysconfig location
-  sed -i -e 's@/etc/sysconfig@/etc/conf.d@g' doc/*
-}
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-
-  aclocal
-  libtoolize --force --automake --copy
-  autoheader
-  automake --add-missing --copy
-  autoconf
-  ./configure --prefix=/usr \
-  --sbindir=/usr/bin \
-  --with-conf=/etc/conf.d \
-  --disable-zypp \
-  --disable-silent-rules
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-
-  make DESTDIR=$pkgdir install
-  install -Dm644 data/sysconfig.snapper $pkgdir/etc/conf.d/snapper
-  install -Dm755 client/.libs/systemd-helper 
$pkgdir/usr/lib/snapper/systemd-helper
-
-  rm -f $pkgdir/etc/snapper/zypp-plugin.conf
-  rm -f $pkgdir/usr/share/man/man*/snapper-zypp-plugin.*.gz
-
-  for unit in {cleanup,timeline}.{timer,service}; do
-install -Dm644 $srcdir/$unit 
$pkgdir/usr/lib/systemd/system/snapper-$unit
-  done
-}
-
-sha256sums=('8fc70b8e7a39dc3249ce9141e2c5f0623bb80f8e4150a543d8ed04d2ad27f399'
-'7c0a695b4d70b3d6aa25789b478ceca86ac3dab6f678045df4907b2c020341f9'
-'d2f2571e92ffe612529d69a96bd725b4bd040fc36043d98dc1e09b6efcb65894'
-'b62f61261e45587a38bcbe6468b8932259740984151db1636d299ddafbe3f7a9'
-'fb01465a6ba7c202c5b1aecb92b99bfcbcd7cdceb0448d84224a108481805bd5')

Copied: snapper/repos/community-i686/PKGBUILD (from rev 126295, 
snapper/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-01-20 10:07:17 UTC (rev 126296)
@@ -0,0 +1,79 @@
+# Maintainer: Massimiliano Torromeo massimiliano.torro...@gmail.com
+# Contributor: 

[arch-commits] Commit in polarssl/trunk (CVE-2015-1182.patch PKGBUILD)

2015-01-20 Thread Kyle Keen
Date: Tuesday, January 20, 2015 @ 13:04:44
  Author: kkeen
Revision: 126298

upgpkg: polarssl 1.3.9-2 FS#43508

Added:
  polarssl/trunk/CVE-2015-1182.patch
Modified:
  polarssl/trunk/PKGBUILD

-+
 CVE-2015-1182.patch |   13 +
 PKGBUILD|   13 ++---
 2 files changed, 23 insertions(+), 3 deletions(-)

Added: CVE-2015-1182.patch
===
--- CVE-2015-1182.patch (rev 0)
+++ CVE-2015-1182.patch 2015-01-20 12:04:44 UTC (rev 126298)
@@ -0,0 +1,13 @@
+diff --git a/library/asn1parse.c b/library/asn1parse.c
+index a3a2b56..e2117bf 100644
+--- a/library/asn1parse.c
 b/library/asn1parse.c
+@@ -278,6 +278,8 @@ int asn1_get_sequence_of( unsigned char **p,
+ if( cur-next == NULL )
+ return( POLARSSL_ERR_ASN1_MALLOC_FAILED );
+
++memset( cur-next, 0, sizeof( asn1_sequence ) );
++
+ cur = cur-next;
+ }
+ }

Modified: PKGBUILD
===
--- PKGBUILD2015-01-20 10:24:50 UTC (rev 126297)
+++ PKGBUILD2015-01-20 12:04:44 UTC (rev 126298)
@@ -5,15 +5,17 @@
 
 pkgname=polarssl
 pkgver=1.3.9
-pkgrel=1
+pkgrel=2
 pkgdesc=Portable cryptographic and SSL/TLS library
 arch=('i686' 'x86_64')
 url=https://www.polarssl.org/;
 license=('GPL2')
 source=(https://polarssl.org/download/polarssl-$pkgver-gpl.tgz;
-programs.makefile.patch)
+programs.makefile.patch
+CVE-2015-1182.patch)
 sha1sums=('3462b4455e1443ac1a1007fbd69861ebfb5c5506'
-  '1e9e7d3dcdd6932b02d6dcabdf45041a3726f1be')
+  '1e9e7d3dcdd6932b02d6dcabdf45041a3726f1be'
+  '94317c4757063d006fb4e666b522b581326ba708')
 depends=('glibc')
 options=('staticlibs')
 
@@ -21,6 +23,11 @@
 # https://github.com/alucryd/aur-alucryd/blob/master/personal/polarssl/PKGBUILD
 # https://aur.archlinux.org/packages/po/polarssl-git/PKGBUILD
 
+prepare() {
+  cd $pkgname-$pkgver
+  patch -p1 -i $srcdir/CVE-2015-1182.patch
+}
+
 build() {
   cd $pkgname-$pkgver
   sed -i 's|//\(#define POLARSSL_THREADING_C\)|\1|' include/polarssl/config.h


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

2015-01-20 Thread Kyle Keen
Date: Tuesday, January 20, 2015 @ 13:05:53
  Author: kkeen
Revision: 126299

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

Added:
  polarssl/repos/community-i686/CVE-2015-1182.patch
(from rev 126298, polarssl/trunk/CVE-2015-1182.patch)
  polarssl/repos/community-i686/PKGBUILD
(from rev 126298, polarssl/trunk/PKGBUILD)
  polarssl/repos/community-i686/programs.makefile.patch
(from rev 126298, polarssl/trunk/programs.makefile.patch)
  polarssl/repos/community-x86_64/CVE-2015-1182.patch
(from rev 126298, polarssl/trunk/CVE-2015-1182.patch)
  polarssl/repos/community-x86_64/PKGBUILD
(from rev 126298, polarssl/trunk/PKGBUILD)
  polarssl/repos/community-x86_64/programs.makefile.patch
(from rev 126298, polarssl/trunk/programs.makefile.patch)
Deleted:
  polarssl/repos/community-i686/PKGBUILD
  polarssl/repos/community-i686/programs.makefile.patch
  polarssl/repos/community-x86_64/PKGBUILD
  polarssl/repos/community-x86_64/programs.makefile.patch

--+
 /PKGBUILD|   96 +
 /programs.makefile.patch |   44 +
 community-i686/CVE-2015-1182.patch   |   13 +++
 community-i686/PKGBUILD  |   41 
 community-i686/programs.makefile.patch   |   22 --
 community-x86_64/CVE-2015-1182.patch |   13 +++
 community-x86_64/PKGBUILD|   41 
 community-x86_64/programs.makefile.patch |   22 --
 8 files changed, 166 insertions(+), 126 deletions(-)

Copied: polarssl/repos/community-i686/CVE-2015-1182.patch (from rev 126298, 
polarssl/trunk/CVE-2015-1182.patch)
===
--- community-i686/CVE-2015-1182.patch  (rev 0)
+++ community-i686/CVE-2015-1182.patch  2015-01-20 12:05:53 UTC (rev 126299)
@@ -0,0 +1,13 @@
+diff --git a/library/asn1parse.c b/library/asn1parse.c
+index a3a2b56..e2117bf 100644
+--- a/library/asn1parse.c
 b/library/asn1parse.c
+@@ -278,6 +278,8 @@ int asn1_get_sequence_of( unsigned char **p,
+ if( cur-next == NULL )
+ return( POLARSSL_ERR_ASN1_MALLOC_FAILED );
+
++memset( cur-next, 0, sizeof( asn1_sequence ) );
++
+ cur = cur-next;
+ }
+ }

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-01-20 12:04:44 UTC (rev 126298)
+++ community-i686/PKGBUILD 2015-01-20 12:05:53 UTC (rev 126299)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen keen...@gmail.com
-# Contributor: Mihai Militaru mihai militaru at xmpp dot ro
-# Contributor: carstene1ns arch carsten-teibes.de
-
-pkgname=polarssl
-pkgver=1.3.9
-pkgrel=1
-pkgdesc=Portable cryptographic and SSL/TLS library
-arch=('i686' 'x86_64')
-url=https://www.polarssl.org/;
-license=('GPL2')
-source=(https://polarssl.org/download/polarssl-$pkgver-gpl.tgz;
-programs.makefile.patch)
-sha1sums=('3462b4455e1443ac1a1007fbd69861ebfb5c5506'
-  '1e9e7d3dcdd6932b02d6dcabdf45041a3726f1be')
-depends=('glibc')
-options=('staticlibs')
-
-# 
http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/net-libs/polarssl/files/polarssl-1.3.8-ssl_pthread_server.patch
-# https://github.com/alucryd/aur-alucryd/blob/master/personal/polarssl/PKGBUILD
-# https://aur.archlinux.org/packages/po/polarssl-git/PKGBUILD
-
-build() {
-  cd $pkgname-$pkgver
-  sed -i 's|//\(#define POLARSSL_THREADING_C\)|\1|' include/polarssl/config.h
-  sed -i 's|//\(#define POLARSSL_THREADING_PTHREAD\)|\1|' 
include/polarssl/config.h
-  # enable cert_write
-  patch -p1 -d programs -i $srcdir/programs.makefile.patch
-  LDFLAGS+= -I../include  make SHARED=1 no_test
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make SHARED=1 check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir/usr install
-}

Copied: polarssl/repos/community-i686/PKGBUILD (from rev 126298, 
polarssl/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-01-20 12:05:53 UTC (rev 126299)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Kyle Keen keen...@gmail.com
+# Contributor: Mihai Militaru mihai militaru at xmpp dot ro
+# Contributor: carstene1ns arch carsten-teibes.de
+
+pkgname=polarssl
+pkgver=1.3.9
+pkgrel=2
+pkgdesc=Portable cryptographic and SSL/TLS library
+arch=('i686' 'x86_64')
+url=https://www.polarssl.org/;
+license=('GPL2')
+source=(https://polarssl.org/download/polarssl-$pkgver-gpl.tgz;
+programs.makefile.patch
+CVE-2015-1182.patch)
+sha1sums=('3462b4455e1443ac1a1007fbd69861ebfb5c5506'
+  '1e9e7d3dcdd6932b02d6dcabdf45041a3726f1be'
+  '94317c4757063d006fb4e666b522b581326ba708')
+depends=('glibc')
+options=('staticlibs')
+
+# 

[arch-commits] Commit in snapper/trunk (5 files)

2015-01-20 Thread Massimiliano Torromeo
Date: Tuesday, January 20, 2015 @ 11:06:24
  Author: mtorromeo
Revision: 126295

upgpkg: snapper 0.2.5-1

Updated to 0.2.5

Modified:
  snapper/trunk/PKGBUILD
Deleted:
  snapper/trunk/cleanup.service
  snapper/trunk/cleanup.timer
  snapper/trunk/timeline.service
  snapper/trunk/timeline.timer

--+
 PKGBUILD |   29 +++--
 cleanup.service  |9 -
 cleanup.timer|   12 
 timeline.service |9 -
 timeline.timer   |   12 
 5 files changed, 11 insertions(+), 60 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-01-20 09:55:07 UTC (rev 126294)
+++ PKGBUILD2015-01-20 10:06:24 UTC (rev 126295)
@@ -2,8 +2,8 @@
 # Contributor: Tom Kuther gim...@sonnenkinder.org
 
 pkgname=snapper
-pkgver=0.2.4
-pkgrel=2
+pkgver=0.2.5
+pkgrel=1
 pkgdesc=A tool for managing BTRFS and LVM snapshots. It can create, diff and 
restore snapshots and provides timelined auto-snapping.
 arch=('i686' 'x86_64')
 url=http://snapper.io;
@@ -12,18 +12,11 @@
 makedepends=('boost' 'lvm2' 'libxslt' 'docbook-xsl' 'pam' 'git' 'systemd')
 optdepends=('pam: pam_snapper')
 backup=('etc/conf.d/snapper')
-source=(ftp://ftp.suse.com/pub/projects/$pkgname/$pkgname-$pkgver.tar.bz2;
-cleanup.timer
-cleanup.service
-timeline.timer
-timeline.service)
+source=(ftp://ftp.suse.com/pub/projects/$pkgname/$pkgname-$pkgver.tar.bz2;)
 
 prepare() {
   cd $srcdir/$pkgname-$pkgver
 
-  # fix for btrfs-progs 3.16
-  sed 's/BTRFS_LIB_VERSION (100)/BTRFS_LIB_VERSION (101)/g' -i snapper/Btrfs.cc
-
   # boost fixlets - Arch doesn't use -mt suffix
   sed -e 's@lboost_thread-mt@lboost_thread@g' \
   -e 's@lboost_system-mt@lboost_system@g' \
@@ -68,19 +61,19 @@
   cd $srcdir/$pkgname-$pkgver
 
   make DESTDIR=$pkgdir install
-  install -Dm644 data/sysconfig.snapper $pkgdir/etc/conf.d/snapper
-  install -Dm755 client/.libs/systemd-helper 
$pkgdir/usr/lib/snapper/systemd-helper
+  install -Dm644 data/sysconfig.snapper \
+$pkgdir/etc/conf.d/snapper
+  install -Dm755 client/.libs/systemd-helper \
+$pkgdir/usr/lib/snapper/systemd-helper
 
   rm -f $pkgdir/etc/snapper/zypp-plugin.conf
   rm -f $pkgdir/usr/share/man/man*/snapper-zypp-plugin.*.gz
 
+  cd data
   for unit in {cleanup,timeline}.{timer,service}; do
-install -Dm644 $srcdir/$unit 
$pkgdir/usr/lib/systemd/system/snapper-$unit
+install -Dm644 $unit \
+  $pkgdir/usr/lib/systemd/system/snapper-$unit
   done
 }
 
-sha256sums=('8fc70b8e7a39dc3249ce9141e2c5f0623bb80f8e4150a543d8ed04d2ad27f399'
-'7c0a695b4d70b3d6aa25789b478ceca86ac3dab6f678045df4907b2c020341f9'
-'d2f2571e92ffe612529d69a96bd725b4bd040fc36043d98dc1e09b6efcb65894'
-'b62f61261e45587a38bcbe6468b8932259740984151db1636d299ddafbe3f7a9'
-'fb01465a6ba7c202c5b1aecb92b99bfcbcd7cdceb0448d84224a108481805bd5')
+sha256sums=('48bf3c3d409ab58ee06db77390a64889c44593ed824463fbfe707aa31d6831ea')

Deleted: cleanup.service
===
--- cleanup.service 2015-01-20 09:55:07 UTC (rev 126294)
+++ cleanup.service 2015-01-20 10:06:24 UTC (rev 126295)
@@ -1,9 +0,0 @@
-
-[Unit]
-Description=Daily Cleanup of Snapper Snapshots
-Documentation=man:snapper(8) man:snapper-configs(5)
-
-[Service]
-Type=simple
-ExecStart=/usr/lib/snapper/systemd-helper --cleanup
-

Deleted: cleanup.timer
===
--- cleanup.timer   2015-01-20 09:55:07 UTC (rev 126294)
+++ cleanup.timer   2015-01-20 10:06:24 UTC (rev 126295)
@@ -1,12 +0,0 @@
-
-[Unit]
-Description=Daily Cleanup of Snapper Snapshots
-Documentation=man:snapper(8) man:snapper-configs(5)
-
-[Timer]
-OnBootSec=10m
-OnUnitActiveSec=1d
-
-[Install]
-WantedBy=basic.target
-

Deleted: timeline.service
===
--- timeline.service2015-01-20 09:55:07 UTC (rev 126294)
+++ timeline.service2015-01-20 10:06:24 UTC (rev 126295)
@@ -1,9 +0,0 @@
-
-[Unit]
-Description=Timeline of Snapper Snapshots
-Documentation=man:snapper(8) man:snapper-configs(5)
-
-[Service]
-Type=simple
-ExecStart=/usr/lib/snapper/systemd-helper --timeline
-

Deleted: timeline.timer
===
--- timeline.timer  2015-01-20 09:55:07 UTC (rev 126294)
+++ timeline.timer  2015-01-20 10:06:24 UTC (rev 126295)
@@ -1,12 +0,0 @@
-
-[Unit]
-Description=Timeline of Snapper Snapshots
-Documentation=man:snapper(8) man:snapper-configs(5)
-
-[Timer]
-OnCalendar=hourly
-Persistent=true
-
-[Install]
-WantedBy=basic.target
-


[arch-commits] Commit in qt5/trunk (PKGBUILD kdebug-329174.patch)

2015-01-20 Thread Andrea Scarpino
Date: Tuesday, January 20, 2015 @ 14:38:15
  Author: andrea
Revision: 229608

Handle SelectionClientClose in QXcbClipboard (KDEBUG#329174)

Added:
  qt5/trunk/kdebug-329174.patch
Modified:
  qt5/trunk/PKGBUILD

-+
 PKGBUILD|   50 --
 kdebug-329174.patch |   39 +++
 2 files changed, 67 insertions(+), 22 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-01-20 12:53:47 UTC (rev 229607)
+++ PKGBUILD2015-01-20 13:38:15 UTC (rev 229608)
@@ -41,18 +41,20 @@
 groups=('qt' 'qt5')
 _pkgfqn=qt-everywhere-opensource-src-${pkgver}
 
source=(http://download.qt-project.org/official_releases/qt/${pkgver%.*}/${pkgver}/single/${_pkgfqn}.tar.xz;
-'assistant.desktop' 'designer.desktop' 'linguist.desktop' 
'qdbusviewer.desktop')
+'assistant.desktop' 'designer.desktop' 'linguist.desktop' 
'qdbusviewer.desktop'
+'kdebug-329174.patch')
 md5sums=('21843b00ecde8956217faab391bc007b'
  'b2897dd6a2967bccf8f10e397aafee55'
  '9638a78e502719ef8fe5f8d10d0361a9'
  '188da8f4c87316e730ebf1c6217bf5a0'
- '322b419b16c75d4de0ee7ad0a246caa1')
+ '322b419b16c75d4de0ee7ad0a246caa1'
+ 'f69ac1589a661f232fb86ad32e293b28')
 
 prepare() {
   cd ${_pkgfqn}
 
   # Build qmake using Arch {C,LD}FLAGS
-  # This also sets default {C,XX,LD}FLAGS for projects built using qmake
+  # This also sets default {C,CXX,LD}FLAGS for projects built using qmake
   sed -i -e s|^\(QMAKE_CFLAGS_RELEASE.*\)|\1 ${CFLAGS}| \
 qtbase/mkspecs/common/gcc-base.conf
   sed -i -e s|^\(QMAKE_LFLAGS_RELEASE.*\)|\1 ${LDFLAGS}| \
@@ -64,6 +66,10 @@
   # in qtwebengine there are still a lot of relative calls which need a 
workaround
   mkdir ${srcdir}/python2-path
   ln -s /usr/bin/python2 ${srcdir}/python2-path/python
+
+  # Fixed in 5.4.1
+  cd qtbase
+  patch -p1 -i ${srcdir}/kdebug-329174.patch
 }
 
 build() {
@@ -139,8 +145,8 @@
   install -D -m644 LGPL_EXCEPTION.txt \
 ${pkgdir}/usr/share/licenses/${pkgname}/LGPL_EXCEPTION.txt
 
-  # Fix wrong path in prl files
-   find ${pkgdir}/usr/lib -type f -name '*.prl' \
+  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
+  find ${pkgdir}/usr/lib -type f -name '*.prl' \
 -exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
 
   # Fix wrong qmake path in pri file
@@ -161,7 +167,7 @@
   cd ${_pkgfqn}/qtconnectivity
   make INSTALL_ROOT=${pkgdir} install
 
-  # Fix wrong path in prl files
+  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
   find ${pkgdir}/usr/lib -type f -name '*.prl' \
 -exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
 
@@ -177,7 +183,7 @@
   cd ${_pkgfqn}/qtdeclarative
   make INSTALL_ROOT=${pkgdir} install
 
-  # Fix wrong path in prl files
+  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
   find ${pkgdir}/usr/lib -type f -name '*.prl' \
 -exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
 
@@ -215,7 +221,7 @@
   cd ${_pkgfqn}/qtenginio
   make INSTALL_ROOT=${pkgdir} install
 
-  # Fix wrong path in prl files
+  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
   find ${pkgdir}/usr/lib -type f -name '*.prl' \
 -exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
 
@@ -231,7 +237,7 @@
   cd ${_pkgfqn}/qtxmlpatterns
   make INSTALL_ROOT=${pkgdir} install
 
-  # Fix wrong path in prl files
+  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
   find ${pkgdir}/usr/lib -type f -name '*.prl' \
 -exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
 
@@ -266,7 +272,7 @@
   cd ${_pkgfqn}/qtmultimedia
   make INSTALL_ROOT=${pkgdir} install
 
-  # Fix wrong path in prl files
+  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
   find ${pkgdir}/usr/lib -type f -name '*.prl' \
 -exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
 
@@ -304,7 +310,7 @@
   cd ${_pkgfqn}/qtlocation
   make INSTALL_ROOT=${pkgdir} install
 
-  # Fix wrong path in prl files
+  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
   find ${pkgdir}/usr/lib -type f -name '*.prl' \
 -exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
 
@@ -320,7 +326,7 @@
   cd ${_pkgfqn}/qtquick1
   make INSTALL_ROOT=${pkgdir} install
 
-  # Fix wrong path in prl files
+  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
   find ${pkgdir}/usr/lib -type f -name '*.prl' \
 -exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
 
@@ -353,7 +359,7 @@
   cd ${_pkgfqn}/qtscript
   make INSTALL_ROOT=${pkgdir} install
 
-  # Fix wrong path in prl files
+  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
   find ${pkgdir}/usr/lib -type f -name '*.prl' \
 -exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
 
@@ -368,7 +374,7 @@
   cd ${_pkgfqn}/qtsensors
   make INSTALL_ROOT=${pkgdir} install
 
-  # Fix wrong path in prl files
+  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
   find ${pkgdir}/usr/lib -type f -name '*.prl' 

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

2015-01-20 Thread Maxime Gauduin
Date: Tuesday, January 20, 2015 @ 15:33:21
  Author: alucryd
Revision: 126309

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

Added:
  higan-qt/repos/community-i686/PKGBUILD
(from rev 126308, higan-qt/trunk/PKGBUILD)
  higan-qt/repos/community-i686/higan
(from rev 126308, higan-qt/trunk/higan)
  higan-qt/repos/community-i686/higan-makefile.patch
(from rev 126308, higan-qt/trunk/higan-makefile.patch)
  higan-qt/repos/community-x86_64/PKGBUILD
(from rev 126308, higan-qt/trunk/PKGBUILD)
  higan-qt/repos/community-x86_64/higan
(from rev 126308, higan-qt/trunk/higan)
  higan-qt/repos/community-x86_64/higan-makefile.patch
(from rev 126308, higan-qt/trunk/higan-makefile.patch)
Deleted:
  higan-qt/repos/community-i686/PKGBUILD
  higan-qt/repos/community-i686/higan
  higan-qt/repos/community-x86_64/PKGBUILD
  higan-qt/repos/community-x86_64/higan

---+
 /PKGBUILD |  120 
 /higan|   26 ++
 community-i686/PKGBUILD   |   59 ---
 community-i686/higan  |   13 ---
 community-i686/higan-makefile.patch   |   58 +++
 community-x86_64/PKGBUILD |   59 ---
 community-x86_64/higan|   13 ---
 community-x86_64/higan-makefile.patch |   58 +++
 8 files changed, 262 insertions(+), 144 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-01-20 14:32:37 UTC (rev 126308)
+++ community-i686/PKGBUILD 2015-01-20 14:33:21 UTC (rev 126309)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin aluc...@archlinux.org
-
-pkgname=higan-qt
-pkgver=094
-pkgrel=2
-pkgdesc='Nintendo multi-system emulator'
-arch=('i686' 'x86_64')
-url='http://byuu.org/'
-license=('GPL3')
-depends=('libao' 'libpulse' 'openal' 'qt4' 'sdl' 'xdialog')
-makedepends=('mesa')
-optdepends=('beat: Delta patcher')
-conflicts=('higan-gtk')
-source=(http://files.byuu.org/download/higan_v${pkgver}-source.tar.xz;
-'higan')
-sha256sums=('5e149df9d50c1066eb97c0d5428d75304da782bba5a87078b87fc311151b'
-'c799232a0f67c4b7f40fc6ad05325a6c04e86d78e40f361d02f168a16d11d048')
-
-prepare() {
-  cd higan_v${pkgver}-source
-
-  sed 's/ -march=native//g' -i Makefile
-  sed s/flags :=$/flags := $CXXFLAGS/g -i nall/Makefile
-
-  moc-qt4 -i -Iphoenix/qt/ -o phoenix/qt/platform.moc 
phoenix/qt/platform.moc.hpp
-}
-
-build() {
-  cd higan_v${pkgver}-source
-
-  make phoenix='qt' -C ananke
-
-  for p in {accuracy,balanced,performance}; do
-make phoenix='qt' profile=$p
-mv out/higan{,-$p}
-make clean
-  done
-}
-
-package() {
-  cd higan_v${pkgver}-source
-
-  install -dm 755 
${pkgdir}/usr/{bin,lib,share/{applications,pixmaps,higan/Video\ Shaders}}
-  install -m 755 ../higan ${pkgdir}/usr/bin/
-  install -m 644 data/higan.desktop ${pkgdir}/usr/share/applications/
-  install -m 644 data/higan.png ${pkgdir}/usr/share/pixmaps/
-  cp -dr --no-preserve='ownership' profile/* data/cheats.bml 
${pkgdir}/usr/share/higan/
-  cp -dr --no-preserve='ownership' shaders/*.shader 
${pkgdir}/usr/share/higan/Video\ Shaders/
-
-  install -m 644 ananke/libananke.so ${pkgdir}/usr/lib/libananke.so.1
-  ln -s libananke.so.1 ${pkgdir}/usr/lib/libananke.so
-
-  for p in {accuracy,balanced,performance}; do
-install -m 755 out/higan-$p ${pkgdir}/usr/bin/
-  done
-}
-
-# vim: ts=2 sw=2 et:

Copied: higan-qt/repos/community-i686/PKGBUILD (from rev 126308, 
higan-qt/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-01-20 14:33:21 UTC (rev 126309)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Maxime Gauduin aluc...@archlinux.org
+
+pkgname=higan-qt
+pkgver=094
+pkgrel=2
+pkgdesc='Nintendo multi-system emulator'
+arch=('i686' 'x86_64')
+url='http://byuu.org/'
+license=('GPL3')
+depends=('libao' 'libpulse' 'openal' 'qt4' 'sdl' 'xdialog')
+makedepends=('mesa')
+optdepends=('beat: Delta patcher')
+conflicts=('higan-gtk')
+source=(http://files.byuu.org/download/higan_v${pkgver}-source.tar.xz;
+'higan-makefile.patch'
+'higan')
+sha256sums=('5e149df9d50c1066eb97c0d5428d75304da782bba5a87078b87fc311151b'
+'77f2412c47e9855a30c1ea10c49e58c5bceb8c28de29777dd9293553b2a6ab3d'
+'c799232a0f67c4b7f40fc6ad05325a6c04e86d78e40f361d02f168a16d11d048')
+
+prepare() {
+  cd higan_v${pkgver}-source
+
+  patch -Np1 -i ../higan-makefile.patch
+
+  moc-qt4 -i -Iphoenix/qt/ -o phoenix/qt/platform.moc 
phoenix/qt/platform.moc.hpp
+}
+
+build() {
+  cd higan_v${pkgver}-source
+
+  make phoenix='qt' -C ananke
+
+  for p in {accuracy,balanced,performance}; do
+make phoenix='qt' profile=$p
+mv out/higan{,-$p}
+make clean
+  done
+}
+
+package() {
+  cd 

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

2015-01-20 Thread Sven-Hendrik Haase
Date: Tuesday, January 20, 2015 @ 15:06:02
  Author: svenstaro
Revision: 126302

upgpkg: urbanterror-data 2:4.2.023-1

upstream release 4.2.023

Modified:
  urbanterror-data/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-20 13:44:54 UTC (rev 126301)
+++ PKGBUILD2015-01-20 14:06:02 UTC (rev 126302)
@@ -2,7 +2,7 @@
 # Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
 
 pkgname=urbanterror-data
-_subversion=022
+_subversion=023
 pkgver=4.2.$_subversion
 pkgrel=1
 epoch=2
@@ -12,7 +12,7 @@
 license=('custom:freeware')
 backup=('opt/urbanterror/q3ut4/server.cfg' 
'opt/urbanterror/q3ut4/mapcycle.txt')
 
source=(http://cdn.urbanterror.info/urt/42/zips/UrbanTerror42_full${_subversion}.zip;)
-md5sums=('0229af6ff157d964cc3a1b5cfe5b538d')
+md5sums=('20b4e2d10d9e1e76a6b050f1df3a3669')
 #PKGEXT='.pkg.tar'
 
 package() {


[arch-commits] Commit in higan-gtk/trunk (PKGBUILD higan-makefile.patch)

2015-01-20 Thread Maxime Gauduin
Date: Tuesday, January 20, 2015 @ 15:16:46
  Author: alucryd
Revision: 126304

upgpkg: higan-gtk 094-2

Added:
  higan-gtk/trunk/higan-makefile.patch
Modified:
  higan-gtk/trunk/PKGBUILD

--+
 PKGBUILD |   30 -
 higan-makefile.patch |   58 +
 2 files changed, 73 insertions(+), 15 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-01-20 14:06:52 UTC (rev 126303)
+++ PKGBUILD2015-01-20 14:16:46 UTC (rev 126304)
@@ -1,9 +1,9 @@
 # $Id$
-# Maintainer: Maxime Gauduin aluc...@gmail.com
+# Maintainer: Maxime Gauduin aluc...@archlinux.org
 
 pkgname=higan-gtk
 pkgver=094
-pkgrel=1
+pkgrel=2
 pkgdesc='Nintendo multi-system emulator'
 arch=('i686' 'x86_64')
 url='http://byuu.org/'
@@ -12,27 +12,27 @@
 makedepends=('mesa')
 optdepends=('beat: Delta patcher')
 conflicts=('higan-qt')
-source=(http://byuu.org/files/${pkgname%-*}_v${pkgver}-source.tar.xz;
+source=(http://files.byuu.org/download/higan_v${pkgver}-source.tar.xz;
+'higan-makefile.patch'
 'higan')
 sha256sums=('5e149df9d50c1066eb97c0d5428d75304da782bba5a87078b87fc311151b'
+'77f2412c47e9855a30c1ea10c49e58c5bceb8c28de29777dd9293553b2a6ab3d'
 'c799232a0f67c4b7f40fc6ad05325a6c04e86d78e40f361d02f168a16d11d048')
 
-_profiles='accuracy balanced performance'
-
 prepare() {
   cd higan_v${pkgver}-source
 
-  sed s/-march=native/-march=${CARCH/_/-} -mtune=generic/g -i Makefile
+  patch -Np1 -i ../higan-makefile.patch
 }
 
 build() {
   cd higan_v${pkgver}-source
 
-  make phoenix=gtk -C ananke
+  make phoenix='gtk' -C ananke
 
-  for _profile in ${_profiles}; do
-make phoenix=gtk profile=${_profile}
-mv out/higan{,-${_profile}}
+  for p in {accuracy,balanced,performance}; do
+make phoenix='gtk' profile=$p
+mv out/higan{,-$p}
 make clean
   done
 }
@@ -41,17 +41,17 @@
   cd higan_v${pkgver}-source
 
   install -dm 755 
${pkgdir}/usr/{bin,lib,share/{applications,pixmaps,higan/Video\ Shaders}}
-  install -m 755 {..,${pkgdir}/usr/bin}/higan
+  install -m 755 ../higan ${pkgdir}/usr/bin/
   install -m 644 data/higan.desktop ${pkgdir}/usr/share/applications/
   install -m 644 data/higan.png ${pkgdir}/usr/share/pixmaps/
-  cp -dr --no-preserve=ownership profile/* data/cheats.bml 
${pkgdir}/usr/share/higan/
-  cp -dr --no-preserve=ownership shaders/*.shader 
${pkgdir}/usr/share/higan/Video\ Shaders/
+  cp -dr --no-preserve='ownership' profile/* data/cheats.bml 
${pkgdir}/usr/share/higan/
+  cp -dr --no-preserve='ownership' shaders/*.shader 
${pkgdir}/usr/share/higan/Video\ Shaders/
 
   install -m 644 ananke/libananke.so ${pkgdir}/usr/lib/libananke.so.1
   ln -s libananke.so.1 ${pkgdir}/usr/lib/libananke.so
 
-  for _profile in ${_profiles}; do
-install -m 755 {out,${pkgdir}/usr/bin}/higan-${_profile}
+  for p in {accuracy,balanced,performance}; do
+install -m 755 out/higan-$p ${pkgdir}/usr/bin/
   done
 }
 

Added: higan-makefile.patch
===
--- higan-makefile.patch(rev 0)
+++ higan-makefile.patch2015-01-20 14:16:46 UTC (rev 126304)
@@ -0,0 +1,58 @@
+diff -rupN higan_v094-source.orig/ananke/Makefile 
higan_v094-source/ananke/Makefile
+--- higan_v094-source.orig/ananke/Makefile 2015-01-20 14:56:18.634660183 
+0100
 higan_v094-source/ananke/Makefile  2015-01-20 15:00:39.164662554 +0100
+@@ -2,7 +2,8 @@ include ../nall/Makefile
+ include ../phoenix/Makefile
+ 
+ path := /usr/local/lib
+-flags := $(flags) -O3 -fomit-frame-pointer -I..
++flags := $(flags) $(CXXFLAGS) -I..
++link := $(link) $(LDFLAGS)
+ 
+ all:
+   $(compiler) $(cppflags) $(flags) -fPIC -o obj/ananke.o -c ananke.cpp
+diff -rupN higan_v094-source.orig/Makefile higan_v094-source/Makefile
+--- higan_v094-source.orig/Makefile2015-01-20 14:56:18.634660183 +0100
 higan_v094-source/Makefile 2015-01-20 15:06:30.531332416 +0100
+@@ -13,8 +13,8 @@ target  := ethos
+ # console := true
+ 
+ # compiler
+-flags   += -I. -O3 -fomit-frame-pointer
+-link+=
++flags   += $(CXXFLAGS) -I.
++link+= $(LDFLAGS)
+ objects := libco
+ 
+ # profile-guided optimization mode
+@@ -45,7 +45,7 @@ else ifeq ($(platform),macosx)
+   flags += -march=native
+ else ifeq ($(platform),linux)
+   flags += -march=native
+-  link += -s -Wl,-export-dynamic -lX11 -lXext -ldl
++  link += -Wl,-export-dynamic -lX11 -lXext -ldl
+ else ifeq ($(platform),bsd)
+   flags += -march=native
+   link += -s -Wl,-export-dynamic -lX11 -lXext
+diff -rupN higan_v094-source.orig/nall/Makefile higan_v094-source/nall/Makefile
+--- higan_v094-source.orig/nall/Makefile   2015-01-20 14:56:18.641326850 
+0100
 higan_v094-source/nall/Makefile2015-01-20 15:04:30.104664654 +0100
+@@ -52,13 +52,13 @@ ifeq ($(compiler),)
+ flags :=
+ link :=
+   endif
+-
+-  cflags := -x c -std=c99
+-  

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

2015-01-20 Thread Maxime Gauduin
Date: Tuesday, January 20, 2015 @ 15:17:08
  Author: alucryd
Revision: 126305

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

Added:
  higan-gtk/repos/community-i686/PKGBUILD
(from rev 126304, higan-gtk/trunk/PKGBUILD)
  higan-gtk/repos/community-i686/higan
(from rev 126304, higan-gtk/trunk/higan)
  higan-gtk/repos/community-i686/higan-makefile.patch
(from rev 126304, higan-gtk/trunk/higan-makefile.patch)
  higan-gtk/repos/community-x86_64/PKGBUILD
(from rev 126304, higan-gtk/trunk/PKGBUILD)
  higan-gtk/repos/community-x86_64/higan
(from rev 126304, higan-gtk/trunk/higan)
  higan-gtk/repos/community-x86_64/higan-makefile.patch
(from rev 126304, higan-gtk/trunk/higan-makefile.patch)
Deleted:
  higan-gtk/repos/community-i686/PKGBUILD
  higan-gtk/repos/community-i686/higan
  higan-gtk/repos/community-x86_64/PKGBUILD
  higan-gtk/repos/community-x86_64/higan

---+
 /PKGBUILD |  116 
 /higan|   26 +++
 community-i686/PKGBUILD   |   58 
 community-i686/higan  |   13 ---
 community-i686/higan-makefile.patch   |   58 
 community-x86_64/PKGBUILD |   58 
 community-x86_64/higan|   13 ---
 community-x86_64/higan-makefile.patch |   58 
 8 files changed, 258 insertions(+), 142 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-01-20 14:16:46 UTC (rev 126304)
+++ community-i686/PKGBUILD 2015-01-20 14:17:08 UTC (rev 126305)
@@ -1,58 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin aluc...@gmail.com
-
-pkgname=higan-gtk
-pkgver=094
-pkgrel=1
-pkgdesc='Nintendo multi-system emulator'
-arch=('i686' 'x86_64')
-url='http://byuu.org/'
-license=('GPL3')
-depends=('libao' 'libpulse' 'libxv' 'openal' 'sdl' 'xdialog')
-makedepends=('mesa')
-optdepends=('beat: Delta patcher')
-conflicts=('higan-qt')
-source=(http://byuu.org/files/${pkgname%-*}_v${pkgver}-source.tar.xz;
-'higan')
-sha256sums=('5e149df9d50c1066eb97c0d5428d75304da782bba5a87078b87fc311151b'
-'c799232a0f67c4b7f40fc6ad05325a6c04e86d78e40f361d02f168a16d11d048')
-
-_profiles='accuracy balanced performance'
-
-prepare() {
-  cd higan_v${pkgver}-source
-
-  sed s/-march=native/-march=${CARCH/_/-} -mtune=generic/g -i Makefile
-}
-
-build() {
-  cd higan_v${pkgver}-source
-
-  make phoenix=gtk -C ananke
-
-  for _profile in ${_profiles}; do
-make phoenix=gtk profile=${_profile}
-mv out/higan{,-${_profile}}
-make clean
-  done
-}
-
-package() {
-  cd higan_v${pkgver}-source
-
-  install -dm 755 
${pkgdir}/usr/{bin,lib,share/{applications,pixmaps,higan/Video\ Shaders}}
-  install -m 755 {..,${pkgdir}/usr/bin}/higan
-  install -m 644 data/higan.desktop ${pkgdir}/usr/share/applications/
-  install -m 644 data/higan.png ${pkgdir}/usr/share/pixmaps/
-  cp -dr --no-preserve=ownership profile/* data/cheats.bml 
${pkgdir}/usr/share/higan/
-  cp -dr --no-preserve=ownership shaders/*.shader 
${pkgdir}/usr/share/higan/Video\ Shaders/
-
-  install -m 644 ananke/libananke.so ${pkgdir}/usr/lib/libananke.so.1
-  ln -s libananke.so.1 ${pkgdir}/usr/lib/libananke.so
-
-  for _profile in ${_profiles}; do
-install -m 755 {out,${pkgdir}/usr/bin}/higan-${_profile}
-  done
-}
-
-# vim: ts=2 sw=2 et:

Copied: higan-gtk/repos/community-i686/PKGBUILD (from rev 126304, 
higan-gtk/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-01-20 14:17:08 UTC (rev 126305)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Maxime Gauduin aluc...@archlinux.org
+
+pkgname=higan-gtk
+pkgver=094
+pkgrel=2
+pkgdesc='Nintendo multi-system emulator'
+arch=('i686' 'x86_64')
+url='http://byuu.org/'
+license=('GPL3')
+depends=('libao' 'libpulse' 'libxv' 'openal' 'sdl' 'xdialog')
+makedepends=('mesa')
+optdepends=('beat: Delta patcher')
+conflicts=('higan-qt')
+source=(http://files.byuu.org/download/higan_v${pkgver}-source.tar.xz;
+'higan-makefile.patch'
+'higan')
+sha256sums=('5e149df9d50c1066eb97c0d5428d75304da782bba5a87078b87fc311151b'
+'77f2412c47e9855a30c1ea10c49e58c5bceb8c28de29777dd9293553b2a6ab3d'
+'c799232a0f67c4b7f40fc6ad05325a6c04e86d78e40f361d02f168a16d11d048')
+
+prepare() {
+  cd higan_v${pkgver}-source
+
+  patch -Np1 -i ../higan-makefile.patch
+}
+
+build() {
+  cd higan_v${pkgver}-source
+
+  make phoenix='gtk' -C ananke
+
+  for p in {accuracy,balanced,performance}; do
+make phoenix='gtk' profile=$p
+mv out/higan{,-$p}
+make clean
+  done
+}
+
+package() {
+  cd higan_v${pkgver}-source
+
+  install -dm 755 
${pkgdir}/usr/{bin,lib,share/{applications,pixmaps,higan/Video\ Shaders}}
+  install -m 755 ../higan 

[arch-commits] Commit in higan-qt/trunk (PKGBUILD higan-makefile.patch)

2015-01-20 Thread Maxime Gauduin
Date: Tuesday, January 20, 2015 @ 15:32:37
  Author: alucryd
Revision: 126308

upgpkg: higan-qt 094-2

Added:
  higan-qt/trunk/higan-makefile.patch
Modified:
  higan-qt/trunk/PKGBUILD

--+
 PKGBUILD |5 ++--
 higan-makefile.patch |   58 +
 2 files changed, 61 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-01-20 14:26:02 UTC (rev 126307)
+++ PKGBUILD2015-01-20 14:32:37 UTC (rev 126308)
@@ -13,15 +13,16 @@
 optdepends=('beat: Delta patcher')
 conflicts=('higan-gtk')
 source=(http://files.byuu.org/download/higan_v${pkgver}-source.tar.xz;
+'higan-makefile.patch'
 'higan')
 sha256sums=('5e149df9d50c1066eb97c0d5428d75304da782bba5a87078b87fc311151b'
+'77f2412c47e9855a30c1ea10c49e58c5bceb8c28de29777dd9293553b2a6ab3d'
 'c799232a0f67c4b7f40fc6ad05325a6c04e86d78e40f361d02f168a16d11d048')
 
 prepare() {
   cd higan_v${pkgver}-source
 
-  sed 's/ -march=native//g' -i Makefile
-  sed s/flags :=$/flags := $CXXFLAGS/g -i nall/Makefile
+  patch -Np1 -i ../higan-makefile.patch
 
   moc-qt4 -i -Iphoenix/qt/ -o phoenix/qt/platform.moc 
phoenix/qt/platform.moc.hpp
 }

Added: higan-makefile.patch
===
--- higan-makefile.patch(rev 0)
+++ higan-makefile.patch2015-01-20 14:32:37 UTC (rev 126308)
@@ -0,0 +1,58 @@
+diff -rupN higan_v094-source.orig/ananke/Makefile 
higan_v094-source/ananke/Makefile
+--- higan_v094-source.orig/ananke/Makefile 2015-01-20 14:56:18.634660183 
+0100
 higan_v094-source/ananke/Makefile  2015-01-20 15:00:39.164662554 +0100
+@@ -2,7 +2,8 @@ include ../nall/Makefile
+ include ../phoenix/Makefile
+ 
+ path := /usr/local/lib
+-flags := $(flags) -O3 -fomit-frame-pointer -I..
++flags := $(flags) $(CXXFLAGS) -I..
++link := $(link) $(LDFLAGS)
+ 
+ all:
+   $(compiler) $(cppflags) $(flags) -fPIC -o obj/ananke.o -c ananke.cpp
+diff -rupN higan_v094-source.orig/Makefile higan_v094-source/Makefile
+--- higan_v094-source.orig/Makefile2015-01-20 14:56:18.634660183 +0100
 higan_v094-source/Makefile 2015-01-20 15:06:30.531332416 +0100
+@@ -13,8 +13,8 @@ target  := ethos
+ # console := true
+ 
+ # compiler
+-flags   += -I. -O3 -fomit-frame-pointer
+-link+=
++flags   += $(CXXFLAGS) -I.
++link+= $(LDFLAGS)
+ objects := libco
+ 
+ # profile-guided optimization mode
+@@ -45,7 +45,7 @@ else ifeq ($(platform),macosx)
+   flags += -march=native
+ else ifeq ($(platform),linux)
+   flags += -march=native
+-  link += -s -Wl,-export-dynamic -lX11 -lXext -ldl
++  link += -Wl,-export-dynamic -lX11 -lXext -ldl
+ else ifeq ($(platform),bsd)
+   flags += -march=native
+   link += -s -Wl,-export-dynamic -lX11 -lXext
+diff -rupN higan_v094-source.orig/nall/Makefile higan_v094-source/nall/Makefile
+--- higan_v094-source.orig/nall/Makefile   2015-01-20 14:56:18.641326850 
+0100
 higan_v094-source/nall/Makefile2015-01-20 15:04:30.104664654 +0100
+@@ -52,13 +52,13 @@ ifeq ($(compiler),)
+ flags :=
+ link :=
+   endif
+-
+-  cflags := -x c -std=c99
+-  objcflags := -x objective-c -std=c99
+-  cppflags := -x c++ -std=c++11
+-  objcppflags := -x objective-c++ -std=c++11
+ endif
+ 
++cflags := -x c -std=c99
++objcflags := -x objective-c -std=c99
++cppflags := -x c++ -std=c++11
++objcppflags := -x objective-c++ -std=c++11
++
+ # cross-compilation support
+ ifeq ($(arch),x86)
+   flags := -m32 $(flags)


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

2015-01-20 Thread Maxime Gauduin
Date: Tuesday, January 20, 2015 @ 14:44:34
  Author: alucryd
Revision: 126300

FS#43511: higan-qt 094-2

Modified:
  higan-qt/trunk/PKGBUILD

--+
 PKGBUILD |   29 ++---
 1 file changed, 14 insertions(+), 15 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-01-20 12:05:53 UTC (rev 126299)
+++ PKGBUILD2015-01-20 13:44:34 UTC (rev 126300)
@@ -1,9 +1,9 @@
 # $Id$
-# Maintainer: Maxime Gauduin aluc...@gmail.com
+# Maintainer: Maxime Gauduin aluc...@archlinux.org
 
 pkgname=higan-qt
 pkgver=094
-pkgrel=1
+pkgrel=2
 pkgdesc='Nintendo multi-system emulator'
 arch=('i686' 'x86_64')
 url='http://byuu.org/'
@@ -12,17 +12,16 @@
 makedepends=('mesa')
 optdepends=('beat: Delta patcher')
 conflicts=('higan-gtk')
-source=(http://byuu.org/files/${pkgname%-*}_v${pkgver}-source.tar.xz;
+source=(http://files.byuu.org/download/higan_v${pkgver}-source.tar.xz;
 'higan')
 sha256sums=('5e149df9d50c1066eb97c0d5428d75304da782bba5a87078b87fc311151b'
 'c799232a0f67c4b7f40fc6ad05325a6c04e86d78e40f361d02f168a16d11d048')
 
-_profiles='accuracy balanced performance'
-
 prepare() {
   cd higan_v${pkgver}-source
 
-  sed s/-march=native/-march=${CARCH/_/-} -mtune=generic/g -i Makefile
+  sed 's/ -march=native//g' -i Makefile
+  sed s/flags :=$/flags := $CXXFLAGS/g -i nall/Makefile
 
   moc-qt4 -i -Iphoenix/qt/ -o phoenix/qt/platform.moc 
phoenix/qt/platform.moc.hpp
 }
@@ -30,11 +29,11 @@
 build() {
   cd higan_v${pkgver}-source
 
-  make phoenix=qt -C ananke
+  make phoenix='qt' -C ananke
 
-  for _profile in ${_profiles}; do
-make phoenix=qt profile=${_profile}
-mv out/higan{,-${_profile}}
+  for p in {accuracy,balanced,performance}; do
+make phoenix='qt' profile=$p
+mv out/higan{,-$p}
 make clean
   done
 }
@@ -43,17 +42,17 @@
   cd higan_v${pkgver}-source
 
   install -dm 755 
${pkgdir}/usr/{bin,lib,share/{applications,pixmaps,higan/Video\ Shaders}}
-  install -m 755 {..,${pkgdir}/usr/bin}/higan
+  install -m 755 ../higan ${pkgdir}/usr/bin/
   install -m 644 data/higan.desktop ${pkgdir}/usr/share/applications/
   install -m 644 data/higan.png ${pkgdir}/usr/share/pixmaps/
-  cp -dr --no-preserve=ownership profile/* data/cheats.bml 
${pkgdir}/usr/share/higan/
-  cp -dr --no-preserve=ownership shaders/*.shader 
${pkgdir}/usr/share/higan/Video\ Shaders/
+  cp -dr --no-preserve='ownership' profile/* data/cheats.bml 
${pkgdir}/usr/share/higan/
+  cp -dr --no-preserve='ownership' shaders/*.shader 
${pkgdir}/usr/share/higan/Video\ Shaders/
 
   install -m 644 ananke/libananke.so ${pkgdir}/usr/lib/libananke.so.1
   ln -s libananke.so.1 ${pkgdir}/usr/lib/libananke.so
 
-  for _profile in ${_profiles}; do
-install -m 755 {out,${pkgdir}/usr/bin}/higan-${_profile}
+  for p in {accuracy,balanced,performance}; do
+install -m 755 out/higan-$p ${pkgdir}/usr/bin/
   done
 }
 


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

2015-01-20 Thread Maxime Gauduin
Date: Tuesday, January 20, 2015 @ 14:44:54
  Author: alucryd
Revision: 126301

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

Added:
  higan-qt/repos/community-i686/PKGBUILD
(from rev 126300, higan-qt/trunk/PKGBUILD)
  higan-qt/repos/community-i686/higan
(from rev 126300, higan-qt/trunk/higan)
  higan-qt/repos/community-x86_64/PKGBUILD
(from rev 126300, higan-qt/trunk/PKGBUILD)
  higan-qt/repos/community-x86_64/higan
(from rev 126300, higan-qt/trunk/higan)
Deleted:
  higan-qt/repos/community-i686/PKGBUILD
  higan-qt/repos/community-i686/higan
  higan-qt/repos/community-x86_64/PKGBUILD
  higan-qt/repos/community-x86_64/higan

---+
 /PKGBUILD |  118 
 /higan|   26 +
 community-i686/PKGBUILD   |   60 --
 community-i686/higan  |   13 
 community-x86_64/PKGBUILD |   60 --
 community-x86_64/higan|   13 
 6 files changed, 144 insertions(+), 146 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-01-20 13:44:34 UTC (rev 126300)
+++ community-i686/PKGBUILD 2015-01-20 13:44:54 UTC (rev 126301)
@@ -1,60 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin aluc...@gmail.com
-
-pkgname=higan-qt
-pkgver=094
-pkgrel=1
-pkgdesc='Nintendo multi-system emulator'
-arch=('i686' 'x86_64')
-url='http://byuu.org/'
-license=('GPL3')
-depends=('libao' 'libpulse' 'openal' 'qt4' 'sdl' 'xdialog')
-makedepends=('mesa')
-optdepends=('beat: Delta patcher')
-conflicts=('higan-gtk')
-source=(http://byuu.org/files/${pkgname%-*}_v${pkgver}-source.tar.xz;
-'higan')
-sha256sums=('5e149df9d50c1066eb97c0d5428d75304da782bba5a87078b87fc311151b'
-'c799232a0f67c4b7f40fc6ad05325a6c04e86d78e40f361d02f168a16d11d048')
-
-_profiles='accuracy balanced performance'
-
-prepare() {
-  cd higan_v${pkgver}-source
-
-  sed s/-march=native/-march=${CARCH/_/-} -mtune=generic/g -i Makefile
-
-  moc-qt4 -i -Iphoenix/qt/ -o phoenix/qt/platform.moc 
phoenix/qt/platform.moc.hpp
-}
-
-build() {
-  cd higan_v${pkgver}-source
-
-  make phoenix=qt -C ananke
-
-  for _profile in ${_profiles}; do
-make phoenix=qt profile=${_profile}
-mv out/higan{,-${_profile}}
-make clean
-  done
-}
-
-package() {
-  cd higan_v${pkgver}-source
-
-  install -dm 755 
${pkgdir}/usr/{bin,lib,share/{applications,pixmaps,higan/Video\ Shaders}}
-  install -m 755 {..,${pkgdir}/usr/bin}/higan
-  install -m 644 data/higan.desktop ${pkgdir}/usr/share/applications/
-  install -m 644 data/higan.png ${pkgdir}/usr/share/pixmaps/
-  cp -dr --no-preserve=ownership profile/* data/cheats.bml 
${pkgdir}/usr/share/higan/
-  cp -dr --no-preserve=ownership shaders/*.shader 
${pkgdir}/usr/share/higan/Video\ Shaders/
-
-  install -m 644 ananke/libananke.so ${pkgdir}/usr/lib/libananke.so.1
-  ln -s libananke.so.1 ${pkgdir}/usr/lib/libananke.so
-
-  for _profile in ${_profiles}; do
-install -m 755 {out,${pkgdir}/usr/bin}/higan-${_profile}
-  done
-}
-
-# vim: ts=2 sw=2 et:

Copied: higan-qt/repos/community-i686/PKGBUILD (from rev 126300, 
higan-qt/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-01-20 13:44:54 UTC (rev 126301)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Maxime Gauduin aluc...@archlinux.org
+
+pkgname=higan-qt
+pkgver=094
+pkgrel=2
+pkgdesc='Nintendo multi-system emulator'
+arch=('i686' 'x86_64')
+url='http://byuu.org/'
+license=('GPL3')
+depends=('libao' 'libpulse' 'openal' 'qt4' 'sdl' 'xdialog')
+makedepends=('mesa')
+optdepends=('beat: Delta patcher')
+conflicts=('higan-gtk')
+source=(http://files.byuu.org/download/higan_v${pkgver}-source.tar.xz;
+'higan')
+sha256sums=('5e149df9d50c1066eb97c0d5428d75304da782bba5a87078b87fc311151b'
+'c799232a0f67c4b7f40fc6ad05325a6c04e86d78e40f361d02f168a16d11d048')
+
+prepare() {
+  cd higan_v${pkgver}-source
+
+  sed 's/ -march=native//g' -i Makefile
+  sed s/flags :=$/flags := $CXXFLAGS/g -i nall/Makefile
+
+  moc-qt4 -i -Iphoenix/qt/ -o phoenix/qt/platform.moc 
phoenix/qt/platform.moc.hpp
+}
+
+build() {
+  cd higan_v${pkgver}-source
+
+  make phoenix='qt' -C ananke
+
+  for p in {accuracy,balanced,performance}; do
+make phoenix='qt' profile=$p
+mv out/higan{,-$p}
+make clean
+  done
+}
+
+package() {
+  cd higan_v${pkgver}-source
+
+  install -dm 755 
${pkgdir}/usr/{bin,lib,share/{applications,pixmaps,higan/Video\ Shaders}}
+  install -m 755 ../higan ${pkgdir}/usr/bin/
+  install -m 644 data/higan.desktop ${pkgdir}/usr/share/applications/
+  install -m 644 data/higan.png ${pkgdir}/usr/share/pixmaps/
+  cp -dr --no-preserve='ownership' profile/* data/cheats.bml 
${pkgdir}/usr/share/higan/
+  cp -dr --no-preserve='ownership' shaders/*.shader 

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

2015-01-20 Thread speps
Date: Tuesday, January 20, 2015 @ 15:26:02
  Author: speps
Revision: 126307

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-01-20 14:25:48 UTC (rev 126306)
+++ community-i686/PKGBUILD 2015-01-20 14:26:02 UTC (rev 126307)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer : speps speps at aur dot archlinux dot org
-# Contributor: Andreas Schnaiter rc.poi...@gmail.com
-
-pkgname=smtube
-pkgver=14.12.0
-pkgrel=1
-pkgdesc=A small youtube browser
-arch=('i686' 'x86_64')
-url=http://smplayer.sourceforge.net;
-license=('GPL')
-depends=('qt5-script' 'desktop-file-utils' 'hicolor-icon-theme' 
'libxkbcommon-x11')
-makedepends=('qt5-tools')
-optdepends=('mplayer: play videos with MPlayer'
-'smplayer: play videos with SMPlayer'
-'gnome-mplayer: play videos with GNOME MPlayer'
-'kdemultimedia-dragonplayer: play videos with Dragon Player'
-'totem: play videos with Totem'
-'vlc: play videos with VLC')
-install=$pkgname.install
-source=(http://downloads.sourceforge.net/smplayer/$pkgname-$pkgver.tar.bz2;)
-md5sums=('6cb0d6f34848129e26d43d3096d3ad93')
-
-build() {
-  cd $pkgname-$pkgver
-  make PREFIX=/usr
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make PREFIX=/usr DESTDIR=$pkgdir/ install
-}

Copied: smtube/repos/community-i686/PKGBUILD (from rev 126306, 
smtube/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-01-20 14:26:02 UTC (rev 126307)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer : speps speps at aur dot archlinux dot org
+# Contributor: Andreas Schnaiter rc.poi...@gmail.com
+
+pkgname=smtube
+pkgver=15.1.0
+pkgrel=1
+pkgdesc=A small youtube browser
+arch=('i686' 'x86_64')
+url=http://smplayer.sourceforge.net;
+license=('GPL')
+depends=('qt5-script' 'desktop-file-utils' 'hicolor-icon-theme' 
'libxkbcommon-x11')
+makedepends=('qt5-tools')
+optdepends=('mplayer: play videos with MPlayer'
+'smplayer: play videos with SMPlayer'
+'gnome-mplayer: play videos with GNOME MPlayer'
+'kdemultimedia-dragonplayer: play videos with Dragon Player'
+'totem: play videos with Totem'
+'vlc: play videos with VLC')
+install=$pkgname.install
+source=(http://downloads.sourceforge.net/smplayer/$pkgname-$pkgver.tar.bz2;)
+md5sums=('7ae4a5b6380f25a74cea1562bb4a5d92')
+
+build() {
+  cd $pkgname-$pkgver
+  make PREFIX=/usr
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make PREFIX=/usr DESTDIR=$pkgdir/ install
+}

Deleted: community-i686/smtube.install
===
--- community-i686/smtube.install   2015-01-20 14:25:48 UTC (rev 126306)
+++ community-i686/smtube.install   2015-01-20 14:26:02 UTC (rev 126307)
@@ -1,12 +0,0 @@
-post_install() {
-  xdg-icon-resource forceupdate --theme hicolor 2 /dev/null
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: smtube/repos/community-i686/smtube.install (from rev 126306, 
smtube/trunk/smtube.install)
===
--- community-i686/smtube.install   (rev 0)
+++ community-i686/smtube.install   2015-01-20 14:26:02 UTC (rev 126307)
@@ -0,0 +1,12 @@
+post_install() {
+  xdg-icon-resource forceupdate --theme hicolor 2 /dev/null
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-01-20 14:25:48 UTC (rev 126306)
+++ community-x86_64/PKGBUILD   2015-01-20 14:26:02 UTC (rev 126307)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer : speps speps at aur 

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

2015-01-20 Thread speps
Date: Tuesday, January 20, 2015 @ 15:25:48
  Author: speps
Revision: 126306

upgpkg: smtube 15.1.0-1

Modified:
  smtube/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-20 14:17:08 UTC (rev 126305)
+++ PKGBUILD2015-01-20 14:25:48 UTC (rev 126306)
@@ -3,7 +3,7 @@
 # Contributor: Andreas Schnaiter rc.poi...@gmail.com
 
 pkgname=smtube
-pkgver=14.12.0
+pkgver=15.1.0
 pkgrel=1
 pkgdesc=A small youtube browser
 arch=('i686' 'x86_64')
@@ -19,7 +19,7 @@
 'vlc: play videos with VLC')
 install=$pkgname.install
 source=(http://downloads.sourceforge.net/smplayer/$pkgname-$pkgver.tar.bz2;)
-md5sums=('6cb0d6f34848129e26d43d3096d3ad93')
+md5sums=('7ae4a5b6380f25a74cea1562bb4a5d92')
 
 build() {
   cd $pkgname-$pkgver


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

2015-01-20 Thread Sven-Hendrik Haase
Date: Tuesday, January 20, 2015 @ 15:06:52
  Author: svenstaro
Revision: 126303

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-01-20 14:06:02 UTC (rev 126302)
+++ PKGBUILD2015-01-20 14:06:52 UTC (rev 126303)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
-
-pkgname=urbanterror-data
-_subversion=022
-pkgver=4.2.$_subversion
-pkgrel=1
-epoch=2
-pkgdesc=A team-based tactical shooter based on the Quake 3 Engine (data 
files)
-arch=('any')
-url=http://www.urbanterror.info;
-license=('custom:freeware')
-backup=('opt/urbanterror/q3ut4/server.cfg' 
'opt/urbanterror/q3ut4/mapcycle.txt')
-source=(http://cdn.urbanterror.info/urt/42/zips/UrbanTerror42_full${_subversion}.zip;)
-md5sums=('0229af6ff157d964cc3a1b5cfe5b538d')
-#PKGEXT='.pkg.tar'
-
-package() {
-  mkdir -p $pkgdir/opt/urbanterror
-  cp -r $srcdir/UrbanTerror42/q3ut4 $pkgdir/opt/urbanterror/q3ut4
-
-  install -Dm644 $srcdir/UrbanTerror42/q3ut4/readme42.txt 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
-
-  echo -e \nseta cl_cURLLib \/usr/lib/libcurl.so.4\  
$pkgdir/opt/urbanterror/q3ut4/autoexec.cfg
-}
-
-# vim: sw=2:ts=2 et:

Copied: urbanterror-data/repos/community-any/PKGBUILD (from rev 126302, 
urbanterror-data/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-01-20 14:06:52 UTC (rev 126303)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+
+pkgname=urbanterror-data
+_subversion=023
+pkgver=4.2.$_subversion
+pkgrel=1
+epoch=2
+pkgdesc=A team-based tactical shooter based on the Quake 3 Engine (data 
files)
+arch=('any')
+url=http://www.urbanterror.info;
+license=('custom:freeware')
+backup=('opt/urbanterror/q3ut4/server.cfg' 
'opt/urbanterror/q3ut4/mapcycle.txt')
+source=(http://cdn.urbanterror.info/urt/42/zips/UrbanTerror42_full${_subversion}.zip;)
+md5sums=('20b4e2d10d9e1e76a6b050f1df3a3669')
+#PKGEXT='.pkg.tar'
+
+package() {
+  mkdir -p $pkgdir/opt/urbanterror
+  cp -r $srcdir/UrbanTerror42/q3ut4 $pkgdir/opt/urbanterror/q3ut4
+
+  install -Dm644 $srcdir/UrbanTerror42/q3ut4/readme42.txt 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
+
+  echo -e \nseta cl_cURLLib \/usr/lib/libcurl.so.4\  
$pkgdir/opt/urbanterror/q3ut4/autoexec.cfg
+}
+
+# vim: sw=2:ts=2 et:


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

2015-01-20 Thread Andrea Scarpino
Date: Tuesday, January 20, 2015 @ 17:23:11
  Author: andrea
Revision: 229609

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

Added:
  qt5/repos/extra-i686/PKGBUILD
(from rev 229608, qt5/trunk/PKGBUILD)
  qt5/repos/extra-i686/assistant.desktop
(from rev 229608, qt5/trunk/assistant.desktop)
  qt5/repos/extra-i686/designer.desktop
(from rev 229608, qt5/trunk/designer.desktop)
  qt5/repos/extra-i686/kdebug-329174.patch
(from rev 229608, qt5/trunk/kdebug-329174.patch)
  qt5/repos/extra-i686/linguist.desktop
(from rev 229608, qt5/trunk/linguist.desktop)
  qt5/repos/extra-i686/qdbusviewer.desktop
(from rev 229608, qt5/trunk/qdbusviewer.desktop)
  qt5/repos/extra-i686/qt5-tools.install
(from rev 229608, qt5/trunk/qt5-tools.install)
  qt5/repos/extra-x86_64/PKGBUILD
(from rev 229608, qt5/trunk/PKGBUILD)
  qt5/repos/extra-x86_64/assistant.desktop
(from rev 229608, qt5/trunk/assistant.desktop)
  qt5/repos/extra-x86_64/designer.desktop
(from rev 229608, qt5/trunk/designer.desktop)
  qt5/repos/extra-x86_64/kdebug-329174.patch
(from rev 229608, qt5/trunk/kdebug-329174.patch)
  qt5/repos/extra-x86_64/linguist.desktop
(from rev 229608, qt5/trunk/linguist.desktop)
  qt5/repos/extra-x86_64/qdbusviewer.desktop
(from rev 229608, qt5/trunk/qdbusviewer.desktop)
  qt5/repos/extra-x86_64/qt5-tools.install
(from rev 229608, qt5/trunk/qt5-tools.install)
Deleted:
  qt5/repos/extra-i686/PKGBUILD
  qt5/repos/extra-i686/assistant.desktop
  qt5/repos/extra-i686/designer.desktop
  qt5/repos/extra-i686/linguist.desktop
  qt5/repos/extra-i686/qdbusviewer.desktop
  qt5/repos/extra-i686/qt5-tools.install
  qt5/repos/extra-x86_64/PKGBUILD
  qt5/repos/extra-x86_64/assistant.desktop
  qt5/repos/extra-x86_64/designer.desktop
  qt5/repos/extra-x86_64/linguist.desktop
  qt5/repos/extra-x86_64/qdbusviewer.desktop
  qt5/repos/extra-x86_64/qt5-tools.install

--+
 /PKGBUILD| 1098 +
 /assistant.desktop   |   16 
 /designer.desktop|   20 
 /linguist.desktop|   18 
 /qdbusviewer.desktop |   18 
 /qt5-tools.install   |   24 
 extra-i686/PKGBUILD  |  541 --
 extra-i686/assistant.desktop |8 
 extra-i686/designer.desktop  |   10 
 extra-i686/kdebug-329174.patch   |   39 +
 extra-i686/linguist.desktop  |9 
 extra-i686/qdbusviewer.desktop   |9 
 extra-i686/qt5-tools.install |   12 
 extra-x86_64/PKGBUILD|  541 --
 extra-x86_64/assistant.desktop   |8 
 extra-x86_64/designer.desktop|   10 
 extra-x86_64/kdebug-329174.patch |   39 +
 extra-x86_64/linguist.desktop|9 
 extra-x86_64/qdbusviewer.desktop |9 
 extra-x86_64/qt5-tools.install   |   12 
 20 files changed, 1272 insertions(+), 1178 deletions(-)

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


[arch-commits] Commit in postgis/repos/community-x86_64 (4 files)

2015-01-20 Thread Jaroslav Lichtblau
Date: Tuesday, January 20, 2015 @ 20:05:10
  Author: jlichtblau
Revision: 126311

archrelease: copy trunk to community-x86_64

Added:
  postgis/repos/community-x86_64/PKGBUILD
(from rev 126310, postgis/trunk/PKGBUILD)
  postgis/repos/community-x86_64/postgis.changelog
(from rev 126310, postgis/trunk/postgis.changelog)
Deleted:
  postgis/repos/community-x86_64/PKGBUILD
  postgis/repos/community-x86_64/postgis.changelog

---+
 PKGBUILD  |   62 ++---
 postgis.changelog |   85 ++--
 2 files changed, 75 insertions(+), 72 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-01-20 19:05:00 UTC (rev 126310)
+++ PKGBUILD2015-01-20 19:05:10 UTC (rev 126311)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau dragonl...@aur.archlinux.org
-# Contributor: dibblethewrecker dibblethewrecker.at.jiwe.dot.org
-# Contributor: William Rea sillywi...@gmail.com
-
-pkgname=postgis
-pkgver=2.1.4
-pkgrel=1
-pkgdesc=Adds support for geographic objects to PostgreSQL
-arch=('i686' 'x86_64')
-url=http://postgis.net/;
-license=('GPL')
-depends=('postgresql' 'gdal' 'json-c')
-changelog=$pkgname.changelog
-source=(http://download.osgeo.org/postgis/source/${pkgname}-${pkgver}.tar.gz)
-sha256sums=('cd73c2a38428c8736f6cae73b955aee0bd42f9ca4fd8d93c1af464524cb100fc')
-
-build() {
-  cd ${pkgname}-${pkgver}
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-
-  make DESTDIR=${pkgdir} install
-}
-
-# vim: ts=2 sw=2 et:

Copied: postgis/repos/community-x86_64/PKGBUILD (from rev 126310, 
postgis/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-01-20 19:05:10 UTC (rev 126311)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau svetlemo...@archlinux.org
+# Contributor: dibblethewrecker dibblethewrecker.at.jiwe.dot.org
+# Contributor: William Rea sillywi...@gmail.com
+
+pkgname=postgis
+pkgver=2.1.5
+pkgrel=1
+pkgdesc=Adds support for geographic objects to PostgreSQL
+arch=('i686' 'x86_64')
+url=http://postgis.net/;
+license=('GPL')
+depends=('postgresql' 'gdal' 'json-c')
+changelog=$pkgname.changelog
+source=(http://download.osgeo.org/postgis/source/${pkgname}-${pkgver}.tar.gz)
+sha256sums=('0d0e27f72f12b8dba456fbde25ed0f6913f42baf57332a7f1b9bbc6f29fddbf4')
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+}
+
+# vim: ts=2 sw=2 et:

Deleted: postgis.changelog
===
--- postgis.changelog   2015-01-20 19:05:00 UTC (rev 126310)
+++ postgis.changelog   2015-01-20 19:05:10 UTC (rev 126311)
@@ -1,41 +0,0 @@
-2014-09-12 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-* postgis-2.1.4-1
-
-2014-05-25 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-* postgis-2.1.3-1
-
-2014-04-02 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-* postgis-2.1.2-1
-
-2013-11-11 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-* postgis-2.1.1-1
-
-2013-08-22 Maxime Gauduin aluc...@gmail.com
-* postgis-2.1.0-1
-* Fixes FS#35816
-
-2013-06-15 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-* postgis-2.0.3-1
-
-2013-01-05 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-* postgis-2.0.2-1
-
-2012-09-24 Dan McGee d...@archlinux.org
-* Rebuild for PostgreSQL 9.2.x
-* Update to minor release 2.0.1
-
-2012-05-31 Andrea Scarpino and...@archlinux.org
-* Add JSON-C support
-* Build utils (FS#25836)
-
-2012-05-31 Andrea Scarpino and...@archlinux.org
-* Update to major release 2.0.0-1
-
-2011-10-26 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-* FS#26159 fix in postgis-1.5.3-2
-
-2010-10-30 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-* Update to major release 1.5.2
-
-2010-03-21 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-* Update to major release 1.5.1

Copied: postgis/repos/community-x86_64/postgis.changelog (from rev 126310, 
postgis/trunk/postgis.changelog)
===
--- postgis.changelog   (rev 0)
+++ postgis.changelog   2015-01-20 19:05:10 UTC (rev 126311)
@@ -0,0 +1,44 @@
+2015-01-20 Jaroslav Lichtblau svetlemo...@archlinux.org
+* postgis-2.1.5-1
+
+2014-09-12 Jaroslav Lichtblau svetlemo...@archlinux.org
+* postgis-2.1.4-1
+
+2014-05-25 Jaroslav Lichtblau svetlemo...@archlinux.org
+* postgis-2.1.3-1
+
+2014-04-02 Jaroslav Lichtblau svetlemo...@archlinux.org
+* postgis-2.1.2-1
+
+2013-11-11 Jaroslav Lichtblau svetlemo...@archlinux.org
+* postgis-2.1.1-1
+
+2013-08-22 Maxime Gauduin aluc...@gmail.com
+* postgis-2.1.0-1
+* Fixes FS#35816
+
+2013-06-15 Jaroslav Lichtblau svetlemo...@archlinux.org

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

2015-01-20 Thread Jaroslav Lichtblau
Date: Tuesday, January 20, 2015 @ 20:05:00
  Author: jlichtblau
Revision: 126310

upgpkg: postgis 2.1.5-1

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

---+
 PKGBUILD  |6 +++---
 postgis.changelog |   21 -
 2 files changed, 15 insertions(+), 12 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-01-20 14:33:21 UTC (rev 126309)
+++ PKGBUILD2015-01-20 19:05:00 UTC (rev 126310)
@@ -1,10 +1,10 @@
 # $Id$
-# Maintainer: Jaroslav Lichtblau dragonl...@aur.archlinux.org
+# Maintainer: Jaroslav Lichtblau svetlemo...@archlinux.org
 # Contributor: dibblethewrecker dibblethewrecker.at.jiwe.dot.org
 # Contributor: William Rea sillywi...@gmail.com
 
 pkgname=postgis
-pkgver=2.1.4
+pkgver=2.1.5
 pkgrel=1
 pkgdesc=Adds support for geographic objects to PostgreSQL
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 depends=('postgresql' 'gdal' 'json-c')
 changelog=$pkgname.changelog
 source=(http://download.osgeo.org/postgis/source/${pkgname}-${pkgver}.tar.gz)
-sha256sums=('cd73c2a38428c8736f6cae73b955aee0bd42f9ca4fd8d93c1af464524cb100fc')
+sha256sums=('0d0e27f72f12b8dba456fbde25ed0f6913f42baf57332a7f1b9bbc6f29fddbf4')
 
 build() {
   cd ${pkgname}-${pkgver}

Modified: postgis.changelog
===
--- postgis.changelog   2015-01-20 14:33:21 UTC (rev 126309)
+++ postgis.changelog   2015-01-20 19:05:00 UTC (rev 126310)
@@ -1,13 +1,16 @@
-2014-09-12 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+2015-01-20 Jaroslav Lichtblau svetlemo...@archlinux.org
+* postgis-2.1.5-1
+
+2014-09-12 Jaroslav Lichtblau svetlemo...@archlinux.org
 * postgis-2.1.4-1
 
-2014-05-25 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+2014-05-25 Jaroslav Lichtblau svetlemo...@archlinux.org
 * postgis-2.1.3-1
 
-2014-04-02 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+2014-04-02 Jaroslav Lichtblau svetlemo...@archlinux.org
 * postgis-2.1.2-1
 
-2013-11-11 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+2013-11-11 Jaroslav Lichtblau svetlemo...@archlinux.org
 * postgis-2.1.1-1
 
 2013-08-22 Maxime Gauduin aluc...@gmail.com
@@ -14,10 +17,10 @@
 * postgis-2.1.0-1
 * Fixes FS#35816
 
-2013-06-15 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+2013-06-15 Jaroslav Lichtblau svetlemo...@archlinux.org
 * postgis-2.0.3-1
 
-2013-01-05 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+2013-01-05 Jaroslav Lichtblau svetlemo...@archlinux.org
 * postgis-2.0.2-1
 
 2012-09-24 Dan McGee d...@archlinux.org
@@ -31,11 +34,11 @@
 2012-05-31 Andrea Scarpino and...@archlinux.org
 * Update to major release 2.0.0-1
 
-2011-10-26 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+2011-10-26 Jaroslav Lichtblau svetlemo...@archlinux.org
 * FS#26159 fix in postgis-1.5.3-2
 
-2010-10-30 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+2010-10-30 Jaroslav Lichtblau svetlemo...@archlinux.org
 * Update to major release 1.5.2
 
-2010-03-21 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+2010-03-21 Jaroslav Lichtblau svetlemo...@archlinux.org
 * Update to major release 1.5.1


[arch-commits] Commit in coin-or-cbc/trunk (PKGBUILD)

2015-01-20 Thread Antonio Rojas
Date: Tuesday, January 20, 2015 @ 21:04:43
  Author: arojas
Revision: 126320

Enable multithreading

Modified:
  coin-or-cbc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-20 19:27:01 UTC (rev 126319)
+++ PKGBUILD2015-01-20 20:04:43 UTC (rev 126320)
@@ -4,7 +4,7 @@
 
 pkgname=coin-or-cbc
 pkgver=2.9.0
-pkgrel=1
+pkgrel=2
 pkgdesc=COIN-OR branch-and-cut mixed integer programming solver
 arch=('i686' 'x86_64')
 url=https://projects.coin-or.org/Cbc;
@@ -24,11 +24,10 @@
   --with-clp-incdir=/usr/include/coin/ \
   --with-cgl-lib=$(pkg-config --libs cgl) \
   --with-cgl-incdir=/usr/include/coin/ \
-  --with-vol-lib=$(pkg-config --libs vol) \
-  --with-vol-incdir=/usr/include/coin/ \
   --with-coinutils-lib=$(pkg-config --libs coinutils) \
   --with-coinutils-incdir=/usr/include/coin/ \
-  --enable-dependency-linking
+  --enable-dependency-linking \
+  --enable-cbc-parallel
   make
 }
 


[arch-commits] Commit in coin-or-cbc/repos (4 files)

2015-01-20 Thread Antonio Rojas
Date: Tuesday, January 20, 2015 @ 21:06:51
  Author: arojas
Revision: 126321

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

Added:
  coin-or-cbc/repos/community-i686/PKGBUILD
(from rev 126320, coin-or-cbc/trunk/PKGBUILD)
  coin-or-cbc/repos/community-x86_64/PKGBUILD
(from rev 126320, coin-or-cbc/trunk/PKGBUILD)
Deleted:
  coin-or-cbc/repos/community-i686/PKGBUILD
  coin-or-cbc/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   86 
 community-i686/PKGBUILD   |   44 --
 community-x86_64/PKGBUILD |   44 --
 3 files changed, 86 insertions(+), 88 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-01-20 20:04:43 UTC (rev 126320)
+++ community-i686/PKGBUILD 2015-01-20 20:06:51 UTC (rev 126321)
@@ -1,44 +0,0 @@
-# Maintainer: Antonio Rojas aro...@archlinux.org
-# Contributor: spider-mario spiderma...@free.fr
-# Contributor: Daniel Ehlers danielehl...@mindeye.net
-
-pkgname=coin-or-cbc
-pkgver=2.9.0
-pkgrel=1
-pkgdesc=COIN-OR branch-and-cut mixed integer programming solver
-arch=('i686' 'x86_64')
-url=https://projects.coin-or.org/Cbc;
-license=('EPL')
-groups=('coin-or')
-depends=('coin-or-cgl')
-source=(http://www.coin-or.org/download/source/Cbc/Cbc-${pkgver}.tgz;)
-sha1sums=('6b08e4b0e9decfc7fd770b945b31adf7f3cefeb6')
-
-build() {
-  cd Cbc-$pkgver/Cbc
-  COIN_SKIP_PROJECTS=Sample \
-  ./configure --prefix=/usr \
-  --with-osi-lib=$(pkg-config --libs osi) \
-  --with-osi-incdir=/usr/include/coin/ \
-  --with-clp-lib=$(pkg-config --libs clp) \
-  --with-clp-incdir=/usr/include/coin/ \
-  --with-cgl-lib=$(pkg-config --libs cgl) \
-  --with-cgl-incdir=/usr/include/coin/ \
-  --with-vol-lib=$(pkg-config --libs vol) \
-  --with-vol-incdir=/usr/include/coin/ \
-  --with-coinutils-lib=$(pkg-config --libs coinutils) \
-  --with-coinutils-incdir=/usr/include/coin/ \
-  --enable-dependency-linking
-  make
-}
-
-check() {
-  cd Cbc-$pkgver/Cbc
-  make test
-}
-
-package() {
-  cd Cbc-$pkgver/Cbc
-  PKG_CONFIG_LIBDIR=$pkgdir/usr/lib/pkgconfig/ \
-  make DESTDIR=$pkgdir install
-}

Copied: coin-or-cbc/repos/community-i686/PKGBUILD (from rev 126320, 
coin-or-cbc/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-01-20 20:06:51 UTC (rev 126321)
@@ -0,0 +1,43 @@
+# Maintainer: Antonio Rojas aro...@archlinux.org
+# Contributor: spider-mario spiderma...@free.fr
+# Contributor: Daniel Ehlers danielehl...@mindeye.net
+
+pkgname=coin-or-cbc
+pkgver=2.9.0
+pkgrel=2
+pkgdesc=COIN-OR branch-and-cut mixed integer programming solver
+arch=('i686' 'x86_64')
+url=https://projects.coin-or.org/Cbc;
+license=('EPL')
+groups=('coin-or')
+depends=('coin-or-cgl')
+source=(http://www.coin-or.org/download/source/Cbc/Cbc-${pkgver}.tgz;)
+sha1sums=('6b08e4b0e9decfc7fd770b945b31adf7f3cefeb6')
+
+build() {
+  cd Cbc-$pkgver/Cbc
+  COIN_SKIP_PROJECTS=Sample \
+  ./configure --prefix=/usr \
+  --with-osi-lib=$(pkg-config --libs osi) \
+  --with-osi-incdir=/usr/include/coin/ \
+  --with-clp-lib=$(pkg-config --libs clp) \
+  --with-clp-incdir=/usr/include/coin/ \
+  --with-cgl-lib=$(pkg-config --libs cgl) \
+  --with-cgl-incdir=/usr/include/coin/ \
+  --with-coinutils-lib=$(pkg-config --libs coinutils) \
+  --with-coinutils-incdir=/usr/include/coin/ \
+  --enable-dependency-linking \
+  --enable-cbc-parallel
+  make
+}
+
+check() {
+  cd Cbc-$pkgver/Cbc
+  make test
+}
+
+package() {
+  cd Cbc-$pkgver/Cbc
+  PKG_CONFIG_LIBDIR=$pkgdir/usr/lib/pkgconfig/ \
+  make DESTDIR=$pkgdir install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-01-20 20:04:43 UTC (rev 126320)
+++ community-x86_64/PKGBUILD   2015-01-20 20:06:51 UTC (rev 126321)
@@ -1,44 +0,0 @@
-# Maintainer: Antonio Rojas aro...@archlinux.org
-# Contributor: spider-mario spiderma...@free.fr
-# Contributor: Daniel Ehlers danielehl...@mindeye.net
-
-pkgname=coin-or-cbc
-pkgver=2.9.0
-pkgrel=1
-pkgdesc=COIN-OR branch-and-cut mixed integer programming solver
-arch=('i686' 'x86_64')
-url=https://projects.coin-or.org/Cbc;
-license=('EPL')
-groups=('coin-or')
-depends=('coin-or-cgl')
-source=(http://www.coin-or.org/download/source/Cbc/Cbc-${pkgver}.tgz;)
-sha1sums=('6b08e4b0e9decfc7fd770b945b31adf7f3cefeb6')
-
-build() {
-  cd Cbc-$pkgver/Cbc
-  COIN_SKIP_PROJECTS=Sample \
-  ./configure --prefix=/usr \
-  --with-osi-lib=$(pkg-config --libs osi) \
-  

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

2015-01-20 Thread Andreas Radke
Date: Tuesday, January 20, 2015 @ 21:20:56
  Author: andyrtr
Revision: 229619

upgpkg: xorg-xcalc 1.0.6-1

upstream update 1.0.6; add optional fonts - FS#42196

Modified:
  xorg-xcalc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-20 19:44:59 UTC (rev 229618)
+++ PKGBUILD2015-01-20 20:20:56 UTC (rev 229619)
@@ -2,16 +2,20 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=xorg-xcalc
-pkgver=1.0.5
-pkgrel=2
+pkgver=1.0.6
+pkgrel=1
 pkgdesc=Scientific calculator for X
 arch=('i686' 'x86_64')
-url=http://xorg.freedesktop.org/;
+url=http://cgit.freedesktop.org/xorg/app/xcalc/;
 license=('custom')
 depends=('libxaw')
+optdepends=('xorg-fonts-100dpi: for some symbols or'
+   'xorg-fonts-75dpi: for some symbols')
 makedepends=('xorg-util-macros')
-source=(http://xorg.freedesktop.org/archive/individual/app/xcalc-${pkgver}.tar.bz2)
-sha256sums=('448f3aca106e86fbc051172cc4ea51eebce2fac096a7a971b8561b9b85697ae4')
+source=(http://xorg.freedesktop.org/archive/individual/app/xcalc-${pkgver}.tar.bz2{,.sig})
+sha256sums=('2f73c7160c09dc32586ea07daa408ac897c0a16eaa98cad9f9e4ee98cd9057d8'
+'SKIP')
+validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # Alan Coopersmith 
alan.coopersm...@oracle.com
 
 build() {
   cd ${srcdir}/xcalc-${pkgver}


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

2015-01-20 Thread Andreas Radke
Date: Tuesday, January 20, 2015 @ 21:21:10
  Author: andyrtr
Revision: 229620

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

Added:
  xorg-xcalc/repos/extra-i686/PKGBUILD
(from rev 229619, xorg-xcalc/trunk/PKGBUILD)
  xorg-xcalc/repos/extra-x86_64/PKGBUILD
(from rev 229619, xorg-xcalc/trunk/PKGBUILD)
Deleted:
  xorg-xcalc/repos/extra-i686/PKGBUILD
  xorg-xcalc/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-01-20 20:20:56 UTC (rev 229619)
+++ extra-i686/PKGBUILD 2015-01-20 20:21:10 UTC (rev 229620)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=xorg-xcalc
-pkgver=1.0.5
-pkgrel=2
-pkgdesc=Scientific calculator for X
-arch=('i686' 'x86_64')
-url=http://xorg.freedesktop.org/;
-license=('custom')
-depends=('libxaw')
-makedepends=('xorg-util-macros')
-source=(http://xorg.freedesktop.org/archive/individual/app/xcalc-${pkgver}.tar.bz2)
-sha256sums=('448f3aca106e86fbc051172cc4ea51eebce2fac096a7a971b8561b9b85697ae4')
-
-build() {
-  cd ${srcdir}/xcalc-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/xcalc-${pkgver}
-  make DESTDIR=${pkgdir} install
-  install -Dm644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/COPYING
-}

Copied: xorg-xcalc/repos/extra-i686/PKGBUILD (from rev 229619, 
xorg-xcalc/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-01-20 20:21:10 UTC (rev 229620)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=xorg-xcalc
+pkgver=1.0.6
+pkgrel=1
+pkgdesc=Scientific calculator for X
+arch=('i686' 'x86_64')
+url=http://cgit.freedesktop.org/xorg/app/xcalc/;
+license=('custom')
+depends=('libxaw')
+optdepends=('xorg-fonts-100dpi: for some symbols or'
+   'xorg-fonts-75dpi: for some symbols')
+makedepends=('xorg-util-macros')
+source=(http://xorg.freedesktop.org/archive/individual/app/xcalc-${pkgver}.tar.bz2{,.sig})
+sha256sums=('2f73c7160c09dc32586ea07daa408ac897c0a16eaa98cad9f9e4ee98cd9057d8'
+'SKIP')
+validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # Alan Coopersmith 
alan.coopersm...@oracle.com
+
+build() {
+  cd ${srcdir}/xcalc-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/xcalc-${pkgver}
+  make DESTDIR=${pkgdir} install
+  install -Dm644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/COPYING
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-01-20 20:20:56 UTC (rev 229619)
+++ extra-x86_64/PKGBUILD   2015-01-20 20:21:10 UTC (rev 229620)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=xorg-xcalc
-pkgver=1.0.5
-pkgrel=2
-pkgdesc=Scientific calculator for X
-arch=('i686' 'x86_64')
-url=http://xorg.freedesktop.org/;
-license=('custom')
-depends=('libxaw')
-makedepends=('xorg-util-macros')
-source=(http://xorg.freedesktop.org/archive/individual/app/xcalc-${pkgver}.tar.bz2)
-sha256sums=('448f3aca106e86fbc051172cc4ea51eebce2fac096a7a971b8561b9b85697ae4')
-
-build() {
-  cd ${srcdir}/xcalc-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/xcalc-${pkgver}
-  make DESTDIR=${pkgdir} install
-  install -Dm644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/COPYING
-}

Copied: xorg-xcalc/repos/extra-x86_64/PKGBUILD (from rev 229619, 
xorg-xcalc/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2015-01-20 20:21:10 UTC (rev 229620)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=xorg-xcalc
+pkgver=1.0.6
+pkgrel=1
+pkgdesc=Scientific calculator for X
+arch=('i686' 'x86_64')
+url=http://cgit.freedesktop.org/xorg/app/xcalc/;
+license=('custom')
+depends=('libxaw')
+optdepends=('xorg-fonts-100dpi: for some symbols or'
+   'xorg-fonts-75dpi: for some symbols')
+makedepends=('xorg-util-macros')
+source=(http://xorg.freedesktop.org/archive/individual/app/xcalc-${pkgver}.tar.bz2{,.sig})
+sha256sums=('2f73c7160c09dc32586ea07daa408ac897c0a16eaa98cad9f9e4ee98cd9057d8'
+'SKIP')
+validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # Alan Coopersmith 
alan.coopersm...@oracle.com
+
+build() {
+  cd ${srcdir}/xcalc-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/xcalc-${pkgver}
+  make DESTDIR=${pkgdir} install
+  install -Dm644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/COPYING
+}


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

2015-01-20 Thread Laurent Carlier
Date: Tuesday, January 20, 2015 @ 22:00:19
  Author: lcarlier
Revision: 126325

archrelease: copy trunk to multilib-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-01-20 21:00:12 UTC (rev 126324)
+++ PKGBUILD2015-01-20 21:00:19 UTC (rev 126325)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Biru Ionut io...@archlinux.ro
-# Contributor: Mikko Seppälä t-r-...@mbnet.fi
-# Contributor: Kaos  gianlucaatlas dot gmail dot com 
-
-_pkgbasename=sqlite
-pkgname=lib32-sqlite
-_amalgamationver=3080704
-_docver=${_amalgamationver}
-#_docver=3080401
-pkgver=3.8.7.4
-pkgrel=1
-pkgdesc=A C library that implements an SQL database engine (32-bit)
-arch=('x86_64')
-license=('custom')
-url=http://www.sqlite.org/;
-depends=(lib32-glibc $_pkgbasename)
-makedepends=('tcl' 'gcc-multilib' 'lib32-readline')
-source=(http://www.sqlite.org/2014/sqlite-autoconf-${_amalgamationver}.tar.gz)
-sha1sums=('70ca0b8884a6b145b7f24670566e2b4f3cde')
-provides=(lib32-sqlite3=$pkgver)
-replaces=(lib32-sqlite3)
-conflicts=(lib32-sqlite3)
-
-build() {
-  cd ${srcdir}/sqlite-autoconf-${_amalgamationver}
-
-  export CC=gcc -m32
-  export CXX=g++ -m32
-  export PKG_CONFIG_PATH=/usr/lib32/pkgconfig
-
-  export LTLINK_EXTRAS=-ldl
-  export CFLAGS=$CFLAGS -DSQLITE_ENABLE_FTS3=1 
-DSQLITE_ENABLE_COLUMN_METADATA=1 -DSQLITE_ENABLE_UNLOCK_NOTIFY 
-DSQLITE_SECURE_DELETE
-
-  ./configure --prefix=/usr --libdir=/usr/lib32 \
---disable-static
-
-  make
-}
-
-
-package() {
-  cd ${srcdir}/sqlite-autoconf-${_amalgamationver}
-
-  make DESTDIR=${pkgdir} install
-
-  rm -rf ${pkgdir}/usr/{include,share,bin}
-  mkdir -p $pkgdir/usr/share/licenses
-  ln -s $_pkgbasename $pkgdir/usr/share/licenses/$pkgname
-}

Copied: lib32-sqlite/repos/multilib-x86_64/PKGBUILD (from rev 126324, 
lib32-sqlite/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-01-20 21:00:19 UTC (rev 126325)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Biru Ionut io...@archlinux.ro
+# Contributor: Mikko Seppälä t-r-...@mbnet.fi
+# Contributor: Kaos  gianlucaatlas dot gmail dot com 
+
+_pkgbasename=sqlite
+pkgname=lib32-sqlite
+_amalgamationver=3080800
+_docver=${_amalgamationver}
+#_docver=3080401
+pkgver=3.8.8
+pkgrel=1
+pkgdesc=A C library that implements an SQL database engine (32-bit)
+arch=('x86_64')
+license=('custom')
+url=http://www.sqlite.org/;
+depends=(lib32-glibc $_pkgbasename)
+makedepends=('tcl' 'gcc-multilib' 'lib32-readline')
+source=(http://www.sqlite.org/2015/sqlite-autoconf-${_amalgamationver}.tar.gz)
+sha1sums=('abb7570b7e331ffede7f40f0037be6e0c03b73af')
+provides=(lib32-sqlite3=$pkgver)
+replaces=(lib32-sqlite3)
+conflicts=(lib32-sqlite3)
+
+build() {
+  cd ${srcdir}/sqlite-autoconf-${_amalgamationver}
+
+  export CC=gcc -m32
+  export CXX=g++ -m32
+  export PKG_CONFIG_PATH=/usr/lib32/pkgconfig
+
+  export LTLINK_EXTRAS=-ldl
+  export CFLAGS=$CFLAGS -DSQLITE_ENABLE_FTS3=1 
-DSQLITE_ENABLE_COLUMN_METADATA=1 -DSQLITE_ENABLE_UNLOCK_NOTIFY 
-DSQLITE_SECURE_DELETE
+
+  ./configure --prefix=/usr --libdir=/usr/lib32 \
+--disable-static
+
+  make
+}
+
+
+package() {
+  cd ${srcdir}/sqlite-autoconf-${_amalgamationver}
+
+  make DESTDIR=${pkgdir} install
+
+  rm -rf ${pkgdir}/usr/{include,share,bin}
+  mkdir -p $pkgdir/usr/share/licenses
+  ln -s $_pkgbasename $pkgdir/usr/share/licenses/$pkgname
+}


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

2015-01-20 Thread Laurent Carlier
Date: Tuesday, January 20, 2015 @ 22:00:12
  Author: lcarlier
Revision: 126324

upgpkg: lib32-sqlite 3.8.8-1

upstream update 3.8.8

Modified:
  lib32-sqlite/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-20 20:44:25 UTC (rev 126323)
+++ PKGBUILD2015-01-20 21:00:12 UTC (rev 126324)
@@ -5,10 +5,10 @@
 
 _pkgbasename=sqlite
 pkgname=lib32-sqlite
-_amalgamationver=3080704
+_amalgamationver=3080800
 _docver=${_amalgamationver}
 #_docver=3080401
-pkgver=3.8.7.4
+pkgver=3.8.8
 pkgrel=1
 pkgdesc=A C library that implements an SQL database engine (32-bit)
 arch=('x86_64')
@@ -16,8 +16,8 @@
 url=http://www.sqlite.org/;
 depends=(lib32-glibc $_pkgbasename)
 makedepends=('tcl' 'gcc-multilib' 'lib32-readline')
-source=(http://www.sqlite.org/2014/sqlite-autoconf-${_amalgamationver}.tar.gz)
-sha1sums=('70ca0b8884a6b145b7f24670566e2b4f3cde')
+source=(http://www.sqlite.org/2015/sqlite-autoconf-${_amalgamationver}.tar.gz)
+sha1sums=('abb7570b7e331ffede7f40f0037be6e0c03b73af')
 provides=(lib32-sqlite3=$pkgver)
 replaces=(lib32-sqlite3)
 conflicts=(lib32-sqlite3)


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

2015-01-20 Thread Laurent Carlier
Date: Tuesday, January 20, 2015 @ 22:05:38
  Author: lcarlier
Revision: 126326

upgpkg: lib32-libdbus 1.8.14-1

upstream update 1.8.14

Modified:
  lib32-libdbus/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-20 21:00:19 UTC (rev 126325)
+++ PKGBUILD2015-01-20 21:05:38 UTC (rev 126326)
@@ -3,7 +3,7 @@
 
 pkgname=lib32-libdbus
 _pkgbasename=libdbus
-pkgver=1.8.12
+pkgver=1.8.14
 pkgrel=1
 pkgdesc=DBus library (32-bit)
 arch=('x86_64')
@@ -14,8 +14,10 @@
 provides=('lib32-dbus-core' 'lib32-dbus')
 conflicts=('lib32-dbus-core' 'lib32-dbus')
 replaces=('lib32-dbus-core' 'lib32-dbus')
-source=(http://dbus.freedesktop.org/releases/dbus/dbus-${pkgver}.tar.gz)
-md5sums=('0ca23fc84c09cb3d29b9c27811ff4475')
+source=(http://dbus.freedesktop.org/releases/dbus/dbus-${pkgver}.tar.gz{,.asc})
+md5sums=('dfb810eda8780cf9debf7169b3ca5fe1'
+ 'SKIP')
+validpgpkeys=('DA98F25C0871C49A59EAFF2C4DE8FF2A63C7CC90') # Simon McVittie 
simon.mcvit...@collabora.co.uk
 
 build() {
 export CC=gcc -m32


[arch-commits] Commit in lib32-libdbus/repos (2 files)

2015-01-20 Thread Laurent Carlier
Date: Tuesday, January 20, 2015 @ 22:05:44
  Author: lcarlier
Revision: 126327

archrelease: copy trunk to multilib-testing-x86_64

Added:
  lib32-libdbus/repos/multilib-testing-x86_64/
  lib32-libdbus/repos/multilib-testing-x86_64/PKGBUILD
(from rev 126326, lib32-libdbus/trunk/PKGBUILD)

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

Copied: lib32-libdbus/repos/multilib-testing-x86_64/PKGBUILD (from rev 126326, 
lib32-libdbus/trunk/PKGBUILD)
===
--- multilib-testing-x86_64/PKGBUILD(rev 0)
+++ multilib-testing-x86_64/PKGBUILD2015-01-20 21:05:44 UTC (rev 126327)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer : Ionut Biru ib...@archlinux.org
+
+pkgname=lib32-libdbus
+_pkgbasename=libdbus
+pkgver=1.8.14
+pkgrel=1
+pkgdesc=DBus library (32-bit)
+arch=('x86_64')
+url=http://www.freedesktop.org/Software/dbus;
+license=('GPL' 'custom')
+depends=('lib32-glibc' 'lib32-expat' 'libdbus')
+makedepends=('gcc-multilib' 'lib32-libx11')
+provides=('lib32-dbus-core' 'lib32-dbus')
+conflicts=('lib32-dbus-core' 'lib32-dbus')
+replaces=('lib32-dbus-core' 'lib32-dbus')
+source=(http://dbus.freedesktop.org/releases/dbus/dbus-${pkgver}.tar.gz{,.asc})
+md5sums=('dfb810eda8780cf9debf7169b3ca5fe1'
+ 'SKIP')
+validpgpkeys=('DA98F25C0871C49A59EAFF2C4DE8FF2A63C7CC90') # Simon McVittie 
simon.mcvit...@collabora.co.uk
+
+build() {
+export CC=gcc -m32
+export CXX=g++ -m32
+export PKG_CONFIG_PATH=/usr/lib32/pkgconfig
+
+cd ${srcdir}/dbus-${pkgver}
+
+./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--libdir=/usr/lib32 \
+--libexecdir=/usr/lib/dbus-1.0 --with-dbus-user=81 \
+--with-system-pid-file=/run/dbus.pid \
+--with-console-auth-dir=/run/console/ \
+--enable-inotify --disable-dnotify \
+--disable-verbose-mode --disable-static \
+--disable-tests --disable-asserts --disable-systemd
+
+make
+}
+
+package() {
+cd ${srcdir}/dbus-${pkgver}
+make DESTDIR=${pkgdir} install
+
+rm -rf ${pkgdir}/usr/{bin,include,lib,share}
+rm -rf ${pkgdir}/{etc,var}
+
+mkdir -p ${pkgdir}/usr/share/licenses
+ln -s ${_pkgbasename} ${pkgdir}/usr/share/licenses/${pkgname}
+}


[arch-commits] Commit in higan-qt/trunk (PKGBUILD higan-makefile.patch)

2015-01-20 Thread Maxime Gauduin
Date: Wednesday, January 21, 2015 @ 00:16:08
  Author: alucryd
Revision: 126330

FS#43523: higan-qt 094-3

Modified:
  higan-qt/trunk/PKGBUILD
  higan-qt/trunk/higan-makefile.patch

--+
 PKGBUILD |4 ++--
 higan-makefile.patch |3 ++-
 2 files changed, 4 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-01-20 22:34:14 UTC (rev 126329)
+++ PKGBUILD2015-01-20 23:16:08 UTC (rev 126330)
@@ -3,7 +3,7 @@
 
 pkgname=higan-qt
 pkgver=094
-pkgrel=2
+pkgrel=3
 pkgdesc='Nintendo multi-system emulator'
 arch=('i686' 'x86_64')
 url='http://byuu.org/'
@@ -16,7 +16,7 @@
 'higan-makefile.patch'
 'higan')
 sha256sums=('5e149df9d50c1066eb97c0d5428d75304da782bba5a87078b87fc311151b'
-'77f2412c47e9855a30c1ea10c49e58c5bceb8c28de29777dd9293553b2a6ab3d'
+'5069d4847ec6cbeb2b1633f2538b7402c1ab27b31dd2b0d48ee7b617f361db6a'
 'c799232a0f67c4b7f40fc6ad05325a6c04e86d78e40f361d02f168a16d11d048')
 
 prepare() {

Modified: higan-makefile.patch
===
--- higan-makefile.patch2015-01-20 22:34:14 UTC (rev 126329)
+++ higan-makefile.patch2015-01-20 23:16:08 UTC (rev 126330)
@@ -28,8 +28,9 @@
 @@ -45,7 +45,7 @@ else ifeq ($(platform),macosx)
flags += -march=native
  else ifeq ($(platform),linux)
-   flags += -march=native
+-  flags += -march=native
 -  link += -s -Wl,-export-dynamic -lX11 -lXext -ldl
++  flags +=
 +  link += -Wl,-export-dynamic -lX11 -lXext -ldl
  else ifeq ($(platform),bsd)
flags += -march=native


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

2015-01-20 Thread Maxime Gauduin
Date: Wednesday, January 21, 2015 @ 00:16:26
  Author: alucryd
Revision: 126331

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

Deleted:
  higan-qt/repos/community-i686/PKGBUILD
  higan-qt/repos/community-i686/higan
  higan-qt/repos/community-x86_64/PKGBUILD
  higan-qt/repos/community-x86_64/higan

---+
 community-i686/PKGBUILD   |   60 
 community-i686/higan  |   13 -
 community-x86_64/PKGBUILD |   60 
 community-x86_64/higan|   13 -
 4 files changed, 146 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-01-20 23:16:08 UTC (rev 126330)
+++ community-i686/PKGBUILD 2015-01-20 23:16:26 UTC (rev 126331)
@@ -1,60 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin aluc...@archlinux.org
-
-pkgname=higan-qt
-pkgver=094
-pkgrel=2
-pkgdesc='Nintendo multi-system emulator'
-arch=('i686' 'x86_64')
-url='http://byuu.org/'
-license=('GPL3')
-depends=('libao' 'libpulse' 'openal' 'qt4' 'sdl' 'xdialog')
-makedepends=('mesa')
-optdepends=('beat: Delta patcher')
-conflicts=('higan-gtk')
-source=(http://files.byuu.org/download/higan_v${pkgver}-source.tar.xz;
-'higan-makefile.patch'
-'higan')
-sha256sums=('5e149df9d50c1066eb97c0d5428d75304da782bba5a87078b87fc311151b'
-'77f2412c47e9855a30c1ea10c49e58c5bceb8c28de29777dd9293553b2a6ab3d'
-'c799232a0f67c4b7f40fc6ad05325a6c04e86d78e40f361d02f168a16d11d048')
-
-prepare() {
-  cd higan_v${pkgver}-source
-
-  patch -Np1 -i ../higan-makefile.patch
-
-  moc-qt4 -i -Iphoenix/qt/ -o phoenix/qt/platform.moc 
phoenix/qt/platform.moc.hpp
-}
-
-build() {
-  cd higan_v${pkgver}-source
-
-  make phoenix='qt' -C ananke
-
-  for p in {accuracy,balanced,performance}; do
-make phoenix='qt' profile=$p
-mv out/higan{,-$p}
-make clean
-  done
-}
-
-package() {
-  cd higan_v${pkgver}-source
-
-  install -dm 755 
${pkgdir}/usr/{bin,lib,share/{applications,pixmaps,higan/Video\ Shaders}}
-  install -m 755 ../higan ${pkgdir}/usr/bin/
-  install -m 644 data/higan.desktop ${pkgdir}/usr/share/applications/
-  install -m 644 data/higan.png ${pkgdir}/usr/share/pixmaps/
-  cp -dr --no-preserve='ownership' profile/* data/cheats.bml 
${pkgdir}/usr/share/higan/
-  cp -dr --no-preserve='ownership' shaders/*.shader 
${pkgdir}/usr/share/higan/Video\ Shaders/
-
-  install -m 644 ananke/libananke.so ${pkgdir}/usr/lib/libananke.so.1
-  ln -s libananke.so.1 ${pkgdir}/usr/lib/libananke.so
-
-  for p in {accuracy,balanced,performance}; do
-install -m 755 out/higan-$p ${pkgdir}/usr/bin/
-  done
-}
-
-# vim: ts=2 sw=2 et:

Deleted: community-i686/higan
===
--- community-i686/higan2015-01-20 23:16:08 UTC (rev 126330)
+++ community-i686/higan2015-01-20 23:16:26 UTC (rev 126331)
@@ -1,13 +0,0 @@
-#!/bin/sh
-
-# Shared folders workaround
-cp -ru /usr/share/higan ~/.config/
-
-# Check for profiles and prompt user with a GUI
-[ -e /usr/bin/higan-accuracy ]  tag1=accuracy
-[ -e /usr/bin/higan-balanced ]  tag2=balanced
-[ -e /usr/bin/higan-performance ]  tag3=performance
-profile=$(Xdialog --stdout --no-tags --title higan --radiolist Choose a 
profile 0 0 0 $tag1 Accuracy off $tag2 Balanced off $tag3 
Performance off)
-
-# Launch selected profile
-exec higan-$profile $@

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-01-20 23:16:08 UTC (rev 126330)
+++ community-x86_64/PKGBUILD   2015-01-20 23:16:26 UTC (rev 126331)
@@ -1,60 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin aluc...@archlinux.org
-
-pkgname=higan-qt
-pkgver=094
-pkgrel=2
-pkgdesc='Nintendo multi-system emulator'
-arch=('i686' 'x86_64')
-url='http://byuu.org/'
-license=('GPL3')
-depends=('libao' 'libpulse' 'openal' 'qt4' 'sdl' 'xdialog')
-makedepends=('mesa')
-optdepends=('beat: Delta patcher')
-conflicts=('higan-gtk')
-source=(http://files.byuu.org/download/higan_v${pkgver}-source.tar.xz;
-'higan-makefile.patch'
-'higan')
-sha256sums=('5e149df9d50c1066eb97c0d5428d75304da782bba5a87078b87fc311151b'
-'77f2412c47e9855a30c1ea10c49e58c5bceb8c28de29777dd9293553b2a6ab3d'
-'c799232a0f67c4b7f40fc6ad05325a6c04e86d78e40f361d02f168a16d11d048')
-
-prepare() {
-  cd higan_v${pkgver}-source
-
-  patch -Np1 -i ../higan-makefile.patch
-
-  moc-qt4 -i -Iphoenix/qt/ -o phoenix/qt/platform.moc 
phoenix/qt/platform.moc.hpp
-}
-
-build() {
-  cd higan_v${pkgver}-source
-
-  make phoenix='qt' -C ananke
-
-  for p in {accuracy,balanced,performance}; do
-make phoenix='qt' profile=$p
-mv out/higan{,-$p}
-make clean
-  done
-}
-
-package() {
-  cd higan_v${pkgver}-source
-
-  install -dm 755 
${pkgdir}/usr/{bin,lib,share/{applications,pixmaps,higan/Video\ Shaders}}

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

2015-01-20 Thread Antonio Rojas
Date: Tuesday, January 20, 2015 @ 23:33:19
  Author: arojas
Revision: 126328

Cleanup package, split off large databases and docs

Modified:
  gap/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-20 21:05:44 UTC (rev 126327)
+++ PKGBUILD2015-01-20 22:33:19 UTC (rev 126328)
@@ -3,10 +3,10 @@
 # Contributor: Rémy Oudompheng oudom...@clipper.ens.fr
 
 pkgbase=gap
-pkgname=('gap' 'gap-packages')
+pkgname=('gap' 'gap-data' 'gap-doc' 'gap-packages')
 pkgver=4.7.6
-pkgrel=3
-pkgdesc=GAP: a system for computational discrete algebra
+pkgrel=4
+pkgdesc=Groups, Algorithms, Programming: a system for computational discrete 
algebra
 arch=('i686' 'x86_64')
 url=http://www.gap-system.org/;
 license=('GPL')
@@ -21,23 +21,17 @@
 
 package_gap() {
   depends=('gmp')
-  optdepends=('gap-packages: extra packages')
+  optdepends=('gap-packages: extra packages' 'gap-data: additional databases' 
'gap-doc: documentation')
   replaces=('gap-math')
   conflicts=('gap-math')
   cd gap4r7
   
   mkdir -p $pkgdir/usr/lib/gap
-  cp -r * $pkgdir/usr/lib/gap
+  cp -r bin etc grp lib tst CITATION $pkgdir/usr/lib/gap
+  
+  mkdir -p $pkgdir/usr/lib/gap/pkg
+  cp -r pkg/GAPDoc-* $pkgdir/usr/lib/gap/pkg
 
-# move pkg to gap-packages, except for GAPDoc
-  mv $pkgdir/usr/lib/gap/pkg{,0}
-  mkdir $pkgdir/usr/lib/gap/pkg
-  mv $pkgdir/usr/lib/gap/pkg0/GAPDoc-* $pkgdir/usr/lib/gap/pkg
-  rm -r $pkgdir/usr/lib/gap/pkg0
-
-# remove leftover source files
-  rm -r $pkgdir/usr/lib/gap/extern
-
   mkdir -p $pkgdir/usr/bin
   ln -s /usr/lib/gap/bin/gap.sh $pkgdir/usr/bin/gap
 
@@ -45,6 +39,24 @@
   sed -e 's|/build/gap/src/gap4r7|/usr/lib/gap|' -i 
$pkgdir/usr/lib/gap/bin/gap.sh  
 }
 
+package_gap-data() {
+  depends=('gap')
+  pkgdesc=Additional databases for GAP
+  cd gap4r7
+
+  mkdir -p $pkgdir/usr/lib/gap
+  cp -r prim small trans $pkgdir/usr/lib/gap
+}
+
+package_gap-doc() {
+  depends=('gap')
+  pkgdesc=Documentation for GAP
+  cd gap4r7
+
+  mkdir -p $pkgdir/usr/lib/gap
+  cp -r doc $pkgdir/usr/lib/gap
+}
+
 package_gap-packages() {
   depends=('gap')
   pkgdesc=Extra packages for GAP


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

2015-01-20 Thread Maxime Gauduin
Date: Wednesday, January 21, 2015 @ 00:21:34
  Author: alucryd
Revision: 126333

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

Deleted:
  higan-gtk/repos/community-i686/PKGBUILD
  higan-gtk/repos/community-i686/higan
  higan-gtk/repos/community-x86_64/PKGBUILD
  higan-gtk/repos/community-x86_64/higan

---+
 community-i686/PKGBUILD   |   58 
 community-i686/higan  |   13 -
 community-x86_64/PKGBUILD |   58 
 community-x86_64/higan|   13 -
 4 files changed, 142 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-01-20 23:21:23 UTC (rev 126332)
+++ community-i686/PKGBUILD 2015-01-20 23:21:34 UTC (rev 126333)
@@ -1,58 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin aluc...@archlinux.org
-
-pkgname=higan-gtk
-pkgver=094
-pkgrel=2
-pkgdesc='Nintendo multi-system emulator'
-arch=('i686' 'x86_64')
-url='http://byuu.org/'
-license=('GPL3')
-depends=('libao' 'libpulse' 'libxv' 'openal' 'sdl' 'xdialog')
-makedepends=('mesa')
-optdepends=('beat: Delta patcher')
-conflicts=('higan-qt')
-source=(http://files.byuu.org/download/higan_v${pkgver}-source.tar.xz;
-'higan-makefile.patch'
-'higan')
-sha256sums=('5e149df9d50c1066eb97c0d5428d75304da782bba5a87078b87fc311151b'
-'77f2412c47e9855a30c1ea10c49e58c5bceb8c28de29777dd9293553b2a6ab3d'
-'c799232a0f67c4b7f40fc6ad05325a6c04e86d78e40f361d02f168a16d11d048')
-
-prepare() {
-  cd higan_v${pkgver}-source
-
-  patch -Np1 -i ../higan-makefile.patch
-}
-
-build() {
-  cd higan_v${pkgver}-source
-
-  make phoenix='gtk' -C ananke
-
-  for p in {accuracy,balanced,performance}; do
-make phoenix='gtk' profile=$p
-mv out/higan{,-$p}
-make clean
-  done
-}
-
-package() {
-  cd higan_v${pkgver}-source
-
-  install -dm 755 
${pkgdir}/usr/{bin,lib,share/{applications,pixmaps,higan/Video\ Shaders}}
-  install -m 755 ../higan ${pkgdir}/usr/bin/
-  install -m 644 data/higan.desktop ${pkgdir}/usr/share/applications/
-  install -m 644 data/higan.png ${pkgdir}/usr/share/pixmaps/
-  cp -dr --no-preserve='ownership' profile/* data/cheats.bml 
${pkgdir}/usr/share/higan/
-  cp -dr --no-preserve='ownership' shaders/*.shader 
${pkgdir}/usr/share/higan/Video\ Shaders/
-
-  install -m 644 ananke/libananke.so ${pkgdir}/usr/lib/libananke.so.1
-  ln -s libananke.so.1 ${pkgdir}/usr/lib/libananke.so
-
-  for p in {accuracy,balanced,performance}; do
-install -m 755 out/higan-$p ${pkgdir}/usr/bin/
-  done
-}
-
-# vim: ts=2 sw=2 et:

Deleted: community-i686/higan
===
--- community-i686/higan2015-01-20 23:21:23 UTC (rev 126332)
+++ community-i686/higan2015-01-20 23:21:34 UTC (rev 126333)
@@ -1,13 +0,0 @@
-#!/bin/sh
-
-# Shared folders workaround
-cp -ru /usr/share/higan ~/.config/
-
-# Check for profiles and prompt user with a GUI
-[ -e /usr/bin/higan-accuracy ]  tag1=accuracy
-[ -e /usr/bin/higan-balanced ]  tag2=balanced
-[ -e /usr/bin/higan-performance ]  tag3=performance
-profile=$(Xdialog --stdout --no-tags --title higan --radiolist Choose a 
profile 0 0 0 $tag1 Accuracy off $tag2 Balanced off $tag3 
Performance off)
-
-# Launch selected profile
-exec higan-$profile $@

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-01-20 23:21:23 UTC (rev 126332)
+++ community-x86_64/PKGBUILD   2015-01-20 23:21:34 UTC (rev 126333)
@@ -1,58 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin aluc...@archlinux.org
-
-pkgname=higan-gtk
-pkgver=094
-pkgrel=2
-pkgdesc='Nintendo multi-system emulator'
-arch=('i686' 'x86_64')
-url='http://byuu.org/'
-license=('GPL3')
-depends=('libao' 'libpulse' 'libxv' 'openal' 'sdl' 'xdialog')
-makedepends=('mesa')
-optdepends=('beat: Delta patcher')
-conflicts=('higan-qt')
-source=(http://files.byuu.org/download/higan_v${pkgver}-source.tar.xz;
-'higan-makefile.patch'
-'higan')
-sha256sums=('5e149df9d50c1066eb97c0d5428d75304da782bba5a87078b87fc311151b'
-'77f2412c47e9855a30c1ea10c49e58c5bceb8c28de29777dd9293553b2a6ab3d'
-'c799232a0f67c4b7f40fc6ad05325a6c04e86d78e40f361d02f168a16d11d048')
-
-prepare() {
-  cd higan_v${pkgver}-source
-
-  patch -Np1 -i ../higan-makefile.patch
-}
-
-build() {
-  cd higan_v${pkgver}-source
-
-  make phoenix='gtk' -C ananke
-
-  for p in {accuracy,balanced,performance}; do
-make phoenix='gtk' profile=$p
-mv out/higan{,-$p}
-make clean
-  done
-}
-
-package() {
-  cd higan_v${pkgver}-source
-
-  install -dm 755 
${pkgdir}/usr/{bin,lib,share/{applications,pixmaps,higan/Video\ Shaders}}
-  install -m 755 ../higan ${pkgdir}/usr/bin/
-  install -m 644 data/higan.desktop ${pkgdir}/usr/share/applications/
-  install -m 644 data/higan.png 

[arch-commits] Commit in higan-gtk/trunk (PKGBUILD higan-makefile.patch)

2015-01-20 Thread Maxime Gauduin
Date: Wednesday, January 21, 2015 @ 00:21:23
  Author: alucryd
Revision: 126332

FS#43523: higan-gtk 094-3

Modified:
  higan-gtk/trunk/PKGBUILD
  higan-gtk/trunk/higan-makefile.patch

--+
 PKGBUILD |4 ++--
 higan-makefile.patch |3 ++-
 2 files changed, 4 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-01-20 23:16:26 UTC (rev 126331)
+++ PKGBUILD2015-01-20 23:21:23 UTC (rev 126332)
@@ -3,7 +3,7 @@
 
 pkgname=higan-gtk
 pkgver=094
-pkgrel=2
+pkgrel=3
 pkgdesc='Nintendo multi-system emulator'
 arch=('i686' 'x86_64')
 url='http://byuu.org/'
@@ -16,7 +16,7 @@
 'higan-makefile.patch'
 'higan')
 sha256sums=('5e149df9d50c1066eb97c0d5428d75304da782bba5a87078b87fc311151b'
-'77f2412c47e9855a30c1ea10c49e58c5bceb8c28de29777dd9293553b2a6ab3d'
+'5069d4847ec6cbeb2b1633f2538b7402c1ab27b31dd2b0d48ee7b617f361db6a'
 'c799232a0f67c4b7f40fc6ad05325a6c04e86d78e40f361d02f168a16d11d048')
 
 prepare() {

Modified: higan-makefile.patch
===
--- higan-makefile.patch2015-01-20 23:16:26 UTC (rev 126331)
+++ higan-makefile.patch2015-01-20 23:21:23 UTC (rev 126332)
@@ -28,8 +28,9 @@
 @@ -45,7 +45,7 @@ else ifeq ($(platform),macosx)
flags += -march=native
  else ifeq ($(platform),linux)
-   flags += -march=native
+-  flags += -march=native
 -  link += -s -Wl,-export-dynamic -lX11 -lXext -ldl
++  flags +=
 +  link += -Wl,-export-dynamic -lX11 -lXext -ldl
  else ifeq ($(platform),bsd)
flags += -march=native


[arch-commits] Commit in (14 files)

2015-01-20 Thread Maxime Gauduin
Date: Wednesday, January 21, 2015 @ 00:27:47
  Author: alucryd
Revision: 126334

y u no work svn

Added:
  higan-gtk/repos/community-i686/PKGBUILD
  higan-gtk/repos/community-i686/higan
  higan-gtk/repos/community-x86_64/PKGBUILD
  higan-gtk/repos/community-x86_64/higan
  higan-qt/repos/community-i686/PKGBUILD
  higan-qt/repos/community-i686/higan
  higan-qt/repos/community-x86_64/PKGBUILD
  higan-qt/repos/community-x86_64/higan
Modified:
  higan-gtk/repos/community-i686/higan-makefile.patch
  higan-gtk/repos/community-x86_64/higan-makefile.patch
  higan-gtk/trunk/PKGBUILD  (properties)
  higan-qt/repos/community-i686/higan-makefile.patch
  higan-qt/repos/community-x86_64/higan-makefile.patch
  higan-qt/trunk/PKGBUILD   (properties)

---+
 higan-gtk/repos/community-i686/PKGBUILD   |   58 +++
 higan-gtk/repos/community-i686/higan  |   13 +++
 higan-gtk/repos/community-i686/higan-makefile.patch   |3 
 higan-gtk/repos/community-x86_64/PKGBUILD |   58 +++
 higan-gtk/repos/community-x86_64/higan|   13 +++
 higan-gtk/repos/community-x86_64/higan-makefile.patch |3 
 higan-gtk/trunk/PKGBUILD  |1 
 higan-qt/repos/community-i686/PKGBUILD|   60 
 higan-qt/repos/community-i686/higan   |   13 +++
 higan-qt/repos/community-i686/higan-makefile.patch|3 
 higan-qt/repos/community-x86_64/PKGBUILD  |   60 
 higan-qt/repos/community-x86_64/higan |   13 +++
 higan-qt/repos/community-x86_64/higan-makefile.patch  |3 
 higan-qt/trunk/PKGBUILD   |1 
 14 files changed, 298 insertions(+), 4 deletions(-)

Added: higan-gtk/repos/community-i686/PKGBUILD
===
--- higan-gtk/repos/community-i686/PKGBUILD (rev 0)
+++ higan-gtk/repos/community-i686/PKGBUILD 2015-01-20 23:27:47 UTC (rev 
126334)
@@ -0,0 +1,58 @@
+# $Id: PKGBUILD 126332 2015-01-20 23:21:23Z alucryd $
+# Maintainer: Maxime Gauduin aluc...@archlinux.org
+
+pkgname=higan-gtk
+pkgver=094
+pkgrel=3
+pkgdesc='Nintendo multi-system emulator'
+arch=('i686' 'x86_64')
+url='http://byuu.org/'
+license=('GPL3')
+depends=('libao' 'libpulse' 'libxv' 'openal' 'sdl' 'xdialog')
+makedepends=('mesa')
+optdepends=('beat: Delta patcher')
+conflicts=('higan-qt')
+source=(http://files.byuu.org/download/higan_v${pkgver}-source.tar.xz;
+'higan-makefile.patch'
+'higan')
+sha256sums=('5e149df9d50c1066eb97c0d5428d75304da782bba5a87078b87fc311151b'
+'5069d4847ec6cbeb2b1633f2538b7402c1ab27b31dd2b0d48ee7b617f361db6a'
+'c799232a0f67c4b7f40fc6ad05325a6c04e86d78e40f361d02f168a16d11d048')
+
+prepare() {
+  cd higan_v${pkgver}-source
+
+  patch -Np1 -i ../higan-makefile.patch
+}
+
+build() {
+  cd higan_v${pkgver}-source
+
+  make phoenix='gtk' -C ananke
+
+  for p in {accuracy,balanced,performance}; do
+make phoenix='gtk' profile=$p
+mv out/higan{,-$p}
+make clean
+  done
+}
+
+package() {
+  cd higan_v${pkgver}-source
+
+  install -dm 755 
${pkgdir}/usr/{bin,lib,share/{applications,pixmaps,higan/Video\ Shaders}}
+  install -m 755 ../higan ${pkgdir}/usr/bin/
+  install -m 644 data/higan.desktop ${pkgdir}/usr/share/applications/
+  install -m 644 data/higan.png ${pkgdir}/usr/share/pixmaps/
+  cp -dr --no-preserve='ownership' profile/* data/cheats.bml 
${pkgdir}/usr/share/higan/
+  cp -dr --no-preserve='ownership' shaders/*.shader 
${pkgdir}/usr/share/higan/Video\ Shaders/
+
+  install -m 644 ananke/libananke.so ${pkgdir}/usr/lib/libananke.so.1
+  ln -s libananke.so.1 ${pkgdir}/usr/lib/libananke.so
+
+  for p in {accuracy,balanced,performance}; do
+install -m 755 out/higan-$p ${pkgdir}/usr/bin/
+  done
+}
+
+# vim: ts=2 sw=2 et:

Added: higan-gtk/repos/community-i686/higan
===
--- higan-gtk/repos/community-i686/higan(rev 0)
+++ higan-gtk/repos/community-i686/higan2015-01-20 23:27:47 UTC (rev 
126334)
@@ -0,0 +1,13 @@
+#!/bin/sh
+
+# Shared folders workaround
+cp -ru /usr/share/higan ~/.config/
+
+# Check for profiles and prompt user with a GUI
+[ -e /usr/bin/higan-accuracy ]  tag1=accuracy
+[ -e /usr/bin/higan-balanced ]  tag2=balanced
+[ -e /usr/bin/higan-performance ]  tag3=performance
+profile=$(Xdialog --stdout --no-tags --title higan --radiolist Choose a 
profile 0 0 0 $tag1 Accuracy off $tag2 Balanced off $tag3 
Performance off)
+
+# Launch selected profile
+exec higan-$profile $@

Modified: higan-gtk/repos/community-i686/higan-makefile.patch
===
--- higan-gtk/repos/community-i686/higan-makefile.patch 2015-01-20 23:21:34 UTC 
(rev 126333)
+++ 

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

2015-01-20 Thread Antonio Rojas
Date: Tuesday, January 20, 2015 @ 23:34:14
  Author: arojas
Revision: 126329

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

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

---+
 /PKGBUILD |  140 
 community-i686/PKGBUILD   |   58 --
 community-x86_64/PKGBUILD |   58 --
 3 files changed, 140 insertions(+), 116 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-01-20 22:33:19 UTC (rev 126328)
+++ community-i686/PKGBUILD 2015-01-20 22:34:14 UTC (rev 126329)
@@ -1,58 +0,0 @@
-# Maintainer: Antonio Rojas aro...@archlinux.org
-# Contributor:  TDY t...@archlinux.info
-# Contributor: Rémy Oudompheng oudom...@clipper.ens.fr
-
-pkgbase=gap
-pkgname=('gap' 'gap-packages')
-pkgver=4.7.6
-pkgrel=3
-pkgdesc=GAP: a system for computational discrete algebra
-arch=('i686' 'x86_64')
-url=http://www.gap-system.org/;
-license=('GPL')
-source=(http://www.gap-system.org/pub/gap/gap47/tar.bz2/gap4r7p6_2014_11_15-20_02.tar.bz2;)
-sha256sums=('cfcc6efb6ea79a38efad6031eb8bedbc6474f47dc32c53bd7bada2febdb32b4a')
-
-build() {
-  cd gap4r7
-  ./configure --prefix=/usr --with-gmp=system
-  make
-}
-
-package_gap() {
-  depends=('gmp')
-  optdepends=('gap-packages: extra packages')
-  replaces=('gap-math')
-  conflicts=('gap-math')
-  cd gap4r7
-  
-  mkdir -p $pkgdir/usr/lib/gap
-  cp -r * $pkgdir/usr/lib/gap
-
-# move pkg to gap-packages, except for GAPDoc
-  mv $pkgdir/usr/lib/gap/pkg{,0}
-  mkdir $pkgdir/usr/lib/gap/pkg
-  mv $pkgdir/usr/lib/gap/pkg0/GAPDoc-* $pkgdir/usr/lib/gap/pkg
-  rm -r $pkgdir/usr/lib/gap/pkg0
-
-# remove leftover source files
-  rm -r $pkgdir/usr/lib/gap/extern
-
-  mkdir -p $pkgdir/usr/bin
-  ln -s /usr/lib/gap/bin/gap.sh $pkgdir/usr/bin/gap
-
-# fix location
-  sed -e 's|/build/gap/src/gap4r7|/usr/lib/gap|' -i 
$pkgdir/usr/lib/gap/bin/gap.sh  
-}
-
-package_gap-packages() {
-  depends=('gap')
-  pkgdesc=Extra packages for GAP
-  cd gap4r7
-
-  mkdir -p $pkgdir/usr/lib/gap
-  cp -r pkg $pkgdir/usr/lib/gap
-
-# GAPDoc is in main package
-  rm -r $pkgdir/usr/lib/gap/pkg/GAPDoc-*
-}

Copied: gap/repos/community-i686/PKGBUILD (from rev 126328, gap/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-01-20 22:34:14 UTC (rev 126329)
@@ -0,0 +1,70 @@
+# Maintainer: Antonio Rojas aro...@archlinux.org
+# Contributor:  TDY t...@archlinux.info
+# Contributor: Rémy Oudompheng oudom...@clipper.ens.fr
+
+pkgbase=gap
+pkgname=('gap' 'gap-data' 'gap-doc' 'gap-packages')
+pkgver=4.7.6
+pkgrel=4
+pkgdesc=Groups, Algorithms, Programming: a system for computational discrete 
algebra
+arch=('i686' 'x86_64')
+url=http://www.gap-system.org/;
+license=('GPL')
+source=(http://www.gap-system.org/pub/gap/gap47/tar.bz2/gap4r7p6_2014_11_15-20_02.tar.bz2;)
+sha256sums=('cfcc6efb6ea79a38efad6031eb8bedbc6474f47dc32c53bd7bada2febdb32b4a')
+
+build() {
+  cd gap4r7
+  ./configure --prefix=/usr --with-gmp=system
+  make
+}
+
+package_gap() {
+  depends=('gmp')
+  optdepends=('gap-packages: extra packages' 'gap-data: additional databases' 
'gap-doc: documentation')
+  replaces=('gap-math')
+  conflicts=('gap-math')
+  cd gap4r7
+  
+  mkdir -p $pkgdir/usr/lib/gap
+  cp -r bin etc grp lib tst CITATION $pkgdir/usr/lib/gap
+  
+  mkdir -p $pkgdir/usr/lib/gap/pkg
+  cp -r pkg/GAPDoc-* $pkgdir/usr/lib/gap/pkg
+
+  mkdir -p $pkgdir/usr/bin
+  ln -s /usr/lib/gap/bin/gap.sh $pkgdir/usr/bin/gap
+
+# fix location
+  sed -e 's|/build/gap/src/gap4r7|/usr/lib/gap|' -i 
$pkgdir/usr/lib/gap/bin/gap.sh  
+}
+
+package_gap-data() {
+  depends=('gap')
+  pkgdesc=Additional databases for GAP
+  cd gap4r7
+
+  mkdir -p $pkgdir/usr/lib/gap
+  cp -r prim small trans $pkgdir/usr/lib/gap
+}
+
+package_gap-doc() {
+  depends=('gap')
+  pkgdesc=Documentation for GAP
+  cd gap4r7
+
+  mkdir -p $pkgdir/usr/lib/gap
+  cp -r doc $pkgdir/usr/lib/gap
+}
+
+package_gap-packages() {
+  depends=('gap')
+  pkgdesc=Extra packages for GAP
+  cd gap4r7
+
+  mkdir -p $pkgdir/usr/lib/gap
+  cp -r pkg $pkgdir/usr/lib/gap
+
+# GAPDoc is in main package
+  rm -r $pkgdir/usr/lib/gap/pkg/GAPDoc-*
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-01-20 22:33:19 UTC (rev 126328)
+++ community-x86_64/PKGBUILD   2015-01-20 22:34:14 UTC (rev 126329)
@@ -1,58 +0,0 @@
-# Maintainer: Antonio Rojas aro...@archlinux.org
-# Contributor:  TDY t...@archlinux.info
-# Contributor: Rémy Oudompheng oudom...@clipper.ens.fr
-
-pkgbase=gap

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

2015-01-20 Thread Kyle Keen
Date: Wednesday, January 21, 2015 @ 05:31:05
  Author: kkeen
Revision: 126335

upgpkg: seamonkey 2.32-1

Modified:
  seamonkey/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-20 23:27:47 UTC (rev 126334)
+++ PKGBUILD2015-01-21 04:31:05 UTC (rev 126335)
@@ -2,7 +2,7 @@
 # Maintainer: Kyle Keen keen...@gmail.com
 
 pkgname=seamonkey
-pkgver=2.31
+pkgver=2.32
 pkgrel=1
 pkgdesc=SeaMonkey internet suite
 arch=('i686' 'x86_64')
@@ -19,7 +19,7 @@
 mozconfig
 seamonkey-2.0-lang.patch
 rhbz-966424.patch)
-md5sums=('44b6f9cfc2a95fd08dba35ff236d306e'
+md5sums=('52302e4ce4599c8ab5eb8d4f9a78e7bd'
  '9b6d65e9b77acf9fd7c6e3578a5d2acd'
  '25b6fe16ac24cd5c852213e5c1adb272'
  '8c1578232b7a60fa1caa9a0b322d1e2b')
@@ -76,6 +76,3 @@
   #rm -r $pkgdir/usr/{include,lib/seamonkey-devel-$pkgver,share/idl}
 }
 
-
-
-


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

2015-01-20 Thread Kyle Keen
Date: Wednesday, January 21, 2015 @ 05:31:46
  Author: kkeen
Revision: 126336

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

Added:
  seamonkey/repos/community-i686/PKGBUILD
(from rev 126335, seamonkey/trunk/PKGBUILD)
  seamonkey/repos/community-i686/mozconfig
(from rev 126335, seamonkey/trunk/mozconfig)
  seamonkey/repos/community-i686/rhbz-966424.patch
(from rev 126335, seamonkey/trunk/rhbz-966424.patch)
  seamonkey/repos/community-i686/seamonkey-2.0-lang.patch
(from rev 126335, seamonkey/trunk/seamonkey-2.0-lang.patch)
  seamonkey/repos/community-i686/seamonkey.install
(from rev 126335, seamonkey/trunk/seamonkey.install)
  seamonkey/repos/community-x86_64/PKGBUILD
(from rev 126335, seamonkey/trunk/PKGBUILD)
  seamonkey/repos/community-x86_64/mozconfig
(from rev 126335, seamonkey/trunk/mozconfig)
  seamonkey/repos/community-x86_64/rhbz-966424.patch
(from rev 126335, seamonkey/trunk/rhbz-966424.patch)
  seamonkey/repos/community-x86_64/seamonkey-2.0-lang.patch
(from rev 126335, seamonkey/trunk/seamonkey-2.0-lang.patch)
  seamonkey/repos/community-x86_64/seamonkey.install
(from rev 126335, seamonkey/trunk/seamonkey.install)
Deleted:
  seamonkey/repos/community-i686/PKGBUILD
  seamonkey/repos/community-i686/mozconfig
  seamonkey/repos/community-i686/rhbz-966424.patch
  seamonkey/repos/community-i686/seamonkey-2.0-lang.patch
  seamonkey/repos/community-i686/seamonkey.install
  seamonkey/repos/community-x86_64/PKGBUILD
  seamonkey/repos/community-x86_64/mozconfig
  seamonkey/repos/community-x86_64/rhbz-966424.patch
  seamonkey/repos/community-x86_64/seamonkey-2.0-lang.patch
  seamonkey/repos/community-x86_64/seamonkey.install

---+
 /PKGBUILD |  156 
 /mozconfig|   72 
 /rhbz-966424.patch|   46 
 /seamonkey-2.0-lang.patch |   22 +++
 /seamonkey.install|   24 
 community-i686/PKGBUILD   |   81 --
 community-i686/mozconfig  |   36 --
 community-i686/rhbz-966424.patch  |   23 
 community-i686/seamonkey-2.0-lang.patch   |   11 -
 community-i686/seamonkey.install  |   12 --
 community-x86_64/PKGBUILD |   81 --
 community-x86_64/mozconfig|   36 --
 community-x86_64/rhbz-966424.patch|   23 
 community-x86_64/seamonkey-2.0-lang.patch |   11 -
 community-x86_64/seamonkey.install|   12 --
 15 files changed, 320 insertions(+), 326 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-01-21 04:31:05 UTC (rev 126335)
+++ community-i686/PKGBUILD 2015-01-21 04:31:46 UTC (rev 126336)
@@ -1,81 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen keen...@gmail.com
-
-pkgname=seamonkey
-pkgver=2.31
-pkgrel=1
-pkgdesc=SeaMonkey internet suite
-arch=('i686' 'x86_64')
-license=('MPL')
-depends=('alsa-lib'  'dbus-glib'  'desktop-file-utils'  'gtk2' 'hunspell'  
'libevent'  'libnotify'  'libvpx'  'libxt' 'mime-types'  'mozilla-common'  
'nss'  'sqlite'  'startup-notification' 'libpulse' 'icu')
-makedepends=('unzip' 'zip' 'pkg-config'  'python2' 'yasm' 'wireless_tools' 
'mesa' 'autoconf2.13' 'imake' 'python3' 'gstreamer0.10-base')
-optdepends=('gstreamer0.10-base-plugins: vorbis decoding, ogg demuxing'
-'gstreamer0.10-bad-plugins: aac, vp8 and opus decoding'
-'gstreamer0.10-good-plugins: webm and mp4 demuxing'
-'gstreamer0.10-ugly-plugins: h.264 decoding')
-install=$pkgname.install
-url=http://www.seamonkey-project.org/;
-source=(ftp://ftp.mozilla.org/pub/mozilla.org/$pkgname/releases/$pkgver/source/$pkgname-$pkgver.source.tar.bz2
-mozconfig
-seamonkey-2.0-lang.patch
-rhbz-966424.patch)
-md5sums=('44b6f9cfc2a95fd08dba35ff236d306e'
- '9b6d65e9b77acf9fd7c6e3578a5d2acd'
- '25b6fe16ac24cd5c852213e5c1adb272'
- '8c1578232b7a60fa1caa9a0b322d1e2b')
-
-prepare() {
-  cd comm-release
-  cp ../mozconfig .mozconfig
-  #patch -Np1 -i ../seamonkey-2.0-lang.patch
-
-  # https://bugs.archlinux.org/task/41689
-  patch -Np1 -d mozilla -i ../../rhbz-966424.patch
-
-  # Don't exit with error when some libs are missing which we have in
-  # system.
-  sed -i '/^MOZ_PKG_FATAL_WARNINGS/s@= 1@= 0@' suite/installer/Makefile.in
-
-  # configure script misdetects the preprocessor without an optimization level
-  sed -i '/ac_cpp=/s/$CPPFLAGS/ -O2/' configure
-
-  # 2.26 build fix from wgnie (blfs ch 37)
-  sed -i 's/$(MOZ_ZLIB_CFLAGS)/ $(MOZ_PIXMAN_CFLAGS)/' config/config.mk
-}
-
-build() {
-  cd comm-release
-
-  export LDFLAGS=$LDFLAGS -Wl,-rpath,/usr/lib/seamonkey-$pkgver
-  export MOZ_MAKE_FLAGS=$MAKEFLAGS
-  unset MAKEFLAGS
-  unset CPPFLAGS
-
-  make -j1 -f client.mk build
-}

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

2015-01-20 Thread Evangelos Foutras
Date: Wednesday, January 21, 2015 @ 06:16:21
  Author: foutrelis
Revision: 126337

upgpkg: python-pygments 2.0.2-1

New upstream release.

Modified:
  python-pygments/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-21 04:31:46 UTC (rev 126336)
+++ PKGBUILD2015-01-21 05:16:21 UTC (rev 126337)
@@ -3,7 +3,7 @@
 # Contributor: Timm Preetz t...@preetz.us
 
 pkgname=('python-pygments' 'python2-pygments')
-pkgver=2.0.1
+pkgver=2.0.2
 pkgrel=1
 pkgdesc=Python syntax highlighter
 arch=('any')
@@ -12,7 +12,7 @@
 makedepends=('python-setuptools' 'python2-setuptools')
 options=('!emptydirs')
 
source=(https://pypi.python.org/packages/source/P/Pygments/Pygments-$pkgver.tar.gz)
-sha256sums=('5e039e1d40d232981ed58914b6d1ac2e453a7e83ddea22ef9f3eeadd01de45cb')
+sha256sums=('7320919084e6dac8f4540638a46447a3bd730fca172afc17d2c03eed22cf4f51')
 
 package_python-pygments() {
   depends=('python-setuptools')


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

2015-01-20 Thread Evangelos Foutras
Date: Wednesday, January 21, 2015 @ 06:16:30
  Author: foutrelis
Revision: 126338

archrelease: copy trunk to community-any

Added:
  python-pygments/repos/community-any/PKGBUILD
(from rev 126337, python-pygments/trunk/PKGBUILD)
  python-pygments/repos/community-any/python-pygments.install
(from rev 126337, python-pygments/trunk/python-pygments.install)
Deleted:
  python-pygments/repos/community-any/PKGBUILD
  python-pygments/repos/community-any/python-pygments.install

-+
 PKGBUILD|   88 +++---
 python-pygments.install |   14 +++
 2 files changed, 51 insertions(+), 51 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-01-21 05:16:21 UTC (rev 126337)
+++ PKGBUILD2015-01-21 05:16:30 UTC (rev 126338)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Evangelos Foutras evange...@foutrelis.com
-# Contributor: Timm Preetz t...@preetz.us
-
-pkgname=('python-pygments' 'python2-pygments')
-pkgver=2.0.1
-pkgrel=1
-pkgdesc=Python syntax highlighter
-arch=('any')
-url=http://pygments.org/;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools')
-options=('!emptydirs')
-source=(https://pypi.python.org/packages/source/P/Pygments/Pygments-$pkgver.tar.gz)
-sha256sums=('5e039e1d40d232981ed58914b6d1ac2e453a7e83ddea22ef9f3eeadd01de45cb')
-
-package_python-pygments() {
-  depends=('python-setuptools')
-  install=python-pygments.install
-
-  cd $srcdir/Pygments-$pkgver
-
-  python3 setup.py install --root=$pkgdir -O1
-
-  # pygmentize has been moved to the python2-pygments package
-  rm $pkgdir/usr/bin/pygmentize
-
-  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-pygments() {
-  depends=('python2-setuptools')
-
-  cd $srcdir/Pygments-$pkgver
-
-  python2 setup.py install --root=$pkgdir -O1
-
-  install -Dm644 external/pygments.bashcomp \
-$pkgdir/usr/share/bash-completion/completions/pygmentize
-
-  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-pygments/repos/community-any/PKGBUILD (from rev 126337, 
python-pygments/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-01-21 05:16:30 UTC (rev 126338)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Evangelos Foutras evange...@foutrelis.com
+# Contributor: Timm Preetz t...@preetz.us
+
+pkgname=('python-pygments' 'python2-pygments')
+pkgver=2.0.2
+pkgrel=1
+pkgdesc=Python syntax highlighter
+arch=('any')
+url=http://pygments.org/;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools')
+options=('!emptydirs')
+source=(https://pypi.python.org/packages/source/P/Pygments/Pygments-$pkgver.tar.gz)
+sha256sums=('7320919084e6dac8f4540638a46447a3bd730fca172afc17d2c03eed22cf4f51')
+
+package_python-pygments() {
+  depends=('python-setuptools')
+  install=python-pygments.install
+
+  cd $srcdir/Pygments-$pkgver
+
+  python3 setup.py install --root=$pkgdir -O1
+
+  # pygmentize has been moved to the python2-pygments package
+  rm $pkgdir/usr/bin/pygmentize
+
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-pygments() {
+  depends=('python2-setuptools')
+
+  cd $srcdir/Pygments-$pkgver
+
+  python2 setup.py install --root=$pkgdir -O1
+
+  install -Dm644 external/pygments.bashcomp \
+$pkgdir/usr/share/bash-completion/completions/pygmentize
+
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: python-pygments.install
===
--- python-pygments.install 2015-01-21 05:16:21 UTC (rev 126337)
+++ python-pygments.install 2015-01-21 05:16:30 UTC (rev 126338)
@@ -1,7 +0,0 @@
-post_upgrade() {
-  if (($(vercmp $2 1.4-5)  0)); then
-echo '/usr/bin/pygmentize has been moved to the python2-pygments package'
-  fi
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-pygments/repos/community-any/python-pygments.install (from rev 
126337, python-pygments/trunk/python-pygments.install)
===
--- python-pygments.install (rev 0)
+++ python-pygments.install 2015-01-21 05:16:30 UTC (rev 126338)
@@ -0,0 +1,7 @@
+post_upgrade() {
+  if (($(vercmp $2 1.4-5)  0)); then
+echo '/usr/bin/pygmentize has been moved to the python2-pygments package'
+  fi
+}
+
+# vim:set ts=2 sw=2 et:


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

2015-01-20 Thread Antonio Rojas
Date: Wednesday, January 21, 2015 @ 08:32:01
  Author: arojas
Revision: 126339

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

Added:
  packagekit-qt/repos/community-i686/
  packagekit-qt/repos/community-i686/PKGBUILD
(from rev 126338, packagekit-qt/trunk/PKGBUILD)
  packagekit-qt/repos/community-x86_64/
  packagekit-qt/repos/community-x86_64/PKGBUILD
(from rev 126338, packagekit-qt/trunk/PKGBUILD)

---+
 community-i686/PKGBUILD   |   54 
 community-x86_64/PKGBUILD |   54 
 2 files changed, 108 insertions(+)

Copied: packagekit-qt/repos/community-i686/PKGBUILD (from rev 126338, 
packagekit-qt/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-01-21 07:32:01 UTC (rev 126339)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Christian Hesse m...@eworm.de
+# Contributor: Antonio Rojas aro...@archlinux.org
+
+pkgbase=packagekit-qt
+pkgname=('packagekit-qt4' 'packagekit-qt5')
+pkgver=0.9.5
+pkgrel=4
+arch=('i686' 'x86_64')
+url='http://www.packagekit.org/'
+license=('LGPL')
+depends=('packagekit')
+makedepends=('cmake' 'qt4' 'qt5-base')
+validpgpkeys=('163EB50119225DB3DF8F49EA17ACBA8DFA970E17') # Richard Hughes
+source=(http://www.freedesktop.org/software/PackageKit/releases/PackageKit-Qt-${pkgver}.tar.xz{,.asc})
+sha256sums=('f4fb60b82d845d887de57ef44481301f966291912116e416d981156faf3620f0'
+'SKIP')
+
+build() {
+   mkdir -p ${srcdir}/{packagekit-qt4,packagekit-qt5}
+
+   cd ${srcdir}/packagekit-qt4/
+
+   cmake ../PackageKit-Qt-${pkgver} \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DCMAKE_INSTALL_LIBDIR=lib
+   make
+
+   cd ${srcdir}/packagekit-qt5/
+
+   cmake ../PackageKit-Qt-${pkgver} \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DCMAKE_INSTALL_LIBDIR=lib \
+   -DUSE_QT5=ON
+   make
+}
+
+package_packagekit-qt4() {
+   pkgdesc='Qt4 bindings for PackageKit'
+   depends+=('qt4')
+
+   cd ${srcdir}/packagekit-qt4/
+   make DESTDIR=${pkgdir} install
+}
+
+package_packagekit-qt5() {
+   pkgdesc='Qt5 bindings for PackageKit'
+   depends+=('qt5-base')
+
+   cd ${srcdir}/packagekit-qt5/
+   make DESTDIR=${pkgdir} install
+}

Copied: packagekit-qt/repos/community-x86_64/PKGBUILD (from rev 126338, 
packagekit-qt/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-01-21 07:32:01 UTC (rev 126339)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Christian Hesse m...@eworm.de
+# Contributor: Antonio Rojas aro...@archlinux.org
+
+pkgbase=packagekit-qt
+pkgname=('packagekit-qt4' 'packagekit-qt5')
+pkgver=0.9.5
+pkgrel=4
+arch=('i686' 'x86_64')
+url='http://www.packagekit.org/'
+license=('LGPL')
+depends=('packagekit')
+makedepends=('cmake' 'qt4' 'qt5-base')
+validpgpkeys=('163EB50119225DB3DF8F49EA17ACBA8DFA970E17') # Richard Hughes
+source=(http://www.freedesktop.org/software/PackageKit/releases/PackageKit-Qt-${pkgver}.tar.xz{,.asc})
+sha256sums=('f4fb60b82d845d887de57ef44481301f966291912116e416d981156faf3620f0'
+'SKIP')
+
+build() {
+   mkdir -p ${srcdir}/{packagekit-qt4,packagekit-qt5}
+
+   cd ${srcdir}/packagekit-qt4/
+
+   cmake ../PackageKit-Qt-${pkgver} \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DCMAKE_INSTALL_LIBDIR=lib
+   make
+
+   cd ${srcdir}/packagekit-qt5/
+
+   cmake ../PackageKit-Qt-${pkgver} \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DCMAKE_INSTALL_LIBDIR=lib \
+   -DUSE_QT5=ON
+   make
+}
+
+package_packagekit-qt4() {
+   pkgdesc='Qt4 bindings for PackageKit'
+   depends+=('qt4')
+
+   cd ${srcdir}/packagekit-qt4/
+   make DESTDIR=${pkgdir} install
+}
+
+package_packagekit-qt5() {
+   pkgdesc='Qt5 bindings for PackageKit'
+   depends+=('qt5-base')
+
+   cd ${srcdir}/packagekit-qt5/
+   make DESTDIR=${pkgdir} install
+}


[arch-commits] Commit in packagekit-qt/repos (community-i686 community-x86_64)

2015-01-20 Thread Antonio Rojas
Date: Wednesday, January 21, 2015 @ 08:58:42
  Author: arojas
Revision: 126342

Deleted:
  packagekit-qt/repos/community-i686/
  packagekit-qt/repos/community-x86_64/


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

2015-01-20 Thread Gaetan Bisson
Date: Wednesday, January 21, 2015 @ 07:23:41
  Author: bisson
Revision: 229623

fix FS#43519

Modified:
  libmowgli/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-20 20:31:43 UTC (rev 229622)
+++ PKGBUILD2015-01-21 06:23:41 UTC (rev 229623)
@@ -7,7 +7,7 @@
 pkgver=2.0.0
 pkgrel=2
 pkgdesc='Performance and usability-oriented extensions to C'
-url='http://www.atheme.org/project/mowgli'
+url='http://atheme.org/projects/libmowgli.html'
 license=('custom')
 arch=('i686' 'x86_64')
 depends=('openssl')


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

2015-01-20 Thread Antonio Rojas
Date: Wednesday, January 21, 2015 @ 08:57:02
  Author: arojas
Revision: 126340

Add appstream (dependency of muon)

Added:
  appstream/
  appstream/trunk/
  appstream/trunk/PKGBUILD

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

Added: appstream/trunk/PKGBUILD
===
--- appstream/trunk/PKGBUILD(rev 0)
+++ appstream/trunk/PKGBUILD2015-01-21 07:57:02 UTC (rev 126340)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Antonio Rojas aro...@archlinux.org
+# Contributor: Jameson Pugh imntr...@gmail.com
+# Contributor: Tim Jester-Pfadt t.jpatgmx.de
+
+pkgbase=appstream
+pkgname=(appstream appstream-qt)
+pkgver=0.7.6
+pkgrel=1
+pkgdesc=Provides a standard for creating app stores across distributions
+arch=('i686' 'x86_64')
+url=http://distributions.freedesktop.org/wiki/AppStream;
+license=('GPL')
+depends=('xapian-core' 'polkit' 'libyaml' 'libxml2' 'qt5-base')
+makedepends=('cmake' 'xmlto' 'intltool' 'gobject-introspection' 'python2' 
'docbook-xsl')
+source=(http://www.freedesktop.org/software/appstream/releases/AppStream-$pkgver.tar.xz;)
+sha256sums=('7b3b907049ae908a3dd240b5ea7f814988d80d8fe44fa93eee4e2d3d4517ce30')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  cmake ../AppStream-$pkgver -DQT=ON -DAPPSTREAM_QT_VERSION=5 
-DCMAKE_INSTALL_LIBDIR=lib
+  make
+}
+
+package_appstream() {
+  cd build
+
+  make DESTDIR=$pkgdir install
+  
+# provided by -qt subpackage
+  rm -r $pkgdir/usr/{include/AppstreamQt,lib/cmake,lib/libAppstreamQt.*}
+}
+
+package_appstream-qt() {
+  pkgdesc=('Qt5 interface for AppStream')
+  depends=('appstream')
+
+  cd build/qt
+  make DESTDIR=$pkgdir install
+}


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


[arch-commits] Commit in appstream (4 files)

2015-01-20 Thread Antonio Rojas
Date: Wednesday, January 21, 2015 @ 08:57:35
  Author: arojas
Revision: 126341

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

Added:
  appstream/repos/
  appstream/repos/community-i686/
  appstream/repos/community-i686/PKGBUILD
(from rev 126340, appstream/trunk/PKGBUILD)
  appstream/repos/community-x86_64/

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

Copied: appstream/repos/community-i686/PKGBUILD (from rev 126340, 
appstream/trunk/PKGBUILD)
===
--- repos/community-i686/PKGBUILD   (rev 0)
+++ repos/community-i686/PKGBUILD   2015-01-21 07:57:35 UTC (rev 126341)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Antonio Rojas aro...@archlinux.org
+# Contributor: Jameson Pugh imntr...@gmail.com
+# Contributor: Tim Jester-Pfadt t.jpatgmx.de
+
+pkgbase=appstream
+pkgname=(appstream appstream-qt)
+pkgver=0.7.6
+pkgrel=1
+pkgdesc=Provides a standard for creating app stores across distributions
+arch=('i686' 'x86_64')
+url=http://distributions.freedesktop.org/wiki/AppStream;
+license=('GPL')
+depends=('xapian-core' 'polkit' 'libyaml' 'libxml2' 'qt5-base')
+makedepends=('cmake' 'xmlto' 'intltool' 'gobject-introspection' 'python2' 
'docbook-xsl')
+source=(http://www.freedesktop.org/software/appstream/releases/AppStream-$pkgver.tar.xz;)
+sha256sums=('7b3b907049ae908a3dd240b5ea7f814988d80d8fe44fa93eee4e2d3d4517ce30')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  cmake ../AppStream-$pkgver -DQT=ON -DAPPSTREAM_QT_VERSION=5 
-DCMAKE_INSTALL_LIBDIR=lib
+  make
+}
+
+package_appstream() {
+  cd build
+
+  make DESTDIR=$pkgdir install
+  
+# provided by -qt subpackage
+  rm -r $pkgdir/usr/{include/AppstreamQt,lib/cmake,lib/libAppstreamQt.*}
+}
+
+package_appstream-qt() {
+  pkgdesc=('Qt5 interface for AppStream')
+  depends=('appstream')
+
+  cd build/qt
+  make DESTDIR=$pkgdir install
+}


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

2015-01-20 Thread Andreas Radke
Date: Tuesday, January 20, 2015 @ 21:31:25
  Author: andyrtr
Revision: 229621

upgpkg: dbus 1.8.14-1

upstream update 1.8.14

Modified:
  dbus/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-20 20:21:10 UTC (rev 229620)
+++ PKGBUILD2015-01-20 20:31:25 UTC (rev 229621)
@@ -5,7 +5,7 @@
 
 pkgbase=dbus
 pkgname=('dbus' 'libdbus')
-pkgver=1.8.12
+pkgver=1.8.14
 pkgrel=1
 pkgdesc=Freedesktop.org message bus system
 url=http://www.freedesktop.org/Software/dbus;
@@ -14,10 +14,10 @@
 makedepends=('libx11' 'systemd' 'xmlto' 'docbook-xsl')
 source=(http://dbus.freedesktop.org/releases/dbus/dbus-$pkgver.tar.gz{,.asc}
 30-dbus)
-md5sums=('0ca23fc84c09cb3d29b9c27811ff4475'
+md5sums=('dfb810eda8780cf9debf7169b3ca5fe1'
  'SKIP'
  '3314d727fa57fc443fce25b5cbeebbcc')
-validpgpkeys=('DA98F25C0871C49A59EAFF2C4DE8FF2A63C7CC90')
+validpgpkeys=('DA98F25C0871C49A59EAFF2C4DE8FF2A63C7CC90') # Simon McVittie 
simon.mcvit...@collabora.co.uk
 
 build() {
   cd dbus-$pkgver


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

2015-01-20 Thread Andreas Radke
Date: Tuesday, January 20, 2015 @ 21:31:43
  Author: andyrtr
Revision: 229622

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

Added:
  dbus/repos/testing-i686/
  dbus/repos/testing-i686/30-dbus
(from rev 229621, dbus/trunk/30-dbus)
  dbus/repos/testing-i686/PKGBUILD
(from rev 229621, dbus/trunk/PKGBUILD)
  dbus/repos/testing-x86_64/
  dbus/repos/testing-x86_64/30-dbus
(from rev 229621, dbus/trunk/30-dbus)
  dbus/repos/testing-x86_64/PKGBUILD
(from rev 229621, dbus/trunk/PKGBUILD)

-+
 testing-i686/30-dbus|6 
 testing-i686/PKGBUILD   |   66 ++
 testing-x86_64/30-dbus  |6 
 testing-x86_64/PKGBUILD |   66 ++
 4 files changed, 144 insertions(+)

Copied: dbus/repos/testing-i686/30-dbus (from rev 229621, dbus/trunk/30-dbus)
===
--- testing-i686/30-dbus(rev 0)
+++ testing-i686/30-dbus2015-01-20 20:31:43 UTC (rev 229622)
@@ -0,0 +1,6 @@
+#!/bin/bash
+
+# launches a session dbus instance
+if [ -z $DBUS_SESSION_BUS_ADDRESS ]  type dbus-launch /dev/null; then
+  eval $(dbus-launch --sh-syntax --exit-with-session)
+fi

Copied: dbus/repos/testing-i686/PKGBUILD (from rev 229621, dbus/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-01-20 20:31:43 UTC (rev 229622)
@@ -0,0 +1,66 @@
+# $Id$
+# Maintainer: Tom Gundersen t...@jklm.no
+# Maintainer: Jan de Groot j...@archlinux.org
+# Contributor: Link Dupont l...@subpop.net
+
+pkgbase=dbus
+pkgname=('dbus' 'libdbus')
+pkgver=1.8.14
+pkgrel=1
+pkgdesc=Freedesktop.org message bus system
+url=http://www.freedesktop.org/Software/dbus;
+arch=(i686 x86_64)
+license=('GPL' 'custom')
+makedepends=('libx11' 'systemd' 'xmlto' 'docbook-xsl')
+source=(http://dbus.freedesktop.org/releases/dbus/dbus-$pkgver.tar.gz{,.asc}
+30-dbus)
+md5sums=('dfb810eda8780cf9debf7169b3ca5fe1'
+ 'SKIP'
+ '3314d727fa57fc443fce25b5cbeebbcc')
+validpgpkeys=('DA98F25C0871C49A59EAFF2C4DE8FF2A63C7CC90') # Simon McVittie 
simon.mcvit...@collabora.co.uk
+
+build() {
+  cd dbus-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+  --libexecdir=/usr/lib/dbus-1.0 --with-dbus-user=dbus \
+  --with-system-pid-file=/run/dbus/pid \
+  --with-system-socket=/run/dbus/system_bus_socket \
+  --with-console-auth-dir=/run/console/ \
+  --enable-inotify --disable-dnotify \
+  --disable-verbose-mode --disable-static \
+  --disable-tests --disable-asserts \
+  --with-systemdsystemunitdir=/usr/lib/systemd/system \
+  --enable-systemd
+  make
+}
+
+package_dbus(){
+  depends=('libdbus' 'expat')
+  optdepends=('libx11: dbus-launch support')
+  provides=('dbus-core')
+  conflicts=('dbus-core')
+  replaces=('dbus-core')
+
+  cd dbus-$pkgver
+
+  # Disable installation of libdbus
+  sed -i -e 's/^SUBDIRS = dbus/SUBDIRS =/' Makefile
+
+  make DESTDIR=$pkgdir install
+
+  rm -rf ${pkgdir}/var/run
+  rm -rf ${pkgdir}/usr/lib/pkgconfig
+
+  install -Dm755 ../30-dbus $pkgdir/etc/X11/xinit/xinitrc.d/30-dbus
+  install -Dm644 COPYING $pkgdir/usr/share/licenses/dbus/COPYING
+}
+
+package_libdbus(){
+  pkgdesc=DBus library
+  depends=('glibc')
+
+  cd dbus-$pkgver
+  make DESTDIR=$pkgdir -C dbus install
+  make DESTDIR=$pkgdir install-data-am
+  install -Dm644 COPYING ${pkgdir}/usr/share/licenses/libdbus/COPYING
+}

Copied: dbus/repos/testing-x86_64/30-dbus (from rev 229621, dbus/trunk/30-dbus)
===
--- testing-x86_64/30-dbus  (rev 0)
+++ testing-x86_64/30-dbus  2015-01-20 20:31:43 UTC (rev 229622)
@@ -0,0 +1,6 @@
+#!/bin/bash
+
+# launches a session dbus instance
+if [ -z $DBUS_SESSION_BUS_ADDRESS ]  type dbus-launch /dev/null; then
+  eval $(dbus-launch --sh-syntax --exit-with-session)
+fi

Copied: dbus/repos/testing-x86_64/PKGBUILD (from rev 229621, 
dbus/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2015-01-20 20:31:43 UTC (rev 229622)
@@ -0,0 +1,66 @@
+# $Id$
+# Maintainer: Tom Gundersen t...@jklm.no
+# Maintainer: Jan de Groot j...@archlinux.org
+# Contributor: Link Dupont l...@subpop.net
+
+pkgbase=dbus
+pkgname=('dbus' 'libdbus')
+pkgver=1.8.14
+pkgrel=1
+pkgdesc=Freedesktop.org message bus system
+url=http://www.freedesktop.org/Software/dbus;
+arch=(i686 x86_64)
+license=('GPL' 'custom')
+makedepends=('libx11' 'systemd' 'xmlto' 'docbook-xsl')
+source=(http://dbus.freedesktop.org/releases/dbus/dbus-$pkgver.tar.gz{,.asc}
+30-dbus)
+md5sums=('dfb810eda8780cf9debf7169b3ca5fe1'
+ 'SKIP'
+ 

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

2015-01-20 Thread Jonathan Steel
Date: Tuesday, January 20, 2015 @ 21:44:07
  Author: jsteel
Revision: 126322

upgpkg: stella 4.5-1

Modified:
  stella/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-20 20:06:51 UTC (rev 126321)
+++ PKGBUILD2015-01-20 20:44:07 UTC (rev 126322)
@@ -4,17 +4,17 @@
 # Contributor: Shinlun Hsieh yngwi...@yahoo.com.tw
 
 pkgname=stella
-pkgver=4.2
+pkgver=4.5
 pkgrel=1
-pkgdesc=A multi-platform Atari 2600 VCS emulator
+pkgdesc=Atari 2600 VCS emulator
 arch=('i686' 'x86_64')
 url=http://stella.sourceforge.net;
-license=('GPL')
+license=('GPL2')
 depends=('sdl2' 'gtk-update-icon-cache')
 makedepends=('glu')
 install=$pkgname.install
 
source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver-src.tar.gz)
-md5sums=('d131ac3f90e769f2b0f47fd3a918be77')
+md5sums=('420f9951ed7c058dbd4bf8ccc6d9e015')
 
 build() {
   cd $pkgname-$pkgver


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

2015-01-20 Thread Jonathan Steel
Date: Tuesday, January 20, 2015 @ 21:44:25
  Author: jsteel
Revision: 126323

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

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

-+
 /PKGBUILD   |   62 ++
 /stella.install |   22 +
 community-i686/PKGBUILD |   31 ---
 community-i686/stella.install   |   11 --
 community-x86_64/PKGBUILD   |   31 ---
 community-x86_64/stella.install |   11 --
 6 files changed, 84 insertions(+), 84 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-01-20 20:44:07 UTC (rev 126322)
+++ community-i686/PKGBUILD 2015-01-20 20:44:25 UTC (rev 126323)
@@ -1,31 +0,0 @@
-# Maintainer: Jonathan Steel jsteel at archlinux.org
-# Contributor: Renato Garcia fgarcia.ren...@gmail.com
-# Contributor: Tiago Camargo tcama...@gmail.com
-# Contributor: Shinlun Hsieh yngwi...@yahoo.com.tw
-
-pkgname=stella
-pkgver=4.2
-pkgrel=1
-pkgdesc=A multi-platform Atari 2600 VCS emulator
-arch=('i686' 'x86_64')
-url=http://stella.sourceforge.net;
-license=('GPL')
-depends=('sdl2' 'gtk-update-icon-cache')
-makedepends=('glu')
-install=$pkgname.install
-source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver-src.tar.gz)
-md5sums=('d131ac3f90e769f2b0f47fd3a918be77')
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure --prefix=/usr
-
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  make DESTDIR=$pkgdir install
-}

Copied: stella/repos/community-i686/PKGBUILD (from rev 126322, 
stella/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-01-20 20:44:25 UTC (rev 126323)
@@ -0,0 +1,31 @@
+# Maintainer: Jonathan Steel jsteel at archlinux.org
+# Contributor: Renato Garcia fgarcia.ren...@gmail.com
+# Contributor: Tiago Camargo tcama...@gmail.com
+# Contributor: Shinlun Hsieh yngwi...@yahoo.com.tw
+
+pkgname=stella
+pkgver=4.5
+pkgrel=1
+pkgdesc=Atari 2600 VCS emulator
+arch=('i686' 'x86_64')
+url=http://stella.sourceforge.net;
+license=('GPL2')
+depends=('sdl2' 'gtk-update-icon-cache')
+makedepends=('glu')
+install=$pkgname.install
+source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver-src.tar.gz)
+md5sums=('420f9951ed7c058dbd4bf8ccc6d9e015')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR=$pkgdir install
+}

Deleted: community-i686/stella.install
===
--- community-i686/stella.install   2015-01-20 20:44:07 UTC (rev 126322)
+++ community-i686/stella.install   2015-01-20 20:44:25 UTC (rev 126323)
@@ -1,11 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: stella/repos/community-i686/stella.install (from rev 126322, 
stella/trunk/stella.install)
===
--- community-i686/stella.install   (rev 0)
+++ community-i686/stella.install   2015-01-20 20:44:25 UTC (rev 126323)
@@ -0,0 +1,11 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-01-20 20:44:07 UTC (rev 126322)
+++ community-x86_64/PKGBUILD   2015-01-20 20:44:25 UTC (rev 126323)
@@ -1,31 +0,0 @@
-# Maintainer: Jonathan Steel jsteel at archlinux.org
-# Contributor: Renato Garcia fgarcia.ren...@gmail.com
-# Contributor: Tiago Camargo tcama...@gmail.com
-# Contributor: Shinlun Hsieh yngwi...@yahoo.com.tw
-
-pkgname=stella
-pkgver=4.2
-pkgrel=1
-pkgdesc=A multi-platform Atari 2600 VCS emulator
-arch=('i686' 'x86_64')
-url=http://stella.sourceforge.net;
-license=('GPL')
-depends=('sdl2' 'gtk-update-icon-cache')
-makedepends=('glu')
-install=$pkgname.install
-source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver-src.tar.gz)
-md5sums=('d131ac3f90e769f2b0f47fd3a918be77')
-
-build() {
-  

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

2015-01-20 Thread Andreas Radke
Date: Tuesday, January 20, 2015 @ 20:35:38
  Author: andyrtr
Revision: 229611

upgpkg: xf86-video-vmware 13.1.0-1

upstream update 13.1.0

Modified:
  xf86-video-vmware/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-20 17:37:39 UTC (rev 229610)
+++ PKGBUILD2015-01-20 19:35:38 UTC (rev 229611)
@@ -2,19 +2,21 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=xf86-video-vmware
-pkgver=13.0.2
-pkgrel=2
+pkgver=13.1.0
+pkgrel=1
 pkgdesc=X.org vmware video driver
 arch=(i686 x86_64)
 url=http://xorg.freedesktop.org/;
 license=('custom')
-depends=('libdrm' 'svga-dri' 'mesa=10.0')
+depends=('libdrm' 'mesa=10.0')
 makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=18')
 conflicts=('xorg-server1.16' 'X-ABI-VIDEODRV_VERSION18' 
'X-ABI-VIDEODRV_VERSION=19')
 groups=('xorg-drivers' 'xorg')
 options=('!emptydirs')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('c8ba3d2cead3620dba2cbf5defb7f1759b2b96f4fe209f4bf6976832b6763c54')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2{,.sig})
+sha256sums=('3c1d244e4b1b77e92126957965cdc9fb82de4c215c0706a3a8aaff6939e4a0cc'
+'SKIP')
+validpgpkeys=('90D027AEAF33CBABC140735BC1F5D3CDF5176580') #  Thomas Hellstrom 
(VMware) thellst...@vmware.com
 
 build() {
   cd ${pkgname}-${pkgver}


[arch-commits] Commit in postgis/repos/community-i686 (4 files)

2015-01-20 Thread Jaroslav Lichtblau
Date: Tuesday, January 20, 2015 @ 20:13:01
  Author: jlichtblau
Revision: 126312

archrelease: copy trunk to community-i686

Added:
  postgis/repos/community-i686/PKGBUILD
(from rev 126311, postgis/trunk/PKGBUILD)
  postgis/repos/community-i686/postgis.changelog
(from rev 126311, postgis/trunk/postgis.changelog)
Deleted:
  postgis/repos/community-i686/PKGBUILD
  postgis/repos/community-i686/postgis.changelog

---+
 PKGBUILD  |   62 ++---
 postgis.changelog |   85 ++--
 2 files changed, 75 insertions(+), 72 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-01-20 19:05:10 UTC (rev 126311)
+++ PKGBUILD2015-01-20 19:13:01 UTC (rev 126312)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau dragonl...@aur.archlinux.org
-# Contributor: dibblethewrecker dibblethewrecker.at.jiwe.dot.org
-# Contributor: William Rea sillywi...@gmail.com
-
-pkgname=postgis
-pkgver=2.1.4
-pkgrel=1
-pkgdesc=Adds support for geographic objects to PostgreSQL
-arch=('i686' 'x86_64')
-url=http://postgis.net/;
-license=('GPL')
-depends=('postgresql' 'gdal' 'json-c')
-changelog=$pkgname.changelog
-source=(http://download.osgeo.org/postgis/source/${pkgname}-${pkgver}.tar.gz)
-sha256sums=('cd73c2a38428c8736f6cae73b955aee0bd42f9ca4fd8d93c1af464524cb100fc')
-
-build() {
-  cd ${pkgname}-${pkgver}
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-
-  make DESTDIR=${pkgdir} install
-}
-
-# vim: ts=2 sw=2 et:

Copied: postgis/repos/community-i686/PKGBUILD (from rev 126311, 
postgis/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-01-20 19:13:01 UTC (rev 126312)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau svetlemo...@archlinux.org
+# Contributor: dibblethewrecker dibblethewrecker.at.jiwe.dot.org
+# Contributor: William Rea sillywi...@gmail.com
+
+pkgname=postgis
+pkgver=2.1.5
+pkgrel=1
+pkgdesc=Adds support for geographic objects to PostgreSQL
+arch=('i686' 'x86_64')
+url=http://postgis.net/;
+license=('GPL')
+depends=('postgresql' 'gdal' 'json-c')
+changelog=$pkgname.changelog
+source=(http://download.osgeo.org/postgis/source/${pkgname}-${pkgver}.tar.gz)
+sha256sums=('0d0e27f72f12b8dba456fbde25ed0f6913f42baf57332a7f1b9bbc6f29fddbf4')
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+}
+
+# vim: ts=2 sw=2 et:

Deleted: postgis.changelog
===
--- postgis.changelog   2015-01-20 19:05:10 UTC (rev 126311)
+++ postgis.changelog   2015-01-20 19:13:01 UTC (rev 126312)
@@ -1,41 +0,0 @@
-2014-09-12 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-* postgis-2.1.4-1
-
-2014-05-25 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-* postgis-2.1.3-1
-
-2014-04-02 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-* postgis-2.1.2-1
-
-2013-11-11 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-* postgis-2.1.1-1
-
-2013-08-22 Maxime Gauduin aluc...@gmail.com
-* postgis-2.1.0-1
-* Fixes FS#35816
-
-2013-06-15 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-* postgis-2.0.3-1
-
-2013-01-05 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-* postgis-2.0.2-1
-
-2012-09-24 Dan McGee d...@archlinux.org
-* Rebuild for PostgreSQL 9.2.x
-* Update to minor release 2.0.1
-
-2012-05-31 Andrea Scarpino and...@archlinux.org
-* Add JSON-C support
-* Build utils (FS#25836)
-
-2012-05-31 Andrea Scarpino and...@archlinux.org
-* Update to major release 2.0.0-1
-
-2011-10-26 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-* FS#26159 fix in postgis-1.5.3-2
-
-2010-10-30 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-* Update to major release 1.5.2
-
-2010-03-21 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-* Update to major release 1.5.1

Copied: postgis/repos/community-i686/postgis.changelog (from rev 126311, 
postgis/trunk/postgis.changelog)
===
--- postgis.changelog   (rev 0)
+++ postgis.changelog   2015-01-20 19:13:01 UTC (rev 126312)
@@ -0,0 +1,44 @@
+2015-01-20 Jaroslav Lichtblau svetlemo...@archlinux.org
+* postgis-2.1.5-1
+
+2014-09-12 Jaroslav Lichtblau svetlemo...@archlinux.org
+* postgis-2.1.4-1
+
+2014-05-25 Jaroslav Lichtblau svetlemo...@archlinux.org
+* postgis-2.1.3-1
+
+2014-04-02 Jaroslav Lichtblau svetlemo...@archlinux.org
+* postgis-2.1.2-1
+
+2013-11-11 Jaroslav Lichtblau svetlemo...@archlinux.org
+* postgis-2.1.1-1
+
+2013-08-22 Maxime Gauduin aluc...@gmail.com
+* postgis-2.1.0-1
+* Fixes FS#35816
+
+2013-06-15 Jaroslav Lichtblau svetlemo...@archlinux.org
+* 

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

2015-01-20 Thread Antonio Rojas
Date: Tuesday, January 20, 2015 @ 20:27:01
  Author: arojas
Revision: 126319

mcqd is not needed at runtime

Modified:
  sage-mathematics/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-20 19:25:33 UTC (rev 126318)
+++ PKGBUILD2015-01-20 19:27:01 UTC (rev 126319)
@@ -16,7 +16,7 @@
 license=('GPL')
 depends=('ipython2' 'ppl' 'glpk' 'mpfi' 'palp' 'polybori' 'singular' 
'libcliquer' 'maxima-ecl' 'gfan' 'sympow' 'tachyon' 'python2-rpy2'
   'python2-matplotlib' 'python2-scipy' 'python2-sympy' 'python2-networkx' 
'libgap' 'gap' 'genus2reduction' 'flintqs' 'lcalc' 'lrcalc' 'libfes'
-  'cryptominisat' 'eclib' 'gmp-ecm' 'zn_poly' 'python2-gd' 'python2-cvxopt' 
'pynac' 'linbox' 'gsl' 'rubiks' 'coxeter3' 'nauty' 'mcqd'
+  'cryptominisat' 'eclib' 'gmp-ecm' 'zn_poly' 'python2-gd' 'python2-cvxopt' 
'pynac' 'linbox' 'gsl' 'rubiks' 'coxeter3' 'nauty'
   'pari-galdata' 'pari-seadata-small' 'sage-data-combinatorial_designs' 
'sage-data-elliptic_curves' 'sage-data-graphs' 'sage-data-polytopes_db'
   'sage-data-conway_polynomials')
 optdepends=('cython2: to compile cython code' 'jmol: 3D plots' 'sage-notebook: 
Web-based notebook interface'
@@ -23,7 +23,7 @@
   'sage-mathematics-doc: Documentation and inline help' 'sage-mathematics-src: 
source files needed to build cython code'
   'python2-pyzmq: ipython notebook' 'python2-tornado: ipython notebook' 
'python2-jinja: ipython notebook'
   'coin-or-cbc: COIN backend for numerical computations')
-makedepends=('cython2' 'boost' 'scons' 'ratpoints' 'symmetrica' 'fflas-ffpack' 
'python2-jinja' 'coin-or-cbc')
+makedepends=('cython2' 'boost' 'scons' 'ratpoints' 'symmetrica' 'fflas-ffpack' 
'python2-jinja' 'coin-or-cbc' 'mcqd')
 source=(https://github.com/sagemath/sage/archive/$pkgver.tar.gz; 
http://www.sagemath.org/packages/upstream/pexpect/pexpect-2.0.tar.bz2; 
 'extensions.patch' 'c_lib.patch' 'env.patch' 'paths.patch' 'blas.patch' 
'clean.patch' 'skip-check.patch' 'gap-hap.patch' 
 'pexpect-env.patch' 'pexpect-del.patch' 'fes02.patch')


[arch-commits] Commit in xf86-video-vmware/repos (4 files)

2015-01-20 Thread Andreas Radke
Date: Tuesday, January 20, 2015 @ 20:35:52
  Author: andyrtr
Revision: 229612

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

Added:
  xf86-video-vmware/repos/extra-i686/PKGBUILD
(from rev 229611, xf86-video-vmware/trunk/PKGBUILD)
  xf86-video-vmware/repos/extra-x86_64/PKGBUILD
(from rev 229611, xf86-video-vmware/trunk/PKGBUILD)
Deleted:
  xf86-video-vmware/repos/extra-i686/PKGBUILD
  xf86-video-vmware/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-01-20 19:35:38 UTC (rev 229611)
+++ extra-i686/PKGBUILD 2015-01-20 19:35:52 UTC (rev 229612)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=xf86-video-vmware
-pkgver=13.0.2
-pkgrel=2
-pkgdesc=X.org vmware video driver
-arch=(i686 x86_64)
-url=http://xorg.freedesktop.org/;
-license=('custom')
-depends=('libdrm' 'svga-dri' 'mesa=10.0')
-makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=18')
-conflicts=('xorg-server1.16' 'X-ABI-VIDEODRV_VERSION18' 
'X-ABI-VIDEODRV_VERSION=19')
-groups=('xorg-drivers' 'xorg')
-options=('!emptydirs')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('c8ba3d2cead3620dba2cbf5defb7f1759b2b96f4fe209f4bf6976832b6763c54')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr --enable-vmwarectrl-client
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-  
-  install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
-  install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
-}

Copied: xf86-video-vmware/repos/extra-i686/PKGBUILD (from rev 229611, 
xf86-video-vmware/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-01-20 19:35:52 UTC (rev 229612)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=xf86-video-vmware
+pkgver=13.1.0
+pkgrel=1
+pkgdesc=X.org vmware video driver
+arch=(i686 x86_64)
+url=http://xorg.freedesktop.org/;
+license=('custom')
+depends=('libdrm' 'mesa=10.0')
+makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=18')
+conflicts=('xorg-server1.16' 'X-ABI-VIDEODRV_VERSION18' 
'X-ABI-VIDEODRV_VERSION=19')
+groups=('xorg-drivers' 'xorg')
+options=('!emptydirs')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2{,.sig})
+sha256sums=('3c1d244e4b1b77e92126957965cdc9fb82de4c215c0706a3a8aaff6939e4a0cc'
+'SKIP')
+validpgpkeys=('90D027AEAF33CBABC140735BC1F5D3CDF5176580') #  Thomas Hellstrom 
(VMware) thellst...@vmware.com
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --enable-vmwarectrl-client
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+  
+  install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
+  install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-01-20 19:35:38 UTC (rev 229611)
+++ extra-x86_64/PKGBUILD   2015-01-20 19:35:52 UTC (rev 229612)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=xf86-video-vmware
-pkgver=13.0.2
-pkgrel=2
-pkgdesc=X.org vmware video driver
-arch=(i686 x86_64)
-url=http://xorg.freedesktop.org/;
-license=('custom')
-depends=('libdrm' 'svga-dri' 'mesa=10.0')
-makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=18')
-conflicts=('xorg-server1.16' 'X-ABI-VIDEODRV_VERSION18' 
'X-ABI-VIDEODRV_VERSION=19')
-groups=('xorg-drivers' 'xorg')
-options=('!emptydirs')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('c8ba3d2cead3620dba2cbf5defb7f1759b2b96f4fe209f4bf6976832b6763c54')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr --enable-vmwarectrl-client
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-  
-  install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
-  install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
-}

Copied: xf86-video-vmware/repos/extra-x86_64/PKGBUILD (from rev 229611, 
xf86-video-vmware/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2015-01-20 19:35:52 UTC (rev 229612)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=xf86-video-vmware
+pkgver=13.1.0
+pkgrel=1
+pkgdesc=X.org vmware video driver
+arch=(i686 x86_64)
+url=http://xorg.freedesktop.org/;

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

2015-01-20 Thread Andreas Radke
Date: Tuesday, January 20, 2015 @ 20:44:49
  Author: andyrtr
Revision: 229617

upgpkg: xorg-sessreg 1.1.0-1

upstream update 1.1.0

Modified:
  xorg-sessreg/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-20 19:37:55 UTC (rev 229616)
+++ PKGBUILD2015-01-20 19:44:49 UTC (rev 229617)
@@ -2,8 +2,8 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=xorg-sessreg
-pkgver=1.0.8
-pkgrel=2
+pkgver=1.1.0
+pkgrel=1
 pkgdesc=Register X sessions in system utmp/utmpx databases
 arch=(i686 x86_64)
 url=http://xorg.freedesktop.org/;
@@ -11,8 +11,10 @@
 depends=('glibc')
 makedepends=('xorg-util-macros' 'xproto')
 groups=('xorg-apps' 'xorg')
-source=(http://xorg.freedesktop.org/archive/individual/app/sessreg-${pkgver}.tar.bz2)
-sha256sums=('0e2accc6272fcc2321aef7370f4ccf0df0fe259b2e942938264e2aaedee6c4c3')
+source=(http://xorg.freedesktop.org/archive/individual/app/sessreg-${pkgver}.tar.bz2{,.sig})
+sha256sums=('551177657835e0902b5eee7b19713035beaa1581bbd3c6506baa553e751e017c'
+'SKIP')
+validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # Alan Coopersmith 
alan.coopersm...@oracle.com
 
 build() {
   cd ${srcdir}/sessreg-${pkgver}


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

2015-01-20 Thread Andreas Radke
Date: Tuesday, January 20, 2015 @ 20:44:59
  Author: andyrtr
Revision: 229618

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

Added:
  xorg-sessreg/repos/testing-i686/
  xorg-sessreg/repos/testing-i686/PKGBUILD
(from rev 229617, xorg-sessreg/trunk/PKGBUILD)
  xorg-sessreg/repos/testing-x86_64/
  xorg-sessreg/repos/testing-x86_64/PKGBUILD
(from rev 229617, xorg-sessreg/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   30 ++
 testing-x86_64/PKGBUILD |   30 ++
 2 files changed, 60 insertions(+)

Copied: xorg-sessreg/repos/testing-i686/PKGBUILD (from rev 229617, 
xorg-sessreg/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-01-20 19:44:59 UTC (rev 229618)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=xorg-sessreg
+pkgver=1.1.0
+pkgrel=1
+pkgdesc=Register X sessions in system utmp/utmpx databases
+arch=(i686 x86_64)
+url=http://xorg.freedesktop.org/;
+license=('custom')
+depends=('glibc')
+makedepends=('xorg-util-macros' 'xproto')
+groups=('xorg-apps' 'xorg')
+source=(http://xorg.freedesktop.org/archive/individual/app/sessreg-${pkgver}.tar.bz2{,.sig})
+sha256sums=('551177657835e0902b5eee7b19713035beaa1581bbd3c6506baa553e751e017c'
+'SKIP')
+validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # Alan Coopersmith 
alan.coopersm...@oracle.com
+
+build() {
+  cd ${srcdir}/sessreg-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/sessreg-${pkgver}
+  make DESTDIR=${pkgdir} install
+  install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
+  install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
+}

Copied: xorg-sessreg/repos/testing-x86_64/PKGBUILD (from rev 229617, 
xorg-sessreg/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2015-01-20 19:44:59 UTC (rev 229618)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=xorg-sessreg
+pkgver=1.1.0
+pkgrel=1
+pkgdesc=Register X sessions in system utmp/utmpx databases
+arch=(i686 x86_64)
+url=http://xorg.freedesktop.org/;
+license=('custom')
+depends=('glibc')
+makedepends=('xorg-util-macros' 'xproto')
+groups=('xorg-apps' 'xorg')
+source=(http://xorg.freedesktop.org/archive/individual/app/sessreg-${pkgver}.tar.bz2{,.sig})
+sha256sums=('551177657835e0902b5eee7b19713035beaa1581bbd3c6506baa553e751e017c'
+'SKIP')
+validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # Alan Coopersmith 
alan.coopersm...@oracle.com
+
+build() {
+  cd ${srcdir}/sessreg-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/sessreg-${pkgver}
+  make DESTDIR=${pkgdir} install
+  install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
+  install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
+}