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

2014-11-14 Thread Eric Bélanger
Date: Saturday, November 15, 2014 @ 06:10:38
  Author: eric
Revision: 226275

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-11-15 05:08:09 UTC (rev 226274)
+++ extra-i686/PKGBUILD 2014-11-15 05:10:38 UTC (rev 226275)
@@ -1,101 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: riai  Ben 
-
-pkgbase=pyqt4
-pkgname=('pyqt4-common' 'python-pyqt4' 'python2-pyqt4')
-pkgver=4.11.2
-pkgrel=1
-arch=('i686' 'x86_64')
-url='http://www.riverbankcomputing.com/software/pyqt/intro'
-license=('GPL')
-makedepends=('python-sip' 'python-dbus' 'python2-sip' 'phonon' 'mesa'
- 'python2-opengl' 'qt-assistant-compat' 'qtwebkit' 'python2-dbus')
-source=("http://downloads.sourceforge.net/pyqt/PyQt-x11-gpl-${pkgver}.tar.gz";)
-md5sums=('6bbb57f6874701adfc6909702f4a4b02')
-
-build() {
-  cp -r PyQt-x11-gpl-${pkgver} Py2Qt-x11-gpl-${pkgver}
-
-  cd PyQt-x11-gpl-${pkgver}
-  python configure-ng.py \
---confirm-license \
---qsci-api \
--q /usr/bin/qmake-qt4
-
-  # Thanks Gerardo for the rpath fix
-  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
-
-  make
-
-  ### Python2 version ###
-  cd ../Py2Qt-x11-gpl-${pkgver}
-  python2 configure-ng.py \
---confirm-license \
--v /usr/share/sip \
---qsci-api \
--q /usr/bin/qmake-qt4
-
-  # Thanks Gerardo for the rpath fix
-  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
-
-  make
-}
-
-package_pyqt4-common(){
-  pkgdesc="Common PyQt files shared between python-pyqt4 and python2-pyqt4"
-  depends=('qt4')
-  replaces=('pyqt-common')
-  conflicts=('pyqt-common')
-  provides=("pyqt-common=${pkgver}")
-
-  cd PyQt-x11-gpl-${pkgver}
-  make -C pyrcc INSTALL_ROOT="${pkgdir}" install
-  make -C pylupdate INSTALL_ROOT="${pkgdir}" install
-
-  install -Dm644 PyQt4.api "${pkgdir}"/usr/share/qt4/qsci/api/python/PyQt4.api
-}
-
-package_python-pyqt4(){
-  pkgdesc="A set of Python 3.x bindings for the Qt toolkit"
-  depends=('qtwebkit' 'python-sip' 'python-dbus' 'pyqt4-common')
-  optdepends=('phonon: enable audio and video in PyQt applications'
-  'qscintilla: QScintilla API'
-  'qt-assistant-compat: add PyQt online help in Qt Assistant')
-  replaces=('pyqt')
-  conflicts=('pyqt')
-  provides=("pyqt=${pkgver}")
-
-  cd PyQt-x11-gpl-${pkgver}
-  # INSTALL_ROOT is needed for the QtDesigner module, the other Makefiles use 
DESTDIR
-  make DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
-
-  # Provided by pyqt-common
-  rm "${pkgdir}"/usr/bin/{pylupdate4,pyrcc4}
-  rm "${pkgdir}"/usr/share/qt4/qsci/api/python/PyQt4.api
-}
-
-package_python2-pyqt4(){
-  pkgdesc="A set of Python 2.x bindings for the Qt toolkit"
-  depends=('qtwebkit' 'python2-sip' 'python2-dbus' 'pyqt4-common')
-  optdepends=('phonon: enable audio and video in PyQt applications'
-  'python2-opengl: enable OpenGL 3D graphics in PyQt applications'
-  'qscintilla: QScintilla API'
-  'qt-assistant-compat: add PyQt online help in Qt Assistant')
-  replaces=('python2-pyqt')
-  conflicts=('python2-pyqt')
-  provides=("python2-pyqt=${pkgver}")
-
-  cd Py2Qt-x11-gpl-${pkgver}
-  # INSTALL_ROOT is needed for the QtDesigner module, the other Makefiles use 
DESTDIR
-  make DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
-
-  # Fix conflicts with python-pyqt4
-  mv "${pkgdir}"/usr/bin/{,python2-}pyuic4
-
-  # Provided by python-pyqt4
-  rm "${pkgdir}"/usr/bin/{pylupdate4,pyrcc4}
-  rm "${pkgdir}"/usr/lib/qt4/plugins/designer/libpyqt4.so
-  rm "${pkgdir}"/usr/share/qt4/qsci/api/python/PyQt4.api
-}

Copied: pyqt4/repos/extra-i686/PKGBUILD (from rev 226274, pyqt4/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-11-15 05:10:38 UTC (rev 226275)
@@ -0,0 +1,101 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: riai  Ben 
+
+pkgbase=pyqt4
+pkgname=('pyqt4-common' 'python-pyqt4' 'python2-pyqt4')
+pkgver=4.11.3
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://www.riverbankcomputing.com/software/pyqt/intro'
+license=('GPL')
+makedepends=('python-sip' 'python-dbus' 'python2-sip' 'phonon-qt4' 'mesa'
+ 'python2-opengl' '

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

2014-11-14 Thread Eric Bélanger
Date: Saturday, November 15, 2014 @ 06:08:09
  Author: eric
Revision: 226274

upgpkg: pyqt4 4.11.3-1

Upstream update

Modified:
  pyqt4/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-11-15 03:53:42 UTC (rev 226273)
+++ PKGBUILD2014-11-15 05:08:09 UTC (rev 226274)
@@ -5,15 +5,15 @@
 
 pkgbase=pyqt4
 pkgname=('pyqt4-common' 'python-pyqt4' 'python2-pyqt4')
-pkgver=4.11.2
+pkgver=4.11.3
 pkgrel=1
 arch=('i686' 'x86_64')
 url='http://www.riverbankcomputing.com/software/pyqt/intro'
 license=('GPL')
-makedepends=('python-sip' 'python-dbus' 'python2-sip' 'phonon' 'mesa'
+makedepends=('python-sip' 'python-dbus' 'python2-sip' 'phonon-qt4' 'mesa'
  'python2-opengl' 'qt-assistant-compat' 'qtwebkit' 'python2-dbus')
 source=("http://downloads.sourceforge.net/pyqt/PyQt-x11-gpl-${pkgver}.tar.gz";)
-md5sums=('6bbb57f6874701adfc6909702f4a4b02')
+md5sums=('997c3e443165a89a559e0d96b061bf70')
 
 build() {
   cp -r PyQt-x11-gpl-${pkgver} Py2Qt-x11-gpl-${pkgver}
@@ -60,7 +60,7 @@
 package_python-pyqt4(){
   pkgdesc="A set of Python 3.x bindings for the Qt toolkit"
   depends=('qtwebkit' 'python-sip' 'python-dbus' 'pyqt4-common')
-  optdepends=('phonon: enable audio and video in PyQt applications'
+  optdepends=('phonon-qt4: enable audio and video in PyQt applications'
   'qscintilla: QScintilla API'
   'qt-assistant-compat: add PyQt online help in Qt Assistant')
   replaces=('pyqt')
@@ -79,7 +79,7 @@
 package_python2-pyqt4(){
   pkgdesc="A set of Python 2.x bindings for the Qt toolkit"
   depends=('qtwebkit' 'python2-sip' 'python2-dbus' 'pyqt4-common')
-  optdepends=('phonon: enable audio and video in PyQt applications'
+  optdepends=('phonon-qt4: enable audio and video in PyQt applications'
   'python2-opengl: enable OpenGL 3D graphics in PyQt applications'
   'qscintilla: QScintilla API'
   'qt-assistant-compat: add PyQt online help in Qt Assistant')


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

2014-11-14 Thread Daniel Micay
Date: Saturday, November 15, 2014 @ 06:02:44
  Author: thestinger
Revision: 122591

archrelease: copy trunk to community-x86_64

Added:
  ettercap/repos/community-x86_64/PKGBUILD
(from rev 122590, ettercap/trunk/PKGBUILD)
Deleted:
  ettercap/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  110 ++---
 1 file changed, 55 insertions(+), 55 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-11-15 05:02:07 UTC (rev 122590)
+++ PKGBUILD2014-11-15 05:02:44 UTC (rev 122591)
@@ -1,55 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: Tom Newsom 
-
-pkgbase=ettercap
-pkgname=('ettercap' 'ettercap-gtk')
-pkgver=0.8.1
-pkgrel=1
-arch=('i686' 'x86_64')
-url="http://ettercap.github.com/ettercap/";
-license=('GPL')
-depends=('openssl' 'libpcap' 'pcre' 'libltdl' 'libnet' 'ethtool' 'curl')
-makedepends=('ghostscript' 'cmake' 'libpcap' 'libltdl' 'libnet' 'gtk2')
-options=('!makeflags' '!emptydirs')
-source=("https://github.com/Ettercap/ettercap/archive/v$pkgver.tar.gz";)
-md5sums=('88510ca6d66b55f5e4363993d2fd81d0')
-
-build() {
-  cd "${srcdir}"
-
-  cp -r ${pkgbase}-${pkgver} ${pkgbase}-${pkgver}-gtk
-
-  cd ${pkgbase}-${pkgver}
-  mkdir build
-  cd build
-  cmake -D ENABLE_GTK=OFF -D CMAKE_INSTALL_PREFIX=/usr -D INSTALL_PREFIX=/usr 
-D CMAKE_BUILD_TYPE=Release ../
-  make
-
-  cd "$srcdir"/${pkgbase}-${pkgver}-gtk
-  mkdir build
-  cd build
-  cmake -D ENABLE_GTK=ON -D CMAKE_INSTALL_PREFIX=/usr -D INSTALL_PREFIX=/usr 
-D CMAKE_BUILD_TYPE=Release ../
-  make
-}
-
-package_ettercap() {
-  pkgdesc="A network sniffer/interceptor/logger for ethernet LANs - console"
-  backup=('etc/ettercap/etter.conf')
-  conflicts=('ettercap-gtk')
-
-  cd "${srcdir}"/${pkgbase}-${pkgver}/build
-  make DESTDIR="${pkgdir}" install
-}
-
-package_ettercap-gtk() {
-  pkgdesc="A network sniffer/interceptor/logger for ethernet LANs - GTK 
frontend"
-  depends+=('gtk2')
-  backup=('etc/ettercap/etter.conf')
-  conflicts=('ettercap')
-  provides=('ettercap')
-  optdepends=('polkit: to run ettercap directly from menu')
-
-  cd "${srcdir}"/${pkgbase}-${pkgver}-gtk/build
-  make DESTDIR="${pkgdir}" install
-}

Copied: ettercap/repos/community-x86_64/PKGBUILD (from rev 122590, 
ettercap/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-11-15 05:02:44 UTC (rev 122591)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer:
+# Contributor: Tom Newsom 
+
+pkgbase=ettercap
+pkgname=('ettercap' 'ettercap-gtk')
+pkgver=0.8.1
+pkgrel=2
+arch=('i686' 'x86_64')
+url="http://ettercap.github.com/ettercap/";
+license=('GPL')
+depends=('openssl' 'libpcap' 'pcre' 'libltdl' 'libnet' 'ethtool' 'curl')
+makedepends=('ghostscript' 'cmake' 'libpcap' 'libltdl' 'libnet' 'gtk2')
+options=('!makeflags' '!emptydirs')
+source=("https://github.com/Ettercap/ettercap/archive/v$pkgver.tar.gz";)
+md5sums=('1c6676b048137bdc4b5757b316d67bc8')
+
+build() {
+  cd "${srcdir}"
+
+  cp -r ${pkgbase}-${pkgver} ${pkgbase}-${pkgver}-gtk
+
+  cd ${pkgbase}-${pkgver}
+  mkdir build
+  cd build
+  cmake -D ENABLE_GTK=OFF -D CMAKE_INSTALL_PREFIX=/usr -D INSTALL_PREFIX=/usr 
-D CMAKE_BUILD_TYPE=Release ../
+  make
+
+  cd "$srcdir"/${pkgbase}-${pkgver}-gtk
+  mkdir build
+  cd build
+  cmake -D ENABLE_GTK=ON -D CMAKE_INSTALL_PREFIX=/usr -D INSTALL_PREFIX=/usr 
-D CMAKE_BUILD_TYPE=Release ../
+  make
+}
+
+package_ettercap() {
+  pkgdesc="A network sniffer/interceptor/logger for ethernet LANs - console"
+  backup=('etc/ettercap/etter.conf')
+  conflicts=('ettercap-gtk')
+
+  cd "${srcdir}"/${pkgbase}-${pkgver}/build
+  make DESTDIR="${pkgdir}" install
+}
+
+package_ettercap-gtk() {
+  pkgdesc="A network sniffer/interceptor/logger for ethernet LANs - GTK 
frontend"
+  depends+=('gtk2')
+  backup=('etc/ettercap/etter.conf')
+  conflicts=('ettercap')
+  provides=('ettercap')
+  optdepends=('polkit: to run ettercap directly from menu')
+
+  cd "${srcdir}"/${pkgbase}-${pkgver}-gtk/build
+  make DESTDIR="${pkgdir}" install
+}


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

2014-11-14 Thread Daniel Micay
Date: Saturday, November 15, 2014 @ 06:02:07
  Author: thestinger
Revision: 122590

upgpkg: ettercap 0.8.1-2

Modified:
  ettercap/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-11-15 03:47:18 UTC (rev 122589)
+++ PKGBUILD2014-11-15 05:02:07 UTC (rev 122590)
@@ -5,7 +5,7 @@
 pkgbase=ettercap
 pkgname=('ettercap' 'ettercap-gtk')
 pkgver=0.8.1
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 url="http://ettercap.github.com/ettercap/";
 license=('GPL')
@@ -13,7 +13,7 @@
 makedepends=('ghostscript' 'cmake' 'libpcap' 'libltdl' 'libnet' 'gtk2')
 options=('!makeflags' '!emptydirs')
 source=("https://github.com/Ettercap/ettercap/archive/v$pkgver.tar.gz";)
-md5sums=('88510ca6d66b55f5e4363993d2fd81d0')
+md5sums=('1c6676b048137bdc4b5757b316d67bc8')
 
 build() {
   cd "${srcdir}"


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

2014-11-14 Thread Gaetan Bisson
Date: Saturday, November 15, 2014 @ 04:53:42
  Author: bisson
Revision: 226273

db-move: moved npth from [testing] to [core] (i686, x86_64)

Added:
  npth/repos/core-i686/
  npth/repos/core-i686/PKGBUILD
(from rev 226272, npth/repos/testing-i686/PKGBUILD)
  npth/repos/core-x86_64/
  npth/repos/core-x86_64/PKGBUILD
(from rev 226272, npth/repos/testing-x86_64/PKGBUILD)
Deleted:
  npth/repos/testing-i686/
  npth/repos/testing-x86_64/

--+
 core-i686/PKGBUILD   |   29 +
 core-x86_64/PKGBUILD |   29 +
 2 files changed, 58 insertions(+)

Copied: npth/repos/core-i686/PKGBUILD (from rev 226272, 
npth/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2014-11-15 03:53:42 UTC (rev 226273)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+
+pkgname=npth
+pkgver=1.1
+pkgrel=1
+pkgdesc='New portable threads library'
+url='http://git.gnupg.org/cgi-bin/gitweb.cgi?p=npth.git'
+license=('LGPL')
+options=('!libtool')
+arch=('i686' 'x86_64')
+source=("ftp://ftp.gnupg.org/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2";)
+sha1sums=('597ce74402e5790553a6273130b214d7ddd0b05d')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure --prefix=/usr --enable-maintainer-mode
+   make
+}
+
+check() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make check
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+}

Copied: npth/repos/core-x86_64/PKGBUILD (from rev 226272, 
npth/repos/testing-x86_64/PKGBUILD)
===
--- core-x86_64/PKGBUILD(rev 0)
+++ core-x86_64/PKGBUILD2014-11-15 03:53:42 UTC (rev 226273)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+
+pkgname=npth
+pkgver=1.1
+pkgrel=1
+pkgdesc='New portable threads library'
+url='http://git.gnupg.org/cgi-bin/gitweb.cgi?p=npth.git'
+license=('LGPL')
+options=('!libtool')
+arch=('i686' 'x86_64')
+source=("ftp://ftp.gnupg.org/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2";)
+sha1sums=('597ce74402e5790553a6273130b214d7ddd0b05d')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure --prefix=/usr --enable-maintainer-mode
+   make
+}
+
+check() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make check
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+}


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

2014-11-14 Thread Eric Bélanger
Date: Saturday, November 15, 2014 @ 04:52:18
  Author: eric
Revision: 226272

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-11-15 03:49:51 UTC (rev 226271)
+++ extra-i686/PKGBUILD 2014-11-15 03:52:18 UTC (rev 226272)
@@ -1,64 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: riai , Ben 
-
-pkgbase=sip
-pkgname=('sip' 'python-sip' 'python2-sip')
-pkgver=4.16.3
-pkgrel=1
-arch=('i686' 'x86_64')
-url='http://www.riverbankcomputing.com/software/sip/intro'
-license=('custom:"sip"')
-makedepends=('python' 'python2')
-source=("http://downloads.sourceforge.net/pyqt/${pkgbase}-${pkgver}.tar.gz";)
-md5sums=('884d60b6f17fc5b910da4665caf6fd85')
-
-build() {
-  cp -r ${pkgbase}-${pkgver} python2-${pkgbase}-${pkgver}
-
-  cd ${pkgbase}-${pkgver}
-  python configure.py CFLAGS="${CFLAGS}" LFLAGS="${LDFLAGS}"
-  make
-
-  ### Python2 version ###
-  cd ../python2-${pkgbase}-${pkgver}
-  python2 configure.py CFLAGS="${CFLAGS}" LFLAGS="${LDFLAGS}"
-  make
-}
-
-package_sip() {
-  pkgdesc="A tool that makes it easy to create Python bindings for C and C++ 
libraries"
-  depends=('glibc')
-
-  cd ${pkgbase}-${pkgver}
-  make DESTDIR="${pkgdir}" install -C sipgen
-
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-package_python-sip() {
-  pkgdesc="Python 3.x SIP bindings for C and C++ libraries"
-  depends=('sip' 'python')
-
-  cd ${pkgbase}-${pkgver}
-  make DESTDIR="${pkgdir}" install -C siplib
-
-  install -Dm644 sipconfig.py 
"${pkgdir}"/usr/lib/python3.4/site-packages/sipconfig.py
-  install -Dm644 sipdistutils.py 
"${pkgdir}"/usr/lib/python3.4/site-packages/sipdistutils.py
-
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-package_python2-sip() {
-  pkgdesc="Python 2.x SIP bindings for C and C++ libraries"
-  depends=('sip' 'python2')
-
-  cd python2-${pkgbase}-${pkgver}
-  make DESTDIR="${pkgdir}" install -C siplib
-
-  install -Dm644 sipconfig.py 
"${pkgdir}"/usr/lib/python2.7/site-packages/sipconfig.py
-  install -Dm644 sipdistutils.py 
"${pkgdir}"/usr/lib/python2.7/site-packages/sipdistutils.py
-
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: sip/repos/extra-i686/PKGBUILD (from rev 226271, sip/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-11-15 03:52:18 UTC (rev 226272)
@@ -0,0 +1,64 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: riai , Ben 
+
+pkgbase=sip
+pkgname=('sip' 'python-sip' 'python2-sip')
+pkgver=4.16.4
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://www.riverbankcomputing.com/software/sip/intro'
+license=('custom:"sip"')
+makedepends=('python' 'python2')
+source=("http://downloads.sourceforge.net/pyqt/${pkgbase}-${pkgver}.tar.gz";)
+md5sums=('a9840670a064dbf8f63a8f653776fec9')
+
+build() {
+  cp -r ${pkgbase}-${pkgver} python2-${pkgbase}-${pkgver}
+
+  cd ${pkgbase}-${pkgver}
+  python configure.py CFLAGS="${CFLAGS}" LFLAGS="${LDFLAGS}"
+  make
+
+  ### Python2 version ###
+  cd ../python2-${pkgbase}-${pkgver}
+  python2 configure.py CFLAGS="${CFLAGS}" LFLAGS="${LDFLAGS}"
+  make
+}
+
+package_sip() {
+  pkgdesc="A tool that makes it easy to create Python bindings for C and C++ 
libraries"
+  depends=('glibc')
+
+  cd ${pkgbase}-${pkgver}
+  make DESTDIR="${pkgdir}" install -C sipgen
+
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_python-sip() {
+  pkgdesc="Python 3.x SIP bindings for C and C++ libraries"
+  depends=('sip' 'python')
+
+  cd ${pkgbase}-${pkgver}
+  make DESTDIR="${pkgdir}" install -C siplib
+
+  install -Dm644 sipconfig.py 
"${pkgdir}"/usr/lib/python3.4/site-packages/sipconfig.py
+  install -Dm644 sipdistutils.py 
"${pkgdir}"/usr/lib/python3.4/site-packages/sipdistutils.py
+
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_python2-sip() {
+  pkgdesc="Python 2.x SIP bindings for C and C++ libraries"
+  depends=('sip' 'python2')
+
+  cd python2-${pkgbase}-${pkgver}
+  make DESTDIR="${pkgdir}" install -C siplib
+
+  install -Dm644 sipconfig.py 
"${pkgdir}"/usr/lib/python2.7/site-packages/sipconfig.py
+  install -Dm644 sipdistutils.py 
"${pkgdir}"/usr/

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

2014-11-14 Thread Eric Bélanger
Date: Saturday, November 15, 2014 @ 04:49:51
  Author: eric
Revision: 226271

upgpkg: sip 4.16.4-1

Upstream update

Modified:
  sip/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-11-15 03:27:51 UTC (rev 226270)
+++ PKGBUILD2014-11-15 03:49:51 UTC (rev 226271)
@@ -5,7 +5,7 @@
 
 pkgbase=sip
 pkgname=('sip' 'python-sip' 'python2-sip')
-pkgver=4.16.3
+pkgver=4.16.4
 pkgrel=1
 arch=('i686' 'x86_64')
 url='http://www.riverbankcomputing.com/software/sip/intro'
@@ -12,7 +12,7 @@
 license=('custom:"sip"')
 makedepends=('python' 'python2')
 source=("http://downloads.sourceforge.net/pyqt/${pkgbase}-${pkgver}.tar.gz";)
-md5sums=('884d60b6f17fc5b910da4665caf6fd85')
+md5sums=('a9840670a064dbf8f63a8f653776fec9')
 
 build() {
   cp -r ${pkgbase}-${pkgver} python2-${pkgbase}-${pkgver}


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

2014-11-14 Thread Felix Yan
Date: Saturday, November 15, 2014 @ 04:47:18
  Author: fyan
Revision: 122589

archrelease: copy trunk to community-any

Added:
  python-flickrapi/repos/community-any/PKGBUILD
(from rev 122588, python-flickrapi/trunk/PKGBUILD)
  python-flickrapi/repos/community-any/fix_setuptools.patch
(from rev 122588, python-flickrapi/trunk/fix_setuptools.patch)
Deleted:
  python-flickrapi/repos/community-any/PKGBUILD
  python-flickrapi/repos/community-any/fix_setuptools.patch

--+
 PKGBUILD |  105 +
 fix_setuptools.patch |   38 -
 2 files changed, 82 insertions(+), 61 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-11-15 03:46:47 UTC (rev 122588)
+++ PKGBUILD2014-11-15 03:47:18 UTC (rev 122589)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Francois Garillot 
-# Contributor: György Balló 
-
-pkgname=python2-flickrapi
-_pkgname=flickrapi
-pkgver=1.4.4
-pkgrel=1
-pkgdesc="The official Python interface to the Flickr API"
-arch=('any')
-url="http://stuvel.eu/flickrapi";
-license=('Python')
-depends=('python2')
-makedepends=('python2-docutils' 'python2-setuptools')
-checkdepends=('python2-nose')
-source=("http://pypi.python.org/packages/source/f/$_pkgname/$_pkgname-$pkgver.zip";)
-
-prepare() {
-  cd $_pkgname-$pkgver
-  find . -type f | xargs sed -i 's@^#!.*python$@#!/usr/bin/python2@'
-}
-
-build() {
-  cd $_pkgname-$pkgver
-  python2 setup.py build
-}
-
-check() {
-  cd $_pkgname-$pkgver
-  nosetests2
-}
-
-package() {
-  cd "$srcdir/$_pkgname-$pkgver"
-
-  python2 setup.py install --root=$pkgdir/ --optimize=1
-
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-sha512sums=('3af0e38ca9368b43d84449cecc8065145e83e086dd07fb9bdd5af23e55f16961c9e87c867c0a965064d2aac9ee022ca2e0bfb291991439ab53ae425c3bd9')

Copied: python-flickrapi/repos/community-any/PKGBUILD (from rev 122588, 
python-flickrapi/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-11-15 03:47:18 UTC (rev 122589)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Francois Garillot 
+# Contributor: György Balló 
+
+pkgbase=python-flickrapi
+pkgname=(python-flickrapi python2-flickrapi)
+_pkgname=flickrapi
+pkgver=2.0
+pkgrel=1
+pkgdesc="The official Python interface to the Flickr API"
+arch=('any')
+url="http://stuvel.eu/flickrapi";
+license=('Python')
+makedepends=('python-docutils' 'python2-docutils' 'python-setuptools' 
'python2-setuptools' 'python-requests-toolbelt' 'python2-requests-toolbelt'
+ 'python-requests-oauthlib' 'python2-requests-oauthlib' 
'python-six' 'python2-six')
+checkdepends=('python-nose' 'python2-nose')
+source=("http://pypi.python.org/packages/source/f/$_pkgname/$_pkgname-$pkgver.tar.gz";)
+sha512sums=('634aede2e33f044265b9332296ab4352670ee00e681d1ebcd5c612ef88b1bed35fb8bcecf4de63b2d6cfa660cb31c6903375ed4b660c39c9c16586fe51708c7a')
+
+prepare() {
+  cp -a $_pkgname-$pkgver{,-py2}
+
+  cd $_pkgname-$pkgver-py2
+  find . -type f | xargs sed -i 's@^#!.*python$@#!/usr/bin/python2@'
+}
+
+build() {
+  cd $_pkgname-$pkgver
+  python setup.py build
+
+  cd ../$_pkgname-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  # Tests not shipped
+  return
+
+  cd $_pkgname-$pkgver
+  python runtests
+
+  cd ../$_pkgname-$pkgver-py2
+  python2 runtests
+}
+
+package_python-flickrapi() {
+  depends=('python-six' 'python-requests-oauthlib' 'python-requests-toolbelt')
+
+  cd "$srcdir/$_pkgname-$pkgver"
+
+  python setup.py install --root=$pkgdir/ --optimize=1
+  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
+}
+
+package_python2-flickrapi() {
+  depends=('python2-six' 'python2-requests-oauthlib' 
'python2-requests-toolbelt')
+
+  cd "$srcdir/$_pkgname-$pkgver-py2"
+
+  python2 setup.py install --root=$pkgdir/ --optimize=1
+  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
+}

Deleted: fix_setuptools.patch
===
--- fix_setuptools.patch2014-11-15 03:46:47 UTC (rev 122588)
+++ fix_setuptools.patch2014-11-15 03:47:18 UTC (rev 122589)
@@ -1,19 +0,0 @@
 a/distribute_setup.py  2013-08-17 22:57:41.227220859 +0800
-+++ b/distribute_setup.py  2013-08-17 22:57:29.343673408 +0800
-@@ -133,6 +133,16 @@
- try:
- try:
- import pkg_resources
-+
-+# Setuptools 0.7b and later is a suitable (and preferable)
-+# substitute for any Distribute version.
-+try:
-+pkg_resources.require("setuptools>=0.7b")
-+return
-+except (pkg_resources.DistributionNotFound,
-+pkg_resources.VersionConflict):
-+pass
-+
- if not hasattr(pkg_

[arch-commits] Commit in (3 files)

2014-11-14 Thread Felix Yan
Date: Saturday, November 15, 2014 @ 04:46:47
  Author: fyan
Revision: 122588

upgpkg: python-flickrapi 2.0-1 add python 3.x counterpart

Added:
  python-flickrapi/
Modified:
  python-flickrapi/trunk/PKGBUILD
Deleted:
  python2-flickrapi/

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

Modified: python-flickrapi/trunk/PKGBUILD
===
--- python2-flickrapi/trunk/PKGBUILD2014-11-14 16:01:26 UTC (rev 122573)
+++ python-flickrapi/trunk/PKGBUILD 2014-11-15 03:46:47 UTC (rev 122588)
@@ -1,42 +1,63 @@
 # $Id$
-# Maintainer: Felix Yan 
+# Maintainer: Felix Yan 
 # Contributor: Francois Garillot 
 # Contributor: György Balló 
 
-pkgname=python2-flickrapi
+pkgbase=python-flickrapi
+pkgname=(python-flickrapi python2-flickrapi)
 _pkgname=flickrapi
-pkgver=1.4.4
+pkgver=2.0
 pkgrel=1
 pkgdesc="The official Python interface to the Flickr API"
 arch=('any')
 url="http://stuvel.eu/flickrapi";
 license=('Python')
-depends=('python2')
-makedepends=('python2-docutils' 'python2-setuptools')
-checkdepends=('python2-nose')
-source=("http://pypi.python.org/packages/source/f/$_pkgname/$_pkgname-$pkgver.zip";)
+makedepends=('python-docutils' 'python2-docutils' 'python-setuptools' 
'python2-setuptools' 'python-requests-toolbelt' 'python2-requests-toolbelt'
+ 'python-requests-oauthlib' 'python2-requests-oauthlib' 
'python-six' 'python2-six')
+checkdepends=('python-nose' 'python2-nose')
+source=("http://pypi.python.org/packages/source/f/$_pkgname/$_pkgname-$pkgver.tar.gz";)
+sha512sums=('634aede2e33f044265b9332296ab4352670ee00e681d1ebcd5c612ef88b1bed35fb8bcecf4de63b2d6cfa660cb31c6903375ed4b660c39c9c16586fe51708c7a')
 
 prepare() {
-  cd $_pkgname-$pkgver
+  cp -a $_pkgname-$pkgver{,-py2}
+
+  cd $_pkgname-$pkgver-py2
   find . -type f | xargs sed -i 's@^#!.*python$@#!/usr/bin/python2@'
 }
 
 build() {
   cd $_pkgname-$pkgver
+  python setup.py build
+
+  cd ../$_pkgname-$pkgver-py2
   python2 setup.py build
 }
 
 check() {
+  # Tests not shipped
+  return
+
   cd $_pkgname-$pkgver
-  nosetests2
+  python runtests
+
+  cd ../$_pkgname-$pkgver-py2
+  python2 runtests
 }
 
-package() {
+package_python-flickrapi() {
+  depends=('python-six' 'python-requests-oauthlib' 'python-requests-toolbelt')
+
   cd "$srcdir/$_pkgname-$pkgver"
 
+  python setup.py install --root=$pkgdir/ --optimize=1
+  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
+}
+
+package_python2-flickrapi() {
+  depends=('python2-six' 'python2-requests-oauthlib' 
'python2-requests-toolbelt')
+
+  cd "$srcdir/$_pkgname-$pkgver-py2"
+
   python2 setup.py install --root=$pkgdir/ --optimize=1
-
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
 }
-
-sha512sums=('3af0e38ca9368b43d84449cecc8065145e83e086dd07fb9bdd5af23e55f16961c9e87c867c0a965064d2aac9ee022ca2e0bfb291991439ab53ae425c3bd9')


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

2014-11-14 Thread Eric Bélanger
Date: Saturday, November 15, 2014 @ 04:27:51
  Author: eric
Revision: 226270

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

Added:
  libkcddb/repos/staging-i686/
  libkcddb/repos/staging-i686/PKGBUILD
(from rev 226269, libkcddb/trunk/PKGBUILD)
  libkcddb/repos/staging-x86_64/
  libkcddb/repos/staging-x86_64/PKGBUILD
(from rev 226269, libkcddb/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   32 
 staging-x86_64/PKGBUILD |   32 
 2 files changed, 64 insertions(+)

Copied: libkcddb/repos/staging-i686/PKGBUILD (from rev 226269, 
libkcddb/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2014-11-15 03:27:51 UTC (rev 226270)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=libkcddb
+pkgver=4.14.2
+pkgrel=2
+pkgdesc="KDE CDDB library"
+url='https://projects.kde.org/projects/kde/kdemultimedia/libkcddb'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdelibs' 'libmusicbrainz5')
+makedepends=('cmake' 'automoc4')
+replaces=('kdemultimedia-kioslave')
+conflicts=('kdemultimedia-kioslave')
+source=("http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz";)
+sha1sums=('8ce677a02042c9e8a8ccd75e0d0b77e2dc1d92ab')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+}

Copied: libkcddb/repos/staging-x86_64/PKGBUILD (from rev 226269, 
libkcddb/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2014-11-15 03:27:51 UTC (rev 226270)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=libkcddb
+pkgver=4.14.2
+pkgrel=2
+pkgdesc="KDE CDDB library"
+url='https://projects.kde.org/projects/kde/kdemultimedia/libkcddb'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdelibs' 'libmusicbrainz5')
+makedepends=('cmake' 'automoc4')
+replaces=('kdemultimedia-kioslave')
+conflicts=('kdemultimedia-kioslave')
+source=("http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz";)
+sha1sums=('8ce677a02042c9e8a8ccd75e0d0b77e2dc1d92ab')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+}


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

2014-11-14 Thread Eric Bélanger
Date: Saturday, November 15, 2014 @ 04:25:47
  Author: eric
Revision: 226269

upgpkg: libkcddb 4.14.2-2

libmusicbrainz5 5.1.0 rebuild

Modified:
  libkcddb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-11-14 22:45:12 UTC (rev 226268)
+++ PKGBUILD2014-11-15 03:25:47 UTC (rev 226269)
@@ -3,7 +3,7 @@
 
 pkgname=libkcddb
 pkgver=4.14.2
-pkgrel=1
+pkgrel=2
 pkgdesc="KDE CDDB library"
 url='https://projects.kde.org/projects/kde/kdemultimedia/libkcddb'
 arch=('i686' 'x86_64')


[arch-commits] Commit in python-requests-oauthlib/repos (2 files)

2014-11-14 Thread Felix Yan
Date: Saturday, November 15, 2014 @ 04:22:24
  Author: fyan
Revision: 122587

archrelease: copy trunk to community-any

Added:
  python-requests-oauthlib/repos/community-any/
  python-requests-oauthlib/repos/community-any/PKGBUILD
(from rev 122586, python-requests-oauthlib/trunk/PKGBUILD)

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

Copied: python-requests-oauthlib/repos/community-any/PKGBUILD (from rev 122586, 
python-requests-oauthlib/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2014-11-15 03:22:24 UTC (rev 122587)
@@ -0,0 +1,54 @@
+# $Id: PKGBUILD 122344 2014-11-11 08:16:49Z fyan $
+# Maintainer: Felix Yan 
+# Contributor: Sebastien Leduc 
+# Contributor: Roberto Catini 
+
+pkgbase=python-requests-oauthlib
+pkgname=('python-requests-oauthlib' 'python2-requests-oauthlib')
+_pkgname=requests-oauthlib
+pkgver=0.4.2
+pkgrel=1
+pkgdesc="First-class OAuth library support for Requests"
+arch=('any')
+url="https://pypi.python.org/pypi/requests-oauthlib";
+license=('custom:ISC')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-requests' 
'python2-requests' 'python-oauthlib' 'python2-oauthlib')
+checkdepends=('python-pytest' 'python2-pytest' 'python-mock' 'python2-mock')
+source=("https://pypi.python.org/packages/source/r/${_pkgname}/${_pkgname}-${pkgver}.tar.gz";)
+md5sums=('df930abe3971fb418c67a8545de54661')
+
+prepare() {
+  cp -a ${_pkgname}-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir/${_pkgname}-$pkgver"
+  python setup.py build
+
+  cd "$srcdir/${_pkgname}-$pkgver-py2"
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir/${_pkgname}-$pkgver"
+  py.test
+
+  cd "$srcdir/${_pkgname}-$pkgver-py2"
+  py.test2
+}
+
+package_python-requests-oauthlib() {
+  depends=('python-requests' 'python-oauthlib')
+
+  cd "$srcdir/${_pkgname}-$pkgver"
+  python setup.py install --root="$pkgdir/" --optimize=1
+  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_python2-requests-oauthlib() {
+  depends=('python2-requests' 'python2-oauthlib')
+
+  cd "$srcdir/${_pkgname}-$pkgver-py2"
+  python2 setup.py install --root="$pkgdir/" --optimize=1
+  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}


[arch-commits] Commit in (4 files)

2014-11-14 Thread Felix Yan
Date: Saturday, November 15, 2014 @ 04:17:29
  Author: fyan
Revision: 122586

addpkg: python-requests-oauthlib 0.4.2-1

Added:
  python-requests-oauthlib/
  python-requests-oauthlib/repos/
  python-requests-oauthlib/trunk/
  python-requests-oauthlib/trunk/PKGBUILD

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

Added: python-requests-oauthlib/trunk/PKGBUILD
===
--- python-requests-oauthlib/trunk/PKGBUILD (rev 0)
+++ python-requests-oauthlib/trunk/PKGBUILD 2014-11-15 03:17:29 UTC (rev 
122586)
@@ -0,0 +1,54 @@
+# $Id: PKGBUILD 122344 2014-11-11 08:16:49Z fyan $
+# Maintainer: Felix Yan 
+# Contributor: Sebastien Leduc 
+# Contributor: Roberto Catini 
+
+pkgbase=python-requests-oauthlib
+pkgname=('python-requests-oauthlib' 'python2-requests-oauthlib')
+_pkgname=requests-oauthlib
+pkgver=0.4.2
+pkgrel=1
+pkgdesc="First-class OAuth library support for Requests"
+arch=('any')
+url="https://pypi.python.org/pypi/requests-oauthlib";
+license=('custom:ISC')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-requests' 
'python2-requests' 'python-oauthlib' 'python2-oauthlib')
+checkdepends=('python-pytest' 'python2-pytest' 'python-mock' 'python2-mock')
+source=("https://pypi.python.org/packages/source/r/${_pkgname}/${_pkgname}-${pkgver}.tar.gz";)
+md5sums=('df930abe3971fb418c67a8545de54661')
+
+prepare() {
+  cp -a ${_pkgname}-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir/${_pkgname}-$pkgver"
+  python setup.py build
+
+  cd "$srcdir/${_pkgname}-$pkgver-py2"
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir/${_pkgname}-$pkgver"
+  py.test
+
+  cd "$srcdir/${_pkgname}-$pkgver-py2"
+  py.test2
+}
+
+package_python-requests-oauthlib() {
+  depends=('python-requests' 'python-oauthlib')
+
+  cd "$srcdir/${_pkgname}-$pkgver"
+  python setup.py install --root="$pkgdir/" --optimize=1
+  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_python2-requests-oauthlib() {
+  depends=('python2-requests' 'python2-oauthlib')
+
+  cd "$srcdir/${_pkgname}-$pkgver-py2"
+  python2 setup.py install --root="$pkgdir/" --optimize=1
+  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}


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

2014-11-14 Thread Kyle Keen
Date: Saturday, November 15, 2014 @ 04:16:44
  Author: kkeen
Revision: 122585

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

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

-+
 /21-fcd.rules   |   18 ++
 /PKGBUILD   |  226 ++
 /gnuradio.install   |  102 +++
 community-i686/21-fcd.rules |9 -
 community-i686/PKGBUILD |  105 
 community-i686/gnuradio-companion.install   |   15 +
 community-i686/gnuradio.install |   50 -
 community-x86_64/21-fcd.rules   |9 -
 community-x86_64/PKGBUILD   |  105 
 community-x86_64/gnuradio-companion.install |   15 +
 community-x86_64/gnuradio.install   |   50 -
 11 files changed, 376 insertions(+), 328 deletions(-)

Deleted: community-i686/21-fcd.rules
===
--- community-i686/21-fcd.rules 2014-11-15 03:15:58 UTC (rev 122584)
+++ community-i686/21-fcd.rules 2014-11-15 03:16:44 UTC (rev 122585)
@@ -1,9 +0,0 @@
-# Udev rules for the Funcube Dongle Pro (0xfb56) and Pro+ (0xfb31)
-
-# HIDAPI/libusb:
-SUBSYSTEMS=="usb" ATTRS{idVendor}=="04d8" ATTRS{idProduct}=="fb56" MODE:="0666"
-SUBSYSTEMS=="usb" ATTRS{idVendor}=="04d8" ATTRS{idProduct}=="fb31" MODE:="0666"
-
-# HIDAPI/hidraw:
-KERNEL=="hidraw*", ATTRS{busnum}=="1", ATTRS{idVendor}=="04d8", 
ATTRS{idProduct}=="fb56", MODE="0666"
-KERNEL=="hidraw*", ATTRS{busnum}=="1", ATTRS{idVendor}=="04d8", 
ATTRS{idProduct}=="fb31", MODE="0666"

Copied: gnuradio/repos/community-i686/21-fcd.rules (from rev 122584, 
gnuradio/trunk/21-fcd.rules)
===
--- community-i686/21-fcd.rules (rev 0)
+++ community-i686/21-fcd.rules 2014-11-15 03:16:44 UTC (rev 122585)
@@ -0,0 +1,9 @@
+# Udev rules for the Funcube Dongle Pro (0xfb56) and Pro+ (0xfb31)
+
+# HIDAPI/libusb:
+SUBSYSTEMS=="usb" ATTRS{idVendor}=="04d8" ATTRS{idProduct}=="fb56" MODE:="0666"
+SUBSYSTEMS=="usb" ATTRS{idVendor}=="04d8" ATTRS{idProduct}=="fb31" MODE:="0666"
+
+# HIDAPI/hidraw:
+KERNEL=="hidraw*", ATTRS{busnum}=="1", ATTRS{idVendor}=="04d8", 
ATTRS{idProduct}=="fb56", MODE="0666"
+KERNEL=="hidraw*", ATTRS{busnum}=="1", ATTRS{idVendor}=="04d8", 
ATTRS{idProduct}=="fb31", MODE="0666"

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-11-15 03:15:58 UTC (rev 122584)
+++ community-i686/PKGBUILD 2014-11-15 03:16:44 UTC (rev 122585)
@@ -1,105 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen 
-# Contributor: Dominik Heidler 
-# Contributor: Jonatan Sastre 
-pkgname=gnuradio
-pkgver=3.7.5.1
-pkgrel=2
-pkgdesc="General purpose DSP and SDR toolkit.  With drivers for usrp and fcd."
-arch=('i686' 'x86_64')
-url="http://gnuradio.org";
-license=('GPL')
-depends=('fftw' 'python2-numpy' 'cppunit' 'gsl' 'blas' 'guile' 
'boost-libs>=1.53' 'libusbx' 'portaudio' 'libuhd' 'zeromq')
-makedepends=('boost' 'cmake' 'python2-lxml' 'pygtk' 'wxpython' 
'python2-cheetah' 'glu' 'swig' )
-optdepends=('gnuradio-osmosdr: pile of driver blocks'
-'python2-cheetah: gnuradio-companion'
-'python2-lxml: gnuradio-companion'
-'pygtk: gnuradio-companion'
-'wxpython: gr-wxgui'
-'python2-opengl: gr-wxgui'
-'boost: gr_modtool'
-'swig: gr_modtool'
-'cmake: gr_modtool'
-'pkgconfig: libuhd')
-conflicts=('gnuradio-git')
-install=gnuradio.install
-
-# gr-qtgui todo
-# talk to ronald about adding qwt5 to qwt package
-# bring pyqwt in from AUR
-# update optdepends
-#'qwtplot3d: gr-qtgui'
-#'pyqwt: gr-qtgui'
-# update makedepends

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

2014-11-14 Thread Kyle Keen
Date: Saturday, November 15, 2014 @ 04:15:58
  Author: kkeen
Revision: 122584

upgpkg: gnuradio 3.7.5.1-3 split gnuradio-companion

Added:
  gnuradio/trunk/gnuradio-companion.install
Modified:
  gnuradio/trunk/PKGBUILD
  gnuradio/trunk/gnuradio.install

+
 PKGBUILD   |   36 ++--
 gnuradio-companion.install |   15 +++
 gnuradio.install   |1 +
 3 files changed, 38 insertions(+), 14 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-11-14 21:24:50 UTC (rev 122583)
+++ PKGBUILD2014-11-15 03:15:58 UTC (rev 122584)
@@ -2,9 +2,10 @@
 # Maintainer: Kyle Keen 
 # Contributor: Dominik Heidler 
 # Contributor: Jonatan Sastre 
-pkgname=gnuradio
+pkgbase=gnuradio
+pkgname=(gnuradio gnuradio-companion)
 pkgver=3.7.5.1
-pkgrel=2
+pkgrel=3
 pkgdesc="General purpose DSP and SDR toolkit.  With drivers for usrp and fcd."
 arch=('i686' 'x86_64')
 url="http://gnuradio.org";
@@ -12,11 +13,6 @@
 depends=('fftw' 'python2-numpy' 'cppunit' 'gsl' 'blas' 'guile' 
'boost-libs>=1.53' 'libusbx' 'portaudio' 'libuhd' 'zeromq')
 makedepends=('boost' 'cmake' 'python2-lxml' 'pygtk' 'wxpython' 
'python2-cheetah' 'glu' 'swig' )
 optdepends=('gnuradio-osmosdr: pile of driver blocks'
-'python2-cheetah: gnuradio-companion'
-'python2-lxml: gnuradio-companion'
-'pygtk: gnuradio-companion'
-'wxpython: gr-wxgui'
-'python2-opengl: gr-wxgui'
 'boost: gr_modtool'
 'swig: gr_modtool'
 'cmake: gr_modtool'
@@ -47,7 +43,7 @@
 # doxygen: C++ autogenerated documentation
 # python2-sphinx: Python autogenerated documentation
 
-source=("http://gnuradio.org/releases/$pkgname/$pkgname-$pkgver.tar.gz";
+source=("http://gnuradio.org/releases/$pkgbase/$pkgbase-$pkgver.tar.gz";
 "21-fcd.rules")
 md5sums=('bfd2116b344a949aacc3d7e2eff07642'
  '465e12c454c6a22ebec9849181af7bdc')
@@ -54,7 +50,7 @@
 
 build() {
   export PYTHON=python2
-  cd "$srcdir/$pkgname-$pkgver"
+  cd "$srcdir/$pkgbase-$pkgver"
   sed -i -e "s|GR_PKG_LIBEXEC_DIR|GR_RUNTIME_DIR|" 
grc/freedesktop/CMakeLists.txt
   sed -i -e "s|/qwt$|/qwt5|" -e "s| qwt | qwt5 |" cmake/Modules/FindQwt.cmake
   sed -i -e "s| sphinx-build$| sphinx-build2|" cmake/Modules/FindSphinx.cmake
@@ -72,26 +68,38 @@
 }
 
 check() {
-  cd "$srcdir/$pkgname-$pkgver/build"
+  cd "$srcdir/$pkgbase-$pkgver/build"
   export PYTHON=python2
   #make test
 }
 
-package() {
+package_gnuradio() {
   cd "$srcdir"
   install -Dm644 21-fcd.rules "$pkgdir/usr/lib/udev/rules.d/21-fcd.rules"
-  cd "$srcdir/$pkgname-$pkgver/grc/freedesktop"
-  install -Dm644 gnuradio-grc.desktop 
"$pkgdir/usr/share/applications/$pkgname.desktop"
-  cd "$srcdir/$pkgname-$pkgver/build"
+  cd "$srcdir/$pkgbase-$pkgver/grc/freedesktop"
+  install -Dm644 gnuradio-grc.desktop 
"$pkgdir/usr/share/applications/$pkgbase.desktop"
+  cd "$srcdir/$pkgbase-$pkgver/build"
   make DESTDIR="$pkgdir" install
   msg "Replacing filenames to use python2."
   sed -i -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \
 $(find "$pkgdir" -name '*.py') \
 $(find "$pkgdir" -name 'gnuradio-companion' -o -name 'flow_graph.tmpl')
+  sed -i -e "s|#![ ]*/usr/bin/env /usr/bin/python$|#!/usr/bin/env python2|" \
+$(find "$pkgdir" -name '*.py')
   find "$pkgdir/" -name '*.pyc' -delete
   find "$pkgdir/" -name '*.pyo' -delete
 }
 
+package_gnuradio-companion() {
+  pkgdesc="GUI frontend for gnuradio and SDR."
+  depends=('python2-cheetah' 'python2-lxml' 'pygtk' 'wxpython' 
'python2-opengl')
+  optdepends=()
+  conflicts=()
+  install="gnuradio-companion.install"
+  # Yup, nothing in the package except dependencies,
+  # because five optdeps is too many for most people.
+}
+
 # options for armv6:
 # -Dhave_mfpu_neon=0 \
 # -DCMAKE_CXX_FLAGS:STRING="-march=armv6 -mfpu=vfp -mfloat-abi=hard" \

Added: gnuradio-companion.install
===
--- gnuradio-companion.install  (rev 0)
+++ gnuradio-companion.install  2014-11-15 03:15:58 UTC (rev 122584)
@@ -0,0 +1,15 @@
+
+# null file because devtools breaks without it
+
+post_upgrade() {
+  true
+}
+
+post_install() {
+  true
+}
+
+pre_remove() {
+  true
+}
+

Modified: gnuradio.install
===
--- gnuradio.install2014-11-14 21:24:50 UTC (rev 122583)
+++ gnuradio.install2014-11-15 03:15:58 UTC (rev 122584)
@@ -20,6 +20,7 @@
 if [[ -e "${_f}o" ]]; then
   rm -f "${_f}o"
 fi
+continue
 _thisdir="$(dirname "$_f")/__pycache__"
 if [[ ! -d "$_thisdir" ]]; then
   continue


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

2014-11-14 Thread Eric Bélanger
Date: Friday, November 14, 2014 @ 23:45:12
  Author: eric
Revision: 226268

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

Added:
  lvm2/repos/testing-i686/
  lvm2/repos/testing-i686/11-dm-initramfs.rules
(from rev 226267, lvm2/trunk/11-dm-initramfs.rules)
  lvm2/repos/testing-i686/PKGBUILD
(from rev 226267, lvm2/trunk/PKGBUILD)
  lvm2/repos/testing-i686/lvm2-make-sockets-static.patch
(from rev 226267, lvm2/trunk/lvm2-make-sockets-static.patch)
  lvm2/repos/testing-i686/lvm2.install
(from rev 226267, lvm2/trunk/lvm2.install)
  lvm2/repos/testing-i686/lvm2_hook
(from rev 226267, lvm2/trunk/lvm2_hook)
  lvm2/repos/testing-i686/lvm2_install
(from rev 226267, lvm2/trunk/lvm2_install)
  lvm2/repos/testing-i686/sd-lvm2_install
(from rev 226267, lvm2/trunk/sd-lvm2_install)
  lvm2/repos/testing-x86_64/
  lvm2/repos/testing-x86_64/11-dm-initramfs.rules
(from rev 226267, lvm2/trunk/11-dm-initramfs.rules)
  lvm2/repos/testing-x86_64/PKGBUILD
(from rev 226267, lvm2/trunk/PKGBUILD)
  lvm2/repos/testing-x86_64/lvm2-make-sockets-static.patch
(from rev 226267, lvm2/trunk/lvm2-make-sockets-static.patch)
  lvm2/repos/testing-x86_64/lvm2.install
(from rev 226267, lvm2/trunk/lvm2.install)
  lvm2/repos/testing-x86_64/lvm2_hook
(from rev 226267, lvm2/trunk/lvm2_hook)
  lvm2/repos/testing-x86_64/lvm2_install
(from rev 226267, lvm2/trunk/lvm2_install)
  lvm2/repos/testing-x86_64/sd-lvm2_install
(from rev 226267, lvm2/trunk/sd-lvm2_install)

---+
 testing-i686/11-dm-initramfs.rules|3 
 testing-i686/PKGBUILD |  100 
 testing-i686/lvm2-make-sockets-static.patch   |   20 
 testing-i686/lvm2.install |   25 ++
 testing-i686/lvm2_hook|   12 ++
 testing-i686/lvm2_install |   34 
 testing-i686/sd-lvm2_install  |   32 +++
 testing-x86_64/11-dm-initramfs.rules  |3 
 testing-x86_64/PKGBUILD   |  100 
 testing-x86_64/lvm2-make-sockets-static.patch |   20 
 testing-x86_64/lvm2.install   |   25 ++
 testing-x86_64/lvm2_hook  |   12 ++
 testing-x86_64/lvm2_install   |   34 
 testing-x86_64/sd-lvm2_install|   32 +++
 14 files changed, 452 insertions(+)

Copied: lvm2/repos/testing-i686/11-dm-initramfs.rules (from rev 226267, 
lvm2/trunk/11-dm-initramfs.rules)
===
--- testing-i686/11-dm-initramfs.rules  (rev 0)
+++ testing-i686/11-dm-initramfs.rules  2014-11-14 22:45:12 UTC (rev 226268)
@@ -0,0 +1,3 @@
+# needed with new udev/mkinitcpio and as implemented in dracut:
+# 

+SUBSYSTEM=="block", KERNEL=="dm-[0-9]*", ACTION=="add|change", 
OPTIONS="db_persist"

Copied: lvm2/repos/testing-i686/PKGBUILD (from rev 226267, lvm2/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-11-14 22:45:12 UTC (rev 226268)
@@ -0,0 +1,100 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+# Maintainer: Thomas Bächler 
+
+pkgbase=lvm2
+pkgname=('lvm2' 'device-mapper')
+pkgver=2.02.112
+pkgrel=1
+arch=('i686' 'x86_64')
+url="http://sourceware.org/lvm2/";
+license=('GPL2' 'LGPL2.1')
+makedepends=('systemd' 'thin-provisioning-tools')
+groups=('base')
+source=(ftp://sources.redhat.com/pub/lvm2/LVM2.${pkgver}.tgz{,.asc}
+lvm2_install
+lvm2_hook
+sd-lvm2_install
+11-dm-initramfs.rules
+lvm2-make-sockets-static.patch)
+sha1sums=('290d7afbd7599794b2f4cc000eb879a68705f6c9'
+  'SKIP'
+  '40ef991650555b904e73bcc3f344d736722e27ca'
+  'ff0fdf0a3005a41acd4b36865056109effc3474b'
+  '86c18852409dc03f38bdd734ac3e7b54bed9c4ce'
+  'f6a554eea9557c3c236df2943bb6e7e723945c41'
+  'b084512af42f2e16cdccd8b7ee4de27b574d1f94')
+
+prepare() {
+  cd LVM2.${pkgver}
+  # enable lvmetad
+  sed -i 's|use_lvmetad = 0|use_lvmetad = 1|' conf/example.conf.in
+  # make systemd sockets static
+  patch -p1 -i "${srcdir}/lvm2-make-sockets-static.patch"
+}
+
+build() {
+  CONFIGUREOPTS="--prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--sbindir=/usr/bin \
+  --with-udev-prefix=/usr 
--with-systemdsystemunitdir=/usr/lib/systemd/system \
+  --with-default-pid-dir=/run --with-default-dm-run-dir=/run 
--with-default-run-dir=/run/lvm \
+  --enable-pkgconfig --enable-readline --enable-dmeventd --enable-cmdlib 
--enable-applib \
+  --enable-udev_sync --enable-udev_rules 
--with-default-locking-dir=/run/lock/lvm \
+  --enable-lvmetad --with-thin=internal --with-cache=internal"
+
+  cp -

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

2014-11-14 Thread Eric Bélanger
Date: Friday, November 14, 2014 @ 23:40:50
  Author: eric
Revision: 226267

upgpkg: lvm2 2.02.112-1

Upstream update, Fix dm-cache root volume activation (close FS#42377)

Modified:
  lvm2/trunk/PKGBUILD
  lvm2/trunk/lvm2_install

--+
 PKGBUILD |4 ++--
 lvm2_install |7 ++-
 2 files changed, 8 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-11-14 22:26:59 UTC (rev 226266)
+++ PKGBUILD2014-11-14 22:40:50 UTC (rev 226267)
@@ -4,7 +4,7 @@
 
 pkgbase=lvm2
 pkgname=('lvm2' 'device-mapper')
-pkgver=2.02.111
+pkgver=2.02.112
 pkgrel=1
 arch=('i686' 'x86_64')
 url="http://sourceware.org/lvm2/";
@@ -19,7 +19,7 @@
 lvm2-make-sockets-static.patch)
 sha1sums=('290d7afbd7599794b2f4cc000eb879a68705f6c9'
   'SKIP'
-  'be3b7db02e76d31d4742dc853b2fa3f898368ff8'
+  '40ef991650555b904e73bcc3f344d736722e27ca'
   'ff0fdf0a3005a41acd4b36865056109effc3474b'
   '86c18852409dc03f38bdd734ac3e7b54bed9c4ce'
   'f6a554eea9557c3c236df2943bb6e7e723945c41'

Modified: lvm2_install
===
--- lvm2_install2014-11-14 22:26:59 UTC (rev 226266)
+++ lvm2_install2014-11-14 22:40:50 UTC (rev 226267)
@@ -2,7 +2,7 @@
 
 build() {
 local mod
-for mod in dm-mod dm-snapshot dm-mirror; do
+for mod in dm-mod dm-snapshot dm-mirror dm-cache dm-cache-mq; do
 add_module "$mod"
 done
 
@@ -9,6 +9,11 @@
 add_binary "/usr/bin/lvm"
 add_binary "/usr/bin/lvmetad"
 add_binary "/usr/bin/dmsetup"
+add_binary "/usr/bin/cache_check"
+add_binary "/usr/bin/cache_dump"
+add_binary "/usr/bin/cache_metadata_size"
+add_binary "/usr/bin/cache_repair"
+add_binary "/usr/bin/cache_restore"
 add_file "/usr/lib/udev/rules.d/10-dm.rules"
 add_file "/usr/lib/udev/rules.d/13-dm-disk.rules"
 add_file "/usr/lib/udev/rules.d/95-dm-notify.rules"


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

2014-11-14 Thread Thomas Bächler
Date: Friday, November 14, 2014 @ 23:26:59
  Author: thomas
Revision: 226266

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

Added:
  linux/repos/testing-i686/
  linux/repos/testing-i686/PKGBUILD
(from rev 226265, linux/trunk/PKGBUILD)
  linux/repos/testing-i686/change-default-console-loglevel.patch
(from rev 226265, linux/trunk/change-default-console-loglevel.patch)
  linux/repos/testing-i686/config
(from rev 226265, linux/trunk/config)
  linux/repos/testing-i686/config.x86_64
(from rev 226265, linux/trunk/config.x86_64)
  linux/repos/testing-i686/fix_CPU0_microcode_on_resume.patch
(from rev 226265, linux/trunk/fix_CPU0_microcode_on_resume.patch)
  linux/repos/testing-i686/linux.install
(from rev 226265, linux/trunk/linux.install)
  linux/repos/testing-i686/linux.preset
(from rev 226265, linux/trunk/linux.preset)
  linux/repos/testing-x86_64/
  linux/repos/testing-x86_64/PKGBUILD
(from rev 226265, linux/trunk/PKGBUILD)
  linux/repos/testing-x86_64/change-default-console-loglevel.patch
(from rev 226265, linux/trunk/change-default-console-loglevel.patch)
  linux/repos/testing-x86_64/config
(from rev 226265, linux/trunk/config)
  linux/repos/testing-x86_64/config.x86_64
(from rev 226265, linux/trunk/config.x86_64)
  linux/repos/testing-x86_64/fix_CPU0_microcode_on_resume.patch
(from rev 226265, linux/trunk/fix_CPU0_microcode_on_resume.patch)
  linux/repos/testing-x86_64/linux.install
(from rev 226265, linux/trunk/linux.install)
  linux/repos/testing-x86_64/linux.preset
(from rev 226265, linux/trunk/linux.preset)

--+
 testing-i686/PKGBUILD|  299 
 testing-i686/change-default-console-loglevel.patch   |   11 
 testing-i686/config  | 7131 +
 testing-i686/config.x86_64   | 6890 
 testing-i686/fix_CPU0_microcode_on_resume.patch  |   21 
 testing-i686/linux.install   |   37 
 testing-i686/linux.preset|   14 
 testing-x86_64/PKGBUILD  |  299 
 testing-x86_64/change-default-console-loglevel.patch |   11 
 testing-x86_64/config| 7131 +
 testing-x86_64/config.x86_64 | 6890 
 testing-x86_64/fix_CPU0_microcode_on_resume.patch|   21 
 testing-x86_64/linux.install |   37 
 testing-x86_64/linux.preset  |   14 
 14 files changed, 28806 insertions(+)

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


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

2014-11-14 Thread Thomas Bächler
Date: Friday, November 14, 2014 @ 23:26:26
  Author: thomas
Revision: 226265

upgpkg: linux 3.17.3-1

Added:
  linux/trunk/fix_CPU0_microcode_on_resume.patch
Modified:
  linux/trunk/PKGBUILD
Deleted:
  linux/trunk/compal-laptop-hwmon-fix.patch

+
 PKGBUILD   |   12 +---
 compal-laptop-hwmon-fix.patch  |   14 --
 fix_CPU0_microcode_on_resume.patch |   21 +
 3 files changed, 30 insertions(+), 17 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-11-14 21:39:53 UTC (rev 226264)
+++ PKGBUILD2014-11-14 22:26:26 UTC (rev 226265)
@@ -5,7 +5,7 @@
 pkgbase=linux   # Build stock -ARCH kernel
 #pkgbase=linux-custom   # Build kernel with a different name
 _srcname=linux-3.17
-pkgver=3.17.2
+pkgver=3.17.3
 pkgrel=1
 arch=('i686' 'x86_64')
 url="http://www.kernel.org/";
@@ -19,13 +19,15 @@
 # standard config files for mkinitcpio ramdisk
 'linux.preset'
 'change-default-console-loglevel.patch'
+'fix_CPU0_microcode_on_resume.patch'
 )
 sha256sums=('f5153ec93c5fcd41b247950e6a9bcbc63fa87beafd112c133a622439a0f76251'
-'4576c30a46c016502cdd007d28dde4f2d141c0f8096be8623a9ff519323db777'
+'3c1ba3cc89d0f2d5f7303f448495f64db1ab96efea5f5fdd4b4c8c547600f85d'
 '0f1cd431115a2ce84629298d054d5e6f6e78095a3aeda4d1335740c9402efb7e'
 'fb688bc7ccfa636990b26aecfe62500bc1e0f6c410a837eef03014c161df2ec8'
 'f0d90e756f14533ee67afda280500511a62465b4f76adcc5effa95a40045179c'
-'1256b241cd477b265a3c2d64bdc19ffe3c9bbcee82ea3994c590c2c76e767d99')
+'1256b241cd477b265a3c2d64bdc19ffe3c9bbcee82ea3994c590c2c76e767d99'
+'43668fe46147fe93f41b919db673574427ce5a8c376cd28cbf3a00326491')
 
 _kernelname=${pkgbase#linux}
 
@@ -43,6 +45,10 @@
   # (relevant patch sent upstream: https://lkml.org/lkml/2011/7/26/227)
   patch -p1 -i "${srcdir}/change-default-console-loglevel.patch"
 
+  # Fix FS#42689
+  # https://bugzilla.kernel.org/show_bug.cgi?id=88001
+  patch -p1 -i "${srcdir}/fix_CPU0_microcode_on_resume.patch"
+
   if [ "${CARCH}" = "x86_64" ]; then
 cat "${srcdir}/config.x86_64" > ./.config
   else

Deleted: compal-laptop-hwmon-fix.patch
===
--- compal-laptop-hwmon-fix.patch   2014-11-14 21:39:53 UTC (rev 226264)
+++ compal-laptop-hwmon-fix.patch   2014-11-14 22:26:26 UTC (rev 226265)
@@ -1,14 +0,0 @@
-diff --git a/drivers/platform/x86/compal-laptop.c 
b/drivers/platform/x86/compal-laptop.c
-index 7297df2..26bfd7b 100644
 a/drivers/platform/x86/compal-laptop.c
-+++ b/drivers/platform/x86/compal-laptop.c
-@@ -1028,7 +1028,7 @@ static int compal_probe(struct platform_device *pdev)
-   return err;
-
-   hwmon_dev = hwmon_device_register_with_groups(&pdev->dev,
--DRIVER_NAME, data,
-+"compal", data,
- compal_hwmon_groups);
-   if (IS_ERR(hwmon_dev)) {
-   err = PTR_ERR(hwmon_dev);
-

Added: fix_CPU0_microcode_on_resume.patch
===
--- fix_CPU0_microcode_on_resume.patch  (rev 0)
+++ fix_CPU0_microcode_on_resume.patch  2014-11-14 22:26:26 UTC (rev 226265)
@@ -0,0 +1,21 @@
+diff --git a/arch/x86/kernel/cpu/microcode/core.c 
b/arch/x86/kernel/cpu/microcode/core.c
+index dd9d6190b08d..181e42bd85d3 100644
+--- a/arch/x86/kernel/cpu/microcode/core.c
 b/arch/x86/kernel/cpu/microcode/core.c
+@@ -85,6 +85,7 @@
+ #include 
+ 
+ #include 
++#include 
+ #include 
+ #include 
+ #include 
+@@ -465,6 +466,8 @@ static void mc_bp_resume(void)
+ 
+   if (uci->valid && uci->mc)
+   microcode_ops->apply_microcode(cpu);
++  else if (!uci->mc)
++  load_ucode_intel_ap();
+ }
+ 
+ static struct syscore_ops mc_syscore_ops = {


[arch-commits] Commit in gnome-tweak-tool/repos/extra-any (4 files)

2014-11-14 Thread Jan Steffens
Date: Friday, November 14, 2014 @ 22:39:53
  Author: heftig
Revision: 226264

archrelease: copy trunk to extra-any

Added:
  gnome-tweak-tool/repos/extra-any/PKGBUILD
(from rev 226263, gnome-tweak-tool/trunk/PKGBUILD)
  gnome-tweak-tool/repos/extra-any/gnome-tweak-tool.install
(from rev 226263, gnome-tweak-tool/trunk/gnome-tweak-tool.install)
Deleted:
  gnome-tweak-tool/repos/extra-any/PKGBUILD
  gnome-tweak-tool/repos/extra-any/gnome-tweak-tool.install

--+
 PKGBUILD |   62 ++---
 gnome-tweak-tool.install |   22 +++
 2 files changed, 42 insertions(+), 42 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-11-14 21:36:54 UTC (rev 226263)
+++ PKGBUILD2014-11-14 21:39:53 UTC (rev 226264)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru 
-
-pkgname=gnome-tweak-tool
-pkgver=3.14.0
-pkgrel=1
-pkgdesc="A tool to customize advanced GNOME 3 options."
-arch=(any)
-url="https://live.gnome.org/GnomeTweakTool";
-license=('GPL')
-depends=('gnome-settings-daemon' 'python2-gobject' 'hicolor-icon-theme')
-makedepends=('intltool')
-install=gnome-tweak-tool.install
-source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('da77e1c816a07ea68d7404a0df097435f36e7d203de0cae47d0c9bf1293fb15d')
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  PYTHON=/usr/bin/python2 ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  make DESTDIR="$pkgdir" install
-  sed -i "s|#!/usr/bin/env python|#!/usr/bin/env python2|" 
"$pkgdir"/usr/bin/gnome-tweak-tool
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gnome-tweak-tool/repos/extra-any/PKGBUILD (from rev 226263, 
gnome-tweak-tool/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-11-14 21:39:53 UTC (rev 226264)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Ionut Biru 
+
+pkgname=gnome-tweak-tool
+pkgver=3.14.2
+pkgrel=1
+pkgdesc="A tool to customize advanced GNOME 3 options."
+arch=(any)
+url="https://live.gnome.org/GnomeTweakTool";
+license=('GPL')
+depends=('gnome-settings-daemon' 'python2-gobject' 'hicolor-icon-theme')
+makedepends=('intltool')
+install=gnome-tweak-tool.install
+source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('f38dbfabc6f566561592900d17d1c106f22a50438f77d70f9ec4e1093284cb97')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  PYTHON=/usr/bin/python2 ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+  sed -i "s|#!/usr/bin/env python|#!/usr/bin/env python2|" 
"$pkgdir"/usr/bin/gnome-tweak-tool
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: gnome-tweak-tool.install
===
--- gnome-tweak-tool.install2014-11-14 21:36:54 UTC (rev 226263)
+++ gnome-tweak-tool.install2014-11-14 21:39:53 UTC (rev 226264)
@@ -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: gnome-tweak-tool/repos/extra-any/gnome-tweak-tool.install (from rev 
226263, gnome-tweak-tool/trunk/gnome-tweak-tool.install)
===
--- gnome-tweak-tool.install(rev 0)
+++ gnome-tweak-tool.install2014-11-14 21:39:53 UTC (rev 226264)
@@ -0,0 +1,11 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}


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

2014-11-14 Thread Jan Steffens
Date: Friday, November 14, 2014 @ 22:36:54
  Author: heftig
Revision: 226263

3.14.2

Modified:
  gnome-tweak-tool/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-11-14 20:42:13 UTC (rev 226262)
+++ PKGBUILD2014-11-14 21:36:54 UTC (rev 226263)
@@ -2,7 +2,7 @@
 # Maintainer: Ionut Biru 
 
 pkgname=gnome-tweak-tool
-pkgver=3.14.0
+pkgver=3.14.2
 pkgrel=1
 pkgdesc="A tool to customize advanced GNOME 3 options."
 arch=(any)
@@ -12,7 +12,7 @@
 makedepends=('intltool')
 install=gnome-tweak-tool.install
 
source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('da77e1c816a07ea68d7404a0df097435f36e7d203de0cae47d0c9bf1293fb15d')
+sha256sums=('f38dbfabc6f566561592900d17d1c106f22a50438f77d70f9ec4e1093284cb97')
 
 build() {
   cd "$pkgname-$pkgver"


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

2014-11-14 Thread Ike Devolder
Date: Friday, November 14, 2014 @ 22:24:50
  Author: idevolder
Revision: 122583

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-11-14 21:24:32 UTC (rev 122582)
+++ community-i686/PKGBUILD 2014-11-14 21:24:50 UTC (rev 122583)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: BlackEagle < ike DOT devolder AT gmail DOT com >
-# Maintainer: Sébastien Luttringer https://github.com/BlackIkeEagle/$pkgname/archive/v$pkgver.tar.gz";)
-sha256sums=('8d0a595d0200c35a56f9b29659b0d8ecfb2e331179283e1d13acd75b6c899365')
-
-build() {
-   cd "$pkgname-$pkgver"
-   aclocal
-   automake --add-missing
-   autoconf
-   ./configure --prefix=/usr
-  make
-}
-
-check() {
-   cd "$pkgname-$pkgver"
-   make check
-}
-
-package() {
-   cd "$pkgname-$pkgver"
-   make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: par2cmdline/repos/community-i686/PKGBUILD (from rev 122582, 
par2cmdline/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-11-14 21:24:50 UTC (rev 122583)
@@ -0,0 +1,34 @@
+# vim:set ts=2 sw=2 et:
+# $Id$
+# Maintainer: BlackEagle < ike DOT devolder AT gmail DOT com >
+# Maintainer: Sébastien Luttringer https://github.com/BlackIkeEagle/$pkgname/archive/v$pkgver.tar.gz";)
+
+build() {
+   cd "$pkgname-$pkgver"
+   aclocal
+   automake --add-missing
+   autoconf
+   ./configure --prefix=/usr
+  make
+}
+
+check() {
+   cd "$pkgname-$pkgver"
+   make check
+}
+
+package() {
+   cd "$pkgname-$pkgver"
+   make DESTDIR="$pkgdir" install
+}
+
+sha256sums=('7d09033ac4f2dd2f6dd2b61c2498bbc37762e6432afd9171553a5cc466a09998')

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-11-14 21:24:32 UTC (rev 122582)
+++ community-x86_64/PKGBUILD   2014-11-14 21:24:50 UTC (rev 122583)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: BlackEagle < ike DOT devolder AT gmail DOT com >
-# Maintainer: Sébastien Luttringer https://github.com/BlackIkeEagle/$pkgname/archive/v$pkgver.tar.gz";)
-sha256sums=('8d0a595d0200c35a56f9b29659b0d8ecfb2e331179283e1d13acd75b6c899365')
-
-build() {
-   cd "$pkgname-$pkgver"
-   aclocal
-   automake --add-missing
-   autoconf
-   ./configure --prefix=/usr
-  make
-}
-
-check() {
-   cd "$pkgname-$pkgver"
-   make check
-}
-
-package() {
-   cd "$pkgname-$pkgver"
-   make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: par2cmdline/repos/community-x86_64/PKGBUILD (from rev 122582, 
par2cmdline/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-11-14 21:24:50 UTC (rev 122583)
@@ -0,0 +1,34 @@
+# vim:set ts=2 sw=2 et:
+# $Id$
+# Maintainer: BlackEagle < ike DOT devolder AT gmail DOT com >
+# Maintainer: Sébastien Luttringer https://github.com/BlackIkeEagle/$pkgname/archive/v$pkgver.tar.gz";)
+
+build() {
+   cd "$pkgname-$pkgver"
+   aclocal
+   automake --add-missing
+   autoconf
+   ./configure --prefix=/usr
+  make
+}
+
+check() {
+   cd "$pkgname-$pkgver"
+   make check
+}
+
+package() {
+   cd "$pkgname-$pkgver"
+   make DESTDIR="$pkgdir" install
+}
+
+sha256sums=('7d09033ac4f2dd2f6dd2b61c2498bbc37762e6432afd9171553a5cc466a09998')


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

2014-11-14 Thread Ike Devolder
Date: Friday, November 14, 2014 @ 22:24:32
  Author: idevolder
Revision: 122582

par2cmdline :: 0.6.11

Modified:
  par2cmdline/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-11-14 20:19:16 UTC (rev 122581)
+++ PKGBUILD2014-11-14 21:24:32 UTC (rev 122582)
@@ -1,9 +1,10 @@
+# vim:set ts=2 sw=2 et:
 # $Id$
 # Maintainer: BlackEagle < ike DOT devolder AT gmail DOT com >
 # Maintainer: Sébastien Luttringer https://github.com/BlackIkeEagle/$pkgname/archive/v$pkgver.tar.gz";)
-sha256sums=('8d0a595d0200c35a56f9b29659b0d8ecfb2e331179283e1d13acd75b6c899365')
 
 build() {
cd "$pkgname-$pkgver"
@@ -31,4 +31,4 @@
make DESTDIR="$pkgdir" install
 }
 
-# vim:set ts=2 sw=2 et:
+sha256sums=('7d09033ac4f2dd2f6dd2b61c2498bbc37762e6432afd9171553a5cc466a09998')


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

2014-11-14 Thread Andreas Radke
Date: Friday, November 14, 2014 @ 21:42:13
  Author: andyrtr
Revision: 226262

prepeare next release

Modified:
  libreoffice-fresh/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-11-14 20:19:54 UTC (rev 226261)
+++ PKGBUILD2014-11-14 20:42:13 UTC (rev 226262)
@@ -4,9 +4,9 @@
 
 pkgbase=libreoffice-fresh
 pkgname=('libreoffice-fresh-sdk' 'libreoffice-fresh')
-_LOver=4.3.3.2
-pkgver=4.3.3
-pkgrel=2
+_LOver=4.3.4.1
+pkgver=4.3.4
+pkgrel=1
 arch=('i686' 'x86_64')
 license=('LGPL3')
 url="http://www.libreoffice.org/";
@@ -104,11 +104,11 @@
4b87018f7fff1d054939d19920b751a0-collada2gltf-master-cb1d97788a.tar.bz2
OpenCOLLADA-master-6509aa13af.tar.bz2
libgltf-0.0.2.tar.bz2)
-md5sums=('a0c7f05fd2edb91e195adb2f4170d794'
+md5sums=('98312fcb1e1ab37321f29f64f312160a'
  'SKIP'
- '072a585981c9177e7930a193b357a4b2'
+ '71ed47d8148dd66275bd87699b31c242'
  'SKIP'
- '5b735fd27b42af83cf83d483a5eb2b04'
+ '6e405e2b499ce28bce1e926bcb7268da'
  'SKIP'
  'd6eef4b4cacb2183f2bf265a5a03a354'
  '1f24ab1d39f4a51faf22244c94a6203f'
@@ -186,6 +186,8 @@
 
# i686 build broken in make CppunitTest_sw_ooxmlsdrexport
[ "$CARCH" = "i686" ] && sed -i '/CppunitTest_sw_ooxmlsdrexport/d' 
sw/Module_sw.mk
+   # next broken test
+   [ "$CARCH" = "x86_64" ] && sed -i '/CppunitTest_macros_test/d' 
sw/Module_sw.mk
 
 #return 1
#autoconf -f


[arch-commits] Commit in digikam/repos/extra-x86_64 (libkexiv2.patch)

2014-11-14 Thread Ronald van Haren
Date: Friday, November 14, 2014 @ 21:19:54
  Author: ronald
Revision: 226261

add patch

Added:
  digikam/repos/extra-x86_64/libkexiv2.patch

-+
 libkexiv2.patch |   10 ++
 1 file changed, 10 insertions(+)

Added: libkexiv2.patch
===
--- libkexiv2.patch (rev 0)
+++ libkexiv2.patch 2014-11-14 20:19:54 UTC (rev 226261)
@@ -0,0 +1,10 @@
+--- extra/CMakeLists.txt.bak   2014-11-14 20:46:49.265601687 +0100
 extra/CMakeLists.txt   2014-11-14 20:46:55.555823691 +0100
+@@ -11,7 +11,6 @@
+ 
+ # from kdegraphics/libs
+ add_subdirectory(libkipi)
+-add_subdirectory(libkexiv2)
+ add_subdirectory(libkdcraw)
+ add_subdirectory(libkface)
+ MACRO_OPTIONAL_ADD_SUBDIRECTORY(libksane)


[arch-commits] Commit in digikam/repos/extra-x86_64 (PKGBUILD)

2014-11-14 Thread Ronald van Haren
Date: Friday, November 14, 2014 @ 21:19:46
  Author: ronald
Revision: 226260

fix svn merge error

Modified:
  digikam/repos/extra-x86_64/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-11-14 20:19:33 UTC (rev 226259)
+++ PKGBUILD2014-11-14 20:19:46 UTC (rev 226260)
@@ -6,7 +6,7 @@
 pkgbase=digikam
 pkgname=('digikam' 'kipi-plugins' 'libkface' 'libkgeomap' 'libkvkontakte' 
'libmediawiki')
 pkgver=4.5.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Digital photo management application for KDE"
 arch=('i686' 'x86_64')
 license=('GPL')
@@ -15,9 +15,16 @@
  'kdeedu-marble' 'opencv' 'boost' 'libgpod' 'qjson' 'hugin' 
'libgphoto2'
  'cmake' 'automoc4' 'doxygen' 'lensfun' 'qt-gstreamer' 
'imagemagick' 'eigen' 
 'libbaloo4' 'libpgf')
-source=("http://download.kde.org/stable/${pkgname}/${pkgname}-${pkgver}.tar.bz2";)
-sha1sums=('ba735f4b7bb0437c1676141ab78ea958e46f135e')
+source=("http://download.kde.org/stable/${pkgname}/${pkgname}-${pkgver}.tar.bz2";
+   "libkexiv2.patch")
+sha1sums=('ba735f4b7bb0437c1676141ab78ea958e46f135e'
+  '1bcef459bd400a04526aac9adf39d4d0a1c3549c')
 
+prepare() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  patch -Np0 -i "${srcdir}/libkexiv2.patch" 
+}
+
 build() {
   mkdir build
   cd build


[arch-commits] Commit in digikam/repos/extra-i686 (PKGBUILD libkexiv2.patch)

2014-11-14 Thread Ronald van Haren
Date: Friday, November 14, 2014 @ 21:19:33
  Author: ronald
Revision: 226259

fix svn merge error

Added:
  digikam/repos/extra-i686/libkexiv2.patch
Modified:
  digikam/repos/extra-i686/PKGBUILD

-+
 PKGBUILD|   13 ++---
 libkexiv2.patch |   10 ++
 2 files changed, 20 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-11-14 20:14:29 UTC (rev 226258)
+++ PKGBUILD2014-11-14 20:19:33 UTC (rev 226259)
@@ -6,7 +6,7 @@
 pkgbase=digikam
 pkgname=('digikam' 'kipi-plugins' 'libkface' 'libkgeomap' 'libkvkontakte' 
'libmediawiki')
 pkgver=4.5.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Digital photo management application for KDE"
 arch=('i686' 'x86_64')
 license=('GPL')
@@ -15,9 +15,16 @@
  'kdeedu-marble' 'opencv' 'boost' 'libgpod' 'qjson' 'hugin' 
'libgphoto2'
  'cmake' 'automoc4' 'doxygen' 'lensfun' 'qt-gstreamer' 
'imagemagick' 'eigen' 
 'libbaloo4' 'libpgf')
-source=("http://download.kde.org/stable/${pkgname}/${pkgname}-${pkgver}.tar.bz2";)
-sha1sums=('ba735f4b7bb0437c1676141ab78ea958e46f135e')
+source=("http://download.kde.org/stable/${pkgname}/${pkgname}-${pkgver}.tar.bz2";
+   "libkexiv2.patch")
+sha1sums=('ba735f4b7bb0437c1676141ab78ea958e46f135e'
+  '1bcef459bd400a04526aac9adf39d4d0a1c3549c')
 
+prepare() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  patch -Np0 -i "${srcdir}/libkexiv2.patch" 
+}
+
 build() {
   mkdir build
   cd build

Added: libkexiv2.patch
===
--- libkexiv2.patch (rev 0)
+++ libkexiv2.patch 2014-11-14 20:19:33 UTC (rev 226259)
@@ -0,0 +1,10 @@
+--- extra/CMakeLists.txt.bak   2014-11-14 20:46:49.265601687 +0100
 extra/CMakeLists.txt   2014-11-14 20:46:55.555823691 +0100
+@@ -11,7 +11,6 @@
+ 
+ # from kdegraphics/libs
+ add_subdirectory(libkipi)
+-add_subdirectory(libkexiv2)
+ add_subdirectory(libkdcraw)
+ add_subdirectory(libkface)
+ MACRO_OPTIONAL_ADD_SUBDIRECTORY(libksane)


[arch-commits] Commit in digikam/trunk (PKGBUILD libkexiv2.patch)

2014-11-14 Thread Ronald van Haren
Date: Friday, November 14, 2014 @ 21:14:29
  Author: ronald
Revision: 226258

upgpkg: digikam 4.5.0-2

fix building against shared libkexiv2

Added:
  digikam/trunk/libkexiv2.patch
Modified:
  digikam/trunk/PKGBUILD

-+
 PKGBUILD|   13 ++---
 libkexiv2.patch |   10 ++
 2 files changed, 20 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-11-14 19:21:58 UTC (rev 226257)
+++ PKGBUILD2014-11-14 20:14:29 UTC (rev 226258)
@@ -6,7 +6,7 @@
 pkgbase=digikam
 pkgname=('digikam' 'kipi-plugins' 'libkface' 'libkgeomap' 'libkvkontakte' 
'libmediawiki')
 pkgver=4.5.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Digital photo management application for KDE"
 arch=('i686' 'x86_64')
 license=('GPL')
@@ -15,9 +15,16 @@
  'kdeedu-marble' 'opencv' 'boost' 'libgpod' 'qjson' 'hugin' 
'libgphoto2'
  'cmake' 'automoc4' 'doxygen' 'lensfun' 'qt-gstreamer' 
'imagemagick' 'eigen' 
 'libbaloo4' 'libpgf')
-source=("http://download.kde.org/stable/${pkgname}/${pkgname}-${pkgver}.tar.bz2";)
-sha1sums=('ba735f4b7bb0437c1676141ab78ea958e46f135e')
+source=("http://download.kde.org/stable/${pkgname}/${pkgname}-${pkgver}.tar.bz2";
+   "libkexiv2.patch")
+sha1sums=('ba735f4b7bb0437c1676141ab78ea958e46f135e'
+  '1bcef459bd400a04526aac9adf39d4d0a1c3549c')
 
+prepare() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  patch -Np0 -i "${srcdir}/libkexiv2.patch" 
+}
+
 build() {
   mkdir build
   cd build

Added: libkexiv2.patch
===
--- libkexiv2.patch (rev 0)
+++ libkexiv2.patch 2014-11-14 20:14:29 UTC (rev 226258)
@@ -0,0 +1,10 @@
+--- extra/CMakeLists.txt.bak   2014-11-14 20:46:49.265601687 +0100
 extra/CMakeLists.txt   2014-11-14 20:46:55.555823691 +0100
+@@ -11,7 +11,6 @@
+ 
+ # from kdegraphics/libs
+ add_subdirectory(libkipi)
+-add_subdirectory(libkexiv2)
+ add_subdirectory(libkdcraw)
+ add_subdirectory(libkface)
+ MACRO_OPTIONAL_ADD_SUBDIRECTORY(libksane)


[arch-commits] Commit in lvm2/trunk (PKGBUILD sd-lvm2 sd-lvm2_install)

2014-11-14 Thread Eric Bélanger
Date: Friday, November 14, 2014 @ 20:21:58
  Author: eric
Revision: 226257

Rename sd-lvm2 initcpio hook

Added:
  lvm2/trunk/sd-lvm2_install
(from rev 226254, lvm2/trunk/sd-lvm2)
Modified:
  lvm2/trunk/PKGBUILD
Deleted:
  lvm2/trunk/sd-lvm2

-+
 PKGBUILD|6 +++---
 sd-lvm2 |   32 
 sd-lvm2_install |   32 
 3 files changed, 35 insertions(+), 35 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-11-14 19:10:43 UTC (rev 226256)
+++ PKGBUILD2014-11-14 19:21:58 UTC (rev 226257)
@@ -14,10 +14,10 @@
 source=(ftp://sources.redhat.com/pub/lvm2/LVM2.${pkgver}.tgz{,.asc}
 lvm2_install
 lvm2_hook
-sd-lvm2
+sd-lvm2_install
 11-dm-initramfs.rules
 lvm2-make-sockets-static.patch)
-sha1sums=('2e7b5d48d55aaf4aba1214c3211a194e4c13aa3e'
+sha1sums=('290d7afbd7599794b2f4cc000eb879a68705f6c9'
   'SKIP'
   'be3b7db02e76d31d4742dc853b2fa3f898368ff8'
   'ff0fdf0a3005a41acd4b36865056109effc3474b'
@@ -88,7 +88,7 @@
   # mkinitcpio hook
   install -D -m644 "${srcdir}/lvm2_hook" 
"${pkgdir}/usr/lib/initcpio/hooks/lvm2"
   install -D -m644 "${srcdir}/lvm2_install" 
"${pkgdir}/usr/lib/initcpio/install/lvm2"
-  install -D -m644 "${srcdir}/sd-lvm2" 
"${pkgdir}/usr/lib/initcpio/install/sd-lvm2"
+  install -D -m644 "${srcdir}/sd-lvm2_install" 
"${pkgdir}/usr/lib/initcpio/install/sd-lvm2"
   # extra udev rule for lvmetad in non-systemd initramfs
   install -D -m644 "${srcdir}/LVM2-initramfs/udev/69-dm-lvm-metad.rules" 
"${pkgdir}/usr/lib/initcpio/udev/69-dm-lvm-metad.rules"
   # systemd support

Deleted: sd-lvm2
===
--- sd-lvm2 2014-11-14 19:10:43 UTC (rev 226256)
+++ sd-lvm2 2014-11-14 19:21:58 UTC (rev 226257)
@@ -1,32 +0,0 @@
-#!/usr/bin/bash
-
-build() {
-local mod
-for mod in dm-mod dm-snapshot dm-mirror; do
-add_module "$mod"
-done
-
-add_binary "/usr/bin/lvm"
-add_binary "/usr/bin/lvmetad"
-add_binary "/usr/bin/dmsetup"
-add_file "/usr/lib/udev/rules.d/10-dm.rules"
-add_file "/usr/lib/udev/rules.d/13-dm-disk.rules"
-add_file "/usr/lib/udev/rules.d/95-dm-notify.rules"
-add_file "/usr/lib/udev/rules.d/11-dm-lvm.rules"
-add_file "/usr/lib/udev/rules.d/69-dm-lvm-metad.rules"
-add_file "/usr/lib/initcpio/udev/11-dm-initramfs.rules" 
"/usr/lib/udev/rules.d/11-dm-initramfs.rules"
-add_file "/etc/lvm/lvm.conf"
-
-add_file "/usr/lib/systemd/system/lvm2-lvmetad.service"
-add_file "/usr/lib/systemd/system/lvm2-lvmetad.socket"
-add_file "/usr/lib/systemd/system/lvm2-pvscan@.service"
-add_symlink 
"/usr/lib/systemd/system/sysinit.target.wants/lvm2-lvmetad.socket"
-}
-
-help() {
-  cat <

[arch-commits] Commit in cups/repos (42 files)

2014-11-14 Thread Andreas Radke
Date: Friday, November 14, 2014 @ 20:10:43
  Author: andyrtr
Revision: 226256

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

Added:
  cups/repos/extra-i686/PKGBUILD
(from rev 226255, cups/trunk/PKGBUILD)
  cups/repos/extra-i686/cups-1.6.0-fix-install-perms.patch
(from rev 226255, cups/trunk/cups-1.6.0-fix-install-perms.patch)
  cups/repos/extra-i686/cups-1.6.2-statedir.patch
(from rev 226255, cups/trunk/cups-1.6.2-statedir.patch)
  cups/repos/extra-i686/cups-no-export-ssllibs.patch
(from rev 226255, cups/trunk/cups-no-export-ssllibs.patch)
  cups/repos/extra-i686/cups-no-gcrypt.patch
(from rev 226255, cups/trunk/cups-no-gcrypt.patch)
  cups/repos/extra-i686/cups-no-gzip-man.patch
(from rev 226255, cups/trunk/cups-no-gzip-man.patch)
  cups/repos/extra-i686/cups.install
(from rev 226255, cups/trunk/cups.install)
  cups/repos/extra-i686/cups.logrotate
(from rev 226255, cups/trunk/cups.logrotate)
  cups/repos/extra-i686/cups.pam
(from rev 226255, cups/trunk/cups.pam)
  cups/repos/extra-x86_64/PKGBUILD
(from rev 226255, cups/trunk/PKGBUILD)
  cups/repos/extra-x86_64/cups-1.6.0-fix-install-perms.patch
(from rev 226255, cups/trunk/cups-1.6.0-fix-install-perms.patch)
  cups/repos/extra-x86_64/cups-1.6.2-statedir.patch
(from rev 226255, cups/trunk/cups-1.6.2-statedir.patch)
  cups/repos/extra-x86_64/cups-no-export-ssllibs.patch
(from rev 226255, cups/trunk/cups-no-export-ssllibs.patch)
  cups/repos/extra-x86_64/cups-no-gcrypt.patch
(from rev 226255, cups/trunk/cups-no-gcrypt.patch)
  cups/repos/extra-x86_64/cups-no-gzip-man.patch
(from rev 226255, cups/trunk/cups-no-gzip-man.patch)
  cups/repos/extra-x86_64/cups.install
(from rev 226255, cups/trunk/cups.install)
  cups/repos/extra-x86_64/cups.logrotate
(from rev 226255, cups/trunk/cups.logrotate)
  cups/repos/extra-x86_64/cups.pam
(from rev 226255, cups/trunk/cups.pam)
Deleted:
  cups/repos/extra-i686/PKGBUILD
  cups/repos/extra-i686/cups-1.6.0-fix-install-perms.patch
  cups/repos/extra-i686/cups-1.6.2-statedir.patch
  cups/repos/extra-i686/cups-no-export-ssllibs.patch
  cups/repos/extra-i686/cups-no-gcrypt.patch
  cups/repos/extra-i686/cups-no-gzip-man.patch
  cups/repos/extra-i686/cups.install
  cups/repos/extra-i686/cups.logrotate
  cups/repos/extra-i686/cups.pam
  cups/repos/extra-i686/str4495.patch
  cups/repos/extra-i686/str4497.patch
  cups/repos/extra-i686/str4500.patch
  cups/repos/extra-x86_64/PKGBUILD
  cups/repos/extra-x86_64/cups-1.6.0-fix-install-perms.patch
  cups/repos/extra-x86_64/cups-1.6.2-statedir.patch
  cups/repos/extra-x86_64/cups-no-export-ssllibs.patch
  cups/repos/extra-x86_64/cups-no-gcrypt.patch
  cups/repos/extra-x86_64/cups-no-gzip-man.patch
  cups/repos/extra-x86_64/cups.install
  cups/repos/extra-x86_64/cups.logrotate
  cups/repos/extra-x86_64/cups.pam
  cups/repos/extra-x86_64/str4495.patch
  cups/repos/extra-x86_64/str4497.patch
  cups/repos/extra-x86_64/str4500.patch

-+
 /PKGBUILD   |  344 ++
 /cups-1.6.0-fix-install-perms.patch |   50 +++
 /cups-1.6.2-statedir.patch  |   24 +
 /cups-no-export-ssllibs.patch   |   24 +
 /cups-no-gcrypt.patch   |   22 +
 /cups-no-gzip-man.patch |   36 ++
 /cups.install   |   56 +++
 /cups.logrotate |   10 
 /cups.pam   |6 
 extra-i686/PKGBUILD |  192 
 extra-i686/cups-1.6.0-fix-install-perms.patch   |   25 -
 extra-i686/cups-1.6.2-statedir.patch|   12 
 extra-i686/cups-no-export-ssllibs.patch |   12 
 extra-i686/cups-no-gcrypt.patch |   11 
 extra-i686/cups-no-gzip-man.patch   |   18 -
 extra-i686/cups.install |   28 -
 extra-i686/cups.logrotate   |5 
 extra-i686/cups.pam |3 
 extra-i686/str4495.patch|   26 -
 extra-i686/str4497.patch|   43 --
 extra-i686/str4500.patch|   17 -
 extra-x86_64/PKGBUILD   |  192 
 extra-x86_64/cups-1.6.0-fix-install-perms.patch |   25 -
 extra-x86_64/cups-1.6.2-statedir.patch  |   12 
 extra-x86_64/cups-no-export-ssllibs.patch   |   12 
 extra-x86_64/cups-no-gcrypt.patch   |   11 
 extra-x86_64/cups-no-gzip-man.patch |   18 -
 extra-x86_64/cups.install   |   28 -
 extra-x86_64/cups.logrotate |5 
 extra-x86_64/cups.pam   |3 
 extra-x86_64/str4495.patch  |   26 -
 extra-x86_64/str4497.patch  |   43 --
 extra-x86_64/str4500.patch  |   17 -
 33 files changed

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

2014-11-14 Thread Andreas Radke
Date: Friday, November 14, 2014 @ 20:10:12
  Author: andyrtr
Revision: 226255

upgpkg: cups 2.0.1-1

upstream update 2.0.1

Modified:
  cups/trunk/PKGBUILD
Deleted:
  cups/trunk/str4495.patch
  cups/trunk/str4497.patch
  cups/trunk/str4500.patch

---+
 PKGBUILD  |   30 +-
 str4495.patch |   26 --
 str4497.patch |   43 ---
 str4500.patch |   17 -
 4 files changed, 5 insertions(+), 111 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-11-14 18:58:14 UTC (rev 226254)
+++ PKGBUILD2014-11-14 19:10:12 UTC (rev 226255)
@@ -3,8 +3,8 @@
 
 pkgbase="cups"
 pkgname=('libcups' 'cups')
-pkgver=2.0.0
-pkgrel=3
+pkgver=2.0.1
+pkgrel=1
 arch=('i686' 'x86_64')
 license=('GPL')
 url="http://www.cups.org/";
@@ -20,11 +20,8 @@
 cups-1.6.2-statedir.patch
 cups-1.6.0-fix-install-perms.patch
 # bugfixes
-str4497.patch
-str4495.patch
-str4500.patch # FC
 )
-md5sums=('2cdd81fea23e9e29555c24bdfd0d7c89'
+md5sums=('7f7c33071035fb20d0879929a42da711'
  'SKIP'
  'fc8286f185e2cc5f7e1f6843bf193e2b'
  '96f82c38f3f540b53f3e5144900acf17'
@@ -32,10 +29,7 @@
  '1beb4896f217bc241bc08a422274ec0c'
  '90c30380d4c8cd48a908cfdadae1ea24'
  '451609db34f95209d64c38474de27ce1'
- '5117f65342fcc69c6a506529e4daca9e'
- '5aab5a160482d89e5d2a4def1f83ef8f'
- '84da6459947d4fb62398e9bad7922a11'
- '8c0514e41c3b50b2b838b218f683e227')
+ '5117f65342fcc69c6a506529e4daca9e')
 
 prepare() {
 
@@ -55,19 +49,6 @@
 
   # bug fixes 
   
-  # https://www.cups.org/str.php?L4497 + https://www.cups.org/str.php?L4491
-  # "Port 631" binds to localhost only (systemd regression)
-  patch -Np0 -i ${srcdir}/str4497.patch
-
-  # https://bugs.archlinux.org/task/40937 - https://www.cups.org/str.php?L4495
-  # adds a warning to the config file and honors the FatalErrors directive
-  patch -Np0 -i ${srcdir}/str4495.patch
-  
-  # https://www.cups.org/str.php?L4500
-  # /etc/cups/ppd/*.ppd not world-readable, cupsGetPPD() returns symlink
-  patch -Np1 -i ${srcdir}/str4500.patch
-  
-  
   # set MaxLogSize to 0 to prevent using cups internal log rotation
   sed -i -e '5i\ ' conf/cupsd.conf.in
   sed -i -e '6i# Disable cups internal logging - use logrotate instead' 
conf/cupsd.conf.in
@@ -138,8 +119,7 @@
 etc/cups/subscriptions.conf
 etc/dbus-1/system.d/cups.conf
 etc/logrotate.d/cups
-etc/pam.d/cups
-etc/xinetd.d/cups-lpd)
+etc/pam.d/cups)
 depends=('acl' 'pam' "libcups>=${pkgver}" 'cups-filters' 'bc' 'colord'
  'dbus' 'systemd' 'libpaper' 'hicolor-icon-theme')
 optdepends=('xdg-utils: xdg .desktop file support')

Deleted: str4495.patch
===
--- str4495.patch   2014-11-14 18:58:14 UTC (rev 226254)
+++ str4495.patch   2014-11-14 19:10:12 UTC (rev 226255)
@@ -1,26 +0,0 @@
-Index: conf/cups-files.conf.in
-===
 conf/cups-files.conf.in(revision 12220)
-+++ conf/cups-files.conf.in(working copy)
-@@ -15,6 +15,7 @@
- #Group @CUPS_GROUP@
-
- # Administrator user group, used to match @SYSTEM in cupsd.conf policy 
rules...
-+# This cannot contain the Group value for security reasons...
- SystemGroup @CUPS_SYSTEM_GROUPS@
- @CUPS_SYSTEM_AUTHKEY@
-
-Index: scheduler/conf.c
-===
 scheduler/conf.c   (revision 12220)
-+++ scheduler/conf.c   (working copy)
-@@ -995,6 +995,9 @@
-
-   cupsdLogMessage(CUPSD_LOG_NOTICE,
-   "Group and SystemGroup cannot use the same groups.");
-+  if (FatalErrors & (CUPSD_FATAL_CONFIG | CUPSD_FATAL_PERMISSIONS))
-+return (0);
-+
-   cupsdLogMessage(CUPSD_LOG_INFO, "Resetting Group to \"nobody\"...");
-
-   group = getgrnam("nobody");

Deleted: str4497.patch
===
--- str4497.patch   2014-11-14 18:58:14 UTC (rev 226254)
+++ str4497.patch   2014-11-14 19:10:12 UTC (rev 226255)
@@ -1,43 +0,0 @@
-Index: scheduler/main.c
-===
 scheduler/main.c   (revision 12213)
-+++ scheduler/main.c   (working copy)
-@@ -763,6 +763,9 @@
- 
- if (timeout == 86400 && OnDemand && IdleExitTimeout &&
- !cupsArrayCount(ActiveJobs) &&
-+#  ifdef HAVE_SYSTEMD
-+!WebInterface &&
-+#  endif /* HAVE_SYSTEMD */
-   (!Browsing || !BrowseLocalProtocols || !cupsArrayCount(Printers)))
- {
-   timeout = IdleExitTimeout;
-@@ -2114,8 +2117,12 @@
-   * jobs or shared printers to advertise...
-   */
- 
--  if (cupsArrayCount(ActiveJobs) ||
-+  if (cupsArrayCount(ActiveJobs) ||   /* Active jobs

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

2014-11-14 Thread Eric Bélanger
Date: Friday, November 14, 2014 @ 19:58:14
  Author: eric
Revision: 226254

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

Added:
  intel-tbb/repos/extra-i686/PKGBUILD
(from rev 226253, intel-tbb/trunk/PKGBUILD)
  intel-tbb/repos/extra-x86_64/PKGBUILD
(from rev 226253, intel-tbb/trunk/PKGBUILD)
Deleted:
  intel-tbb/repos/extra-i686/PKGBUILD
  intel-tbb/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-11-14 18:55:57 UTC (rev 226253)
+++ extra-i686/PKGBUILD 2014-11-14 18:58:14 UTC (rev 226254)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Stéphane Gaudreault 
-# Contributor: Thomas Dziedzic < gostrc at gmail >
-# Contributor: Denis Martinez 
-
-pkgname=intel-tbb
-pkgver=4.3_20140724
-pkgrel=1
-pkgdesc='High level abstract threading library'
-arch=('i686' 'x86_64')
-url='http://www.threadingbuildingblocks.org/'
-license=('GPL')
-depends=('gcc-libs')
-source=("http://threadingbuildingblocks.org/sites/default/files/software_releases/source/tbb${pkgver/\./}oss_src.tgz";)
-sha1sums=('4cb73cd0ac61b790318358ae4782f80255715278')
-
-build() {
-  cd tbb${pkgver/\./}oss
-  make
-}
-
-package() {
-  cd tbb${pkgver/\./}oss
-  install -d "${pkgdir}"/usr/lib
-  install -m755 build/linux_*/*.so* "${pkgdir}"/usr/lib
-  install -d "${pkgdir}"/usr/include
-  cp -a include/tbb "${pkgdir}"/usr/include
-}

Copied: intel-tbb/repos/extra-i686/PKGBUILD (from rev 226253, 
intel-tbb/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-11-14 18:58:14 UTC (rev 226254)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault 
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Denis Martinez 
+
+pkgname=intel-tbb
+pkgver=4.3_20141023
+pkgrel=1
+pkgdesc='High level abstract threading library'
+arch=('i686' 'x86_64')
+url='http://www.threadingbuildingblocks.org/'
+license=('GPL')
+depends=('gcc-libs')
+source=("http://threadingbuildingblocks.org/sites/default/files/software_releases/source/tbb${pkgver/\./}oss_src.tgz";)
+sha1sums=('aaecdc97049fbe3c623be46c4e1261b74a1a41a3')
+
+build() {
+  cd tbb${pkgver/\./}oss
+  make
+}
+
+package() {
+  cd tbb${pkgver/\./}oss
+  install -d "${pkgdir}"/usr/lib
+  install -m755 build/linux_*/*.so* "${pkgdir}"/usr/lib
+  install -d "${pkgdir}"/usr/include
+  cp -a include/tbb "${pkgdir}"/usr/include
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2014-11-14 18:55:57 UTC (rev 226253)
+++ extra-x86_64/PKGBUILD   2014-11-14 18:58:14 UTC (rev 226254)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Stéphane Gaudreault 
-# Contributor: Thomas Dziedzic < gostrc at gmail >
-# Contributor: Denis Martinez 
-
-pkgname=intel-tbb
-pkgver=4.3_20140724
-pkgrel=1
-pkgdesc='High level abstract threading library'
-arch=('i686' 'x86_64')
-url='http://www.threadingbuildingblocks.org/'
-license=('GPL')
-depends=('gcc-libs')
-source=("http://threadingbuildingblocks.org/sites/default/files/software_releases/source/tbb${pkgver/\./}oss_src.tgz";)
-sha1sums=('4cb73cd0ac61b790318358ae4782f80255715278')
-
-build() {
-  cd tbb${pkgver/\./}oss
-  make
-}
-
-package() {
-  cd tbb${pkgver/\./}oss
-  install -d "${pkgdir}"/usr/lib
-  install -m755 build/linux_*/*.so* "${pkgdir}"/usr/lib
-  install -d "${pkgdir}"/usr/include
-  cp -a include/tbb "${pkgdir}"/usr/include
-}

Copied: intel-tbb/repos/extra-x86_64/PKGBUILD (from rev 226253, 
intel-tbb/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2014-11-14 18:58:14 UTC (rev 226254)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault 
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Denis Martinez 
+
+pkgname=intel-tbb
+pkgver=4.3_20141023
+pkgrel=1
+pkgdesc='High level abstract threading library'
+arch=('i686' 'x86_64')
+url='http://www.threadingbuildingblocks.org/'
+license=('GPL')
+depends=('gcc-libs')
+source=("http://threadingbuildingblocks.org/sites/default/files/software_releases/source/tbb${pkgver/\./}oss_src.tgz";)
+sha1sums=('aaecdc97049fbe3c623be46c4e1261b74a1a41a3')
+
+build() {
+  cd tbb${pkgver/\./}oss
+  make
+}
+
+package() {
+  cd tbb${pkgver/\./}oss
+  install -d "${pkgdir}"/usr/lib
+  install -m755 build/linux_*/*.so* "${pkgdir}"/usr/lib
+  install -d "${pkgdir}"/usr/include
+  cp -a include/tbb "${pkgdir}"/usr/include
+}


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

2014-11-14 Thread Eric Bélanger
Date: Friday, November 14, 2014 @ 19:55:44
  Author: eric
Revision: 226252

upgpkg: intel-tbb 4.3_20141023-1

Upstream update

Modified:
  intel-tbb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-11-14 18:53:38 UTC (rev 226251)
+++ PKGBUILD2014-11-14 18:55:44 UTC (rev 226252)
@@ -4,7 +4,7 @@
 # Contributor: Denis Martinez 
 
 pkgname=intel-tbb
-pkgver=4.3_20140724
+pkgver=4.3_20141023
 pkgrel=1
 pkgdesc='High level abstract threading library'
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 license=('GPL')
 depends=('gcc-libs')
 
source=("http://threadingbuildingblocks.org/sites/default/files/software_releases/source/tbb${pkgver/\./}oss_src.tgz";)
-sha1sums=('4cb73cd0ac61b790318358ae4782f80255715278')
+sha1sums=('aaecdc97049fbe3c623be46c4e1261b74a1a41a3')
 
 build() {
   cd tbb${pkgver/\./}oss


[arch-commits] Commit in libreoffice-fresh-i18n/repos/extra-any (PKGBUILD PKGBUILD)

2014-11-14 Thread Andreas Radke
Date: Friday, November 14, 2014 @ 19:55:57
  Author: andyrtr
Revision: 226253

archrelease: copy trunk to extra-any

Added:
  libreoffice-fresh-i18n/repos/extra-any/PKGBUILD
(from rev 226252, libreoffice-fresh-i18n/trunk/PKGBUILD)
Deleted:
  libreoffice-fresh-i18n/repos/extra-any/PKGBUILD

--+
 PKGBUILD |  708 ++---
 1 file changed, 354 insertions(+), 354 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-11-14 18:55:44 UTC (rev 226252)
+++ PKGBUILD2014-11-14 18:55:57 UTC (rev 226253)
@@ -1,354 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke 
-# Maintainer: Bartłomiej Piotrowski 
-
-pkgbase=libreoffice-fresh-i18n
-
-pkgver=4.3.3
-pkgrel=1
-_rcver=${pkgver}.2
-#_oodlver=${pkgver}.0.beta1
-_oodlver=${pkgver}
-
-arch=('any')
-url="http://www.documentfoundation.org";
-license=('LGPL')
-makedepends=('rpmextract')
-
-#http://download.documentfoundation.org/mirrors/all.html
-_url="http://download.documentfoundation.org/libreoffice/stable";
-#_url="http://download.documentfoundation.org/libreoffice/testing";
-#_url="http://dev-builds.libreoffice.org/pre-releases";
-#_url="http://www.libreoffice.org/download/pre-releases";
-
-#_url+="/${pkgver}-rc2/rpm/x86"
-_url+="/${pkgver}/rpm/x86"
-#_url+="/rpm/x86"
-
-_languages=(
-  'af"Afrikaans"'
-  'am"Amharic"'
-  'ar"Arabic"'
-  'as"Assamese (India)"'
-  'ast   "Asturianu"'
-  'be"Belarusian"'
-  'bg"Bulgarian"'
-  'bn"Bengali"'
-  'bn-IN "Bengali (India)"'
-  'bo"Tibetan"'
-  'br"Breton"'
-  'brx   "Bodo"'
-  'bs"Bosnian"'
-  'ca"Catalan"'
-  'ca-valencia   "Catalan (Valencia)"'
-  'cs"Czech"'
-  'cy"Welsh"'
-  'da"Danish"'
-  'de"German"'
-  'dgo   "Dogri"'
-  'dz"Dzongkha"'
-  'el"Greek"'
-  'en-GB "English (GB)"'
-  'en-ZA "English (ZA)"'
-  'eo"Esperanto"'
-  'es"Spanish"'
-  'et"Estonian"'
-  'eu"Basque"'
-  'fa"Persian"'
-  'fi"Finnish"'
-  'fr"French"'
-  'ga"Irish"'
-  'gd"Gaelic (Scottish)"'
-  'gl"Galician"'
-  'gu"Gujarati"'
-  'he"Hebrew"'
-  'hi"Hindi"'
-  'hr"Croatian"'
-  'hu"Hungarian"'
-  'id"Indonesian"'
-  'is"Icelandic"'
-  'it"Italian"'
-  'ja"Japanese"'
-  'ka"Georgian"'
-  'kk"Kazakh"'
-  'km"Khmer (Cambodia)"'
-  'kmr-Latn  "Kurdish"'
-  'kn"Kannada"'
-  'ko"Korean"'
-  'kok   "Konkani"'
-  'ks"Kashmiri"'
-  'lb"Luxembourgish"'
-  'lo"Lao"'
-  'lt"Lithuanian"'
-  'lv"Latvian"'
-  'mai   "Maithili"'
-  'mk"Macedonian"'
-  'ml"Malayalam"'
-  'mn"Mongolian"'
-  'mni   "Manipuri"'
-  'mr"Marathi"'
-  'my"Burmese"'
-  'nb"Norwegian Bokmal"'
-  'ne"Nepali"'
-  'nl"Dutch"'
-  'nn"Norwegian Nynorsk"'
-  'nr"Ndebele (South)"'
-  'nso   "Northern Sotho"'
-  'oc"Occitan"'
-  'om"Oromo"'
-  'or"Oriya"'
-  'pa-IN "Punjabi (India)"'
-  'pl"Polish"'
-  'pt"Portuguese"'
-  'pt-BR "Portuguese (Brasil)"'
-  'ro"Romanian"'
-  'ru"Russian"'
-  'rw"Kinyarwanda"'
-  'sa-IN "Sanskrit (India)"'
-  'sat   "Santali"'
-  'sd"Sindhi"'
-  'si"Singhalese"'
-  'sid   "Sidama"'
-  'sk"Slovak"'
-  'sl"Slovenian"'
-  'sq"Albanien"'
-  'sr"Serbian"'
-  'sr-Latn   "Serbian (Latin)"'
-  'ss"Swati"'
-  'st"Southern Sotho"'
-  'sv"Swedish"'
-  'sw-TZ "Swahili (Tanzania)"'
-  'ta"Tamil"'
-  'te"Telugu"'
-  'tg"Tajik"'
-  'th"Thai"'
-  'tn"Tswana"'
-  'tr"Turkish"'
-  'ts"Tsonga"'
-  'tt"Tatar"'
-  'ug"Uighur"'
-  'uk"Ukrainian"'
-  'uz"Uzbek"'
-  've"Venda"'
-  'vi"Vietnamese"'
-  'xh"Xhosa"'
-  'zh-CN "Chinese (simplified)"'
-  'zh-TW "Chinese (traditional)"'
-  'zu"Zulu"'
-)
-md5sums=('8347123f1b8b5acbe0abea29d39ea1de'
- '67dde05336c404da090d10dc0e6d0aca'
- '883abe863f3aa6021e3e27ff6cc4e018'
- '6ac2191c0c870388d21ea88a5b6f8208'
- '296b35b7d5c5fce68d3819cd36b0ca9a'
- '16579b82411fe9e73f0861c77417a1bf'
- '3ca7d71c

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

2014-11-14 Thread Andreas Radke
Date: Friday, November 14, 2014 @ 19:53:38
  Author: andyrtr
Revision: 226251

upgpkg: libreoffice-fresh-i18n 4.3.4-1

upstream update 4.3.4

Modified:
  libreoffice-fresh-i18n/trunk/PKGBUILD

--+
 PKGBUILD |  336 ++---
 1 file changed, 168 insertions(+), 168 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-11-14 18:34:47 UTC (rev 226250)
+++ PKGBUILD2014-11-14 18:53:38 UTC (rev 226251)
@@ -4,9 +4,9 @@
 
 pkgbase=libreoffice-fresh-i18n
 
-pkgver=4.3.3
+pkgver=4.3.4
 pkgrel=1
-_rcver=${pkgver}.2
+_rcver=${pkgver}.1
 #_oodlver=${pkgver}.0.beta1
 _oodlver=${pkgver}
 
@@ -136,172 +136,172 @@
   'zh-TW "Chinese (traditional)"'
   'zu"Zulu"'
 )
-md5sums=('8347123f1b8b5acbe0abea29d39ea1de'
- '67dde05336c404da090d10dc0e6d0aca'
- '883abe863f3aa6021e3e27ff6cc4e018'
- '6ac2191c0c870388d21ea88a5b6f8208'
- '296b35b7d5c5fce68d3819cd36b0ca9a'
- '16579b82411fe9e73f0861c77417a1bf'
- '3ca7d71c47e7edbbaf1422d55abd27c0'
- '351727acb491d28d1acfd744746ff06c'
- 'da84539985003968b27715d0495734dd'
- '850bc0ffc099b596529ce6edd7dcdeff'
- '12b774b1881d4d423eb3048354b2c472'
- '3d795e8b3b41defa312d26f70872457d'
- '0656ebcad46644eb84f38d4c0f0ed5e9'
- '400f93c8612a3c54362bbeb691d6c120'
- 'def1c0be985006ff954fe31cdcde0123'
- '4eb6ad1f0cf545785fe31f83f1e7e8a1'
- '4c27ee5b6a6d46e4363398f01a3ded3d'
- '892fab2fb1f5e0754c3d21a7a3b21b03'
- '34c8ea18bbf061c5023f65fea02f6d8b'
- 'd7dd4a68b619df2e54808cfb4eaa9161'
- 'e8890aef148598864d431187f5eaa2d3'
- '42ed96cb2a30135f34c0ed34b0171165'
- '0627c8c079c4396632b31b970020a432'
- 'a981352de06bfff55e42ecf6b01a2097'
- '377a7152d8fc0f22456204835ac82967'
- '5917331083edfae310b832ec35d7daa5'
- '404558c7f59a80ea4ee624e393135860'
- '228f944cce14613ca9c060ffc2a9b2d1'
- 'c5cc01daf144480f8cb5067219f16998'
- 'a541b623b9ad277251254a3a5a424d10'
- '169103394d665322704971f63d74009f'
- '036469afb93900bfd5b43042bc65c4bb'
- '3783ad688d0de60e2c5ab09a763b8c6c'
- 'c0bdf990db899268dc3d871e69261419'
- 'f7b45ac7ceb9e4384c0a5ef7c2228b2d'
- '39eef93a253b0340b0817f72ddb5fe9f'
- '843399d22f303cb973f5fe8820f60732'
- '71265e5f61a1fa6a9e1a262313898bce'
- 'c47a26ba8456bbee7802648a017ccdbb'
- 'b568704dac1d60bf56648a97649e91ba'
- 'ae5462fc4e83561f6ddb52933ad9ee84'
- '4dc6888d890cceff18cc8da0a5bbacb6'
- 'bf875ea2a68da6bb12c4ec39b58ab505'
- '5fb2a47c248249e15e22b63567cf1bc9'
- 'b07a631472c94f56cda6d5a015864693'
- '649d2be2656810394c99ad95664d4b8c'
- '1f73c881ff20d049324a86ebdd85a133'
- 'fc3da23e1bba4673064cc66455a656ee'
- '80402a47478dee5962ce7d9a5eba81b8'
- '95f051531ad8e0b609e8f370295652ab'
- '3c3741894e1824015bc9a22dfd98803d'
- '40b8c8a1f1008b2f710af39ddc02405a'
- '8c0349c4bbb700f18e0a0e26cd31b4d5'
- '05191072f4671e229a405eed3589f9c4'
- '593eb65c3f55ff72f7df31bba9abe2f2'
- '89ea12efe5ef90226593f532f6e711e1'
- '404aa11e1fe1088dc787b343a203ad7b'
- '4241b5f5f243e663271cf8119e0111d7'
- '40c2d3cf516e6ae9b2ee7bd37b15e21f'
- '4ed4ec3c04f9ff052e551a1765205a32'
- '18d37811757c2849f85f48af381f5e2a'
- 'baba108fb7670d6fd92cb52acbc7483e'
- '307ca59bd35fb3cb5dd31b3720df1975'
- 'c34f838b824d2f72b4af876ad156c42a'
- '8c29e47eb31b0207d08c64e24ae0e36c'
- '1425c6eb76d01b19ee4c493f3e3185b7'
- 'adef0b483610db52c3da48d445a6fd9d'
- 'af9cd0b4a49414f49fc6cdcb11287cf8'
- '9f32372281907d01f761ea782ca88a5b'
- '56d1829896b0ac558727a4fc1273911b'
- '3eab5aee81ba1d5a567440fc09a359a9'
- '1ed29d0b09e43d534838ac954399c51d'
- '5d34eabda7b57c74a0990df8c6f9d70e'
- 'd654951d5371b89ef937e1b0a8338f05'
- 'b4e10e5d03cfcd7339049e548b17033b'
- '2db170dd38cb1df5e826a1602181cc5f'
- 'cb75a2a7328633a96911ec718f4bd2a6'
- '005b810289f398db767b1d3c993d13e6'
- 'e119482543a3c9eac8bfcd08540187c5'
- '6691ae5d08d19e2d8de09f50cc3a663c'
- 'dc17231ce7e339f12df74cb4125e1238'
- 'b97e9ed4e0a735a3b450a6ea1b9421ec'
- 'd0b59814c8536ee70c4a6da046b62ddd'
- '3a6c53672b7bc5fc860db6f5cbb3f742'
- '92d383bc7855df2aacd041c9225f3ce3'
- '2d23f6b482b3f68ef89ce7b641501e23'
- '3c928b74a448819750f926dc9b1a4635'
- '11cd4547575b35bdc3a4b703803b198e'
- '38a3cb8c925f4e795a2eaac5c18825cf'
- '3e572b9c57c542bb91c4c1352c651219'
- 'f97a2a41ad7b179d8dc0d34a331b4ba6'
- '8d680b4da04715590898f41f0288fe2b'
- 'a2292a37a2d9773d8ba654af80b0cb0f'
- 

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

2014-11-14 Thread Sergej Pupykin
Date: Friday, November 14, 2014 @ 19:51:13
  Author: spupykin
Revision: 122579

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-11-14 18:51:01 UTC (rev 122578)
+++ PKGBUILD2014-11-14 18:51:13 UTC (rev 122579)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Antonio Rojas 
-# Based on owncloud-git PKGBUILD by Alexander Ovsyannikov
-
-pkgname=owncloud
-pkgver=7.0.2
-pkgrel=1
-pkgdesc="A cloud server to store your files centrally on a hardware controlled 
by you"
-arch=('any')
-url="http://owncloud.org/";
-license=('GPL')
-depends=('php-gd')
-optdepends=('php-apache: to use the Apache web server'
-   'php-sqlite: to use the SQLite database backend'
-   'php-pgsql: to use the PostgreSQL database backend'
-   'php-ldap: LDAP authentication'
-   'php-intl'
-   'php-apcu'
-   'php-xcache'
-   'mariadb: to use the MySQL database backend'
-   'smbclient: to mount SAMBA shares'
-   'php-mcrypt'
-#  'php-imagick: file preview'
-   'ffmpeg: file preview'
-   'libreoffice-common: file preview')
-makedepends=()
-options=('!strip')
-backup=('etc/webapps/owncloud/apache.example.conf')
-source=("http://download.owncloud.org/community/$pkgname-${pkgver}.tar.bz2"{,.asc}
-   'apache.example.conf')
-md5sums=('4af57e093878917d80004f7151f9282e'
- 'SKIP'
- '64c6edf88bcbb37d063e4bf77b39237f')
-
-package() {
-  # install license
-  install -d ${pkgdir}/usr/share/licenses/${pkgname}
-  cp ${srcdir}/${pkgname}/COPYING-* ${pkgdir}/usr/share/licenses/${pkgname}
-
-  # install project
-  install -d ${pkgdir}/usr/share/webapps/
-  cp -a ${srcdir}/${pkgname} ${pkgdir}/usr/share/webapps/
-
-  # install apache config file
-  install -d  ${pkgdir}/etc/webapps/${pkgname}
-  install -m 644 ${srcdir}/apache.example.conf  
${pkgdir}/etc/webapps/${pkgname}
-
-  # move config to /etc
-  mv ${pkgdir}/usr/share/webapps/owncloud/config 
${pkgdir}/etc/webapps/${pkgname}/config
-  chown -R http:http ${pkgdir}/etc/webapps/${pkgname}/config
-  ln -s /etc/webapps/${pkgname}/config 
${pkgdir}/usr/share/webapps/owncloud/config
-}

Copied: owncloud/repos/community-any/PKGBUILD (from rev 122578, 
owncloud/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-11-14 18:51:13 UTC (rev 122579)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Antonio Rojas 
+# Based on owncloud-git PKGBUILD by Alexander Ovsyannikov
+
+pkgname=owncloud
+pkgver=7.0.3
+pkgrel=1
+pkgdesc="A cloud server to store your files centrally on a hardware controlled 
by you"
+arch=('any')
+url="http://owncloud.org/";
+license=('GPL')
+depends=('php-gd')
+optdepends=('php-apache: to use the Apache web server'
+   'php-sqlite: to use the SQLite database backend'
+   'php-pgsql: to use the PostgreSQL database backend'
+   'php-ldap: LDAP authentication'
+   'php-intl'
+   'php-apcu'
+   'php-xcache'
+   'mariadb: to use the MySQL database backend'
+   'smbclient: to mount SAMBA shares'
+   'php-mcrypt'
+#  'php-imagick: file preview'
+   'ffmpeg: file preview'
+   'libreoffice-common: file preview')
+makedepends=()
+options=('!strip')
+backup=('etc/webapps/owncloud/apache.example.conf')
+source=("http://download.owncloud.org/community/$pkgname-${pkgver}.tar.bz2"{,.asc}
+   'apache.example.conf')
+md5sums=('d5d2ad068046e6ddb322cf001a9bb3d5'
+ 'SKIP'
+ '64c6edf88bcbb37d063e4bf77b39237f')
+
+package() {
+  # install license
+  install -d ${pkgdir}/usr/share/licenses/${pkgname}
+  cp ${srcdir}/${pkgname}/COPYING-* ${pkgdir}/usr/share/licenses/${pkgname}
+
+  # install project
+  install -d ${pkgdir}/usr/share/webapps/
+  cp -a ${srcdir}/${pkgname} ${pkgdir}/usr/share/webapps/
+
+  # install apache config file
+  install -d  ${pkgdir}/etc/webapps/${pkgname}
+  install -m 644 ${srcdir}/apache.example.conf  
${pkgdir}/etc/webapps/${pkgname}
+
+  # move config to /etc
+  mv ${pkgdir}/usr/share/webapps/owncloud/config 
${pkgdir}/etc/webapps/${pkgname}/config
+  chown -R http:http ${pkgdir}/etc/webapps/${pkgname}/config
+  ln -s /etc/webapps/${pkgname}/config 
${pkgdir}/usr/share/webapps/owncloud/config
+}

Deleted: apache.example.conf
=

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

2014-11-14 Thread Sergej Pupykin
Date: Friday, November 14, 2014 @ 19:51:01
  Author: spupykin
Revision: 122578

upgpkg: owncloud 7.0.3-1

upd

Modified:
  owncloud/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-11-14 18:34:24 UTC (rev 122577)
+++ PKGBUILD2014-11-14 18:51:01 UTC (rev 122578)
@@ -4,7 +4,7 @@
 # Based on owncloud-git PKGBUILD by Alexander Ovsyannikov
 
 pkgname=owncloud
-pkgver=7.0.2
+pkgver=7.0.3
 pkgrel=1
 pkgdesc="A cloud server to store your files centrally on a hardware controlled 
by you"
 arch=('any')
@@ -29,7 +29,7 @@
 backup=('etc/webapps/owncloud/apache.example.conf')
 
source=("http://download.owncloud.org/community/$pkgname-${pkgver}.tar.bz2"{,.asc}
'apache.example.conf')
-md5sums=('4af57e093878917d80004f7151f9282e'
+md5sums=('d5d2ad068046e6ddb322cf001a9bb3d5'
  'SKIP'
  '64c6edf88bcbb37d063e4bf77b39237f')
 


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

2014-11-14 Thread Eric Bélanger
Date: Friday, November 14, 2014 @ 19:34:47
  Author: eric
Revision: 226250

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

Added:
  fltk/repos/extra-i686/PKGBUILD
(from rev 226249, fltk/trunk/PKGBUILD)
  fltk/repos/extra-i686/fltk-config-dynlibs.patch
(from rev 226249, fltk/trunk/fltk-config-dynlibs.patch)
  fltk/repos/extra-i686/fltk-games.install
(from rev 226249, fltk/trunk/fltk-games.install)
  fltk/repos/extra-i686/fltk.install
(from rev 226249, fltk/trunk/fltk.install)
  fltk/repos/extra-x86_64/PKGBUILD
(from rev 226249, fltk/trunk/PKGBUILD)
  fltk/repos/extra-x86_64/fltk-config-dynlibs.patch
(from rev 226249, fltk/trunk/fltk-config-dynlibs.patch)
  fltk/repos/extra-x86_64/fltk-games.install
(from rev 226249, fltk/trunk/fltk-games.install)
  fltk/repos/extra-x86_64/fltk.install
(from rev 226249, fltk/trunk/fltk.install)
Deleted:
  fltk/repos/extra-i686/PKGBUILD
  fltk/repos/extra-i686/fltk-config-dynlibs.patch
  fltk/repos/extra-i686/fltk-games.install
  fltk/repos/extra-i686/fltk.install
  fltk/repos/extra-i686/tigervnc.patch
  fltk/repos/extra-x86_64/PKGBUILD
  fltk/repos/extra-x86_64/fltk-config-dynlibs.patch
  fltk/repos/extra-x86_64/fltk-games.install
  fltk/repos/extra-x86_64/fltk.install
  fltk/repos/extra-x86_64/tigervnc.patch

+
 /PKGBUILD  |  134 +
 /fltk-config-dynlibs.patch |   74 
 /fltk-games.install|   22 
 /fltk.install  |   24 
 extra-i686/PKGBUILD|   69 
 extra-i686/fltk-config-dynlibs.patch   |   37 
 extra-i686/fltk-games.install  |   11 
 extra-i686/fltk.install|   12 
 extra-i686/tigervnc.patch  | 3903 ---
 extra-x86_64/PKGBUILD  |   69 
 extra-x86_64/fltk-config-dynlibs.patch |   37 
 extra-x86_64/fltk-games.install|   11 
 extra-x86_64/fltk.install  |   12 
 extra-x86_64/tigervnc.patch| 3903 ---
 14 files changed, 254 insertions(+), 8064 deletions(-)

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


[arch-commits] Commit in lsdvd/trunk (PKGBUILD stdint_usage.patch)

2014-11-14 Thread Jonathan Steel
Date: Friday, November 14, 2014 @ 19:34:02
  Author: jsteel
Revision: 122576

upgpkg: lsdvd 0.17-1

Modified:
  lsdvd/trunk/PKGBUILD
Deleted:
  lsdvd/trunk/stdint_usage.patch

+
 PKGBUILD   |   22 +-
 stdint_usage.patch |   22 --
 2 files changed, 9 insertions(+), 35 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-11-14 17:28:43 UTC (rev 122575)
+++ PKGBUILD2014-11-14 18:34:02 UTC (rev 122576)
@@ -1,33 +1,29 @@
 # $Id$
-# Maintainer: Jonathan Steel 
+# Maintainer: Jonathan Steel 
 # Contributor: Aaron Griffin 
 # Contributor: Mathieu Clabaut 
 
 pkgname=lsdvd
-pkgver=0.16
-pkgrel=7
+pkgver=0.17
+pkgrel=1
 pkgdesc="Console application that displays the content of a DVD"
 arch=('i686' 'x86_64')
 url="http://sourceforge.net/projects/lsdvd/";
 license=('GPL2')
 depends=('libdvdread')
-source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz
-stdint_usage.patch)
-md5sums=('340e1abe5c5e5abf7ff8031e78f49ee7'
- '6cbcbfde873f894bd3c784f65141b2fc')
+source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz)
+md5sums=('32e63ff932ee2867e023ad3e74e14dcb')
 
 build() {
-  cd "$srcdir"/$pkgname-$pkgver
+  cd $pkgname-$pkgver
 
-  patch -Np1 -i "$srcdir"/stdint_usage.patch
+  ./configure --prefix=/usr
 
-  ./configure --prefix=/usr --mandir=/usr/share/man
-
   make
 }
 
 package() {
-  cd "$srcdir"/$pkgname-$pkgver
+  cd $pkgname-$pkgver
 
-  make DESTDIR="$pkgdir"/ install
+  make DESTDIR="$pkgdir" install
 }

Deleted: stdint_usage.patch
===
--- stdint_usage.patch  2014-11-14 17:28:43 UTC (rev 122575)
+++ stdint_usage.patch  2014-11-14 18:34:02 UTC (rev 122576)
@@ -1,22 +0,0 @@
 a/lsdvd.c  2006-03-02 07:48:11.0 -0600
-+++ b/lsdvd.c  2007-09-27 19:15:28.0 -0500
-@@ -13,6 +13,7 @@
-  *  2003-04-19  Cleanups get_title_name, added dvdtime2msec, added helper 
macros,
-  *  output info structures in form of a Perl module, by 
Henk Vergonet.
-  */
-+#include 
- #include 
- #include 
- #include 
 a/configure2005-12-12 14:22:45.0 -0600
-+++ b/configure2007-09-27 19:15:13.0 -0500
-@@ -2887,8 +2887,8 @@
- cat confdefs.h >>conftest.$ac_ext
- cat >>conftest.$ac_ext <<_ACEOF
- /* end confdefs.h.  */
--#include 
-   #include 
-+#include 
- int
- main ()
- {


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

2014-11-14 Thread Jonathan Steel
Date: Friday, November 14, 2014 @ 19:34:24
  Author: jsteel
Revision: 122577

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

Added:
  lsdvd/repos/community-i686/PKGBUILD
(from rev 122576, lsdvd/trunk/PKGBUILD)
  lsdvd/repos/community-x86_64/PKGBUILD
(from rev 122576, lsdvd/trunk/PKGBUILD)
Deleted:
  lsdvd/repos/community-i686/PKGBUILD
  lsdvd/repos/community-i686/stdint_usage.patch
  lsdvd/repos/community-x86_64/PKGBUILD
  lsdvd/repos/community-x86_64/stdint_usage.patch

-+
 /PKGBUILD   |   58 ++
 community-i686/PKGBUILD |   33 ---
 community-i686/stdint_usage.patch   |   22 
 community-x86_64/PKGBUILD   |   33 ---
 community-x86_64/stdint_usage.patch |   22 
 5 files changed, 58 insertions(+), 110 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-11-14 18:34:02 UTC (rev 122576)
+++ community-i686/PKGBUILD 2014-11-14 18:34:24 UTC (rev 122577)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Jonathan Steel 
-# Contributor: Aaron Griffin 
-# Contributor: Mathieu Clabaut 
-
-pkgname=lsdvd
-pkgver=0.16
-pkgrel=7
-pkgdesc="Console application that displays the content of a DVD"
-arch=('i686' 'x86_64')
-url="http://sourceforge.net/projects/lsdvd/";
-license=('GPL2')
-depends=('libdvdread')
-source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz
-stdint_usage.patch)
-md5sums=('340e1abe5c5e5abf7ff8031e78f49ee7'
- '6cbcbfde873f894bd3c784f65141b2fc')
-
-build() {
-  cd "$srcdir"/$pkgname-$pkgver
-
-  patch -Np1 -i "$srcdir"/stdint_usage.patch
-
-  ./configure --prefix=/usr --mandir=/usr/share/man
-
-  make
-}
-
-package() {
-  cd "$srcdir"/$pkgname-$pkgver
-
-  make DESTDIR="$pkgdir"/ install
-}

Copied: lsdvd/repos/community-i686/PKGBUILD (from rev 122576, 
lsdvd/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-11-14 18:34:24 UTC (rev 122577)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Jonathan Steel 
+# Contributor: Aaron Griffin 
+# Contributor: Mathieu Clabaut 
+
+pkgname=lsdvd
+pkgver=0.17
+pkgrel=1
+pkgdesc="Console application that displays the content of a DVD"
+arch=('i686' 'x86_64')
+url="http://sourceforge.net/projects/lsdvd/";
+license=('GPL2')
+depends=('libdvdread')
+source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz)
+md5sums=('32e63ff932ee2867e023ad3e74e14dcb')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-i686/stdint_usage.patch
===
--- community-i686/stdint_usage.patch   2014-11-14 18:34:02 UTC (rev 122576)
+++ community-i686/stdint_usage.patch   2014-11-14 18:34:24 UTC (rev 122577)
@@ -1,22 +0,0 @@
 a/lsdvd.c  2006-03-02 07:48:11.0 -0600
-+++ b/lsdvd.c  2007-09-27 19:15:28.0 -0500
-@@ -13,6 +13,7 @@
-  *  2003-04-19  Cleanups get_title_name, added dvdtime2msec, added helper 
macros,
-  *  output info structures in form of a Perl module, by 
Henk Vergonet.
-  */
-+#include 
- #include 
- #include 
- #include 
 a/configure2005-12-12 14:22:45.0 -0600
-+++ b/configure2007-09-27 19:15:13.0 -0500
-@@ -2887,8 +2887,8 @@
- cat confdefs.h >>conftest.$ac_ext
- cat >>conftest.$ac_ext <<_ACEOF
- /* end confdefs.h.  */
--#include 
-   #include 
-+#include 
- int
- main ()
- {

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-11-14 18:34:02 UTC (rev 122576)
+++ community-x86_64/PKGBUILD   2014-11-14 18:34:24 UTC (rev 122577)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Jonathan Steel 
-# Contributor: Aaron Griffin 
-# Contributor: Mathieu Clabaut 
-
-pkgname=lsdvd
-pkgver=0.16
-pkgrel=7
-pkgdesc="Console application that displays the content of a DVD"
-arch=('i686' 'x86_64')
-url="http://sourceforge.net/projects/lsdvd/";
-license=('GPL2')
-depends=('libdvdread')
-source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz
-stdint_usage.patch)
-md5sums=('340e1abe5c5e5abf7ff8031e78f49ee7'
- '6cbcbfde873f894bd3c784f65141b2fc')
-
-build() {
-  cd "$srcdir"/$pkgname-$pkgver
-
-  patch -Np1 -i "$srcdir"/stdint_usage.patch
-
-  ./configure --prefix=/usr --mandir=/usr/share/man
-
-  make
-}
-
-package() {
-  cd "$srcdir"/$pkgname-$pkgver
-
-  make DESTDIR="$pkgdir"/ install
-}

Copied: lsdvd/repos/community-x86_64/PKGBUILD (from rev 122576, 
lsdvd/trunk/PKGBUILD)
===
--- community-x86_64/PKGBU

[arch-commits] Commit in fltk/trunk (PKGBUILD tigervnc.patch)

2014-11-14 Thread Eric Bélanger
Date: Friday, November 14, 2014 @ 19:31:11
  Author: eric
Revision: 226249

upgpkg: fltk 1.3.3-1

Upstream update, Add glu depends, Add build fix, Remove old patch

Modified:
  fltk/trunk/PKGBUILD
Deleted:
  fltk/trunk/tigervnc.patch

+
 PKGBUILD   |   18 
 tigervnc.patch | 3903 ---
 2 files changed, 8 insertions(+), 3913 deletions(-)

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


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

2014-11-14 Thread Felix Yan
Date: Friday, November 14, 2014 @ 18:28:43
  Author: fyan
Revision: 122575

archrelease: copy trunk to community-any

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

--+
 PKGBUILD |  102 ++---
 1 file changed, 51 insertions(+), 51 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-11-14 17:28:30 UTC (rev 122574)
+++ PKGBUILD2014-11-14 17:28:43 UTC (rev 122575)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Stéphane Gaudreault 
-
-pkgbase=python-pytools
-pkgname=('python2-pytools' 'python-pytools')
-pkgver=2014.3.1
-pkgrel=1
-pkgdesc="A collection of tools for Python"
-arch=('any')
-url="http://mathema.tician.de/software/pytools";
-license=('MIT')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-decorator' 
'python2-decorator')
-checkdepends=('python-pytest' 'python2-pytest')
-source=("http://pypi.python.org/packages/source/p/pytools/pytools-$pkgver.tar.gz";)
-sha512sums=('2bcd02c50ef389dae7cc98c0a16cd16b6a13ab71200304c8a97a816bf6385b616ff4fc15a7a2172450ea6c56895ec220929a2296318814e097c264c92833e58d')
-
-prepare() {
-   cp -a pytools-${pkgver}{,-python2}
-}
-
-build() {
-   cd "$srcdir/pytools-$pkgver"
-   python setup.py build
-
-   cd "$srcdir/pytools-$pkgver-python2"
-   python2 setup.py build
-}
-
-check() {
-   # Need pytools installed for running tests
-
-   cd "$srcdir/pytools-$pkgver"
-   #py.test
-
-   cd "$srcdir/pytools-$pkgver-python2"
-   #py.test2
-}
-
-package_python2-pytools() {
-   depends=('python2' 'python2-decorator')
-   cd "$srcdir/pytools-$pkgver-python2"
-   python2 setup.py install --prefix=/usr --root="$pkgdir" --skip-build 
--optimize=1
-}
-
-package_python-pytools(){
-   depends=('python' 'python-decorator')
-   cd "$srcdir/pytools-$pkgver"
-   python setup.py install --prefix=/usr --root="$pkgdir" --skip-build 
--optimize=1
-}
-

Copied: python-pytools/repos/community-any/PKGBUILD (from rev 122574, 
python-pytools/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-11-14 17:28:43 UTC (rev 122575)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Stéphane Gaudreault 
+
+pkgbase=python-pytools
+pkgname=('python2-pytools' 'python-pytools')
+pkgver=2014.3.2
+pkgrel=1
+pkgdesc="A collection of tools for Python"
+arch=('any')
+url="http://mathema.tician.de/software/pytools";
+license=('MIT')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-decorator' 
'python2-decorator')
+checkdepends=('python-pytest' 'python2-pytest')
+source=("http://pypi.python.org/packages/source/p/pytools/pytools-$pkgver.tar.gz";)
+sha512sums=('a775f4d08e5ddf672e38aa6769b1dfdbdf313f4991c8bfc4f134ee3eee5c57e520ae6474e1241f898f3f1a1a9e191e96574fea71c572207c11c9197091485f4a')
+
+prepare() {
+   cp -a pytools-${pkgver}{,-python2}
+}
+
+build() {
+   cd "$srcdir/pytools-$pkgver"
+   python setup.py build
+
+   cd "$srcdir/pytools-$pkgver-python2"
+   python2 setup.py build
+}
+
+check() {
+   # Need pytools installed for running tests
+
+   cd "$srcdir/pytools-$pkgver"
+   #py.test
+
+   cd "$srcdir/pytools-$pkgver-python2"
+   #py.test2
+}
+
+package_python2-pytools() {
+   depends=('python2' 'python2-decorator')
+   cd "$srcdir/pytools-$pkgver-python2"
+   python2 setup.py install --prefix=/usr --root="$pkgdir" --skip-build 
--optimize=1
+}
+
+package_python-pytools(){
+   depends=('python' 'python-decorator')
+   cd "$srcdir/pytools-$pkgver"
+   python setup.py install --prefix=/usr --root="$pkgdir" --skip-build 
--optimize=1
+}
+


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

2014-11-14 Thread Felix Yan
Date: Friday, November 14, 2014 @ 18:28:30
  Author: fyan
Revision: 122574

upgpkg: python-pytools 2014.3.2-1

Modified:
  python-pytools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-11-14 16:01:26 UTC (rev 122573)
+++ PKGBUILD2014-11-14 17:28:30 UTC (rev 122574)
@@ -4,7 +4,7 @@
 
 pkgbase=python-pytools
 pkgname=('python2-pytools' 'python-pytools')
-pkgver=2014.3.1
+pkgver=2014.3.2
 pkgrel=1
 pkgdesc="A collection of tools for Python"
 arch=('any')
@@ -13,7 +13,7 @@
 makedepends=('python-setuptools' 'python2-setuptools' 'python-decorator' 
'python2-decorator')
 checkdepends=('python-pytest' 'python2-pytest')
 
source=("http://pypi.python.org/packages/source/p/pytools/pytools-$pkgver.tar.gz";)
-sha512sums=('2bcd02c50ef389dae7cc98c0a16cd16b6a13ab71200304c8a97a816bf6385b616ff4fc15a7a2172450ea6c56895ec220929a2296318814e097c264c92833e58d')
+sha512sums=('a775f4d08e5ddf672e38aa6769b1dfdbdf313f4991c8bfc4f134ee3eee5c57e520ae6474e1241f898f3f1a1a9e191e96574fea71c572207c11c9197091485f4a')
 
 prepare() {
cp -a pytools-${pkgver}{,-python2}


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

2014-11-14 Thread Andreas Radke
Date: Friday, November 14, 2014 @ 17:55:49
  Author: andyrtr
Revision: 226248

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-11-14 16:55:17 UTC (rev 226247)
+++ extra-i686/PKGBUILD 2014-11-14 16:55:49 UTC (rev 226248)
@@ -1,151 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke 
-
-pkgbase=nx
-pkgname=('libxcomp' 'nxproxy' 'nx-x11' 'nx-xcompext' 'nxagent' 'x2go-agent' 
'nx-headers')
-pkgver=3.5.0.27
-pkgrel=1
-arch=('i686' 'x86_64')
-url="http://wiki.x2go.org/";
-license=('GPL')
-#options=('!makeflags') # '!strip')
-makedepends=('libjpeg-turbo' 'libpng' 'bash' 'perl' 'libxml2' 'fontconfig' # 
runtime dependencies from subpackages
- 'xproto' 'freetype2' 'libxaw' 'libxrender' 'libxp' 'libxpm' 
'libxdamage' 'libxrandr'
- 'libxcomposite' 'libxtst' 'xorg-sessreg' 'libfontenc' # 
makedepends
- )
-source=(http://code.x2go.org/releases/source/nx-libs/nx-libs-$pkgver-full.tar.gz)
-sha1sums=('1f78ef671706a8a7e1aa1bd660f83c42426b3043')
-
-build() {
-  cd "${srcdir}/nx-libs-$pkgver"
-  
-  # debug flags
-#  export CFLAGS="-march=x86-64 -O1 -g -pipe"
-#  export CXXFLAGS="-march=x86-64 -O1 -g -pipe"
-
-  # honour CFLAGS in X11 build - upstream fixed so far only the other libs
-  # From xorg-x11-6.9.0-r3.ebuild
-  pushd "${srcdir}/nx-libs-$pkgver/nx-X11"
-
-  HOSTCONF="config/cf/host.def"
-  echo "#define OptimizedCDebugFlags ${CFLAGS} GccAliasingArgs" >> ${HOSTCONF}
-  echo "#define OptimizedCplusplusDebugFlags ${CXXFLAGS} GccAliasingArgs" >> 
${HOSTCONF}
-  # Respect LDFLAGS
-  echo "#define ExtraLoadFlags ${LDFLAGS}" >> ${HOSTCONF}
-  echo "#define SharedLibraryLoadFlags -shared ${LDFLAGS}" >> ${HOSTCONF}
-  popd
-
-  # fix a broken Makefiles
-  sed -i "s:-o root -g root ::" nxcompshad/Makefile.in
-
-  make \
-PREFIX=/usr \
-CONFIGURE="./configure --prefix=/usr --libdir=/usr/lib 
--libexecdir=/usr/lib --includedir=/usr/include"
-
-  # fake install
-  mkdir $srcdir/fakeinstall
-  make PREFIX=/usr DESTDIR="$srcdir/fakeinstall" install
-}
-
-package_libxcomp() {
-  
-  pkgdesc="NX X compression library"
-  depends=('libjpeg-turbo' 'libpng' 'gcc-libs')
-   
-  install -dm755 ${pkgdir}/usr/lib/nx
-  cp -a ${srcdir}/fakeinstall/usr/lib/nx/libXcomp.so* ${pkgdir}/usr/lib/nx
-  # symlinks
-  cd ${pkgdir}/usr/lib/
-  ln -sv /usr/lib/nx/libXcomp.so{,.3,.3.5.0} .
-}
-
-package_nxproxy() {
-
-  pkgdesc="NX proxy"
-  depends=('libxcomp')
-  
-  install -dm755 ${pkgdir}/usr/{bin,share/man/man1,lib/nx/bin}
-  cp -a ${srcdir}/fakeinstall/usr/lib/nx/bin/nxproxy 
${pkgdir}/usr/lib/nx/bin/nxproxy
-  cp -a ${srcdir}/fakeinstall/usr/share/man/man1/nxproxy.1 
${pkgdir}/usr/share/man/man1
-  # the wrapper
-  cp -a ${srcdir}/fakeinstall/usr/bin/nxproxy ${pkgdir}/usr/bin
-}
-
-package_nx-xcompext() {
-  
-  pkgdesc="Xcompext/Xcompshad library for NX"
-  depends=('libxcomp' 'nx-x11')
-   
-  install -dm755 ${pkgdir}/usr/lib/nx
-  cp -a ${srcdir}/fakeinstall/usr/lib/nx/libXcompext.so* ${pkgdir}/usr/lib/nx
-  #cp -a ${srcdir}/fakeinstall/usr/lib/nx/libXcompshad.so* ${pkgdir}/usr/lib/nx
-
-  # symlinks
-  cd ${pkgdir}/usr/lib/
-  ln -sv /usr/lib/nx/libXcompext.so{,.3,.3.5.0} .
-  #ln -sv /usr/lib/nx/libXcompshad.so{,.3,.3.5.0} .
-}
-
-package_nx-x11() {
- 
-  pkgdesc="NX-X11 lib for the NX framework"
-  depends=('libxcomp' 'fontconfig')
-  optdepends=('libxext: for Xinerama support')
-   
-  install -dm755 ${pkgdir}/{usr/bin,usr/lib/nx/{X11,bin}}
-  cp -aR ${srcdir}/fakeinstall/usr/lib/nx/X11/* ${pkgdir}/usr/lib/nx/X11
-  # nxauth
-  cp -a ${srcdir}/fakeinstall/usr/lib/nx/bin/nxauth ${pkgdir}/usr/lib/nx/bin
-  # the wrapper
-  cp -a ${srcdir}/fakeinstall/usr/bin/nxauth ${pkgdir}/usr/bin
-  # add symlinks required for proper Xinerama support # FS#41037
-  cd ${pkgdir}/usr/lib/nx/X11/Xinerama
-  ln -sv /usr/lib/libX11.so.6 libNX_X11.so.6
-  ln -sv /usr/lib/libXext.so.6 libNX_Xext.so.6
-}
-
-package_nxagent() {
-  
-  pkgdesc="NX X server based on Xnest"
-  depends=('nx-xcompext' 'libxml2')
-   
-  install -dm755 ${pkgdir}/usr/{bin,lib/nx/bin,share/nx}
-  cp -a ${srcdir}/fakeinstall/usr/lib/nx/bin/nxagent ${pkgdir}/usr/lib/nx/bin
-  # the wrapper
-  cp -a ${srcdir}/fakeinstall/usr/bin/nxagent ${pkgdir}/usr/bin
-  
-  # additional files for documentation
-  cp -a ${srcdir}/fakeinstall/usr/share/nx/SecurityPolicy 
${pkgdir}/usr/share/nx
-  
-  cp -a ${srcdir}/fakeinstall/usr

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

2014-11-14 Thread Andreas Radke
Date: Friday, November 14, 2014 @ 17:55:17
  Author: andyrtr
Revision: 226247

upgpkg: nx 3.5.0.28-1

upstream update 3.5.0.28

Modified:
  nx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-11-14 16:08:09 UTC (rev 226246)
+++ PKGBUILD2014-11-14 16:55:17 UTC (rev 226247)
@@ -3,7 +3,7 @@
 
 pkgbase=nx
 pkgname=('libxcomp' 'nxproxy' 'nx-x11' 'nx-xcompext' 'nxagent' 'x2go-agent' 
'nx-headers')
-pkgver=3.5.0.27
+pkgver=3.5.0.28
 pkgrel=1
 arch=('i686' 'x86_64')
 url="http://wiki.x2go.org/";
@@ -14,7 +14,7 @@
  'libxcomposite' 'libxtst' 'xorg-sessreg' 'libfontenc' # 
makedepends
  )
 
source=(http://code.x2go.org/releases/source/nx-libs/nx-libs-$pkgver-full.tar.gz)
-sha1sums=('1f78ef671706a8a7e1aa1bd660f83c42426b3043')
+sha1sums=('b5a97ae10770ca0f496e4398eab984c0bcff3500')
 
 build() {
   cd "${srcdir}/nx-libs-$pkgver"


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

2014-11-14 Thread Eric Bélanger
Date: Friday, November 14, 2014 @ 17:08:09
  Author: eric
Revision: 226246

archrelease: copy trunk to extra-any

Added:
  mutagen/repos/extra-any/PKGBUILD
(from rev 226245, mutagen/trunk/PKGBUILD)
Deleted:
  mutagen/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-11-14 16:06:42 UTC (rev 226245)
+++ PKGBUILD2014-11-14 16:08:09 UTC (rev 226246)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgbase=mutagen
-pkgname=('mutagen' 'python-mutagen')
-pkgver=1.25.1
-pkgrel=1
-arch=('any')
-url="https://bitbucket.org/lazka/mutagen";
-license=('GPL2')
-makedepends=('python' 'python2')
-source=(https://bitbucket.org/lazka/mutagen/downloads/${pkgbase}-${pkgver}.tar.gz{,.sig})
-sha1sums=('ac5c193f783ed69d0d3173110e602ea3c29e8169'
-  'SKIP')
-
-prepare() {
-  cp -r ${pkgbase}-${pkgver} python-${pkgbase}-${pkgver}
-}
-
-check() {
-  cd ${pkgbase}-${pkgver}
-  LANG=en_US.UTF8 python2 setup.py test
-  cd ../python-${pkgbase}-${pkgver}
-  LANG=en_US.UTF8 python setup.py test
-}
-
-package_mutagen() {
-  pkgdesc="An audio metadata tag reader and writer"
-  depends=('python2')
- 
-  cd ${pkgbase}-${pkgver}
-  python2 setup.py install --root="${pkgdir}"
-}
-
-package_python-mutagen() {
-  pkgdesc="An audio metadata tag reader and writer library for Python 3"
-  depends=('python')
-
-  cd python-${pkgbase}-${pkgver}
-  python setup.py install --root="${pkgdir}"
-  rm -r "${pkgdir}"/usr/{bin,share}
-}

Copied: mutagen/repos/extra-any/PKGBUILD (from rev 226245, 
mutagen/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-11-14 16:08:09 UTC (rev 226246)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgbase=mutagen
+pkgname=('mutagen' 'python-mutagen')
+pkgver=1.26
+pkgrel=1
+arch=('any')
+url="https://bitbucket.org/lazka/mutagen";
+license=('GPL2')
+makedepends=('python' 'python2')
+DLAGENTS=('https::/usr/bin/curl -fLC - --retry 3 --retry-delay 3 --insecure -o 
%o %u')
+source=(https://bitbucket.org/lazka/mutagen/downloads/${pkgbase}-${pkgver}.tar.gz{,.sig})
+sha1sums=('776c31d4ddeff7797e4ea279a31d797fc474ae8b'
+  'SKIP')
+
+prepare() {
+  cp -r ${pkgbase}-${pkgver} python-${pkgbase}-${pkgver}
+}
+
+check() {
+  cd ${pkgbase}-${pkgver}
+  LANG=en_US.UTF8 python2 setup.py test
+  cd ../python-${pkgbase}-${pkgver}
+  LANG=en_US.UTF8 python setup.py test
+}
+
+package_mutagen() {
+  pkgdesc="An audio metadata tag reader and writer"
+  depends=('python2')
+ 
+  cd ${pkgbase}-${pkgver}
+  python2 setup.py install --root="${pkgdir}"
+}
+
+package_python-mutagen() {
+  pkgdesc="An audio metadata tag reader and writer library for Python 3"
+  depends=('python')
+
+  cd python-${pkgbase}-${pkgver}
+  python setup.py install --root="${pkgdir}"
+  rm -r "${pkgdir}"/usr/{bin,share}
+}


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

2014-11-14 Thread Eric Bélanger
Date: Friday, November 14, 2014 @ 17:06:42
  Author: eric
Revision: 226245

upgpkg: mutagen 1.26-1

Upstream update

Modified:
  mutagen/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-11-14 16:03:57 UTC (rev 226244)
+++ PKGBUILD2014-11-14 16:06:42 UTC (rev 226245)
@@ -3,14 +3,15 @@
 
 pkgbase=mutagen
 pkgname=('mutagen' 'python-mutagen')
-pkgver=1.25.1
+pkgver=1.26
 pkgrel=1
 arch=('any')
 url="https://bitbucket.org/lazka/mutagen";
 license=('GPL2')
 makedepends=('python' 'python2')
+DLAGENTS=('https::/usr/bin/curl -fLC - --retry 3 --retry-delay 3 --insecure -o 
%o %u')
 
source=(https://bitbucket.org/lazka/mutagen/downloads/${pkgbase}-${pkgver}.tar.gz{,.sig})
-sha1sums=('ac5c193f783ed69d0d3173110e602ea3c29e8169'
+sha1sums=('776c31d4ddeff7797e4ea279a31d797fc474ae8b'
   'SKIP')
 
 prepare() {


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

2014-11-14 Thread Anatol Pomozov
Date: Friday, November 14, 2014 @ 17:03:57
  Author: anatolik
Revision: 226244

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

Added:
  dhcpcd/repos/testing-i686/
  dhcpcd/repos/testing-i686/PKGBUILD
(from rev 226243, dhcpcd/trunk/PKGBUILD)
  dhcpcd/repos/testing-i686/dhcpcd.service
(from rev 226243, dhcpcd/trunk/dhcpcd.service)
  dhcpcd/repos/testing-i686/dhcpcd_.service
(from rev 226243, dhcpcd/trunk/dhcpcd_.service)
  dhcpcd/repos/testing-x86_64/
  dhcpcd/repos/testing-x86_64/PKGBUILD
(from rev 226243, dhcpcd/trunk/PKGBUILD)
  dhcpcd/repos/testing-x86_64/dhcpcd.service
(from rev 226243, dhcpcd/trunk/dhcpcd.service)
  dhcpcd/repos/testing-x86_64/dhcpcd_.service
(from rev 226243, dhcpcd/trunk/dhcpcd_.service)

+
 testing-i686/PKGBUILD  |   60 +++
 testing-i686/dhcpcd.service|   13 
 testing-i686/dhcpcd_.service   |   15 +
 testing-x86_64/PKGBUILD|   60 +++
 testing-x86_64/dhcpcd.service  |   13 
 testing-x86_64/dhcpcd_.service |   15 +
 6 files changed, 176 insertions(+)

Copied: dhcpcd/repos/testing-i686/PKGBUILD (from rev 226243, 
dhcpcd/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-11-14 16:03:57 UTC (rev 226244)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Ronald van Haren 
+# Contributor: Tom Killian 
+# Contributor: Judd Vinet 
+
+pkgname=dhcpcd
+pkgver=6.6.2
+pkgrel=1
+pkgdesc="RFC2131 compliant DHCP client daemon"
+url="http://roy.marples.name/projects/dhcpcd/";
+arch=('i686' 'x86_64')
+license=('BSD')
+groups=('base')
+depends=('glibc' 'sh')
+provides=('dhcp-client')
+backup=('etc/dhcpcd.conf')
+options=('emptydirs')  # We Need the Empty /var/lib/dhcpcd Directory
+source=("http://roy.marples.name/downloads/$pkgname/$pkgname-$pkgver.tar.bz2";
+'dhcpcd_.service'
+   'dhcpcd.service')
+sha1sums=('9a84326a9a056ba2464685f878e82d7f8879b100'
+  '6f1633edde14d29b5cdc09c4f029a450ef2ebc96'
+  '52c1bad9ab43e9a253c1eb175e7eefb13497b8f9')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  # configure variables
+  ./configure \
+  --sbindir=/usr/bin \
+  --libexecdir=/usr/lib/dhcpcd \
+  --dbdir=/var/lib/dhcpcd \
+  --rundir=/run
+
+  # Build
+  make
+}
+
+check() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  make test
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+
+  # Install License
+  install -d "$pkgdir/usr/share/licenses/$pkgname"
+  sed 26q "$srcdir/$pkgname-$pkgver/control.h" \
+  >>"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  # Set Options in /etc/dhcpcd.conf
+  echo noipv4ll >> "${pkgdir}/etc/dhcpcd.conf" # Disable ip4vall
+
+  # install systemd files
+  install -Dm644 "${srcdir}/dhcpcd_.service" 
"${pkgdir}/usr/lib/systemd/system/dhcpcd@.service"
+  install -Dm644 "${srcdir}/dhcpcd.service" 
"${pkgdir}/usr/lib/systemd/system/dhcpcd.service" # FS#31543
+}

Copied: dhcpcd/repos/testing-i686/dhcpcd.service (from rev 226243, 
dhcpcd/trunk/dhcpcd.service)
===
--- testing-i686/dhcpcd.service (rev 0)
+++ testing-i686/dhcpcd.service 2014-11-14 16:03:57 UTC (rev 226244)
@@ -0,0 +1,13 @@
+[Unit]
+Description=dhcpcd on all interfaces
+Wants=network.target
+Before=network.target
+
+[Service]
+Type=forking
+PIDFile=/run/dhcpcd.pid
+ExecStart=/usr/bin/dhcpcd -q -b
+ExecStop=/usr/bin/dhcpcd -x
+
+[Install]
+WantedBy=multi-user.target

Copied: dhcpcd/repos/testing-i686/dhcpcd_.service (from rev 226243, 
dhcpcd/trunk/dhcpcd_.service)
===
--- testing-i686/dhcpcd_.service(rev 0)
+++ testing-i686/dhcpcd_.service2014-11-14 16:03:57 UTC (rev 226244)
@@ -0,0 +1,15 @@
+[Unit]
+Description=dhcpcd on %I
+Wants=network.target
+Before=network.target
+BindsTo=sys-subsystem-net-devices-%i.device
+After=sys-subsystem-net-devices-%i.device
+
+[Service]
+Type=forking
+PIDFile=/run/dhcpcd-%I.pid
+ExecStart=/usr/bin/dhcpcd -q -w %I
+ExecStop=/usr/bin/dhcpcd -x %I
+
+[Install]
+WantedBy=multi-user.target

Copied: dhcpcd/repos/testing-x86_64/PKGBUILD (from rev 226243, 
dhcpcd/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-11-14 16:03:57 UTC (rev 226244)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Ronald van Haren 
+# Contributor: Tom Killian 
+# Contributor: Judd Vinet 
+
+pkgname=dhcpcd
+pkgver=6.6.2
+pkgrel=1
+pkgdesc="RFC2131 compliant DHCP client daemon"
+url="http://roy.marples.name/projects/dhcpcd/";
+arch=('i686' 'x86_64')
+license=('BSD')
+groups=('base')
+depends=('glibc'

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

2014-11-14 Thread Anatol Pomozov
Date: Friday, November 14, 2014 @ 17:03:13
  Author: anatolik
Revision: 226243

upgpkg: dhcpcd 6.6.2-1

Modified:
  dhcpcd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-11-14 13:41:34 UTC (rev 226242)
+++ PKGBUILD2014-11-14 16:03:13 UTC (rev 226243)
@@ -4,7 +4,7 @@
 # Contributor: Judd Vinet 
 
 pkgname=dhcpcd
-pkgver=6.6.1
+pkgver=6.6.2
 pkgrel=1
 pkgdesc="RFC2131 compliant DHCP client daemon"
 url="http://roy.marples.name/projects/dhcpcd/";
@@ -18,7 +18,7 @@
 source=("http://roy.marples.name/downloads/$pkgname/$pkgname-$pkgver.tar.bz2";
 'dhcpcd_.service'
'dhcpcd.service')
-sha1sums=('6135415bd3f4ec6486066539e39e6c90cd8dc8b6'
+sha1sums=('9a84326a9a056ba2464685f878e82d7f8879b100'
   '6f1633edde14d29b5cdc09c4f029a450ef2ebc96'
   '52c1bad9ab43e9a253c1eb175e7eefb13497b8f9')
 


[arch-commits] Commit in lib32-libusb/repos (community-x86_64)

2014-11-14 Thread Eric Bélanger
Date: Friday, November 14, 2014 @ 17:01:26
  Author: eric
Revision: 122573

Clean up svn

Deleted:
  lib32-libusb/repos/community-x86_64/


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

2014-11-14 Thread Jelle van der Waa
Date: Friday, November 14, 2014 @ 16:28:57
  Author: jelle
Revision: 122571

upgpkg: calibre 2.10.0-1

Modified:
  calibre/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-11-14 13:44:06 UTC (rev 122570)
+++ PKGBUILD2014-11-14 15:28:57 UTC (rev 122571)
@@ -7,7 +7,7 @@
 # Contributor: Larry Hajali 
 
 pkgname=calibre
-pkgver=2.9.0
+pkgver=2.10.0
 pkgrel=1
 pkgdesc="Ebook management application"
 arch=('i686' 'x86_64') 
@@ -26,7 +26,7 @@
 )
 install=calibre.install
 source=("http://download.calibre-ebook.com/${pkgver}/calibre-${pkgver}.tar.xz";)
-md5sums=('06675c778a3f28f06ce982e86cb7aa80')
+md5sums=('fbd743048d83ac41b22b6b75ea230c01')
 
 prepare(){
   cd "${srcdir}/${pkgname}-${pkgver}"


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

2014-11-14 Thread Jelle van der Waa
Date: Friday, November 14, 2014 @ 16:29:15
  Author: jelle
Revision: 122572

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

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

--+
 /PKGBUILD|  182 +
 /calibre.install |   24 
 community-i686/PKGBUILD  |   91 --
 community-i686/calibre.install   |   12 --
 community-x86_64/PKGBUILD|   91 --
 community-x86_64/calibre.install |   12 --
 6 files changed, 206 insertions(+), 206 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-11-14 15:28:57 UTC (rev 122571)
+++ community-i686/PKGBUILD 2014-11-14 15:29:15 UTC (rev 122572)
@@ -1,91 +0,0 @@
-# $Id$
-# Maintainer: Jelle van der Waa 
-# Maintainer: Daniel Wallace 
-# Contributor: Giovanni Scafora 
-# Contributor: Petrov Roman 
-# Contributor: Andrea Fagiani 
-# Contributor: Larry Hajali 
-
-pkgname=calibre
-pkgver=2.9.0
-pkgrel=1
-pkgdesc="Ebook management application"
-arch=('i686' 'x86_64') 
-url="http://calibre-ebook.com/";
-license=('GPL3')
-depends=('python2-six' 'python2-dateutil' 'python2-cssutils' 
'python2-cherrypy' 
- 'python2-mechanize' 'podofo' 'libwmf'
- 'imagemagick' 'chmlib' 'python2-lxml' 'libusbx' 
- 'python2-pillow' 'shared-mime-info' 'python2-dnspython' 
- 'python2-pyqt5' 'python2-psutil' 'icu' 'libmtp' 'python2-dbus'
- 'python2-netifaces' 'python2-cssselect' 'python2-apsw' 'qt5-webkit'
- 'qt5-svg' 'python2-chardet' 'python2-html5lib')
-makedepends=('python2-pycountry' 'qt5-x11extras' )
-optdepends=('ipython2: to use calibre-debug'
-'udisks: required for mounting certain devices'
-)
-install=calibre.install
-source=("http://download.calibre-ebook.com/${pkgver}/calibre-${pkgver}.tar.xz";)
-md5sums=('06675c778a3f28f06ce982e86cb7aa80')
-
-prepare(){
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  # Remove unneeded files and libs
-  rm -rf resources/${pkgname}-portable.* \
- src/six.py \
- src/cherrypy \
- src/html5lib \
- src/chardet
-
-  sed -i "s/shlex.split(ldflags)/& + ['-fPIC']/" setup/extensions.py
-  #sed -i -e "s/ldflags = shlex.split(ldflags)/ldflags = shlex.split(ldflags) 
+ ['-fPIC']/" setup/extensions.py
-
-  # Use python2
-  sed -i 's:\(env[ ]\+python$\|/usr/bin/python$\):\12:g' $(find . -regex 
".*\.py\|.*\.recipe")
-  sed -i "/pyqt_sip_dir/ s:=.*:= '/usr/share/sip/Py2-PyQt5':" 
setup/build_environment.py
-
-  # Desktop integration (e.g. enforce arch defaults)
-  sed -e "/self.create_uninstaller()/,/os.rmdir(config_dir)/d" \
-  -e "/\(cc('xdg-icon-resource\|self.icon_resources.append\|'128'))\)/d" \
-  -e "/render_img/ s/\('calibre-.*\.png'\)/os.path.join(dir, \1)/g" \
-  -e "/dir, 'calibre-lrf.png'/i \
-\dir = os.path.join(self.opts.staging_sharedir,'../pixmaps')\n\
-\os.mkdir(dir)" \
-  -e "/f = open/ s/\('calibre-.*\.desktop'\)/os.path.join(dir, \1)/g" \
-  -e "/dir, 'calibre-lrfviewer.desktop'/i \
-\dir = 
os.path.join(self.opts.staging_sharedir,'../applications')\n\
-\os.mkdir(dir)" \
-  -e "s/'ctc-posml'/'text' not in mt and 'pdf' not in mt and 'xhtml'/" \
-  -e "s/^Name=calibre/Name=Calibre/g" \
-  -i  src/calibre/linux.py
-}
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  LANG='en_US.UTF-8' python2 setup.py build
-  # LANG='en_US.UTF-8' python2 setup.py resources
-
-  # Don't build translations since building them is broken badly
-  #LANG='en_US.UTF-8' python2 setup.py translations
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  
-  # Fix the environment module location
-  sed -i -e "s|(prefix=.*)|(prefix='$pkgdir/usr')|g" setup/install.py
-
-  install -d "${pkgdir}/usr/lib/python2.7/site-packages" \
- "${pkgdir}/usr/share/zsh/site-functions"
-
-  LANG='en_US.UTF-8' python2 setup.py install --root="${pkgdir}" --prefix=/usr 
\
---staging-bindir="${pkgdir}/usr/bin" \
---staging-libdir="${pkgdir}/usr/lib" \
---staging-sharedir="${pkgdir}/usr/share"
-
-  # Compiling bytecode FS#33392
-  python2 -m compileall "${pkgdir}/usr/lib/calibre/"
-  python2 -O -m compileall "${pkgdir}/usr/lib/calibre/"
-}

Copied: calibre/repos/community-i686/PKGBUILD (from rev 122571, 
calibre/tr

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

2014-11-14 Thread Alexander Rødseth
Date: Friday, November 14, 2014 @ 14:44:06
  Author: arodseth
Revision: 122570

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

Added:
  wings3d/repos/community-i686/PKGBUILD
(from rev 122569, wings3d/trunk/PKGBUILD)
  wings3d/repos/community-i686/wings3d.install
(from rev 122569, wings3d/trunk/wings3d.install)
  wings3d/repos/community-i686/wings3d.sh
(from rev 122569, wings3d/trunk/wings3d.sh)
  wings3d/repos/community-x86_64/PKGBUILD
(from rev 122569, wings3d/trunk/PKGBUILD)
  wings3d/repos/community-x86_64/wings3d.install
(from rev 122569, wings3d/trunk/wings3d.install)
  wings3d/repos/community-x86_64/wings3d.sh
(from rev 122569, wings3d/trunk/wings3d.sh)
Deleted:
  wings3d/repos/community-i686/PKGBUILD
  wings3d/repos/community-i686/wings3d.install
  wings3d/repos/community-i686/wings3d.sh
  wings3d/repos/community-x86_64/PKGBUILD
  wings3d/repos/community-x86_64/wings3d.install
  wings3d/repos/community-x86_64/wings3d.sh

--+
 /PKGBUILD|   90 +
 /wings3d.install |   26 ++
 /wings3d.sh  |4 +
 community-i686/PKGBUILD  |   45 --
 community-i686/wings3d.install   |   13 -
 community-i686/wings3d.sh|2 
 community-x86_64/PKGBUILD|   45 --
 community-x86_64/wings3d.install |   13 -
 community-x86_64/wings3d.sh  |2 
 9 files changed, 120 insertions(+), 120 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-11-14 13:43:53 UTC (rev 122569)
+++ community-i686/PKGBUILD 2014-11-14 13:44:06 UTC (rev 122570)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: kappa 
-
-pkgname=wings3d
-_pkgname=wings
-pkgver=1.5.3
-pkgrel=2
-pkgdesc='3D modeling program'
-arch=('x86_64' 'i686')
-url='http://www.wings3d.com/'
-license=('GPL')
-depends=('erlang-sdl' 'erlang-cl' 'bash' 'desktop-file-utils' 'erlang')
-makedepends=('gendesk' 'imagemagick')
-optdepends=('povray: rendering support via POV-Ray')
-install="$pkgname.install"
-source=("http://downloads.sourceforge.net/project/wings/wings/$pkgver/wings-$pkgver.tar.bz2";
-"$pkgname.sh")
-sha256sums=('c08060016f83679ce08947942d31af0e3b5d105525d0df5e993ec6f1a81fdd8e'
-'46513cd05f8b6e778120af4a87b239c5250799c17b591592893d98cbf082359e')
-
-prepare() {
-  gendesk -f --pkgname "$pkgname" --pkgdesc "$pkgdesc" --name 'Wings3D' \
---genericname '3D Modeler' --categories 'Graphics;3DGraphics'
-  convert "$_pkgname-$pkgver/win32/wings.ico" "$pkgname.png"
-}
-
-build() {
-  export ESDL_PATH=$(echo /usr/lib/erlang/lib/esdl-*)
-  make -C "$_pkgname-$pkgver" all lang
-}
-
-package() {
-  install -Dm644 "$pkgname.png" "$pkgdir/usr/share/pixmaps/$pkgname.png"
-  install -Dm644 "$pkgname.desktop" \
-"$pkgdir/usr/share/applications/$pkgname.desktop"
-  install -Dm755 "$pkgname.sh" "$pkgdir/usr/bin/$pkgname"
-  cd "$_pkgname-$pkgver"
-  install -d "$pkgdir/usr/lib/$pkgname"
-  for subdir in ebin fonts patches plugins shaders textures; do
-cp -r "$srcdir/$_pkgname-$pkgver/$subdir/" "$pkgdir/usr/lib/$pkgname"
-  done
-}
-
-# vim:set ts=2 sw=2 et:

Copied: wings3d/repos/community-i686/PKGBUILD (from rev 122569, 
wings3d/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-11-14 13:44:06 UTC (rev 122570)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: kappa 
+
+pkgname=wings3d
+_pkgname=wings
+pkgver=1.5.3
+pkgrel=2
+pkgdesc='3D modeling program'
+arch=('x86_64' 'i686')
+url='http://www.wings3d.com/'
+license=('GPL')
+depends=('erlang-sdl' 'erlang-cl' 'bash' 'desktop-file-utils' 'erlang')
+makedepends=('gendesk' 'imagemagick')
+optdepends=('povray: rendering support via POV-Ray')
+install="$pkgname.install"
+source=("http://downloads.sourceforge.net/project/wings/wings/$pkgver/wings-$pkgver.tar.bz2";
+"$pkgname.sh")
+sha256sums=('c08060016f83679ce08947942d31af0e3b5d105525d0df5e993ec6f1a81fdd8e'
+'46513cd05f8b6e778120af4a87b239c5250799c17b591592893d98cbf082359e')
+
+prepare() {
+  gendesk -f -n --pkgname "$pkgname" --pkgdesc "$pkgdesc" --name 'Wings3D' \
+--genericname '3D Modeler' --categories 'Graphics;3DGraphics'
+  convert "$_pkgname-$pkgver/win32/wings.ico" "$pkgname.png"
+}
+
+build() {
+  export ESDL_PATH=$(echo /usr/lib/erlang/lib/esdl-*)
+  make -C "$_pkgname-$pkgver" all lang
+}
+
+package() {
+  install -Dm644 "$pkgname-3.png" "$pkgdir/usr/share/pixmaps/$pkgname.png"
+  install -Dm644 "$pkgname.desktop" \
+"$pkgdir/usr/share/applications/$pkgname.desktop"
+  install -Dm755 "$pkgname.sh" "$pkgdir/usr/bin/$pkgname"
+  cd "$_pkgname-$pkgver"
+  install -d "$pkgdir/usr/lib/$pkgname"
+  for subdir in eb

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

2014-11-14 Thread Alexander Rødseth
Date: Friday, November 14, 2014 @ 14:43:53
  Author: arodseth
Revision: 122569

upgpkg: wings3d 1.5.3-2

Modified:
  wings3d/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-11-14 10:39:30 UTC (rev 122568)
+++ PKGBUILD2014-11-14 13:43:53 UTC (rev 122569)
@@ -20,7 +20,7 @@
 '46513cd05f8b6e778120af4a87b239c5250799c17b591592893d98cbf082359e')
 
 prepare() {
-  gendesk -f --pkgname "$pkgname" --pkgdesc "$pkgdesc" --name 'Wings3D' \
+  gendesk -f -n --pkgname "$pkgname" --pkgdesc "$pkgdesc" --name 'Wings3D' \
 --genericname '3D Modeler' --categories 'Graphics;3DGraphics'
   convert "$_pkgname-$pkgver/win32/wings.ico" "$pkgname.png"
 }
@@ -31,7 +31,7 @@
 }
 
 package() {
-  install -Dm644 "$pkgname.png" "$pkgdir/usr/share/pixmaps/$pkgname.png"
+  install -Dm644 "$pkgname-3.png" "$pkgdir/usr/share/pixmaps/$pkgname.png"
   install -Dm644 "$pkgname.desktop" \
 "$pkgdir/usr/share/applications/$pkgname.desktop"
   install -Dm755 "$pkgname.sh" "$pkgdir/usr/bin/$pkgname"


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

2014-11-14 Thread Ronald van Haren
Date: Friday, November 14, 2014 @ 14:41:34
  Author: ronald
Revision: 226242

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

Added:
  digikam/repos/extra-i686/PKGBUILD
(from rev 226241, digikam/trunk/PKGBUILD)
  digikam/repos/extra-i686/digikam.install
(from rev 226241, digikam/trunk/digikam.install)
  digikam/repos/extra-i686/kipi-plugins.install
(from rev 226241, digikam/trunk/kipi-plugins.install)
  digikam/repos/extra-x86_64/PKGBUILD
(from rev 226241, digikam/trunk/PKGBUILD)
  digikam/repos/extra-x86_64/digikam.install
(from rev 226241, digikam/trunk/digikam.install)
  digikam/repos/extra-x86_64/kipi-plugins.install
(from rev 226241, digikam/trunk/kipi-plugins.install)
Deleted:
  digikam/repos/extra-i686/PKGBUILD
  digikam/repos/extra-i686/digikam.install
  digikam/repos/extra-i686/digikam_libkexiv2.patch
  digikam/repos/extra-i686/kipi-plugins.install
  digikam/repos/extra-x86_64/PKGBUILD
  digikam/repos/extra-x86_64/digikam.install
  digikam/repos/extra-x86_64/digikam_libkexiv2.patch
  digikam/repos/extra-x86_64/kipi-plugins.install

--+
 /PKGBUILD|  238 +
 /digikam.install |   24 +++
 /kipi-plugins.install|   24 +++
 extra-i686/PKGBUILD  |  122 
 extra-i686/digikam.install   |   12 -
 extra-i686/digikam_libkexiv2.patch   |   53 ---
 extra-i686/kipi-plugins.install  |   12 -
 extra-x86_64/PKGBUILD|  122 
 extra-x86_64/digikam.install |   12 -
 extra-x86_64/digikam_libkexiv2.patch |   53 ---
 extra-x86_64/kipi-plugins.install|   12 -
 11 files changed, 286 insertions(+), 398 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-11-14 13:41:17 UTC (rev 226241)
+++ extra-i686/PKGBUILD 2014-11-14 13:41:34 UTC (rev 226242)
@@ -1,122 +0,0 @@
-# $Id$
-# Maintainer: Ronald van Haren 
-# Contributor: Andrea Scarpino 
-# Contributor: Tobias Powalowski 
-
-pkgbase=digikam
-pkgname=('digikam' 'kipi-plugins' 'libkface' 'libkgeomap' 'libkvkontakte' 
'libmediawiki')
-pkgver=4.4.0
-pkgrel=1
-pkgdesc="Digital photo management application for KDE"
-arch=('i686' 'x86_64')
-license=('GPL')
-url="http://www.digikam.org/";
-makedepends=('kdepimlibs' 'libkexiv2' 'libkdcraw' 'libkipi' 'libksane' 'liblqr'
- 'kdeedu-marble' 'opencv' 'boost' 'libgpod' 'qjson' 'hugin' 
'libgphoto2'
- 'cmake' 'automoc4' 'doxygen' 'lensfun' 'qt-gstreamer' 
'imagemagick' 'eigen')
-source=("http://download.kde.org/stable/${pkgname}/${pkgname}-${pkgver}.tar.bz2";
 "digikam_libkexiv2.patch")
-sha1sums=('1feb43120addda314e09761440ec2058e430171c'
-  '39a09a8e7de1612eb47f3ef0966c6fa02b7e3284')
-
-prepare() {
-  mkdir build
-  cd ${pkgname}-${pkgver}/core
-  patch -Np1 -i "${srcdir}/digikam_libkexiv2.patch"
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_SKIP_RPATH=ON \
--DBUILD_tests=OFF \
--DDIGIKAMSC_USE_PRIVATE_KDEGRAPHICS=OFF
-  make
-}
-
-package_digikam() {
-  pkgdesc="Digital photo management application for KDE"
-  depends=('kdebase-runtime' 'kdepimlibs' 'libgphoto2' 'opencv' 'liblqr'
-   'libkipi' 'libkexiv2' 'libkdcraw' 'libkface' 'libkgeomap' 'lensfun')
-  optdepends=('kipi-plugins: more tools and plugins' 'kdebase-workspace: Theme 
configuration dialog')
-  install=digikam.install
-
-  cd build/core
-  make DESTDIR="${pkgdir}" install
-  cd ../../build/doc
-  make DESTDIR="${pkgdir}" install
-  cd ../../build/po
-  make DESTDIR="${pkgdir}" install
-
-  # Put these in the relevant splitted packages
-  rm "${pkgdir}"/usr/share/locale/kde4/*/LC_MESSAGES/kipiplugin*.mo
-  rm "${pkgdir}"/usr/share/locale/kde4/*/LC_MESSAGES/libkgeomap*.mo
-  # Fix conflicts with kde-l10n-* (FS#33762)
-  rm "${pkgdir}"/usr/share/locale/kde4/*/LC_MESSAGES/libkipi.mo
-}
-
-package_libkface() {
-  pkgdesc="A Qt/C++ wrapper around LibFace library to perform face recognition 
and detection over pictures"
-  depends=('kdelibs' 'opencv')
-
-  cd build/extra/libkface
-  make DESTDIR="${pkgdir}" install
-}
-
-package_libkgeomap() {
-  pkgdesc="A wrapper around world map components for browsing and arranging 
photos on a map"
-  depends=('kdelibs' 'kdeedu-marble')
-
-  cd build/extra/libkgeomap
-  make DESTDIR="${pkgdir}" install
-
-  cd ../../../build/po
-  make DESTDIR="${pkgdir}" install
-  # Put these in the relevant splitted packages
-  rm "${pkgdir}"/usr/share/locale/kde4/*/LC_MESSAGES/kipiplugin*.mo
-  rm "${pkgdir}"/usr/share/locale/kde4/*/LC_MESSAGES/digikam.mo
-  # Fix conflicts with kde-l10n-* (FS#33762)
-  rm "${pkgdir}"/usr/share/locale/kde4/*/LC_MESSAGES/libkipi.mo
-}
-
-package_libkvkontakte() {
-  pkgdesc="KDE C++ library for asynchronous interaction with 
vkontakte.rusocial 

[arch-commits] Commit in digikam/trunk (PKGBUILD digikam_libkexiv2.patch)

2014-11-14 Thread Ronald van Haren
Date: Friday, November 14, 2014 @ 14:41:17
  Author: ronald
Revision: 226241

upgpkg: digikam 4.5.0-1

update to 4.5.0; remove upstream patch

Modified:
  digikam/trunk/PKGBUILD
Deleted:
  digikam/trunk/digikam_libkexiv2.patch

-+
 PKGBUILD|8 --
 digikam_libkexiv2.patch |   53 --
 2 files changed, 5 insertions(+), 56 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-11-14 13:30:12 UTC (rev 226240)
+++ PKGBUILD2014-11-14 13:41:17 UTC (rev 226241)
@@ -14,7 +14,7 @@
 makedepends=('kdepimlibs' 'libkexiv2' 'libkdcraw' 'libkipi' 'libksane' 'liblqr'
  'kdeedu-marble' 'opencv' 'boost' 'libgpod' 'qjson' 'hugin' 
'libgphoto2'
  'cmake' 'automoc4' 'doxygen' 'lensfun' 'qt-gstreamer' 
'imagemagick' 'eigen' 
-'libbaloo4')
+'libbaloo4' 'libpgf')
 
source=("http://download.kde.org/stable/${pkgname}/${pkgname}-${pkgver}.tar.bz2";)
 sha1sums=('ba735f4b7bb0437c1676141ab78ea958e46f135e')
 
@@ -26,7 +26,8 @@
 -DCMAKE_BUILD_TYPE=Release \
 -DCMAKE_SKIP_RPATH=ON \
 -DBUILD_tests=OFF \
--DDIGIKAMSC_USE_PRIVATE_KDEGRAPHICS=OFF
+-DDIGIKAMSC_USE_PRIVATE_KDEGRAPHICS=OFF \
+-DDIGIKAMSC_USE_PRIVATE_SHAREDLIBS=ON
   make
 }
 
@@ -33,7 +34,8 @@
 package_digikam() {
   pkgdesc="Digital photo management application for KDE"
   depends=('kdebase-runtime' 'kdepimlibs' 'libgphoto2' 'opencv' 'liblqr'
-   'libkipi' 'libkexiv2' 'libkdcraw' 'libkface' 'libkgeomap' 'lensfun' 
'libbaloo4')
+   'libkipi' 'libkexiv2' 'libkdcraw' 'libkface' 'libkgeomap' 'lensfun' 
+  'libpgf' 'libbaloo4')
   optdepends=('kipi-plugins: more tools and plugins' 'kdebase-workspace: Theme 
configuration dialog')
   install=digikam.install
 

Deleted: digikam_libkexiv2.patch
===
--- digikam_libkexiv2.patch 2014-11-14 13:30:12 UTC (rev 226240)
+++ digikam_libkexiv2.patch 2014-11-14 13:41:17 UTC (rev 226241)
@@ -1,53 +0,0 @@
-commit f6945f23e0ed1e11f26e2c7e62b02baa8cfa640e
-Author: Pino Toscano 
-Date:   Tue Oct 14 22:26:19 2014 +0200
-
-fix libkexiv2 version for AltLangStrEdit::textEdit()
-
-it is part of current libkexiv2/master only (i.e. post 4.14.x, which
-is 2.3.x)
-
-diff --git a/libs/imageproperties/captionedit.cpp 
b/libs/imageproperties/captionedit.cpp
-index 88413fc..70bdb6d 100644
 a/libs/imageproperties/captionedit.cpp
-+++ b/libs/imageproperties/captionedit.cpp
-@@ -202,7 +202,7 @@ void CaptionEdit::slotAuthorChanged(const QString& text)
- 
- MsgTextEdit* CaptionEdit::textEdit() const
- {
--#if KEXIV2_VERSION >= 0x020302
-+#if KEXIV2_VERSION >= 0x020400
- return d->altLangStrEdit->textEdit();
- #else
- return 0;
-diff --git a/libs/imageproperties/imagedescedittab.cpp 
b/libs/imageproperties/imagedescedittab.cpp
-index ebfbae1..3d12777 100644
 a/libs/imageproperties/imagedescedittab.cpp
-+++ b/libs/imageproperties/imagedescedittab.cpp
-@@ -429,7 +429,7 @@ ImageDescEditTab::ImageDescEditTab(QWidget* const parent)
- 
- // Initialize -
- 
--#if KEXIV2_VERSION >= 0x020302
-+#if KEXIV2_VERSION >= 0x020400
- d->titleEdit->textEdit()->installEventFilter(this);
- d->captionsEdit->textEdit()->installEventFilter(this);
- #endif
-@@ -532,7 +532,7 @@ void ImageDescEditTab::setFocusToNewTagEdit()
- void ImageDescEditTab::setFocusToTitlesEdit()
- {
- d->tabWidget->setCurrentIndex(Private::DESCRIPTIONS);
--#if KEXIV2_VERSION >= 0x020302
-+#if KEXIV2_VERSION >= 0x020400
- d->titleEdit->textEdit()->setFocus();
- #endif
- }
-@@ -540,7 +540,7 @@ void ImageDescEditTab::setFocusToTitlesEdit()
- void ImageDescEditTab::setFocusToCommentsEdit()
- {
- d->tabWidget->setCurrentIndex(Private::DESCRIPTIONS);
--#if KEXIV2_VERSION >= 0x020302
-+#if KEXIV2_VERSION >= 0x020400
- d->captionsEdit->textEdit()->setFocus();
- #endif
- }


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

2014-11-14 Thread Evangelos Foutras
Date: Friday, November 14, 2014 @ 14:30:12
  Author: foutrelis
Revision: 226240

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

Added:
  chromium/repos/extra-i686/PKGBUILD
(from rev 226239, chromium/trunk/PKGBUILD)
  chromium/repos/extra-i686/chromium.default
(from rev 226239, chromium/trunk/chromium.default)
  chromium/repos/extra-i686/chromium.desktop
(from rev 226239, chromium/trunk/chromium.desktop)
  chromium/repos/extra-i686/chromium.install
(from rev 226239, chromium/trunk/chromium.install)
  chromium/repos/extra-i686/chromium.sh
(from rev 226239, chromium/trunk/chromium.sh)
  chromium/repos/extra-x86_64/PKGBUILD
(from rev 226239, chromium/trunk/PKGBUILD)
  chromium/repos/extra-x86_64/chromium.default
(from rev 226239, chromium/trunk/chromium.default)
  chromium/repos/extra-x86_64/chromium.desktop
(from rev 226239, chromium/trunk/chromium.desktop)
  chromium/repos/extra-x86_64/chromium.install
(from rev 226239, chromium/trunk/chromium.install)
  chromium/repos/extra-x86_64/chromium.sh
(from rev 226239, chromium/trunk/chromium.sh)
Deleted:
  chromium/repos/extra-i686/PKGBUILD
  chromium/repos/extra-i686/chromium.default
  chromium/repos/extra-i686/chromium.desktop
  chromium/repos/extra-i686/chromium.install
  chromium/repos/extra-i686/chromium.sh
  chromium/repos/extra-x86_64/PKGBUILD
  chromium/repos/extra-x86_64/chromium.default
  chromium/repos/extra-x86_64/chromium.desktop
  chromium/repos/extra-x86_64/chromium.install
  chromium/repos/extra-x86_64/chromium.sh

---+
 /PKGBUILD |  352 
 /chromium.default |8 
 /chromium.desktop |  226 +
 /chromium.install |   24 ++
 /chromium.sh  |   32 +++
 extra-i686/PKGBUILD   |  176 
 extra-i686/chromium.default   |4 
 extra-i686/chromium.desktop   |  113 
 extra-i686/chromium.install   |   12 -
 extra-i686/chromium.sh|   16 -
 extra-x86_64/PKGBUILD |  176 
 extra-x86_64/chromium.default |4 
 extra-x86_64/chromium.desktop |  113 
 extra-x86_64/chromium.install |   12 -
 extra-x86_64/chromium.sh  |   16 -
 15 files changed, 642 insertions(+), 642 deletions(-)

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


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

2014-11-14 Thread Evangelos Foutras
Date: Friday, November 14, 2014 @ 14:29:13
  Author: foutrelis
Revision: 226239

upgpkg: chromium 38.0.2125.122-1

New upstream release.

Modified:
  chromium/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-11-14 13:09:31 UTC (rev 226238)
+++ PKGBUILD2014-11-14 13:29:13 UTC (rev 226239)
@@ -5,7 +5,7 @@
 # Contributor: Daniel J Griffiths 
 
 pkgname=chromium
-pkgver=38.0.2125.111
+pkgver=38.0.2125.122
 pkgrel=1
 pkgdesc="The open-source project behind Google Chrome, an attempt at creating 
a safer, faster, and more stable browser"
 arch=('i686' 'x86_64')
@@ -29,7 +29,7 @@
 chromium.desktop
 chromium.default
 chromium.sh)
-sha256sums=('e6b43c86c0dff8451c532d7411546f973aa94d755fc2ce6574d8eabe55d35a1f'
+sha256sums=('3ea94fb3151f59c2d5088f832f8e894897489922a63bfa04f0068ee2fc0e36f3'
 '09bfac44104f4ccda4c228053f689c947b3e97da9a4ab6fa34ce061ee83d0322'
 '478340d5760a9bd6c549e19b1b5d1c5b4933ebf5f8cfb2b3e2d70d07443fe232'
 '4999fded897af692f4974f0a3e3bbb215193519918a1fa9b31ed51e74a2dccb9')


[arch-commits] Commit in kwebkitpart/trunk (PKGBUILD sanitize-input.patch)

2014-11-14 Thread Andrea Scarpino
Date: Friday, November 14, 2014 @ 14:09:18
  Author: andrea
Revision: 226237

upgpkg: kwebkitpart 1.3.4-3

Sanitize input

Added:
  kwebkitpart/trunk/sanitize-input.patch
Modified:
  kwebkitpart/trunk/PKGBUILD

--+
 PKGBUILD |   20 ++--
 sanitize-input.patch |   45 +
 2 files changed, 59 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-11-14 13:09:09 UTC (rev 226236)
+++ PKGBUILD2014-11-14 13:09:18 UTC (rev 226237)
@@ -3,7 +3,7 @@
 
 pkgname=kwebkitpart
 pkgver=1.3.4
-pkgrel=2
+pkgrel=3
 pkgdesc="A WebKit browser component for KDE"
 url="https://projects.kde.org/projects/extragear/base/kwebkitpart/";
 arch=('i686' 'x86_64')
@@ -12,13 +12,21 @@
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
 # Generate using kde releaseme scripts
-source=("ftp://ftp.archlinux.org/other/packages/${pkgname}/${pkgname}-${pkgver}.tar.xz";)
-md5sums=('0a3e176a7c24f00e22c92a7b105585f8')
+source=("ftp://ftp.archlinux.org/other/packages/${pkgname}/${pkgname}-${pkgver}.tar.xz";
+'sanitize-input.patch')
+md5sums=('0a3e176a7c24f00e22c92a7b105585f8'
+ 'f9ae9520069ffac4c5da1f408fd4bbdf')
 
+prepare() {
+  mkdir build
+
+  cd ${pkgname}-${pkgver}
+  patch -p1 -i "${srcdir}"/sanitize-input.patch
+
+  sed -i '/add_subdirectory(kdelauncher)/d' CMakeLists.txt
+}
+
 build() {
-  sed -i '/add_subdirectory(kdelauncher)/d' ${pkgname}-${pkgver}/CMakeLists.txt
-
-  mkdir build
   cd build
   cmake ../${pkgname}-${pkgver} \
 -DCMAKE_INSTALL_PREFIX=/usr \

Added: sanitize-input.patch
===
--- sanitize-input.patch(rev 0)
+++ sanitize-input.patch2014-11-14 13:09:18 UTC (rev 226237)
@@ -0,0 +1,45 @@
+From: Albert Astals Cid 
+Date: Thu, 13 Nov 2014 14:06:01 +
+Subject: Sanitize html
+X-Git-Url: 
http://quickgit.kde.org/?p=kwebkitpart.git&a=commitdiff&h=641aa7c75631084260ae89aecbdb625e918c6689
+---
+Sanitize html
+
+As discussed by the security team
+---
+
+
+--- a/src/webpage.cpp
 b/src/webpage.cpp
+@@ -226,23 +226,26 @@
+ doc += QL1S( "" );
+ doc += i18n( "Details of the Request:" );
+ doc += QL1S( "" );
+-doc += i18n( "URL: %1", reqUrl.url() );
++// escape URL twice: once for i18n, and once for HTML.
++doc += i18n( "URL: %1", Qt::escape( Qt::escape( reqUrl.prettyUrl() ) ) );
+ doc += QL1S( "" );
+ 
+ const QString protocol (reqUrl.protocol());
+ if ( !protocol.isNull() ) {
+-doc += i18n( "Protocol: %1", protocol );
++// escape protocol twice: once for i18n, and once for HTML.
++doc += i18n( "Protocol: %1", Qt::escape( Qt::escape( protocol ) ) );
+ doc += QL1S( "" );
+ }
+ 
+ doc += i18n( "Date and Time: %1",
+  
KGlobal::locale()->formatDateTime(QDateTime::currentDateTime(), 
KLocale::LongDate) );
+ doc += QL1S( "" );
+-doc += i18n( "Additional Information: %1" ,  text );
++// escape text twice: once for i18n, and once for HTML.
++doc += i18n( "Additional Information: %1", Qt::escape( Qt::escape( text ) 
) );
+ doc += QL1S( "" );
+ doc += i18n( "Description:" );
+ doc += QL1S( "" );
+-doc += description;
++doc += Qt::escape( description );
+ doc += QL1S( "" );
+ 
+ if ( causes.count() ) {
+


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

2014-11-14 Thread Andrea Scarpino
Date: Friday, November 14, 2014 @ 14:09:09
  Author: andrea
Revision: 226236

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

Added:
  kio-extras/repos/extra-i686/PKGBUILD
(from rev 226235, kio-extras/trunk/PKGBUILD)
  kio-extras/repos/extra-i686/kio-extras.install
(from rev 226235, kio-extras/trunk/kio-extras.install)
  kio-extras/repos/extra-i686/sanitize-input.patch
(from rev 226235, kio-extras/trunk/sanitize-input.patch)
  kio-extras/repos/extra-x86_64/PKGBUILD
(from rev 226235, kio-extras/trunk/PKGBUILD)
  kio-extras/repos/extra-x86_64/kio-extras.install
(from rev 226235, kio-extras/trunk/kio-extras.install)
  kio-extras/repos/extra-x86_64/sanitize-input.patch
(from rev 226235, kio-extras/trunk/sanitize-input.patch)
Deleted:
  kio-extras/repos/extra-i686/PKGBUILD
  kio-extras/repos/extra-i686/kio-extras.install
  kio-extras/repos/extra-x86_64/PKGBUILD
  kio-extras/repos/extra-x86_64/kio-extras.install

---+
 /PKGBUILD |   94 
 /kio-extras.install   |   22 
 extra-i686/PKGBUILD   |   42 
 extra-i686/kio-extras.install |   11 
 extra-i686/sanitize-input.patch   |   31 +++
 extra-x86_64/PKGBUILD |   42 
 extra-x86_64/kio-extras.install   |   11 
 extra-x86_64/sanitize-input.patch |   31 +++
 8 files changed, 178 insertions(+), 106 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-11-14 13:08:23 UTC (rev 226235)
+++ extra-i686/PKGBUILD 2014-11-14 13:09:09 UTC (rev 226236)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-# Contributor: Antonio Rojas
-
-pkgname=kio-extras
-pkgver=5.1.1
-pkgrel=1
-pkgdesc="Additional components to increase the functionality of KIO"
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/workspace/kio-extras'
-license=('LGPL')
-depends=('kdelibs4support' 'khtml' 'kdnssd' 'libssh' 'smbclient' 'exiv2' 
'openexr' 'openslp')
-makedepends=('extra-cmake-modules' 'kdoctools' 'python')
-options=('!buildflags')
-install="${pkgname}.install"
-source=("http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz";)
-md5sums=('831fb9bc8960932233cf6042f6097751')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIB_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-
-  # conflicts with kdebase-runtime
-  rm "$pkgdir"/usr/lib/libmolletnetwork.so
-  mv "$pkgdir"/usr/share/config.kcfg/jpegcreatorsettings{,5}.kcfg
-}
-

Copied: kio-extras/repos/extra-i686/PKGBUILD (from rev 226235, 
kio-extras/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-11-14 13:09:09 UTC (rev 226236)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Antonio Rojas
+
+pkgname=kio-extras
+pkgver=5.1.1
+pkgrel=2
+pkgdesc="Additional components to increase the functionality of KIO"
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/workspace/kio-extras'
+license=('LGPL')
+depends=('kdelibs4support' 'khtml' 'kdnssd' 'libssh' 'smbclient' 'exiv2' 
'openexr' 'openslp')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+options=('!buildflags')
+install="${pkgname}.install"
+source=("http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz";
+'sanitize-input.patch')
+md5sums=('831fb9bc8960932233cf6042f6097751'
+ '6462465f886decd5c7706d09bc71b2b8')
+
+prepare() {
+  mkdir -p build
+
+  cd ${pkgname}-${pkgver}
+  patch -p1 -i "${srcdir}"/sanitize-input.patch
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+
+  # conflicts with kdebase-runtime
+  rm "$pkgdir"/usr/lib/libmolletnetwork.so
+  mv "$pkgdir"/usr/share/config.kcfg/jpegcreatorsettings{,5}.kcfg
+}
+

Deleted: extra-i686/kio-extras.install
===
--- extra-i686/kio-extras.install   2014-11-14 13:08:23 UTC (rev 226235)
+++ extra-i686/kio-extras.install   2014-11-14 13:09:09 UTC (rev 226236)
@@ -1,11 +0,0 @@
-post_install() {
-update-mime-database usr/share/mime &> /dev/null
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-post_install
-}

Copied: kio-extras/repos/extra-i686/kio-extras.install (from rev 226235, 
kio-extras/trunk/kio-extras.install)
===

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

2014-11-14 Thread Andrea Scarpino
Date: Friday, November 14, 2014 @ 14:09:31
  Author: andrea
Revision: 226238

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

Added:
  kwebkitpart/repos/extra-i686/PKGBUILD
(from rev 226237, kwebkitpart/trunk/PKGBUILD)
  kwebkitpart/repos/extra-i686/kwebkitpart.install
(from rev 226237, kwebkitpart/trunk/kwebkitpart.install)
  kwebkitpart/repos/extra-i686/sanitize-input.patch
(from rev 226237, kwebkitpart/trunk/sanitize-input.patch)
  kwebkitpart/repos/extra-x86_64/PKGBUILD
(from rev 226237, kwebkitpart/trunk/PKGBUILD)
  kwebkitpart/repos/extra-x86_64/kwebkitpart.install
(from rev 226237, kwebkitpart/trunk/kwebkitpart.install)
  kwebkitpart/repos/extra-x86_64/sanitize-input.patch
(from rev 226237, kwebkitpart/trunk/sanitize-input.patch)
Deleted:
  kwebkitpart/repos/extra-i686/PKGBUILD
  kwebkitpart/repos/extra-i686/kwebkitpart.install
  kwebkitpart/repos/extra-x86_64/PKGBUILD
  kwebkitpart/repos/extra-x86_64/kwebkitpart.install

---+
 /PKGBUILD |   80 
 /kwebkitpart.install  |   22 +
 extra-i686/PKGBUILD   |   32 --
 extra-i686/kwebkitpart.install|   11 
 extra-i686/sanitize-input.patch   |   45 
 extra-x86_64/PKGBUILD |   32 --
 extra-x86_64/kwebkitpart.install  |   11 
 extra-x86_64/sanitize-input.patch |   45 
 8 files changed, 192 insertions(+), 86 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-11-14 13:09:18 UTC (rev 226237)
+++ extra-i686/PKGBUILD 2014-11-14 13:09:31 UTC (rev 226238)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-
-pkgname=kwebkitpart
-pkgver=1.3.4
-pkgrel=2
-pkgdesc="A WebKit browser component for KDE"
-url="https://projects.kde.org/projects/extragear/base/kwebkitpart/";
-arch=('i686' 'x86_64')
-license=('LGPL')
-depends=('kdelibs')
-makedepends=('cmake' 'automoc4')
-install=${pkgname}.install
-# Generate using kde releaseme scripts
-source=("ftp://ftp.archlinux.org/other/packages/${pkgname}/${pkgname}-${pkgver}.tar.xz";)
-md5sums=('0a3e176a7c24f00e22c92a7b105585f8')
-
-build() {
-  sed -i '/add_subdirectory(kdelauncher)/d' ${pkgname}-${pkgver}/CMakeLists.txt
-
-  mkdir build
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: kwebkitpart/repos/extra-i686/PKGBUILD (from rev 226237, 
kwebkitpart/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-11-14 13:09:31 UTC (rev 226238)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=kwebkitpart
+pkgver=1.3.4
+pkgrel=3
+pkgdesc="A WebKit browser component for KDE"
+url="https://projects.kde.org/projects/extragear/base/kwebkitpart/";
+arch=('i686' 'x86_64')
+license=('LGPL')
+depends=('kdelibs')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+# Generate using kde releaseme scripts
+source=("ftp://ftp.archlinux.org/other/packages/${pkgname}/${pkgname}-${pkgver}.tar.xz";
+'sanitize-input.patch')
+md5sums=('0a3e176a7c24f00e22c92a7b105585f8'
+ 'f9ae9520069ffac4c5da1f408fd4bbdf')
+
+prepare() {
+  mkdir build
+
+  cd ${pkgname}-${pkgver}
+  patch -p1 -i "${srcdir}"/sanitize-input.patch
+
+  sed -i '/add_subdirectory(kdelauncher)/d' CMakeLists.txt
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-i686/kwebkitpart.install
===
--- extra-i686/kwebkitpart.install  2014-11-14 13:09:18 UTC (rev 226237)
+++ extra-i686/kwebkitpart.install  2014-11-14 13:09:31 UTC (rev 226238)
@@ -1,11 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: kwebkitpart/repos/extra-i686/kwebkitpart.install (from rev 226237, 
kwebkitpart/trunk/kwebkitpart.install)
===
--- extra-i686/kwebkitpart.install  (rev 0)
+++ extra-i686/kwebkitpart.install  2014-11-14 13:09:31 UTC (rev 226238)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kwebkitpart/repos/extra-i686/sanitize-input.patch (from rev 226237, 
kwebkitpart/trunk/sanitize-input.patch)
===
---

[arch-commits] Commit in kio-extras/trunk (PKGBUILD sanitize-input.patch)

2014-11-14 Thread Andrea Scarpino
Date: Friday, November 14, 2014 @ 14:08:23
  Author: andrea
Revision: 226235

upgpkg: kio-extras 5.1.1-2

Sanitize input

Added:
  kio-extras/trunk/sanitize-input.patch
Modified:
  kio-extras/trunk/PKGBUILD

--+
 PKGBUILD |   11 ---
 sanitize-input.patch |   31 +++
 2 files changed, 39 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-11-14 13:03:48 UTC (rev 226234)
+++ PKGBUILD2014-11-14 13:08:23 UTC (rev 226235)
@@ -4,7 +4,7 @@
 
 pkgname=kio-extras
 pkgver=5.1.1
-pkgrel=1
+pkgrel=2
 pkgdesc="Additional components to increase the functionality of KIO"
 arch=('i686' 'x86_64')
 url='https://projects.kde.org/projects/kde/workspace/kio-extras'
@@ -13,11 +13,16 @@
 makedepends=('extra-cmake-modules' 'kdoctools' 'python')
 options=('!buildflags')
 install="${pkgname}.install"
-source=("http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz";)
-md5sums=('831fb9bc8960932233cf6042f6097751')
+source=("http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz";
+'sanitize-input.patch')
+md5sums=('831fb9bc8960932233cf6042f6097751'
+ '6462465f886decd5c7706d09bc71b2b8')
 
 prepare() {
   mkdir -p build
+
+  cd ${pkgname}-${pkgver}
+  patch -p1 -i "${srcdir}"/sanitize-input.patch
 }
 
 build() {

Added: sanitize-input.patch
===
--- sanitize-input.patch(rev 0)
+++ sanitize-input.patch2014-11-14 13:08:23 UTC (rev 226235)
@@ -0,0 +1,31 @@
+From: Martin Sandsmark 
+Date: Thu, 13 Nov 2014 12:42:49 +
+Subject: Sanitize path
+X-Git-Url: 
http://quickgit.kde.org/?p=kio-extras.git&a=commitdiff&h=13155c8eb71d1c946bea21c38ea0f8ca7c7013cd
+---
+Sanitize path
+
+Reviewed at secur...@kde.org
+---
+
+
+--- a/bookmarks/kio_bookmarks.cpp
 b/bookmarks/kio_bookmarks.cpp
+@@ -22,6 +22,7 @@
+ #include 
+ 
+ #include 
++#include 
+ #include 
+ 
+ #include 
+@@ -198,7 +199,7 @@
+ echoImage(regexp.cap(1), regexp.cap(2), 
QUrlQuery(url).queryItemValue("size"));
+   } else {
+ echoHead();
+-echo("" + i18n("Wrong request: %1",path) + "");
++echo("" + i18n("Wrong request: %1", 
Qt::escape(url.toDisplayString())) + "");
+   }
+   finished();
+ }
+


[arch-commits] Commit in libmusicbrainz5 (3 files)

2014-11-14 Thread Andrea Scarpino
Date: Friday, November 14, 2014 @ 14:03:48
  Author: andrea
Revision: 226234

Cleanup

Deleted:
  libmusicbrainz5/repos/staging-i686/support-out-of-source-build.patch
  libmusicbrainz5/repos/staging-x86_64/support-out-of-source-build.patch
  libmusicbrainz5/trunk/support-out-of-source-build.patch

+
 repos/staging-i686/support-out-of-source-build.patch   |  131 ---
 repos/staging-x86_64/support-out-of-source-build.patch |  131 ---
 trunk/support-out-of-source-build.patch|  131 ---
 3 files changed, 393 deletions(-)

Deleted: repos/staging-i686/support-out-of-source-build.patch
===
--- repos/staging-i686/support-out-of-source-build.patch2014-11-14 
13:00:55 UTC (rev 226233)
+++ repos/staging-i686/support-out-of-source-build.patch2014-11-14 
13:03:48 UTC (rev 226234)
@@ -1,131 +0,0 @@
-From b74fd9680c20f8cbdbcf6cdff9ee1074c55fe1c1 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Lalinsk=C3=BD?= 
-Date: Thu, 14 Jun 2012 09:58:41 +0200
-Subject: [PATCH] Support out-of-source build
-
-http://tickets.musicbrainz.org/browse/LMB-10
-https://github.com/metabrainz/libmusicbrainz/issues/1

- examples/CMakeLists.txt |5 -
- src/CMakeLists.txt  |9 +++--
- src/make-c-interface.cc |8 
- tests/CMakeLists.txt|5 -
- 4 files changed, 19 insertions(+), 8 deletions(-)
-
-diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt
-index 3e11469..000d4aa 100644
 a/examples/CMakeLists.txt
-+++ b/examples/CMakeLists.txt
-@@ -1,4 +1,7 @@
--INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR}/../include)
-+INCLUDE_DIRECTORIES(
-+  ${CMAKE_CURRENT_SOURCE_DIR}/../include
-+  ${CMAKE_CURRENT_BINARY_DIR}/../include
-+)
- LINK_LIBRARIES(musicbrainz5 ${NEON_LIBRARIES})
- 
- ADD_EXECUTABLE(cdlookup cdlookup.cc)
-diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
-index 2ee102f..89ab63c 100644
 a/src/CMakeLists.txt
-+++ b/src/CMakeLists.txt
-@@ -1,5 +1,10 @@
- SET(CMAKE_INCLUDE_CURRENT_DIR ON)
--INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR}/.. 
${CMAKE_CURRENT_SOURCE_DIR}/../include ${NEON_INCLUDE_DIR})
-+INCLUDE_DIRECTORIES(
-+  ${CMAKE_CURRENT_SOURCE_DIR}/..
-+  ${CMAKE_CURRENT_SOURCE_DIR}/../include
-+  ${CMAKE_CURRENT_BINARY_DIR}/../include
-+  ${NEON_INCLUDE_DIR}
-+)
- 
- SET(_sources Alias.cc Annotation.cc Artist.cc ArtistCredit.cc Attribute.cc 
CDStub.cc Collection.cc
-   Disc.cc Entity.cc FreeDBDisc.cc HTTPFetch.cc ISRC.cc Label.cc 
LabelInfo.cc Lifespan.cc List.cc
-@@ -13,7 +18,7 @@ ADD_EXECUTABLE(make-c-interface make-c-interface.cc 
xmlParser.cpp)
- ADD_CUSTOM_COMMAND(
-   OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/mb5_c.cc 
${CMAKE_CURRENT_BINARY_DIR}/mb5_c.h 
${CMAKE_CURRENT_BINARY_DIR}/../include/musicbrainz5/mb5_c.h
-   COMMAND make-c-interface ${CMAKE_CURRENT_SOURCE_DIR} cinterface.xml 
${CMAKE_CURRENT_BINARY_DIR} mb5_c.cc mb5_c.h
--  COMMAND ${CMAKE_COMMAND} -E copy_if_different   
${CMAKE_CURRENT_BINARY_DIR}/mb5_c.h 
${CMAKE_CURRENT_BINARY_DIR}/../include/musicbrainz5
-+  COMMAND ${CMAKE_COMMAND} -E copy_if_different   
${CMAKE_CURRENT_BINARY_DIR}/mb5_c.h 
${CMAKE_CURRENT_BINARY_DIR}/../include/musicbrainz5/mb5_c.h
-   DEPENDS make-c-interface cinterface.xml *.inc
- )
- 
-diff --git a/src/make-c-interface.cc b/src/make-c-interface.cc
-index 652a65b..70dd6d7 100644
 a/src/make-c-interface.cc
-+++ b/src/make-c-interface.cc
-@@ -33,7 +33,7 @@
- 
- #include "musicbrainz5/xmlParser.h"
- 
--void ProcessBoilerplate(const XMLNode& Node, std::ofstream& Source, 
std::ofstream& Include);
-+void ProcessBoilerplate(const XMLNode& Node, std::ofstream& Source, 
std::ofstream& Include, const std::string& Path);
- void ProcessHeader(const XMLNode& Node, std::ofstream& Source, std::ofstream& 
Include);
- void ProcessEntity(const XMLNode& Node, std::ofstream& Source, std::ofstream& 
Include);
- void ProcessClass(const XMLNode& Node, std::ofstream& Source, std::ofstream& 
Include);
-@@ -80,7 +80,7 @@ int main(int argc, const char *argv[])
-   std::string Name=Node.getName();
- 
-   if ("boilerplate"==Name)
--  ProcessBoilerplate(Node,Source,Include);
-+  
ProcessBoilerplate(Node,Source,Include,argv[1]);
-   else if ("header"==Name)
-   ProcessHeader(Node,Source,Include);
-   else if ("declare"==Name)
-@@ -156,13 +156,13 @@ void ProcessHeader(const XMLNode& /*Node*/, 
std::ofstream& Source, std::ofstream
-   Include << os.str() << std::endl;
- }
- 
--void ProcessBoilerplate(const XMLNode& Node, std::ofstream& Source, 
std::ofstream& Include)
-+void ProcessBoilerplate(const XMLNode& Node, std::ofstream& Source, 
std::ofstream

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

2014-11-14 Thread Andrea Scarpino
Date: Friday, November 14, 2014 @ 14:00:55
  Author: andrea
Revision: 226233

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

Added:
  libmusicbrainz5/repos/staging-i686/
  libmusicbrainz5/repos/staging-i686/PKGBUILD
(from rev 226232, libmusicbrainz5/trunk/PKGBUILD)
  libmusicbrainz5/repos/staging-i686/support-out-of-source-build.patch
(from rev 226232, libmusicbrainz5/trunk/support-out-of-source-build.patch)
  libmusicbrainz5/repos/staging-x86_64/
  libmusicbrainz5/repos/staging-x86_64/PKGBUILD
(from rev 226232, libmusicbrainz5/trunk/PKGBUILD)
  libmusicbrainz5/repos/staging-x86_64/support-out-of-source-build.patch
(from rev 226232, libmusicbrainz5/trunk/support-out-of-source-build.patch)

--+
 staging-i686/PKGBUILD|   31 
 staging-i686/support-out-of-source-build.patch   |  131 +
 staging-x86_64/PKGBUILD  |   31 
 staging-x86_64/support-out-of-source-build.patch |  131 +
 4 files changed, 324 insertions(+)

Copied: libmusicbrainz5/repos/staging-i686/PKGBUILD (from rev 226232, 
libmusicbrainz5/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2014-11-14 13:00:55 UTC (rev 226233)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=libmusicbrainz5
+pkgver=5.1.0
+pkgrel=1
+pkgdesc="Library That Provides Access to the MusicBrainz Server"
+arch=('i686' 'x86_64')
+url='http://musicbrainz.org/doc/libmusicbrainz'
+license=('LGPL2.1')
+depends=('neon' 'libxml2')
+makedepends=('cmake')
+source=("https://github.com/metabrainz/libmusicbrainz/releases/download/release-${pkgver}/libmusicbrainz-$pkgver.tar.gz";)
+md5sums=('4cc5556aa40ff7ab8f8cb83965535bc3')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../libmusicbrainz-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Copied: libmusicbrainz5/repos/staging-i686/support-out-of-source-build.patch 
(from rev 226232, libmusicbrainz5/trunk/support-out-of-source-build.patch)
===
--- staging-i686/support-out-of-source-build.patch  
(rev 0)
+++ staging-i686/support-out-of-source-build.patch  2014-11-14 13:00:55 UTC 
(rev 226233)
@@ -0,0 +1,131 @@
+From b74fd9680c20f8cbdbcf6cdff9ee1074c55fe1c1 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Lalinsk=C3=BD?= 
+Date: Thu, 14 Jun 2012 09:58:41 +0200
+Subject: [PATCH] Support out-of-source build
+
+http://tickets.musicbrainz.org/browse/LMB-10
+https://github.com/metabrainz/libmusicbrainz/issues/1
+---
+ examples/CMakeLists.txt |5 -
+ src/CMakeLists.txt  |9 +++--
+ src/make-c-interface.cc |8 
+ tests/CMakeLists.txt|5 -
+ 4 files changed, 19 insertions(+), 8 deletions(-)
+
+diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt
+index 3e11469..000d4aa 100644
+--- a/examples/CMakeLists.txt
 b/examples/CMakeLists.txt
+@@ -1,4 +1,7 @@
+-INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR}/../include)
++INCLUDE_DIRECTORIES(
++  ${CMAKE_CURRENT_SOURCE_DIR}/../include
++  ${CMAKE_CURRENT_BINARY_DIR}/../include
++)
+ LINK_LIBRARIES(musicbrainz5 ${NEON_LIBRARIES})
+ 
+ ADD_EXECUTABLE(cdlookup cdlookup.cc)
+diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
+index 2ee102f..89ab63c 100644
+--- a/src/CMakeLists.txt
 b/src/CMakeLists.txt
+@@ -1,5 +1,10 @@
+ SET(CMAKE_INCLUDE_CURRENT_DIR ON)
+-INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR}/.. 
${CMAKE_CURRENT_SOURCE_DIR}/../include ${NEON_INCLUDE_DIR})
++INCLUDE_DIRECTORIES(
++  ${CMAKE_CURRENT_SOURCE_DIR}/..
++  ${CMAKE_CURRENT_SOURCE_DIR}/../include
++  ${CMAKE_CURRENT_BINARY_DIR}/../include
++  ${NEON_INCLUDE_DIR}
++)
+ 
+ SET(_sources Alias.cc Annotation.cc Artist.cc ArtistCredit.cc Attribute.cc 
CDStub.cc Collection.cc
+   Disc.cc Entity.cc FreeDBDisc.cc HTTPFetch.cc ISRC.cc Label.cc 
LabelInfo.cc Lifespan.cc List.cc
+@@ -13,7 +18,7 @@ ADD_EXECUTABLE(make-c-interface make-c-interface.cc 
xmlParser.cpp)
+ ADD_CUSTOM_COMMAND(
+   OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/mb5_c.cc 
${CMAKE_CURRENT_BINARY_DIR}/mb5_c.h 
${CMAKE_CURRENT_BINARY_DIR}/../include/musicbrainz5/mb5_c.h
+   COMMAND make-c-interface ${CMAKE_CURRENT_SOURCE_DIR} cinterface.xml 
${CMAKE_CURRENT_BINARY_DIR} mb5_c.cc mb5_c.h
+-  COMMAND ${CMAKE_COMMAND} -E copy_if_different   
${CMAKE_CURRENT_BINARY_DIR}/mb5_c.h 
${CMAKE_CURRENT_BINARY_DIR}/../include/musicbrainz5
++  COMMAND ${CMAKE_COMMAND} -E copy_if_different   
${CMAKE_CURRENT_BINARY_DIR}/mb5_c.h 
${CMAKE_CURRENT_BINARY_DIR}/../include/musicbrainz5/mb5_c.h
+   DEPENDS make-c-interface cinterface.xml *.inc
+ )
+ 
+diff --git a/src/

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

2014-11-14 Thread Andrea Scarpino
Date: Friday, November 14, 2014 @ 14:00:48
  Author: andrea
Revision: 226232

upgpkg: libmusicbrainz5 5.1.0-1

Upstream release

Modified:
  libmusicbrainz5/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-11-14 12:37:36 UTC (rev 226231)
+++ PKGBUILD2014-11-14 13:00:48 UTC (rev 226232)
@@ -2,25 +2,22 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=libmusicbrainz5
-pkgver=5.0.1
-pkgrel=2
+pkgver=5.1.0
+pkgrel=1
 pkgdesc="Library That Provides Access to the MusicBrainz Server"
 arch=('i686' 'x86_64')
 url='http://musicbrainz.org/doc/libmusicbrainz'
 license=('LGPL2.1')
-depends=('neon')
+depends=('neon' 'libxml2')
 makedepends=('cmake')
-source=("https://github.com/downloads/metabrainz/libmusicbrainz/libmusicbrainz-$pkgver.tar.gz";
-'support-out-of-source-build.patch')
-md5sums=('a0406b94c341c2b52ec0fe98f57cadf3'
- '78348e0c9a0864c7be2dcced5aab6d38')
+source=("https://github.com/metabrainz/libmusicbrainz/releases/download/release-${pkgver}/libmusicbrainz-$pkgver.tar.gz";)
+md5sums=('4cc5556aa40ff7ab8f8cb83965535bc3')
 
+prepare() {
+  mkdir build
+}
+
 build() {
-  cd "${srcdir}"/libmusicbrainz-${pkgver}
-  patch -p1 -i "${srcdir}"/support-out-of-source-build.patch
-
-  cd "${srcdir}"
-  mkdir build
   cd build
   cmake ../libmusicbrainz-${pkgver} \
 -DCMAKE_INSTALL_PREFIX=/usr \
@@ -29,6 +26,6 @@
 }
 
 package() {
-  cd "${srcdir}"/build
+  cd build
   make DESTDIR="$pkgdir" install
 }


[arch-commits] Commit in tomcat7/repos/extra-any (8 files)

2014-11-14 Thread Guillaume Alaux
Date: Friday, November 14, 2014 @ 13:37:36
  Author: guillaume
Revision: 226231

archrelease: copy trunk to extra-any

Added:
  tomcat7/repos/extra-any/PKGBUILD
(from rev 226230, tomcat7/trunk/PKGBUILD)
  tomcat7/repos/extra-any/systemd_tmpfiles.d_tomcat7.conf
(from rev 226230, tomcat7/trunk/systemd_tmpfiles.d_tomcat7.conf)
  tomcat7/repos/extra-any/systemd_tomcat7.service
(from rev 226230, tomcat7/trunk/systemd_tomcat7.service)
  tomcat7/repos/extra-any/tomcat7.install
(from rev 226230, tomcat7/trunk/tomcat7.install)
Deleted:
  tomcat7/repos/extra-any/PKGBUILD
  tomcat7/repos/extra-any/systemd_tmpfiles.d_tomcat7.conf
  tomcat7/repos/extra-any/systemd_tomcat7.service
  tomcat7/repos/extra-any/tomcat7.install

-+
 PKGBUILD|  150 +++---
 systemd_tmpfiles.d_tomcat7.conf |6 -
 systemd_tomcat7.service |   66 
 tomcat7.install |   70 -
 4 files changed, 146 insertions(+), 146 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-11-14 12:36:53 UTC (rev 226230)
+++ PKGBUILD2014-11-14 12:37:36 UTC (rev 226231)
@@ -1,75 +0,0 @@
-# Maintainer: Guillaume ALAUX 
-pkgname=tomcat7
-pkgver=7.0.56
-pkgrel=1
-pkgdesc='Open source implementation of the Java Servlet 3.0 and JavaServer 
Pages 2.2 technologies'
-arch=('any')
-url='http://tomcat.apache.org/'
-license=('APACHE')
-depends=('java-runtime>=6' 'java-jsvc' 'java-commons-daemon' 'eclipse-ecj')
-optdepends=('tomcat-native: to allow optimal performance in production 
environments')
-backup=(etc/${pkgname}/catalina.policy
-etc/${pkgname}/catalina.properties
-etc/${pkgname}/context.xml
-etc/${pkgname}/logging.properties
-etc/${pkgname}/server.xml
-etc/${pkgname}/tomcat-users.xml
-etc/${pkgname}/web.xml)
-install=${pkgname}.install
-source=(http://archive.apache.org/dist/tomcat/tomcat-7/v${pkgver}/bin/apache-tomcat-${pkgver}.tar.gz
-systemd_${pkgname}.service
-systemd_tmpfiles.d_${pkgname}.conf
-${pkgname}.install)
-
-sha256sums=('c0ca44be20bccebbb043ccd7ab5ea4d94060fdde6bb84812f3da363955dae5bb'
-'c6d4dbbaac417418397e395944f7b6aa38ac10e2fc33c7ee3520dba4cd23'
-'4bfeb2f4462547bf15cb2b72db545c0531c70f8640fa79344d520ceea6812a93'
-'13df331dad3441f027c8b5964ba5bf420df3dc8faf0f96e071db981e8ea322f0')
-
-_gid_log=19
-_gid_tomcat=71
-_uid_tomcat=71
-
-package() {
-  cd "${srcdir}/apache-tomcat-${pkgver}"
-
-  # Tomcat general files
-  install -dm755 "${pkgdir}"/usr/share/{,java/}${pkgname}
-  cp -r bin "${pkgdir}"/usr/share/${pkgname}
-  # commons-daemon and tomcat-natives are packaged on their own
-  rm 
"${pkgdir}"/usr/share/${pkgname}/bin/{*.bat,commons-daemon*,tomcat-native.tar.gz}
-  ln -s /usr/share/java/commons-daemon.jar 
"${pkgdir}"/usr/share/${pkgname}/bin/commons-daemon.jar
-
-  install -m644 lib/* "${pkgdir}"/usr/share/java/${pkgname}
-  # eclipse-ecj is packaged on its own
-  rm "${pkgdir}"/usr/share/java/${pkgname}/ecj-*.jar
-  ln -s ../eclipse-ecj.jar "${pkgdir}"/usr/share/java/${pkgname}/ecj.jar
-
-  ln -s /usr/share/java/${pkgname} "${pkgdir}"/usr/share/${pkgname}/lib
-
-  # We log through systemd but this would still be required for stock Tomcat 
logging
-  install -dm775 -o ${_uid_tomcat} -g ${_gid_log} 
"${pkgdir}"/var/log/${pkgname}
-  ln -s /var/log/${pkgname} "${pkgdir}"/usr/share/${pkgname}/logs
-  touch "${pkgdir}"/var/log/${pkgname}/catalina.{out,err}
-  chgrp ${_gid_log} "${pkgdir}"/var/log/${pkgname}/catalina.{out,err}
-
-  install -dm775 "${pkgdir}"/etc/${pkgname}
-  install -g ${_gid_tomcat} -m640 conf/* "${pkgdir}"/etc/${pkgname}
-  install -d -g ${_gid_tomcat} -m775 "${pkgdir}"/etc/${pkgname}/Catalina
-  ln -s /etc/${pkgname} "${pkgdir}"/usr/share/${pkgname}/conf
-
-  install -dm775 "${pkgdir}"/var/lib/${pkgname}
-  cp -r webapps "${pkgdir}"/var/lib/${pkgname}
-  chown -R ${_uid_tomcat}:${_gid_tomcat} "${pkgdir}"/var/lib/${pkgname}
-  ln -s /var/lib/${pkgname}/webapps "${pkgdir}"/usr/share/${pkgname}/webapps
-
-  install -dm1777 "${pkgdir}"/var/tmp
-  install -dm775 -o ${_uid_tomcat} -g ${_gid_tomcat} 
"${pkgdir}"/var/tmp/${pkgname}/{temp,work}
-  ln -s /var/tmp/${pkgname}/temp "${pkgdir}"/usr/share/${pkgname}/temp
-  ln -s /var/tmp/${pkgname}/work "${pkgdir}"/usr/share/${pkgname}/work
-
-  install -Dm644 "${srcdir}"/systemd_${pkgname}.service \
- "${pkgdir}"/usr/lib/systemd/system/${pkgname}.service
-  install -Dm644 "${srcdir}"/systemd_tmpfiles.d_${pkgname}.conf \
- "${pkgdir}"/usr/lib/tmpfiles.d/${pkgname}.conf
-}

Copied: tomcat7/repos/extra-any/PKGBUILD (from rev 226230, 
tomcat7/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-11-14 12:37:36 UTC (rev 226231)
@@ -0,0 +

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

2014-11-14 Thread Guillaume Alaux
Date: Friday, November 14, 2014 @ 13:36:53
  Author: guillaume
Revision: 226230

Upstream release 7.0.57

Modified:
  tomcat7/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-11-14 11:36:48 UTC (rev 226229)
+++ PKGBUILD2014-11-14 12:36:53 UTC (rev 226230)
@@ -1,6 +1,6 @@
 # Maintainer: Guillaume ALAUX 
 pkgname=tomcat7
-pkgver=7.0.56
+pkgver=7.0.57
 pkgrel=1
 pkgdesc='Open source implementation of the Java Servlet 3.0 and JavaServer 
Pages 2.2 technologies'
 arch=('any')
@@ -21,7 +21,7 @@
 systemd_tmpfiles.d_${pkgname}.conf
 ${pkgname}.install)
 
-sha256sums=('c0ca44be20bccebbb043ccd7ab5ea4d94060fdde6bb84812f3da363955dae5bb'
+sha256sums=('1ce390049ed23143e3db0c94781c1e88a4d1b39ceb471c0af088a0c326d637cb'
 'c6d4dbbaac417418397e395944f7b6aa38ac10e2fc33c7ee3520dba4cd23'
 '4bfeb2f4462547bf15cb2b72db545c0531c70f8640fa79344d520ceea6812a93'
 '13df331dad3441f027c8b5964ba5bf420df3dc8faf0f96e071db981e8ea322f0')


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

2014-11-14 Thread Ronald van Haren
Date: Friday, November 14, 2014 @ 12:36:27
  Author: ronald
Revision: 226228

upgpkg: libpgf 6.14.12-2

first release in [extra]

Modified:
  libpgf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-11-14 11:33:20 UTC (rev 226227)
+++ PKGBUILD2014-11-14 11:36:27 UTC (rev 226228)
@@ -4,7 +4,7 @@
 
 pkgname=libpgf
 pkgver=6.14.12
-pkgrel=1
+pkgrel=2
 pkgdesc="An implementation of the Progressive Graphics File (PGF)"
 arch=('i686' 'x86_64')
 url="http://www.libpgf.org";


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

2014-11-14 Thread Ronald van Haren
Date: Friday, November 14, 2014 @ 12:36:48
  Author: ronald
Revision: 226229

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

Added:
  libpgf/repos/extra-i686/
  libpgf/repos/extra-i686/PKGBUILD
(from rev 226228, libpgf/trunk/PKGBUILD)
  libpgf/repos/extra-x86_64/
  libpgf/repos/extra-x86_64/PKGBUILD
(from rev 226228, libpgf/trunk/PKGBUILD)

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

Copied: libpgf/repos/extra-i686/PKGBUILD (from rev 226228, 
libpgf/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-11-14 11:36:48 UTC (rev 226229)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Ronald van Haren 
+# Contributor: Tai Chi Minh Ralph Eastwood 
+
+pkgname=libpgf
+pkgver=6.14.12
+pkgrel=2
+pkgdesc="An implementation of the Progressive Graphics File (PGF)"
+arch=('i686' 'x86_64')
+url="http://www.libpgf.org";
+depends=('gcc-libs')
+makedepends=('dos2unix')
+license=('GPL')
+source=("http://sourceforge.net/projects/${pkgname}/files/${pkgname}/${pkgver}-latest/${pkgname}-src-${pkgver}.tar.gz";)
+sha1sums=('bba68ebc8a4f275e56a7615cd1e6a252c59ca613')
+
+build() {
+  cd "${srcdir}/${pkgname}"
+  dos2unix configure.ac
+  ./autogen.sh
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}"
+  make DESTDIR=${pkgdir} install
+}

Copied: libpgf/repos/extra-x86_64/PKGBUILD (from rev 226228, 
libpgf/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2014-11-14 11:36:48 UTC (rev 226229)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Ronald van Haren 
+# Contributor: Tai Chi Minh Ralph Eastwood 
+
+pkgname=libpgf
+pkgver=6.14.12
+pkgrel=2
+pkgdesc="An implementation of the Progressive Graphics File (PGF)"
+arch=('i686' 'x86_64')
+url="http://www.libpgf.org";
+depends=('gcc-libs')
+makedepends=('dos2unix')
+license=('GPL')
+source=("http://sourceforge.net/projects/${pkgname}/files/${pkgname}/${pkgver}-latest/${pkgname}-src-${pkgver}.tar.gz";)
+sha1sums=('bba68ebc8a4f275e56a7615cd1e6a252c59ca613')
+
+build() {
+  cd "${srcdir}/${pkgname}"
+  dos2unix configure.ac
+  ./autogen.sh
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}"
+  make DESTDIR=${pkgdir} install
+}


[arch-commits] Commit in (5 files)

2014-11-14 Thread Ronald van Haren
Date: Friday, November 14, 2014 @ 12:33:20
  Author: ronald
Revision: 226227

add libpgf as new dependency for digikam

Added:
  libpgf/
  libpgf/repos/
  libpgf/trunk/
  libpgf/trunk/PKGBUILD
Modified:
  digikam/trunk/PKGBUILD

+
 digikam/trunk/PKGBUILD |   19 +++
 libpgf/trunk/PKGBUILD  |   28 
 2 files changed, 35 insertions(+), 12 deletions(-)

Modified: digikam/trunk/PKGBUILD
===
--- digikam/trunk/PKGBUILD  2014-11-14 10:01:12 UTC (rev 226226)
+++ digikam/trunk/PKGBUILD  2014-11-14 11:33:20 UTC (rev 226227)
@@ -5,7 +5,7 @@
 
 pkgbase=digikam
 pkgname=('digikam' 'kipi-plugins' 'libkface' 'libkgeomap' 'libkvkontakte' 
'libmediawiki')
-pkgver=4.4.0
+pkgver=4.5.0
 pkgrel=1
 pkgdesc="Digital photo management application for KDE"
 arch=('i686' 'x86_64')
@@ -13,18 +13,13 @@
 url="http://www.digikam.org/";
 makedepends=('kdepimlibs' 'libkexiv2' 'libkdcraw' 'libkipi' 'libksane' 'liblqr'
  'kdeedu-marble' 'opencv' 'boost' 'libgpod' 'qjson' 'hugin' 
'libgphoto2'
- 'cmake' 'automoc4' 'doxygen' 'lensfun' 'qt-gstreamer' 
'imagemagick' 'eigen')
-source=("http://download.kde.org/stable/${pkgname}/${pkgname}-${pkgver}.tar.bz2";
 "digikam_libkexiv2.patch")
-sha1sums=('1feb43120addda314e09761440ec2058e430171c'
-  '39a09a8e7de1612eb47f3ef0966c6fa02b7e3284')
+ 'cmake' 'automoc4' 'doxygen' 'lensfun' 'qt-gstreamer' 
'imagemagick' 'eigen' 
+'libbaloo4')
+source=("http://download.kde.org/stable/${pkgname}/${pkgname}-${pkgver}.tar.bz2";)
+sha1sums=('ba735f4b7bb0437c1676141ab78ea958e46f135e')
 
-prepare() {
+build() {
   mkdir build
-  cd ${pkgname}-${pkgver}/core
-  patch -Np1 -i "${srcdir}/digikam_libkexiv2.patch"
-}
-
-build() {
   cd build
   cmake ../${pkgname}-${pkgver} \
 -DCMAKE_INSTALL_PREFIX=/usr \
@@ -38,7 +33,7 @@
 package_digikam() {
   pkgdesc="Digital photo management application for KDE"
   depends=('kdebase-runtime' 'kdepimlibs' 'libgphoto2' 'opencv' 'liblqr'
-   'libkipi' 'libkexiv2' 'libkdcraw' 'libkface' 'libkgeomap' 'lensfun')
+   'libkipi' 'libkexiv2' 'libkdcraw' 'libkface' 'libkgeomap' 'lensfun' 
'libbaloo4')
   optdepends=('kipi-plugins: more tools and plugins' 'kdebase-workspace: Theme 
configuration dialog')
   install=digikam.install
 

Added: libpgf/trunk/PKGBUILD
===
--- libpgf/trunk/PKGBUILD   (rev 0)
+++ libpgf/trunk/PKGBUILD   2014-11-14 11:33:20 UTC (rev 226227)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Ronald van Haren 
+# Contributor: Tai Chi Minh Ralph Eastwood 
+
+pkgname=libpgf
+pkgver=6.14.12
+pkgrel=1
+pkgdesc="An implementation of the Progressive Graphics File (PGF)"
+arch=('i686' 'x86_64')
+url="http://www.libpgf.org";
+depends=('gcc-libs')
+makedepends=('dos2unix')
+license=('GPL')
+source=("http://sourceforge.net/projects/${pkgname}/files/${pkgname}/${pkgver}-latest/${pkgname}-src-${pkgver}.tar.gz";)
+sha1sums=('bba68ebc8a4f275e56a7615cd1e6a252c59ca613')
+
+build() {
+  cd "${srcdir}/${pkgname}"
+  dos2unix configure.ac
+  ./autogen.sh
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}"
+  make DESTDIR=${pkgdir} install
+}


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


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

2014-11-14 Thread Lukas Fleischer
Date: Friday, November 14, 2014 @ 11:39:30
  Author: lfleischer
Revision: 122568

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

Added:
  duplicity/repos/community-testing-i686/
  duplicity/repos/community-testing-i686/PKGBUILD
(from rev 122567, duplicity/trunk/PKGBUILD)
  duplicity/repos/community-testing-i686/gpg-encode.patch
(from rev 122567, duplicity/trunk/gpg-encode.patch)
  duplicity/repos/community-testing-x86_64/
  duplicity/repos/community-testing-x86_64/PKGBUILD
(from rev 122567, duplicity/trunk/PKGBUILD)
  duplicity/repos/community-testing-x86_64/gpg-encode.patch
(from rev 122567, duplicity/trunk/gpg-encode.patch)

---+
 community-testing-i686/PKGBUILD   |   44 +
 community-testing-i686/gpg-encode.patch   |  216 
 community-testing-x86_64/PKGBUILD |   44 +
 community-testing-x86_64/gpg-encode.patch |  216 
 4 files changed, 520 insertions(+)

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

Copied: duplicity/repos/community-testing-i686/gpg-encode.patch (from rev 
122567, duplicity/trunk/gpg-encode.patch)
===
--- community-testing-i686/gpg-encode.patch (rev 0)
+++ community-testing-i686/gpg-encode.patch 2014-11-14 10:39:30 UTC (rev 
122568)
@@ -0,0 +1,216 @@
+=== modified file 'bin/duplicity'
+--- bin/duplicity  2014-01-21 21:04:27 +
 bin/duplicity  2014-02-05 02:57:13 +
+@@ -27,7 +27,7 @@
+ # Please send mail to me or the mailing list if you find bugs or have
+ # any suggestions.
+ 
+-import getpass, gzip, os, sys, time, types
++import gzip, os, sys, time, types
+ import traceback, platform, statvfs, resource, re
+ import threading
+ from datetime import datetime
+@@ -37,9 +37,6 @@
+ if os.path.exists(os.path.join(pwd, "../duplicity")):
+ sys.path.insert(0, os.path.abspath(os.path.join(pwd, "../.")))
+ 
+-import gettext
+-gettext.install('duplicity', codeset='utf8')
+-
+ from duplicity import log
+ log.setup()
+ 
+@@ -65,6 +62,13 @@
+ # If exit_val is not None, exit with given value at end.
+ exit_val = None
+ 
++def getpass_safe(message):
++# getpass() in Python 2.x will call str() on our prompt.  So we can't pass
++# in non-ascii characters.
++import getpass, locale
++message = message.encode(locale.getpreferredencoding(), 'replace')
++return getpass.getpass(message)
++
+ def get_passphrase(n, action, for_signing = False):
+ """
+ Check to make sure passphrase is indeed needed, then get
+@@ -160,19 +164,19 @@
+ if use_cache and globals.gpg_profile.signing_passphrase:
+ pass1 = globals.gpg_profile.signing_passphrase
+ else:
+-pass1 = getpass.getpass(_("GnuPG passphrase for 
signing key:")+" ")
++pass1 = getpass_safe(_("GnuPG passphrase for signing 
key:")+" ")
+ else:
+ if use_cache and globals.gpg_profile.passphrase:
+ pass1 = globals.gpg_profile.passphrase
+ 

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

2014-11-14 Thread Lukas Fleischer
Date: Friday, November 14, 2014 @ 11:39:15
  Author: lfleischer
Revision: 122567

upgpkg: duplicity 0.7.0-1

Upstream update.

Modified:
  duplicity/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-11-14 10:16:29 UTC (rev 122566)
+++ PKGBUILD2014-11-14 10:39:15 UTC (rev 122567)
@@ -4,7 +4,7 @@
 # Contributor: Aaron Schaefer 
 
 pkgname=duplicity
-pkgver=0.6.25
+pkgver=0.7.0
 pkgrel=1
 pkgdesc='A utility for encrypted, bandwidth-efficient backups using the rsync 
algorithm.'
 arch=('i686' 'x86_64')
@@ -18,8 +18,8 @@
 'gvfs: GIO backend'
 'python2-gdata: Google Docs backend'
 'rsync: rsync backend')
-source=("https://launchpad.net/$pkgname/0.6-series/$pkgver/+download/$pkgname-$pkgver.tar.gz"{,.sig})
-md5sums=('bf5aa7f09f8c96e732dd870c0abf5bbf'
+source=("https://launchpad.net/$pkgname/0.7-series/${pkgver}0/+download/$pkgname-$pkgver.tar.gz"{,.sig})
+md5sums=('1408856ecdfc2ec7fcf7e384fd87384d'
  'SKIP')
 
 build() {


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

2014-11-14 Thread Alexander Rødseth
Date: Friday, November 14, 2014 @ 11:16:29
  Author: arodseth
Revision: 122566

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-11-14 10:16:18 UTC (rev 122565)
+++ community-i686/PKGBUILD 2014-11-14 10:16:29 UTC (rev 122566)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: Maato 
-
-# TODO: Consider adding an install-time message about
-#   removing ~/.config/volumeicon/volumeicon if there are
-#   problems running volumeicon. Ref FS#34239
-
-pkgname=volumeicon
-pkgver=0.5.0
-pkgrel=4
-pkgdesc='Volume control for your system tray'
-arch=('x86_64' 'i686')
-url='http://softwarebakery.com/maato/volumeicon.html'
-license=('GPL3')
-depends=('gtk3' 'alsa-lib' 'libnotify')
-makedepends=('intltool' 'git')
-source=('git://github.com/Maato/volumeicon.git#commit=090fe14c0f')
-md5sums=('SKIP')
-
-pkgver() {
-  cd "$pkgname"
-  head -1 ChangeLog | cut -d: -f1
-}
-
-prepare() {
-  cd "$pkgname"
-  ./autogen.sh
-}
-
-build() {
-  cd "$pkgname"
-  ./configure --prefix=/usr --enable-notify
-  make
-}
-
-package() {
-  make -C "$pkgname" DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: volumeicon/repos/community-i686/PKGBUILD (from rev 122565, 
volumeicon/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-11-14 10:16:29 UTC (rev 122566)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Maato 
+
+# TODO: Consider adding an install-time message about
+#   removing ~/.config/volumeicon/volumeicon if there are
+#   problems running volumeicon. Ref FS#34239
+
+pkgname=volumeicon
+pkgver=0.5.0
+pkgrel=5
+pkgdesc='Volume control for your system tray'
+arch=('x86_64' 'i686')
+url='http://softwarebakery.com/maato/volumeicon.html'
+license=('GPL3')
+depends=('gtk3' 'alsa-lib' 'libnotify')
+makedepends=('intltool' 'git')
+source=('git://github.com/Maato/volumeicon.git#commit=090fe14c0f')
+md5sums=('SKIP')
+
+pkgver() {
+  cd "$pkgname"
+  head -1 ChangeLog | cut -d: -f1
+}
+
+prepare() {
+  cd "$pkgname"
+  ./autogen.sh
+}
+
+build() {
+  cd "$pkgname"
+  ./configure --prefix=/usr --enable-notify
+  make
+}
+
+package() {
+  make -C "$pkgname" DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-11-14 10:16:18 UTC (rev 122565)
+++ community-x86_64/PKGBUILD   2014-11-14 10:16:29 UTC (rev 122566)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: Maato 
-
-# TODO: Consider adding an install-time message about
-#   removing ~/.config/volumeicon/volumeicon if there are
-#   problems running volumeicon. Ref FS#34239
-
-pkgname=volumeicon
-pkgver=0.5.0
-pkgrel=4
-pkgdesc='Volume control for your system tray'
-arch=('x86_64' 'i686')
-url='http://softwarebakery.com/maato/volumeicon.html'
-license=('GPL3')
-depends=('gtk3' 'alsa-lib' 'libnotify')
-makedepends=('intltool' 'git')
-source=('git://github.com/Maato/volumeicon.git#commit=090fe14c0f')
-md5sums=('SKIP')
-
-pkgver() {
-  cd "$pkgname"
-  head -1 ChangeLog | cut -d: -f1
-}
-
-prepare() {
-  cd "$pkgname"
-  ./autogen.sh
-}
-
-build() {
-  cd "$pkgname"
-  ./configure --prefix=/usr --enable-notify
-  make
-}
-
-package() {
-  make -C "$pkgname" DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: volumeicon/repos/community-x86_64/PKGBUILD (from rev 122565, 
volumeicon/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-11-14 10:16:29 UTC (rev 122566)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Maato 
+
+# TODO: Consider adding an install-time message about
+#   removing ~/.config/volumeicon/volumeicon if there are
+#   problems running volumeicon. Ref FS#34239
+
+pkgname=volumeicon
+pkgver=0.5.0
+pkgrel=5
+pkgdesc='Volume control for your system tray'
+arch=('x86_64' 'i686')
+url='http://softwarebakery.com/maato/volumeicon.html'
+license=('GPL3')
+depends=('gtk3' 'alsa-lib' 'libnotify')
+makedepends=('intltool'

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

2014-11-14 Thread Alexander Rødseth
Date: Friday, November 14, 2014 @ 11:16:18
  Author: arodseth
Revision: 122565

upgpkg: volumeicon 0.5.0-5

Modified:
  volumeicon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-11-14 10:12:50 UTC (rev 122564)
+++ PKGBUILD2014-11-14 10:16:18 UTC (rev 122565)
@@ -8,7 +8,7 @@
 
 pkgname=volumeicon
 pkgver=0.5.0
-pkgrel=4
+pkgrel=5
 pkgdesc='Volume control for your system tray'
 arch=('x86_64' 'i686')
 url='http://softwarebakery.com/maato/volumeicon.html'


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

2014-11-14 Thread Alexander Rødseth
Date: Friday, November 14, 2014 @ 11:12:50
  Author: arodseth
Revision: 122564

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-11-14 10:12:42 UTC (rev 122563)
+++ community-i686/PKGBUILD 2014-11-14 10:12:50 UTC (rev 122564)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: Maato 
-
-# TODO: Consider adding an install-time message about
-#   removing ~/.config/volumeicon/volumeicon if there are
-#   problems running volumeicon. Ref FS#34239
-
-pkgname=volumeicon
-pkgver=0.5.0
-pkgrel=4
-pkgdesc='Volume control for your system tray'
-arch=('x86_64' 'i686')
-url='http://softwarebakery.com/maato/volumeicon.html'
-license=('GPL3')
-depends=('gtk3' 'alsa-lib' 'libnotify')
-makedepends=('intltool' 'git')
-source=('git://github.com/stevenhoneyman/volumeicon.git#commit=72322940a5')
-md5sums=('SKIP')
-
-pkgver() {
-  cd "$pkgname"
-
-  head -1 ChangeLog | cut -d: -f1
-}
-
-prepare() {
-  cd "$pkgname"
-
-  ./autogen.sh
-}
-
-build() {
-  cd "$pkgname"
-
-  ./configure \
---prefix=/usr \
---enable-notify
-  make
-}
-
-package() {
-  make -C "$pkgname" DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: volumeicon/repos/community-i686/PKGBUILD (from rev 122563, 
volumeicon/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-11-14 10:12:50 UTC (rev 122564)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Maato 
+
+# TODO: Consider adding an install-time message about
+#   removing ~/.config/volumeicon/volumeicon if there are
+#   problems running volumeicon. Ref FS#34239
+
+pkgname=volumeicon
+pkgver=0.5.0
+pkgrel=4
+pkgdesc='Volume control for your system tray'
+arch=('x86_64' 'i686')
+url='http://softwarebakery.com/maato/volumeicon.html'
+license=('GPL3')
+depends=('gtk3' 'alsa-lib' 'libnotify')
+makedepends=('intltool' 'git')
+source=('git://github.com/Maato/volumeicon.git#commit=090fe14c0f')
+md5sums=('SKIP')
+
+pkgver() {
+  cd "$pkgname"
+  head -1 ChangeLog | cut -d: -f1
+}
+
+prepare() {
+  cd "$pkgname"
+  ./autogen.sh
+}
+
+build() {
+  cd "$pkgname"
+  ./configure --prefix=/usr --enable-notify
+  make
+}
+
+package() {
+  make -C "$pkgname" DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-11-14 10:12:42 UTC (rev 122563)
+++ community-x86_64/PKGBUILD   2014-11-14 10:12:50 UTC (rev 122564)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: Maato 
-
-# TODO: Consider adding an install-time message about
-#   removing ~/.config/volumeicon/volumeicon if there are
-#   problems running volumeicon. Ref FS#34239
-
-pkgname=volumeicon
-pkgver=0.5.0
-pkgrel=4
-pkgdesc='Volume control for your system tray'
-arch=('x86_64' 'i686')
-url='http://softwarebakery.com/maato/volumeicon.html'
-license=('GPL3')
-depends=('gtk3' 'alsa-lib' 'libnotify')
-makedepends=('intltool' 'git')
-source=('git://github.com/stevenhoneyman/volumeicon.git#commit=72322940a5')
-md5sums=('SKIP')
-
-pkgver() {
-  cd "$pkgname"
-
-  head -1 ChangeLog | cut -d: -f1
-}
-
-prepare() {
-  cd "$pkgname"
-
-  ./autogen.sh
-}
-
-build() {
-  cd "$pkgname"
-
-  ./configure \
---prefix=/usr \
---enable-notify
-  make
-}
-
-package() {
-  make -C "$pkgname" DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: volumeicon/repos/community-x86_64/PKGBUILD (from rev 122563, 
volumeicon/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-11-14 10:12:50 UTC (rev 122564)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Maato 
+
+# TODO: Consider adding an install-time message about
+#   removing ~/.config/volumeicon/volumeicon if there are
+#   problems running volumeicon. Ref FS#34239
+
+pkgname=volumeicon
+pkgver=0.5.0
+pkgrel=4
+pkgdesc='Volume control for your system tray'
+arch=('x86_64' 'i686')
+url='http://softwarebakery.com/maato/volumeicon.html'
+license=('GPL3')
+de

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

2014-11-14 Thread Alexander Rødseth
Date: Friday, November 14, 2014 @ 11:12:38
  Author: arodseth
Revision: 122562

upgpkg: volumeicon 0.5.0-4

Modified:
  volumeicon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-11-14 10:12:30 UTC (rev 122561)
+++ PKGBUILD2014-11-14 10:12:38 UTC (rev 122562)
@@ -15,28 +15,22 @@
 license=('GPL3')
 depends=('gtk3' 'alsa-lib' 'libnotify')
 makedepends=('intltool' 'git')
-#source=('git://github.com/stevenhoneyman/volumeicon.git#commit=72322940a5')
-source=('https://github.com/Maato/volumeicon.git#commit=72322940a5')
+source=('git://github.com/Maato/volumeicon.git#commit=090fe14c0f')
 md5sums=('SKIP')
 
 pkgver() {
   cd "$pkgname"
-
   head -1 ChangeLog | cut -d: -f1
 }
 
 prepare() {
   cd "$pkgname"
-
   ./autogen.sh
 }
 
 build() {
   cd "$pkgname"
-
-  ./configure \
---prefix=/usr \
---enable-notify
+  ./configure --prefix=/usr --enable-notify
   make
 }
 


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

2014-11-14 Thread Felix Yan
Date: Friday, November 14, 2014 @ 11:12:27
  Author: fyan
Revision: 122560

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-11-14 10:11:51 UTC (rev 122559)
+++ community-i686/PKGBUILD 2014-11-14 10:12:27 UTC (rev 122560)
@@ -1,92 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor  Bartłomiej Piotrowski 
-# Contributor: Thomas Dziedzic < gostrc at gmail >
-# Contributor: James Campos 
-# Contributor: BlackEagle < ike DOT devolder AT gmail DOT com >
-# Contributor: Dongsheng Cai 
-# Contributor: Masutu Subric 
-# Contributor: TIanyi Cui 
-
-pkgname=nodejs
-pkgver=0.10.33
-_npmver=2.1.8
-pkgrel=4
-pkgdesc='Evented I/O for V8 javascript'
-arch=('i686' 'x86_64')
-url='http://nodejs.org/'
-license=('MIT')
-depends=('openssl')
-provides=('nodejs-node-gyp')
-makedepends=('python2' 'git' 'procps-ng')
-optdepends=('python2: for node-gyp')
-checkdepends=('curl')
-options=('!emptydirs')
-source=("http://nodejs.org/dist/v$pkgver/node-v$pkgver.tar.gz";
-git+https://github.com/npm/npm.git#tag=v$_npmver)
-sha256sums=('75dc26c33144e6d0dc91cb0d68aaf0570ed0a7e4b0c35f3a7a726b500edd081e'
-'SKIP')
-
-prepare() {
-  cd node-v$pkgver
-
-  # We need newer version of npm to fix bugs
-  rm -r deps/npm
-  ln -s "$srcdir/npm" deps
-  rm -r "$srcdir/npm/.git"
-
-  msg 'Fixing for python2 name'
-  find -type f -exec sed \
--e 's_^#!/usr/bin/env python$_&2_' \
--e 's_^\(#!/usr/bin/python2\).[45]$_\1_' \
--e 's_^#!/usr/bin/python$_&2_' \
--e "s_'python'_'python2'_" -i {} \;
-  find test/ -type f -exec sed 's_python _python2 _' -i {} \;
-}
-
-build() {
-  cd node-v$pkgver
-
-  export PYTHON=python2
-  ./configure \
---prefix=/usr \
---shared-openssl
-
-  make
-
-  cd ../npm
-  ../node-v$pkgver/node cli.js install ronn marked
-  PATH="$srcdir/node-v$pkgver:$PATH" make
-  ../node-v$pkgver/node cli.js uninstall ronn marked marked-man
-}
-
-check() {
-  cd node-v$pkgver
-  make test || warning "Tests failed"
-}
-
-package() {
-  cd node-v$pkgver
-
-  make DESTDIR="$pkgdir" install
-
-  # install docs as per user request
-  install -d "$pkgdir"/usr/share/doc/nodejs
-  cp -r doc/api/{*.html,assets} \
-"$pkgdir"/usr/share/doc/nodejs
-
-  install -D -m644 LICENSE \
-"$pkgdir"/usr/share/licenses/nodejs/LICENSE
-
-  install -d "$pkgdir"/usr/share/man/{man1,man3,man5,man7}
-  for _dir in man1 man3 man5 man7; do
-cd "$pkgdir"/usr/lib/node_modules/npm/man/$_dir
-for _file in *; do
-  ln -s /usr/lib/node_modules/npm/man/$_dir/$_file 
"$pkgdir"/usr/share/man/$_dir/
-done
-  done
-
-  ln -s /usr/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js 
"$pkgdir"/usr/bin/node-gyp
-}
-
-# vim:set ts=2 sw=2 et:

Copied: nodejs/repos/community-i686/PKGBUILD (from rev 122559, 
nodejs/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-11-14 10:12:27 UTC (rev 122560)
@@ -0,0 +1,92 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor  Bartłomiej Piotrowski 
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: James Campos 
+# Contributor: BlackEagle < ike DOT devolder AT gmail DOT com >
+# Contributor: Dongsheng Cai 
+# Contributor: Masutu Subric 
+# Contributor: TIanyi Cui 
+
+pkgname=nodejs
+pkgver=0.10.33
+_npmver=2.1.9
+pkgrel=5
+pkgdesc='Evented I/O for V8 javascript'
+arch=('i686' 'x86_64')
+url='http://nodejs.org/'
+license=('MIT')
+depends=('openssl')
+provides=('nodejs-node-gyp')
+makedepends=('python2' 'git' 'procps-ng')
+optdepends=('python2: for node-gyp')
+checkdepends=('curl')
+options=('!emptydirs')
+source=("http://nodejs.org/dist/v$pkgver/node-v$pkgver.tar.gz";
+git+https://github.com/npm/npm.git#tag=v$_npmver)
+sha256sums=('75dc26c33144e6d0dc91cb0d68aaf0570ed0a7e4b0c35f3a7a726b500edd081e'
+'SKIP')
+
+prepare() {
+  cd node-v$pkgver
+
+  # We need newer version of npm to fix bugs
+  rm -r deps/npm
+  ln -s "$srcdir/npm" deps
+  rm -r "$srcdir/npm/.git"
+
+  msg 'Fixing for python2 name'
+  find -type f -exec sed \
+-e 's_^#!/usr/bin/env python$_&2_' \
+-e 's_^\(#!/usr/bin/python2\).[45]$_\1_' \
+-e 's_^#!/usr/bin/python$_&2_' \
+-e "s_'python'_'python2'_" -i {} \;
+  find test/ -type f -exec sed 's_pyt

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

2014-11-14 Thread Alexander Rødseth
Date: Friday, November 14, 2014 @ 11:12:42
  Author: arodseth
Revision: 122563

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

Added:
  wings3d/repos/community-i686/PKGBUILD
(from rev 122562, wings3d/trunk/PKGBUILD)
  wings3d/repos/community-i686/wings3d.install
(from rev 122562, wings3d/trunk/wings3d.install)
  wings3d/repos/community-i686/wings3d.sh
(from rev 122562, wings3d/trunk/wings3d.sh)
  wings3d/repos/community-x86_64/PKGBUILD
(from rev 122561, wings3d/trunk/PKGBUILD)
  wings3d/repos/community-x86_64/wings3d.install
(from rev 122561, wings3d/trunk/wings3d.install)
  wings3d/repos/community-x86_64/wings3d.sh
(from rev 122561, wings3d/trunk/wings3d.sh)
Deleted:
  wings3d/repos/community-i686/PKGBUILD
  wings3d/repos/community-i686/wings3d.install
  wings3d/repos/community-i686/wings3d.sh
  wings3d/repos/community-x86_64/PKGBUILD
  wings3d/repos/community-x86_64/wings3d.install
  wings3d/repos/community-x86_64/wings3d.sh

--+
 /PKGBUILD|   90 +
 /wings3d.install |   26 ++
 /wings3d.sh  |4 +
 community-i686/PKGBUILD  |   46 --
 community-i686/wings3d.install   |   13 -
 community-i686/wings3d.sh|2 
 community-x86_64/PKGBUILD|   46 --
 community-x86_64/wings3d.install |   13 -
 community-x86_64/wings3d.sh  |2 
 9 files changed, 120 insertions(+), 122 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-11-14 10:12:38 UTC (rev 122562)
+++ community-i686/PKGBUILD 2014-11-14 10:12:42 UTC (rev 122563)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: kappa 
-
-pkgname=wings3d
-_pkgname=wings
-pkgver=1.5.3
-pkgrel=1
-pkgdesc='3D modeling program'
-arch=('x86_64' 'i686')
-url='http://www.wings3d.com/'
-license=('GPL')
-depends=('erlang-sdl' 'erlang-cl' 'bash' 'desktop-file-utils' 'erlang')
-makedepends=('gendesk')
-optdepends=('povray: rendering support via POV-Ray')
-install=$pkgname.install
-source=("http://downloads.sourceforge.net/project/wings/wings/$pkgver/wings-$pkgver.tar.bz2";
-"$pkgname.sh"
-
"$pkgname.png::http://img299.imageshack.us/img299/2538/wingsiconblackshiningew5.png";)
-sha256sums=('c08060016f83679ce08947942d31af0e3b5d105525d0df5e993ec6f1a81fdd8e'
-'46513cd05f8b6e778120af4a87b239c5250799c17b591592893d98cbf082359e'
-'6658977cc3bc8db2c9358edf3a2d6cb6bb8084c9a1d96ca573a83dd4e8781f1a')
-
-prepare() {
-  gendesk -f --pkgname "$pkgname" --pkgdesc "$pkgdesc" --name 'Wings3D' \
---genericname '3D Modeler' --categories 'Graphics;3DGraphics'
-}
-
-build() {
-  export ESDL_PATH=$(echo /usr/lib/erlang/lib/esdl-*)
-  make -C "$_pkgname-$pkgver" all lang
-}
-
-package() {
-  install -Dm644 "$pkgname.png" "$pkgdir/usr/share/pixmaps/$pkgname.png"
-  install -Dm644 "$pkgname.desktop" \
-"$pkgdir/usr/share/applications/$pkgname.desktop"
-  install -Dm755 "$pkgname.sh" "$pkgdir/usr/bin/$pkgname"
-  cd "$_pkgname-$pkgver"
-  install -d "$pkgdir/usr/lib/$pkgname"
-  for subdir in ebin fonts patches plugins shaders textures; do
-cp -r "$srcdir/$_pkgname-$pkgver/$subdir/" "$pkgdir/usr/lib/$pkgname"
-  done
-}
-
-# vim:set ts=2 sw=2 et:

Copied: wings3d/repos/community-i686/PKGBUILD (from rev 122562, 
wings3d/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-11-14 10:12:42 UTC (rev 122563)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: kappa 
+
+pkgname=wings3d
+_pkgname=wings
+pkgver=1.5.3
+pkgrel=2
+pkgdesc='3D modeling program'
+arch=('x86_64' 'i686')
+url='http://www.wings3d.com/'
+license=('GPL')
+depends=('erlang-sdl' 'erlang-cl' 'bash' 'desktop-file-utils' 'erlang')
+makedepends=('gendesk' 'imagemagick')
+optdepends=('povray: rendering support via POV-Ray')
+install="$pkgname.install"
+source=("http://downloads.sourceforge.net/project/wings/wings/$pkgver/wings-$pkgver.tar.bz2";
+"$pkgname.sh")
+sha256sums=('c08060016f83679ce08947942d31af0e3b5d105525d0df5e993ec6f1a81fdd8e'
+'46513cd05f8b6e778120af4a87b239c5250799c17b591592893d98cbf082359e')
+
+prepare() {
+  gendesk -f --pkgname "$pkgname" --pkgdesc "$pkgdesc" --name 'Wings3D' \
+--genericname '3D Modeler' --categories 'Graphics;3DGraphics'
+  convert "$_pkgname-$pkgver/win32/wings.ico" "$pkgname.png"
+}
+
+build() {
+  export ESDL_PATH=$(echo /usr/lib/erlang/lib/esdl-*)
+  make -C "$_pkgname-$pkgver" all lang
+}
+
+package() {
+  install -Dm644 "$pkgname.png" "$pkgdir/usr/share/pixmaps/$pkgname.png"
+  install -Dm644 "$pkgname.desktop" \
+"$pkgdir/usr/share/applications/$pkgname.desktop"
+  install -Dm755 "$pkgname.sh" "$pkgdir/usr/bin/$pk

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

2014-11-14 Thread Alexander Rødseth
Date: Friday, November 14, 2014 @ 11:12:30
  Author: arodseth
Revision: 122561

upgpkg: wings3d 1.5.3-2

Modified:
  wings3d/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-11-14 10:12:27 UTC (rev 122560)
+++ PKGBUILD2014-11-14 10:12:30 UTC (rev 122561)
@@ -5,25 +5,24 @@
 pkgname=wings3d
 _pkgname=wings
 pkgver=1.5.3
-pkgrel=1
+pkgrel=2
 pkgdesc='3D modeling program'
 arch=('x86_64' 'i686')
 url='http://www.wings3d.com/'
 license=('GPL')
 depends=('erlang-sdl' 'erlang-cl' 'bash' 'desktop-file-utils' 'erlang')
-makedepends=('gendesk')
+makedepends=('gendesk' 'imagemagick')
 optdepends=('povray: rendering support via POV-Ray')
-install=$pkgname.install
+install="$pkgname.install"
 
source=("http://downloads.sourceforge.net/project/wings/wings/$pkgver/wings-$pkgver.tar.bz2";
-"$pkgname.sh"
-
"$pkgname.png::http://img299.imageshack.us/img299/2538/wingsiconblackshiningew5.png";)
+"$pkgname.sh")
 sha256sums=('c08060016f83679ce08947942d31af0e3b5d105525d0df5e993ec6f1a81fdd8e'
-'46513cd05f8b6e778120af4a87b239c5250799c17b591592893d98cbf082359e'
-'6658977cc3bc8db2c9358edf3a2d6cb6bb8084c9a1d96ca573a83dd4e8781f1a')
+'46513cd05f8b6e778120af4a87b239c5250799c17b591592893d98cbf082359e')
 
 prepare() {
   gendesk -f --pkgname "$pkgname" --pkgdesc "$pkgdesc" --name 'Wings3D' \
 --genericname '3D Modeler' --categories 'Graphics;3DGraphics'
+  convert "$_pkgname-$pkgver/win32/wings.ico" "$pkgname.png"
 }
 
 build() {


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

2014-11-14 Thread Felix Yan
Date: Friday, November 14, 2014 @ 11:11:51
  Author: fyan
Revision: 122559

upgpkg: nodejs 0.10.33-5

update npm to 2.1.9

Modified:
  nodejs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-11-14 10:07:54 UTC (rev 122558)
+++ PKGBUILD2014-11-14 10:11:51 UTC (rev 122559)
@@ -10,8 +10,8 @@
 
 pkgname=nodejs
 pkgver=0.10.33
-_npmver=2.1.8
-pkgrel=4
+_npmver=2.1.9
+pkgrel=5
 pkgdesc='Evented I/O for V8 javascript'
 arch=('i686' 'x86_64')
 url='http://nodejs.org/'


[arch-commits] Commit in lib32-p11-kit/repos/community-testing-x86_64 (2 files)

2014-11-14 Thread Jan Steffens
Date: Friday, November 14, 2014 @ 11:07:21
  Author: heftig
Revision: 122557

archrelease: copy trunk to community-testing-x86_64

Added:
  lib32-p11-kit/repos/community-testing-x86_64/PKGBUILD
(from rev 122556, lib32-p11-kit/trunk/PKGBUILD)
Deleted:
  lib32-p11-kit/repos/community-testing-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-11-14 10:01:45 UTC (rev 122556)
+++ PKGBUILD2014-11-14 10:07:21 UTC (rev 122557)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Florian Pritz 
-# Contributor: Christoph Vigano 
-
-_pkgbasename=p11-kit
-pkgname=lib32-$_pkgbasename
-pkgver=0.22.1
-pkgrel=2
-pkgdesc="Library to work with PKCS#11 modules (32-bit)"
-arch=(x86_64)
-url="http://p11-glue.freedesktop.org";
-license=('BSD')
-depends=(lib32-glibc lib32-libtasn1 lib32-libffi $_pkgbasename)
-options=(!libtool)
-source=($url/releases/$_pkgbasename-$pkgver.tar.gz{,.sig})
-md5sums=('4e9bea1106628ffb820bdad24a819fac'
- 'SKIP')
-
-build() {
-  export CC="gcc -m32"
-  export CXX="g++ -m32"
-  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
-  cd "$srcdir/$_pkgbasename-$pkgver"
-
-  ./configure --prefix=/usr --libdir=/usr/lib32 --sysconfdir=/etc \
---with-module-path=/usr/lib32/pkcs11 \
-
--with-trust-paths=/etc/ca-certificates/trust-source:/usr/share/ca-certificates/trust-source
-  make
-}
-
-check() {
-  cd "$srcdir/$_pkgbasename-$pkgver"
-  make check
-}
-
-package() {
-  cd "$srcdir/$_pkgbasename-$pkgver"
-  make DESTDIR="$pkgdir" install
-  rm -rf "${pkgdir}"/etc
-  rm -rf "${pkgdir}"/usr/{bin,include,share}
-  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
-}
-
-# vim:set ts=2 sw=2 et:

Copied: lib32-p11-kit/repos/community-testing-x86_64/PKGBUILD (from rev 122556, 
lib32-p11-kit/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-11-14 10:07:21 UTC (rev 122557)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Florian Pritz 
+# Contributor: Christoph Vigano 
+
+_pkgbasename=p11-kit
+pkgname=lib32-$_pkgbasename
+pkgver=0.22.1
+pkgrel=3
+pkgdesc="Library to work with PKCS#11 modules (32-bit)"
+arch=(x86_64)
+url="http://p11-glue.freedesktop.org";
+license=('BSD')
+depends=(lib32-glibc lib32-libtasn1 lib32-libffi $_pkgbasename)
+options=(!libtool)
+source=($url/releases/$_pkgbasename-$pkgver.tar.gz{,.sig})
+md5sums=('4e9bea1106628ffb820bdad24a819fac'
+ 'SKIP')
+
+build() {
+  export CC="gcc -m32"
+  export CXX="g++ -m32"
+  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
+  cd "$srcdir/$_pkgbasename-$pkgver"
+
+  ./configure --prefix=/usr --libdir=/usr/lib32 --sysconfdir=/etc \
+--with-module-path=/usr/lib32/pkcs11 \
+
--with-trust-paths=/etc/ca-certificates/trust-source:/usr/share/ca-certificates/trust-source
+  make
+}
+
+check() {
+  cd "$srcdir/$_pkgbasename-$pkgver"
+  make check
+}
+
+package() {
+  cd "$srcdir/$_pkgbasename-$pkgver"
+  make DESTDIR="$pkgdir" install
+  rm -rf "${pkgdir}"/etc
+  rm -rf "${pkgdir}"/usr/{bin,include,share}
+  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+
+  ln -srf "$pkgdir/usr/bin/update-ca-trust" 
"$pkgdir/usr/lib32/p11-kit/trust-extract-compat"
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in perl-test-leaktrace/repos (4 files)

2014-11-14 Thread Felix Yan
Date: Friday, November 14, 2014 @ 11:01:45
  Author: fyan
Revision: 122556

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

Added:
  perl-test-leaktrace/repos/community-i686/PKGBUILD
(from rev 122555, perl-test-leaktrace/trunk/PKGBUILD)
  perl-test-leaktrace/repos/community-x86_64/PKGBUILD
(from rev 122555, perl-test-leaktrace/trunk/PKGBUILD)
Deleted:
  perl-test-leaktrace/repos/community-i686/PKGBUILD
  perl-test-leaktrace/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-11-14 10:00:05 UTC (rev 122555)
+++ community-i686/PKGBUILD 2014-11-14 10:01:45 UTC (rev 122556)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: John D Jones III 

-# Generator  : CPANPLUS::Dist::Arch 1.25
-
-pkgname=perl-test-leaktrace
-pkgver=0.14
-pkgrel=2
-pkgdesc="Traces memory leaks"
-arch=('i686' 'x86_64')
-license=('PerlArtistic' 'GPL')
-options=('!emptydirs')
-depends=('perl')
-url='http://search.cpan.org/dist/Test-LeakTrace'
-source=('http://search.cpan.org/CPAN/authors/id/G/GF/GFUJI/Test-LeakTrace-0.14.tar.gz')
-sha512sums=('1bbd77bc2bc081a51b1f9fc946ece08bc5266efa41ac52d7216622b56ab2b122b419fdc0ba9f6a329eb506d6be56711b823310ef71b3171da0e13d4d3a8497d1')
-_distdir="Test-LeakTrace-0.14"
-
-build() {
-  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB="" \
-  PERL_AUTOINSTALL=--skipdeps\
-  PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='$pkgdir'" \
-  PERL_MB_OPT="--installdirs vendor --destdir '$pkgdir'" \
-  MODULEBUILDRC=/dev/null
-
-cd "$srcdir/$_distdir"
-/usr/bin/perl Makefile.PL
-make
-  )
-}
-
-check() {
-  cd "$srcdir/$_distdir"
-  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB=""
-make test
-  )
-}
-
-package() {
-  cd "$srcdir/$_distdir"
-  make install
-
-  find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
-}
-
-# Local Variables:
-# mode: shell-script
-# sh-basic-offset: 2
-# End:
-# vim:set ts=2 sw=2 et:

Copied: perl-test-leaktrace/repos/community-i686/PKGBUILD (from rev 122555, 
perl-test-leaktrace/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-11-14 10:01:45 UTC (rev 122556)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: John D Jones III 

+# Generator  : CPANPLUS::Dist::Arch 1.25
+
+pkgname=perl-test-leaktrace
+pkgver=0.15
+pkgrel=1
+pkgdesc="Traces memory leaks"
+arch=('i686' 'x86_64')
+license=('PerlArtistic' 'GPL')
+options=('!emptydirs')
+depends=('perl')
+url='http://search.cpan.org/dist/Test-LeakTrace'
+source=('http://search.cpan.org/CPAN/authors/id/G/GF/GFUJI/Test-LeakTrace-0.14.tar.gz')
+sha512sums=('1bbd77bc2bc081a51b1f9fc946ece08bc5266efa41ac52d7216622b56ab2b122b419fdc0ba9f6a329eb506d6be56711b823310ef71b3171da0e13d4d3a8497d1')
+_distdir="Test-LeakTrace-0.14"
+
+build() {
+  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB="" \
+  PERL_AUTOINSTALL=--skipdeps\
+  PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='$pkgdir'" \
+  PERL_MB_OPT="--installdirs vendor --destdir '$pkgdir'" \
+  MODULEBUILDRC=/dev/null
+
+cd "$srcdir/$_distdir"
+/usr/bin/perl Makefile.PL
+make
+  )
+}
+
+check() {
+  cd "$srcdir/$_distdir"
+  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB=""
+make test
+  )
+}
+
+package() {
+  cd "$srcdir/$_distdir"
+  make install
+
+  find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
+}
+
+# Local Variables:
+# mode: shell-script
+# sh-basic-offset: 2
+# End:
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-11-14 10:00:05 UTC (rev 122555)
+++ community-x86_64/PKGBUILD   2014-11-14 10:01:45 UTC (rev 122556)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: John D Jones III 

-# Generator  : CPANPLUS::Dist::Arch 1.25
-
-pkgname=perl-test-leaktrace
-pkgver=0.14
-pkgrel=2
-pkgdesc="Traces memory leaks"
-arch=('i686' 'x86_64')
-license=('PerlArtistic' 'GPL')
-options=('!emptydirs')
-depends=('perl')
-url='http://search.cpan.org/dist/Test-LeakTrace'
-source=('http://search.cpan.org/CPAN/authors/id/G/GF/GFUJI/Test-LeakTrace-0.14.tar.gz')
-sha512sums=('1bbd77bc2bc081a51b1f9fc946ece08bc5266efa41ac52d7216622b56ab2b122b419fdc0ba9f6a329eb506d6be56711b823310ef71b3171da0e13d4d3a8497d1')
-_distdir="Test-LeakTrace-0.14"
-
-build() {
-  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB="" \
-  PERL_AUTOINSTALL=--skipdeps  

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

2014-11-14 Thread Jan Steffens
Date: Friday, November 14, 2014 @ 11:01:12
  Author: heftig
Revision: 226226

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

Added:
  p11-kit/repos/testing-i686/PKGBUILD
(from rev 226225, p11-kit/trunk/PKGBUILD)
  p11-kit/repos/testing-x86_64/PKGBUILD
(from rev 226225, p11-kit/trunk/PKGBUILD)
Deleted:
  p11-kit/repos/testing-i686/PKGBUILD
  p11-kit/repos/testing-x86_64/PKGBUILD

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

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2014-11-14 10:01:01 UTC (rev 226225)
+++ testing-i686/PKGBUILD   2014-11-14 10:01:12 UTC (rev 226226)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru 
-
-pkgname=p11-kit
-pkgver=0.22.1
-pkgrel=2
-pkgdesc="Library to work with PKCS#11 modules"
-arch=(i686 x86_64)
-url="http://p11-glue.freedesktop.org";
-license=('BSD')
-depends=('glibc' 'libtasn1' 'libffi')
-source=($url/releases/$pkgname-$pkgver.tar.gz{,.sig})
-md5sums=('4e9bea1106628ffb820bdad24a819fac'
- 'SKIP')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc \
---with-module-path=/usr/lib/pkcs11 \
-
--with-trust-paths=/etc/ca-certificates/trust-source:/usr/share/ca-certificates/trust-source
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd  $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
-}
-
-# vim:set ts=2 sw=2 et:

Copied: p11-kit/repos/testing-i686/PKGBUILD (from rev 226225, 
p11-kit/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-11-14 10:01:12 UTC (rev 226226)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Ionut Biru 
+
+pkgname=p11-kit
+pkgver=0.22.1
+pkgrel=3
+pkgdesc="Library to work with PKCS#11 modules"
+arch=(i686 x86_64)
+url="http://p11-glue.freedesktop.org";
+license=('BSD')
+depends=('glibc' 'libtasn1' 'libffi')
+source=($url/releases/$pkgname-$pkgver.tar.gz{,.sig})
+md5sums=('4e9bea1106628ffb820bdad24a819fac'
+ 'SKIP')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc \
+--with-module-path=/usr/lib/pkcs11 \
+
--with-trust-paths=/etc/ca-certificates/trust-source:/usr/share/ca-certificates/trust-source
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd  $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+
+  ln -srf "$pkgdir/usr/bin/update-ca-trust" 
"$pkgdir/usr/lib/p11-kit/trust-extract-compat"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: testing-x86_64/PKGBUILD
===
--- testing-x86_64/PKGBUILD 2014-11-14 10:01:01 UTC (rev 226225)
+++ testing-x86_64/PKGBUILD 2014-11-14 10:01:12 UTC (rev 226226)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru 
-
-pkgname=p11-kit
-pkgver=0.22.1
-pkgrel=2
-pkgdesc="Library to work with PKCS#11 modules"
-arch=(i686 x86_64)
-url="http://p11-glue.freedesktop.org";
-license=('BSD')
-depends=('glibc' 'libtasn1' 'libffi')
-source=($url/releases/$pkgname-$pkgver.tar.gz{,.sig})
-md5sums=('4e9bea1106628ffb820bdad24a819fac'
- 'SKIP')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc \
---with-module-path=/usr/lib/pkcs11 \
-
--with-trust-paths=/etc/ca-certificates/trust-source:/usr/share/ca-certificates/trust-source
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd  $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
-}
-
-# vim:set ts=2 sw=2 et:

Copied: p11-kit/repos/testing-x86_64/PKGBUILD (from rev 226225, 
p11-kit/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-11-14 10:01:12 UTC (rev 226226)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Ionut Biru 
+
+pkgname=p11-kit
+pkgver=0.22.1
+pkgrel=3
+pkgdesc="Library to work with PKCS#11 modules"
+arch=(i686 x86_64)
+url="http://p11-glue.freedesktop.org";
+license=('BSD')
+depends=('glibc' 'libtasn1' 'libffi')
+source=($url/releases/$pkgname-$pkgver.tar.gz{,.sig})
+md5sums=('4e9bea1106628ffb820bdad24a819fac'
+ 'SKIP')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc \
+--with-module-path=/usr/lib/pkcs11 \
+
--with-trust-paths=/etc/ca-certificates/trust-source:/usr/share/ca-certificates/trust-source
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+ 

[arch-commits] Commit in ca-certificates/repos/testing-any (8 files)

2014-11-14 Thread Jan Steffens
Date: Friday, November 14, 2014 @ 11:01:01
  Author: heftig
Revision: 226225

archrelease: copy trunk to testing-any

Added:
  ca-certificates/repos/testing-any/PKGBUILD
(from rev 226224, ca-certificates/trunk/PKGBUILD)
  ca-certificates/repos/testing-any/ca-certificates-utils.install
(from rev 226224, ca-certificates/trunk/ca-certificates-utils.install)
  ca-certificates/repos/testing-any/update-ca-trust
(from rev 226224, ca-certificates/trunk/update-ca-trust)
  ca-certificates/repos/testing-any/update-ca-trust.8.txt
(from rev 226224, ca-certificates/trunk/update-ca-trust.8.txt)
Deleted:
  ca-certificates/repos/testing-any/PKGBUILD
  ca-certificates/repos/testing-any/ca-certificates-utils.install
  ca-certificates/repos/testing-any/update-ca-trust
  ca-certificates/repos/testing-any/update-ca-trust.8.txt

---+
 PKGBUILD  |  110 
 ca-certificates-utils.install |   90 +++
 update-ca-trust   |   44 +--
 update-ca-trust.8.txt |  490 
 4 files changed, 367 insertions(+), 367 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-11-14 09:59:30 UTC (rev 226224)
+++ PKGBUILD2014-11-14 10:01:01 UTC (rev 226225)
@@ -1,55 +0,0 @@
-# $Id$
-# Maintainer: Pierre Schmitz 
-
-pkgbase=ca-certificates
-pkgname=(ca-certificates-utils ca-certificates)
-pkgver=20140923
-pkgrel=4
-pkgdesc='Common CA certificates'
-arch=('any')
-url='http://pkgs.fedoraproject.org/cgit/ca-certificates.git'
-license=('GPL2')
-depends=('sh' 'p11-kit')
-makedepends=('asciidoc')
-source=(update-ca-trust update-ca-trust.8.txt)
-sha256sums=('c737236405320440665c9e7034585fde95d34495fc65789591a7ab76dc7568d5'
-'52f7067ced3771bfa315e4b2a4d078ba0502b663ed4d87a9a18558e14d4ed99e')
-
-_confdir=/etc/$pkgbase
-_datadir=/usr/share/$pkgbase
-
-build() {
-   asciidoc.py -v -d manpage -b docbook update-ca-trust.8.txt
-   xsltproc --nonet -o update-ca-trust.8 
/etc/asciidoc/docbook-xsl/manpage.xsl update-ca-trust.8.xml
-}
-
-package_ca-certificates-utils() {
-   pkgdesc+=" (utilities)"
-   install=ca-certificates-utils.install
-   provides=(ca-certificates ca-certificates-java)
-   conflicts=(ca-certificates-java)
-   replaces=(ca-certificates-java)
-
-   install -D update-ca-trust "${pkgdir}/usr/bin/update-ca-trust"
-   install -Dm644 update-ca-trust.8 
"${pkgdir}/usr/share/man/man8/update-ca-trust.8"
-
-   install -d 
"${pkgdir}"{${_confdir},${_datadir}}/trust-source/{anchors,blacklist}
-
-   _extractdir="${pkgdir}${_confdir}/extracted"
-   _ssldir="${pkgdir}/etc/ssl"
-
-   install -d "${_ssldir}/certs/java" "${_extractdir}"/{openssl,pem,java}
-   ln -sr "${_extractdir}/openssl/ca-bundle.trust.crt" 
"${_ssldir}/certs/ca-bundle.trust.crt"
-   ln -sr "${_extractdir}/pem/tls-ca-bundle.pem" "${_ssldir}/cert.pem"
-
-   # These are inverted (for now?) to ease upgrading
-   ln -sr "${_ssldir}/certs/ca-certificates.crt" 
"${_extractdir}/pem/tls-ca-bundle.pem"
-   ln -sr "${_ssldir}/certs/java/cacerts" "${_extractdir}/java/cacerts" 
-}
-
-package_ca-certificates() {
-   pkgdesc+=" (default providers)"
-   depends=(ca-certificates-{mozilla,cacert})
-}
-
-# vim:set noet ts=8 sw=8:

Copied: ca-certificates/repos/testing-any/PKGBUILD (from rev 226224, 
ca-certificates/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-11-14 10:01:01 UTC (rev 226225)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Pierre Schmitz 
+
+pkgbase=ca-certificates
+pkgname=(ca-certificates-utils ca-certificates)
+pkgver=20140923
+pkgrel=5
+pkgdesc='Common CA certificates'
+arch=('any')
+url='http://pkgs.fedoraproject.org/cgit/ca-certificates.git'
+license=('GPL2')
+depends=('sh' 'p11-kit')
+makedepends=('asciidoc')
+source=(update-ca-trust update-ca-trust.8.txt)
+sha256sums=('3387eb3e03088cfddc3fbb8cfacd3da0307f795a9387f31b69cd02764287399a'
+'52f7067ced3771bfa315e4b2a4d078ba0502b663ed4d87a9a18558e14d4ed99e')
+
+_confdir=/etc/$pkgbase
+_datadir=/usr/share/$pkgbase
+
+build() {
+   asciidoc.py -v -d manpage -b docbook update-ca-trust.8.txt
+   xsltproc --nonet -o update-ca-trust.8 
/etc/asciidoc/docbook-xsl/manpage.xsl update-ca-trust.8.xml
+}
+
+package_ca-certificates-utils() {
+   pkgdesc+=" (utilities)"
+   install=ca-certificates-utils.install
+   provides=(ca-certificates ca-certificates-java)
+   conflicts=(ca-certificates-java)
+   replaces=(ca-certificates-java)
+
+   install -D update-ca-trust "${pkgdir}/usr/bin/update-ca-trust"
+   install -Dm644 update-ca-trust.8 
"${pkgdir}/usr/share/man/man8/update-ca-trust.8"
+
+   install -d 
"${pkgdir}"{${_confdir},${_datadir}}/trust-source/{anchors,blacklist}
+
+   _extractdir="${pkgdir}${_confdir}/extracted"

[arch-commits] Commit in perl-test-leaktrace/trunk (PKGBUILD)

2014-11-14 Thread Felix Yan
Date: Friday, November 14, 2014 @ 11:00:05
  Author: fyan
Revision: 122555

upgpkg: perl-test-leaktrace 0.15-1

Modified:
  perl-test-leaktrace/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-11-14 10:00:01 UTC (rev 122554)
+++ PKGBUILD2014-11-14 10:00:05 UTC (rev 122555)
@@ -1,11 +1,11 @@
 # $Id$
-# Maintainer: Felix Yan 
+# Maintainer: Felix Yan 
 # Contributor: John D Jones III 

 # Generator  : CPANPLUS::Dist::Arch 1.25
 
 pkgname=perl-test-leaktrace
-pkgver=0.14
-pkgrel=2
+pkgver=0.15
+pkgrel=1
 pkgdesc="Traces memory leaks"
 arch=('i686' 'x86_64')
 license=('PerlArtistic' 'GPL')


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

2014-11-14 Thread Jan Steffens
Date: Friday, November 14, 2014 @ 11:00:01
  Author: heftig
Revision: 122554

Make `trust extract-compat` do something

Modified:
  lib32-p11-kit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-11-14 09:48:07 UTC (rev 122553)
+++ PKGBUILD2014-11-14 10:00:01 UTC (rev 122554)
@@ -5,7 +5,7 @@
 _pkgbasename=p11-kit
 pkgname=lib32-$_pkgbasename
 pkgver=0.22.1
-pkgrel=2
+pkgrel=3
 pkgdesc="Library to work with PKCS#11 modules (32-bit)"
 arch=(x86_64)
 url="http://p11-glue.freedesktop.org";
@@ -39,6 +39,8 @@
   rm -rf "${pkgdir}"/etc
   rm -rf "${pkgdir}"/usr/{bin,include,share}
   install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+
+  ln -srf "$pkgdir/usr/bin/update-ca-trust" 
"$pkgdir/usr/lib32/p11-kit/trust-extract-compat"
 }
 
 # vim:set ts=2 sw=2 et:


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

2014-11-14 Thread Jan Steffens
Date: Friday, November 14, 2014 @ 10:59:30
  Author: heftig
Revision: 226224

Make `trust extract-compat` do something

Modified:
  p11-kit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-11-14 09:58:06 UTC (rev 226223)
+++ PKGBUILD2014-11-14 09:59:30 UTC (rev 226224)
@@ -3,7 +3,7 @@
 
 pkgname=p11-kit
 pkgver=0.22.1
-pkgrel=2
+pkgrel=3
 pkgdesc="Library to work with PKCS#11 modules"
 arch=(i686 x86_64)
 url="http://p11-glue.freedesktop.org";
@@ -30,6 +30,8 @@
   cd  $pkgname-$pkgver
   make DESTDIR="$pkgdir" install
   install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+
+  ln -srf "$pkgdir/usr/bin/update-ca-trust" 
"$pkgdir/usr/lib/p11-kit/trust-extract-compat"
 }
 
 # vim:set ts=2 sw=2 et:


[arch-commits] Commit in ca-certificates/trunk (ca-certificates-utils.install)

2014-11-14 Thread Jan Steffens
Date: Friday, November 14, 2014 @ 10:58:06
  Author: heftig
Revision: 226223

Mention `trust --help`

Modified:
  ca-certificates/trunk/ca-certificates-utils.install

---+
 ca-certificates-utils.install |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: ca-certificates-utils.install
===
--- ca-certificates-utils.install   2014-11-14 09:57:06 UTC (rev 226222)
+++ ca-certificates-utils.install   2014-11-14 09:58:06 UTC (rev 226223)
@@ -33,7 +33,7 @@
   4. In programs that have settings like "ca_dir = /etc/ssl/certs",
  change them to "ca_file = /etc/ssl/certs/ca-certificates.crt"
 
-  Also see \`man 8 update-ca-trust\`.
+  Also see \`man 8 update-ca-trust\` and \`trust --help\`.
 MSG
fi
 }


[arch-commits] Commit in ca-certificates/trunk (PKGBUILD update-ca-trust)

2014-11-14 Thread Jan Steffens
Date: Friday, November 14, 2014 @ 10:57:06
  Author: heftig
Revision: 226222

Use "trust extract", which is actually documented in --help

Modified:
  ca-certificates/trunk/PKGBUILD
  ca-certificates/trunk/update-ca-trust

-+
 PKGBUILD|4 ++--
 update-ca-trust |   14 +++---
 2 files changed, 9 insertions(+), 9 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-11-14 09:09:03 UTC (rev 226221)
+++ PKGBUILD2014-11-14 09:57:06 UTC (rev 226222)
@@ -4,7 +4,7 @@
 pkgbase=ca-certificates
 pkgname=(ca-certificates-utils ca-certificates)
 pkgver=20140923
-pkgrel=4
+pkgrel=5
 pkgdesc='Common CA certificates'
 arch=('any')
 url='http://pkgs.fedoraproject.org/cgit/ca-certificates.git'
@@ -12,7 +12,7 @@
 depends=('sh' 'p11-kit')
 makedepends=('asciidoc')
 source=(update-ca-trust update-ca-trust.8.txt)
-sha256sums=('c737236405320440665c9e7034585fde95d34495fc65789591a7ab76dc7568d5'
+sha256sums=('3387eb3e03088cfddc3fbb8cfacd3da0307f795a9387f31b69cd02764287399a'
 '52f7067ced3771bfa315e4b2a4d078ba0502b663ed4d87a9a18558e14d4ed99e')
 
 _confdir=/etc/$pkgbase

Modified: update-ca-trust
===
--- update-ca-trust 2014-11-14 09:09:03 UTC (rev 226221)
+++ update-ca-trust 2014-11-14 09:57:06 UTC (rev 226222)
@@ -11,12 +11,12 @@
 
 # OpenSSL PEM bundle that includes trust flags
 # (BEGIN TRUSTED CERTIFICATE)
-/usr/bin/p11-kit extract --format=openssl-bundle --filter=certificates 
--overwrite $DEST/openssl/ca-bundle.trust.crt
-#/usr/bin/p11-kit extract --format=pem-bundle --filter=ca-anchors --overwrite 
--purpose server-auth $DEST/pem/tls-ca-bundle.pem
-/usr/bin/p11-kit extract --format=pem-bundle --filter=ca-anchors --overwrite 
--purpose email $DEST/pem/email-ca-bundle.pem
-/usr/bin/p11-kit extract --format=pem-bundle --filter=ca-anchors --overwrite 
--purpose code-signing $DEST/pem/objsign-ca-bundle.pem
-#/usr/bin/p11-kit extract --format=java-cacerts --filter=ca-anchors 
--overwrite --purpose server-auth $DEST/java/cacerts
+trust extract --format=openssl-bundle --filter=certificates --overwrite 
$DEST/openssl/ca-bundle.trust.crt
+#trust extract --format=pem-bundle --filter=ca-anchors --overwrite --purpose 
server-auth $DEST/pem/tls-ca-bundle.pem
+trust extract --format=pem-bundle --filter=ca-anchors --overwrite --purpose 
email $DEST/pem/email-ca-bundle.pem
+trust extract --format=pem-bundle --filter=ca-anchors --overwrite --purpose 
code-signing $DEST/pem/objsign-ca-bundle.pem
+#trust extract --format=java-cacerts --filter=ca-anchors --overwrite --purpose 
server-auth $DEST/java/cacerts
 
 # Make upgrade on Arch smooth, by inverting some locations
-/usr/bin/p11-kit extract --format=pem-bundle --filter=ca-anchors --overwrite 
--purpose server-auth /etc/ssl/certs/ca-certificates.crt
-/usr/bin/p11-kit extract --format=java-cacerts --filter=ca-anchors --overwrite 
--purpose server-auth /etc/ssl/certs/java/cacerts
+trust extract --format=pem-bundle --filter=ca-anchors --overwrite --purpose 
server-auth /etc/ssl/certs/ca-certificates.crt
+trust extract --format=java-cacerts --filter=ca-anchors --overwrite --purpose 
server-auth /etc/ssl/certs/java/cacerts


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

2014-11-14 Thread Alexander Rødseth
Date: Friday, November 14, 2014 @ 10:47:55
  Author: arodseth
Revision: 122552

upgpkg: nim 0.9.6-2

Modified:
  nim/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-11-14 09:43:18 UTC (rev 122551)
+++ PKGBUILD2014-11-14 09:47:55 UTC (rev 122552)
@@ -6,7 +6,7 @@
 
 pkgname=nim
 pkgver=0.9.6
-pkgrel=1
+pkgrel=2
 pkgdesc='Imperative, multi-paradigm, compiled programming language'
 arch=('x86_64' 'i686')
 url='http://nimrod-code.org/'
@@ -65,6 +65,7 @@
   install -m644 "lib/libnimrtl.so" "$pkgdir/usr/lib/libnimrtl.so"
   install -m755 "tools/nimgrep" "$pkgdir/usr/bin/"
   install -Dm644 "copying.txt" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+  ln -s /usr/bin/nim "$pkgdir/usr/bin/nimrod"
 }
 
 # vim:set ts=2 sw=2 et:


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

2014-11-14 Thread Alexander Rødseth
Date: Friday, November 14, 2014 @ 10:48:07
  Author: arodseth
Revision: 122553

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

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

---+
 /PKGBUILD |  142 
 community-i686/PKGBUILD   |   69 -
 community-x86_64/PKGBUILD |   69 -
 3 files changed, 142 insertions(+), 138 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-11-14 09:47:55 UTC (rev 122552)
+++ community-i686/PKGBUILD 2014-11-14 09:48:07 UTC (rev 122553)
@@ -1,69 +0,0 @@
-# $Id: PKGBUILD 121061 2014-10-20 12:57:19Z arodseth $
-# Maintainer: Alexander Rødseth 
-# Contributor: Dominik Picheta 
-# Contributor: Sven-Hendrik Haase 
-# Contributor: Jesus Alvarez 
-
-pkgname=nim
-pkgver=0.9.6
-pkgrel=1
-pkgdesc='Imperative, multi-paradigm, compiled programming language'
-arch=('x86_64' 'i686')
-url='http://nimrod-code.org/'
-license=('MIT')
-makedepends=('git')
-replaces=('nimrod')
-options=('!emptydirs')
-source=("$pkgname::git://github.com/Araq/Nimrod.git#commit=06a4ab54aa")
-#source=("$pkgname::git://github.com/Araq/Nimrod.git#tag=v$pkgver")
-md5sums=('SKIP')
-
-prepare() {
-  cd "$pkgname"
-
-  rm build/empty.txt && rmdir build
-  git clone --depth=1 git://github.com/nimrod-code/csources build
-}
-
-build() {
-  cd "$pkgname/build"
-  sh build.sh
-  cd ..
-
-  ./bin/nim c koch
-  ./koch boot -d:release -d:useGnuReadline
-
-  export PATH="$srcdir/$pkgname/bin:$PATH"
-
-  cd lib
-  nim c --app:lib -d:createNimRtl -d:release nimrtl.nim
-
-  cd ../tools
-  nim c -d:release nimgrep.nim
-}
-
-package() {
-  cd "$pkgname"
-
-  export PATH="$srcdir/$pkgname/bin:$PATH"
-  
-  ./koch install "$pkgdir"
-
-  install -d "$pkgdir/usr/share/nim/doc" "$pkgdir/usr/lib/nim" "$pkgdir/etc" 
"$pkgdir/usr/bin"
-
-  cd "$pkgdir/nim"
-  mv "lib/"* "$pkgdir/usr/lib/nim/"
-  mv "config/"* "$pkgdir/etc/"
-  cp -a "$srcdir/$pkgname/lib/packages" "$pkgdir/usr/lib/nim/"
-  mv "bin/"* "$pkgdir/usr/bin/"
-
-  cd "$srcdir/$pkgname"
-  rm -r "$pkgdir/nim"
-  mv examples web "$pkgdir/usr/share/nim/doc/"
-  mv "doc/"* "$pkgdir/usr/share/nim/doc/"
-  install -m644 "lib/libnimrtl.so" "$pkgdir/usr/lib/libnimrtl.so"
-  install -m755 "tools/nimgrep" "$pkgdir/usr/bin/"
-  install -Dm644 "copying.txt" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: nim/repos/community-i686/PKGBUILD (from rev 122552, nim/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-11-14 09:48:07 UTC (rev 122553)
@@ -0,0 +1,71 @@
+# $Id: PKGBUILD 121061 2014-10-20 12:57:19Z arodseth $
+# Maintainer: Alexander Rødseth 
+# Contributor: Dominik Picheta 
+# Contributor: Sven-Hendrik Haase 
+# Contributor: Jesus Alvarez 
+
+pkgname=nim
+pkgver=0.9.6
+pkgrel=2
+pkgdesc='Imperative, multi-paradigm, compiled programming language'
+arch=('x86_64' 'i686')
+url='http://nimrod-code.org/'
+license=('MIT')
+makedepends=('git')
+replaces=('nimrod')
+conflicts=('nimrod')
+options=('!emptydirs')
+source=("$pkgname::git://github.com/Araq/Nimrod.git#commit=06a4ab54aa")
+#source=("$pkgname::git://github.com/Araq/Nimrod.git#tag=v$pkgver")
+md5sums=('SKIP')
+
+prepare() {
+  cd "$pkgname"
+
+  rm build/empty.txt && rmdir build
+  git clone --depth=1 git://github.com/nimrod-code/csources build
+}
+
+build() {
+  cd "$pkgname/build"
+  sh build.sh
+  cd ..
+
+  ./bin/nim c koch
+  ./koch boot -d:release -d:useGnuReadline
+
+  export PATH="$srcdir/$pkgname/bin:$PATH"
+
+  cd lib
+  nim c --app:lib -d:createNimRtl -d:release nimrtl.nim
+
+  cd ../tools
+  nim c -d:release nimgrep.nim
+}
+
+package() {
+  cd "$pkgname"
+
+  export PATH="$srcdir/$pkgname/bin:$PATH"
+  
+  ./koch install "$pkgdir"
+
+  install -d "$pkgdir/usr/share/nim/doc" "$pkgdir/usr/lib/nim" "$pkgdir/etc" 
"$pkgdir/usr/bin"
+
+  cd "$pkgdir/nim"
+  mv "lib/"* "$pkgdir/usr/lib/nim/"
+  mv "config/"* "$pkgdir/etc/"
+  cp -a "$srcdir/$pkgname/lib/packages" "$pkgdir/usr/lib/nim/"
+  mv "bin/"* "$pkgdir/usr/bin/"
+
+  cd "$srcdir/$pkgname"
+  rm -r "$pkgdir/nim"
+  mv examples web "$pkgdir/usr/share/nim/doc/"
+  mv "doc/"* "$pkgdir/usr/share/nim/doc/"
+  install -m644 "lib/libnimrtl.so" "$pkgdir/usr/lib/libnimrtl.so"
+  install -m755 "tools/nimgrep" "$pkgdir/usr/bin/"
+  install -Dm644 "copying.txt" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+  ln -s /usr/bin/nim "$pkgdir/usr/bin/nimrod"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- communit

[arch-commits] Commit in libxdg-basedir/trunk (2 files)

2014-11-14 Thread Ronald van Haren
Date: Friday, November 14, 2014 @ 10:43:03
  Author: ronald
Revision: 122550

upgpkg: libxdg-basedir 1.2.0-3

fix buffer overflow FS#39490

Added:
  libxdg-basedir/trunk/xdgGetRelativeHome-overflow.patch
Modified:
  libxdg-basedir/trunk/PKGBUILD

---+
 PKGBUILD  |   15 ---
 xdgGetRelativeHome-overflow.patch |   11 +++
 2 files changed, 23 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-11-14 09:35:26 UTC (rev 122549)
+++ PKGBUILD2014-11-14 09:43:03 UTC (rev 122550)
@@ -3,20 +3,29 @@
 
 pkgname=libxdg-basedir
 pkgver=1.2.0
-pkgrel=2
+pkgrel=3
 pkgdesc="An implementation of the XDG Base Directory specifications."
 arch=('i686' 'x86_64')
-url="http://n.ethz.ch/student/nevillm/download/libxdg-basedir";
+#url="http://n.ethz.ch/student/nevillm/download/libxdg-basedir";
+url="https://github.com/devnev/$pkgname";
 license=('MIT')
 depends=('glibc')
 source=(https://github.com/devnev/$pkgname/archive/$pkgname-$pkgver.tar.gz
+'xdgGetRelativeHome-overflow.patch'
 'LICENSE')
 sha1sums=('e671b01b17c8cf785d95dd3aefa93e7cf31e56a5'
+  '90ce224344f8075c4ce8241b8f8bf13b8968eec5'
   'c76efede60d0632d4241d718919d8b4ec62056b3')
 
+prepare() {
+   cd "${srcdir}/$pkgname-$pkgname-$pkgver"
+
+#   FS#39490: Fix buffer overflow
+   patch -Np0 -i "${srcdir}/xdgGetRelativeHome-overflow.patch"
+}
+
 build() {
cd "${srcdir}/$pkgname-$pkgname-$pkgver"
-
./autogen.sh --prefix=/usr
make
 }

Added: xdgGetRelativeHome-overflow.patch
===
--- xdgGetRelativeHome-overflow.patch   (rev 0)
+++ xdgGetRelativeHome-overflow.patch   2014-11-14 09:43:03 UTC (rev 122550)
@@ -0,0 +1,11 @@
+--- src/basedir.c.orig 2014-03-16 20:26:36.938576209 +0100
 src/basedir.c  2014-03-16 20:27:50.212192889 +0100
+@@ -574,7 +574,7 @@
+   unsigned int homelen;
+   if (!(home = xdgGetEnv("HOME")))
+   return NULL;
+-  if (!(relhome = (char*)malloc((homelen = 
strlen(home))+fallbacklength))) return NULL;
++  if (!(relhome = (char*)malloc((homelen = 
strlen(home))+fallbacklength+1))) return NULL;
+   memcpy(relhome, home, homelen);
+   memcpy(relhome+homelen, relativefallback, fallbacklength+1);
+   }


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

2014-11-14 Thread Ronald van Haren
Date: Friday, November 14, 2014 @ 10:43:18
  Author: ronald
Revision: 122551

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

Added:
  libxdg-basedir/repos/community-i686/LICENSE
(from rev 122550, libxdg-basedir/trunk/LICENSE)
  libxdg-basedir/repos/community-i686/PKGBUILD
(from rev 122550, libxdg-basedir/trunk/PKGBUILD)
  libxdg-basedir/repos/community-i686/xdgGetRelativeHome-overflow.patch
(from rev 122550, libxdg-basedir/trunk/xdgGetRelativeHome-overflow.patch)
  libxdg-basedir/repos/community-x86_64/LICENSE
(from rev 122550, libxdg-basedir/trunk/LICENSE)
  libxdg-basedir/repos/community-x86_64/PKGBUILD
(from rev 122550, libxdg-basedir/trunk/PKGBUILD)
  libxdg-basedir/repos/community-x86_64/xdgGetRelativeHome-overflow.patch
(from rev 122550, libxdg-basedir/trunk/xdgGetRelativeHome-overflow.patch)
Deleted:
  libxdg-basedir/repos/community-i686/LICENSE
  libxdg-basedir/repos/community-i686/PKGBUILD
  libxdg-basedir/repos/community-x86_64/LICENSE
  libxdg-basedir/repos/community-x86_64/PKGBUILD

+
 /LICENSE   |   48 +++
 /PKGBUILD  |   80 +++
 community-i686/LICENSE |   24 -
 community-i686/PKGBUILD|   31 ---
 community-i686/xdgGetRelativeHome-overflow.patch   |   11 ++
 community-x86_64/LICENSE   |   24 -
 community-x86_64/PKGBUILD  |   31 ---
 community-x86_64/xdgGetRelativeHome-overflow.patch |   11 ++
 8 files changed, 150 insertions(+), 110 deletions(-)

Deleted: community-i686/LICENSE
===
--- community-i686/LICENSE  2014-11-14 09:43:03 UTC (rev 122550)
+++ community-i686/LICENSE  2014-11-14 09:43:18 UTC (rev 122551)
@@ -1,24 +0,0 @@
-/* Copyright (c) 2007 Mark Nevill
- *
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- *
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- */
-

Copied: libxdg-basedir/repos/community-i686/LICENSE (from rev 122550, 
libxdg-basedir/trunk/LICENSE)
===
--- community-i686/LICENSE  (rev 0)
+++ community-i686/LICENSE  2014-11-14 09:43:18 UTC (rev 122551)
@@ -0,0 +1,24 @@
+/* Copyright (c) 2007 Mark Nevill
+ *
+ * Permission is hereby granted, free of charge, to any person
+ * obtaining a copy of this software and associated documentation
+ * files (the "Software"), to deal in the Software without
+ * restriction, including without limitation the rights to use,
+ * copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the
+ * Software is furnished to do so, subject to the following
+ * conditions:
+ *
+ * The above copyright notice and this permission notice shall be
+ * included in all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+ * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+ * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+ * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+ * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+ * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+ * OTHER DEALINGS IN THE SOFTWARE.
+ */
+

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-11-14 09:43:03 UTC (rev 122550)
+++ community-i686/PKGBUILD 2014-11-14 09:43:18 UTC (rev 122551)
@@ -1,31 +0,0 @@
-# Maintainer: Ronald van Haren 
-# Contributor: Ondrej Martinak 
-
-pkgname=libxdg-basedir
-pkgver=1.2.0
-pkgrel=2
-pkgdesc="An implementation of the XDG Base Directory spec

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

2014-11-14 Thread Alexander Rødseth
Date: Friday, November 14, 2014 @ 10:35:26
  Author: arodseth
Revision: 122549

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

Added:
  nimble/repos/community-i686/PKGBUILD
(from rev 122548, nimble/trunk/PKGBUILD)
  nimble/repos/community-x86_64/PKGBUILD
(from rev 122548, nimble/trunk/PKGBUILD)

---+
 community-i686/PKGBUILD   |   33 +
 community-x86_64/PKGBUILD |   33 +
 2 files changed, 66 insertions(+)

Copied: nimble/repos/community-i686/PKGBUILD (from rev 122548, 
nimble/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-11-14 09:35:26 UTC (rev 122549)
@@ -0,0 +1,33 @@
+# Maintainer: Alexander F Rødseth 
+
+pkgname=nimble
+pkgver=186
+pkgrel=1
+pkgdesc='Package manager for the Nim programming language'
+arch=('x86_64' 'i686')
+url='https://github.com/nimrod-code/nimble'
+license=('BSD')
+makedepends=('nim' 'git')
+source=("$pkgname::git+https://github.com/nimrod-code/nimble.git#commit=b208b66749";)
+md5sums=('SKIP')
+
+pkgver () {
+  cd "$pkgname"
+
+  git rev-list --count master
+}
+
+build() {
+  cd "$pkgname/src/"
+
+  nim c -d:release nimble.nim
+}
+
+package() {
+  cd "$pkgname"
+
+  install -Dm755 "src/nimble" "$pkgdir/usr/bin/nimble"
+  install -Dm644 "license.txt" 
"$pkgdir/usr/share/licenses/$pkgname/license.txt"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: nimble/repos/community-x86_64/PKGBUILD (from rev 122548, 
nimble/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-11-14 09:35:26 UTC (rev 122549)
@@ -0,0 +1,33 @@
+# Maintainer: Alexander F Rødseth 
+
+pkgname=nimble
+pkgver=186
+pkgrel=1
+pkgdesc='Package manager for the Nim programming language'
+arch=('x86_64' 'i686')
+url='https://github.com/nimrod-code/nimble'
+license=('BSD')
+makedepends=('nim' 'git')
+source=("$pkgname::git+https://github.com/nimrod-code/nimble.git#commit=b208b66749";)
+md5sums=('SKIP')
+
+pkgver () {
+  cd "$pkgname"
+
+  git rev-list --count master
+}
+
+build() {
+  cd "$pkgname/src/"
+
+  nim c -d:release nimble.nim
+}
+
+package() {
+  cd "$pkgname"
+
+  install -Dm755 "src/nimble" "$pkgdir/usr/bin/nimble"
+  install -Dm644 "license.txt" 
"$pkgdir/usr/share/licenses/$pkgname/license.txt"
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in (6 files)

2014-11-14 Thread Alexander Rødseth
Date: Friday, November 14, 2014 @ 10:33:58
  Author: arodseth
Revision: 122548

Package manager for nim (nimrod)

Added:
  nimble/
  nimble/repos/
  nimble/repos/community-i686/
  nimble/repos/community-x86_64/
  nimble/trunk/
  nimble/trunk/PKGBUILD

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

Added: nimble/trunk/PKGBUILD
===
--- nimble/trunk/PKGBUILD   (rev 0)
+++ nimble/trunk/PKGBUILD   2014-11-14 09:33:58 UTC (rev 122548)
@@ -0,0 +1,33 @@
+# Maintainer: Alexander F Rødseth 
+
+pkgname=nimble
+pkgver=186
+pkgrel=1
+pkgdesc='Package manager for the Nim programming language'
+arch=('x86_64' 'i686')
+url='https://github.com/nimrod-code/nimble'
+license=('BSD')
+makedepends=('nim' 'git')
+source=("$pkgname::git+https://github.com/nimrod-code/nimble.git#commit=b208b66749";)
+md5sums=('SKIP')
+
+pkgver () {
+  cd "$pkgname"
+
+  git rev-list --count master
+}
+
+build() {
+  cd "$pkgname/src/"
+
+  nim c -d:release nimble.nim
+}
+
+package() {
+  cd "$pkgname"
+
+  install -Dm755 "src/nimble" "$pkgdir/usr/bin/nimble"
+  install -Dm644 "license.txt" 
"$pkgdir/usr/share/licenses/$pkgname/license.txt"
+}
+
+# vim:set ts=2 sw=2 et:


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

2014-11-14 Thread Alexander Rødseth
Date: Friday, November 14, 2014 @ 10:31:37
  Author: arodseth
Revision: 122547

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

Added:
  hwinfo/repos/community-i686/PKGBUILD
(from rev 122546, hwinfo/trunk/PKGBUILD)
  hwinfo/repos/community-i686/custom_ioctl.patch
(from rev 122546, hwinfo/trunk/custom_ioctl.patch)
  hwinfo/repos/community-x86_64/PKGBUILD
(from rev 122546, hwinfo/trunk/PKGBUILD)
  hwinfo/repos/community-x86_64/custom_ioctl.patch
(from rev 122546, hwinfo/trunk/custom_ioctl.patch)
Deleted:
  hwinfo/repos/community-i686/PKGBUILD
  hwinfo/repos/community-i686/custom_ioctl.patch
  hwinfo/repos/community-x86_64/PKGBUILD
  hwinfo/repos/community-x86_64/custom_ioctl.patch

-+
 /PKGBUILD   |   90 ++
 /custom_ioctl.patch |   32 
 community-i686/PKGBUILD |   45 -
 community-i686/custom_ioctl.patch   |   16 --
 community-x86_64/PKGBUILD   |   45 -
 community-x86_64/custom_ioctl.patch |   16 --
 6 files changed, 122 insertions(+), 122 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-11-14 09:31:27 UTC (rev 122546)
+++ community-i686/PKGBUILD 2014-11-14 09:31:37 UTC (rev 122547)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: Kaiting Chen 
-# Contributor: Gergely Imreh 
-# Contributor: champus, madeye, ranguvar and ninja_pt
-
-pkgname=hwinfo
-pkgver=21.5.1.1
-pkgrel=1
-pkgdesc='Hardware detection tool from openSUSE'
-arch=('x86_64' 'i686')
-url='http://download.opensuse.org/source/factory/repo/oss/suse/src/'
-license=('GPL2')
-depends=('libx86emu' 'bash' 'perl')
-makedepends=('sysfsutils' 'rpmextract' 'flex')
-options=('!emptydirs')
-source=("http://download.opensuse.org/source/factory/repo/oss/suse/src/$pkgname-${pkgver%.*.*}-${pkgver#*.*.}.src.rpm";
-'custom_ioctl.patch')
-sha256sums=('d9c0705c5c70bf09b63a304133596264ea4978da72c93b6e85e86753a4072187'
-'6e83b50aa34f31db5fe6de938402e7c4dda6ffa9ffe1346c076e4779018fcf1d')
-
-prepare() {
-  #aria2c -M "$pkgname.meta4" -V -c --allow-overwrite=true --no-conf=true
-
-  # Wish upstream could just provide a normal $pkgname-$pkgver.tar.gz...
-  rpmextract.sh "$pkgname-${pkgver%.*.*}-${pkgver#*.*.}.src.rpm"
-  tar Jxf "$pkgname-${pkgver%.*.*}.tar.xz"
-
-  # Patching
-  cd "$pkgname-${pkgver%.*.*}"
-  patch -p0 -i ../custom_ioctl.patch
-}
-
-build() {
-  make -C "$pkgname-${pkgver%.*.*}" -j1 \
-CFLAGS+="-fPIC -I$srcdir/$pkgname-${pkgver%.*.*}/src/hd" \
-LIBDIR=/usr/lib
-}
-
-package() {
-  make -C "$pkgname-${pkgver%.*.*}" LIBDIR=/usr/lib DESTDIR="$pkgdir" install
-  mv "$pkgdir/usr/sbin" "$pkgdir/usr/bin"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: hwinfo/repos/community-i686/PKGBUILD (from rev 122546, 
hwinfo/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-11-14 09:31:37 UTC (rev 122547)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Kaiting Chen 
+# Contributor: Gergely Imreh 
+# Contributor: champus, madeye, ranguvar and ninja_pt
+
+pkgname=hwinfo
+pkgver=21.8.1.1
+pkgrel=1
+pkgdesc='Hardware detection tool from openSUSE'
+arch=('x86_64' 'i686')
+url='http://download.opensuse.org/source/factory/repo/oss/suse/src/'
+license=('GPL2')
+depends=('libx86emu' 'bash' 'perl')
+makedepends=('sysfsutils' 'rpmextract' 'flex' 'git')
+options=('!emptydirs')
+source=("http://download.opensuse.org/source/factory/repo/oss/suse/src/$pkgname-${pkgver%.*.*}-${pkgver#*.*.}.src.rpm";
+'custom_ioctl.patch')
+sha256sums=('9d302b09363619ba68449698dbe73a038a884c224680ee10fc00c48ef63d9f7f'
+'6e83b50aa34f31db5fe6de938402e7c4dda6ffa9ffe1346c076e4779018fcf1d')
+
+prepare() {
+  #aria2c -M "$pkgname.meta4" -V -c --allow-overwrite=true --no-conf=true
+
+  # Wish upstream could just provide a normal $pkgname-$pkgver.tar.gz...
+  rpmextract.sh "$pkgname-${pkgver%.*.*}-${pkgver#*.*.}.src.rpm"
+  tar Jxf "$pkgname-${pkgver%.*.*}.tar.xz"
+
+  # Patching
+  cd "$pkgname-${pkgver%.*.*}"
+  patch -p0 -i ../custom_ioctl.patch
+}
+
+build() {
+  make -C "$pkgname-${pkgver%.*.*}" -j1 \
+CFLAGS+="-fPIC -I$srcdir/$pkgname-${pkgver%.*.*}/src/hd" \
+LIBDIR=/usr/lib
+}
+
+package() {
+  make -C "$pkgname-${pkgver%.*.*}" LIBDIR=/usr/lib DESTDIR="$pkgdir" install
+  mv "$pkgdir/usr/sbin" "$pkgdir/usr/bin"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/custom_ioctl.patch
===
--- community-i686/custom_ioctl.patch   2014-11-14 09:31:27 UTC (rev 122546)
+++ community-i686/custom_ioctl.patch   2014-11-14 09:31:37 UTC (rev 122547)
@@ -1,16 +0,0 @@
 src/hd/kbd.c.old   2010-03-15 23:37:52.00

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

2014-11-14 Thread Alexander Rødseth
Date: Friday, November 14, 2014 @ 10:31:27
  Author: arodseth
Revision: 122546

upgpkg: hwinfo 21.8.1.1-1

Modified:
  hwinfo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-11-14 09:09:20 UTC (rev 122545)
+++ PKGBUILD2014-11-14 09:31:27 UTC (rev 122546)
@@ -5,7 +5,7 @@
 # Contributor: champus, madeye, ranguvar and ninja_pt
 
 pkgname=hwinfo
-pkgver=21.5.1.1
+pkgver=21.8.1.1
 pkgrel=1
 pkgdesc='Hardware detection tool from openSUSE'
 arch=('x86_64' 'i686')
@@ -12,11 +12,11 @@
 url='http://download.opensuse.org/source/factory/repo/oss/suse/src/'
 license=('GPL2')
 depends=('libx86emu' 'bash' 'perl')
-makedepends=('sysfsutils' 'rpmextract' 'flex')
+makedepends=('sysfsutils' 'rpmextract' 'flex' 'git')
 options=('!emptydirs')
 
source=("http://download.opensuse.org/source/factory/repo/oss/suse/src/$pkgname-${pkgver%.*.*}-${pkgver#*.*.}.src.rpm";
 'custom_ioctl.patch')
-sha256sums=('d9c0705c5c70bf09b63a304133596264ea4978da72c93b6e85e86753a4072187'
+sha256sums=('9d302b09363619ba68449698dbe73a038a884c224680ee10fc00c48ef63d9f7f'
 '6e83b50aa34f31db5fe6de938402e7c4dda6ffa9ffe1346c076e4779018fcf1d')
 
 prepare() {


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

2014-11-14 Thread Jan Steffens
Date: Friday, November 14, 2014 @ 10:09:20
  Author: heftig
Revision: 122545

archrelease: copy trunk to community-testing-x86_64

Added:
  lib32-p11-kit/repos/community-testing-x86_64/
  lib32-p11-kit/repos/community-testing-x86_64/PKGBUILD
(from rev 122544, lib32-p11-kit/trunk/PKGBUILD)

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

Copied: lib32-p11-kit/repos/community-testing-x86_64/PKGBUILD (from rev 122544, 
lib32-p11-kit/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2014-11-14 09:09:20 UTC (rev 122545)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Florian Pritz 
+# Contributor: Christoph Vigano 
+
+_pkgbasename=p11-kit
+pkgname=lib32-$_pkgbasename
+pkgver=0.22.1
+pkgrel=2
+pkgdesc="Library to work with PKCS#11 modules (32-bit)"
+arch=(x86_64)
+url="http://p11-glue.freedesktop.org";
+license=('BSD')
+depends=(lib32-glibc lib32-libtasn1 lib32-libffi $_pkgbasename)
+options=(!libtool)
+source=($url/releases/$_pkgbasename-$pkgver.tar.gz{,.sig})
+md5sums=('4e9bea1106628ffb820bdad24a819fac'
+ 'SKIP')
+
+build() {
+  export CC="gcc -m32"
+  export CXX="g++ -m32"
+  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
+  cd "$srcdir/$_pkgbasename-$pkgver"
+
+  ./configure --prefix=/usr --libdir=/usr/lib32 --sysconfdir=/etc \
+--with-module-path=/usr/lib32/pkcs11 \
+
--with-trust-paths=/etc/ca-certificates/trust-source:/usr/share/ca-certificates/trust-source
+  make
+}
+
+check() {
+  cd "$srcdir/$_pkgbasename-$pkgver"
+  make check
+}
+
+package() {
+  cd "$srcdir/$_pkgbasename-$pkgver"
+  make DESTDIR="$pkgdir" install
+  rm -rf "${pkgdir}"/etc
+  rm -rf "${pkgdir}"/usr/{bin,include,share}
+  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+}
+
+# vim:set ts=2 sw=2 et:


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

2014-11-14 Thread Jan Steffens
Date: Friday, November 14, 2014 @ 10:09:03
  Author: heftig
Revision: 226221

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

Added:
  p11-kit/repos/testing-i686/
  p11-kit/repos/testing-i686/PKGBUILD
(from rev 226220, p11-kit/trunk/PKGBUILD)
  p11-kit/repos/testing-x86_64/
  p11-kit/repos/testing-x86_64/PKGBUILD
(from rev 226220, p11-kit/trunk/PKGBUILD)

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

Copied: p11-kit/repos/testing-i686/PKGBUILD (from rev 226220, 
p11-kit/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-11-14 09:09:03 UTC (rev 226221)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Ionut Biru 
+
+pkgname=p11-kit
+pkgver=0.22.1
+pkgrel=2
+pkgdesc="Library to work with PKCS#11 modules"
+arch=(i686 x86_64)
+url="http://p11-glue.freedesktop.org";
+license=('BSD')
+depends=('glibc' 'libtasn1' 'libffi')
+source=($url/releases/$pkgname-$pkgver.tar.gz{,.sig})
+md5sums=('4e9bea1106628ffb820bdad24a819fac'
+ 'SKIP')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc \
+--with-module-path=/usr/lib/pkcs11 \
+
--with-trust-paths=/etc/ca-certificates/trust-source:/usr/share/ca-certificates/trust-source
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd  $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+}
+
+# vim:set ts=2 sw=2 et:

Copied: p11-kit/repos/testing-x86_64/PKGBUILD (from rev 226220, 
p11-kit/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-11-14 09:09:03 UTC (rev 226221)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Ionut Biru 
+
+pkgname=p11-kit
+pkgver=0.22.1
+pkgrel=2
+pkgdesc="Library to work with PKCS#11 modules"
+arch=(i686 x86_64)
+url="http://p11-glue.freedesktop.org";
+license=('BSD')
+depends=('glibc' 'libtasn1' 'libffi')
+source=($url/releases/$pkgname-$pkgver.tar.gz{,.sig})
+md5sums=('4e9bea1106628ffb820bdad24a819fac'
+ 'SKIP')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc \
+--with-module-path=/usr/lib/pkcs11 \
+
--with-trust-paths=/etc/ca-certificates/trust-source:/usr/share/ca-certificates/trust-source
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd  $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in ca-certificates/repos (5 files)

2014-11-14 Thread Jan Steffens
Date: Friday, November 14, 2014 @ 10:08:36
  Author: heftig
Revision: 226219

archrelease: copy trunk to testing-any

Added:
  ca-certificates/repos/testing-any/
  ca-certificates/repos/testing-any/PKGBUILD
(from rev 226218, ca-certificates/trunk/PKGBUILD)
  ca-certificates/repos/testing-any/ca-certificates-utils.install
(from rev 226218, ca-certificates/trunk/ca-certificates-utils.install)
  ca-certificates/repos/testing-any/update-ca-trust
(from rev 226218, ca-certificates/trunk/update-ca-trust)
  ca-certificates/repos/testing-any/update-ca-trust.8.txt
(from rev 226218, ca-certificates/trunk/update-ca-trust.8.txt)

---+
 PKGBUILD  |   55 
 ca-certificates-utils.install |   45 +++
 update-ca-trust   |   22 +++
 update-ca-trust.8.txt |  245 
 4 files changed, 367 insertions(+)

Copied: ca-certificates/repos/testing-any/PKGBUILD (from rev 226218, 
ca-certificates/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2014-11-14 09:08:36 UTC (rev 226219)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Pierre Schmitz 
+
+pkgbase=ca-certificates
+pkgname=(ca-certificates-utils ca-certificates)
+pkgver=20140923
+pkgrel=4
+pkgdesc='Common CA certificates'
+arch=('any')
+url='http://pkgs.fedoraproject.org/cgit/ca-certificates.git'
+license=('GPL2')
+depends=('sh' 'p11-kit')
+makedepends=('asciidoc')
+source=(update-ca-trust update-ca-trust.8.txt)
+sha256sums=('c737236405320440665c9e7034585fde95d34495fc65789591a7ab76dc7568d5'
+'52f7067ced3771bfa315e4b2a4d078ba0502b663ed4d87a9a18558e14d4ed99e')
+
+_confdir=/etc/$pkgbase
+_datadir=/usr/share/$pkgbase
+
+build() {
+   asciidoc.py -v -d manpage -b docbook update-ca-trust.8.txt
+   xsltproc --nonet -o update-ca-trust.8 
/etc/asciidoc/docbook-xsl/manpage.xsl update-ca-trust.8.xml
+}
+
+package_ca-certificates-utils() {
+   pkgdesc+=" (utilities)"
+   install=ca-certificates-utils.install
+   provides=(ca-certificates ca-certificates-java)
+   conflicts=(ca-certificates-java)
+   replaces=(ca-certificates-java)
+
+   install -D update-ca-trust "${pkgdir}/usr/bin/update-ca-trust"
+   install -Dm644 update-ca-trust.8 
"${pkgdir}/usr/share/man/man8/update-ca-trust.8"
+
+   install -d 
"${pkgdir}"{${_confdir},${_datadir}}/trust-source/{anchors,blacklist}
+
+   _extractdir="${pkgdir}${_confdir}/extracted"
+   _ssldir="${pkgdir}/etc/ssl"
+
+   install -d "${_ssldir}/certs/java" "${_extractdir}"/{openssl,pem,java}
+   ln -sr "${_extractdir}/openssl/ca-bundle.trust.crt" 
"${_ssldir}/certs/ca-bundle.trust.crt"
+   ln -sr "${_extractdir}/pem/tls-ca-bundle.pem" "${_ssldir}/cert.pem"
+
+   # These are inverted (for now?) to ease upgrading
+   ln -sr "${_ssldir}/certs/ca-certificates.crt" 
"${_extractdir}/pem/tls-ca-bundle.pem"
+   ln -sr "${_ssldir}/certs/java/cacerts" "${_extractdir}/java/cacerts" 
+}
+
+package_ca-certificates() {
+   pkgdesc+=" (default providers)"
+   depends=(ca-certificates-{mozilla,cacert})
+}
+
+# vim:set noet ts=8 sw=8:

Copied: ca-certificates/repos/testing-any/ca-certificates-utils.install (from 
rev 226218, ca-certificates/trunk/ca-certificates-utils.install)
===
--- testing-any/ca-certificates-utils.install   (rev 0)
+++ testing-any/ca-certificates-utils.install   2014-11-14 09:08:36 UTC (rev 
226219)
@@ -0,0 +1,45 @@
+export LC_ALL=C
+
+post_install() {
+   usr/bin/update-ca-trust
+}
+
+pre_upgrade() {
+   if (( $(vercmp $2 20140923-2) < 0 )); then
+   find /etc/ssl/certs -type l -print | while read symlink; do
+   case $(readlink $symlink) in
+   /usr/share/ca-certificates*) rm -f $symlink;;
+   esac
+   done
+   find /etc/ssl/certs -type l -print | while read symlink; do
+   test -f $symlink || rm -f $symlink
+   done
+   fi
+}
+
+post_upgrade() {
+   usr/bin/update-ca-trust
+
+   if (( $(vercmp $2 20140923-2) < 0 )); then
+   cat <>.
+
+In addition, the classic PKCS#11 module 
+is replaced with a new PKCS#11 module (p11-kit-trust.so) that dynamically 
+reads the same source configuration.
+
+
+[[sourceconf]]
+SOURCE CONFIGURATION
+
+The dynamic configuration feature uses several source directories that
+will be scanned for any number of source files. *It is important to select 
+the correct subdirectory for adding files, as the subdirectory defines how 
+contained certificates will be trusted or distrusted, and which file formats 
are read.*
+
+Files in *subdirectories below the directory hierarchy 
/usr/share/ca-certificates/trust-source/* con

  1   2   >