[arch-commits] Commit in arm-none-eabi-gdb/repos (4 files)

2015-05-14 Thread Anatol Pomozov
Date: Thursday, May 14, 2015 @ 15:38:22
  Author: anatolik
Revision: 133428

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

Added:
  arm-none-eabi-gdb/repos/community-testing-i686/
  arm-none-eabi-gdb/repos/community-testing-i686/PKGBUILD
(from rev 133427, arm-none-eabi-gdb/trunk/PKGBUILD)
  arm-none-eabi-gdb/repos/community-testing-x86_64/
  arm-none-eabi-gdb/repos/community-testing-x86_64/PKGBUILD
(from rev 133427, arm-none-eabi-gdb/trunk/PKGBUILD)

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

Copied: arm-none-eabi-gdb/repos/community-testing-i686/PKGBUILD (from rev 
133427, arm-none-eabi-gdb/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2015-05-14 13:38:22 UTC (rev 133428)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Anatol Pomozov anatol.pomo...@gmail.com
+# Contributor: Martin Schmölzer mschmoel...@gmail.com
+
+_target=arm-none-eabi
+pkgname=$_target-gdb
+pkgver=7.9.1
+pkgrel=1
+pkgdesc='The GNU Debugger for the ARM EABI (bare-metal) target'
+arch=(i686 x86_64)
+url='http://www.gnu.org/software/gdb/'
+license=(GPL3)
+depends=(xz ncurses expat python2 guile)
+optdepends=('openocd: for debugging JTAG targets'
+'stlink: for debugging over STLINK')
+options=(!emptydirs)
+source=(ftp://ftp.gnu.org/gnu/gdb/gdb-$pkgver.tar.xz{,.sig})
+sha256sums=('cd9c543a411a05b2b647dd38936034b68c2b5d6f10e0d51dc168c166c973ba40'
+'SKIP')
+validpgpkeys=('F40ADB902B24264AA42E50BF92EDB04BFF325CF3') # Joel Brobecker 
brobec...@adacore.com
+
+prepare() {
+  cd gdb-$pkgver
+  sed -i /ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/ libiberty/configure
+}
+
+build() {
+  cd gdb-$pkgver
+
+  ./configure \
+--target=$_target \
+--prefix=/usr \
+--enable-languages=c,c++ \
+--enable-multilib \
+--enable-interwork \
+--with-system-readline \
+--disable-nls \
+--with-python=/usr/bin/python2 \
+--with-system-gdbinit=/etc/gdb/gdbinit
+
+  make
+}
+
+package() {
+  cd gdb-$pkgver
+
+  make DESTDIR=$pkgdir install
+
+  # Following files conflict with 'gdb' package
+  rm -r $pkgdir/usr/share/info
+  # TOTHINK: we remove python module used for debugging. It means arm-*-gdb 
alone will not be able to debug and 'gdb' package
+  # should be installed. File a bug upstream - ask a separate python module 
folder for cross tools.
+  rm -r $pkgdir/usr/share/gdb
+  rm -r $pkgdir/usr/include/gdb
+  rm -r $pkgdir/usr/share/man/man5
+}

Copied: arm-none-eabi-gdb/repos/community-testing-x86_64/PKGBUILD (from rev 
133427, arm-none-eabi-gdb/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2015-05-14 13:38:22 UTC (rev 133428)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Anatol Pomozov anatol.pomo...@gmail.com
+# Contributor: Martin Schmölzer mschmoel...@gmail.com
+
+_target=arm-none-eabi
+pkgname=$_target-gdb
+pkgver=7.9.1
+pkgrel=1
+pkgdesc='The GNU Debugger for the ARM EABI (bare-metal) target'
+arch=(i686 x86_64)
+url='http://www.gnu.org/software/gdb/'
+license=(GPL3)
+depends=(xz ncurses expat python2 guile)
+optdepends=('openocd: for debugging JTAG targets'
+'stlink: for debugging over STLINK')
+options=(!emptydirs)
+source=(ftp://ftp.gnu.org/gnu/gdb/gdb-$pkgver.tar.xz{,.sig})
+sha256sums=('cd9c543a411a05b2b647dd38936034b68c2b5d6f10e0d51dc168c166c973ba40'
+'SKIP')
+validpgpkeys=('F40ADB902B24264AA42E50BF92EDB04BFF325CF3') # Joel Brobecker 
brobec...@adacore.com
+
+prepare() {
+  cd gdb-$pkgver
+  sed -i /ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/ libiberty/configure
+}
+
+build() {
+  cd gdb-$pkgver
+
+  ./configure \
+--target=$_target \
+--prefix=/usr \
+--enable-languages=c,c++ \
+--enable-multilib \
+--enable-interwork \
+--with-system-readline \
+--disable-nls \
+--with-python=/usr/bin/python2 \
+--with-system-gdbinit=/etc/gdb/gdbinit
+
+  make
+}
+
+package() {
+  cd gdb-$pkgver
+
+  make DESTDIR=$pkgdir install
+
+  # Following files conflict with 'gdb' package
+  rm -r $pkgdir/usr/share/info
+  # TOTHINK: we remove python module used for debugging. It means arm-*-gdb 
alone will not be able to debug and 'gdb' package
+  # should be installed. File a bug upstream - ask a separate python module 
folder for cross tools.
+  rm -r $pkgdir/usr/share/gdb
+  rm -r $pkgdir/usr/include/gdb
+  rm -r $pkgdir/usr/share/man/man5
+}


[arch-commits] Commit in arm-none-eabi-gdb/trunk (PKGBUILD)

2015-05-14 Thread Anatol Pomozov
Date: Thursday, May 14, 2015 @ 15:37:51
  Author: anatolik
Revision: 133427

upgpkg: arm-none-eabi-gdb 7.9.1-1

Modified:
  arm-none-eabi-gdb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-14 13:35:55 UTC (rev 133426)
+++ PKGBUILD2015-05-14 13:37:51 UTC (rev 133427)
@@ -4,7 +4,7 @@
 
 _target=arm-none-eabi
 pkgname=$_target-gdb
-pkgver=7.9
+pkgver=7.9.1
 pkgrel=1
 pkgdesc='The GNU Debugger for the ARM EABI (bare-metal) target'
 arch=(i686 x86_64)
@@ -15,7 +15,7 @@
 'stlink: for debugging over STLINK')
 options=(!emptydirs)
 source=(ftp://ftp.gnu.org/gnu/gdb/gdb-$pkgver.tar.xz{,.sig})
-sha256sums=('9b315651a16528f7af8c7d8284699fb0c965df316cc7339bb0b7bae335848392'
+sha256sums=('cd9c543a411a05b2b647dd38936034b68c2b5d6f10e0d51dc168c166c973ba40'
 'SKIP')
 validpgpkeys=('F40ADB902B24264AA42E50BF92EDB04BFF325CF3') # Joel Brobecker 
brobec...@adacore.com
 


[arch-commits] Commit in luminancehdr/repos/community-i686 (7 files)

2015-05-14 Thread Jaroslav Lichtblau
Date: Thursday, May 14, 2015 @ 16:26:59
  Author: jlichtblau
Revision: 133434

archrelease: copy trunk to community-i686

Added:
  luminancehdr/repos/community-i686/PKGBUILD
(from rev 133433, luminancehdr/trunk/PKGBUILD)
  luminancehdr/repos/community-i686/luminancehdr.changelog
(from rev 133433, luminancehdr/trunk/luminancehdr.changelog)
  luminancehdr/repos/community-i686/luminancehdr.install
(from rev 133433, luminancehdr/trunk/luminancehdr.install)
  luminancehdr/repos/community-i686/qt5_printsupport.diff
(from rev 133433, luminancehdr/trunk/qt5_printsupport.diff)
Deleted:
  luminancehdr/repos/community-i686/PKGBUILD
  luminancehdr/repos/community-i686/luminancehdr.changelog
  luminancehdr/repos/community-i686/luminancehdr.install

+
 PKGBUILD   |   75 --
 luminancehdr.changelog |  117 ---
 luminancehdr.install   |   24 -
 qt5_printsupport.diff  |   29 +++
 4 files changed, 143 insertions(+), 102 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-05-14 14:06:55 UTC (rev 133433)
+++ PKGBUILD2015-05-14 14:26:59 UTC (rev 133434)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau dragonl...@aur.archlinux.org
-# Contributor: Lukas Jirkovsky l.jirkov...@gmail.com
-# Contributor: Dmitry N. Shilov stormbl...@land.ru
-
-pkgname=luminancehdr
-pkgver=2.4.0
-pkgrel=2
-pkgdesc='Open source graphical user interface application that aims to provide 
a workflow for HDR imaging'
-arch=('i686' 'x86_64')
-url='http://qtpfsgui.sourceforge.net/'
-license=('GPL')
-depends=('exiv2' 'fftw' 'gsl' 'lcms2' 'libraw' 'openexr' 'qt5-webkit' 'ccfits')
-makedepends=('cmake' 'boost' 'gtest' 'qt5-tools')
-optdepends=('hugin: align image stack functionality')
-install=$pkgname.install
-changelog=$pkgname.changelog
-options=('!emptydirs')
-source=(http://sourceforge.net/projects/qtpfsgui/files/luminance/${pkgver}/luminance-hdr-${pkgver}.tar.bz2)
-sha256sums=('14014eadab099944f051dd99447f6f47d455ffb0e4e0272d93a8e71fd96ad401')
-
-build() {
-  cd ${srcdir}/luminance-hdr-${pkgver}
-
-  cmake -DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/luminance-hdr-${pkgver}
-
-  make DESTDIR=${pkgdir} install
-}

Copied: luminancehdr/repos/community-i686/PKGBUILD (from rev 133433, 
luminancehdr/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-05-14 14:26:59 UTC (rev 133434)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau svetlemo...@archlinux.org
+# Contributor: Lukas Jirkovsky l.jirkov...@gmail.com
+# Contributor: Dmitry N. Shilov stormbl...@land.ru
+
+pkgname=luminancehdr
+pkgver=2.4.0
+pkgrel=3
+pkgdesc='Open source graphical user interface application that aims to provide 
a workflow for HDR imaging'
+arch=('i686' 'x86_64')
+url='http://qtpfsgui.sourceforge.net/'
+license=('GPL')
+depends=('exiv2' 'fftw' 'gsl' 'lcms2' 'libraw' 'openexr' 'qt5-webkit' 'ccfits')
+makedepends=('cmake' 'boost' 'gtest' 'qt5-tools' 'patch')
+optdepends=('hugin: align image stack functionality')
+install=$pkgname.install
+changelog=$pkgname.changelog
+options=('!emptydirs')
+source=(http://sourceforge.net/projects/qtpfsgui/files/luminance/$pkgver/luminance-hdr-$pkgver.tar.bz2
+qt5_printsupport.diff)
+sha256sums=('14014eadab099944f051dd99447f6f47d455ffb0e4e0272d93a8e71fd96ad401'
+'be2aaf8f544b086b770cec3db026e8ef7057bf3797961efeb8465197e4332c01')
+
+prepare() {
+  cd ${srcdir}/luminance-hdr-${pkgver}
+
+#Fix build error with Qt = 5.3.2
+  patch -Np1 -i ${srcdir}/qt5_printsupport.diff
+}
+
+build() {
+  cd ${srcdir}/luminance-hdr-${pkgver}
+
+  cmake -DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/luminance-hdr-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+}

Deleted: luminancehdr.changelog
===
--- luminancehdr.changelog  2015-05-14 14:06:55 UTC (rev 133433)
+++ luminancehdr.changelog  2015-05-14 14:26:59 UTC (rev 133434)
@@ -1,57 +0,0 @@
-2014-02-04 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-   * luminancehdr 2.4.0-1
-
-2014-01-20 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-   * luminancehdr 2.3.1-4 libraw rebuild
-
-2013-06-15 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-   * luminancehdr 2.3.1-3 libraw rebuild
-
-2013-04-20 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-   * luminancehdr 2.3.1-1
-
-2012-07-30 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-   * luminancehdr 2.3.0-2 exiv2-0.23 rebuild
-
-2012-07-07 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-   * luminancehdr 2.3.0-1
-
-2012-03-18 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-   * luminancehdr 2.2.1-1
-
-2012-01-27 Eric Belanger  e...@archlinux.org
-   * Rebuild against libpng 1.5 

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

2015-05-14 Thread Sébastien Luttringer
Date: Thursday, May 14, 2015 @ 15:19:43
  Author: seblu
Revision: 133424

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

Added:
  linux-tools/repos/community-i686/02-archlinux-paths.patch
(from rev 133423, linux-tools/trunk/02-archlinux-paths.patch)
  linux-tools/repos/community-i686/04-fix-usip-h-path.patch
(from rev 133423, linux-tools/trunk/04-fix-usip-h-path.patch)
  linux-tools/repos/community-i686/PKGBUILD
(from rev 133423, linux-tools/trunk/PKGBUILD)
  linux-tools/repos/community-i686/cpupower.default
(from rev 133423, linux-tools/trunk/cpupower.default)
  linux-tools/repos/community-i686/cpupower.install
(from rev 133423, linux-tools/trunk/cpupower.install)
  linux-tools/repos/community-i686/cpupower.service
(from rev 133423, linux-tools/trunk/cpupower.service)
  linux-tools/repos/community-i686/cpupower.systemd
(from rev 133423, linux-tools/trunk/cpupower.systemd)
  linux-tools/repos/community-i686/usbipd.service
(from rev 133423, linux-tools/trunk/usbipd.service)
  linux-tools/repos/community-x86_64/02-archlinux-paths.patch
(from rev 133423, linux-tools/trunk/02-archlinux-paths.patch)
  linux-tools/repos/community-x86_64/04-fix-usip-h-path.patch
(from rev 133423, linux-tools/trunk/04-fix-usip-h-path.patch)
  linux-tools/repos/community-x86_64/PKGBUILD
(from rev 133423, linux-tools/trunk/PKGBUILD)
  linux-tools/repos/community-x86_64/cpupower.default
(from rev 133423, linux-tools/trunk/cpupower.default)
  linux-tools/repos/community-x86_64/cpupower.install
(from rev 133423, linux-tools/trunk/cpupower.install)
  linux-tools/repos/community-x86_64/cpupower.service
(from rev 133423, linux-tools/trunk/cpupower.service)
  linux-tools/repos/community-x86_64/cpupower.systemd
(from rev 133423, linux-tools/trunk/cpupower.systemd)
  linux-tools/repos/community-x86_64/usbipd.service
(from rev 133423, linux-tools/trunk/usbipd.service)
Deleted:
  linux-tools/repos/community-i686/02-archlinux-paths.patch
  linux-tools/repos/community-i686/04-fix-usip-h-path.patch
  linux-tools/repos/community-i686/PKGBUILD
  linux-tools/repos/community-i686/cpupower.default
  linux-tools/repos/community-i686/cpupower.install
  linux-tools/repos/community-i686/cpupower.service
  linux-tools/repos/community-i686/cpupower.systemd
  linux-tools/repos/community-i686/usbipd.service
  linux-tools/repos/community-x86_64/02-archlinux-paths.patch
  linux-tools/repos/community-x86_64/04-fix-usip-h-path.patch
  linux-tools/repos/community-x86_64/PKGBUILD
  linux-tools/repos/community-x86_64/cpupower.default
  linux-tools/repos/community-x86_64/cpupower.install
  linux-tools/repos/community-x86_64/cpupower.service
  linux-tools/repos/community-x86_64/cpupower.systemd
  linux-tools/repos/community-x86_64/usbipd.service

---+
 /02-archlinux-paths.patch |   42 ++
 /04-fix-usip-h-path.patch |   26 +
 /PKGBUILD |  502 
 /cpupower.default |   58 +++
 /cpupower.install |   26 +
 /cpupower.service |   20 +
 /cpupower.systemd |   64 +++
 /usbipd.service   |   18 +
 community-i686/02-archlinux-paths.patch   |   21 -
 community-i686/04-fix-usip-h-path.patch   |   13 
 community-i686/PKGBUILD   |  232 
 community-i686/cpupower.default   |   29 -
 community-i686/cpupower.install   |   13 
 community-i686/cpupower.service   |   10 
 community-i686/cpupower.systemd   |   32 -
 community-i686/usbipd.service |9 
 community-x86_64/02-archlinux-paths.patch |   21 -
 community-x86_64/04-fix-usip-h-path.patch |   13 
 community-x86_64/PKGBUILD |  251 --
 community-x86_64/cpupower.default |   29 -
 community-x86_64/cpupower.install |   13 
 community-x86_64/cpupower.service |   10 
 community-x86_64/cpupower.systemd |   32 -
 community-x86_64/usbipd.service   |9 
 24 files changed, 756 insertions(+), 737 deletions(-)

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


[arch-commits] Commit in skrooge/repos/community-x86_64 (6 files)

2015-05-14 Thread Jaroslav Lichtblau
Date: Thursday, May 14, 2015 @ 14:16:01
  Author: jlichtblau
Revision: 133417

archrelease: copy trunk to community-x86_64

Added:
  skrooge/repos/community-x86_64/PKGBUILD
(from rev 133416, skrooge/trunk/PKGBUILD)
  skrooge/repos/community-x86_64/skrooge.changelog
(from rev 133416, skrooge/trunk/skrooge.changelog)
  skrooge/repos/community-x86_64/skrooge.install
(from rev 133416, skrooge/trunk/skrooge.install)
Deleted:
  skrooge/repos/community-x86_64/PKGBUILD
  skrooge/repos/community-x86_64/skrooge.changelog
  skrooge/repos/community-x86_64/skrooge.install

---+
 PKGBUILD  |   66 ++---
 skrooge.changelog |   91 ++--
 skrooge.install   |   28 
 3 files changed, 94 insertions(+), 91 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-05-14 12:15:45 UTC (rev 133416)
+++ PKGBUILD2015-05-14 12:16:01 UTC (rev 133417)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau svetlemo...@archlinux.org
-# Contributor: Ray Rashif sc...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: neuromante lorenzo.nizzi.gr...@gmail.com
-
-pkgname=skrooge
-pkgver=1.11.0
-pkgrel=1
-pkgdesc=A personal finances manager for KDE
-arch=('i686' 'x86_64')
-url=http://skrooge.org/;
-license=('GPL')
-depends=('kdebase-runtime' 'libofx' 'qca-ossl' 'qjson' 'grantlee-qt4')
-makedepends=('cmake' 'automoc4' 'docbook-xsl' 'boost' 'kdepim-libkdepim')
-optdepends=('kdepim-libkdepim: for KDE PIM integration')
-install=$pkgname.install
-changelog=$pkgname.changelog
-source=(http://download.kde.org/stable/$pkgname/$pkgname-$pkgver.tar.bz2)
-sha256sums=('9fa9bdeef0580a0600ac27bde48debcf0e224249c653439ff5fff414ef6e8ef2')
-
-build() {
-  cd ${srcdir}/$pkgname-$pkgver
-
-  cmake . -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/$pkgname-$pkgver
-
-  make DESTDIR=${pkgdir} install
-}

Copied: skrooge/repos/community-x86_64/PKGBUILD (from rev 133416, 
skrooge/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-05-14 12:16:01 UTC (rev 133417)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau svetlemo...@archlinux.org
+# Contributor: Ray Rashif sc...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: neuromante lorenzo.nizzi.gr...@gmail.com
+
+pkgname=skrooge
+pkgver=1.12.0
+pkgrel=1
+pkgdesc=A personal finances manager for KDE
+arch=('i686' 'x86_64')
+url=http://skrooge.org/;
+license=('GPL')
+depends=('kdebase-runtime' 'libofx' 'qca-ossl' 'qjson' 'grantlee-qt4')
+makedepends=('cmake' 'automoc4' 'docbook-xsl' 'boost' 'kdepim-libkdepim')
+optdepends=('kdepim-libkdepim: for KDE PIM integration')
+install=$pkgname.install
+changelog=$pkgname.changelog
+source=(http://download.kde.org/stable/$pkgname/$pkgname-$pkgver.tar.bz2)
+sha256sums=('2407e6e7efa7a0f759c91660a419de2e5ba66f2675cfbee300d12736ef928c1d')
+
+build() {
+  cd ${srcdir}/$pkgname-$pkgver
+
+  cmake . -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/$pkgname-$pkgver
+
+  make DESTDIR=${pkgdir} install
+}

Deleted: skrooge.changelog
===
--- skrooge.changelog   2015-05-14 12:15:45 UTC (rev 133416)
+++ skrooge.changelog   2015-05-14 12:16:01 UTC (rev 133417)
@@ -1,44 +0,0 @@
-2015-04-18 Jaroslav Lichtblau svetlemo...@archlinux.org
-   * skrooge 1.11.0-1
-
-2014-10-30 Jaroslav Lichtblau svetlemo...@archlinux.org
-   * skrooge 1.10.0-1
-
-2014-04-18 Jaroslav Lichtblau svetlemo...@archlinux.org
-   * skrooge 1.9.0-1
-
-2013-12-23 Jaroslav Lichtblau svetlemo...@archlinux.org
-   * skrooge 1.8.0-3 FS#37406 fix
-
-2013-10-06 Jaroslav Lichtblau svetlemo...@archlinux.org
-   * skrooge 1.8.0-1
-
-2013-05-18 Jaroslav Lichtblau svetlemo...@archlinux.org
-   * skrooge 1.7.1-1
-
-2013-03-05 Jaroslav Lichtblau svetlemo...@archlinux.org
-   * skrooge 1.6.0-1
-
-2013-01-30 Jaroslav Lichtblau svetlemo...@archlinux.org
-   * skrooge 1.5.1-1
-
-2013-01-05 Jaroslav Lichtblau svetlemo...@archlinux.org
-   * skrooge 1.4.0-1
-
-2012-09-06 Jaroslav Lichtblau svetlemo...@archlinux.org
-   * skrooge 1.3.3-1
-
-2012-08-29 Jaroslav Lichtblau svetlemo...@archlinux.org
-   * skrooge 1.3.2-1
-
-2012-08-09  Eric Belanger  e...@archlinux.org
-   * skrooge 1.3.0-2 Rebuild against libofx 0.9.5
-
-2012-05-05 Jaroslav Lichtblau svetlemo...@archlinux.org
-   * skrooge 1.3.0-1
-
-2012-02-24 Jaroslav Lichtblau svetlemo...@archlinux.org
-   * skrooge 1.2.0-1
-
-2011-11-27 Jaroslav Lichtblau svetlemo...@archlinux.org
-   * skrooge 1.1.1-1

Copied: skrooge/repos/community-x86_64/skrooge.changelog (from rev 133416, 

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

2015-05-14 Thread Jaroslav Lichtblau
Date: Thursday, May 14, 2015 @ 14:15:45
  Author: jlichtblau
Revision: 133416

upgpkg: skrooge 1.12.0-1

Modified:
  skrooge/trunk/PKGBUILD
  skrooge/trunk/skrooge.changelog

---+
 PKGBUILD  |4 ++--
 skrooge.changelog |3 +++
 2 files changed, 5 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-05-14 12:09:11 UTC (rev 133415)
+++ PKGBUILD2015-05-14 12:15:45 UTC (rev 133416)
@@ -5,7 +5,7 @@
 # Contributor: neuromante lorenzo.nizzi.gr...@gmail.com
 
 pkgname=skrooge
-pkgver=1.11.0
+pkgver=1.12.0
 pkgrel=1
 pkgdesc=A personal finances manager for KDE
 arch=('i686' 'x86_64')
@@ -17,7 +17,7 @@
 install=$pkgname.install
 changelog=$pkgname.changelog
 source=(http://download.kde.org/stable/$pkgname/$pkgname-$pkgver.tar.bz2)
-sha256sums=('9fa9bdeef0580a0600ac27bde48debcf0e224249c653439ff5fff414ef6e8ef2')
+sha256sums=('2407e6e7efa7a0f759c91660a419de2e5ba66f2675cfbee300d12736ef928c1d')
 
 build() {
   cd ${srcdir}/$pkgname-$pkgver

Modified: skrooge.changelog
===
--- skrooge.changelog   2015-05-14 12:09:11 UTC (rev 133415)
+++ skrooge.changelog   2015-05-14 12:15:45 UTC (rev 133416)
@@ -1,3 +1,6 @@
+2015-05-15 Jaroslav Lichtblau svetlemo...@archlinux.org
+   * skrooge 1.12.0-1
+
 2015-04-18 Jaroslav Lichtblau svetlemo...@archlinux.org
* skrooge 1.11.0-1
 


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

2015-05-14 Thread Jaroslav Lichtblau
Date: Thursday, May 14, 2015 @ 15:08:05
  Author: jlichtblau
Revision: 133421

archrelease: copy trunk to community-staging-i686

Added:
  kchmviewer/repos/community-staging-i686/
  kchmviewer/repos/community-staging-i686/PKGBUILD
(from rev 133420, kchmviewer/trunk/PKGBUILD)
  kchmviewer/repos/community-staging-i686/kchmviewer.changelog
(from rev 133420, kchmviewer/trunk/kchmviewer.changelog)
  kchmviewer/repos/community-staging-i686/kchmviewer.install
(from rev 133420, kchmviewer/trunk/kchmviewer.install)

--+
 PKGBUILD |   34 ++
 kchmviewer.changelog |   45 +
 kchmviewer.install   |   12 
 3 files changed, 91 insertions(+)

Copied: kchmviewer/repos/community-staging-i686/PKGBUILD (from rev 133420, 
kchmviewer/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-05-14 13:08:05 UTC (rev 133421)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau svetlemo...@archlinux.org
+# Contributor: Alexander Bogdanov and...@gmail.com
+
+pkgname=kchmviewer
+pkgver=7.3
+pkgrel=2
+pkgdesc=A .chm files (MS HTML help file format) viewer
+arch=('i686' 'x86_64')
+url=http://kchmviewer.sourceforge.net/;
+license=('GPL')
+depends=('desktop-file-utils' 'chmlib' 'xdg-utils' 'libzip' 'qt5-webkit')
+install=$pkgname.install
+changelog=$pkgname.changelog
+source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz)
+sha256sums=('7cb805c9a836b7622bbea1d5df8873fb711979285abb21bccf095f25cf3f6007')
+
+build() {
+  cd $pkgname-$pkgver
+
+  qmake PREFIX=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+#   make DISTDIR=${pkgdir} install
+
+  install -Dm755 bin/$pkgname ${pkgdir}/usr/bin/$pkgname
+#icon/desktop file
+  install -Dm644 packages/$pkgname.png 
${pkgdir}/usr/share/pixmaps/$pkgname.png
+  install -Dm644 packages/$pkgname.desktop 
${pkgdir}/usr/share/applications/$pkgname.desktop
+}

Copied: kchmviewer/repos/community-staging-i686/kchmviewer.changelog (from rev 
133420, kchmviewer/trunk/kchmviewer.changelog)
===
--- community-staging-i686/kchmviewer.changelog (rev 0)
+++ community-staging-i686/kchmviewer.changelog 2015-05-14 13:08:05 UTC (rev 
133421)
@@ -0,0 +1,45 @@
+2015-02-23  Jaroslav Lichtblau svetlemo...@archlinux.org
+   * kchmviewer 7.3-1
+
+2015-02-08  Jaroslav Lichtblau svetlemo...@archlinux.org
+   * kchmviewer 7.2-2
+   * FS#43740 fix, source file updated
+
+2014-12-23  Jaroslav Lichtblau svetlemo...@archlinux.org
+   * kchmviewer 7.2-1
+
+2014-12-14  Jaroslav Lichtblau svetlemo...@archlinux.org
+   * kchmviewer 7.1-1
+
+2014-05-12  Jaroslav Lichtblau svetlemo...@archlinux.org
+   * kchmviewer 6.1-1
+
+2011-12-21  Jaroslav Lichtblau svetlemo...@archlinux.org
+   * kchmviewer 6.0-1
+
+2011-01-15  Jaroslav Lichtblau svetlemo...@archlinux.org
+   * kchmviewer-5.3
+
+2010-06-14  Jaroslav Lichtblau svetlemo...@archlinux.org
+   * Update to major release 5.2
+
+2009-12-19  Jaroslav Lichtblau svetlemo...@archlinux.org
+   * Update to major release 5.1
+
+2009-07-26  Jaroslav Lichtblau svetlemo...@archlinux.org
+   * Update to major release 4.1
+
+2009-04-30  Jaroslav Lichtblau svetlemo...@archlinux.org
+   * FS#14376 fixed
+
+2009-03-26  Jaroslav Lichtblau svetlemo...@archlinux.org
+   * FS#12349 fixed
+
+2008-12-04  Jaroslav Lichtblau svetlemo...@archlinux.org
+   * Update to major release 4.0 final
+
+2008-11-22  Jaroslav Lichtblau svetlemo...@archlinux.org
+   * Update to major release 4.0beta3 - KDE4 version
+
+2007-08-09  Vinay S Shastry  vinayshas...@gmail.com
+   * PKGBUILD: do not delete libtool files.

Copied: kchmviewer/repos/community-staging-i686/kchmviewer.install (from rev 
133420, kchmviewer/trunk/kchmviewer.install)
===
--- community-staging-i686/kchmviewer.install   (rev 0)
+++ community-staging-i686/kchmviewer.install   2015-05-14 13:08:05 UTC (rev 
133421)
@@ -0,0 +1,12 @@
+post_install() {
+  which xdg-icon-resource 1/dev/null 2/dev/null  xdg-icon-resource 
forceupdate
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}


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

2015-05-14 Thread Anatol Pomozov
Date: Thursday, May 14, 2015 @ 15:32:09
  Author: anatolik
Revision: 239346

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

Added:
  gdb/repos/testing-i686/
  gdb/repos/testing-i686/PKGBUILD
(from rev 239345, gdb/trunk/PKGBUILD)
  gdb/repos/testing-i686/gdb.install
(from rev 239345, gdb/trunk/gdb.install)
  gdb/repos/testing-x86_64/
  gdb/repos/testing-x86_64/PKGBUILD
(from rev 239345, gdb/trunk/PKGBUILD)
  gdb/repos/testing-x86_64/gdb.install
(from rev 239345, gdb/trunk/gdb.install)

+
 testing-i686/PKGBUILD  |   51 +++
 testing-i686/gdb.install   |   20 
 testing-x86_64/PKGBUILD|   51 +++
 testing-x86_64/gdb.install |   20 
 4 files changed, 142 insertions(+)

Copied: gdb/repos/testing-i686/PKGBUILD (from rev 239345, gdb/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-05-14 13:32:09 UTC (rev 239346)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+# Contributor: Jan de Groot j...@archlinux.org
+
+pkgname=gdb
+pkgver=7.9.1
+pkgrel=1
+pkgdesc='The GNU Debugger'
+arch=('i686' 'x86_64')
+url=http://www.gnu.org/software/gdb/;
+license=('GPL3')
+depends=('ncurses' 'expat' 'python2' 'xz' 'guile')
+makedepends=('texinfo')
+backup=('etc/gdb/gdbinit')
+install=gdb.install
+source=(http://ftp.gnu.org/gnu/gdb/${pkgname}-${pkgver}.tar.xz{,.sig})
+sha1sums=('04ba2906279b16b5f99c4f6b25942843a3717cdb'
+  'SKIP')
+validpgpkeys=('F40ADB902B24264AA42E50BF92EDB04BFF325CF3') # Joel Brobecker
+
+prepare() {
+  cd gdb-$pkgver
+
+  # hack! - libiberty configure tests for header files using $CPP $CPPFLAGS
+  sed -i /ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/ libiberty/configure
+}
+
+build() {
+  cd gdb-$pkgver
+  
+  # guile support has a severe bug 
https://sourceware.org/bugzilla/show_bug.cgi?id=17247
+  ./configure --prefix=/usr --disable-nls \
+--with-system-readline \
+--with-python=/usr/bin/python2 \
+--with-system-gdbinit=/etc/gdb/gdbinit
+  make
+}
+
+package() {
+  cd gdb-$pkgver
+  make DESTDIR=$pkgdir install
+
+  # install custom system gdbinit
+  install -dm755 $pkgdir/etc/gdb
+  touch $pkgdir/etc/gdb/gdbinit
+
+  # resolve conflicts with binutils
+  rm $pkgdir/usr/include/{ansidecl,bfd,bfdlink,dis-asm,plugin-api,symcat}.h
+  rm $pkgdir/usr/share/info/bfd.info
+  rm $pkgdir/usr/lib/{libbfd,libopcodes}.a
+}

Copied: gdb/repos/testing-i686/gdb.install (from rev 239345, 
gdb/trunk/gdb.install)
===
--- testing-i686/gdb.install(rev 0)
+++ testing-i686/gdb.install2015-05-14 13:32:09 UTC (rev 239346)
@@ -0,0 +1,20 @@
+infodir=usr/share/info
+filelist=(annotate.info gdb.info{,-{1,2,3,4,5,6}} stabs.info)
+
+post_install() {
+  [[ -x usr/bin/install-info ]] || return 0
+  for file in ${filelist[@]}; do
+install-info $infodir/$file.gz $infodir/dir 2 /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [[ -x usr/bin/install-info ]] || return 0
+  for file in ${filelist[@]}; do
+install-info --delete $infodir/$file.gz $infodir/dir 2 /dev/null
+  done
+}

Copied: gdb/repos/testing-x86_64/PKGBUILD (from rev 239345, gdb/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2015-05-14 13:32:09 UTC (rev 239346)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+# Contributor: Jan de Groot j...@archlinux.org
+
+pkgname=gdb
+pkgver=7.9.1
+pkgrel=1
+pkgdesc='The GNU Debugger'
+arch=('i686' 'x86_64')
+url=http://www.gnu.org/software/gdb/;
+license=('GPL3')
+depends=('ncurses' 'expat' 'python2' 'xz' 'guile')
+makedepends=('texinfo')
+backup=('etc/gdb/gdbinit')
+install=gdb.install
+source=(http://ftp.gnu.org/gnu/gdb/${pkgname}-${pkgver}.tar.xz{,.sig})
+sha1sums=('04ba2906279b16b5f99c4f6b25942843a3717cdb'
+  'SKIP')
+validpgpkeys=('F40ADB902B24264AA42E50BF92EDB04BFF325CF3') # Joel Brobecker
+
+prepare() {
+  cd gdb-$pkgver
+
+  # hack! - libiberty configure tests for header files using $CPP $CPPFLAGS
+  sed -i /ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/ libiberty/configure
+}
+
+build() {
+  cd gdb-$pkgver
+  
+  # guile support has a severe bug 
https://sourceware.org/bugzilla/show_bug.cgi?id=17247
+  ./configure --prefix=/usr --disable-nls \
+--with-system-readline \
+--with-python=/usr/bin/python2 \
+--with-system-gdbinit=/etc/gdb/gdbinit
+  make
+}
+
+package() {
+  cd gdb-$pkgver
+  make DESTDIR=$pkgdir install
+
+  # install custom system gdbinit
+  install -dm755 $pkgdir/etc/gdb
+  touch $pkgdir/etc/gdb/gdbinit
+
+  # resolve conflicts with binutils
+  rm 

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

2015-05-14 Thread Sébastien Luttringer
Date: Thursday, May 14, 2015 @ 15:44:38
  Author: seblu
Revision: 133429

upgpkg: unifi 4.6.3-1

Modified:
  unifi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-14 13:38:22 UTC (rev 133428)
+++ PKGBUILD2015-05-14 13:44:38 UTC (rev 133429)
@@ -3,8 +3,8 @@
 # Contributor: Frederik Schwan frederik dot schwan at linux dot com
 
 pkgname=unifi
-pkgver=3.2.10
-pkgrel=2
+pkgver=4.6.3
+pkgrel=1
 pkgdesc='Centralized management system for Ubiquiti UniFi AP'
 arch=('any')
 url='https://community.ubnt.com/unifi'
@@ -18,7 +18,7 @@
 source=(UniFi-$pkgver.zip::http://dl.ubnt.com/unifi/$pkgver/UniFi.unix.zip;
 'unifi.service'
 'LICENSE')
-md5sums=('623b9016c710e2dc5556bdaf9b465580'
+md5sums=('738f0537c08234cf59ae9e1d34bdc239'
  '79998cabf110d9a96ba4d3367101c94c'
  '63a6f9e67db6a466f31a40c228c16d63')
 
@@ -26,13 +26,13 @@
   # lib
   install -dm755 $pkgdir/usr/lib/unifi
   cp -r UniFi/{bin,dl,lib,webapps} $pkgdir/usr/lib/unifi
-  # unjar
-  pushd $pkgdir/usr/lib/unifi/webapps
-  mkdir ROOT
-  cd ROOT
-  jar -xf ../ROOT.war
-  rm ../ROOT.war
-  popd
+#  # unjar
+#  pushd $pkgdir/usr/lib/unifi/webapps
+#  mkdir ROOT
+#  cd ROOT
+#  jar -xf ../ROOT.war
+#  rm ../ROOT.war
+#  popd
 
   # data
   install -dm750 $pkgdir/var/lib/unifi


[arch-commits] Commit in unifi/repos/community-any (8 files)

2015-05-14 Thread Sébastien Luttringer
Date: Thursday, May 14, 2015 @ 15:45:02
  Author: seblu
Revision: 133430

archrelease: copy trunk to community-any

Added:
  unifi/repos/community-any/LICENSE
(from rev 133429, unifi/trunk/LICENSE)
  unifi/repos/community-any/PKGBUILD
(from rev 133429, unifi/trunk/PKGBUILD)
  unifi/repos/community-any/unifi.install
(from rev 133429, unifi/trunk/unifi.install)
  unifi/repos/community-any/unifi.service
(from rev 133429, unifi/trunk/unifi.service)
Deleted:
  unifi/repos/community-any/LICENSE
  unifi/repos/community-any/PKGBUILD
  unifi/repos/community-any/unifi.install
  unifi/repos/community-any/unifi.service

---+
 LICENSE   |6 +-
 PKGBUILD  |  120 
 unifi.install |   32 +++---
 unifi.service |   24 +--
 4 files changed, 91 insertions(+), 91 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2015-05-14 13:44:38 UTC (rev 133429)
+++ LICENSE 2015-05-14 13:45:02 UTC (rev 133430)
@@ -1,3 +0,0 @@
-Ubiquiti Networks - All Rights Reserved.
-Permission granted to Archlinux to re-package.
-https://mailman.archlinux.org/mailman/private/arch-dev/2014-August/015690.html

Copied: unifi/repos/community-any/LICENSE (from rev 133429, unifi/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2015-05-14 13:45:02 UTC (rev 133430)
@@ -0,0 +1,3 @@
+Ubiquiti Networks - All Rights Reserved.
+Permission granted to Archlinux to re-package.
+https://mailman.archlinux.org/mailman/private/arch-dev/2014-August/015690.html

Deleted: PKGBUILD
===
--- PKGBUILD2015-05-14 13:44:38 UTC (rev 133429)
+++ PKGBUILD2015-05-14 13:45:02 UTC (rev 133430)
@@ -1,60 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Seblu Luttringer se...@archlinux.org
-# Contributor: Frederik Schwan frederik dot schwan at linux dot com
-
-pkgname=unifi
-pkgver=3.2.10
-pkgrel=2
-pkgdesc='Centralized management system for Ubiquiti UniFi AP'
-arch=('any')
-url='https://community.ubnt.com/unifi'
-# We are allowed to ship the software in our repository
-# 
https://mailman.archlinux.org/mailman/private/arch-dev/2014-August/015690.html
-license=('custom')
-depends=('mongodb' 'jre7-openjdk-headless' 'fontconfig')
-makedepends=('jdk7-openjdk')
-conflicts=('tomcat-native')
-install=unifi.install
-source=(UniFi-$pkgver.zip::http://dl.ubnt.com/unifi/$pkgver/UniFi.unix.zip;
-'unifi.service'
-'LICENSE')
-md5sums=('623b9016c710e2dc5556bdaf9b465580'
- '79998cabf110d9a96ba4d3367101c94c'
- '63a6f9e67db6a466f31a40c228c16d63')
-
-package() {
-  # lib
-  install -dm755 $pkgdir/usr/lib/unifi
-  cp -r UniFi/{bin,dl,lib,webapps} $pkgdir/usr/lib/unifi
-  # unjar
-  pushd $pkgdir/usr/lib/unifi/webapps
-  mkdir ROOT
-  cd ROOT
-  jar -xf ../ROOT.war
-  rm ../ROOT.war
-  popd
-
-  # data
-  install -dm750 $pkgdir/var/lib/unifi
-  for _d in data run work; do
-install -dm750 $pkgdir/var/lib/unifi/$_d
-ln -s ../../../var/lib/unifi/$_d $pkgdir/usr/lib/unifi/$_d
-  done
-  chown -R 113:113 $pkgdir/var/lib/unifi
-
-  # log
-  install -dm750 $pkgdir/var/log/unifi
-  ln -s ../../../var/log/unifi $pkgdir/usr/lib/unifi/logs
-  chown -R 113:113 $pkgdir/var/log/unifi
-
-  # readme
-  install -Dm644 UniFi/readme.txt $pkgdir/usr/share/doc/$pkgname/README
-
-  # license
-  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-
-  # systemd
-  install -Dm644 unifi.service $pkgdir/usr/lib/systemd/system/unifi.service
-}
-
-# vim:set ts=2 sw=2 ft=sh et:

Copied: unifi/repos/community-any/PKGBUILD (from rev 133429, 
unifi/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-05-14 13:45:02 UTC (rev 133430)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Sébastien Seblu Luttringer se...@archlinux.org
+# Contributor: Frederik Schwan frederik dot schwan at linux dot com
+
+pkgname=unifi
+pkgver=4.6.3
+pkgrel=1
+pkgdesc='Centralized management system for Ubiquiti UniFi AP'
+arch=('any')
+url='https://community.ubnt.com/unifi'
+# We are allowed to ship the software in our repository
+# 
https://mailman.archlinux.org/mailman/private/arch-dev/2014-August/015690.html
+license=('custom')
+depends=('mongodb' 'jre7-openjdk-headless' 'fontconfig')
+makedepends=('jdk7-openjdk')
+conflicts=('tomcat-native')
+install=unifi.install
+source=(UniFi-$pkgver.zip::http://dl.ubnt.com/unifi/$pkgver/UniFi.unix.zip;
+'unifi.service'
+'LICENSE')
+md5sums=('738f0537c08234cf59ae9e1d34bdc239'
+ '79998cabf110d9a96ba4d3367101c94c'
+ '63a6f9e67db6a466f31a40c228c16d63')
+
+package() {
+  # lib
+  install -dm755 $pkgdir/usr/lib/unifi
+  cp -r UniFi/{bin,dl,lib,webapps} $pkgdir/usr/lib/unifi
+#  # unjar
+#  pushd 

[arch-commits] Commit in homebank/repos/community-x86_64 (6 files)

2015-05-14 Thread Jaroslav Lichtblau
Date: Thursday, May 14, 2015 @ 13:58:24
  Author: jlichtblau
Revision: 133412

archrelease: copy trunk to community-x86_64

Added:
  homebank/repos/community-x86_64/PKGBUILD
(from rev 133411, homebank/trunk/PKGBUILD)
  homebank/repos/community-x86_64/homebank.changelog
(from rev 133411, homebank/trunk/homebank.changelog)
  homebank/repos/community-x86_64/homebank.install
(from rev 133411, homebank/trunk/homebank.install)
Deleted:
  homebank/repos/community-x86_64/PKGBUILD
  homebank/repos/community-x86_64/homebank.changelog
  homebank/repos/community-x86_64/homebank.install

+
 PKGBUILD   |   60 -
 homebank.changelog |   73 ++-
 homebank.install   |   26 +-
 3 files changed, 81 insertions(+), 78 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-05-14 11:56:30 UTC (rev 133411)
+++ PKGBUILD2015-05-14 11:58:24 UTC (rev 133412)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau svetlemo...@archlinux.org
-# Contributor: William Rea sillywi...@gmail.com
-
-pkgname=homebank
-pkgver=5.0.1
-pkgrel=1
-pkgdesc=Free, easy, personal accounting for everyone
-arch=('i686' 'x86_64')
-url=http://homebank.free.fr/;
-license=('GPL')
-depends=('desktop-file-utils' 'gtk3' 'hicolor-icon-theme' 'libofx' 'librsvg' 
'perl-xml-parser' 'shared-mime-info')
-makedepends=('intltool')
-install=$pkgname.install
-changelog=$pkgname.changelog
-source=(http://homebank.free.fr/public/$pkgname-$pkgver.tar.gz)
-sha256sums=('59b8c0d4ed520e1a79ab51087662642fceb0e68862f3c59b2557e1a91f259257')
-
-build() {
-  cd ${srcdir}/$pkgname-$pkgver
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/$pkgname-$pkgver
-
-  make DESTDIR=${pkgdir} install
-}

Copied: homebank/repos/community-x86_64/PKGBUILD (from rev 133411, 
homebank/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-05-14 11:58:24 UTC (rev 133412)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau svetlemo...@archlinux.org
+# Contributor: William Rea sillywi...@gmail.com
+
+pkgname=homebank
+pkgver=5.0.2
+pkgrel=1
+pkgdesc=Free, easy, personal accounting for everyone
+arch=('i686' 'x86_64')
+url=http://homebank.free.fr/;
+license=('GPL')
+depends=('desktop-file-utils' 'gtk3' 'hicolor-icon-theme' 'libofx' 'librsvg' 
'perl-xml-parser' 'shared-mime-info')
+makedepends=('intltool')
+install=$pkgname.install
+changelog=$pkgname.changelog
+source=(http://homebank.free.fr/public/$pkgname-$pkgver.tar.gz)
+sha256sums=('f2c3f9da0aa9af76cfed63a19104d99d33b1766cac89dd1586c378b9cf54a2ca')
+
+build() {
+  cd ${srcdir}/$pkgname-$pkgver
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/$pkgname-$pkgver
+
+  make DESTDIR=${pkgdir} install
+}

Deleted: homebank.changelog
===
--- homebank.changelog  2015-05-14 11:56:30 UTC (rev 133411)
+++ homebank.changelog  2015-05-14 11:58:24 UTC (rev 133412)
@@ -1,35 +0,0 @@
-2015-04-18 Jaroslav Lichtblau svetlemo...@archlinux.org
-   * homebank 5.0.1-1
-
-2015-02-08 Jaroslav Lichtblau svetlemo...@archlinux.org
-   * homebank 5.0.0-1
-
-2014-08-10 Jaroslav Lichtblau svetlemo...@archlinux.org
-   * homebank 4.6.3-1
-
-2014-07-29 Jaroslav Lichtblau svetlemo...@archlinux.org
-   * homebank 4.6.2-1
-
-2014-06-28 Jaroslav Lichtblau svetlemo...@archlinux.org
-   * homebank 4.6.1-1
-
-2014-03-02 Jaroslav Lichtblau svetlemo...@archlinux.org
-   * homebank 4.5.6-1
-
-2014-02-04 Jaroslav Lichtblau svetlemo...@archlinux.org
-   * homebank 4.5.5-1
-
-2013-10-05 Jaroslav Lichtblau svetlemo...@archlinux.org
-   * homebank 4.5.4-1
-
-2013-09-28 Jaroslav Lichtblau svetlemo...@archlinux.org
-   * homebank 4.5.3-1
-
-2013-09-02 Jaroslav Lichtblau svetlemo...@archlinux.org
-   * homebank 4.5.2-1
-
-2013-08-08 Jaroslav Lichtblau svetlemo...@archlinux.org
-   * homebank 4.5.1-1
-
-2013-01-18 Jaroslav Lichtblau svetlemo...@archlinux.org
-   * homebank 4.5-1

Copied: homebank/repos/community-x86_64/homebank.changelog (from rev 133411, 
homebank/trunk/homebank.changelog)
===
--- homebank.changelog  (rev 0)
+++ homebank.changelog  2015-05-14 11:58:24 UTC (rev 133412)
@@ -0,0 +1,38 @@
+2015-05-14 Jaroslav Lichtblau svetlemo...@archlinux.org
+   * homebank 5.0.2-1
+
+2015-04-18 Jaroslav Lichtblau svetlemo...@archlinux.org
+   * homebank 5.0.1-1
+
+2015-02-08 Jaroslav Lichtblau svetlemo...@archlinux.org
+   * homebank 5.0.0-1
+
+2014-08-10 Jaroslav Lichtblau svetlemo...@archlinux.org
+   * homebank 4.6.3-1
+
+2014-07-29 Jaroslav Lichtblau svetlemo...@archlinux.org
+   * homebank 4.6.2-1
+
+2014-06-28 

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

2015-05-14 Thread Anatol Pomozov
Date: Thursday, May 14, 2015 @ 15:31:38
  Author: anatolik
Revision: 239345

upgpkg: gdb 7.9.1-1

Modified:
  gdb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-14 10:37:11 UTC (rev 239344)
+++ PKGBUILD2015-05-14 13:31:38 UTC (rev 239345)
@@ -3,7 +3,7 @@
 # Contributor: Jan de Groot j...@archlinux.org
 
 pkgname=gdb
-pkgver=7.9
+pkgver=7.9.1
 pkgrel=1
 pkgdesc='The GNU Debugger'
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 backup=('etc/gdb/gdbinit')
 install=gdb.install
 source=(http://ftp.gnu.org/gnu/gdb/${pkgname}-${pkgver}.tar.xz{,.sig})
-sha1sums=('1dabff2168bd8fe3cadf9386e47a47c527ea99ba'
+sha1sums=('04ba2906279b16b5f99c4f6b25942843a3717cdb'
   'SKIP')
 validpgpkeys=('F40ADB902B24264AA42E50BF92EDB04BFF325CF3') # Joel Brobecker
 


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

2015-05-14 Thread Jaroslav Lichtblau
Date: Thursday, May 14, 2015 @ 13:56:30
  Author: jlichtblau
Revision: 133411

upgpkg: homebank 5.0.2-1

Modified:
  homebank/trunk/PKGBUILD
  homebank/trunk/homebank.changelog

+
 PKGBUILD   |4 ++--
 homebank.changelog |3 +++
 2 files changed, 5 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-05-14 11:48:36 UTC (rev 133410)
+++ PKGBUILD2015-05-14 11:56:30 UTC (rev 133411)
@@ -3,7 +3,7 @@
 # Contributor: William Rea sillywi...@gmail.com
 
 pkgname=homebank
-pkgver=5.0.1
+pkgver=5.0.2
 pkgrel=1
 pkgdesc=Free, easy, personal accounting for everyone
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 install=$pkgname.install
 changelog=$pkgname.changelog
 source=(http://homebank.free.fr/public/$pkgname-$pkgver.tar.gz)
-sha256sums=('59b8c0d4ed520e1a79ab51087662642fceb0e68862f3c59b2557e1a91f259257')
+sha256sums=('f2c3f9da0aa9af76cfed63a19104d99d33b1766cac89dd1586c378b9cf54a2ca')
 
 build() {
   cd ${srcdir}/$pkgname-$pkgver

Modified: homebank.changelog
===
--- homebank.changelog  2015-05-14 11:48:36 UTC (rev 133410)
+++ homebank.changelog  2015-05-14 11:56:30 UTC (rev 133411)
@@ -1,3 +1,6 @@
+2015-05-14 Jaroslav Lichtblau svetlemo...@archlinux.org
+   * homebank 5.0.2-1
+
 2015-04-18 Jaroslav Lichtblau svetlemo...@archlinux.org
* homebank 5.0.1-1
 


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

2015-05-14 Thread Jaroslav Lichtblau
Date: Thursday, May 14, 2015 @ 14:53:31
  Author: jlichtblau
Revision: 133419

upgpkg: kchmviewer 7.3-2 libzip 1.0.1 rebuild

Modified:
  kchmviewer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-14 12:27:34 UTC (rev 133418)
+++ PKGBUILD2015-05-14 12:53:31 UTC (rev 133419)
@@ -4,7 +4,7 @@
 
 pkgname=kchmviewer
 pkgver=7.3
-pkgrel=1
+pkgrel=2
 pkgdesc=A .chm files (MS HTML help file format) viewer
 arch=('i686' 'x86_64')
 url=http://kchmviewer.sourceforge.net/;


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

2015-05-14 Thread Jaroslav Lichtblau
Date: Thursday, May 14, 2015 @ 15:01:22
  Author: jlichtblau
Revision: 133420

archrelease: copy trunk to community-staging-x86_64

Added:
  kchmviewer/repos/community-staging-x86_64/
  kchmviewer/repos/community-staging-x86_64/PKGBUILD
(from rev 133419, kchmviewer/trunk/PKGBUILD)
  kchmviewer/repos/community-staging-x86_64/kchmviewer.changelog
(from rev 133419, kchmviewer/trunk/kchmviewer.changelog)
  kchmviewer/repos/community-staging-x86_64/kchmviewer.install
(from rev 133419, kchmviewer/trunk/kchmviewer.install)

--+
 PKGBUILD |   34 ++
 kchmviewer.changelog |   45 +
 kchmviewer.install   |   12 
 3 files changed, 91 insertions(+)

Copied: kchmviewer/repos/community-staging-x86_64/PKGBUILD (from rev 133419, 
kchmviewer/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-05-14 13:01:22 UTC (rev 133420)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau svetlemo...@archlinux.org
+# Contributor: Alexander Bogdanov and...@gmail.com
+
+pkgname=kchmviewer
+pkgver=7.3
+pkgrel=2
+pkgdesc=A .chm files (MS HTML help file format) viewer
+arch=('i686' 'x86_64')
+url=http://kchmviewer.sourceforge.net/;
+license=('GPL')
+depends=('desktop-file-utils' 'chmlib' 'xdg-utils' 'libzip' 'qt5-webkit')
+install=$pkgname.install
+changelog=$pkgname.changelog
+source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz)
+sha256sums=('7cb805c9a836b7622bbea1d5df8873fb711979285abb21bccf095f25cf3f6007')
+
+build() {
+  cd $pkgname-$pkgver
+
+  qmake PREFIX=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+#   make DISTDIR=${pkgdir} install
+
+  install -Dm755 bin/$pkgname ${pkgdir}/usr/bin/$pkgname
+#icon/desktop file
+  install -Dm644 packages/$pkgname.png 
${pkgdir}/usr/share/pixmaps/$pkgname.png
+  install -Dm644 packages/$pkgname.desktop 
${pkgdir}/usr/share/applications/$pkgname.desktop
+}

Copied: kchmviewer/repos/community-staging-x86_64/kchmviewer.changelog (from 
rev 133419, kchmviewer/trunk/kchmviewer.changelog)
===
--- community-staging-x86_64/kchmviewer.changelog   
(rev 0)
+++ community-staging-x86_64/kchmviewer.changelog   2015-05-14 13:01:22 UTC 
(rev 133420)
@@ -0,0 +1,45 @@
+2015-02-23  Jaroslav Lichtblau svetlemo...@archlinux.org
+   * kchmviewer 7.3-1
+
+2015-02-08  Jaroslav Lichtblau svetlemo...@archlinux.org
+   * kchmviewer 7.2-2
+   * FS#43740 fix, source file updated
+
+2014-12-23  Jaroslav Lichtblau svetlemo...@archlinux.org
+   * kchmviewer 7.2-1
+
+2014-12-14  Jaroslav Lichtblau svetlemo...@archlinux.org
+   * kchmviewer 7.1-1
+
+2014-05-12  Jaroslav Lichtblau svetlemo...@archlinux.org
+   * kchmviewer 6.1-1
+
+2011-12-21  Jaroslav Lichtblau svetlemo...@archlinux.org
+   * kchmviewer 6.0-1
+
+2011-01-15  Jaroslav Lichtblau svetlemo...@archlinux.org
+   * kchmviewer-5.3
+
+2010-06-14  Jaroslav Lichtblau svetlemo...@archlinux.org
+   * Update to major release 5.2
+
+2009-12-19  Jaroslav Lichtblau svetlemo...@archlinux.org
+   * Update to major release 5.1
+
+2009-07-26  Jaroslav Lichtblau svetlemo...@archlinux.org
+   * Update to major release 4.1
+
+2009-04-30  Jaroslav Lichtblau svetlemo...@archlinux.org
+   * FS#14376 fixed
+
+2009-03-26  Jaroslav Lichtblau svetlemo...@archlinux.org
+   * FS#12349 fixed
+
+2008-12-04  Jaroslav Lichtblau svetlemo...@archlinux.org
+   * Update to major release 4.0 final
+
+2008-11-22  Jaroslav Lichtblau svetlemo...@archlinux.org
+   * Update to major release 4.0beta3 - KDE4 version
+
+2007-08-09  Vinay S Shastry  vinayshas...@gmail.com
+   * PKGBUILD: do not delete libtool files.

Copied: kchmviewer/repos/community-staging-x86_64/kchmviewer.install (from rev 
133419, kchmviewer/trunk/kchmviewer.install)
===
--- community-staging-x86_64/kchmviewer.install (rev 0)
+++ community-staging-x86_64/kchmviewer.install 2015-05-14 13:01:22 UTC (rev 
133420)
@@ -0,0 +1,12 @@
+post_install() {
+  which xdg-icon-resource 1/dev/null 2/dev/null  xdg-icon-resource 
forceupdate
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}


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

2015-05-14 Thread Sébastien Luttringer
Date: Thursday, May 14, 2015 @ 15:14:20
  Author: seblu
Revision: 133423

archrelease: copy trunk to community-x86_64

Added:
  linux-tools/repos/community-x86_64/02-archlinux-paths.patch
(from rev 133422, linux-tools/trunk/02-archlinux-paths.patch)
  linux-tools/repos/community-x86_64/04-fix-usip-h-path.patch
(from rev 133422, linux-tools/trunk/04-fix-usip-h-path.patch)
  linux-tools/repos/community-x86_64/PKGBUILD
(from rev 133422, linux-tools/trunk/PKGBUILD)
  linux-tools/repos/community-x86_64/cpupower.default
(from rev 133422, linux-tools/trunk/cpupower.default)
  linux-tools/repos/community-x86_64/cpupower.install
(from rev 133422, linux-tools/trunk/cpupower.install)
  linux-tools/repos/community-x86_64/cpupower.service
(from rev 133422, linux-tools/trunk/cpupower.service)
  linux-tools/repos/community-x86_64/cpupower.systemd
(from rev 133422, linux-tools/trunk/cpupower.systemd)
  linux-tools/repos/community-x86_64/usbipd.service
(from rev 133422, linux-tools/trunk/usbipd.service)
Deleted:
  linux-tools/repos/community-x86_64/02-archlinux-paths.patch
  linux-tools/repos/community-x86_64/04-fix-usip-h-path.patch
  linux-tools/repos/community-x86_64/PKGBUILD
  linux-tools/repos/community-x86_64/cpupower.default
  linux-tools/repos/community-x86_64/cpupower.install
  linux-tools/repos/community-x86_64/cpupower.service
  linux-tools/repos/community-x86_64/cpupower.systemd
  linux-tools/repos/community-x86_64/usbipd.service

--+
 02-archlinux-paths.patch |   42 +--
 04-fix-usip-h-path.patch |   26 +-
 PKGBUILD |  483 +++--
 cpupower.default |   58 ++---
 cpupower.install |   26 +-
 cpupower.service |   20 -
 cpupower.systemd |   64 ++---
 usbipd.service   |   18 -
 8 files changed, 378 insertions(+), 359 deletions(-)

Deleted: 02-archlinux-paths.patch
===
--- 02-archlinux-paths.patch2015-05-14 13:13:47 UTC (rev 133422)
+++ 02-archlinux-paths.patch2015-05-14 13:14:20 UTC (rev 133423)
@@ -1,21 +0,0 @@
-# Seblu was here
 a/tools/perf/config/Makefile   2014-02-13 23:00:14.0 +0100
-+++ b/tools/perf/config/Makefile   2014-02-17 20:01:33.370539725 +0100
-@@ -561,7 +561,7 @@
- bindir = $(prefix)/$(bindir_relative)
- mandir = share/man
- infodir = share/info
--perfexecdir = libexec/perf-core
-+perfexecdir = lib/perf
- sharedir = $(prefix)/share
- template_dir = share/perf-core/templates
- htmldir = share/doc/perf-doc
-@@ -573,7 +573,7 @@
- ETC_PERFCONFIG = etc/perfconfig
- endif
- ifeq ($(IS_X86_64),1)
--lib = lib64
-+lib = lib
- else
- lib = lib
- endif

Copied: linux-tools/repos/community-x86_64/02-archlinux-paths.patch (from rev 
133422, linux-tools/trunk/02-archlinux-paths.patch)
===
--- 02-archlinux-paths.patch(rev 0)
+++ 02-archlinux-paths.patch2015-05-14 13:14:20 UTC (rev 133423)
@@ -0,0 +1,21 @@
+# Seblu was here
+--- a/tools/perf/config/Makefile   2014-02-13 23:00:14.0 +0100
 b/tools/perf/config/Makefile   2014-02-17 20:01:33.370539725 +0100
+@@ -561,7 +561,7 @@
+ bindir = $(prefix)/$(bindir_relative)
+ mandir = share/man
+ infodir = share/info
+-perfexecdir = libexec/perf-core
++perfexecdir = lib/perf
+ sharedir = $(prefix)/share
+ template_dir = share/perf-core/templates
+ htmldir = share/doc/perf-doc
+@@ -573,7 +573,7 @@
+ ETC_PERFCONFIG = etc/perfconfig
+ endif
+ ifeq ($(ARCH)$(IS_64_BIT), x861)
+-lib = lib64
++lib = lib
+ else
+ lib = lib
+ endif

Deleted: 04-fix-usip-h-path.patch
===
--- 04-fix-usip-h-path.patch2015-05-14 13:13:47 UTC (rev 133422)
+++ 04-fix-usip-h-path.patch2015-05-14 13:14:20 UTC (rev 133423)
@@ -1,13 +0,0 @@
-# Copyright 2014 Sébastien Luttringer
-
 a/tools/usb/usbip/libsrc/usbip_common.h  2014-10-06 02:13:09.295856364 
+0200
-+++ b/tools/usb/usbip/libsrc/usbip_common.h  2014-10-06 02:13:03.607873728 
+0200
-@@ -15,7 +15,7 @@
- #include syslog.h
- #include unistd.h
- #include linux/usb/ch9.h
--#include linux/usbip.h
-+#include ../../../include/uapi/linux/usbip.h
- 
- #ifndef USBIDS_FILE
- #define USBIDS_FILE /usr/share/hwdata/usb.ids

Copied: linux-tools/repos/community-x86_64/04-fix-usip-h-path.patch (from rev 
133422, linux-tools/trunk/04-fix-usip-h-path.patch)
===
--- 04-fix-usip-h-path.patch(rev 0)
+++ 04-fix-usip-h-path.patch2015-05-14 13:14:20 UTC (rev 133423)
@@ -0,0 +1,13 @@
+# Copyright 2014 Sébastien Luttringer
+
+--- a/tools/usb/usbip/libsrc/usbip_common.h  2014-10-06 02:13:09.295856364 
+0200
 b/tools/usb/usbip/libsrc/usbip_common.h  2014-10-06 02:13:03.607873728 
+0200
+@@ -15,7 +15,7 @@
+ #include syslog.h
+ #include 

[arch-commits] Commit in linux-tools/trunk (02-archlinux-paths.patch PKGBUILD)

2015-05-14 Thread Sébastien Luttringer
Date: Thursday, May 14, 2015 @ 15:13:47
  Author: seblu
Revision: 133422

upgpkg: linux-tools 4.0-2

- Add turbostat
- Add stable 4.0.2 patches

Modified:
  linux-tools/trunk/02-archlinux-paths.patch
  linux-tools/trunk/PKGBUILD

--+
 02-archlinux-paths.patch |2 +-
 PKGBUILD |   37 -
 2 files changed, 29 insertions(+), 10 deletions(-)

Modified: 02-archlinux-paths.patch
===
--- 02-archlinux-paths.patch2015-05-14 13:08:05 UTC (rev 133421)
+++ 02-archlinux-paths.patch2015-05-14 13:13:47 UTC (rev 133422)
@@ -13,7 +13,7 @@
 @@ -573,7 +573,7 @@
  ETC_PERFCONFIG = etc/perfconfig
  endif
- ifeq ($(IS_X86_64),1)
+ ifeq ($(ARCH)$(IS_64_BIT), x861)
 -lib = lib64
 +lib = lib
  else

Modified: PKGBUILD
===
--- PKGBUILD2015-05-14 13:08:05 UTC (rev 133421)
+++ PKGBUILD2015-05-14 13:13:47 UTC (rev 133422)
@@ -10,11 +10,12 @@
   'linux-tools-meta'
   'perf'
   'tmon'
+  'turbostat'
   'usbip'
   'x86_energy_perf_policy'
 )
 pkgver=4.0
-pkgrel=1
+pkgrel=2
 license=('GPL2')
 arch=('i686' 'x86_64')
 url='http://www.kernel.org'
@@ -31,9 +32,10 @@
 # tmon deps
 makedepends+=('ncurses')
 groups=($pkgbase)
-validpgpkeys=('ABAF11C65A2970B130ABE3C479BE3E4300411886') # Linus Torvalds
+validpgpkeys=('ABAF11C65A2970B130ABE3C479BE3E4300411886'  # Linus Torvalds
+  '647F28654894E3BD457199BE38DBBDC86092693E') # Greg Kroah-Hartman
 
source=(http://ftp.kernel.org/pub/linux/kernel/v${pkgver:0:1}.x/linux-$pkgver.tar{.xz,.sign}
-
#http://ftp.kernel.org/pub/linux/kernel/v${pkgver:0:1}.x/patch-$pkgver.7.xz;
+
http://ftp.kernel.org/pub/linux/kernel/v${pkgver:0:1}.x/patch-$pkgver.3{.xz,.sign}
 'cpupower.default'
 'cpupower.systemd'
 'cpupower.service'
@@ -43,19 +45,22 @@
 # http://www.kernel.org/pub/linux/kernel/v4.x/sha256sums.asc
 sha256sums=('0f2f7d44979bc8f71c4fc5d3308c03499c26a824dd311fdf6eef4dee0d7d5991'
 'SKIP'
+'e8e42b67cd5ca28d3cd85b868a8caf6c0b971c948d6695ea6e399e132664de83'
+'SKIP'
 '4fa509949d6863d001075fa3e8671eff2599c046d20c98bb4a70778595cd1c3f'
 'fbf6e0ce6eb0ef15703fe212958de6ca46e62188900b5e9f9272ed3cc9cfd54e'
 'a89284d0ecb556ca53a66d1c2087b5fd6d0a901ab2769cd3aebb93f4478905dc'
 '2e187734d8aec58a3046d79883510d779aa93fb3ab20bd3132c1a607ebe5498f'
-'eb866a589a26b1979ffb2fe08be09417e277a4befac34bdb279a6bb3a27b0570'
-'7547815bb761d49d198b85f95011535713c2ed4a004f249a9cf6ba985af8c4ed'
+'91f7d91d4270f207102c469c575dd176c3be7897d78d26057d047db164eaf9ca'
 'e5543d8d6d3fbc7f8d9d25c428a882737d2e0169455f70cbc3f73076ff33dd5d')
 
 prepare() {
-  cd linux-$pkgver
-  #patch -N -p1 -i $srcdir/patch-$pkgver.7
-  patch -N -p1 -i $srcdir/02-archlinux-paths.patch
-  patch -N -p1 -i $srcdir/04-fix-usip-h-path.patch
+  local _patch
+  for _patch in patch-$pkgver.? *.patch; do
+[[ -e $_patch ]] || continue
+msg2 Applying $_patch
+patch -N -p1 -d linux-$pkgver  $_patch
+  done
 }
 
 build() {
@@ -110,6 +115,11 @@
   pushd linux-$pkgver/tools/cgroup
   make
   popd
+
+  msg2 'turbostat'
+  pushd linux-$pkgver/tools/power/x86/turbostat
+  make
+  popd
 }
 
 package_linux-tools-meta() {
@@ -122,6 +132,7 @@
 'libtraceevent'
 'perf'
 'tmon'
+'turbostat'
 'usbip'
 'x86_energy_perf_policy'
   )
@@ -229,4 +240,12 @@
   install -Dm755 cgroup_event_listener $pkgdir/usr/bin/cgroup_event_listener
 }
 
+package_turbostat() {
+  pkgdesc='Report processor frequency and idle statistics'
+  depends=('glibc')
+
+  cd linux-$pkgver/tools/power/x86/turbostat
+  make install DESTDIR=$pkgdir
+}
+
 # vim:set ts=2 sw=2 et:


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

2015-05-14 Thread Anatol Pomozov
Date: Thursday, May 14, 2015 @ 15:35:24
  Author: anatolik
Revision: 133425

upgpkg: avr-gdb 7.9.1-1

Modified:
  avr-gdb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-14 13:19:43 UTC (rev 133424)
+++ PKGBUILD2015-05-14 13:35:24 UTC (rev 133425)
@@ -7,7 +7,7 @@
 
 _target=avr
 pkgname=$_target-gdb
-pkgver=7.9
+pkgver=7.9.1
 pkgrel=1
 pkgdesc='The GNU Debugger for AVR'
 arch=(i686 x86_64)
@@ -16,7 +16,7 @@
 depends=(python2 guile xz)
 options=(!emptydirs)
 source=(ftp://ftp.gnu.org/gnu/gdb/gdb-$pkgver.tar.xz{,.sig})
-sha256sums=('9b315651a16528f7af8c7d8284699fb0c965df316cc7339bb0b7bae335848392'
+sha256sums=('cd9c543a411a05b2b647dd38936034b68c2b5d6f10e0d51dc168c166c973ba40'
 'SKIP')
 validpgpkeys=('F40ADB902B24264AA42E50BF92EDB04BFF325CF3') # Joel Brobecker 
brobec...@adacore.com
 


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

2015-05-14 Thread Alexander Rødseth
Date: Thursday, May 14, 2015 @ 14:01:17
  Author: arodseth
Revision: 133414

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

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

--+
 /PKGBUILD|   76 +
 /moosefs.install |   40 +++
 community-i686/PKGBUILD  |   38 --
 community-i686/moosefs.install   |   20 -
 community-x86_64/PKGBUILD|   38 --
 community-x86_64/moosefs.install |   20 -
 6 files changed, 116 insertions(+), 116 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-05-14 12:01:07 UTC (rev 133413)
+++ community-i686/PKGBUILD 2015-05-14 12:01:17 UTC (rev 133414)
@@ -1,38 +0,0 @@
-# $Id: PKGBUILD 133367 2015-05-13 12:31:10Z arodseth $
-# Maintainer: Alexander Rødseth rods...@gmail.com
-
-pkgname=moosefs
-pkgver=2.0.67_1
-pkgrel=1
-pkgdesc='High performing and fault tolerant distributed file system'
-url='http://moosefs.com/'
-replaces=('mfs-master' 'mfs-chunkserver' 'mfs-client')
-conflicts=('mfs-master' 'mfs-chunkserver' 'mfs-client')
-arch=('x86_64' 'i686')
-license=('GPL3')
-depends=('zlib' 'fuse' 'python2' 'bash' 'xfsprogs')
-install=$pkgname.install
-source=(http://ppa.moosefs.com/src/moosefs-${pkgver/_/-}.tar.gz;)
-sha256sums=('9b3ad3fc81a6b5ffa7f6cbeb1aa11f85d5b82a2b0c40ff5c8f3b46f72eaafcb4')
-
-build() {
-  cd moosefs-${pkgver%_*}
-
-  ./configure \
---prefix=/usr \
---mandir=/usr/share/man \
---sysconfdir=/etc \
---localstatedir=/var/lib \
---with-default-user=mfs \
---with-default-group=mfs \
---with-systemdsystemunitdir=/usr/lib/systemd/system \
---sbindir=/usr/bin
-  make
-}
-
-package() {
-  make DESTDIR=$pkgdir -C moosefs-${pkgver%_*} install
-}
-
-# getver: -u 4 moosefs.com/download/sources.html
-# vim:set ts=2 sw=2 et:

Copied: moosefs/repos/community-i686/PKGBUILD (from rev 133413, 
moosefs/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-05-14 12:01:17 UTC (rev 133414)
@@ -0,0 +1,38 @@
+# $Id: PKGBUILD 133367 2015-05-13 12:31:10Z arodseth $
+# Maintainer: Alexander Rødseth rods...@gmail.com
+
+pkgname=moosefs
+pkgver=2.0.67_1
+pkgrel=2
+pkgdesc='High performing and fault tolerant distributed file system'
+url='http://moosefs.com/'
+replaces=('mfs-master' 'mfs-chunkserver' 'mfs-client')
+conflicts=('mfs-master' 'mfs-chunkserver' 'mfs-client')
+arch=('x86_64' 'i686')
+license=('GPL3')
+depends=('zlib' 'fuse' 'python2' 'bash' 'xfsprogs')
+install=$pkgname.install
+source=(http://ppa.moosefs.com/src/moosefs-${pkgver/_/-}.tar.gz;)
+sha256sums=('9b3ad3fc81a6b5ffa7f6cbeb1aa11f85d5b82a2b0c40ff5c8f3b46f72eaafcb4')
+
+build() {
+  cd moosefs-${pkgver%_*}
+
+  ./configure \
+--prefix=/usr \
+--mandir=/usr/share/man \
+--sysconfdir=/etc \
+--localstatedir=/var/lib \
+--with-default-user=mfs \
+--with-default-group=mfs \
+--with-systemdsystemunitdir=/usr/lib/systemd/system \
+--sbindir=/usr/bin
+  make
+}
+
+package() {
+  make DESTDIR=$pkgdir -C moosefs-${pkgver%_*} install
+}
+
+# getver: -u 4 moosefs.com/download/sources.html
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/moosefs.install
===
--- community-i686/moosefs.install  2015-05-14 12:01:07 UTC (rev 133413)
+++ community-i686/moosefs.install  2015-05-14 12:01:17 UTC (rev 133414)
@@ -1,20 +0,0 @@
-post_install() {
-  echo
-  echo 'For configuring MooseFS, the .cfg.dist files in /etc/mfs can'
-  echo 'be used as a basis for writing the corresponding .cfg files.'
-  echo
-  echo 'For troubleshooting a service, like mfschunkserver, just running'
-  echo '/usr/bin/mfschunkserver start can be helpful.'
-  echo
-}
-
-post_upgrade() {
-  echo
-  echo 'The latest release of MooseFS had several changes to how'
-  echo 'files are packaged and installed. There were also changes to'
-  echo 'the systemd service files. Please double-check that every'
-  echo 'service you wish to run is running as you intended.'
-  echo
-}
-
-# vim:set ts=2 sw=2 et:

Copied: moosefs/repos/community-i686/moosefs.install (from rev 133413, 
moosefs/trunk/moosefs.install)

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

2015-05-14 Thread Alexander Rødseth
Date: Thursday, May 14, 2015 @ 14:01:07
  Author: arodseth
Revision: 133413

upgpkg: moosefs 2.0.67_1-2

Modified:
  moosefs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-14 11:58:24 UTC (rev 133412)
+++ PKGBUILD2015-05-14 12:01:07 UTC (rev 133413)
@@ -3,7 +3,7 @@
 
 pkgname=moosefs
 pkgver=2.0.67_1
-pkgrel=1
+pkgrel=2
 pkgdesc='High performing and fault tolerant distributed file system'
 url='http://moosefs.com/'
 replaces=('mfs-master' 'mfs-chunkserver' 'mfs-client')


[arch-commits] Commit in homebank/repos/community-i686 (6 files)

2015-05-14 Thread Jaroslav Lichtblau
Date: Thursday, May 14, 2015 @ 14:09:11
  Author: jlichtblau
Revision: 133415

archrelease: copy trunk to community-i686

Added:
  homebank/repos/community-i686/PKGBUILD
(from rev 133414, homebank/trunk/PKGBUILD)
  homebank/repos/community-i686/homebank.changelog
(from rev 133414, homebank/trunk/homebank.changelog)
  homebank/repos/community-i686/homebank.install
(from rev 133414, homebank/trunk/homebank.install)
Deleted:
  homebank/repos/community-i686/PKGBUILD
  homebank/repos/community-i686/homebank.changelog
  homebank/repos/community-i686/homebank.install

+
 PKGBUILD   |   60 -
 homebank.changelog |   73 ++-
 homebank.install   |   26 +-
 3 files changed, 81 insertions(+), 78 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-05-14 12:01:17 UTC (rev 133414)
+++ PKGBUILD2015-05-14 12:09:11 UTC (rev 133415)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau svetlemo...@archlinux.org
-# Contributor: William Rea sillywi...@gmail.com
-
-pkgname=homebank
-pkgver=5.0.1
-pkgrel=1
-pkgdesc=Free, easy, personal accounting for everyone
-arch=('i686' 'x86_64')
-url=http://homebank.free.fr/;
-license=('GPL')
-depends=('desktop-file-utils' 'gtk3' 'hicolor-icon-theme' 'libofx' 'librsvg' 
'perl-xml-parser' 'shared-mime-info')
-makedepends=('intltool')
-install=$pkgname.install
-changelog=$pkgname.changelog
-source=(http://homebank.free.fr/public/$pkgname-$pkgver.tar.gz)
-sha256sums=('59b8c0d4ed520e1a79ab51087662642fceb0e68862f3c59b2557e1a91f259257')
-
-build() {
-  cd ${srcdir}/$pkgname-$pkgver
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/$pkgname-$pkgver
-
-  make DESTDIR=${pkgdir} install
-}

Copied: homebank/repos/community-i686/PKGBUILD (from rev 133414, 
homebank/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-05-14 12:09:11 UTC (rev 133415)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau svetlemo...@archlinux.org
+# Contributor: William Rea sillywi...@gmail.com
+
+pkgname=homebank
+pkgver=5.0.2
+pkgrel=1
+pkgdesc=Free, easy, personal accounting for everyone
+arch=('i686' 'x86_64')
+url=http://homebank.free.fr/;
+license=('GPL')
+depends=('desktop-file-utils' 'gtk3' 'hicolor-icon-theme' 'libofx' 'librsvg' 
'perl-xml-parser' 'shared-mime-info')
+makedepends=('intltool')
+install=$pkgname.install
+changelog=$pkgname.changelog
+source=(http://homebank.free.fr/public/$pkgname-$pkgver.tar.gz)
+sha256sums=('f2c3f9da0aa9af76cfed63a19104d99d33b1766cac89dd1586c378b9cf54a2ca')
+
+build() {
+  cd ${srcdir}/$pkgname-$pkgver
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/$pkgname-$pkgver
+
+  make DESTDIR=${pkgdir} install
+}

Deleted: homebank.changelog
===
--- homebank.changelog  2015-05-14 12:01:17 UTC (rev 133414)
+++ homebank.changelog  2015-05-14 12:09:11 UTC (rev 133415)
@@ -1,35 +0,0 @@
-2015-04-18 Jaroslav Lichtblau svetlemo...@archlinux.org
-   * homebank 5.0.1-1
-
-2015-02-08 Jaroslav Lichtblau svetlemo...@archlinux.org
-   * homebank 5.0.0-1
-
-2014-08-10 Jaroslav Lichtblau svetlemo...@archlinux.org
-   * homebank 4.6.3-1
-
-2014-07-29 Jaroslav Lichtblau svetlemo...@archlinux.org
-   * homebank 4.6.2-1
-
-2014-06-28 Jaroslav Lichtblau svetlemo...@archlinux.org
-   * homebank 4.6.1-1
-
-2014-03-02 Jaroslav Lichtblau svetlemo...@archlinux.org
-   * homebank 4.5.6-1
-
-2014-02-04 Jaroslav Lichtblau svetlemo...@archlinux.org
-   * homebank 4.5.5-1
-
-2013-10-05 Jaroslav Lichtblau svetlemo...@archlinux.org
-   * homebank 4.5.4-1
-
-2013-09-28 Jaroslav Lichtblau svetlemo...@archlinux.org
-   * homebank 4.5.3-1
-
-2013-09-02 Jaroslav Lichtblau svetlemo...@archlinux.org
-   * homebank 4.5.2-1
-
-2013-08-08 Jaroslav Lichtblau svetlemo...@archlinux.org
-   * homebank 4.5.1-1
-
-2013-01-18 Jaroslav Lichtblau svetlemo...@archlinux.org
-   * homebank 4.5-1

Copied: homebank/repos/community-i686/homebank.changelog (from rev 133414, 
homebank/trunk/homebank.changelog)
===
--- homebank.changelog  (rev 0)
+++ homebank.changelog  2015-05-14 12:09:11 UTC (rev 133415)
@@ -0,0 +1,38 @@
+2015-05-14 Jaroslav Lichtblau svetlemo...@archlinux.org
+   * homebank 5.0.2-1
+
+2015-04-18 Jaroslav Lichtblau svetlemo...@archlinux.org
+   * homebank 5.0.1-1
+
+2015-02-08 Jaroslav Lichtblau svetlemo...@archlinux.org
+   * homebank 5.0.0-1
+
+2014-08-10 Jaroslav Lichtblau svetlemo...@archlinux.org
+   * homebank 4.6.3-1
+
+2014-07-29 Jaroslav Lichtblau svetlemo...@archlinux.org
+   * homebank 4.6.2-1
+
+2014-06-28 Jaroslav Lichtblau 

[arch-commits] Commit in skrooge/repos/community-i686 (6 files)

2015-05-14 Thread Jaroslav Lichtblau
Date: Thursday, May 14, 2015 @ 14:27:34
  Author: jlichtblau
Revision: 133418

archrelease: copy trunk to community-i686

Added:
  skrooge/repos/community-i686/PKGBUILD
(from rev 133417, skrooge/trunk/PKGBUILD)
  skrooge/repos/community-i686/skrooge.changelog
(from rev 133417, skrooge/trunk/skrooge.changelog)
  skrooge/repos/community-i686/skrooge.install
(from rev 133417, skrooge/trunk/skrooge.install)
Deleted:
  skrooge/repos/community-i686/PKGBUILD
  skrooge/repos/community-i686/skrooge.changelog
  skrooge/repos/community-i686/skrooge.install

---+
 PKGBUILD  |   66 ++---
 skrooge.changelog |   91 ++--
 skrooge.install   |   28 
 3 files changed, 94 insertions(+), 91 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-05-14 12:16:01 UTC (rev 133417)
+++ PKGBUILD2015-05-14 12:27:34 UTC (rev 133418)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau svetlemo...@archlinux.org
-# Contributor: Ray Rashif sc...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: neuromante lorenzo.nizzi.gr...@gmail.com
-
-pkgname=skrooge
-pkgver=1.11.0
-pkgrel=1
-pkgdesc=A personal finances manager for KDE
-arch=('i686' 'x86_64')
-url=http://skrooge.org/;
-license=('GPL')
-depends=('kdebase-runtime' 'libofx' 'qca-ossl' 'qjson' 'grantlee-qt4')
-makedepends=('cmake' 'automoc4' 'docbook-xsl' 'boost' 'kdepim-libkdepim')
-optdepends=('kdepim-libkdepim: for KDE PIM integration')
-install=$pkgname.install
-changelog=$pkgname.changelog
-source=(http://download.kde.org/stable/$pkgname/$pkgname-$pkgver.tar.bz2)
-sha256sums=('9fa9bdeef0580a0600ac27bde48debcf0e224249c653439ff5fff414ef6e8ef2')
-
-build() {
-  cd ${srcdir}/$pkgname-$pkgver
-
-  cmake . -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/$pkgname-$pkgver
-
-  make DESTDIR=${pkgdir} install
-}

Copied: skrooge/repos/community-i686/PKGBUILD (from rev 133417, 
skrooge/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-05-14 12:27:34 UTC (rev 133418)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau svetlemo...@archlinux.org
+# Contributor: Ray Rashif sc...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: neuromante lorenzo.nizzi.gr...@gmail.com
+
+pkgname=skrooge
+pkgver=1.12.0
+pkgrel=1
+pkgdesc=A personal finances manager for KDE
+arch=('i686' 'x86_64')
+url=http://skrooge.org/;
+license=('GPL')
+depends=('kdebase-runtime' 'libofx' 'qca-ossl' 'qjson' 'grantlee-qt4')
+makedepends=('cmake' 'automoc4' 'docbook-xsl' 'boost' 'kdepim-libkdepim')
+optdepends=('kdepim-libkdepim: for KDE PIM integration')
+install=$pkgname.install
+changelog=$pkgname.changelog
+source=(http://download.kde.org/stable/$pkgname/$pkgname-$pkgver.tar.bz2)
+sha256sums=('2407e6e7efa7a0f759c91660a419de2e5ba66f2675cfbee300d12736ef928c1d')
+
+build() {
+  cd ${srcdir}/$pkgname-$pkgver
+
+  cmake . -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/$pkgname-$pkgver
+
+  make DESTDIR=${pkgdir} install
+}

Deleted: skrooge.changelog
===
--- skrooge.changelog   2015-05-14 12:16:01 UTC (rev 133417)
+++ skrooge.changelog   2015-05-14 12:27:34 UTC (rev 133418)
@@ -1,44 +0,0 @@
-2015-04-18 Jaroslav Lichtblau svetlemo...@archlinux.org
-   * skrooge 1.11.0-1
-
-2014-10-30 Jaroslav Lichtblau svetlemo...@archlinux.org
-   * skrooge 1.10.0-1
-
-2014-04-18 Jaroslav Lichtblau svetlemo...@archlinux.org
-   * skrooge 1.9.0-1
-
-2013-12-23 Jaroslav Lichtblau svetlemo...@archlinux.org
-   * skrooge 1.8.0-3 FS#37406 fix
-
-2013-10-06 Jaroslav Lichtblau svetlemo...@archlinux.org
-   * skrooge 1.8.0-1
-
-2013-05-18 Jaroslav Lichtblau svetlemo...@archlinux.org
-   * skrooge 1.7.1-1
-
-2013-03-05 Jaroslav Lichtblau svetlemo...@archlinux.org
-   * skrooge 1.6.0-1
-
-2013-01-30 Jaroslav Lichtblau svetlemo...@archlinux.org
-   * skrooge 1.5.1-1
-
-2013-01-05 Jaroslav Lichtblau svetlemo...@archlinux.org
-   * skrooge 1.4.0-1
-
-2012-09-06 Jaroslav Lichtblau svetlemo...@archlinux.org
-   * skrooge 1.3.3-1
-
-2012-08-29 Jaroslav Lichtblau svetlemo...@archlinux.org
-   * skrooge 1.3.2-1
-
-2012-08-09  Eric Belanger  e...@archlinux.org
-   * skrooge 1.3.0-2 Rebuild against libofx 0.9.5
-
-2012-05-05 Jaroslav Lichtblau svetlemo...@archlinux.org
-   * skrooge 1.3.0-1
-
-2012-02-24 Jaroslav Lichtblau svetlemo...@archlinux.org
-   * skrooge 1.2.0-1
-
-2011-11-27 Jaroslav Lichtblau svetlemo...@archlinux.org
-   * skrooge 1.1.1-1

Copied: skrooge/repos/community-i686/skrooge.changelog (from rev 133417, 
skrooge/trunk/skrooge.changelog)

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

2015-05-14 Thread Anatol Pomozov
Date: Thursday, May 14, 2015 @ 15:35:55
  Author: anatolik
Revision: 133426

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

Added:
  avr-gdb/repos/community-testing-i686/
  avr-gdb/repos/community-testing-i686/PKGBUILD
(from rev 133425, avr-gdb/trunk/PKGBUILD)
  avr-gdb/repos/community-testing-x86_64/
  avr-gdb/repos/community-testing-x86_64/PKGBUILD
(from rev 133425, avr-gdb/trunk/PKGBUILD)

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

Copied: avr-gdb/repos/community-testing-i686/PKGBUILD (from rev 133425, 
avr-gdb/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2015-05-14 13:35:55 UTC (rev 133426)
@@ -0,0 +1,52 @@
+# Maintainer: schuay jakob.gru...@gmail.com
+# Contributor: Ivan Sichmann Freitas ivansichfreitas at gmail dot com
+# Contributor: Laszlo Papp djszapi2 at gmail dot com
+# Contributor: Gerardo Exequiel Pozzi vmlinuz...@yahoo.com.ar
+# Contributor: Vladimir Cerny blackvladi...@gmail.com
+# Contributor: 4javier 4javieregATgmailDOTcom
+
+_target=avr
+pkgname=$_target-gdb
+pkgver=7.9.1
+pkgrel=1
+pkgdesc='The GNU Debugger for AVR'
+arch=(i686 x86_64)
+url='http://www.gnu.org/software/gdb/'
+license=(GPL3)
+depends=(python2 guile xz)
+options=(!emptydirs)
+source=(ftp://ftp.gnu.org/gnu/gdb/gdb-$pkgver.tar.xz{,.sig})
+sha256sums=('cd9c543a411a05b2b647dd38936034b68c2b5d6f10e0d51dc168c166c973ba40'
+'SKIP')
+validpgpkeys=('F40ADB902B24264AA42E50BF92EDB04BFF325CF3') # Joel Brobecker 
brobec...@adacore.com
+
+prepare() {
+  cd gdb-$pkgver
+  sed -i /ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/ libiberty/configure
+}
+
+build() {
+  cd gdb-$pkgver
+
+  ./configure \
+--disable-nls \
+--enable-languages=c,c++ \
+--prefix=/usr \
+--target=$_target \
+--with-python=/usr/bin/python2 \
+--with-system-readline \
+--with-system-gdbinit=/etc/gdb/gdbinit
+
+  make
+}
+
+package() {
+  cd gdb-$pkgver
+
+  make DESTDIR=$pkgdir install
+
+  rm -r $pkgdir/usr/share/info
+  rm -r $pkgdir/usr/share/man
+  rm -r $pkgdir/usr/share/gdb
+  rm -r $pkgdir/usr/include/gdb
+}

Copied: avr-gdb/repos/community-testing-x86_64/PKGBUILD (from rev 133425, 
avr-gdb/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2015-05-14 13:35:55 UTC (rev 133426)
@@ -0,0 +1,52 @@
+# Maintainer: schuay jakob.gru...@gmail.com
+# Contributor: Ivan Sichmann Freitas ivansichfreitas at gmail dot com
+# Contributor: Laszlo Papp djszapi2 at gmail dot com
+# Contributor: Gerardo Exequiel Pozzi vmlinuz...@yahoo.com.ar
+# Contributor: Vladimir Cerny blackvladi...@gmail.com
+# Contributor: 4javier 4javieregATgmailDOTcom
+
+_target=avr
+pkgname=$_target-gdb
+pkgver=7.9.1
+pkgrel=1
+pkgdesc='The GNU Debugger for AVR'
+arch=(i686 x86_64)
+url='http://www.gnu.org/software/gdb/'
+license=(GPL3)
+depends=(python2 guile xz)
+options=(!emptydirs)
+source=(ftp://ftp.gnu.org/gnu/gdb/gdb-$pkgver.tar.xz{,.sig})
+sha256sums=('cd9c543a411a05b2b647dd38936034b68c2b5d6f10e0d51dc168c166c973ba40'
+'SKIP')
+validpgpkeys=('F40ADB902B24264AA42E50BF92EDB04BFF325CF3') # Joel Brobecker 
brobec...@adacore.com
+
+prepare() {
+  cd gdb-$pkgver
+  sed -i /ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/ libiberty/configure
+}
+
+build() {
+  cd gdb-$pkgver
+
+  ./configure \
+--disable-nls \
+--enable-languages=c,c++ \
+--prefix=/usr \
+--target=$_target \
+--with-python=/usr/bin/python2 \
+--with-system-readline \
+--with-system-gdbinit=/etc/gdb/gdbinit
+
+  make
+}
+
+package() {
+  cd gdb-$pkgver
+
+  make DESTDIR=$pkgdir install
+
+  rm -r $pkgdir/usr/share/info
+  rm -r $pkgdir/usr/share/man
+  rm -r $pkgdir/usr/share/gdb
+  rm -r $pkgdir/usr/include/gdb
+}


[arch-commits] Commit in luminancehdr/repos/community-x86_64 (7 files)

2015-05-14 Thread Jaroslav Lichtblau
Date: Thursday, May 14, 2015 @ 16:00:16
  Author: jlichtblau
Revision: 133432

archrelease: copy trunk to community-x86_64

Added:
  luminancehdr/repos/community-x86_64/PKGBUILD
(from rev 133431, luminancehdr/trunk/PKGBUILD)
  luminancehdr/repos/community-x86_64/luminancehdr.changelog
(from rev 133431, luminancehdr/trunk/luminancehdr.changelog)
  luminancehdr/repos/community-x86_64/luminancehdr.install
(from rev 133431, luminancehdr/trunk/luminancehdr.install)
  luminancehdr/repos/community-x86_64/qt5_printsupport.diff
(from rev 133431, luminancehdr/trunk/qt5_printsupport.diff)
Deleted:
  luminancehdr/repos/community-x86_64/PKGBUILD
  luminancehdr/repos/community-x86_64/luminancehdr.changelog
  luminancehdr/repos/community-x86_64/luminancehdr.install

+
 PKGBUILD   |   75 --
 luminancehdr.changelog |  117 ---
 luminancehdr.install   |   24 -
 qt5_printsupport.diff  |   29 +++
 4 files changed, 143 insertions(+), 102 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-05-14 14:00:00 UTC (rev 133431)
+++ PKGBUILD2015-05-14 14:00:16 UTC (rev 133432)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau dragonl...@aur.archlinux.org
-# Contributor: Lukas Jirkovsky l.jirkov...@gmail.com
-# Contributor: Dmitry N. Shilov stormbl...@land.ru
-
-pkgname=luminancehdr
-pkgver=2.4.0
-pkgrel=2
-pkgdesc='Open source graphical user interface application that aims to provide 
a workflow for HDR imaging'
-arch=('i686' 'x86_64')
-url='http://qtpfsgui.sourceforge.net/'
-license=('GPL')
-depends=('exiv2' 'fftw' 'gsl' 'lcms2' 'libraw' 'openexr' 'qt5-webkit' 'ccfits')
-makedepends=('cmake' 'boost' 'gtest' 'qt5-tools')
-optdepends=('hugin: align image stack functionality')
-install=$pkgname.install
-changelog=$pkgname.changelog
-options=('!emptydirs')
-source=(http://sourceforge.net/projects/qtpfsgui/files/luminance/${pkgver}/luminance-hdr-${pkgver}.tar.bz2)
-sha256sums=('14014eadab099944f051dd99447f6f47d455ffb0e4e0272d93a8e71fd96ad401')
-
-build() {
-  cd ${srcdir}/luminance-hdr-${pkgver}
-
-  cmake -DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/luminance-hdr-${pkgver}
-
-  make DESTDIR=${pkgdir} install
-}

Copied: luminancehdr/repos/community-x86_64/PKGBUILD (from rev 133431, 
luminancehdr/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-05-14 14:00:16 UTC (rev 133432)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau svetlemo...@archlinux.org
+# Contributor: Lukas Jirkovsky l.jirkov...@gmail.com
+# Contributor: Dmitry N. Shilov stormbl...@land.ru
+
+pkgname=luminancehdr
+pkgver=2.4.0
+pkgrel=3
+pkgdesc='Open source graphical user interface application that aims to provide 
a workflow for HDR imaging'
+arch=('i686' 'x86_64')
+url='http://qtpfsgui.sourceforge.net/'
+license=('GPL')
+depends=('exiv2' 'fftw' 'gsl' 'lcms2' 'libraw' 'openexr' 'qt5-webkit' 'ccfits')
+makedepends=('cmake' 'boost' 'gtest' 'qt5-tools' 'patch')
+optdepends=('hugin: align image stack functionality')
+install=$pkgname.install
+changelog=$pkgname.changelog
+options=('!emptydirs')
+source=(http://sourceforge.net/projects/qtpfsgui/files/luminance/$pkgver/luminance-hdr-$pkgver.tar.bz2
+qt5_printsupport.diff)
+sha256sums=('14014eadab099944f051dd99447f6f47d455ffb0e4e0272d93a8e71fd96ad401'
+'be2aaf8f544b086b770cec3db026e8ef7057bf3797961efeb8465197e4332c01')
+
+prepare() {
+  cd ${srcdir}/luminance-hdr-${pkgver}
+
+#Fix build error with Qt = 5.3.2
+  patch -Np1 -i ${srcdir}/qt5_printsupport.diff
+}
+
+build() {
+  cd ${srcdir}/luminance-hdr-${pkgver}
+
+  cmake -DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/luminance-hdr-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+}

Deleted: luminancehdr.changelog
===
--- luminancehdr.changelog  2015-05-14 14:00:00 UTC (rev 133431)
+++ luminancehdr.changelog  2015-05-14 14:00:16 UTC (rev 133432)
@@ -1,57 +0,0 @@
-2014-02-04 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-   * luminancehdr 2.4.0-1
-
-2014-01-20 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-   * luminancehdr 2.3.1-4 libraw rebuild
-
-2013-06-15 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-   * luminancehdr 2.3.1-3 libraw rebuild
-
-2013-04-20 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-   * luminancehdr 2.3.1-1
-
-2012-07-30 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-   * luminancehdr 2.3.0-2 exiv2-0.23 rebuild
-
-2012-07-07 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-   * luminancehdr 2.3.0-1
-
-2012-03-18 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-   * luminancehdr 2.2.1-1
-
-2012-01-27 Eric Belanger  e...@archlinux.org
-   * Rebuild 

[arch-commits] Commit in luminancehdr/repos/community-x86_64 (5 files)

2015-05-14 Thread Jaroslav Lichtblau
Date: Thursday, May 14, 2015 @ 16:30:54
  Author: jlichtblau
Revision: 133435

archrelease: copy trunk to community-x86_64

Added:
  luminancehdr/repos/community-x86_64/PKGBUILD
(from rev 133434, luminancehdr/trunk/PKGBUILD)
  luminancehdr/repos/community-x86_64/luminancehdr.changelog
(from rev 133434, luminancehdr/trunk/luminancehdr.changelog)
  luminancehdr/repos/community-x86_64/luminancehdr.install
(from rev 133434, luminancehdr/trunk/luminancehdr.install)
  luminancehdr/repos/community-x86_64/qt5_printsupport.diff
(from rev 133434, luminancehdr/trunk/qt5_printsupport.diff)
Deleted:
  luminancehdr/repos/community-x86_64/qt5_printsupport.diff

+
 PKGBUILD   |   42 
 luminancehdr.changelog |   60 +++
 luminancehdr.install   |   12 +
 qt5_printsupport.diff  |   58 ++---
 4 files changed, 143 insertions(+), 29 deletions(-)

Copied: luminancehdr/repos/community-x86_64/PKGBUILD (from rev 133434, 
luminancehdr/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-05-14 14:30:54 UTC (rev 133435)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau svetlemo...@archlinux.org
+# Contributor: Lukas Jirkovsky l.jirkov...@gmail.com
+# Contributor: Dmitry N. Shilov stormbl...@land.ru
+
+pkgname=luminancehdr
+pkgver=2.4.0
+pkgrel=3
+pkgdesc='Open source graphical user interface application that aims to provide 
a workflow for HDR imaging'
+arch=('i686' 'x86_64')
+url='http://qtpfsgui.sourceforge.net/'
+license=('GPL')
+depends=('exiv2' 'fftw' 'gsl' 'lcms2' 'libraw' 'openexr' 'qt5-webkit' 'ccfits')
+makedepends=('cmake' 'boost' 'gtest' 'qt5-tools' 'patch')
+optdepends=('hugin: align image stack functionality')
+install=$pkgname.install
+changelog=$pkgname.changelog
+options=('!emptydirs')
+source=(http://sourceforge.net/projects/qtpfsgui/files/luminance/$pkgver/luminance-hdr-$pkgver.tar.bz2
+qt5_printsupport.diff)
+sha256sums=('14014eadab099944f051dd99447f6f47d455ffb0e4e0272d93a8e71fd96ad401'
+'be2aaf8f544b086b770cec3db026e8ef7057bf3797961efeb8465197e4332c01')
+
+prepare() {
+  cd ${srcdir}/luminance-hdr-${pkgver}
+
+#Fix build error with Qt = 5.3.2
+  patch -Np1 -i ${srcdir}/qt5_printsupport.diff
+}
+
+build() {
+  cd ${srcdir}/luminance-hdr-${pkgver}
+
+  cmake -DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/luminance-hdr-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+}

Copied: luminancehdr/repos/community-x86_64/luminancehdr.changelog (from rev 
133434, luminancehdr/trunk/luminancehdr.changelog)
===
--- luminancehdr.changelog  (rev 0)
+++ luminancehdr.changelog  2015-05-14 14:30:54 UTC (rev 133435)
@@ -0,0 +1,60 @@
+2015-05-14 Jaroslav Lichtblau svetlemo...@archlinux.org
+   * luminancehdr 2.4.0-3
+
+2014-02-04 Jaroslav Lichtblau svetlemo...@archlinux.org
+   * luminancehdr 2.4.0-1
+
+2014-01-20 Jaroslav Lichtblau svetlemo...@archlinux.org
+   * luminancehdr 2.3.1-4 libraw rebuild
+
+2013-06-15 Jaroslav Lichtblau svetlemo...@archlinux.org
+   * luminancehdr 2.3.1-3 libraw rebuild
+
+2013-04-20 Jaroslav Lichtblau svetlemo...@archlinux.org
+   * luminancehdr 2.3.1-1
+
+2012-07-30 Jaroslav Lichtblau svetlemo...@archlinux.org
+   * luminancehdr 2.3.0-2 exiv2-0.23 rebuild
+
+2012-07-07 Jaroslav Lichtblau svetlemo...@archlinux.org
+   * luminancehdr 2.3.0-1
+
+2012-03-18 Jaroslav Lichtblau svetlemo...@archlinux.org
+   * luminancehdr 2.2.1-1
+
+2012-01-27 Eric Belanger  e...@archlinux.org
+   * Rebuild against libpng 1.5 and libtiff 4.0
+
+2011-08-21 Jaroslav Lichtblau svetlemo...@archlinux.org
+   * luminancehdr 2.1.0-1
+
+2011-05-01 Jaroslav Lichtblau svetlemo...@archlinux.org
+   * luminancehdr 2.0.2-1
+
+2010-10-19 Jaroslav Lichtblau svetlemo...@archlinux.org
+   * exiv2 0.20 rebuild
+
+2010-10-17 Jaroslav Lichtblau svetlemo...@archlinux.org
+   * Update to major release 2.0.1
+
+2010-06-27 Jaroslav Lichtblau svetlemo...@archlinux.org
+   * Package renamed to LuminanceHDR
+   * Update to major release 2.0.0
+
+2010-03-09 Andrea Scarpino and...@archlinux.org
+   * exiv2 0.19 rebuild
+
+2009-11-02 Biru Ionut io...@archlinux.ro
+   * add translation and fix segfault on old i686 procesors
+
+2009-04-29 Jaroslav Lichtblau svetlemo...@archlinux.org
+   * Update to major release v1.9.3
+
+2009-04-04 Jaroslav Lichtblau svetlemo...@archlinux.org
+   * Minor version (v1.9.2-3) update caused by exiv2 upgrade.
+
+2008-11-04 Jaroslav Lichtblau svetlemo...@archlinux.org
+   * Minor version (v1.9.2-2) update caused by openexr upgrade.
+
+2008-09-17 Jaroslav Lichtblau svetlemo...@archlinux.org
+   * Package moved to [community]


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

2015-05-14 Thread Jaroslav Lichtblau
Date: Thursday, May 14, 2015 @ 16:00:00
  Author: jlichtblau
Revision: 133431

upgpkg: luminancehdr 2.4.0-3
openexr 2.2.0 rebuild

Added:
  luminancehdr/trunk/qt5_printsupport.diff
Modified:
  luminancehdr/trunk/PKGBUILD
  luminancehdr/trunk/luminancehdr.changelog

+
 PKGBUILD   |   19 ++-
 luminancehdr.changelog |   35 +++
 qt5_printsupport.diff  |   29 +
 3 files changed, 62 insertions(+), 21 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-05-14 13:45:02 UTC (rev 133430)
+++ PKGBUILD2015-05-14 14:00:00 UTC (rev 133431)
@@ -1,24 +1,33 @@
 # $Id$
-# Maintainer: Jaroslav Lichtblau dragonl...@aur.archlinux.org
+# Maintainer: Jaroslav Lichtblau svetlemo...@archlinux.org
 # Contributor: Lukas Jirkovsky l.jirkov...@gmail.com
 # Contributor: Dmitry N. Shilov stormbl...@land.ru
 
 pkgname=luminancehdr
 pkgver=2.4.0
-pkgrel=2
+pkgrel=3
 pkgdesc='Open source graphical user interface application that aims to provide 
a workflow for HDR imaging'
 arch=('i686' 'x86_64')
 url='http://qtpfsgui.sourceforge.net/'
 license=('GPL')
 depends=('exiv2' 'fftw' 'gsl' 'lcms2' 'libraw' 'openexr' 'qt5-webkit' 'ccfits')
-makedepends=('cmake' 'boost' 'gtest' 'qt5-tools')
+makedepends=('cmake' 'boost' 'gtest' 'qt5-tools' 'patch')
 optdepends=('hugin: align image stack functionality')
 install=$pkgname.install
 changelog=$pkgname.changelog
 options=('!emptydirs')
-source=(http://sourceforge.net/projects/qtpfsgui/files/luminance/${pkgver}/luminance-hdr-${pkgver}.tar.bz2)
-sha256sums=('14014eadab099944f051dd99447f6f47d455ffb0e4e0272d93a8e71fd96ad401')
+source=(http://sourceforge.net/projects/qtpfsgui/files/luminance/$pkgver/luminance-hdr-$pkgver.tar.bz2
+qt5_printsupport.diff)
+sha256sums=('14014eadab099944f051dd99447f6f47d455ffb0e4e0272d93a8e71fd96ad401'
+'be2aaf8f544b086b770cec3db026e8ef7057bf3797961efeb8465197e4332c01')
 
+prepare() {
+  cd ${srcdir}/luminance-hdr-${pkgver}
+
+#Fix build error with Qt = 5.3.2
+  patch -Np1 -i ${srcdir}/qt5_printsupport.diff
+}
+
 build() {
   cd ${srcdir}/luminance-hdr-${pkgver}
 

Modified: luminancehdr.changelog
===
--- luminancehdr.changelog  2015-05-14 13:45:02 UTC (rev 133430)
+++ luminancehdr.changelog  2015-05-14 14:00:00 UTC (rev 133431)
@@ -1,40 +1,43 @@
-2014-02-04 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+2015-05-14 Jaroslav Lichtblau svetlemo...@archlinux.org
+   * luminancehdr 2.4.0-3
+
+2014-02-04 Jaroslav Lichtblau svetlemo...@archlinux.org
* luminancehdr 2.4.0-1
 
-2014-01-20 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+2014-01-20 Jaroslav Lichtblau svetlemo...@archlinux.org
* luminancehdr 2.3.1-4 libraw rebuild
 
-2013-06-15 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+2013-06-15 Jaroslav Lichtblau svetlemo...@archlinux.org
* luminancehdr 2.3.1-3 libraw rebuild
 
-2013-04-20 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+2013-04-20 Jaroslav Lichtblau svetlemo...@archlinux.org
* luminancehdr 2.3.1-1
 
-2012-07-30 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+2012-07-30 Jaroslav Lichtblau svetlemo...@archlinux.org
* luminancehdr 2.3.0-2 exiv2-0.23 rebuild
 
-2012-07-07 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+2012-07-07 Jaroslav Lichtblau svetlemo...@archlinux.org
* luminancehdr 2.3.0-1
 
-2012-03-18 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+2012-03-18 Jaroslav Lichtblau svetlemo...@archlinux.org
* luminancehdr 2.2.1-1
 
 2012-01-27 Eric Belanger  e...@archlinux.org
* Rebuild against libpng 1.5 and libtiff 4.0
 
-2011-08-21 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+2011-08-21 Jaroslav Lichtblau svetlemo...@archlinux.org
* luminancehdr 2.1.0-1
 
-2011-05-01 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+2011-05-01 Jaroslav Lichtblau svetlemo...@archlinux.org
* luminancehdr 2.0.2-1
 
-2010-10-19 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+2010-10-19 Jaroslav Lichtblau svetlemo...@archlinux.org
* exiv2 0.20 rebuild
 
-2010-10-17 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+2010-10-17 Jaroslav Lichtblau svetlemo...@archlinux.org
* Update to major release 2.0.1
 
-2010-06-27 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+2010-06-27 Jaroslav Lichtblau svetlemo...@archlinux.org
* Package renamed to LuminanceHDR
* Update to major release 2.0.0
 
@@ -44,14 +47,14 @@
 2009-11-02 Biru Ionut io...@archlinux.ro
* add translation and fix segfault on old i686 procesors
 
-2009-04-29 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+2009-04-29 Jaroslav Lichtblau svetlemo...@archlinux.org
* Update to major release v1.9.3
 
-2009-04-04 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+2009-04-04 Jaroslav Lichtblau svetlemo...@archlinux.org
  

[arch-commits] Commit in luminancehdr/repos/community-x86_64 (3 files)

2015-05-14 Thread Jaroslav Lichtblau
Date: Thursday, May 14, 2015 @ 16:06:55
  Author: jlichtblau
Revision: 133433

archrelease: copy trunk to community-x86_64

Deleted:
  luminancehdr/repos/community-x86_64/PKGBUILD
  luminancehdr/repos/community-x86_64/luminancehdr.changelog
  luminancehdr/repos/community-x86_64/luminancehdr.install

+
 PKGBUILD   |   42 
 luminancehdr.changelog |   60 ---
 luminancehdr.install   |   12 -
 3 files changed, 114 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-05-14 14:00:16 UTC (rev 133432)
+++ PKGBUILD2015-05-14 14:06:55 UTC (rev 133433)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau svetlemo...@archlinux.org
-# Contributor: Lukas Jirkovsky l.jirkov...@gmail.com
-# Contributor: Dmitry N. Shilov stormbl...@land.ru
-
-pkgname=luminancehdr
-pkgver=2.4.0
-pkgrel=3
-pkgdesc='Open source graphical user interface application that aims to provide 
a workflow for HDR imaging'
-arch=('i686' 'x86_64')
-url='http://qtpfsgui.sourceforge.net/'
-license=('GPL')
-depends=('exiv2' 'fftw' 'gsl' 'lcms2' 'libraw' 'openexr' 'qt5-webkit' 'ccfits')
-makedepends=('cmake' 'boost' 'gtest' 'qt5-tools' 'patch')
-optdepends=('hugin: align image stack functionality')
-install=$pkgname.install
-changelog=$pkgname.changelog
-options=('!emptydirs')
-source=(http://sourceforge.net/projects/qtpfsgui/files/luminance/$pkgver/luminance-hdr-$pkgver.tar.bz2
-qt5_printsupport.diff)
-sha256sums=('14014eadab099944f051dd99447f6f47d455ffb0e4e0272d93a8e71fd96ad401'
-'be2aaf8f544b086b770cec3db026e8ef7057bf3797961efeb8465197e4332c01')
-
-prepare() {
-  cd ${srcdir}/luminance-hdr-${pkgver}
-
-#Fix build error with Qt = 5.3.2
-  patch -Np1 -i ${srcdir}/qt5_printsupport.diff
-}
-
-build() {
-  cd ${srcdir}/luminance-hdr-${pkgver}
-
-  cmake -DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/luminance-hdr-${pkgver}
-
-  make DESTDIR=${pkgdir} install
-}

Deleted: luminancehdr.changelog
===
--- luminancehdr.changelog  2015-05-14 14:00:16 UTC (rev 133432)
+++ luminancehdr.changelog  2015-05-14 14:06:55 UTC (rev 133433)
@@ -1,60 +0,0 @@
-2015-05-14 Jaroslav Lichtblau svetlemo...@archlinux.org
-   * luminancehdr 2.4.0-3
-
-2014-02-04 Jaroslav Lichtblau svetlemo...@archlinux.org
-   * luminancehdr 2.4.0-1
-
-2014-01-20 Jaroslav Lichtblau svetlemo...@archlinux.org
-   * luminancehdr 2.3.1-4 libraw rebuild
-
-2013-06-15 Jaroslav Lichtblau svetlemo...@archlinux.org
-   * luminancehdr 2.3.1-3 libraw rebuild
-
-2013-04-20 Jaroslav Lichtblau svetlemo...@archlinux.org
-   * luminancehdr 2.3.1-1
-
-2012-07-30 Jaroslav Lichtblau svetlemo...@archlinux.org
-   * luminancehdr 2.3.0-2 exiv2-0.23 rebuild
-
-2012-07-07 Jaroslav Lichtblau svetlemo...@archlinux.org
-   * luminancehdr 2.3.0-1
-
-2012-03-18 Jaroslav Lichtblau svetlemo...@archlinux.org
-   * luminancehdr 2.2.1-1
-
-2012-01-27 Eric Belanger  e...@archlinux.org
-   * Rebuild against libpng 1.5 and libtiff 4.0
-
-2011-08-21 Jaroslav Lichtblau svetlemo...@archlinux.org
-   * luminancehdr 2.1.0-1
-
-2011-05-01 Jaroslav Lichtblau svetlemo...@archlinux.org
-   * luminancehdr 2.0.2-1
-
-2010-10-19 Jaroslav Lichtblau svetlemo...@archlinux.org
-   * exiv2 0.20 rebuild
-
-2010-10-17 Jaroslav Lichtblau svetlemo...@archlinux.org
-   * Update to major release 2.0.1
-
-2010-06-27 Jaroslav Lichtblau svetlemo...@archlinux.org
-   * Package renamed to LuminanceHDR
-   * Update to major release 2.0.0
-
-2010-03-09 Andrea Scarpino and...@archlinux.org
-   * exiv2 0.19 rebuild
-
-2009-11-02 Biru Ionut io...@archlinux.ro
-   * add translation and fix segfault on old i686 procesors
-
-2009-04-29 Jaroslav Lichtblau svetlemo...@archlinux.org
-   * Update to major release v1.9.3
-
-2009-04-04 Jaroslav Lichtblau svetlemo...@archlinux.org
-   * Minor version (v1.9.2-3) update caused by exiv2 upgrade.
-
-2008-11-04 Jaroslav Lichtblau svetlemo...@archlinux.org
-   * Minor version (v1.9.2-2) update caused by openexr upgrade.
-
-2008-09-17 Jaroslav Lichtblau svetlemo...@archlinux.org
-   * Package moved to [community]

Deleted: luminancehdr.install
===
--- luminancehdr.install2015-05-14 14:00:16 UTC (rev 133432)
+++ luminancehdr.install2015-05-14 14:06:55 UTC (rev 133433)
@@ -1,12 +0,0 @@
-post_install() {
-  which xdg-icon-resource 1/dev/null 2/dev/null  xdg-icon-resource 
forceupdate || true
-  update-desktop-database -q
-}
-
-post_upgrade() {
-post_install $1
-}
-
-post_remove() {
-post_install $1
-}


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

2015-05-14 Thread Sébastien Luttringer
Date: Thursday, May 14, 2015 @ 17:06:31
  Author: seblu
Revision: 239348

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

Added:
  coreutils/repos/testing-i686/
  coreutils/repos/testing-i686/01-btrfs-alloc.patch
(from rev 239347, coreutils/trunk/01-btrfs-alloc.patch)
  coreutils/repos/testing-i686/PKGBUILD
(from rev 239347, coreutils/trunk/PKGBUILD)
  coreutils/repos/testing-i686/coreutils.install
(from rev 239347, coreutils/trunk/coreutils.install)
  coreutils/repos/testing-x86_64/
  coreutils/repos/testing-x86_64/01-btrfs-alloc.patch
(from rev 239347, coreutils/trunk/01-btrfs-alloc.patch)
  coreutils/repos/testing-x86_64/PKGBUILD
(from rev 239347, coreutils/trunk/PKGBUILD)
  coreutils/repos/testing-x86_64/coreutils.install
(from rev 239347, coreutils/trunk/coreutils.install)

-+
 testing-i686/01-btrfs-alloc.patch   |   96 ++
 testing-i686/PKGBUILD   |   53 ++
 testing-i686/coreutils.install  |   17 ++
 testing-x86_64/01-btrfs-alloc.patch |   96 ++
 testing-x86_64/PKGBUILD |   53 ++
 testing-x86_64/coreutils.install|   17 ++
 6 files changed, 332 insertions(+)

Copied: coreutils/repos/testing-i686/01-btrfs-alloc.patch (from rev 239347, 
coreutils/trunk/01-btrfs-alloc.patch)
===
--- testing-i686/01-btrfs-alloc.patch   (rev 0)
+++ testing-i686/01-btrfs-alloc.patch   2015-05-14 15:06:31 UTC (rev 239348)
@@ -0,0 +1,96 @@
+#http://debbugs.gnu.org/cgi/bugreport.cgi?bug=20570
+
+diff --git a/tests/cp/fiemap-empty.sh b/tests/cp/fiemap-empty.sh
+index a5eaac5..b3b2cd7 100755
+--- a/tests/cp/fiemap-empty.sh
 b/tests/cp/fiemap-empty.sh
+@@ -22,6 +22,7 @@ print_ver_ cp
+ # FIXME: enable any part of this test that is still relevant,
+ # or, if none are relevant (now that cp does not handle unwritten
+ # extents), just remove the test altogether.
++# Note also if checking allocations may need to sync first on BTRFS at least
+ skip_ 'disabled for now'
+ 
+ touch fiemap_chk
+diff --git a/tests/dd/sparse.sh b/tests/dd/sparse.sh
+index 4fdabad..626b405 100755
+--- a/tests/dd/sparse.sh
 b/tests/dd/sparse.sh
+@@ -17,6 +17,7 @@
+ 
+ . ${srcdir=.}/tests/init.sh; path_prepend_ ./src
+ print_ver_ dd
++is_local_dir_ . || very_expensive_
+ require_sparse_support_
+ 
+ # Ensure basic sparse generation works
+@@ -50,6 +51,9 @@ dd if=/dev/zeroof=file.in bs=1M count=1 seek=1 
conv=notrunc || fail=1
+ 
+ kb_alloc() { du -k $1|cut -f1; }
+ 
++# sync out data for async allocators like NFS/BTRFS
++# sync file.in || fail=1
++
+ # If our just-created input file appears to be too small,
+ # skip the remaining tests.  On at least Solaris 10 with NFS,
+ # file.in is reported to occupy = 1KiB for about 50 seconds
+@@ -58,7 +62,10 @@ if test $(kb_alloc file.in) -gt 3000; then
+ 
+   # Ensure NUL blocks smaller than the block size are not made sparse.
+   # Here, with a 2MiB block size, dd's conv=sparse must *not* introduce a 
hole.
+-  dd if=file.in of=file.out bs=2M conv=sparse
++  dd if=file.in of=file.out bs=2M conv=sparse || fail=1
++
++  # Intermittently BTRFS returns 0 allocation for file.out unless synced
++  sync file.out || framework_failure_
+   test 2500 -lt $(kb_alloc file.out) || fail=1
+ 
+   # Note we recreate a sparse file first to avoid
+diff --git a/tests/du/2g.sh b/tests/du/2g.sh
+index 5f04488..12c2eed 100755
+--- a/tests/du/2g.sh
 b/tests/du/2g.sh
+@@ -24,7 +24,6 @@ print_ver_ du
+ # Creating a 2GB file counts as 'very expensive'.
+ very_expensive_
+ 
+-
+ # Get number of free kilobytes on current partition, so we can
+ # skip this test if there is insufficient free space.
+ free_kb=$(df -k --output=avail . | tail -n1)
+@@ -42,16 +42,21 @@
+ }
+ 
+ big=big
+-rm -f $big
+-test -t 1 || printf 'creating a 2GB file...\n'
+-for i in $(seq 100); do
+-  # Note: 2147483648 == 2^31. Print floor(2^31/100) per iteration.
+-  printf %21474836s x  $big || fail=1
+-  # On the final iteration, append the remaining 48 bytes.
+-  test $i = 100  { printf %48s x  $big || fail=1; }
+-  test -t 1  printf 'creating a 2GB file: %d%% complete\r' $i
+-done
+-echo
++if ! fallocate -l2G $big; then
++  rm -f $big
++  {
++is_local_dir_ . || skip 'Not writing 2GB data to remote'
++for i in $(seq 100); do
++  # Note: 2147483648 == 2^31. Print floor(2^31/100) per iteration.
++  printf %21474836s x || fail=1
++done
++# After the final iteration, append the remaining 48 bytes.
++printf %48s x || fail=1
++  }  $big || fail=1
++fi
++
++# The allocation may be done asynchronously (BTRFS for example)
++sync $big || framework_failure_
+ 
+ du -k $big  out1 || fail=1
+ rm -f $big
+-- 
+2.3.4
+
+

Copied: coreutils/repos/testing-i686/PKGBUILD (from rev 239347, 
coreutils/trunk/PKGBUILD)

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

2015-05-14 Thread Sébastien Luttringer
Date: Thursday, May 14, 2015 @ 17:39:32
  Author: seblu
Revision: 133439

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

Added:
  go-md2man/repos/community-i686/
  go-md2man/repos/community-i686/PKGBUILD
(from rev 133438, go-md2man/trunk/PKGBUILD)
  go-md2man/repos/community-x86_64/
  go-md2man/repos/community-x86_64/PKGBUILD
(from rev 133438, go-md2man/trunk/PKGBUILD)

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

Copied: go-md2man/repos/community-i686/PKGBUILD (from rev 133438, 
go-md2man/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-05-14 15:39:32 UTC (rev 133439)
@@ -0,0 +1,30 @@
+# $Id$
+# Contributor: Sébastien Seblu Luttringer se...@arhlinux.org
+
+pkgname=go-md2man
+pkgver=1.0.2
+pkgrel=1
+pkgdesc='A markdown to manpage generator'
+arch=('x86_64' 'i686')
+url='https://github.com/cpuguy83/go-md2man'
+license=('MIT')
+makedepends=('git' 'go')
+source=($pkgname.tar.gz::https://github.com/cpuguy83/go-md2man/archive/v$pkgver.tar.gz;)
+sha256sums=('bbb936fbaba460200d0fe97181ba5a64c511d8aa9a647f76587f283a8cc6398f')
+
+build() {
+  export GOPATH=$(readlink -f .)
+  local repo=src/github.com/cpuguy83
+  mkdir -p $repo
+  ln -sf ../../../go-md2man-$pkgver $repo/go-md2man
+  cd $repo/go-md2man
+  go get -v ./...
+  $srcdir/bin/go-md2man -in=go-md2man.1.md -out=go-md2man.1
+}
+
+package() {
+  install -Dm755 $srcdir/bin/go-md2man $pkgdir/usr/bin/go-md2man
+  install -Dm755 $srcdir/go-md2man-$pkgver/go-md2man.1 
$pkgdir/usr/share/man/man1/go-md2man.1
+}
+
+# vim:set ts=2 sw=2 et:

Copied: go-md2man/repos/community-x86_64/PKGBUILD (from rev 133438, 
go-md2man/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-05-14 15:39:32 UTC (rev 133439)
@@ -0,0 +1,30 @@
+# $Id$
+# Contributor: Sébastien Seblu Luttringer se...@arhlinux.org
+
+pkgname=go-md2man
+pkgver=1.0.2
+pkgrel=1
+pkgdesc='A markdown to manpage generator'
+arch=('x86_64' 'i686')
+url='https://github.com/cpuguy83/go-md2man'
+license=('MIT')
+makedepends=('git' 'go')
+source=($pkgname.tar.gz::https://github.com/cpuguy83/go-md2man/archive/v$pkgver.tar.gz;)
+sha256sums=('bbb936fbaba460200d0fe97181ba5a64c511d8aa9a647f76587f283a8cc6398f')
+
+build() {
+  export GOPATH=$(readlink -f .)
+  local repo=src/github.com/cpuguy83
+  mkdir -p $repo
+  ln -sf ../../../go-md2man-$pkgver $repo/go-md2man
+  cd $repo/go-md2man
+  go get -v ./...
+  $srcdir/bin/go-md2man -in=go-md2man.1.md -out=go-md2man.1
+}
+
+package() {
+  install -Dm755 $srcdir/bin/go-md2man $pkgdir/usr/bin/go-md2man
+  install -Dm755 $srcdir/go-md2man-$pkgver/go-md2man.1 
$pkgdir/usr/share/man/man1/go-md2man.1
+}
+
+# vim:set ts=2 sw=2 et:


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

2015-05-14 Thread Antonio Rojas
Date: Thursday, May 14, 2015 @ 17:44:59
  Author: arojas
Revision: 133442

Fix license (FS#44263)

Modified:
  python-sphinx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-14 15:42:12 UTC (rev 133441)
+++ PKGBUILD2015-05-14 15:44:59 UTC (rev 133442)
@@ -6,10 +6,10 @@
 pkgbase=python-sphinx
 pkgname=('python-sphinx' 'python2-sphinx')
 pkgver=1.3.1
-pkgrel=6
+pkgrel=7
 arch=('any')
 url='http://sphinx.pocoo.org/'
-license=('GPL')
+license=('BSD')
 makedepends=(
   'python-setuptools'
   'python-docutils'
@@ -75,6 +75,8 @@
 
   cd Sphinx-$pkgver
   python setup.py install --root=$pkgdir --optimize=1
+
+  install -Dm644 $srcdir/Sphinx-$pkgver/LICENSE 
$pkgdir/usr/share/licenses/python-sphinx/LICENSE
 }
 
 package_python2-sphinx() {
@@ -85,6 +87,8 @@
 
   cd Sphinx-${pkgver}2
   python2 setup.py install --root=$pkgdir --optimize=1
+
+  install -Dm644 $srcdir/Sphinx-$pkgver/LICENSE 
$pkgdir/usr/share/licenses/python2-sphinx/LICENSE
 }
 
 # vim:set ts=2 sw=2 et:


[arch-commits] Commit in nss-pam-ldapd/trunk (PKGBUILD)

2015-05-14 Thread Johannes Löthberg
Date: Thursday, May 14, 2015 @ 19:39:35
  Author: demize
Revision: 133448

upgpkg: nss-pam-ldapd 0.9.5-1

upgpkg: nss-pam-ldapd 0.9.5-1

Modified:
  nss-pam-ldapd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-14 17:19:57 UTC (rev 133447)
+++ PKGBUILD2015-05-14 17:39:35 UTC (rev 133448)
@@ -1,27 +1,35 @@
 # $Id$
-# Maintainer: Federico Cinelli cine...@aur.archlinux.org
+# Maintainer: Johannes Löthberg johan...@kyriasis.com
+# Contributor: Federico Cinelli cine...@aur.archlinux.org
 
 pkgname=nss-pam-ldapd
-pkgver=0.9.4
+pkgver=0.9.5
 pkgrel=1
+
 pkgdesc='LDAP module for NSS and PAM'
+url=http://arthurdejong.org/nss-pam-ldapd/;
 arch=('i686' 'x86_64')
-url=http://arthurdejong.org/nss-pam-ldapd/;
 license=('LGPL2.1')
+
 depends=('pam')
 conflicts=('pam_ldap')
+
 backup=('etc/nslcd.conf')
+
 options=('!emptydirs')
+
 install=nss-pam-ldapd.install
-source=(http://arthurdejong.org/$pkgname/$pkgname-$pkgver.tar.gz;
+source=(http://arthurdejong.org/nss-pam-ldapd/nss-pam-ldapd-$pkgver.tar.gz{,.sig}
 nslcd.service
 nslcd.tmpfiles)
-md5sums=('0d74202700efdde3b6e551bfff49c132'
+md5sums=('1f0517d2c46ca1d8ecdbe23a671edc83' 'SKIP'
  'c2edd35bab384c907eb442c606de856f'
  'd78a702ae9e81af03ae0a85a6af4d2f3')
 
+validpgpkeys=('452EC2CB65CF68C2A1ADBF5F2A8B746810E0AFC1')
+
 build() {
-  cd $srcdir/$pkgname-$pkgver
+  cd nss-pam-ldapd-$pkgver
   ./configure \
 --prefix=/usr \
 --sbindir=/usr/bin \
@@ -33,7 +41,7 @@
 }
 
 package() {
-  cd $srcdir/$pkgname-$pkgver
+  cd nss-pam-ldapd-$pkgver
 
   install -Dm644 $srcdir/nslcd.tmpfiles 
$pkgdir/usr/lib/tmpfiles.d/nslcd.conf
   install -Dm644 $srcdir/nslcd.service 
$pkgdir/usr/lib/systemd/system/nslcd.service


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

2015-05-14 Thread Sébastien Luttringer
Date: Thursday, May 14, 2015 @ 19:18:53
  Author: seblu
Revision: 133446

upgpkg: linux-tools 4.0-3

- fix FS#43449

Modified:
  linux-tools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-14 16:11:32 UTC (rev 133445)
+++ PKGBUILD2015-05-14 17:18:53 UTC (rev 133446)
@@ -3,7 +3,6 @@
 
 pkgbase=linux-tools
 pkgname=(
-  'acpidump'
   'cgroup_event_listener'
   'cpupower'
   'libtraceevent'
@@ -15,7 +14,7 @@
   'x86_energy_perf_policy'
 )
 pkgver=4.0
-pkgrel=2
+pkgrel=3
 license=('GPL2')
 arch=('i686' 'x86_64')
 url='http://www.kernel.org'
@@ -106,11 +105,6 @@
   make
   popd
 
-  msg2 'acpidump'
-  pushd linux-$pkgver/tools/power/acpi
-  make
-  popd
-
   msg2 'cgroup_event_listener'
   pushd linux-$pkgver/tools/cgroup
   make
@@ -126,7 +120,6 @@
   pkgdesc='Linux kernel tools meta package'
   groups=()
   depends=(
-'acpidump'
 'cgroup_event_listener'
 'cpupower'
 'libtraceevent'
@@ -136,6 +129,9 @@
 'usbip'
 'x86_energy_perf_policy'
   )
+  conflicts=(
+'acpidump'
+  )
 }
 
 package_libtraceevent() {
@@ -221,17 +217,6 @@
   make install INSTALL_ROOT=$pkgdir
 }
 
-package_acpidump() {
-  pkgdesc='Dump system ACPI tables to an ASCII file'
-  depends=('glibc')
-  conflicts=('iasl')
-
-  cd linux-$pkgver/tools/power/acpi
-  make install sbindir=/usr/bin mandir=/usr/share/man DESTDIR=$pkgdir
-  #install -Dm755 acpidump $pkgdir/usr/bin/acpidump
-  #install -Dm644 acpidump.8 $pkgdir/usr/share/man/man8/acpidump.8
-}
-
 package_cgroup_event_listener() {
   pkgdesc='Simple listener of cgroup events'
   depends=('glibc')


[arch-commits] Commit in nss-pam-ldapd/repos (10 files)

2015-05-14 Thread Johannes Löthberg
Date: Thursday, May 14, 2015 @ 19:43:10
  Author: demize
Revision: 133449

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

Added:
  nss-pam-ldapd/repos/community-testing-i686/
  nss-pam-ldapd/repos/community-testing-i686/PKGBUILD
(from rev 133448, nss-pam-ldapd/trunk/PKGBUILD)
  nss-pam-ldapd/repos/community-testing-i686/nslcd.service
(from rev 133448, nss-pam-ldapd/trunk/nslcd.service)
  nss-pam-ldapd/repos/community-testing-i686/nslcd.tmpfiles
(from rev 133448, nss-pam-ldapd/trunk/nslcd.tmpfiles)
  nss-pam-ldapd/repos/community-testing-i686/nss-pam-ldapd.install
(from rev 133448, nss-pam-ldapd/trunk/nss-pam-ldapd.install)
  nss-pam-ldapd/repos/community-testing-x86_64/
  nss-pam-ldapd/repos/community-testing-x86_64/PKGBUILD
(from rev 133448, nss-pam-ldapd/trunk/PKGBUILD)
  nss-pam-ldapd/repos/community-testing-x86_64/nslcd.service
(from rev 133448, nss-pam-ldapd/trunk/nslcd.service)
  nss-pam-ldapd/repos/community-testing-x86_64/nslcd.tmpfiles
(from rev 133448, nss-pam-ldapd/trunk/nslcd.tmpfiles)
  nss-pam-ldapd/repos/community-testing-x86_64/nss-pam-ldapd.install
(from rev 133448, nss-pam-ldapd/trunk/nss-pam-ldapd.install)

+
 community-testing-i686/PKGBUILD|   53 +++
 community-testing-i686/nslcd.service   |   12 +
 community-testing-i686/nslcd.tmpfiles  |1 
 community-testing-i686/nss-pam-ldapd.install   |   11 
 community-testing-x86_64/PKGBUILD  |   53 +++
 community-testing-x86_64/nslcd.service |   12 +
 community-testing-x86_64/nslcd.tmpfiles|1 
 community-testing-x86_64/nss-pam-ldapd.install |   11 
 8 files changed, 154 insertions(+)

Copied: nss-pam-ldapd/repos/community-testing-i686/PKGBUILD (from rev 133448, 
nss-pam-ldapd/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2015-05-14 17:43:10 UTC (rev 133449)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Johannes Löthberg johan...@kyriasis.com
+# Contributor: Federico Cinelli cine...@aur.archlinux.org
+
+pkgname=nss-pam-ldapd
+pkgver=0.9.5
+pkgrel=1
+
+pkgdesc='LDAP module for NSS and PAM'
+url=http://arthurdejong.org/nss-pam-ldapd/;
+arch=('i686' 'x86_64')
+license=('LGPL2.1')
+
+depends=('pam')
+conflicts=('pam_ldap')
+
+backup=('etc/nslcd.conf')
+
+options=('!emptydirs')
+
+install=nss-pam-ldapd.install
+source=(http://arthurdejong.org/nss-pam-ldapd/nss-pam-ldapd-$pkgver.tar.gz{,.sig}
+nslcd.service
+nslcd.tmpfiles)
+md5sums=('1f0517d2c46ca1d8ecdbe23a671edc83' 'SKIP'
+ 'c2edd35bab384c907eb442c606de856f'
+ 'd78a702ae9e81af03ae0a85a6af4d2f3')
+
+validpgpkeys=('452EC2CB65CF68C2A1ADBF5F2A8B746810E0AFC1')
+
+build() {
+  cd nss-pam-ldapd-$pkgver
+  ./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--with-pam-seclib-dir=/usr/lib/security
+
+  make
+}
+
+package() {
+  cd nss-pam-ldapd-$pkgver
+
+  install -Dm644 $srcdir/nslcd.tmpfiles 
$pkgdir/usr/lib/tmpfiles.d/nslcd.conf
+  install -Dm644 $srcdir/nslcd.service 
$pkgdir/usr/lib/systemd/system/nslcd.service
+  install -Dm644 $srcdir/$pkgname-$pkgver/nslcd.conf $pkgdir/etc/nslcd.conf
+
+  make DESTDIR=$pkgdir install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: nss-pam-ldapd/repos/community-testing-i686/nslcd.service (from rev 
133448, nss-pam-ldapd/trunk/nslcd.service)
===
--- community-testing-i686/nslcd.service(rev 0)
+++ community-testing-i686/nslcd.service2015-05-14 17:43:10 UTC (rev 
133449)
@@ -0,0 +1,12 @@
+[Unit]
+Description=Naming services LDAP client daemon.
+After=syslog.target network.target
+
+[Service]
+Type=forking
+PIDFile=/var/run/nslcd/nslcd.pid
+ExecStart=/usr/bin/nslcd
+
+[Install]
+WantedBy=multi-user.target
+

Copied: nss-pam-ldapd/repos/community-testing-i686/nslcd.tmpfiles (from rev 
133448, nss-pam-ldapd/trunk/nslcd.tmpfiles)
===
--- community-testing-i686/nslcd.tmpfiles   (rev 0)
+++ community-testing-i686/nslcd.tmpfiles   2015-05-14 17:43:10 UTC (rev 
133449)
@@ -0,0 +1 @@
+d /run/nslcd 0755 nslcd nslcd -

Copied: nss-pam-ldapd/repos/community-testing-i686/nss-pam-ldapd.install (from 
rev 133448, nss-pam-ldapd/trunk/nss-pam-ldapd.install)
===
--- community-testing-i686/nss-pam-ldapd.install
(rev 0)
+++ community-testing-i686/nss-pam-ldapd.install2015-05-14 17:43:10 UTC 
(rev 133449)
@@ -0,0 +1,11 @@
+post_install() {
+getent passwd nslcd  /dev/null || useradd -r -M -U -d /var/run/nslcd -s 
/bin/false 

[arch-commits] Commit in nss-pam-ldapd/trunk (PKGBUILD)

2015-05-14 Thread Johannes Löthberg
Date: Thursday, May 14, 2015 @ 20:27:59
  Author: demize
Revision: 133450

Run the test-suite in the check function

Modified:
  nss-pam-ldapd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-14 17:43:10 UTC (rev 133449)
+++ PKGBUILD2015-05-14 18:27:59 UTC (rev 133450)
@@ -40,6 +40,11 @@
   make
 }
 
+check() {
+  cd nss-pam-ldapd-$pkgver
+  PYTHON=python2 make check
+}
+
 package() {
   cd nss-pam-ldapd-$pkgver
 


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

2015-05-14 Thread Jan Steffens
Date: Thursday, May 14, 2015 @ 20:42:00
  Author: heftig
Revision: 239357

3.16.2

Modified:
  gnome-shell/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-14 18:40:19 UTC (rev 239356)
+++ PKGBUILD2015-05-14 18:42:00 UTC (rev 239357)
@@ -3,8 +3,8 @@
 # Contributor: Flamelab panosfi...@gmail.com
 
 pkgname=gnome-shell
-pkgver=3.16.1
-pkgrel=2
+pkgver=3.16.2
+pkgrel=1
 pkgdesc=The next generation GNOME Shell
 arch=(i686 x86_64)
 url=http://live.gnome.org/GnomeShell;
@@ -20,7 +20,7 @@
 groups=(gnome)
 
source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz
 nm-libexecdir.patch)
-sha256sums=('9bd9fbb40fb003ae09bebfe29d5b6a569b1fbb4a81c92ac9bada5efb956bf201'
+sha256sums=('90b7aeac7673f05f0bf7de39444ac458900c943fa8fd22e5374c047aa54d1838'
 'e5bb10ad2e5c3e0fde3d05babd1bfdda701e553e02d493f7e54cb7832ce7e607')
 
 prepare() {


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

2015-05-14 Thread Jan Steffens
Date: Thursday, May 14, 2015 @ 20:40:19
  Author: heftig
Revision: 239356

3.16.2

Modified:
  mutter/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-14 16:11:16 UTC (rev 239355)
+++ PKGBUILD2015-05-14 18:40:19 UTC (rev 239356)
@@ -4,7 +4,7 @@
 # Contributor: Michael Kanis mkanis_at_gmx_dot_de
 
 pkgname=mutter
-pkgver=3.16.1.1
+pkgver=3.16.2
 pkgrel=1
 pkgdesc=A window manager for GNOME
 arch=(i686 x86_64)
@@ -18,7 +18,7 @@
 options=('!emptydirs')
 install=mutter.install
 
source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('795084f6b642ab45e9f73b82b185949a110f2149bc0bce9f70ff30c8ab4c051c')
+sha256sums=('4a2b752f0b3aa59f50563190222623324f5154acbb6bf174213f5849e77d0763')
 
 prepare() {
   cd $pkgname-$pkgver


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

2015-05-14 Thread Jan Steffens
Date: Thursday, May 14, 2015 @ 20:44:30
  Author: heftig
Revision: 239359

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

Added:
  gnome-shell/repos/extra-i686/PKGBUILD
(from rev 239358, gnome-shell/trunk/PKGBUILD)
  gnome-shell/repos/extra-i686/gnome-shell.install
(from rev 239358, gnome-shell/trunk/gnome-shell.install)
  gnome-shell/repos/extra-i686/nm-libexecdir.patch
(from rev 239358, gnome-shell/trunk/nm-libexecdir.patch)
  gnome-shell/repos/extra-x86_64/PKGBUILD
(from rev 239358, gnome-shell/trunk/PKGBUILD)
  gnome-shell/repos/extra-x86_64/gnome-shell.install
(from rev 239358, gnome-shell/trunk/gnome-shell.install)
  gnome-shell/repos/extra-x86_64/nm-libexecdir.patch
(from rev 239358, gnome-shell/trunk/nm-libexecdir.patch)
Deleted:
  gnome-shell/repos/extra-i686/PKGBUILD
  gnome-shell/repos/extra-i686/gnome-shell.install
  gnome-shell/repos/extra-i686/nm-libexecdir.patch
  gnome-shell/repos/extra-x86_64/PKGBUILD
  gnome-shell/repos/extra-x86_64/gnome-shell.install
  gnome-shell/repos/extra-x86_64/nm-libexecdir.patch

--+
 /PKGBUILD|  104 +
 /gnome-shell.install |   38 +
 /nm-libexecdir.patch |   24 
 extra-i686/PKGBUILD  |   52 --
 extra-i686/gnome-shell.install   |   19 --
 extra-i686/nm-libexecdir.patch   |   12 
 extra-x86_64/PKGBUILD|   52 --
 extra-x86_64/gnome-shell.install |   19 --
 extra-x86_64/nm-libexecdir.patch |   12 
 9 files changed, 166 insertions(+), 166 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-05-14 18:43:05 UTC (rev 239358)
+++ extra-i686/PKGBUILD 2015-05-14 18:44:30 UTC (rev 239359)
@@ -1,52 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru ib...@archlinux.org
-# Contributor: Flamelab panosfi...@gmail.com
-
-pkgname=gnome-shell
-pkgver=3.16.1
-pkgrel=2
-pkgdesc=The next generation GNOME Shell
-arch=(i686 x86_64)
-url=http://live.gnome.org/GnomeShell;
-license=(GPL2)
-depends=(accountsservice caribou gcr gjs gnome-bluetooth gnome-menus upower
- gnome-session gnome-settings-daemon gnome-themes-standard 
gsettings-desktop-schemas
- libcanberra-pulse libcroco libgdm libsecret mutter libnm-glib
- telepathy-logger telepathy-mission-control unzip gstreamer)
-makedepends=(intltool gtk-doc gnome-control-center evolution-data-server 
python gobject-introspection)
-optdepends=('gnome-control-center: System settings'
-'evolution-data-server: Evolution calendar integration')
-install=gnome-shell.install
-groups=(gnome)
-source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz
-nm-libexecdir.patch)
-sha256sums=('9bd9fbb40fb003ae09bebfe29d5b6a569b1fbb4a81c92ac9bada5efb956bf201'
-'e5bb10ad2e5c3e0fde3d05babd1bfdda701e553e02d493f7e54cb7832ce7e607')
-
-prepare() {
-  cd $pkgname-$pkgver
-
-  # FS#30747 FS#32730 Problems due to libexecdir different from NM
-  patch -Np1 -i ../nm-libexecdir.patch
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --libexecdir=/usr/lib/gnome-shell \
-  --localstatedir=/var --disable-static \
-  --disable-schemas-compile
-
-  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-
-  # Must exist; FS#37412
-  mkdir -p $pkgdir/usr/share/gnome-shell/modes
-}

Copied: gnome-shell/repos/extra-i686/PKGBUILD (from rev 239358, 
gnome-shell/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-05-14 18:44:30 UTC (rev 239359)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Ionut Biru ib...@archlinux.org
+# Contributor: Flamelab panosfi...@gmail.com
+
+pkgname=gnome-shell
+pkgver=3.16.2
+pkgrel=1
+pkgdesc=The next generation GNOME Shell
+arch=(i686 x86_64)
+url=http://live.gnome.org/GnomeShell;
+license=(GPL2)
+depends=(accountsservice caribou gcr gjs gnome-bluetooth gnome-menus upower
+ gnome-session gnome-settings-daemon gnome-themes-standard 
gsettings-desktop-schemas
+ libcanberra-pulse libcroco libgdm libsecret mutter libnm-glib
+ telepathy-logger telepathy-mission-control unzip gstreamer)
+makedepends=(intltool gtk-doc gnome-control-center evolution-data-server 
python gobject-introspection)
+optdepends=('gnome-control-center: System settings'
+'evolution-data-server: Evolution calendar integration')
+install=gnome-shell.install
+groups=(gnome)
+source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz
+nm-libexecdir.patch)

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

2015-05-14 Thread Jan Steffens
Date: Thursday, May 14, 2015 @ 20:43:05
  Author: heftig
Revision: 239358

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

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

-+
 /PKGBUILD   |   86 ++
 /mutter.install |   38 ++
 extra-i686/PKGBUILD |   43 -
 extra-i686/mutter.install   |   19 -
 extra-x86_64/PKGBUILD   |   43 -
 extra-x86_64/mutter.install |   19 -
 6 files changed, 124 insertions(+), 124 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-05-14 18:42:00 UTC (rev 239357)
+++ extra-i686/PKGBUILD 2015-05-14 18:43:05 UTC (rev 239358)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
-# Maintainer: Ionut Biru ib...@archlinux.org
-# Contributor: Michael Kanis mkanis_at_gmx_dot_de
-
-pkgname=mutter
-pkgver=3.16.1.1
-pkgrel=1
-pkgdesc=A window manager for GNOME
-arch=(i686 x86_64)
-license=('GPL')
-depends=('clutter' 'dconf' 'gobject-introspection-runtime' 
'gsettings-desktop-schemas' 'libcanberra' 'startup-notification' 'zenity' 
'libsm' 'gnome-desktop' 'upower' 'libxkbcommon-x11' 'gnome-settings-daemon')
-makedepends=('intltool' 'libxkbcommon-x11' 'gobject-introspection')
-conflicts=('mutter-wayland')
-replaces=('mutter-wayland')
-url=http://www.gnome.org;
-groups=('gnome')
-options=('!emptydirs')
-install=mutter.install
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('795084f6b642ab45e9f73b82b185949a110f2149bc0bce9f70ff30c8ab4c051c')
-
-prepare() {
-  cd $pkgname-$pkgver
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --libexecdir=/usr/lib/mutter \
-  --localstatedir=/var --disable-static \
-  --disable-schemas-compile --enable-compile-warnings=minimum
-
-  #https://bugzilla.gnome.org/show_bug.cgi?id=655517
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: mutter/repos/extra-i686/PKGBUILD (from rev 239357, 
mutter/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-05-14 18:43:05 UTC (rev 239358)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+# Maintainer: Ionut Biru ib...@archlinux.org
+# Contributor: Michael Kanis mkanis_at_gmx_dot_de
+
+pkgname=mutter
+pkgver=3.16.2
+pkgrel=1
+pkgdesc=A window manager for GNOME
+arch=(i686 x86_64)
+license=('GPL')
+depends=('clutter' 'dconf' 'gobject-introspection-runtime' 
'gsettings-desktop-schemas' 'libcanberra' 'startup-notification' 'zenity' 
'libsm' 'gnome-desktop' 'upower' 'libxkbcommon-x11' 'gnome-settings-daemon')
+makedepends=('intltool' 'libxkbcommon-x11' 'gobject-introspection')
+conflicts=('mutter-wayland')
+replaces=('mutter-wayland')
+url=http://www.gnome.org;
+groups=('gnome')
+options=('!emptydirs')
+install=mutter.install
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('4a2b752f0b3aa59f50563190222623324f5154acbb6bf174213f5849e77d0763')
+
+prepare() {
+  cd $pkgname-$pkgver
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --libexecdir=/usr/lib/mutter \
+  --localstatedir=/var --disable-static \
+  --disable-schemas-compile --enable-compile-warnings=minimum
+
+  #https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: extra-i686/mutter.install
===
--- extra-i686/mutter.install   2015-05-14 18:42:00 UTC (rev 239357)
+++ extra-i686/mutter.install   2015-05-14 18:43:05 UTC (rev 239358)
@@ -1,19 +0,0 @@
-pkgname=mutter
-
-post_install() {
-glib-compile-schemas /usr/share/glib-2.0/schemas
-}
-
-pre_upgrade() {
-if [ -f /usr/share/gconf/schemas/$pkgname.schemas ]; then
-/usr/sbin/gconfpkg --uninstall $pkgname
-fi
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-post_install
-}

Copied: mutter/repos/extra-i686/mutter.install (from 

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

2015-05-14 Thread Sébastien Luttringer
Date: Thursday, May 14, 2015 @ 19:19:57
  Author: seblu
Revision: 133447

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

Added:
  linux-tools/repos/community-i686/02-archlinux-paths.patch
(from rev 133446, linux-tools/trunk/02-archlinux-paths.patch)
  linux-tools/repos/community-i686/04-fix-usip-h-path.patch
(from rev 133446, linux-tools/trunk/04-fix-usip-h-path.patch)
  linux-tools/repos/community-i686/PKGBUILD
(from rev 133446, linux-tools/trunk/PKGBUILD)
  linux-tools/repos/community-i686/cpupower.default
(from rev 133446, linux-tools/trunk/cpupower.default)
  linux-tools/repos/community-i686/cpupower.install
(from rev 133446, linux-tools/trunk/cpupower.install)
  linux-tools/repos/community-i686/cpupower.service
(from rev 133446, linux-tools/trunk/cpupower.service)
  linux-tools/repos/community-i686/cpupower.systemd
(from rev 133446, linux-tools/trunk/cpupower.systemd)
  linux-tools/repos/community-i686/usbipd.service
(from rev 133446, linux-tools/trunk/usbipd.service)
  linux-tools/repos/community-x86_64/02-archlinux-paths.patch
(from rev 133446, linux-tools/trunk/02-archlinux-paths.patch)
  linux-tools/repos/community-x86_64/04-fix-usip-h-path.patch
(from rev 133446, linux-tools/trunk/04-fix-usip-h-path.patch)
  linux-tools/repos/community-x86_64/PKGBUILD
(from rev 133446, linux-tools/trunk/PKGBUILD)
  linux-tools/repos/community-x86_64/cpupower.default
(from rev 133446, linux-tools/trunk/cpupower.default)
  linux-tools/repos/community-x86_64/cpupower.install
(from rev 133446, linux-tools/trunk/cpupower.install)
  linux-tools/repos/community-x86_64/cpupower.service
(from rev 133446, linux-tools/trunk/cpupower.service)
  linux-tools/repos/community-x86_64/cpupower.systemd
(from rev 133446, linux-tools/trunk/cpupower.systemd)
  linux-tools/repos/community-x86_64/usbipd.service
(from rev 133446, linux-tools/trunk/usbipd.service)
Deleted:
  linux-tools/repos/community-i686/02-archlinux-paths.patch
  linux-tools/repos/community-i686/04-fix-usip-h-path.patch
  linux-tools/repos/community-i686/PKGBUILD
  linux-tools/repos/community-i686/cpupower.default
  linux-tools/repos/community-i686/cpupower.install
  linux-tools/repos/community-i686/cpupower.service
  linux-tools/repos/community-i686/cpupower.systemd
  linux-tools/repos/community-i686/usbipd.service
  linux-tools/repos/community-x86_64/02-archlinux-paths.patch
  linux-tools/repos/community-x86_64/04-fix-usip-h-path.patch
  linux-tools/repos/community-x86_64/PKGBUILD
  linux-tools/repos/community-x86_64/cpupower.default
  linux-tools/repos/community-x86_64/cpupower.install
  linux-tools/repos/community-x86_64/cpupower.service
  linux-tools/repos/community-x86_64/cpupower.systemd
  linux-tools/repos/community-x86_64/usbipd.service

---+
 /02-archlinux-paths.patch |   42 ++
 /04-fix-usip-h-path.patch |   26 +
 /PKGBUILD |  472 
 /cpupower.default |   58 +++
 /cpupower.install |   26 +
 /cpupower.service |   20 +
 /cpupower.systemd |   64 +++
 /usbipd.service   |   18 +
 community-i686/02-archlinux-paths.patch   |   21 -
 community-i686/04-fix-usip-h-path.patch   |   13 
 community-i686/PKGBUILD   |  251 --
 community-i686/cpupower.default   |   29 -
 community-i686/cpupower.install   |   13 
 community-i686/cpupower.service   |   10 
 community-i686/cpupower.systemd   |   32 -
 community-i686/usbipd.service |9 
 community-x86_64/02-archlinux-paths.patch |   21 -
 community-x86_64/04-fix-usip-h-path.patch |   13 
 community-x86_64/PKGBUILD |  251 --
 community-x86_64/cpupower.default |   29 -
 community-x86_64/cpupower.install |   13 
 community-x86_64/cpupower.service |   10 
 community-x86_64/cpupower.systemd |   32 -
 community-x86_64/usbipd.service   |9 
 24 files changed, 726 insertions(+), 756 deletions(-)

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


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

2015-05-14 Thread Antonio Rojas
Date: Thursday, May 14, 2015 @ 21:01:32
  Author: arojas
Revision: 133451

Update to 0.8.1

Modified:
  lxpanel/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-14 18:27:59 UTC (rev 133450)
+++ PKGBUILD2015-05-14 19:01:32 UTC (rev 133451)
@@ -4,7 +4,7 @@
 # Contributor: Juergen Hoetzel juer...@archlinux.org
 
 pkgname=lxpanel
-pkgver=0.8.0
+pkgver=0.8.1
 pkgrel=1
 pkgdesc='Lightweight X11 desktop panel for LXDE'
 arch=('i686' 'x86_64')
@@ -15,7 +15,7 @@
 makedepends=('intltool' 'docbook-xml' 'docbook-xsl' 'wireless_tools')
 optdepends=('wireless_tools: netstat plugin')
 
source=(http://downloads.sourceforge.net/sourceforge/lxde/lxpanel-$pkgver.tar.xz)
-sha256sums=('94dd664ed6c7c001ca83959cdeadaa386ba0d2c91f113c2e6d318a5f33604415')
+sha256sums=('c657eb049a0f59e7b2d1ad6cb621c272833b765705c19089e48b3c248351b1e0')
 
 build() {
   cd $pkgname-$pkgver


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

2015-05-14 Thread Alexander Rødseth
Date: Thursday, May 14, 2015 @ 17:01:52
  Author: arodseth
Revision: 133436

upgpkg: rust 1.0.0_beta.5-1

Modified:
  rust/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-14 14:30:54 UTC (rev 133435)
+++ PKGBUILD2015-05-14 15:01:52 UTC (rev 133436)
@@ -3,7 +3,7 @@
 # Contributor: Daniel Micay danielmi...@gmail.com
 
 pkgname=rust
-pkgver=1.0.0_beta.4
+pkgver=1.0.0_beta.5
 pkgrel=1
 arch=('x86_64' 'i686')
 pkgdesc='Systems programming language focused on safety, speed and concurrency'
@@ -11,7 +11,7 @@
 license=('MIT' 'Apache')
 makedepends=('libffi' 'perl' 'python2' 'curl')
 
source=(http://static.rust-lang.org/dist/rustc-${pkgver/_/-}-src.tar.gz{,.asc})
-sha256sums=('54e5868dd55a5c171327c72d662b5931a962b0cf160022d11c189ea232e0bd91'
+sha256sums=('4263ee16cdc554fea9d527699040a75801c020daaf0d57953f8a185d334b0b63'
 'SKIP')
 install=$pkgname.install
 options=('staticlibs')


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

2015-05-14 Thread Alexander Rødseth
Date: Thursday, May 14, 2015 @ 17:02:10
  Author: arodseth
Revision: 133437

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

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

---+
 /PKGBUILD |   98 
 /rust.install |   26 ++
 community-i686/PKGBUILD   |   49 
 community-i686/rust.install   |   13 -
 community-x86_64/PKGBUILD |   49 
 community-x86_64/rust.install |   13 -
 6 files changed, 124 insertions(+), 124 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-05-14 15:01:52 UTC (rev 133436)
+++ community-i686/PKGBUILD 2015-05-14 15:02:10 UTC (rev 133437)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: Daniel Micay danielmi...@gmail.com
-
-pkgname=rust
-pkgver=1.0.0_beta.4
-pkgrel=1
-arch=('x86_64' 'i686')
-pkgdesc='Systems programming language focused on safety, speed and concurrency'
-url='http://www.rust-lang.org/'
-license=('MIT' 'Apache')
-makedepends=('libffi' 'perl' 'python2' 'curl')
-source=(http://static.rust-lang.org/dist/rustc-${pkgver/_/-}-src.tar.gz{,.asc})
-sha256sums=('54e5868dd55a5c171327c72d662b5931a962b0cf160022d11c189ea232e0bd91'
-'SKIP')
-install=$pkgname.install
-options=('staticlibs')
-validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) rust-...@rust-lang.org
-#gpg --keyserver hkp://keys.gnupg.net --recv-keys 
108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE
-
-prepare() {
-  cd rustc-${pkgver/_/-}
-
-  # Use Python 2
-  sed -i 's/^PYTHONVERSION.*/PYTHONVERSION := 3/' src/llvm/Makefile.rules
-}
-
-build() {
-  cd rustc-${pkgver/_/-}
-
-  ./configure --prefix=/usr --disable-docs --release-channel=beta
-  make
-}
-
-package() {
-  cd rustc-${pkgver/_/-}
-
-  make DESTDIR=$pkgdir install
-
-  install -Dm644 LICENSE-APACHE \
-$pkgdir/usr/share/licenses/$pkgname/LICENSE-APACHE
-  install -Dm644 LICENSE-MIT $pkgdir/usr/share/licenses/$pkgname/LICENSE-MIT
-
-  cd $pkgdir/usr/lib
-  rm rustlib/{components,manifest-rustc,rust-installer-version}
-  ln -sf rustlib/$CARCH-unknown-linux-gnu/lib/*.so .
-}
-
-# vim:set ts=2 sw=2 et:

Copied: rust/repos/community-i686/PKGBUILD (from rev 133436, 
rust/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-05-14 15:02:10 UTC (rev 133437)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Daniel Micay danielmi...@gmail.com
+
+pkgname=rust
+pkgver=1.0.0_beta.5
+pkgrel=1
+arch=('x86_64' 'i686')
+pkgdesc='Systems programming language focused on safety, speed and concurrency'
+url='http://www.rust-lang.org/'
+license=('MIT' 'Apache')
+makedepends=('libffi' 'perl' 'python2' 'curl')
+source=(http://static.rust-lang.org/dist/rustc-${pkgver/_/-}-src.tar.gz{,.asc})
+sha256sums=('4263ee16cdc554fea9d527699040a75801c020daaf0d57953f8a185d334b0b63'
+'SKIP')
+install=$pkgname.install
+options=('staticlibs')
+validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) rust-...@rust-lang.org
+#gpg --keyserver hkp://keys.gnupg.net --recv-keys 
108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE
+
+prepare() {
+  cd rustc-${pkgver/_/-}
+
+  # Use Python 2
+  sed -i 's/^PYTHONVERSION.*/PYTHONVERSION := 3/' src/llvm/Makefile.rules
+}
+
+build() {
+  cd rustc-${pkgver/_/-}
+
+  ./configure --prefix=/usr --disable-docs --release-channel=beta
+  make
+}
+
+package() {
+  cd rustc-${pkgver/_/-}
+
+  make DESTDIR=$pkgdir install
+
+  install -Dm644 LICENSE-APACHE \
+$pkgdir/usr/share/licenses/$pkgname/LICENSE-APACHE
+  install -Dm644 LICENSE-MIT $pkgdir/usr/share/licenses/$pkgname/LICENSE-MIT
+
+  cd $pkgdir/usr/lib
+  rm rustlib/{components,manifest-rustc,rust-installer-version}
+  ln -sf rustlib/$CARCH-unknown-linux-gnu/lib/*.so .
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/rust.install
===
--- community-i686/rust.install 2015-05-14 15:01:52 UTC (rev 133436)
+++ community-i686/rust.install 2015-05-14 15:02:10 UTC (rev 133437)
@@ -1,13 +0,0 @@
-post_install() {
-  if type -P update-mime-database  /dev/null; then
-update-mime-database 

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

2015-05-14 Thread Sébastien Luttringer
Date: Thursday, May 14, 2015 @ 17:17:38
  Author: seblu
Revision: 239349

upgpkg: btrfs-progs 4.0-2

- implement FS#44618

Modified:
  btrfs-progs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-14 15:06:31 UTC (rev 239348)
+++ PKGBUILD2015-05-14 15:17:38 UTC (rev 239349)
@@ -5,7 +5,7 @@
 
 pkgname=btrfs-progs
 pkgver=4.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Btrfs filesystem utilities'
 arch=('i686' 'x86_64')
 depends=('glibc' 'libutil-linux' 'e2fsprogs' 'lzo' 'zlib')
@@ -40,6 +40,9 @@
   cd $pkgname
   make prefix=$pkgdir/usr install
 
+  # install bash completion (FS#44618)
+  install -Dm644 btrfs-completion 
$pkgdir/usr/share/bash-completion/completions/btrfs
+
   # install mkinitcpio hooks
   cd $srcdir
   install -Dm644 initcpio-install-btrfs 
$pkgdir/usr/lib/initcpio/install/btrfs


[arch-commits] Commit in (4 files)

2015-05-14 Thread Sébastien Luttringer
Date: Thursday, May 14, 2015 @ 17:38:53
  Author: seblu
Revision: 133438

Add go-md2man from AUR

It's a docker build dep (man pages)

Added:
  go-md2man/
  go-md2man/repos/
  go-md2man/trunk/
  go-md2man/trunk/PKGBUILD

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

Added: go-md2man/trunk/PKGBUILD
===
--- go-md2man/trunk/PKGBUILD(rev 0)
+++ go-md2man/trunk/PKGBUILD2015-05-14 15:38:53 UTC (rev 133438)
@@ -0,0 +1,30 @@
+# $Id$
+# Contributor: Sébastien Seblu Luttringer se...@arhlinux.org
+
+pkgname=go-md2man
+pkgver=1.0.2
+pkgrel=1
+pkgdesc='A markdown to manpage generator'
+arch=('x86_64' 'i686')
+url='https://github.com/cpuguy83/go-md2man'
+license=('MIT')
+makedepends=('git' 'go')
+source=($pkgname.tar.gz::https://github.com/cpuguy83/go-md2man/archive/v$pkgver.tar.gz;)
+sha256sums=('bbb936fbaba460200d0fe97181ba5a64c511d8aa9a647f76587f283a8cc6398f')
+
+build() {
+  export GOPATH=$(readlink -f .)
+  local repo=src/github.com/cpuguy83
+  mkdir -p $repo
+  ln -sf ../../../go-md2man-$pkgver $repo/go-md2man
+  cd $repo/go-md2man
+  go get -v ./...
+  $srcdir/bin/go-md2man -in=go-md2man.1.md -out=go-md2man.1
+}
+
+package() {
+  install -Dm755 $srcdir/bin/go-md2man $pkgdir/usr/bin/go-md2man
+  install -Dm755 $srcdir/go-md2man-$pkgver/go-md2man.1 
$pkgdir/usr/share/man/man1/go-md2man.1
+}
+
+# vim:set ts=2 sw=2 et:


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


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

2015-05-14 Thread Antonio Rojas
Date: Thursday, May 14, 2015 @ 17:46:11
  Author: arojas
Revision: 133443

archrelease: copy trunk to community-testing-any

Added:
  python-sphinx/repos/community-testing-any/PKGBUILD
(from rev 133442, python-sphinx/trunk/PKGBUILD)
Deleted:
  python-sphinx/repos/community-testing-any/PKGBUILD

--+
 PKGBUILD |  184 +++--
 1 file changed, 94 insertions(+), 90 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-05-14 15:44:59 UTC (rev 133442)
+++ PKGBUILD2015-05-14 15:46:11 UTC (rev 133443)
@@ -1,90 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer
-# Contributor: Angel Velasquez an...@archlinux.org
-# Contributor: Fabio Volpe volpefa...@gmail.com
-
-pkgbase=python-sphinx
-pkgname=('python-sphinx' 'python2-sphinx')
-pkgver=1.3.1
-pkgrel=6
-arch=('any')
-url='http://sphinx.pocoo.org/'
-license=('GPL')
-makedepends=(
-  'python-setuptools'
-  'python-docutils'
-  'python-jinja'
-  'python-pygments'
-  'python-six'
-  'python2-setuptools'
-  'python2-docutils'
-  'python2-jinja'
-  'python2-pygments'
-  'python2-six'
-)
-checkdepends=(
-  'python-nose' 'python2-nose'
-  'texlive-latexextra'
-  'python-snowballstemmer' 'python2-snowballstemmer'
-  'python-babel' 'python2-babel'
-  'python-sphinx-alabaster-theme' 'python2-sphinx-alabaster-theme'
-  'python-sphinx_rtd_theme' 'python2-sphinx_rtd_theme'
-  'python2-mock'
-)
-source=(http://pypi.python.org/packages/source/S/Sphinx/Sphinx-$pkgver.tar.gz;)
-md5sums=('8786a194acf9673464c5455b11fd4332')
-
-prepare() {
-  # souce duplication is required because makefile modify source code
-  # setyp.py --build tricks don't works well
-  cp -a Sphinx-$pkgver Sphinx-${pkgver}2
-  # change python2 interpreter
-  find Sphinx-${pkgver}2 -type f -exec \
-sed -i '1s,^#! \?/usr/bin/\(env \|\)python$,#!/usr/bin/python2,' {} \;
-  # change sphinx-binaries name in source code
-  find Sphinx-${pkgver}2 -type f -name '*.py' -exec \
-sed -ri 's,(sphinx-(:?build|apidoc|autogen|quickstart)),\12,' {} \;
-}
-
-build() {
-  msg2 'Python 3 version'
-  cd $srcdir/Sphinx-$pkgver
-  make PYTHON=python3 build
-  msg2 'Python 2 version'
-  cd $srcdir/Sphinx-${pkgver}2
-  make PYTHON=python2 build
-}
-
-check() {
-  msg2 'Python 3 version'
-  cd $srcdir/Sphinx-$pkgver
-#  make PYTHON=python3 test
-  rm -r tests
-
-  msg2 'Python 2 version'
-  cd $srcdir/Sphinx-${pkgver}2
-  make PYTHON=python2 test
-  rm -r tests
-}
-
-package_python-sphinx() {
-  pkgdesc='Python3 documentation generator'
-  depends=('python-jinja' 'python-pygments' 'python-docutils' 
'python-sphinx_rtd_theme' 'python-sphinx-alabaster-theme' 'python-babel' 
-'python-snowballstemmer' 'python-six')
-  optdepends=('texlive-latexextra: for generation of PDF documentation')
-
-  cd Sphinx-$pkgver
-  python setup.py install --root=$pkgdir --optimize=1
-}
-
-package_python2-sphinx() {
-  pkgdesc='Python2 documentation generator'
-  depends=('python2-jinja' 'python2-pygments' 'python2-docutils' 
'python2-sphinx_rtd_theme' 'python2-sphinx-alabaster-theme' 'python2-babel' 
-'python2-snowballstemmer' 'python2-six')
-  optdepends=('texlive-latexextra: for generation of PDF documentation')
-
-  cd Sphinx-${pkgver}2
-  python2 setup.py install --root=$pkgdir --optimize=1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-sphinx/repos/community-testing-any/PKGBUILD (from rev 133442, 
python-sphinx/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-05-14 15:46:11 UTC (rev 133443)
@@ -0,0 +1,94 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+# Contributor: Angel Velasquez an...@archlinux.org
+# Contributor: Fabio Volpe volpefa...@gmail.com
+
+pkgbase=python-sphinx
+pkgname=('python-sphinx' 'python2-sphinx')
+pkgver=1.3.1
+pkgrel=7
+arch=('any')
+url='http://sphinx.pocoo.org/'
+license=('BSD')
+makedepends=(
+  'python-setuptools'
+  'python-docutils'
+  'python-jinja'
+  'python-pygments'
+  'python-six'
+  'python2-setuptools'
+  'python2-docutils'
+  'python2-jinja'
+  'python2-pygments'
+  'python2-six'
+)
+checkdepends=(
+  'python-nose' 'python2-nose'
+  'texlive-latexextra'
+  'python-snowballstemmer' 'python2-snowballstemmer'
+  'python-babel' 'python2-babel'
+  'python-sphinx-alabaster-theme' 'python2-sphinx-alabaster-theme'
+  'python-sphinx_rtd_theme' 'python2-sphinx_rtd_theme'
+  'python2-mock'
+)
+source=(http://pypi.python.org/packages/source/S/Sphinx/Sphinx-$pkgver.tar.gz;)
+md5sums=('8786a194acf9673464c5455b11fd4332')
+
+prepare() {
+  # souce duplication is required because makefile modify source code
+  # setyp.py --build tricks don't works well
+  cp -a Sphinx-$pkgver Sphinx-${pkgver}2
+  # change python2 interpreter
+  find Sphinx-${pkgver}2 -type f -exec \
+sed -i '1s,^#! \?/usr/bin/\(env \|\)python$,#!/usr/bin/python2,' {} \;
+  # change sphinx-binaries name in source code
+ 

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

2015-05-14 Thread Sébastien Luttringer
Date: Thursday, May 14, 2015 @ 18:11:16
  Author: seblu
Revision: 239355

Disable expensive tests

P?\195?\161draig Brady recommended to let very expensive test to developers

Modified:
  coreutils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-14 16:11:09 UTC (rev 239354)
+++ PKGBUILD2015-05-14 16:11:16 UTC (rev 239355)
@@ -42,7 +42,7 @@
 
 check() {
   cd $pkgname-$pkgver
-  RUN_VERY_EXPENSIVE_TESTS=yes make check
+  make check
 }
 
 package() {


[arch-commits] Commit in docker/repos/community-x86_64 (6 files)

2015-05-14 Thread Sébastien Luttringer
Date: Thursday, May 14, 2015 @ 17:42:12
  Author: seblu
Revision: 133441

archrelease: copy trunk to community-x86_64

Added:
  docker/repos/community-x86_64/PKGBUILD
(from rev 133440, docker/trunk/PKGBUILD)
  docker/repos/community-x86_64/docker.install
(from rev 133440, docker/trunk/docker.install)
  docker/repos/community-x86_64/docker.sysusers
(from rev 133440, docker/trunk/docker.sysusers)
Deleted:
  docker/repos/community-x86_64/PKGBUILD
  docker/repos/community-x86_64/docker.install
  docker/repos/community-x86_64/docker.sysusers

-+
 PKGBUILD|  109 --
 docker.install  |   26 ++--
 docker.sysusers |2 
 3 files changed, 71 insertions(+), 66 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-05-14 15:41:52 UTC (rev 133440)
+++ PKGBUILD2015-05-14 15:42:12 UTC (rev 133441)
@@ -1,52 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Seblu Luttringer
-
-pkgname=docker
-pkgver=1.6.2
-pkgrel=1
-epoch=1
-pkgdesc='Pack, ship and run any application as a lightweight container'
-arch=('x86_64')
-url='http://www.docker.io/'
-license=('Apache')
-depends=('bridge-utils' 'iproute2' 'device-mapper' 'sqlite' 'systemd')
-makedepends=('git' 'go' 'btrfs-progs')
-optdepends=('btrfs-progs: btrfs backend support'
-'lxc: lxc backend support')
-# don't strip binaries! A sha1 is used to check binary consistency.
-options=('!strip')
-install=$pkgname.install
-source=(git+https://github.com/docker/docker.git#tag=v$pkgver;
-$pkgname.sysusers)
-md5sums=('SKIP'
- '4324edeb9adc210a2c22f44eb4cb8a74')
-
-build() {
-  cd docker
-  export AUTO_GOPATH=1
-  ./hack/make.sh dynbinary
-}
-
-#check() {
-#  cd docker
-#  ./hack/make.sh dyntest
-#}
-
-package() {
-  cd docker
-  install -Dm755 bundles/$pkgver/dynbinary/docker-$pkgver 
$pkgdir/usr/bin/docker
-  install -Dm755 bundles/$pkgver/dynbinary/dockerinit-$pkgver 
$pkgdir/usr/lib/docker/dockerinit
-  # completion
-  install -Dm644 'contrib/completion/bash/docker' 
$pkgdir/usr/share/bash-completion/completions/docker
-  install -Dm644 'contrib/completion/zsh/_docker' 
$pkgdir/usr/share/zsh/site-functions/_docker
-  install -Dm644 'contrib/completion/fish/docker.fish' 
$pkgdir/usr/share/fish/completions/docker.fish
-  # systemd
-  install -Dm644 'contrib/init/systemd/docker.service' 
$pkgdir/usr/lib/systemd/system/docker.service
-  install -Dm644 'contrib/init/systemd/docker.socket' 
$pkgdir/usr/lib/systemd/system/docker.socket
-  install -Dm644 $srcdir/$pkgname.sysusers 
$pkgdir/usr/lib/sysusers.d/$pkgname.conf
-  # vim syntax
-  install -Dm644 'contrib/syntax/vim/syntax/dockerfile.vim' 
$pkgdir/usr/share/vim/vimfiles/syntax/dockerfile.vim
-  install -Dm644 'contrib/syntax/vim/ftdetect/dockerfile.vim' 
$pkgdir/usr/share/vim/vimfiles/ftdetect/dockerfile.vim
-}
-
-# vim:set ts=2 sw=2 et:

Copied: docker/repos/community-x86_64/PKGBUILD (from rev 133440, 
docker/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-05-14 15:42:12 UTC (rev 133441)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Sébastien Seblu Luttringer
+
+pkgname=docker
+pkgver=1.6.2
+pkgrel=2
+epoch=1
+pkgdesc='Pack, ship and run any application as a lightweight container'
+arch=('x86_64')
+url='http://www.docker.io/'
+license=('Apache')
+depends=('bridge-utils' 'iproute2' 'device-mapper' 'sqlite' 'systemd')
+makedepends=('git' 'go' 'btrfs-progs' 'go-md2man')
+optdepends=('btrfs-progs: btrfs backend support'
+'lxc: lxc backend support')
+# don't strip binaries! A sha1 is used to check binary consistency.
+options=('!strip')
+install=$pkgname.install
+source=(git+https://github.com/docker/docker.git#tag=v$pkgver;
+$pkgname.sysusers)
+md5sums=('SKIP'
+ '4324edeb9adc210a2c22f44eb4cb8a74')
+
+build() {
+  cd docker
+  export AUTO_GOPATH=1
+  ./hack/make.sh dynbinary
+  # man pages
+  docs/man/md2man-all.sh
+}
+
+#check() {
+#  cd docker
+#  ./hack/make.sh dyntest
+#}
+
+package() {
+  cd docker
+  install -Dm755 bundles/$pkgver/dynbinary/docker-$pkgver 
$pkgdir/usr/bin/docker
+  install -Dm755 bundles/$pkgver/dynbinary/dockerinit-$pkgver 
$pkgdir/usr/lib/docker/dockerinit
+  # completion
+  install -Dm644 'contrib/completion/bash/docker' 
$pkgdir/usr/share/bash-completion/completions/docker
+  install -Dm644 'contrib/completion/zsh/_docker' 
$pkgdir/usr/share/zsh/site-functions/_docker
+  install -Dm644 'contrib/completion/fish/docker.fish' 
$pkgdir/usr/share/fish/completions/docker.fish
+  # systemd
+  install -Dm644 'contrib/init/systemd/docker.service' 
$pkgdir/usr/lib/systemd/system/docker.service
+  install -Dm644 'contrib/init/systemd/docker.socket' 
$pkgdir/usr/lib/systemd/system/docker.socket
+  install -Dm644 $srcdir/$pkgname.sysusers 
$pkgdir/usr/lib/sysusers.d/$pkgname.conf
+  # vim syntax
+  install -Dm644 

[arch-commits] Commit in pacman-mirrorlist/repos/core-any (6 files)

2015-05-14 Thread Florian Pritz
Date: Thursday, May 14, 2015 @ 18:06:01
  Author: bluewind
Revision: 239353

archrelease: copy trunk to core-any

Added:
  pacman-mirrorlist/repos/core-any/PKGBUILD
(from rev 239352, pacman-mirrorlist/trunk/PKGBUILD)
  pacman-mirrorlist/repos/core-any/mirrorlist
(from rev 239352, pacman-mirrorlist/trunk/mirrorlist)
  pacman-mirrorlist/repos/core-any/upgpkg
(from rev 239352, pacman-mirrorlist/trunk/upgpkg)
Deleted:
  pacman-mirrorlist/repos/core-any/PKGBUILD
  pacman-mirrorlist/repos/core-any/mirrorlist
  pacman-mirrorlist/repos/core-any/upgpkg

+
 PKGBUILD   |   62 ++---
 mirrorlist |  698 +--
 upgpkg |8 
 3 files changed, 389 insertions(+), 379 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-05-14 16:05:57 UTC (rev 239352)
+++ PKGBUILD2015-05-14 16:06:01 UTC (rev 239353)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Dan McGee d...@archlinux.org
-
-pkgname=pacman-mirrorlist
-pkgver=20150315
-pkgrel=1
-pkgdesc=Arch Linux mirror list for use by pacman
-arch=('any')
-url=https://www.archlinux.org/mirrorlist/;
-license=('GPL')
-backup=(etc/pacman.d/mirrorlist)
-source=(mirrorlist)
-
-# NOTE on building this package:
-# * Go to the trunk/ directory
-# * Run bash -c . PKGBUILD; updatelist
-# * Update the checksums, update pkgver
-# * Build the package
-
-updatelist() {
-  rm -f mirrorlist
-  curl -o mirrorlist https://www.archlinux.org/mirrorlist/all/
-}
-
-package() {
-  mkdir -p $pkgdir/etc/pacman.d
-  install -m644 $srcdir/mirrorlist $pkgdir/etc/pacman.d/
-}
-
-md5sums=('a284293c6bce17c27fc6c577d2d5a2d7')
-sha256sums=('1e046a0d304274801b22793924cc1d4dfa691b1f74f9dc57bbd207ca8728a961')

Copied: pacman-mirrorlist/repos/core-any/PKGBUILD (from rev 239352, 
pacman-mirrorlist/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-05-14 16:06:01 UTC (rev 239353)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Dan McGee d...@archlinux.org
+
+pkgname=pacman-mirrorlist
+pkgver=20150514
+pkgrel=1
+pkgdesc=Arch Linux mirror list for use by pacman
+arch=('any')
+url=https://www.archlinux.org/mirrorlist/;
+license=('GPL')
+backup=(etc/pacman.d/mirrorlist)
+source=(mirrorlist)
+
+# NOTE on building this package:
+# * Go to the trunk/ directory
+# * Run bash -c . PKGBUILD; updatelist
+# * Update the checksums, update pkgver
+# * Build the package
+
+updatelist() {
+  rm -f mirrorlist
+  curl -o mirrorlist https://www.archlinux.org/mirrorlist/all/
+}
+
+package() {
+  mkdir -p $pkgdir/etc/pacman.d
+  install -m644 $srcdir/mirrorlist $pkgdir/etc/pacman.d/
+}
+
+md5sums=('9a1f2038bffdce64542d38cf7716ea1e')
+sha256sums=('e08aa437ab5fa51e96a7167c59a0259ee7aef3db98c5966f8e4d80b2feee7400')

Deleted: mirrorlist
===
--- mirrorlist  2015-05-14 16:05:57 UTC (rev 239352)
+++ mirrorlist  2015-05-14 16:06:01 UTC (rev 239353)
@@ -1,344 +0,0 @@
-##
-## Arch Linux repository mirrorlist
-## Generated on 2015-03-15
-##
-
-## Worldwide
-#Server = http://mirror.rackspace.com/archlinux/$repo/os/$arch
-
-## Australia
-#Server = http://mirror.aarnet.edu.au/pub/archlinux/$repo/os/$arch
-#Server = http://archlinux.mirror.digitalpacific.com.au/$repo/os/$arch
-#Server = http://ftp.iinet.net.au/pub/archlinux/$repo/os/$arch
-#Server = http://mirror.internode.on.net/pub/archlinux/$repo/os/$arch
-#Server = http://mirror.rackcentral.com.au/archlinux/$repo/os/$arch
-#Server = http://ftp.swin.edu.au/archlinux/$repo/os/$arch
-#Server = http://archlinux.mirror.uber.com.au/$repo/os/$arch
-
-## Austria
-#Server = http://mirror.easyname.at/archlinux/$repo/os/$arch
-#Server = http://mirror1.htu.tugraz.at/archlinux/$repo/os/$arch
-
-## Bangladesh
-#Server = http://mirrors.ispros.com.bd/archlinux/$repo/os/$arch
-
-## Belarus
-#Server = http://ftp.byfly.by/pub/archlinux/$repo/os/$arch
-#Server = http://mirror.datacenter.by/pub/archlinux/$repo/os/$arch
-
-## Belgium
-#Server = http://archlinux.cu.be/$repo/os/$arch
-#Server = http://archlinux.mirror.kangaroot.net/$repo/os/$arch
-
-## Brazil
-#Server = http://archlinux.c3sl.ufpr.br/$repo/os/$arch
-#Server = http://www.las.ic.unicamp.br/pub/archlinux/$repo/os/$arch
-#Server = http://pet.inf.ufsc.br/mirrors/archlinux/$repo/os/$arch
-
-## Bulgaria
-#Server = http://mirror.telepoint.bg/archlinux/$repo/os/$arch
-
-## Canada
-#Server = http://archlinux.dropswitch.net/archlinux/$repo/os/$arch
-#Server = http://mirror.clibre.uqam.ca/archlinux/$repo/os/$arch
-#Server = http://mirror.csclub.uwaterloo.ca/archlinux/$repo/os/$arch
-#Server = http://mirror.its.dal.ca/archlinux/$repo/os/$arch
-#Server = http://archlinux.mirror.rafal.ca/$repo/os/$arch
-#Server = http://archlinux.mirror.vexxhost.com/$repo/os/$arch
-
-## Chile
-#Server = http://mirror.archlinux.cl/$repo/os/$arch
-
-## China
-#Server = http://mirrors.163.com

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

2015-05-14 Thread Sébastien Luttringer
Date: Thursday, May 14, 2015 @ 17:06:04
  Author: seblu
Revision: 239347

upgpkg: coreutils 8.23-2

- fix FS#44404
- fix build on btrfs

Added:
  coreutils/trunk/01-btrfs-alloc.patch
Modified:
  coreutils/trunk/PKGBUILD
Deleted:
  coreutils/trunk/0001-cp-don-t-reserve-a-device-number.patch

-+
 0001-cp-don-t-reserve-a-device-number.patch |   77 
 01-btrfs-alloc.patch|   96 ++
 PKGBUILD|   23 --
 3 files changed, 111 insertions(+), 85 deletions(-)

Deleted: 0001-cp-don-t-reserve-a-device-number.patch
===
--- 0001-cp-don-t-reserve-a-device-number.patch 2015-05-14 13:32:09 UTC (rev 
239346)
+++ 0001-cp-don-t-reserve-a-device-number.patch 2015-05-14 15:06:04 UTC (rev 
239347)
@@ -1,77 +0,0 @@
-From d0294ff3b90430750a631556277c75f1a555dd44 Mon Sep 17 00:00:00 2001
-From: Paul Eggert egg...@cs.ucla.edu
-Date: Thu, 3 Apr 2014 09:48:22 -0700
-Subject: [PATCH] cp: don't reserve a device number
-
-* src/copy.c (copy_internal): Replace dev_t arg DEVICE with struct
-stat pointer arg PARENT.  All callers changed.  This removes an
-unwarranted assumption that dev_t values of 0 cannot occur in file
-systems.  See: http://bugs.gnu.org/17179

- src/copy.c | 15 +++
- 1 file changed, 7 insertions(+), 8 deletions(-)
-
-diff --git a/src/copy.c b/src/copy.c
-index 781cc1e..d471a77 100644
 a/src/copy.c
-+++ b/src/copy.c
-@@ -117,7 +117,7 @@ struct dir_list
- #define DEST_INFO_INITIAL_CAPACITY 61
- 
- static bool copy_internal (char const *src_name, char const *dst_name,
--   bool new_dst, dev_t device,
-+   bool new_dst, struct stat const *parent,
-struct dir_list *ancestors,
-const struct cp_options *x,
-bool command_line_arg,
-@@ -621,7 +621,7 @@ copy_dir (char const *src_name_in, char const 
*dst_name_in, bool new_dst,
-   char *dst_name = file_name_concat (dst_name_in, namep, NULL);
-   bool first_dir_created = *first_dir_created_per_command_line_arg;
- 
--  ok = copy_internal (src_name, dst_name, new_dst, src_sb-st_dev,
-+  ok = copy_internal (src_name, dst_name, new_dst, src_sb,
-ancestors, non_command_line_options, false,
-first_dir_created,
-local_copy_into_self, NULL);
-@@ -1725,9 +1725,8 @@ should_dereference (const struct cp_options *x, bool 
command_line_arg)
- /* Copy the file SRC_NAME to the file DST_NAME.  The files may be of
-any type.  NEW_DST should be true if the file DST_NAME cannot
-exist because its parent directory was just created; NEW_DST should
--   be false if DST_NAME might already exist.  DEVICE is the device
--   number of the parent directory, or 0 if the parent of this file is
--   not known.  ANCESTORS points to a linked, null terminated list of
-+   be false if DST_NAME might already exist.  A nonnull PARENT describes the
-+   parent directory.  ANCESTORS points to a linked, null terminated list of
-devices and inodes of parent directories of SRC_NAME.  COMMAND_LINE_ARG
-is true iff SRC_NAME was specified on the command line.
-FIRST_DIR_CREATED_PER_COMMAND_LINE_ARG is both input and output.
-@@ -1737,7 +1736,7 @@ should_dereference (const struct cp_options *x, bool 
command_line_arg)
- static bool
- copy_internal (char const *src_name, char const *dst_name,
-bool new_dst,
--   dev_t device,
-+   struct stat const *parent,
-struct dir_list *ancestors,
-const struct cp_options *x,
-bool command_line_arg,
-@@ -2434,7 +2433,7 @@ copy_internal (char const *src_name, char const 
*dst_name,
- }
- 
-   /* Decide whether to copy the contents of the directory.  */
--  if (x-one_file_system  device != 0  device != src_sb.st_dev)
-+  if (x-one_file_system  parent  parent-st_dev != src_sb.st_dev)
- {
-   /* Here, we are crossing a file system boundary and cp's -x option
-  is in effect: so don't copy the contents of this directory. */
-@@ -2827,7 +2826,7 @@ copy (char const *src_name, char const *dst_name,
-   top_level_dst_name = dst_name;
- 
-   bool first_dir_created_per_command_line_arg = false;
--  return copy_internal (src_name, dst_name, nonexistent_dst, 0, NULL,
-+  return copy_internal (src_name, dst_name, nonexistent_dst, NULL, NULL,
- options, true,
- first_dir_created_per_command_line_arg,
- copy_into_self, rename_succeeded);
--- 
-1.9.1
-

Added: 01-btrfs-alloc.patch
===
--- 01-btrfs-alloc.patch(rev 0)
+++ 

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

2015-05-14 Thread Sébastien Luttringer
Date: Thursday, May 14, 2015 @ 17:25:00
  Author: seblu
Revision: 239350

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

Added:
  btrfs-progs/repos/testing-i686/
  btrfs-progs/repos/testing-i686/PKGBUILD
(from rev 239349, btrfs-progs/trunk/PKGBUILD)
  btrfs-progs/repos/testing-i686/btrfs-progs.install
(from rev 239349, btrfs-progs/trunk/btrfs-progs.install)
  btrfs-progs/repos/testing-i686/initcpio-hook-btrfs
(from rev 239349, btrfs-progs/trunk/initcpio-hook-btrfs)
  btrfs-progs/repos/testing-i686/initcpio-install-btrfs
(from rev 239349, btrfs-progs/trunk/initcpio-install-btrfs)
  btrfs-progs/repos/testing-x86_64/
  btrfs-progs/repos/testing-x86_64/PKGBUILD
(from rev 239349, btrfs-progs/trunk/PKGBUILD)
  btrfs-progs/repos/testing-x86_64/btrfs-progs.install
(from rev 239349, btrfs-progs/trunk/btrfs-progs.install)
  btrfs-progs/repos/testing-x86_64/initcpio-hook-btrfs
(from rev 239349, btrfs-progs/trunk/initcpio-hook-btrfs)
  btrfs-progs/repos/testing-x86_64/initcpio-install-btrfs
(from rev 239349, btrfs-progs/trunk/initcpio-install-btrfs)
Deleted:
  btrfs-progs/repos/testing-i686/PKGBUILD
  btrfs-progs/repos/testing-i686/btrfs-progs.install
  btrfs-progs/repos/testing-i686/initcpio-hook-btrfs
  btrfs-progs/repos/testing-i686/initcpio-install-btrfs
  btrfs-progs/repos/testing-x86_64/PKGBUILD
  btrfs-progs/repos/testing-x86_64/btrfs-progs.install
  btrfs-progs/repos/testing-x86_64/initcpio-hook-btrfs
  btrfs-progs/repos/testing-x86_64/initcpio-install-btrfs

---+
 /PKGBUILD |  104 
 /btrfs-progs.install  |   18 +
 /initcpio-hook-btrfs  |   14 
 /initcpio-install-btrfs   |   34 ++
 testing-i686/PKGBUILD |   49 ---
 testing-i686/btrfs-progs.install  |9 --
 testing-i686/initcpio-hook-btrfs  |7 --
 testing-i686/initcpio-install-btrfs   |   17 -
 testing-x86_64/PKGBUILD   |   49 ---
 testing-x86_64/btrfs-progs.install|9 --
 testing-x86_64/initcpio-hook-btrfs|7 --
 testing-x86_64/initcpio-install-btrfs |   17 -
 12 files changed, 170 insertions(+), 164 deletions(-)

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2015-05-04 21:00:31 UTC (rev 238494)
+++ testing-i686/PKGBUILD   2015-05-14 15:25:00 UTC (rev 239350)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Seblu Luttringer se...@archlinux.org
-# Contributor: Tom Gundersen t...@jklm.no
-# Contributor: Tobias Powalowski tp...@archlinux.org
-
-pkgname=btrfs-progs
-pkgver=4.0
-pkgrel=1
-pkgdesc='Btrfs filesystem utilities'
-arch=('i686' 'x86_64')
-depends=('glibc' 'libutil-linux' 'e2fsprogs' 'lzo' 'zlib')
-makedepends=('git' 'asciidoc' 'xmlto')
-url='http://btrfs.wiki.kernel.org/'
-replaces=('btrfs-progs-unstable')
-conflicts=('btrfs-progs-unstable')
-provides=('btrfs-progs-unstable')
-license=('GPL2')
-source=(git://git.kernel.org/pub/scm/linux/kernel/git/kdave/$pkgname.git#tag=v$pkgver
-'initcpio-install-btrfs'
-'initcpio-hook-btrfs')
-install=btrfs-progs.install
-options=(!staticlibs)
-md5sums=('SKIP'
- '7241ba3a4286d08da0d50b7176941112'
- 'b09688a915a0ec8f40e2f5aacbabc9ad')
-
-build() {
-  cd $pkgname
-  ./autogen.sh
-  ./configure --prefix=/usr
-  make
-}
-
-check() {
-  cd $pkgname
- ./btrfs filesystem show
-}
-
-package() {
-  cd $pkgname
-  make prefix=$pkgdir/usr install
-
-  # install mkinitcpio hooks
-  cd $srcdir
-  install -Dm644 initcpio-install-btrfs 
$pkgdir/usr/lib/initcpio/install/btrfs
-  install -Dm644 initcpio-hook-btrfs $pkgdir/usr/lib/initcpio/hooks/btrfs
-}
-
-# vim:set ts=2 sw=2 ft=sh et:

Copied: btrfs-progs/repos/testing-i686/PKGBUILD (from rev 239349, 
btrfs-progs/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-05-14 15:25:00 UTC (rev 239350)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Sébastien Seblu Luttringer se...@archlinux.org
+# Contributor: Tom Gundersen t...@jklm.no
+# Contributor: Tobias Powalowski tp...@archlinux.org
+
+pkgname=btrfs-progs
+pkgver=4.0
+pkgrel=2
+pkgdesc='Btrfs filesystem utilities'
+arch=('i686' 'x86_64')
+depends=('glibc' 'libutil-linux' 'e2fsprogs' 'lzo' 'zlib')
+makedepends=('git' 'asciidoc' 'xmlto')
+url='http://btrfs.wiki.kernel.org/'
+replaces=('btrfs-progs-unstable')
+conflicts=('btrfs-progs-unstable')
+provides=('btrfs-progs-unstable')
+license=('GPL2')
+source=(git://git.kernel.org/pub/scm/linux/kernel/git/kdave/$pkgname.git#tag=v$pkgver
+'initcpio-install-btrfs'
+'initcpio-hook-btrfs')
+install=btrfs-progs.install
+options=(!staticlibs)
+md5sums=('SKIP'
+ '7241ba3a4286d08da0d50b7176941112'
+ 'b09688a915a0ec8f40e2f5aacbabc9ad')
+

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

2015-05-14 Thread Sébastien Luttringer
Date: Thursday, May 14, 2015 @ 17:41:52
  Author: seblu
Revision: 133440

upgpkg: docker 1:1.6.2-2

- implement FS#44256

Modified:
  docker/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-14 15:39:32 UTC (rev 133439)
+++ PKGBUILD2015-05-14 15:41:52 UTC (rev 133440)
@@ -3,7 +3,7 @@
 
 pkgname=docker
 pkgver=1.6.2
-pkgrel=1
+pkgrel=2
 epoch=1
 pkgdesc='Pack, ship and run any application as a lightweight container'
 arch=('x86_64')
@@ -10,7 +10,7 @@
 url='http://www.docker.io/'
 license=('Apache')
 depends=('bridge-utils' 'iproute2' 'device-mapper' 'sqlite' 'systemd')
-makedepends=('git' 'go' 'btrfs-progs')
+makedepends=('git' 'go' 'btrfs-progs' 'go-md2man')
 optdepends=('btrfs-progs: btrfs backend support'
 'lxc: lxc backend support')
 # don't strip binaries! A sha1 is used to check binary consistency.
@@ -25,6 +25,8 @@
   cd docker
   export AUTO_GOPATH=1
   ./hack/make.sh dynbinary
+  # man pages
+  docs/man/md2man-all.sh
 }
 
 #check() {
@@ -47,6 +49,9 @@
   # vim syntax
   install -Dm644 'contrib/syntax/vim/syntax/dockerfile.vim' 
$pkgdir/usr/share/vim/vimfiles/syntax/dockerfile.vim
   install -Dm644 'contrib/syntax/vim/ftdetect/dockerfile.vim' 
$pkgdir/usr/share/vim/vimfiles/ftdetect/dockerfile.vim
+  # man
+  install -dm755 $pkgdir/usr/share/man
+  mv docs/man/man* $pkgdir/usr/share/man
 }
 
 # vim:set ts=2 sw=2 et:


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

2015-05-14 Thread Florian Pritz
Date: Thursday, May 14, 2015 @ 18:05:57
  Author: bluewind
Revision: 239352

upgpkg: pacman-mirrorlist 20150514-1

upstream update

Modified:
  pacman-mirrorlist/trunk/PKGBUILD
  pacman-mirrorlist/trunk/mirrorlist

+
 PKGBUILD   |6 +++---
 mirrorlist |   22 --
 2 files changed, 19 insertions(+), 9 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-05-14 15:56:10 UTC (rev 239351)
+++ PKGBUILD2015-05-14 16:05:57 UTC (rev 239352)
@@ -2,7 +2,7 @@
 # Maintainer: Dan McGee d...@archlinux.org
 
 pkgname=pacman-mirrorlist
-pkgver=20150315
+pkgver=20150514
 pkgrel=1
 pkgdesc=Arch Linux mirror list for use by pacman
 arch=('any')
@@ -27,5 +27,5 @@
   install -m644 $srcdir/mirrorlist $pkgdir/etc/pacman.d/
 }
 
-md5sums=('a284293c6bce17c27fc6c577d2d5a2d7')
-sha256sums=('1e046a0d304274801b22793924cc1d4dfa691b1f74f9dc57bbd207ca8728a961')
+md5sums=('9a1f2038bffdce64542d38cf7716ea1e')
+sha256sums=('e08aa437ab5fa51e96a7167c59a0259ee7aef3db98c5966f8e4d80b2feee7400')

Modified: mirrorlist
===
--- mirrorlist  2015-05-14 15:56:10 UTC (rev 239351)
+++ mirrorlist  2015-05-14 16:05:57 UTC (rev 239352)
@@ -1,6 +1,6 @@
 ##
 ## Arch Linux repository mirrorlist
-## Generated on 2015-03-15
+## Generated on 2015-05-14
 ##
 
 ## Worldwide
@@ -31,6 +31,7 @@
 #Server = http://archlinux.mirror.kangaroot.net/$repo/os/$arch
 
 ## Brazil
+#Server = http://mirror.archlinux-br.org/$repo/os/$arch
 #Server = http://archlinux.c3sl.ufpr.br/$repo/os/$arch
 #Server = http://www.las.ic.unicamp.br/pub/archlinux/$repo/os/$arch
 #Server = http://pet.inf.ufsc.br/mirrors/archlinux/$repo/os/$arch
@@ -56,6 +57,7 @@
 #Server = http://mirrors.hust.edu.cn/archlinux/$repo/os/$arch
 #Server = http://mirrors.hustunique.com/archlinux/$repo/os/$arch
 #Server = http://mirrors.neusoft.edu.cn/archlinux/$repo/os/$arch
+#Server = http://mirrors.opencas.cn/archlinux/$repo/os/$arch
 #Server = http://run.hit.edu.cn/archlinux/$repo/os/$arch
 #Server = http://mirrors.tuna.tsinghua.edu.cn/archlinux/$repo/os/$arch
 #Server = http://mirrors.ustc.edu.cn/archlinux/$repo/os/$arch
@@ -95,6 +97,7 @@
 #Server = http://mir.art-software.fr/arch/$repo/os/$arch
 #Server = http://fooo.biz/archlinux/$repo/os/$arch
 #Server = https://fooo.biz/archlinux/$repo/os/$arch
+#Server = http://mirror.ibcp.fr/pub/archlinux/$repo/os/$arch
 #Server = http://mirror.lastmikoi.net/archlinux/$repo/os/$arch
 #Server = http://mirror.lightcone.eu/archlinux/$repo/os/$arch
 #Server = http://archlinux.mailtunnel.eu/$repo/os/$arch
@@ -121,15 +124,21 @@
 #Server = https://ftp.fau.de/archlinux/$repo/os/$arch
 #Server = http://mirror.flipez.de/archlinux/$repo/os/$arch
 #Server = http://mirror.fluxent.de/archlinux/$repo/os/$arch
+#Server = http://mirror.fs.cx/archlinux/$repo/os/$arch
+#Server = https://mirror.fs.cx/archlinux/$repo/os/$arch
 #Server = http://mirror.gnomus.de/$repo/os/$arch
 #Server = http://arch.packages.gnp-tec.net/$repo/os/$arch
 #Server = http://ftp5.gwdg.de/pub/linux/archlinux/$repo/os/$arch
 #Server = http://mirror.hactar.bz/$repo/os/$arch
 #Server = http://ftp.hawo.stw.uni-erlangen.de/archlinux/$repo/os/$arch
+#Server = http://archlinux.honkgong.info/$repo/os/$arch
+#Server = https://archlinux.honkgong.info/$repo/os/$arch
 #Server = http://ftp.hosteurope.de/mirror/ftp.archlinux.org/$repo/os/$arch
 #Server = http://ftp-stud.hs-esslingen.de/pub/Mirrors/archlinux/$repo/os/$arch
 #Server = http://mirror.js-webcoding.de/pub/archlinux/$repo/os/$arch
-#Server = http://mirror.k42.ch/archlinux/$repo/os/$arch
+#Server = https://mirror.js-webcoding.de/pub/archlinux/$repo/os/$arch
+#Server = http://k42.ch/mirror/archlinux/$repo/os/$arch
+#Server = https://k42.ch/mirror/archlinux/$repo/os/$arch
 #Server = http://mirror.de.leaseweb.net/archlinux/$repo/os/$arch
 #Server = http://mirror.metalgamer.eu/archlinux/$repo/os/$arch
 #Server = http://mirror.michael-eckert.net/archlinux/$repo/os/$arch
@@ -199,7 +208,7 @@
 
 ## Lithuania
 #Server = http://archlinux.akmc.lt/$repo/os/$arch
-#Server = http://atviras.lt/veidrodziai/archlinux/$repo/os/$arch
+#Server = http://mirrors.atviras.lt/archlinux/$repo/os/$arch
 
 ## Luxembourg
 #Server = http://archlinux.mirror.root.lu/$repo/os/$arch
@@ -227,10 +236,8 @@
 #Server = http://mirror.archlinux.no/$repo/os/$arch
 #Server = http://archlinux.uib.no/$repo/os/$arch
 #Server = http://archlinux.neuf.no/$repo/os/$arch
+#Server = http://os-sharing.org/archlinux/$repo/os/$arch
 
-## Philippines
-#Server = http://mirror.pregi.net/pub/Linux/archlinux/$repo/os/$arch
-
 ## Poland
 #Server = http://mirror.chmuri.net/archmirror/$repo/os/$arch
 #Server = http://arch.midov.pl/arch/$repo/os/$arch
@@ -291,6 +298,7 @@
 #Server = http://ftp.linux.org.tr/archlinux/$repo/os/$arch
 
 ## Ukraine
+#Server = http://archlinux.bln-ua.net/$repo/os/$arch
 #Server = http://mirrors.nix.org.ua/linux/archlinux/$repo/os/$arch

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

2015-05-14 Thread Jan Steffens
Date: Thursday, May 14, 2015 @ 21:12:14
  Author: heftig
Revision: 133456

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

Added:
  rubinius/repos/community-i686/PKGBUILD
(from rev 133455, rubinius/trunk/PKGBUILD)
  rubinius/repos/community-i686/dirs.patch
(from rev 133455, rubinius/trunk/dirs.patch)
  rubinius/repos/community-i686/gemrc
(from rev 133455, rubinius/trunk/gemrc)
  rubinius/repos/community-x86_64/PKGBUILD
(from rev 133455, rubinius/trunk/PKGBUILD)
  rubinius/repos/community-x86_64/dirs.patch
(from rev 133455, rubinius/trunk/dirs.patch)
  rubinius/repos/community-x86_64/gemrc
(from rev 133455, rubinius/trunk/gemrc)
Deleted:
  rubinius/repos/community-i686/PKGBUILD
  rubinius/repos/community-i686/dirs.patch
  rubinius/repos/community-i686/gemrc
  rubinius/repos/community-x86_64/PKGBUILD
  rubinius/repos/community-x86_64/dirs.patch
  rubinius/repos/community-x86_64/gemrc

-+
 /PKGBUILD   |  174 ++
 /dirs.patch |   42 ++
 /gemrc  |   10 ++
 community-i686/PKGBUILD |   87 -
 community-i686/dirs.patch   |   21 -
 community-i686/gemrc|5 -
 community-x86_64/PKGBUILD   |   87 -
 community-x86_64/dirs.patch |   21 -
 community-x86_64/gemrc  |5 -
 9 files changed, 226 insertions(+), 226 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-05-14 19:11:52 UTC (rev 133455)
+++ community-i686/PKGBUILD 2015-05-14 19:12:14 UTC (rev 133456)
@@ -1,87 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
-
-pkgbase=rubinius
-pkgname=(rubinius rubinius-ruby)
-pkgver=2.5.3
-pkgrel=1
-pkgdesc=Ruby runtime written in Ruby, designed for concurrency
-arch=(i686 x86_64)
-url=http://rubini.us;
-license=(custom)
-depends=(llvm35-libs libffi openssl libyaml)
-makedepends=(llvm35 rubinius-ruby)
-options=(!emptydirs)
-source=(http://releases.rubini.us/${pkgbase}-${pkgver}.tar.bz2
-gemrc dirs.patch)
-sha256sums=('9af4d6e9d1e78a586579c86b9eb9a082cb863885d4a7cf33989d73280461e5fc'
-'4bb7eb2fe66e396ed16b589cdb656831407b39ad4e138d88536754c0448ac614'
-'a9922b199730c059c26781af45adc46401811ff2e6840c4aeb49da4fa41acdd9')
-
-_common() {
-  export GEM_HOME=$srcdir/gemdir LANG=en_US.UTF-8
-  cd $pkgbase-$pkgver
-}
-
-prepare() {
-  _common
-
-  patch -Np1 -i ../dirs.patch
-
-  mkdir -p $GEM_HOME
-  gem install --no-user-install -N vendor/cache/bundler-*.gem
-
-  $GEM_HOME/bin/bundle install --local
-}
-
-build() {
-  _common
-  ./configure --prefix=/usr \
---mandir=/usr/share/man \
---includedir=/usr/include/rubinius \
---appdir=/usr/lib/rubinius \
---gemsdir=/usr/lib/rubinius/gems \
---llvm-shared \
---preserve-prefix \
---without-rpath \
---bin-link bundle --bin-link bundler
-  rake build
-}
-
-check() {
-  _common
-  rake vm:test || :
-}
-
-package_rubinius() {
-  optdepends=('ruby-docs: Ruby documentation')
-
-  _common
-
-  DESTDIR=$pkgdir rake install
-
-  mkdir -p $pkgdir/usr/share/ri
-  ln -s 2.2.0 $pkgdir/usr/share/ri/2.1
-
-  install -Dm644 LICENSE $pkgdir/usr/share/licenses/rubinius/LICENSE
-
-### Split rubinius-ruby
-  mkdir -p $srcdir/ruby/usr/bin
-  for _f in $pkgdir/usr/bin/*; do
-[[ $_f == */rbx ]]  continue
-mv $_f $srcdir/ruby/usr/bin
-  done
-}
-
-package_rubinius-ruby() {
-  pkgdesc=Ruby compat for Rubinius
-  depends=(rubinius=$pkgver-$pkgrel)
-  provides=(ruby)
-  conflicts=(ruby)
-  backup=(etc/gemrc)
-
-  mv ruby/* $pkgdir
-  install -Dm644 gemrc $pkgdir/etc/gemrc
-  install -d $pkgdir/usr/share/licenses/rubinius-ruby
-  ln -s ../rubinius/LICENSE $pkgdir/usr/share/licenses/rubinius-ruby/LICENSE
-}

Copied: rubinius/repos/community-i686/PKGBUILD (from rev 133455, 
rubinius/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-05-14 19:12:14 UTC (rev 133456)
@@ -0,0 +1,87 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+
+pkgbase=rubinius
+pkgname=(rubinius rubinius-ruby)
+pkgver=2.5.4
+pkgrel=1
+pkgdesc=Ruby runtime written in Ruby, designed for concurrency
+arch=(i686 x86_64)
+url=http://rubini.us;
+license=(custom)
+depends=(llvm35-libs libffi openssl libyaml)
+makedepends=(llvm35 rubinius-ruby)
+options=(!emptydirs)
+source=(http://releases.rubini.us/${pkgbase}-${pkgver}.tar.bz2
+gemrc dirs.patch)
+sha256sums=('ed7104f6177dc2c5be346e5a7349118601d8b0b0a37eb76fa1a78da21b3fbcfc'
+'4bb7eb2fe66e396ed16b589cdb656831407b39ad4e138d88536754c0448ac614'
+'a9922b199730c059c26781af45adc46401811ff2e6840c4aeb49da4fa41acdd9')
+
+_common() {
+  export GEM_HOME=$srcdir/gemdir LANG=en_US.UTF-8
+  

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

2015-05-14 Thread Antonio Rojas
Date: Thursday, May 14, 2015 @ 21:11:52
  Author: arojas
Revision: 133455

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

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

-+
 /PKGBUILD   |   72 ++
 /udevil.install |8 
 community-i686/PKGBUILD |   38 
 community-i686/udevil.install   |4 --
 community-x86_64/PKGBUILD   |   38 
 community-x86_64/udevil.install |4 --
 6 files changed, 80 insertions(+), 84 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-05-14 19:09:56 UTC (rev 133454)
+++ community-i686/PKGBUILD 2015-05-14 19:11:52 UTC (rev 133455)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer:  Bartłomiej Piotrowski nos...@bpiotrowski.pl
-# Contributor: IgnorantGuru 
http://igurublog.wordpress.com/contact-ignorantguru/
-
-pkgname=udevil
-pkgver=0.4.3
-pkgrel=1
-arch=('i686' 'x86_64')
-pkgdesc='Mount and unmount without password'
-url='http://ignorantguru.github.com/udevil/'
-license=('GPL3')
-makedepends=('intltool' 'gettext')
-depends=('udev' 'glib2')
-optdepends=('davfs2: mount WebDAV shares'
-'nfs-utils:  mount nfs shares'
-'sshfs:  mount sftp shares'
-'curlftpfs:  mount ftp shares'
-'cifs-utils: mount samba shares'
-'eject:  eject via devmon'
-'zenity: devmon popups'
-'udisks: devmon mount without suid udevil'
-'udisks2:devmon mount without suid udevil')
-provides=('devmon')
-backup=('etc/udevil/udevil.conf')
-install=$pkgname.install
-source=(https://github.com/IgnorantGuru/udevil/archive/$pkgver.tar.gz)
-md5sums=('7b00971f875aa8e0b436213209c6b61c')
-
-build() {
-cd $pkgname-$pkgver
-./configure --prefix=/usr
-make
-}
-
-package() {
-cd $pkgname-$pkgver
-make DESTDIR=$pkgdir install
-}

Copied: udevil/repos/community-i686/PKGBUILD (from rev 133454, 
udevil/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-05-14 19:11:52 UTC (rev 133455)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski nos...@bpiotrowski.pl
+# Contributor: IgnorantGuru 
http://igurublog.wordpress.com/contact-ignorantguru/
+
+pkgname=udevil
+pkgver=0.4.4
+pkgrel=1
+arch=('i686' 'x86_64')
+pkgdesc='Mount and unmount without password'
+url='http://ignorantguru.github.com/udevil/'
+license=('GPL3')
+makedepends=('intltool' 'gettext')
+depends=('udev' 'glib2')
+optdepends=('davfs2: mount WebDAV shares'
+'nfs-utils:  mount nfs shares'
+'sshfs:  mount sftp shares'
+'curlftpfs:  mount ftp shares'
+'cifs-utils: mount samba shares'
+'zenity: devmon popups'
+'udisks2:devmon mount without suid udevil')
+provides=('devmon')
+backup=('etc/udevil/udevil.conf')
+install=$pkgname.install
+source=($pkgname-$pkgver.tar.gz::https://github.com/IgnorantGuru/udevil/archive/$pkgver.tar.gz)
+md5sums=('281aa065d92c679cb41728069e72b272')
+
+build() {
+cd $pkgname-$pkgver
+./configure --prefix=/usr
+make
+}
+
+package() {
+cd $pkgname-$pkgver
+make DESTDIR=$pkgdir install
+}

Deleted: community-i686/udevil.install
===
--- community-i686/udevil.install   2015-05-14 19:09:56 UTC (rev 133454)
+++ community-i686/udevil.install   2015-05-14 19:11:52 UTC (rev 133455)
@@ -1,4 +0,0 @@
-post_install() {
-echo ' REMEMBER to enable kernel polling when using devmon without 
udisks:'
-echo ' http://ignorantguru.github.com/udevil/#polling'
-}

Copied: udevil/repos/community-i686/udevil.install (from rev 133454, 
udevil/trunk/udevil.install)
===
--- community-i686/udevil.install   (rev 0)
+++ community-i686/udevil.install   2015-05-14 19:11:52 UTC (rev 133455)
@@ -0,0 +1,4 @@
+post_install() {
+echo ' REMEMBER to enable kernel polling when using devmon without 
udisks:'
+echo ' http://ignorantguru.github.com/udevil/#polling'
+}

Deleted: community-x86_64/PKGBUILD

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

2015-05-14 Thread Antonio Rojas
Date: Thursday, May 14, 2015 @ 21:02:23
  Author: arojas
Revision: 133452

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-05-14 19:01:32 UTC (rev 133451)
+++ community-i686/PKGBUILD 2015-05-14 19:02:23 UTC (rev 133452)
@@ -1,31 +0,0 @@
-# $Id$
-# Contributor: Bartłomiej Piotrowski bpiotrow...@archlinux.org
-# Contributor: Angel Velasquez an...@archlinux.org
-# Contributor: Juergen Hoetzel juer...@archlinux.org
-
-pkgname=lxpanel
-pkgver=0.8.0
-pkgrel=1
-pkgdesc='Lightweight X11 desktop panel for LXDE'
-arch=('i686' 'x86_64')
-license=('GPL2')
-url='http://lxde.org/'
-groups=('lxde')
-depends=('gtk2' 'alsa-lib' 'menu-cache' 'lxmenu-data' 'libwnck' 'libfm' 
'libkeybinder2')
-makedepends=('intltool' 'docbook-xml' 'docbook-xsl' 'wireless_tools')
-optdepends=('wireless_tools: netstat plugin')
-source=(http://downloads.sourceforge.net/sourceforge/lxde/lxpanel-$pkgver.tar.xz)
-sha256sums=('94dd664ed6c7c001ca83959cdeadaa386ba0d2c91f113c2e6d318a5f33604415')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure \
---sysconfdir=/etc \
---prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: lxpanel/repos/community-i686/PKGBUILD (from rev 133451, 
lxpanel/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-05-14 19:02:23 UTC (rev 133452)
@@ -0,0 +1,31 @@
+# $Id$
+# Contributor: Bartłomiej Piotrowski bpiotrow...@archlinux.org
+# Contributor: Angel Velasquez an...@archlinux.org
+# Contributor: Juergen Hoetzel juer...@archlinux.org
+
+pkgname=lxpanel
+pkgver=0.8.1
+pkgrel=1
+pkgdesc='Lightweight X11 desktop panel for LXDE'
+arch=('i686' 'x86_64')
+license=('GPL2')
+url='http://lxde.org/'
+groups=('lxde')
+depends=('gtk2' 'alsa-lib' 'menu-cache' 'lxmenu-data' 'libwnck' 'libfm' 
'libkeybinder2')
+makedepends=('intltool' 'docbook-xml' 'docbook-xsl' 'wireless_tools')
+optdepends=('wireless_tools: netstat plugin')
+source=(http://downloads.sourceforge.net/sourceforge/lxde/lxpanel-$pkgver.tar.xz)
+sha256sums=('c657eb049a0f59e7b2d1ad6cb621c272833b765705c19089e48b3c248351b1e0')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure \
+--sysconfdir=/etc \
+--prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-05-14 19:01:32 UTC (rev 133451)
+++ community-x86_64/PKGBUILD   2015-05-14 19:02:23 UTC (rev 133452)
@@ -1,31 +0,0 @@
-# $Id$
-# Contributor: Bartłomiej Piotrowski bpiotrow...@archlinux.org
-# Contributor: Angel Velasquez an...@archlinux.org
-# Contributor: Juergen Hoetzel juer...@archlinux.org
-
-pkgname=lxpanel
-pkgver=0.8.0
-pkgrel=1
-pkgdesc='Lightweight X11 desktop panel for LXDE'
-arch=('i686' 'x86_64')
-license=('GPL2')
-url='http://lxde.org/'
-groups=('lxde')
-depends=('gtk2' 'alsa-lib' 'menu-cache' 'lxmenu-data' 'libwnck' 'libfm' 
'libkeybinder2')
-makedepends=('intltool' 'docbook-xml' 'docbook-xsl' 'wireless_tools')
-optdepends=('wireless_tools: netstat plugin')
-source=(http://downloads.sourceforge.net/sourceforge/lxde/lxpanel-$pkgver.tar.xz)
-sha256sums=('94dd664ed6c7c001ca83959cdeadaa386ba0d2c91f113c2e6d318a5f33604415')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure \
---sysconfdir=/etc \
---prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: lxpanel/repos/community-x86_64/PKGBUILD (from rev 133451, 
lxpanel/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-05-14 19:02:23 UTC (rev 133452)
@@ -0,0 +1,31 @@
+# $Id$
+# Contributor: Bartłomiej Piotrowski bpiotrow...@archlinux.org
+# Contributor: Angel Velasquez an...@archlinux.org
+# Contributor: Juergen Hoetzel juer...@archlinux.org
+
+pkgname=lxpanel
+pkgver=0.8.1
+pkgrel=1
+pkgdesc='Lightweight X11 desktop panel for LXDE'
+arch=('i686' 'x86_64')
+license=('GPL2')
+url='http://lxde.org/'
+groups=('lxde')
+depends=('gtk2' 'alsa-lib' 'menu-cache' 'lxmenu-data' 'libwnck' 'libfm' 
'libkeybinder2')

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

2015-05-14 Thread Jan Steffens
Date: Thursday, May 14, 2015 @ 21:06:59
  Author: heftig
Revision: 133453

2.5.4

Modified:
  rubinius/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-14 19:02:23 UTC (rev 133452)
+++ PKGBUILD2015-05-14 19:06:59 UTC (rev 133453)
@@ -3,7 +3,7 @@
 
 pkgbase=rubinius
 pkgname=(rubinius rubinius-ruby)
-pkgver=2.5.3
+pkgver=2.5.4
 pkgrel=1
 pkgdesc=Ruby runtime written in Ruby, designed for concurrency
 arch=(i686 x86_64)
@@ -14,7 +14,7 @@
 options=(!emptydirs)
 source=(http://releases.rubini.us/${pkgbase}-${pkgver}.tar.bz2
 gemrc dirs.patch)
-sha256sums=('9af4d6e9d1e78a586579c86b9eb9a082cb863885d4a7cf33989d73280461e5fc'
+sha256sums=('ed7104f6177dc2c5be346e5a7349118601d8b0b0a37eb76fa1a78da21b3fbcfc'
 '4bb7eb2fe66e396ed16b589cdb656831407b39ad4e138d88536754c0448ac614'
 'a9922b199730c059c26781af45adc46401811ff2e6840c4aeb49da4fa41acdd9')
 


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

2015-05-14 Thread Jan Steffens
Date: Thursday, May 14, 2015 @ 21:37:23
  Author: heftig
Revision: 239360

3.16.2

Modified:
  zenity/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-14 18:44:30 UTC (rev 239359)
+++ PKGBUILD2015-05-14 19:37:23 UTC (rev 239360)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=zenity
-pkgver=3.16.0
+pkgver=3.16.2
 pkgrel=1
 pkgdesc=Display graphical dialog boxes from shell scripts
 arch=(i686 x86_64)
@@ -11,7 +11,7 @@
 makedepends=(intltool gtk-doc itstool docbook-xsl yelp-tools)
 url=http://www.gnome.org;
 
source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('f98fdca91ae287d3296ab7a6cead0b7648423ad99bffe4f882cefcf9f72bcff7')
+sha256sums=('4d38d969a976e5ad79209fbea6dce9222f4478098199a2c52c3e46b1393ea844')
 
 build() {
   cd $pkgname-$pkgver


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

2015-05-14 Thread Jan Steffens
Date: Thursday, May 14, 2015 @ 21:42:43
  Author: heftig
Revision: 239361

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-05-14 19:37:23 UTC (rev 239360)
+++ extra-i686/PKGBUILD 2015-05-14 19:42:43 UTC (rev 239361)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=zenity
-pkgver=3.16.0
-pkgrel=1
-pkgdesc=Display graphical dialog boxes from shell scripts
-arch=(i686 x86_64)
-license=(LGPL)
-depends=(gtk3 libnotify)
-makedepends=(intltool gtk-doc itstool docbook-xsl yelp-tools)
-url=http://www.gnome.org;
-source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('f98fdca91ae287d3296ab7a6cead0b7648423ad99bffe4f882cefcf9f72bcff7')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=${pkgdir} install
-}

Copied: zenity/repos/extra-i686/PKGBUILD (from rev 239360, 
zenity/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-05-14 19:42:43 UTC (rev 239361)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=zenity
+pkgver=3.16.2
+pkgrel=1
+pkgdesc=Display graphical dialog boxes from shell scripts
+arch=(i686 x86_64)
+license=(LGPL)
+depends=(gtk3 libnotify)
+makedepends=(intltool gtk-doc itstool docbook-xsl yelp-tools)
+url=http://www.gnome.org;
+source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('4d38d969a976e5ad79209fbea6dce9222f4478098199a2c52c3e46b1393ea844')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-05-14 19:37:23 UTC (rev 239360)
+++ extra-x86_64/PKGBUILD   2015-05-14 19:42:43 UTC (rev 239361)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=zenity
-pkgver=3.16.0
-pkgrel=1
-pkgdesc=Display graphical dialog boxes from shell scripts
-arch=(i686 x86_64)
-license=(LGPL)
-depends=(gtk3 libnotify)
-makedepends=(intltool gtk-doc itstool docbook-xsl yelp-tools)
-url=http://www.gnome.org;
-source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('f98fdca91ae287d3296ab7a6cead0b7648423ad99bffe4f882cefcf9f72bcff7')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=${pkgdir} install
-}

Copied: zenity/repos/extra-x86_64/PKGBUILD (from rev 239360, 
zenity/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2015-05-14 19:42:43 UTC (rev 239361)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=zenity
+pkgver=3.16.2
+pkgrel=1
+pkgdesc=Display graphical dialog boxes from shell scripts
+arch=(i686 x86_64)
+license=(LGPL)
+depends=(gtk3 libnotify)
+makedepends=(intltool gtk-doc itstool docbook-xsl yelp-tools)
+url=http://www.gnome.org;
+source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('4d38d969a976e5ad79209fbea6dce9222f4478098199a2c52c3e46b1393ea844')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=${pkgdir} install
+}


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

2015-05-14 Thread Antonio Rojas
Date: Thursday, May 14, 2015 @ 21:09:56
  Author: arojas
Revision: 133454

Update to 0.4.4

Modified:
  udevil/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-14 19:06:59 UTC (rev 133453)
+++ PKGBUILD2015-05-14 19:09:56 UTC (rev 133454)
@@ -3,7 +3,7 @@
 # Contributor: IgnorantGuru 
http://igurublog.wordpress.com/contact-ignorantguru/
 
 pkgname=udevil
-pkgver=0.4.3
+pkgver=0.4.4
 pkgrel=1
 arch=('i686' 'x86_64')
 pkgdesc='Mount and unmount without password'
@@ -16,15 +16,13 @@
 'sshfs:  mount sftp shares'
 'curlftpfs:  mount ftp shares'
 'cifs-utils: mount samba shares'
-'eject:  eject via devmon'
 'zenity: devmon popups'
-'udisks: devmon mount without suid udevil'
 'udisks2:devmon mount without suid udevil')
 provides=('devmon')
 backup=('etc/udevil/udevil.conf')
 install=$pkgname.install
 
source=($pkgname-$pkgver.tar.gz::https://github.com/IgnorantGuru/udevil/archive/$pkgver.tar.gz)
-md5sums=('7b00971f875aa8e0b436213209c6b61c')
+md5sums=('281aa065d92c679cb41728069e72b272')
 
 build() {
 cd $pkgname-$pkgver


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

2015-05-14 Thread Antonio Rojas
Date: Thursday, May 14, 2015 @ 23:26:37
  Author: arojas
Revision: 239362

Update to 1.1.9

Modified:
  libmtp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-14 19:42:43 UTC (rev 239361)
+++ PKGBUILD2015-05-14 21:26:37 UTC (rev 239362)
@@ -4,7 +4,7 @@
 # Contributor: Kevin Edmonds edmondske...@hotmail.com
 
 pkgname=libmtp
-pkgver=1.1.8
+pkgver=1.1.9
 pkgrel=1
 pkgdesc=Library implementation of the Media Transfer Protocol
 arch=(i686 x86_64)
@@ -12,7 +12,7 @@
 license=('LGPL')
 depends=('libusb' 'libgcrypt')
 
source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
-md5sums=('f76abc22fdbe96e96f0066e0f2dc0efd')
+md5sums=('d515b38a5b5d5ef235b01ebba47412df')
 
 build() {
   cd ${pkgname}-${pkgver}


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

2015-05-14 Thread Antonio Rojas
Date: Thursday, May 14, 2015 @ 23:28:21
  Author: arojas
Revision: 239363

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

Added:
  libmtp/repos/testing-i686/
  libmtp/repos/testing-i686/PKGBUILD
(from rev 239362, libmtp/trunk/PKGBUILD)
  libmtp/repos/testing-x86_64/
  libmtp/repos/testing-x86_64/PKGBUILD
(from rev 239362, libmtp/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   34 ++
 testing-x86_64/PKGBUILD |   34 ++
 2 files changed, 68 insertions(+)

Copied: libmtp/repos/testing-i686/PKGBUILD (from rev 239362, 
libmtp/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-05-14 21:28:21 UTC (rev 239363)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Tom Gundersen t...@jklm.no
+# Contributor: damir da...@archlinux.org
+# Contributor: Kevin Edmonds edmondske...@hotmail.com
+
+pkgname=libmtp
+pkgver=1.1.9
+pkgrel=1
+pkgdesc=Library implementation of the Media Transfer Protocol
+arch=(i686 x86_64)
+url=http://libmtp.sourceforge.net;
+license=('LGPL')
+depends=('libusb' 'libgcrypt')
+source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
+md5sums=('d515b38a5b5d5ef235b01ebba47412df')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --with-udev=/usr/lib/udev
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make -k check
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  # fix broken udev rule
+  sed -i /^Unable to open/d ${pkgdir}/usr/lib/udev/rules.d/69-libmtp.rules
+}

Copied: libmtp/repos/testing-x86_64/PKGBUILD (from rev 239362, 
libmtp/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2015-05-14 21:28:21 UTC (rev 239363)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Tom Gundersen t...@jklm.no
+# Contributor: damir da...@archlinux.org
+# Contributor: Kevin Edmonds edmondske...@hotmail.com
+
+pkgname=libmtp
+pkgver=1.1.9
+pkgrel=1
+pkgdesc=Library implementation of the Media Transfer Protocol
+arch=(i686 x86_64)
+url=http://libmtp.sourceforge.net;
+license=('LGPL')
+depends=('libusb' 'libgcrypt')
+source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
+md5sums=('d515b38a5b5d5ef235b01ebba47412df')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --with-udev=/usr/lib/udev
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make -k check
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  # fix broken udev rule
+  sed -i /^Unable to open/d ${pkgdir}/usr/lib/udev/rules.d/69-libmtp.rules
+}


[arch-commits] Commit in inetutils/repos (36 files)

2015-05-14 Thread Eric Bélanger
Date: Friday, May 15, 2015 @ 03:06:45
  Author: eric
Revision: 239365

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

Added:
  inetutils/repos/testing-i686/
  inetutils/repos/testing-i686/PKGBUILD
(from rev 239364, inetutils/trunk/PKGBUILD)
  inetutils/repos/testing-i686/ftpd.service
(from rev 239364, inetutils/trunk/ftpd.service)
  inetutils/repos/testing-i686/inetutils.install
(from rev 239364, inetutils/trunk/inetutils.install)
  inetutils/repos/testing-i686/rlogin.pam
(from rev 239364, inetutils/trunk/rlogin.pam)
  inetutils/repos/testing-i686/rlogin.socket
(from rev 239364, inetutils/trunk/rlogin.socket)
  inetutils/repos/testing-i686/rlogin.xinetd
(from rev 239364, inetutils/trunk/rlogin.xinetd)
  inetutils/repos/testing-i686/rlogin@.service
(from rev 239364, inetutils/trunk/rlogin@.service)
  inetutils/repos/testing-i686/rsh.pam
(from rev 239364, inetutils/trunk/rsh.pam)
  inetutils/repos/testing-i686/rsh.socket
(from rev 239364, inetutils/trunk/rsh.socket)
  inetutils/repos/testing-i686/rsh.xinetd
(from rev 239364, inetutils/trunk/rsh.xinetd)
  inetutils/repos/testing-i686/rsh@.service
(from rev 239364, inetutils/trunk/rsh@.service)
  inetutils/repos/testing-i686/talk.service
(from rev 239364, inetutils/trunk/talk.service)
  inetutils/repos/testing-i686/talk.socket
(from rev 239364, inetutils/trunk/talk.socket)
  inetutils/repos/testing-i686/talk.xinetd
(from rev 239364, inetutils/trunk/talk.xinetd)
  inetutils/repos/testing-i686/telnet.socket
(from rev 239364, inetutils/trunk/telnet.socket)
  inetutils/repos/testing-i686/telnet.xinetd
(from rev 239364, inetutils/trunk/telnet.xinetd)
  inetutils/repos/testing-i686/telnet@.service
(from rev 239364, inetutils/trunk/telnet@.service)
  inetutils/repos/testing-x86_64/
  inetutils/repos/testing-x86_64/PKGBUILD
(from rev 239364, inetutils/trunk/PKGBUILD)
  inetutils/repos/testing-x86_64/ftpd.service
(from rev 239364, inetutils/trunk/ftpd.service)
  inetutils/repos/testing-x86_64/inetutils.install
(from rev 239364, inetutils/trunk/inetutils.install)
  inetutils/repos/testing-x86_64/rlogin.pam
(from rev 239364, inetutils/trunk/rlogin.pam)
  inetutils/repos/testing-x86_64/rlogin.socket
(from rev 239364, inetutils/trunk/rlogin.socket)
  inetutils/repos/testing-x86_64/rlogin.xinetd
(from rev 239364, inetutils/trunk/rlogin.xinetd)
  inetutils/repos/testing-x86_64/rlogin@.service
(from rev 239364, inetutils/trunk/rlogin@.service)
  inetutils/repos/testing-x86_64/rsh.pam
(from rev 239364, inetutils/trunk/rsh.pam)
  inetutils/repos/testing-x86_64/rsh.socket
(from rev 239364, inetutils/trunk/rsh.socket)
  inetutils/repos/testing-x86_64/rsh.xinetd
(from rev 239364, inetutils/trunk/rsh.xinetd)
  inetutils/repos/testing-x86_64/rsh@.service
(from rev 239364, inetutils/trunk/rsh@.service)
  inetutils/repos/testing-x86_64/talk.service
(from rev 239364, inetutils/trunk/talk.service)
  inetutils/repos/testing-x86_64/talk.socket
(from rev 239364, inetutils/trunk/talk.socket)
  inetutils/repos/testing-x86_64/talk.xinetd
(from rev 239364, inetutils/trunk/talk.xinetd)
  inetutils/repos/testing-x86_64/telnet.socket
(from rev 239364, inetutils/trunk/telnet.socket)
  inetutils/repos/testing-x86_64/telnet.xinetd
(from rev 239364, inetutils/trunk/telnet.xinetd)
  inetutils/repos/testing-x86_64/telnet@.service
(from rev 239364, inetutils/trunk/telnet@.service)

--+
 testing-i686/PKGBUILD|   90 +
 testing-i686/ftpd.service|   12 
 testing-i686/inetutils.install   |   24 +
 testing-i686/rlogin.pam  |   13 +
 testing-i686/rlogin.socket   |9 +++
 testing-i686/rlogin.xinetd   |   10 
 testing-i686/rlogin@.service |7 ++
 testing-i686/rsh.pam |   11 
 testing-i686/rsh.socket  |9 +++
 testing-i686/rsh.xinetd  |   10 
 testing-i686/rsh@.service|7 ++
 testing-i686/talk.service|   12 
 testing-i686/talk.socket |9 +++
 testing-i686/talk.xinetd |   10 
 testing-i686/telnet.socket   |   10 
 testing-i686/telnet.xinetd   |   10 
 testing-i686/telnet@.service |7 ++
 testing-x86_64/PKGBUILD  |   90 +
 testing-x86_64/ftpd.service  |   12 
 testing-x86_64/inetutils.install |   24 +
 testing-x86_64/rlogin.pam|   13 +
 testing-x86_64/rlogin.socket |9 +++
 testing-x86_64/rlogin.xinetd |   10 
 testing-x86_64/rlogin@.service   |7 ++
 testing-x86_64/rsh.pam   |   11 
 testing-x86_64/rsh.socket|9 +++
 testing-x86_64/rsh.xinetd|   10 
 testing-x86_64/rsh@.service  |7 ++
 testing-x86_64/talk.service  |   12 
 testing-x86_64/talk.socket   |9 +++
 

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

2015-05-14 Thread Eric Bélanger
Date: Friday, May 15, 2015 @ 02:56:31
  Author: eric
Revision: 239364

upgpkg: inetutils 1.9.3-1

Upstream update

Modified:
  inetutils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-14 21:28:21 UTC (rev 239363)
+++ PKGBUILD2015-05-15 00:56:31 UTC (rev 239364)
@@ -2,8 +2,8 @@
 # Maintainer: Eric Bélanger e...@archlinux.org
 
 pkgname=inetutils
-pkgver=1.9.2
-pkgrel=2
+pkgver=1.9.3
+pkgrel=1
 pkgdesc=A collection of common network programs
 arch=('i686' 'x86_64')
 url=http://www.gnu.org/software/inetutils/;
@@ -20,7 +20,7 @@
 ftpd.service rlogin.pam rlogin@.service rlogin.socket rlogin.xinetd
 rsh.pam rsh@.service rsh.socket rsh.xinetd talk.service talk.socket 
talk.xinetd
 telnet@.service telnet.socket telnet.xinetd)
-sha1sums=('f9fc5c3ba7046d95fdfd0f1c6adf508220082893'
+sha1sums=('9fab38b8225ff5d5b3d586bdcf63f7eee0b322d8'
   'SKIP'
   '026181500b71f0c09ef5c262450be718651e5658'
   '387b371cbaa3611b95d30f806c0dd08b621a584a'


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

2015-05-14 Thread Sergej Pupykin
Date: Thursday, May 14, 2015 @ 13:21:31
  Author: spupykin
Revision: 133392

archrelease: copy trunk to community-any

Added:
  phpmyadmin/repos/community-any/PKGBUILD
(from rev 133391, phpmyadmin/trunk/PKGBUILD)
Deleted:
  phpmyadmin/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-05-14 11:21:20 UTC (rev 133391)
+++ PKGBUILD2015-05-14 11:21:31 UTC (rev 133392)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: Bartłomiej Piotrowski bpiotrow...@archlinux.org
-# Contributor: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: tobias tob...@archlinux.org
-# Contributor: Manolis Tzanidakis mano...@archlinux.org
-# Contributor: Simon Lackerbauer calypso at strpg.org
-
-pkgname=phpmyadmin
-pkgver=4.4.6
-pkgrel=1
-pkgdesc='PHP and hence web-based tool to administrate MySQL over the WWW'
-arch=('any')
-url='http://www.phpmyadmin.net'
-license=('GPL')
-depends=('mariadb-clients' 'php')
-optdepends=('php-mcrypt: to use phpMyAdmin internal authentication')
-backup=(etc/webapps/phpmyadmin/config.inc.php)
-source=(http://downloads.sourceforge.net/sourceforge/$pkgname/phpMyAdmin-$pkgver-all-languages.tar.bz2)
-md5sums=('a582ca5b29a47d572462625339c78f5d')
-
-package() {
-  _instdir=$pkgdir/usr/share/webapps/phpMyAdmin
-  mkdir -p $_instdir $pkgdir/etc/webapps/phpmyadmin
-  cd $_instdir
-
-  cp -ra $srcdir/phpMyAdmin-$pkgver-all-languages/* .
-
-  ln -s /etc/webapps/phpmyadmin/config.inc.php $_instdir/config.inc.php
-  cp $_instdir/config.sample.inc.php 
$pkgdir/etc/webapps/phpmyadmin/config.inc.php
-}

Copied: phpmyadmin/repos/community-any/PKGBUILD (from rev 133391, 
phpmyadmin/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-05-14 11:21:31 UTC (rev 133392)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer:
+# Contributor: Bartłomiej Piotrowski bpiotrow...@archlinux.org
+# Contributor: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: tobias tob...@archlinux.org
+# Contributor: Manolis Tzanidakis mano...@archlinux.org
+# Contributor: Simon Lackerbauer calypso at strpg.org
+
+pkgname=phpmyadmin
+pkgver=4.4.6.1
+pkgrel=1
+pkgdesc='PHP and hence web-based tool to administrate MySQL over the WWW'
+arch=('any')
+url='http://www.phpmyadmin.net'
+license=('GPL')
+depends=('mariadb-clients' 'php')
+optdepends=('php-mcrypt: to use phpMyAdmin internal authentication')
+backup=(etc/webapps/phpmyadmin/config.inc.php)
+source=(http://downloads.sourceforge.net/sourceforge/$pkgname/phpMyAdmin-$pkgver-all-languages.tar.bz2)
+md5sums=('60af0318b9c8f70b5b9314af2d4bfa90')
+
+package() {
+  _instdir=$pkgdir/usr/share/webapps/phpMyAdmin
+  mkdir -p $_instdir $pkgdir/etc/webapps/phpmyadmin
+  cd $_instdir
+
+  cp -ra $srcdir/phpMyAdmin-$pkgver-all-languages/* .
+
+  ln -s /etc/webapps/phpmyadmin/config.inc.php $_instdir/config.inc.php
+  cp $_instdir/config.sample.inc.php 
$pkgdir/etc/webapps/phpmyadmin/config.inc.php
+}


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

2015-05-14 Thread Sergej Pupykin
Date: Thursday, May 14, 2015 @ 13:21:20
  Author: spupykin
Revision: 133391

upgpkg: phpmyadmin 4.4.6.1-1

upd

Modified:
  phpmyadmin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-14 04:16:32 UTC (rev 133390)
+++ PKGBUILD2015-05-14 11:21:20 UTC (rev 133391)
@@ -7,7 +7,7 @@
 # Contributor: Simon Lackerbauer calypso at strpg.org
 
 pkgname=phpmyadmin
-pkgver=4.4.6
+pkgver=4.4.6.1
 pkgrel=1
 pkgdesc='PHP and hence web-based tool to administrate MySQL over the WWW'
 arch=('any')
@@ -17,7 +17,7 @@
 optdepends=('php-mcrypt: to use phpMyAdmin internal authentication')
 backup=(etc/webapps/phpmyadmin/config.inc.php)
 
source=(http://downloads.sourceforge.net/sourceforge/$pkgname/phpMyAdmin-$pkgver-all-languages.tar.bz2)
-md5sums=('a582ca5b29a47d572462625339c78f5d')
+md5sums=('60af0318b9c8f70b5b9314af2d4bfa90')
 
 package() {
   _instdir=$pkgdir/usr/share/webapps/phpMyAdmin


[arch-commits] Commit in syncthing/repos/community-x86_64 (5 files)

2015-05-14 Thread Jaroslav Lichtblau
Date: Thursday, May 14, 2015 @ 13:35:30
  Author: jlichtblau
Revision: 133398

archrelease: copy trunk to community-x86_64

Added:
  syncthing/repos/community-x86_64/PKGBUILD
(from rev 133397, syncthing/trunk/PKGBUILD)
  syncthing/repos/community-x86_64/syncthing.1
(from rev 133397, syncthing/trunk/syncthing.1)
Deleted:
  syncthing/repos/community-x86_64/PKGBUILD
  syncthing/repos/community-x86_64/syncthing.1
  syncthing/repos/community-x86_64/syncthing.install

---+
 PKGBUILD  |  101 +--
 syncthing.1   |  188 ++--
 syncthing.install |   20 -
 3 files changed, 144 insertions(+), 165 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-05-14 11:35:17 UTC (rev 133397)
+++ PKGBUILD2015-05-14 11:35:30 UTC (rev 133398)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer : Martin Wimpress c...@flexion.org
-# Maintainer : Jaroslav Lichtblau svetlemo...@archlinux.org
-# Contributor: Sauyon Lee sauy...@sauyon.com
-# Contributor: Kevin MacMartin pruri...@gmail.com
-# Contributor: korjjj korjjj+...@gmail.com
-
-pkgname=syncthing
-pkgver=0.11.2
-pkgrel=1
-pkgdesc=Open Source Continuous Replication / Cluster Synchronization Thing
-url=http://syncthing.net/;
-license=('MPLv2')
-arch=('i686' 'x86_64')
-depends=('glibc')
-makedepends=('git' 'go' 'godep' 'inetutils' 'sed')
-source=($pkgname-$pkgver::git+https://github.com/syncthing/syncthing.git#tag=v${pkgver}
-$pkgname.1)
-sha1sums=('SKIP'
-  '17be8b3f99c577e325765abc251f597e204d7711')
-install=${pkgname}.install
-
-prepare() {
-  cd ${srcdir}
-  mkdir -p src/github.com/syncthing
-  mv ${pkgname}-${pkgver} src/github.com/syncthing/${pkgname}
-}
-
-build() {
-  export GOPATH=${srcdir}
-  cd ${srcdir}/src/github.com/syncthing/${pkgname}
-  go run build.go -no-upgrade build
-}
-
-check() {
-  export GOPATH=${srcdir}
-  cd ${srcdir}/src/github.com/syncthing/${pkgname}
-  #go run build.go -no-upgrade test
-}
-
-package() {
-  cd ${srcdir}/src/github.com/syncthing/${pkgname}
-  install -Dm755 ${pkgname} ${pkgdir}/usr/bin/${pkgname}
-  install -Dm644 README.md ${pkgdir}/usr/share/doc/${pkgname}/README.md
-  install -Dm644 etc/linux-systemd/system/${pkgname}@.service 
${pkgdir}/usr/lib/systemd/system/${pkgname}@.service
-  install -Dm644 etc/linux-systemd/user/${pkgname}.service 
${pkgdir}/usr/lib/systemd/user/${pkgname}.service
-  install -Dm644 ${srcdir}/${pkgname}.1 
${pkgdir}/usr/share/man/man1/${pkgname}.1
-
-# license
-  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: syncthing/repos/community-x86_64/PKGBUILD (from rev 133397, 
syncthing/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-05-14 11:35:30 UTC (rev 133398)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer : Martin Wimpress c...@flexion.org
+# Maintainer : Jaroslav Lichtblau svetlemo...@archlinux.org
+# Contributor: Sauyon Lee sauy...@sauyon.com
+# Contributor: Kevin MacMartin pruri...@gmail.com
+# Contributor: korjjj korjjj+...@gmail.com
+
+pkgname=syncthing
+pkgver=0.11.3
+pkgrel=1
+pkgdesc=Open Source Continuous Replication / Cluster Synchronization Thing
+url=http://syncthing.net/;
+license=('MPLv2')
+arch=('i686' 'x86_64')
+depends=('glibc')
+makedepends=('git' 'go' 'godep' 'inetutils' 'sed')
+source=($pkgname-$pkgver::git+https://github.com/syncthing/syncthing.git#tag=v${pkgver}
+$pkgname.1)
+sha1sums=('SKIP'
+  '17be8b3f99c577e325765abc251f597e204d7711')
+
+prepare() {
+  cd ${srcdir}
+  mkdir -p src/github.com/syncthing
+  mv ${pkgname}-${pkgver} src/github.com/syncthing/${pkgname}
+}
+
+build() {
+  export GOPATH=${srcdir}
+  cd ${srcdir}/src/github.com/syncthing/${pkgname}
+  go run build.go -no-upgrade build
+}
+
+check() {
+  export GOPATH=${srcdir}
+  cd ${srcdir}/src/github.com/syncthing/${pkgname}
+  #go run build.go -no-upgrade test
+}
+
+package() {
+  cd ${srcdir}/src/github.com/syncthing/${pkgname}
+  install -Dm755 ${pkgname} ${pkgdir}/usr/bin/${pkgname}
+  install -Dm644 README.md ${pkgdir}/usr/share/doc/${pkgname}/README.md
+  install -Dm644 etc/linux-systemd/system/${pkgname}@.service 
${pkgdir}/usr/lib/systemd/system/${pkgname}@.service
+  install -Dm644 etc/linux-systemd/user/${pkgname}.service 
${pkgdir}/usr/lib/systemd/user/${pkgname}.service
+  install -Dm644 ${srcdir}/${pkgname}.1 
${pkgdir}/usr/share/man/man1/${pkgname}.1
+
+# license
+  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Deleted: syncthing.1
===
--- syncthing.1 2015-05-14 11:35:17 UTC (rev 133397)
+++ syncthing.1 2015-05-14 11:35:30 UTC (rev 133398)
@@ -1,94 +0,0 @@
-.\ generated with Ronn/v0.7.3
-.\ http://github.com/rtomayko/ronn/tree/0.7.3
-.
-.TH SYNCTHING  May 2014  syncthing
-.
-.SH Project Goals

[arch-commits] Commit in syncthing/trunk (PKGBUILD syncthing.install)

2015-05-14 Thread Jaroslav Lichtblau
Date: Thursday, May 14, 2015 @ 13:35:17
  Author: jlichtblau
Revision: 133397

upgpkg: syncthing 0.11.3-1 - New upstream release.

Modified:
  syncthing/trunk/PKGBUILD
Deleted:
  syncthing/trunk/syncthing.install

---+
 PKGBUILD  |3 +--
 syncthing.install |   20 
 2 files changed, 1 insertion(+), 22 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-05-14 11:27:32 UTC (rev 133396)
+++ PKGBUILD2015-05-14 11:35:17 UTC (rev 133397)
@@ -6,7 +6,7 @@
 # Contributor: korjjj korjjj+...@gmail.com
 
 pkgname=syncthing
-pkgver=0.11.2
+pkgver=0.11.3
 pkgrel=1
 pkgdesc=Open Source Continuous Replication / Cluster Synchronization Thing
 url=http://syncthing.net/;
@@ -18,7 +18,6 @@
 $pkgname.1)
 sha1sums=('SKIP'
   '17be8b3f99c577e325765abc251f597e204d7711')
-install=${pkgname}.install
 
 prepare() {
   cd ${srcdir}

Deleted: syncthing.install
===
--- syncthing.install   2015-05-14 11:27:32 UTC (rev 133396)
+++ syncthing.install   2015-05-14 11:35:17 UTC (rev 133397)
@@ -1,20 +0,0 @@
-post_install() {
-cat  EOF
-  To start and/or enable syncthing execute the following,
-  replacing 'user' with your username.
-
-systemctl start syncthing@user
-systemctl enable syncthing@user
-EOF
-}
-
-post_upgrade() {
-cat  EOF
-  Syncthing v0.11 does not support synchronizing with older versions (v0.10 or 
older).
-  Syncthing v0.11 will rehash all files on first startup.
-  Syncthing v0.11 requires updates to other programs it integrates with.
-  For details see the project release notes page at:
-  https://forum.syncthing.net/t/syncthing-v0-11-0-release-notes/2426
-
-EOF
-}


[arch-commits] Commit in moosefs/trunk (moosefs.install)

2015-05-14 Thread Alexander Rødseth
Date: Thursday, May 14, 2015 @ 13:36:05
  Author: arodseth
Revision: 133399

upgpkg: moosefs 2.0.67_1-1

Modified:
  moosefs/trunk/moosefs.install

-+
 moosefs.install |9 +
 1 file changed, 9 insertions(+)

Modified: moosefs.install
===
--- moosefs.install 2015-05-14 11:35:30 UTC (rev 133398)
+++ moosefs.install 2015-05-14 11:36:05 UTC (rev 133399)
@@ -8,4 +8,13 @@
   echo
 }
 
+post_upgrade() {
+  echo
+  echo 'The latest release of MooseFS had several changes to how'
+  echo 'files are packaged and installed. There were also changes to'
+  echo 'the systemd service files. Please double-check that every'
+  echo 'service you wish to run is running as you intended.'
+  echo
+}
+
 # vim:set ts=2 sw=2 et:


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

2015-05-14 Thread Alexander Rødseth
Date: Thursday, May 14, 2015 @ 13:36:36
  Author: arodseth
Revision: 133400

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

Added:
  moosefs/repos/community-i686/PKGBUILD
(from rev 133399, moosefs/trunk/PKGBUILD)
  moosefs/repos/community-i686/moosefs.install
(from rev 133399, moosefs/trunk/moosefs.install)
  moosefs/repos/community-x86_64/PKGBUILD
(from rev 133396, moosefs/trunk/PKGBUILD)
  moosefs/repos/community-x86_64/moosefs.install
(from rev 133396, moosefs/trunk/moosefs.install)

--+
 community-i686/PKGBUILD  |   38 +
 community-i686/moosefs.install   |   20 +++
 community-x86_64/PKGBUILD|   38 +
 community-x86_64/moosefs.install |   11 ++
 4 files changed, 107 insertions(+)

Copied: moosefs/repos/community-i686/PKGBUILD (from rev 133399, 
moosefs/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-05-14 11:36:36 UTC (rev 133400)
@@ -0,0 +1,38 @@
+# $Id: PKGBUILD 133367 2015-05-13 12:31:10Z arodseth $
+# Maintainer: Alexander Rødseth rods...@gmail.com
+
+pkgname=moosefs
+pkgver=2.0.67_1
+pkgrel=1
+pkgdesc='High performing and fault tolerant distributed file system'
+url='http://moosefs.com/'
+replaces=('mfs-master' 'mfs-chunkserver' 'mfs-client')
+conflicts=('mfs-master' 'mfs-chunkserver' 'mfs-client')
+arch=('x86_64' 'i686')
+license=('GPL3')
+depends=('zlib' 'fuse' 'python2' 'bash' 'xfsprogs')
+install=$pkgname.install
+source=(http://ppa.moosefs.com/src/moosefs-${pkgver/_/-}.tar.gz;)
+sha256sums=('9b3ad3fc81a6b5ffa7f6cbeb1aa11f85d5b82a2b0c40ff5c8f3b46f72eaafcb4')
+
+build() {
+  cd moosefs-${pkgver%_*}
+
+  ./configure \
+--prefix=/usr \
+--mandir=/usr/share/man \
+--sysconfdir=/etc \
+--localstatedir=/var/lib \
+--with-default-user=mfs \
+--with-default-group=mfs \
+--with-systemdsystemunitdir=/usr/lib/systemd/system \
+--sbindir=/usr/bin
+  make
+}
+
+package() {
+  make DESTDIR=$pkgdir -C moosefs-${pkgver%_*} install
+}
+
+# getver: -u 4 moosefs.com/download/sources.html
+# vim:set ts=2 sw=2 et:

Copied: moosefs/repos/community-i686/moosefs.install (from rev 133399, 
moosefs/trunk/moosefs.install)
===
--- community-i686/moosefs.install  (rev 0)
+++ community-i686/moosefs.install  2015-05-14 11:36:36 UTC (rev 133400)
@@ -0,0 +1,20 @@
+post_install() {
+  echo
+  echo 'For configuring MooseFS, the .cfg.dist files in /etc/mfs can'
+  echo 'be used as a basis for writing the corresponding .cfg files.'
+  echo
+  echo 'For troubleshooting a service, like mfschunkserver, just running'
+  echo '/usr/bin/mfschunkserver start can be helpful.'
+  echo
+}
+
+post_upgrade() {
+  echo
+  echo 'The latest release of MooseFS had several changes to how'
+  echo 'files are packaged and installed. There were also changes to'
+  echo 'the systemd service files. Please double-check that every'
+  echo 'service you wish to run is running as you intended.'
+  echo
+}
+
+# vim:set ts=2 sw=2 et:

Copied: moosefs/repos/community-x86_64/PKGBUILD (from rev 133396, 
moosefs/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-05-14 11:36:36 UTC (rev 133400)
@@ -0,0 +1,38 @@
+# $Id: PKGBUILD 133367 2015-05-13 12:31:10Z arodseth $
+# Maintainer: Alexander Rødseth rods...@gmail.com
+
+pkgname=moosefs
+pkgver=2.0.67_1
+pkgrel=1
+pkgdesc='High performing and fault tolerant distributed file system'
+url='http://moosefs.com/'
+replaces=('mfs-master' 'mfs-chunkserver' 'mfs-client')
+conflicts=('mfs-master' 'mfs-chunkserver' 'mfs-client')
+arch=('x86_64' 'i686')
+license=('GPL3')
+depends=('zlib' 'fuse' 'python2' 'bash' 'xfsprogs')
+install=$pkgname.install
+source=(http://ppa.moosefs.com/src/moosefs-${pkgver/_/-}.tar.gz;)
+sha256sums=('9b3ad3fc81a6b5ffa7f6cbeb1aa11f85d5b82a2b0c40ff5c8f3b46f72eaafcb4')
+
+build() {
+  cd moosefs-${pkgver%_*}
+
+  ./configure \
+--prefix=/usr \
+--mandir=/usr/share/man \
+--sysconfdir=/etc \
+--localstatedir=/var/lib \
+--with-default-user=mfs \
+--with-default-group=mfs \
+--with-systemdsystemunitdir=/usr/lib/systemd/system \
+--sbindir=/usr/bin
+  make
+}
+
+package() {
+  make DESTDIR=$pkgdir -C moosefs-${pkgver%_*} install
+}
+
+# getver: -u 4 moosefs.com/download/sources.html
+# vim:set ts=2 sw=2 et:

Copied: moosefs/repos/community-x86_64/moosefs.install (from rev 133396, 
moosefs/trunk/moosefs.install)
===
--- community-x86_64/moosefs.install(rev 0)
+++ community-x86_64/moosefs.install2015-05-14 11:36:36 

[arch-commits] Commit in syncthing-gtk/trunk (PKGBUILD syncthing-gtk.install)

2015-05-14 Thread Jaroslav Lichtblau
Date: Thursday, May 14, 2015 @ 13:40:16
  Author: jlichtblau
Revision: 133402

upgpkg: syncthing-gtk 0.7.1.1-1 - new upstream version

Added:
  syncthing-gtk/trunk/syncthing-gtk.install
Modified:
  syncthing-gtk/trunk/PKGBUILD

---+
 PKGBUILD  |5 +++--
 syncthing-gtk.install |   11 +++
 2 files changed, 14 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-05-14 11:39:25 UTC (rev 133401)
+++ PKGBUILD2015-05-14 11:40:16 UTC (rev 133402)
@@ -4,7 +4,7 @@
 # Contributor: kozec kozec at kozec dot com
 
 pkgname=syncthing-gtk
-pkgver=0.7.0.2
+pkgver=0.7.1.1
 pkgrel=1
 pkgdesc='GTK3 based GUI and notification area icon for Syncthing'
 arch=('any')
@@ -15,8 +15,9 @@
 optdepends=('python2-nautilus: file manager integration for Nautilus'
 'python2-caja: file manager integration for Caja'
 'librsvg: to shown menu icons correctly if not using traditional 
window header')
+install=$pkgname.install
 
source=($pkgname-$pkgver.tar.gz::https://github.com/syncthing/$pkgname/archive/v$pkgver.tar.gz)
-sha256sums=('fe5e5161bfe67cfc313c1f4bec82b7bfb86b7c21ca89e694a6a0f2be76e00da3')
+sha256sums=('02aaa485dcbf5b37a7e9e464e3b8c9c12a8b87a012070448d12edd155dd497b1')
 
 build() {
   cd $pkgname-$pkgver

Added: syncthing-gtk.install
===
--- syncthing-gtk.install   (rev 0)
+++ syncthing-gtk.install   2015-05-14 11:40:16 UTC (rev 133402)
@@ -0,0 +1,11 @@
+post_install() {
+  xdg-icon-resource forceupdate --theme hicolor  /dev/null
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}


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

2015-05-14 Thread Alexander Rødseth
Date: Thursday, May 14, 2015 @ 13:39:25
  Author: arodseth
Revision: 133401

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

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

--+
 /PKGBUILD|   76 +
 /moosefs.install |   40 +++
 community-i686/PKGBUILD  |   38 --
 community-i686/moosefs.install   |   20 -
 community-x86_64/PKGBUILD|   38 --
 community-x86_64/moosefs.install |   11 -
 6 files changed, 116 insertions(+), 107 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-05-14 11:36:36 UTC (rev 133400)
+++ community-i686/PKGBUILD 2015-05-14 11:39:25 UTC (rev 133401)
@@ -1,38 +0,0 @@
-# $Id: PKGBUILD 133367 2015-05-13 12:31:10Z arodseth $
-# Maintainer: Alexander Rødseth rods...@gmail.com
-
-pkgname=moosefs
-pkgver=2.0.67_1
-pkgrel=1
-pkgdesc='High performing and fault tolerant distributed file system'
-url='http://moosefs.com/'
-replaces=('mfs-master' 'mfs-chunkserver' 'mfs-client')
-conflicts=('mfs-master' 'mfs-chunkserver' 'mfs-client')
-arch=('x86_64' 'i686')
-license=('GPL3')
-depends=('zlib' 'fuse' 'python2' 'bash' 'xfsprogs')
-install=$pkgname.install
-source=(http://ppa.moosefs.com/src/moosefs-${pkgver/_/-}.tar.gz;)
-sha256sums=('9b3ad3fc81a6b5ffa7f6cbeb1aa11f85d5b82a2b0c40ff5c8f3b46f72eaafcb4')
-
-build() {
-  cd moosefs-${pkgver%_*}
-
-  ./configure \
---prefix=/usr \
---mandir=/usr/share/man \
---sysconfdir=/etc \
---localstatedir=/var/lib \
---with-default-user=mfs \
---with-default-group=mfs \
---with-systemdsystemunitdir=/usr/lib/systemd/system \
---sbindir=/usr/bin
-  make
-}
-
-package() {
-  make DESTDIR=$pkgdir -C moosefs-${pkgver%_*} install
-}
-
-# getver: -u 4 moosefs.com/download/sources.html
-# vim:set ts=2 sw=2 et:

Copied: moosefs/repos/community-i686/PKGBUILD (from rev 133400, 
moosefs/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-05-14 11:39:25 UTC (rev 133401)
@@ -0,0 +1,38 @@
+# $Id: PKGBUILD 133367 2015-05-13 12:31:10Z arodseth $
+# Maintainer: Alexander Rødseth rods...@gmail.com
+
+pkgname=moosefs
+pkgver=2.0.67_1
+pkgrel=1
+pkgdesc='High performing and fault tolerant distributed file system'
+url='http://moosefs.com/'
+replaces=('mfs-master' 'mfs-chunkserver' 'mfs-client')
+conflicts=('mfs-master' 'mfs-chunkserver' 'mfs-client')
+arch=('x86_64' 'i686')
+license=('GPL3')
+depends=('zlib' 'fuse' 'python2' 'bash' 'xfsprogs')
+install=$pkgname.install
+source=(http://ppa.moosefs.com/src/moosefs-${pkgver/_/-}.tar.gz;)
+sha256sums=('9b3ad3fc81a6b5ffa7f6cbeb1aa11f85d5b82a2b0c40ff5c8f3b46f72eaafcb4')
+
+build() {
+  cd moosefs-${pkgver%_*}
+
+  ./configure \
+--prefix=/usr \
+--mandir=/usr/share/man \
+--sysconfdir=/etc \
+--localstatedir=/var/lib \
+--with-default-user=mfs \
+--with-default-group=mfs \
+--with-systemdsystemunitdir=/usr/lib/systemd/system \
+--sbindir=/usr/bin
+  make
+}
+
+package() {
+  make DESTDIR=$pkgdir -C moosefs-${pkgver%_*} install
+}
+
+# getver: -u 4 moosefs.com/download/sources.html
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/moosefs.install
===
--- community-i686/moosefs.install  2015-05-14 11:36:36 UTC (rev 133400)
+++ community-i686/moosefs.install  2015-05-14 11:39:25 UTC (rev 133401)
@@ -1,20 +0,0 @@
-post_install() {
-  echo
-  echo 'For configuring MooseFS, the .cfg.dist files in /etc/mfs can'
-  echo 'be used as a basis for writing the corresponding .cfg files.'
-  echo
-  echo 'For troubleshooting a service, like mfschunkserver, just running'
-  echo '/usr/bin/mfschunkserver start can be helpful.'
-  echo
-}
-
-post_upgrade() {
-  echo
-  echo 'The latest release of MooseFS had several changes to how'
-  echo 'files are packaged and installed. There were also changes to'
-  echo 'the systemd service files. Please double-check that every'
-  echo 'service you wish to run is running as you intended.'
-  echo
-}
-
-# vim:set ts=2 sw=2 et:

Copied: moosefs/repos/community-i686/moosefs.install (from rev 133400, 
moosefs/trunk/moosefs.install)

[arch-commits] Commit in syncthing-gtk/repos/community-any (3 files)

2015-05-14 Thread Jaroslav Lichtblau
Date: Thursday, May 14, 2015 @ 13:40:25
  Author: jlichtblau
Revision: 133403

archrelease: copy trunk to community-any

Added:
  syncthing-gtk/repos/community-any/PKGBUILD
(from rev 133402, syncthing-gtk/trunk/PKGBUILD)
  syncthing-gtk/repos/community-any/syncthing-gtk.install
(from rev 133402, syncthing-gtk/trunk/syncthing-gtk.install)
Deleted:
  syncthing-gtk/repos/community-any/PKGBUILD

---+
 PKGBUILD  |   59 
 syncthing-gtk.install |   11 
 2 files changed, 41 insertions(+), 29 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-05-14 11:40:16 UTC (rev 133402)
+++ PKGBUILD2015-05-14 11:40:25 UTC (rev 133403)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Martin Wimpress c...@flexion.org
-# Maintainer: Jaroslav Lichtblau svetlemo...@archlinux.org
-# Contributor: kozec kozec at kozec dot com
-
-pkgname=syncthing-gtk
-pkgver=0.7.0.2
-pkgrel=1
-pkgdesc='GTK3 based GUI and notification area icon for Syncthing'
-arch=('any')
-url='https://github.com/syncthing/syncthing-gtk'
-license=('GPL2')
-depends=('gtk3' 'libnotify' 'python2-dateutil' 'python2-gobject' 
'python2-pyinotify' 'python2-cairo' 'syncthing=0.11')
-makedepends=('python2-setuptools')
-optdepends=('python2-nautilus: file manager integration for Nautilus'
-'python2-caja: file manager integration for Caja'
-'librsvg: to shown menu icons correctly if not using traditional 
window header')
-source=($pkgname-$pkgver.tar.gz::https://github.com/syncthing/$pkgname/archive/v$pkgver.tar.gz)
-sha256sums=('fe5e5161bfe67cfc313c1f4bec82b7bfb86b7c21ca89e694a6a0f2be76e00da3')
-
-build() {
-  cd $pkgname-$pkgver
-  python2 setup.py build
-}
-
-package() {
-  cd $pkgname-$pkgver
-  python2 setup.py install --root=${pkgdir} --optimize=1
-}

Copied: syncthing-gtk/repos/community-any/PKGBUILD (from rev 133402, 
syncthing-gtk/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-05-14 11:40:25 UTC (rev 133403)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Martin Wimpress c...@flexion.org
+# Maintainer: Jaroslav Lichtblau svetlemo...@archlinux.org
+# Contributor: kozec kozec at kozec dot com
+
+pkgname=syncthing-gtk
+pkgver=0.7.1.1
+pkgrel=1
+pkgdesc='GTK3 based GUI and notification area icon for Syncthing'
+arch=('any')
+url='https://github.com/syncthing/syncthing-gtk'
+license=('GPL2')
+depends=('gtk3' 'libnotify' 'python2-dateutil' 'python2-gobject' 
'python2-pyinotify' 'python2-cairo' 'syncthing=0.11')
+makedepends=('python2-setuptools')
+optdepends=('python2-nautilus: file manager integration for Nautilus'
+'python2-caja: file manager integration for Caja'
+'librsvg: to shown menu icons correctly if not using traditional 
window header')
+install=$pkgname.install
+source=($pkgname-$pkgver.tar.gz::https://github.com/syncthing/$pkgname/archive/v$pkgver.tar.gz)
+sha256sums=('02aaa485dcbf5b37a7e9e464e3b8c9c12a8b87a012070448d12edd155dd497b1')
+
+build() {
+  cd $pkgname-$pkgver
+  python2 setup.py build
+}
+
+package() {
+  cd $pkgname-$pkgver
+  python2 setup.py install --root=${pkgdir} --optimize=1
+}

Copied: syncthing-gtk/repos/community-any/syncthing-gtk.install (from rev 
133402, syncthing-gtk/trunk/syncthing-gtk.install)
===
--- syncthing-gtk.install   (rev 0)
+++ syncthing-gtk.install   2015-05-14 11:40:25 UTC (rev 133403)
@@ -0,0 +1,11 @@
+post_install() {
+  xdg-icon-resource forceupdate --theme hicolor  /dev/null
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}


[arch-commits] Commit in syncthing/repos/community-i686 (5 files)

2015-05-14 Thread Jaroslav Lichtblau
Date: Thursday, May 14, 2015 @ 13:42:03
  Author: jlichtblau
Revision: 133405

archrelease: copy trunk to community-i686

Added:
  syncthing/repos/community-i686/PKGBUILD
(from rev 133404, syncthing/trunk/PKGBUILD)
  syncthing/repos/community-i686/syncthing.1
(from rev 133404, syncthing/trunk/syncthing.1)
Deleted:
  syncthing/repos/community-i686/PKGBUILD
  syncthing/repos/community-i686/syncthing.1
  syncthing/repos/community-i686/syncthing.install

---+
 PKGBUILD  |  101 +--
 syncthing.1   |  188 ++--
 syncthing.install |   20 -
 3 files changed, 144 insertions(+), 165 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-05-14 11:40:47 UTC (rev 133404)
+++ PKGBUILD2015-05-14 11:42:03 UTC (rev 133405)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer : Martin Wimpress c...@flexion.org
-# Maintainer : Jaroslav Lichtblau svetlemo...@archlinux.org
-# Contributor: Sauyon Lee sauy...@sauyon.com
-# Contributor: Kevin MacMartin pruri...@gmail.com
-# Contributor: korjjj korjjj+...@gmail.com
-
-pkgname=syncthing
-pkgver=0.11.2
-pkgrel=1
-pkgdesc=Open Source Continuous Replication / Cluster Synchronization Thing
-url=http://syncthing.net/;
-license=('MPLv2')
-arch=('i686' 'x86_64')
-depends=('glibc')
-makedepends=('git' 'go' 'godep' 'inetutils' 'sed')
-source=($pkgname-$pkgver::git+https://github.com/syncthing/syncthing.git#tag=v${pkgver}
-$pkgname.1)
-sha1sums=('SKIP'
-  '17be8b3f99c577e325765abc251f597e204d7711')
-install=${pkgname}.install
-
-prepare() {
-  cd ${srcdir}
-  mkdir -p src/github.com/syncthing
-  mv ${pkgname}-${pkgver} src/github.com/syncthing/${pkgname}
-}
-
-build() {
-  export GOPATH=${srcdir}
-  cd ${srcdir}/src/github.com/syncthing/${pkgname}
-  go run build.go -no-upgrade build
-}
-
-check() {
-  export GOPATH=${srcdir}
-  cd ${srcdir}/src/github.com/syncthing/${pkgname}
-  #go run build.go -no-upgrade test
-}
-
-package() {
-  cd ${srcdir}/src/github.com/syncthing/${pkgname}
-  install -Dm755 ${pkgname} ${pkgdir}/usr/bin/${pkgname}
-  install -Dm644 README.md ${pkgdir}/usr/share/doc/${pkgname}/README.md
-  install -Dm644 etc/linux-systemd/system/${pkgname}@.service 
${pkgdir}/usr/lib/systemd/system/${pkgname}@.service
-  install -Dm644 etc/linux-systemd/user/${pkgname}.service 
${pkgdir}/usr/lib/systemd/user/${pkgname}.service
-  install -Dm644 ${srcdir}/${pkgname}.1 
${pkgdir}/usr/share/man/man1/${pkgname}.1
-
-# license
-  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: syncthing/repos/community-i686/PKGBUILD (from rev 133404, 
syncthing/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-05-14 11:42:03 UTC (rev 133405)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer : Martin Wimpress c...@flexion.org
+# Maintainer : Jaroslav Lichtblau svetlemo...@archlinux.org
+# Contributor: Sauyon Lee sauy...@sauyon.com
+# Contributor: Kevin MacMartin pruri...@gmail.com
+# Contributor: korjjj korjjj+...@gmail.com
+
+pkgname=syncthing
+pkgver=0.11.3
+pkgrel=1
+pkgdesc=Open Source Continuous Replication / Cluster Synchronization Thing
+url=http://syncthing.net/;
+license=('MPLv2')
+arch=('i686' 'x86_64')
+depends=('glibc')
+makedepends=('git' 'go' 'godep' 'inetutils' 'sed')
+source=($pkgname-$pkgver::git+https://github.com/syncthing/syncthing.git#tag=v${pkgver}
+$pkgname.1)
+sha1sums=('SKIP'
+  '17be8b3f99c577e325765abc251f597e204d7711')
+
+prepare() {
+  cd ${srcdir}
+  mkdir -p src/github.com/syncthing
+  mv ${pkgname}-${pkgver} src/github.com/syncthing/${pkgname}
+}
+
+build() {
+  export GOPATH=${srcdir}
+  cd ${srcdir}/src/github.com/syncthing/${pkgname}
+  go run build.go -no-upgrade build
+}
+
+check() {
+  export GOPATH=${srcdir}
+  cd ${srcdir}/src/github.com/syncthing/${pkgname}
+  #go run build.go -no-upgrade test
+}
+
+package() {
+  cd ${srcdir}/src/github.com/syncthing/${pkgname}
+  install -Dm755 ${pkgname} ${pkgdir}/usr/bin/${pkgname}
+  install -Dm644 README.md ${pkgdir}/usr/share/doc/${pkgname}/README.md
+  install -Dm644 etc/linux-systemd/system/${pkgname}@.service 
${pkgdir}/usr/lib/systemd/system/${pkgname}@.service
+  install -Dm644 etc/linux-systemd/user/${pkgname}.service 
${pkgdir}/usr/lib/systemd/user/${pkgname}.service
+  install -Dm644 ${srcdir}/${pkgname}.1 
${pkgdir}/usr/share/man/man1/${pkgname}.1
+
+# license
+  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Deleted: syncthing.1
===
--- syncthing.1 2015-05-14 11:40:47 UTC (rev 133404)
+++ syncthing.1 2015-05-14 11:42:03 UTC (rev 133405)
@@ -1,94 +0,0 @@
-.\ generated with Ronn/v0.7.3
-.\ http://github.com/rtomayko/ronn/tree/0.7.3
-.
-.TH SYNCTHING  May 2014  syncthing
-.
-.SH Project Goals
-This is the 

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

2015-05-14 Thread Alexander Rødseth
Date: Thursday, May 14, 2015 @ 13:40:47
  Author: arodseth
Revision: 133404

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

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

--+
 /PKGBUILD|   76 +
 /moosefs.install |   40 +++
 community-i686/PKGBUILD  |   38 --
 community-i686/moosefs.install   |   20 -
 community-x86_64/PKGBUILD|   38 --
 community-x86_64/moosefs.install |   20 -
 6 files changed, 116 insertions(+), 116 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-05-14 11:40:25 UTC (rev 133403)
+++ community-i686/PKGBUILD 2015-05-14 11:40:47 UTC (rev 133404)
@@ -1,38 +0,0 @@
-# $Id: PKGBUILD 133367 2015-05-13 12:31:10Z arodseth $
-# Maintainer: Alexander Rødseth rods...@gmail.com
-
-pkgname=moosefs
-pkgver=2.0.67_1
-pkgrel=1
-pkgdesc='High performing and fault tolerant distributed file system'
-url='http://moosefs.com/'
-replaces=('mfs-master' 'mfs-chunkserver' 'mfs-client')
-conflicts=('mfs-master' 'mfs-chunkserver' 'mfs-client')
-arch=('x86_64' 'i686')
-license=('GPL3')
-depends=('zlib' 'fuse' 'python2' 'bash' 'xfsprogs')
-install=$pkgname.install
-source=(http://ppa.moosefs.com/src/moosefs-${pkgver/_/-}.tar.gz;)
-sha256sums=('9b3ad3fc81a6b5ffa7f6cbeb1aa11f85d5b82a2b0c40ff5c8f3b46f72eaafcb4')
-
-build() {
-  cd moosefs-${pkgver%_*}
-
-  ./configure \
---prefix=/usr \
---mandir=/usr/share/man \
---sysconfdir=/etc \
---localstatedir=/var/lib \
---with-default-user=mfs \
---with-default-group=mfs \
---with-systemdsystemunitdir=/usr/lib/systemd/system \
---sbindir=/usr/bin
-  make
-}
-
-package() {
-  make DESTDIR=$pkgdir -C moosefs-${pkgver%_*} install
-}
-
-# getver: -u 4 moosefs.com/download/sources.html
-# vim:set ts=2 sw=2 et:

Copied: moosefs/repos/community-i686/PKGBUILD (from rev 133403, 
moosefs/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-05-14 11:40:47 UTC (rev 133404)
@@ -0,0 +1,38 @@
+# $Id: PKGBUILD 133367 2015-05-13 12:31:10Z arodseth $
+# Maintainer: Alexander Rødseth rods...@gmail.com
+
+pkgname=moosefs
+pkgver=2.0.67_1
+pkgrel=1
+pkgdesc='High performing and fault tolerant distributed file system'
+url='http://moosefs.com/'
+replaces=('mfs-master' 'mfs-chunkserver' 'mfs-client')
+conflicts=('mfs-master' 'mfs-chunkserver' 'mfs-client')
+arch=('x86_64' 'i686')
+license=('GPL3')
+depends=('zlib' 'fuse' 'python2' 'bash' 'xfsprogs')
+install=$pkgname.install
+source=(http://ppa.moosefs.com/src/moosefs-${pkgver/_/-}.tar.gz;)
+sha256sums=('9b3ad3fc81a6b5ffa7f6cbeb1aa11f85d5b82a2b0c40ff5c8f3b46f72eaafcb4')
+
+build() {
+  cd moosefs-${pkgver%_*}
+
+  ./configure \
+--prefix=/usr \
+--mandir=/usr/share/man \
+--sysconfdir=/etc \
+--localstatedir=/var/lib \
+--with-default-user=mfs \
+--with-default-group=mfs \
+--with-systemdsystemunitdir=/usr/lib/systemd/system \
+--sbindir=/usr/bin
+  make
+}
+
+package() {
+  make DESTDIR=$pkgdir -C moosefs-${pkgver%_*} install
+}
+
+# getver: -u 4 moosefs.com/download/sources.html
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/moosefs.install
===
--- community-i686/moosefs.install  2015-05-14 11:40:25 UTC (rev 133403)
+++ community-i686/moosefs.install  2015-05-14 11:40:47 UTC (rev 133404)
@@ -1,20 +0,0 @@
-post_install() {
-  echo
-  echo 'For configuring MooseFS, the .cfg.dist files in /etc/mfs can'
-  echo 'be used as a basis for writing the corresponding .cfg files.'
-  echo
-  echo 'For troubleshooting a service, like mfschunkserver, just running'
-  echo '/usr/bin/mfschunkserver start can be helpful.'
-  echo
-}
-
-post_upgrade() {
-  echo
-  echo 'The latest release of MooseFS had several changes to how'
-  echo 'files are packaged and installed. There were also changes to'
-  echo 'the systemd service files. Please double-check that every'
-  echo 'service you wish to run is running as you intended.'
-  echo
-}
-
-# vim:set ts=2 sw=2 et:

Copied: moosefs/repos/community-i686/moosefs.install (from rev 133403, 
moosefs/trunk/moosefs.install)

[arch-commits] Commit in (mfs)

2015-05-14 Thread Alexander Rødseth
Date: Thursday, May 14, 2015 @ 13:42:52
  Author: arodseth
Revision: 133406

Rename to moosefs + upstream changes for the source release.

Deleted:
  mfs/


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

2015-05-14 Thread Jaroslav Lichtblau
Date: Thursday, May 14, 2015 @ 13:42:55
  Author: jlichtblau
Revision: 133407

archrelease: copy trunk to community-any

Deleted:
  syncthing-gtk/repos/community-any/PKGBUILD

--+
 PKGBUILD |   30 --
 1 file changed, 30 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-05-14 11:42:52 UTC (rev 133406)
+++ PKGBUILD2015-05-14 11:42:55 UTC (rev 133407)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Martin Wimpress c...@flexion.org
-# Maintainer: Jaroslav Lichtblau svetlemo...@archlinux.org
-# Contributor: kozec kozec at kozec dot com
-
-pkgname=syncthing-gtk
-pkgver=0.7.1.1
-pkgrel=1
-pkgdesc='GTK3 based GUI and notification area icon for Syncthing'
-arch=('any')
-url='https://github.com/syncthing/syncthing-gtk'
-license=('GPL2')
-depends=('gtk3' 'libnotify' 'python2-dateutil' 'python2-gobject' 
'python2-pyinotify' 'python2-cairo' 'syncthing=0.11')
-makedepends=('python2-setuptools')
-optdepends=('python2-nautilus: file manager integration for Nautilus'
-'python2-caja: file manager integration for Caja'
-'librsvg: to shown menu icons correctly if not using traditional 
window header')
-install=$pkgname.install
-source=($pkgname-$pkgver.tar.gz::https://github.com/syncthing/$pkgname/archive/v$pkgver.tar.gz)
-sha256sums=('02aaa485dcbf5b37a7e9e464e3b8c9c12a8b87a012070448d12edd155dd497b1')
-
-build() {
-  cd $pkgname-$pkgver
-  python2 setup.py build
-}
-
-package() {
-  cd $pkgname-$pkgver
-  python2 setup.py install --root=${pkgdir} --optimize=1
-}


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

2015-05-14 Thread Alexander Rødseth
Date: Thursday, May 14, 2015 @ 13:43:14
  Author: arodseth
Revision: 133408

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

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

--+
 /PKGBUILD|   76 +
 /moosefs.install |   40 +++
 community-i686/PKGBUILD  |   38 --
 community-i686/moosefs.install   |   20 -
 community-x86_64/PKGBUILD|   38 --
 community-x86_64/moosefs.install |   20 -
 6 files changed, 116 insertions(+), 116 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-05-14 11:42:55 UTC (rev 133407)
+++ community-i686/PKGBUILD 2015-05-14 11:43:14 UTC (rev 133408)
@@ -1,38 +0,0 @@
-# $Id: PKGBUILD 133367 2015-05-13 12:31:10Z arodseth $
-# Maintainer: Alexander Rødseth rods...@gmail.com
-
-pkgname=moosefs
-pkgver=2.0.67_1
-pkgrel=1
-pkgdesc='High performing and fault tolerant distributed file system'
-url='http://moosefs.com/'
-replaces=('mfs-master' 'mfs-chunkserver' 'mfs-client')
-conflicts=('mfs-master' 'mfs-chunkserver' 'mfs-client')
-arch=('x86_64' 'i686')
-license=('GPL3')
-depends=('zlib' 'fuse' 'python2' 'bash' 'xfsprogs')
-install=$pkgname.install
-source=(http://ppa.moosefs.com/src/moosefs-${pkgver/_/-}.tar.gz;)
-sha256sums=('9b3ad3fc81a6b5ffa7f6cbeb1aa11f85d5b82a2b0c40ff5c8f3b46f72eaafcb4')
-
-build() {
-  cd moosefs-${pkgver%_*}
-
-  ./configure \
---prefix=/usr \
---mandir=/usr/share/man \
---sysconfdir=/etc \
---localstatedir=/var/lib \
---with-default-user=mfs \
---with-default-group=mfs \
---with-systemdsystemunitdir=/usr/lib/systemd/system \
---sbindir=/usr/bin
-  make
-}
-
-package() {
-  make DESTDIR=$pkgdir -C moosefs-${pkgver%_*} install
-}
-
-# getver: -u 4 moosefs.com/download/sources.html
-# vim:set ts=2 sw=2 et:

Copied: moosefs/repos/community-i686/PKGBUILD (from rev 133407, 
moosefs/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-05-14 11:43:14 UTC (rev 133408)
@@ -0,0 +1,38 @@
+# $Id: PKGBUILD 133367 2015-05-13 12:31:10Z arodseth $
+# Maintainer: Alexander Rødseth rods...@gmail.com
+
+pkgname=moosefs
+pkgver=2.0.67_1
+pkgrel=1
+pkgdesc='High performing and fault tolerant distributed file system'
+url='http://moosefs.com/'
+replaces=('mfs-master' 'mfs-chunkserver' 'mfs-client')
+conflicts=('mfs-master' 'mfs-chunkserver' 'mfs-client')
+arch=('x86_64' 'i686')
+license=('GPL3')
+depends=('zlib' 'fuse' 'python2' 'bash' 'xfsprogs')
+install=$pkgname.install
+source=(http://ppa.moosefs.com/src/moosefs-${pkgver/_/-}.tar.gz;)
+sha256sums=('9b3ad3fc81a6b5ffa7f6cbeb1aa11f85d5b82a2b0c40ff5c8f3b46f72eaafcb4')
+
+build() {
+  cd moosefs-${pkgver%_*}
+
+  ./configure \
+--prefix=/usr \
+--mandir=/usr/share/man \
+--sysconfdir=/etc \
+--localstatedir=/var/lib \
+--with-default-user=mfs \
+--with-default-group=mfs \
+--with-systemdsystemunitdir=/usr/lib/systemd/system \
+--sbindir=/usr/bin
+  make
+}
+
+package() {
+  make DESTDIR=$pkgdir -C moosefs-${pkgver%_*} install
+}
+
+# getver: -u 4 moosefs.com/download/sources.html
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/moosefs.install
===
--- community-i686/moosefs.install  2015-05-14 11:42:55 UTC (rev 133407)
+++ community-i686/moosefs.install  2015-05-14 11:43:14 UTC (rev 133408)
@@ -1,20 +0,0 @@
-post_install() {
-  echo
-  echo 'For configuring MooseFS, the .cfg.dist files in /etc/mfs can'
-  echo 'be used as a basis for writing the corresponding .cfg files.'
-  echo
-  echo 'For troubleshooting a service, like mfschunkserver, just running'
-  echo '/usr/bin/mfschunkserver start can be helpful.'
-  echo
-}
-
-post_upgrade() {
-  echo
-  echo 'The latest release of MooseFS had several changes to how'
-  echo 'files are packaged and installed. There were also changes to'
-  echo 'the systemd service files. Please double-check that every'
-  echo 'service you wish to run is running as you intended.'
-  echo
-}
-
-# vim:set ts=2 sw=2 et:

Copied: moosefs/repos/community-i686/moosefs.install (from rev 133407, 
moosefs/trunk/moosefs.install)

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

2015-05-14 Thread Jaroslav Lichtblau
Date: Thursday, May 14, 2015 @ 13:48:24
  Author: jlichtblau
Revision: 133409

upgpkg: josm 8339-1 - new upstream version

Modified:
  josm/trunk/PKGBUILD
  josm/trunk/josm.changelog

+
 PKGBUILD   |4 ++--
 josm.changelog |3 +++
 2 files changed, 5 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-05-14 11:43:14 UTC (rev 133408)
+++ PKGBUILD2015-05-14 11:48:24 UTC (rev 133409)
@@ -3,7 +3,7 @@
 # Contributor: Michele Schäuble mschaeu...@swissonline.ch
 
 pkgname=josm
-pkgver=8279
+pkgver=8339
 pkgrel=1
 pkgdesc=An editor for OpenStreetMap written in Java
 arch=('any')
@@ -15,7 +15,7 @@
 source=(http://josm.openstreetmap.de/$pkgname-tested.jar
 $pkgname.desktop
 $pkgname.conf.d)
-sha256sums=('ce71a1a296b0967b8c486c2fc5bf5c24bba5fbe9fa429e7d4f8558788d02cc6c'
+sha256sums=('c1df878cf1199ea9c43b2c8e4155d24d860238a2059adbd948390dc07f5922e4'
 'edfb2cbf2aa7e6582b4d43cd402ea58be7990702e5c3ff7afdc518c28ca9'
 'c86a73251eed42fcb129ae9b88a0ee3cf03d8d00a9385519ad536d5af0907663')
 

Modified: josm.changelog
===
--- josm.changelog  2015-05-14 11:43:14 UTC (rev 133408)
+++ josm.changelog  2015-05-14 11:48:24 UTC (rev 133409)
@@ -1,3 +1,6 @@
+2015-05-14 Jaroslav Lichtblau svetlemo...@archlinux.org
+   * josm 8339-1
+
 2015-04-27 Jaroslav Lichtblau svetlemo...@archlinux.org
* josm 8279-1
 


[arch-commits] Commit in josm/repos/community-any (8 files)

2015-05-14 Thread Jaroslav Lichtblau
Date: Thursday, May 14, 2015 @ 13:48:36
  Author: jlichtblau
Revision: 133410

archrelease: copy trunk to community-any

Added:
  josm/repos/community-any/PKGBUILD
(from rev 133409, josm/trunk/PKGBUILD)
  josm/repos/community-any/josm.changelog
(from rev 133409, josm/trunk/josm.changelog)
  josm/repos/community-any/josm.conf.d
(from rev 133409, josm/trunk/josm.conf.d)
  josm/repos/community-any/josm.desktop
(from rev 133409, josm/trunk/josm.desktop)
Deleted:
  josm/repos/community-any/PKGBUILD
  josm/repos/community-any/josm.changelog
  josm/repos/community-any/josm.conf.d
  josm/repos/community-any/josm.desktop

+
 PKGBUILD   |   92 
 josm.changelog |  306 ---
 josm.conf.d|8 -
 josm.desktop   |   16 +-
 4 files changed, 214 insertions(+), 208 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-05-14 11:48:24 UTC (rev 133409)
+++ PKGBUILD2015-05-14 11:48:36 UTC (rev 133410)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau svetlemo...@archlinux.org
-# Contributor: Michele Schäuble mschaeu...@swissonline.ch
-
-pkgname=josm
-pkgver=8279
-pkgrel=1
-pkgdesc=An editor for OpenStreetMap written in Java
-arch=('any')
-url=http://josm.openstreetmap.de/;
-license=('GPL')
-depends=('java-runtime' 'libxtst' 'ttf-font')
-changelog=$pkgname.changelog
-backup=('etc/conf.d/josm')
-source=(http://josm.openstreetmap.de/$pkgname-tested.jar
-$pkgname.desktop
-$pkgname.conf.d)
-sha256sums=('ce71a1a296b0967b8c486c2fc5bf5c24bba5fbe9fa429e7d4f8558788d02cc6c'
-'edfb2cbf2aa7e6582b4d43cd402ea58be7990702e5c3ff7afdc518c28ca9'
-'c86a73251eed42fcb129ae9b88a0ee3cf03d8d00a9385519ad536d5af0907663')
-
-package() {
-  cd ${srcdir}
-
-  install -Dm644 $pkgname-tested.jar 
${pkgdir}/usr/share/java/$pkgname/$pkgname.jar
-
-#.desktop and icon file
-  install -Dm644 ${srcdir}/${pkgname}.desktop 
${pkgdir}/usr/share/applications/$pkgname.desktop
-  install -Dm644 images/logo.png ${pkgdir}/usr/share/pixmaps/$pkgname.png
-
-#executable file
-  install -d ${pkgdir}/usr/bin
-  cat EOF ${pkgdir}/usr/bin/$pkgname 
-#!/bin/sh
-# source application-specific settings
-while true; do
-JOSM_ARGS=
-[ -f /etc/conf.d/josm ]  . /etc/conf.d/josm
-CLASSPATH=/usr/share/java/josm/josm.jar
-java ${JOSM_ARGS} -cp ${CLASSPATH} -Djosm.restart=true 
org.openstreetmap.josm.gui.MainApplication $@
-[ $? -eq 9 ] || break
-done
-EOF
-  chmod 755 ${pkgdir}/usr/bin/$pkgname
-  install -Dm644 ${srcdir}/$pkgname.conf.d ${pkgdir}/etc/conf.d/$pkgname
-}

Copied: josm/repos/community-any/PKGBUILD (from rev 133409, josm/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-05-14 11:48:36 UTC (rev 133410)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau svetlemo...@archlinux.org
+# Contributor: Michele Schäuble mschaeu...@swissonline.ch
+
+pkgname=josm
+pkgver=8339
+pkgrel=1
+pkgdesc=An editor for OpenStreetMap written in Java
+arch=('any')
+url=http://josm.openstreetmap.de/;
+license=('GPL')
+depends=('java-runtime' 'libxtst' 'ttf-font')
+changelog=$pkgname.changelog
+backup=('etc/conf.d/josm')
+source=(http://josm.openstreetmap.de/$pkgname-tested.jar
+$pkgname.desktop
+$pkgname.conf.d)
+sha256sums=('c1df878cf1199ea9c43b2c8e4155d24d860238a2059adbd948390dc07f5922e4'
+'edfb2cbf2aa7e6582b4d43cd402ea58be7990702e5c3ff7afdc518c28ca9'
+'c86a73251eed42fcb129ae9b88a0ee3cf03d8d00a9385519ad536d5af0907663')
+
+package() {
+  cd ${srcdir}
+
+  install -Dm644 $pkgname-tested.jar 
${pkgdir}/usr/share/java/$pkgname/$pkgname.jar
+
+#.desktop and icon file
+  install -Dm644 ${srcdir}/${pkgname}.desktop 
${pkgdir}/usr/share/applications/$pkgname.desktop
+  install -Dm644 images/logo.png ${pkgdir}/usr/share/pixmaps/$pkgname.png
+
+#executable file
+  install -d ${pkgdir}/usr/bin
+  cat EOF ${pkgdir}/usr/bin/$pkgname 
+#!/bin/sh
+# source application-specific settings
+while true; do
+JOSM_ARGS=
+[ -f /etc/conf.d/josm ]  . /etc/conf.d/josm
+CLASSPATH=/usr/share/java/josm/josm.jar
+java ${JOSM_ARGS} -cp ${CLASSPATH} -Djosm.restart=true 
org.openstreetmap.josm.gui.MainApplication $@
+[ $? -eq 9 ] || break
+done
+EOF
+  chmod 755 ${pkgdir}/usr/bin/$pkgname
+  install -Dm644 ${srcdir}/$pkgname.conf.d ${pkgdir}/etc/conf.d/$pkgname
+}

Deleted: josm.changelog
===
--- josm.changelog  2015-05-14 11:48:24 UTC (rev 133409)
+++ josm.changelog  2015-05-14 11:48:36 UTC (rev 133410)
@@ -1,150 +0,0 @@
-2015-04-18 Jaroslav Lichtblau svetlemo...@archlinux.org
-   * josm 8159-1
-
-2015-03-03 Jaroslav Lichtblau svetlemo...@archlinux.org
-   * josm 8109-1
-
-2015-02-04 Jaroslav Lichtblau svetlemo...@archlinux.org
-   

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

2015-05-14 Thread Felix Yan
Date: Friday, May 15, 2015 @ 07:17:34
  Author: fyan
Revision: 133457

upgpkg: nodejs 0.12.3-1

Modified:
  nodejs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-14 19:12:14 UTC (rev 133456)
+++ PKGBUILD2015-05-15 05:17:34 UTC (rev 133457)
@@ -9,8 +9,8 @@
 # Contributor: TIanyi Cui tianyi...@gmail.com
 
 pkgname=nodejs
-pkgver=0.12.2
-pkgrel=4
+pkgver=0.12.3
+pkgrel=1
 pkgdesc='Evented I/O for V8 javascript'
 arch=('i686' 'x86_64')
 url='http://nodejs.org/'
@@ -20,7 +20,7 @@
 optdepends=('npm: nodejs package manager')
 install=nodejs.install
 source=(http://nodejs.org/dist/v$pkgver/node-v$pkgver.tar.gz;)
-sha256sums=('ac7e78ade93e633e7ed628532bb8e650caba0c9c33af33581957f3382e2a772d')
+sha256sums=('e65d83c6f2c874e28f65c5e192ac0acd2bbb52bfcf9d77e33442d6765a3eb9da')
 
 prepare() {
   cd node-v$pkgver


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

2015-05-14 Thread Felix Yan
Date: Friday, May 15, 2015 @ 07:18:11
  Author: fyan
Revision: 133458

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

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

-+
 /PKGBUILD   |  146 ++
 /nodejs.install |   14 +++
 community-i686/PKGBUILD |   73 ---
 community-i686/nodejs.install   |7 -
 community-x86_64/PKGBUILD   |   73 ---
 community-x86_64/nodejs.install |7 -
 6 files changed, 160 insertions(+), 160 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-05-15 05:17:34 UTC (rev 133457)
+++ community-i686/PKGBUILD 2015-05-15 05:18:11 UTC (rev 133458)
@@ -1,73 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor  Bartłomiej Piotrowski bpiotrow...@archlinux.org
-# Contributor: Thomas Dziedzic  gostrc at gmail 
-# Contributor: James Campos james.r.cam...@gmail.com
-# Contributor: BlackEagle  ike DOT devolder AT gmail DOT com 
-# Contributor: Dongsheng Cai dongsheng at moodle dot com
-# Contributor: Masutu Subric masutu.arch at googlemail dot com
-# Contributor: TIanyi Cui tianyi...@gmail.com
-
-pkgname=nodejs
-pkgver=0.12.2
-pkgrel=4
-pkgdesc='Evented I/O for V8 javascript'
-arch=('i686' 'x86_64')
-url='http://nodejs.org/'
-license=('MIT')
-depends=('openssl' 'zlib' 'icu') # 'libuv' 'v8' 'c-ares')
-makedepends=('python2' 'procps-ng')
-optdepends=('npm: nodejs package manager')
-install=nodejs.install
-source=(http://nodejs.org/dist/v$pkgver/node-v$pkgver.tar.gz;)
-sha256sums=('ac7e78ade93e633e7ed628532bb8e650caba0c9c33af33581957f3382e2a772d')
-
-prepare() {
-  cd node-v$pkgver
-
-  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 \
---with-intl=system-icu \
---without-npm \
---shared-openssl \
---shared-zlib
-# --shared-libuv
-# --shared-v8
-# --shared-cares
-
-  make
-}
-
-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
-}
-
-# vim:set ts=2 sw=2 et:

Copied: nodejs/repos/community-i686/PKGBUILD (from rev 133457, 
nodejs/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-05-15 05:18:11 UTC (rev 133458)
@@ -0,0 +1,73 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor  Bartłomiej Piotrowski bpiotrow...@archlinux.org
+# Contributor: Thomas Dziedzic  gostrc at gmail 
+# Contributor: James Campos james.r.cam...@gmail.com
+# Contributor: BlackEagle  ike DOT devolder AT gmail DOT com 
+# Contributor: Dongsheng Cai dongsheng at moodle dot com
+# Contributor: Masutu Subric masutu.arch at googlemail dot com
+# Contributor: TIanyi Cui tianyi...@gmail.com
+
+pkgname=nodejs
+pkgver=0.12.3
+pkgrel=1
+pkgdesc='Evented I/O for V8 javascript'
+arch=('i686' 'x86_64')
+url='http://nodejs.org/'
+license=('MIT')
+depends=('openssl' 'zlib' 'icu') # 'libuv' 'v8' 'c-ares')
+makedepends=('python2' 'procps-ng')
+optdepends=('npm: nodejs package manager')
+install=nodejs.install
+source=(http://nodejs.org/dist/v$pkgver/node-v$pkgver.tar.gz;)
+sha256sums=('e65d83c6f2c874e28f65c5e192ac0acd2bbb52bfcf9d77e33442d6765a3eb9da')
+
+prepare() {
+  cd node-v$pkgver
+
+  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 \
+--with-intl=system-icu \
+--without-npm \
+

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

2015-05-14 Thread Allan McRae
Date: Thursday, May 14, 2015 @ 08:23:03
  Author: allan
Revision: 239323

upgpkg: qemu 2.3.0-2

fix VENOM

Added:
  qemu/trunk/CVE-2015-3456.patch
Modified:
  qemu/trunk/PKGBUILD

-+
 CVE-2015-3456.patch |   84 ++
 PKGBUILD|9 -
 2 files changed, 92 insertions(+), 1 deletion(-)

Added: CVE-2015-3456.patch
===
--- CVE-2015-3456.patch (rev 0)
+++ CVE-2015-3456.patch 2015-05-14 06:23:03 UTC (rev 239323)
@@ -0,0 +1,84 @@
+From e907746266721f305d67bc0718795fedee2e824c Mon Sep 17 00:00:00 2001
+From: Petr Matousek pmato...@redhat.com
+Date: Wed, 6 May 2015 09:48:59 +0200
+Subject: [PATCH] fdc: force the fifo access to be in bounds of the allocated 
buffer
+
+During processing of certain commands such as FD_CMD_READ_ID and
+FD_CMD_DRIVE_SPECIFICATION_COMMAND the fifo memory access could
+get out of bounds leading to memory corruption with values coming
+from the guest.
+
+Fix this by making sure that the index is always bounded by the
+allocated memory.
+
+This is CVE-2015-3456.
+
+Signed-off-by: Petr Matousek pmato...@redhat.com
+Reviewed-by: John Snow js...@redhat.com
+Signed-off-by: John Snow js...@redhat.com
+---
+ hw/block/fdc.c |   17 +++--
+ 1 files changed, 11 insertions(+), 6 deletions(-)
+
+diff --git a/hw/block/fdc.c b/hw/block/fdc.c
+index f72a392..d8a8edd 100644
+--- a/hw/block/fdc.c
 b/hw/block/fdc.c
+@@ -1497,7 +1497,7 @@ static uint32_t fdctrl_read_data(FDCtrl *fdctrl)
+ {
+ FDrive *cur_drv;
+ uint32_t retval = 0;
+-int pos;
++uint32_t pos;
+ 
+ cur_drv = get_cur_drv(fdctrl);
+ fdctrl-dsr = ~FD_DSR_PWRDOWN;
+@@ -1506,8 +1506,8 @@ static uint32_t fdctrl_read_data(FDCtrl *fdctrl)
+ return 0;
+ }
+ pos = fdctrl-data_pos;
++pos %= FD_SECTOR_LEN;
+ if (fdctrl-msr  FD_MSR_NONDMA) {
+-pos %= FD_SECTOR_LEN;
+ if (pos == 0) {
+ if (fdctrl-data_pos != 0)
+ if (!fdctrl_seek_to_next_sect(fdctrl, cur_drv)) {
+@@ -1852,10 +1852,13 @@ static void fdctrl_handle_option(FDCtrl *fdctrl, int 
direction)
+ static void fdctrl_handle_drive_specification_command(FDCtrl *fdctrl, int 
direction)
+ {
+ FDrive *cur_drv = get_cur_drv(fdctrl);
++uint32_t pos;
+ 
+-if (fdctrl-fifo[fdctrl-data_pos - 1]  0x80) {
++pos = fdctrl-data_pos - 1;
++pos %= FD_SECTOR_LEN;
++if (fdctrl-fifo[pos]  0x80) {
+ /* Command parameters done */
+-if (fdctrl-fifo[fdctrl-data_pos - 1]  0x40) {
++if (fdctrl-fifo[pos]  0x40) {
+ fdctrl-fifo[0] = fdctrl-fifo[1];
+ fdctrl-fifo[2] = 0;
+ fdctrl-fifo[3] = 0;
+@@ -1955,7 +1958,7 @@ static uint8_t command_to_handler[256];
+ static void fdctrl_write_data(FDCtrl *fdctrl, uint32_t value)
+ {
+ FDrive *cur_drv;
+-int pos;
++uint32_t pos;
+ 
+ /* Reset mode */
+ if (!(fdctrl-dor  FD_DOR_nRESET)) {
+@@ -2004,7 +2007,9 @@ static void fdctrl_write_data(FDCtrl *fdctrl, uint32_t 
value)
+ }
+ 
+ FLOPPY_DPRINTF(%s: %02x\n, __func__, value);
+-fdctrl-fifo[fdctrl-data_pos++] = value;
++pos = fdctrl-data_pos++;
++pos %= FD_SECTOR_LEN;
++fdctrl-fifo[pos] = value;
+ if (fdctrl-data_pos == fdctrl-data_len) {
+ /* We now have all parameters
+  * and will be able to treat the command
+-- 
+1.7.0.4
+

Modified: PKGBUILD
===
--- PKGBUILD2015-05-14 04:02:07 UTC (rev 239322)
+++ PKGBUILD2015-05-14 06:23:03 UTC (rev 239323)
@@ -2,7 +2,7 @@
 # Maintainer: Tobias Powalowski tp...@archlinux.org
 pkgname=('qemu' 'libcacard')
 pkgver=2.3.0
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 license=('GPL2' 'LGPL2.1')
 url=http://wiki.qemu.org/Index.html;
@@ -13,8 +13,14 @@
  'usbredir')
 options=(!strip)
 source=(http://wiki.qemu.org/download/${pkgname}-${pkgver}.tar.bz2
+CVE-2015-3456.patch
 65-kvm.rules)
 
+prepare() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  patch -p1 -i ${srcdir}/CVE-2015-3456.patch
+}
+
 build ()
 {
   cd ${srcdir}/${pkgname}-${pkgver}
@@ -90,4 +96,5 @@
  cp -a ${srcdir}/qemu-${pkgver}/.libs/vscclient ${pkgdir}/usr/bin/
 }
 md5sums=('2fab3ea4460de9b57192e5b8b311f221'
+ '5e8a68940c4e0267e795a6ddd144e00e'
  '33ab286a20242dda7743a900f369d68a')


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

2015-05-14 Thread Allan McRae
Date: Thursday, May 14, 2015 @ 08:25:03
  Author: allan
Revision: 239324

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

Added:
  qemu/repos/testing-i686/65-kvm.rules
(from rev 239323, qemu/trunk/65-kvm.rules)
  qemu/repos/testing-i686/CVE-2015-3456.patch
(from rev 239323, qemu/trunk/CVE-2015-3456.patch)
  qemu/repos/testing-i686/PKGBUILD
(from rev 239323, qemu/trunk/PKGBUILD)
  qemu/repos/testing-i686/qemu.install
(from rev 239323, qemu/trunk/qemu.install)
  qemu/repos/testing-x86_64/65-kvm.rules
(from rev 239323, qemu/trunk/65-kvm.rules)
  qemu/repos/testing-x86_64/CVE-2015-3456.patch
(from rev 239323, qemu/trunk/CVE-2015-3456.patch)
  qemu/repos/testing-x86_64/PKGBUILD
(from rev 239323, qemu/trunk/PKGBUILD)
  qemu/repos/testing-x86_64/qemu.install
(from rev 239323, qemu/trunk/qemu.install)
Deleted:
  qemu/repos/testing-i686/65-kvm.rules
  qemu/repos/testing-i686/PKGBUILD
  qemu/repos/testing-i686/qemu.install
  qemu/repos/testing-x86_64/65-kvm.rules
  qemu/repos/testing-x86_64/PKGBUILD
  qemu/repos/testing-x86_64/qemu.install

+
 /65-kvm.rules  |4 
 /PKGBUILD  |  200 +++
 /qemu.install  |   38 ++
 testing-i686/65-kvm.rules  |2 
 testing-i686/CVE-2015-3456.patch   |   84 ++
 testing-i686/PKGBUILD  |   93 
 testing-i686/qemu.install  |   19 ---
 testing-x86_64/65-kvm.rules|2 
 testing-x86_64/CVE-2015-3456.patch |   84 ++
 testing-x86_64/PKGBUILD|   93 
 testing-x86_64/qemu.install|   19 ---
 11 files changed, 410 insertions(+), 228 deletions(-)

Deleted: testing-i686/65-kvm.rules
===
--- testing-i686/65-kvm.rules   2015-05-14 06:23:03 UTC (rev 239323)
+++ testing-i686/65-kvm.rules   2015-05-14 06:25:03 UTC (rev 239324)
@@ -1,2 +0,0 @@
-KERNEL==kvm, GROUP=kvm, MODE=0660
-KERNEL==vhost-net, GROUP=kvm, MODE=0660, TAG+=uaccess, 
OPTIONS+=static_node=vhost-net

Copied: qemu/repos/testing-i686/65-kvm.rules (from rev 239323, 
qemu/trunk/65-kvm.rules)
===
--- testing-i686/65-kvm.rules   (rev 0)
+++ testing-i686/65-kvm.rules   2015-05-14 06:25:03 UTC (rev 239324)
@@ -0,0 +1,2 @@
+KERNEL==kvm, GROUP=kvm, MODE=0660
+KERNEL==vhost-net, GROUP=kvm, MODE=0660, TAG+=uaccess, 
OPTIONS+=static_node=vhost-net

Copied: qemu/repos/testing-i686/CVE-2015-3456.patch (from rev 239323, 
qemu/trunk/CVE-2015-3456.patch)
===
--- testing-i686/CVE-2015-3456.patch(rev 0)
+++ testing-i686/CVE-2015-3456.patch2015-05-14 06:25:03 UTC (rev 239324)
@@ -0,0 +1,84 @@
+From e907746266721f305d67bc0718795fedee2e824c Mon Sep 17 00:00:00 2001
+From: Petr Matousek pmato...@redhat.com
+Date: Wed, 6 May 2015 09:48:59 +0200
+Subject: [PATCH] fdc: force the fifo access to be in bounds of the allocated 
buffer
+
+During processing of certain commands such as FD_CMD_READ_ID and
+FD_CMD_DRIVE_SPECIFICATION_COMMAND the fifo memory access could
+get out of bounds leading to memory corruption with values coming
+from the guest.
+
+Fix this by making sure that the index is always bounded by the
+allocated memory.
+
+This is CVE-2015-3456.
+
+Signed-off-by: Petr Matousek pmato...@redhat.com
+Reviewed-by: John Snow js...@redhat.com
+Signed-off-by: John Snow js...@redhat.com
+---
+ hw/block/fdc.c |   17 +++--
+ 1 files changed, 11 insertions(+), 6 deletions(-)
+
+diff --git a/hw/block/fdc.c b/hw/block/fdc.c
+index f72a392..d8a8edd 100644
+--- a/hw/block/fdc.c
 b/hw/block/fdc.c
+@@ -1497,7 +1497,7 @@ static uint32_t fdctrl_read_data(FDCtrl *fdctrl)
+ {
+ FDrive *cur_drv;
+ uint32_t retval = 0;
+-int pos;
++uint32_t pos;
+ 
+ cur_drv = get_cur_drv(fdctrl);
+ fdctrl-dsr = ~FD_DSR_PWRDOWN;
+@@ -1506,8 +1506,8 @@ static uint32_t fdctrl_read_data(FDCtrl *fdctrl)
+ return 0;
+ }
+ pos = fdctrl-data_pos;
++pos %= FD_SECTOR_LEN;
+ if (fdctrl-msr  FD_MSR_NONDMA) {
+-pos %= FD_SECTOR_LEN;
+ if (pos == 0) {
+ if (fdctrl-data_pos != 0)
+ if (!fdctrl_seek_to_next_sect(fdctrl, cur_drv)) {
+@@ -1852,10 +1852,13 @@ static void fdctrl_handle_option(FDCtrl *fdctrl, int 
direction)
+ static void fdctrl_handle_drive_specification_command(FDCtrl *fdctrl, int 
direction)
+ {
+ FDrive *cur_drv = get_cur_drv(fdctrl);
++uint32_t pos;
+ 
+-if (fdctrl-fifo[fdctrl-data_pos - 1]  0x80) {
++pos = fdctrl-data_pos - 1;
++pos %= FD_SECTOR_LEN;
++if (fdctrl-fifo[pos]  0x80) {
+ /* Command parameters done */
+-if (fdctrl-fifo[fdctrl-data_pos - 1]  0x40) {
++if (fdctrl-fifo[pos]  0x40) {
+ 

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

2015-05-14 Thread Ronald van Haren
Date: Thursday, May 14, 2015 @ 08:56:29
  Author: ronald
Revision: 239327

add hugin to optdepends

Modified:
  digikam/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-14 06:43:26 UTC (rev 239326)
+++ PKGBUILD2015-05-14 06:56:29 UTC (rev 239327)
@@ -15,6 +15,7 @@
  'kdeedu-marble' 'opencv' 'boost' 'libgpod' 'qjson' 'hugin' 
'libgphoto2'
  'cmake' 'automoc4' 'doxygen' 'lensfun' 'qt-gstreamer' 
'imagemagick' 'eigen' 
 'libbaloo4' 'libpgf' 'libusb-compat' 'libkface' 'libkgeomap')
+optdepends=('hugin: panorama tools')
 
source=(http://download.kde.org/stable/${pkgname}/${pkgname}-${pkgver}.tar.bz2;)
 sha1sums=('d44ab133f152b84599507dd6a02aef4b22033dd4')
 


[arch-commits] Commit in dvd+rw-tools/repos (14 files)

2015-05-14 Thread Ronald van Haren
Date: Thursday, May 14, 2015 @ 09:09:47
  Author: ronald
Revision: 239329

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

Added:
  dvd+rw-tools/repos/testing-i686/
  dvd+rw-tools/repos/testing-i686/PKGBUILD
(from rev 239328, dvd+rw-tools/trunk/PKGBUILD)
  dvd+rw-tools/repos/testing-i686/dvd+rw-tools-7.0-dvddl.patch
(from rev 239328, dvd+rw-tools/trunk/dvd+rw-tools-7.0-dvddl.patch)
  dvd+rw-tools/repos/testing-i686/dvd+rw-tools-7.0-glibc2.6.90.patch
(from rev 239328, dvd+rw-tools/trunk/dvd+rw-tools-7.0-glibc2.6.90.patch)
  dvd+rw-tools/repos/testing-i686/dvd+rw-tools-7.0-wctomb.patch
(from rev 239328, dvd+rw-tools/trunk/dvd+rw-tools-7.0-wctomb.patch)
  dvd+rw-tools/repos/testing-i686/dvd+rw-tools-7.0-wexit.patch
(from rev 239328, dvd+rw-tools/trunk/dvd+rw-tools-7.0-wexit.patch)
  dvd+rw-tools/repos/testing-i686/dvd+rw-tools-7.1-layerbreaksetup.patch
(from rev 239328, dvd+rw-tools/trunk/dvd+rw-tools-7.1-layerbreaksetup.patch)
  dvd+rw-tools/repos/testing-x86_64/
  dvd+rw-tools/repos/testing-x86_64/PKGBUILD
(from rev 239328, dvd+rw-tools/trunk/PKGBUILD)
  dvd+rw-tools/repos/testing-x86_64/dvd+rw-tools-7.0-dvddl.patch
(from rev 239328, dvd+rw-tools/trunk/dvd+rw-tools-7.0-dvddl.patch)
  dvd+rw-tools/repos/testing-x86_64/dvd+rw-tools-7.0-glibc2.6.90.patch
(from rev 239328, dvd+rw-tools/trunk/dvd+rw-tools-7.0-glibc2.6.90.patch)
  dvd+rw-tools/repos/testing-x86_64/dvd+rw-tools-7.0-wctomb.patch
(from rev 239328, dvd+rw-tools/trunk/dvd+rw-tools-7.0-wctomb.patch)
  dvd+rw-tools/repos/testing-x86_64/dvd+rw-tools-7.0-wexit.patch
(from rev 239328, dvd+rw-tools/trunk/dvd+rw-tools-7.0-wexit.patch)
  dvd+rw-tools/repos/testing-x86_64/dvd+rw-tools-7.1-layerbreaksetup.patch
(from rev 239328, dvd+rw-tools/trunk/dvd+rw-tools-7.1-layerbreaksetup.patch)

---+
 testing-i686/PKGBUILD |   45 +++
 testing-i686/dvd+rw-tools-7.0-dvddl.patch |   13 ++
 testing-i686/dvd+rw-tools-7.0-glibc2.6.90.patch   |   11 +
 testing-i686/dvd+rw-tools-7.0-wctomb.patch|   11 +
 testing-i686/dvd+rw-tools-7.0-wexit.patch |   11 +
 testing-i686/dvd+rw-tools-7.1-layerbreaksetup.patch   |   93 
 testing-x86_64/PKGBUILD   |   45 +++
 testing-x86_64/dvd+rw-tools-7.0-dvddl.patch   |   13 ++
 testing-x86_64/dvd+rw-tools-7.0-glibc2.6.90.patch |   11 +
 testing-x86_64/dvd+rw-tools-7.0-wctomb.patch  |   11 +
 testing-x86_64/dvd+rw-tools-7.0-wexit.patch   |   11 +
 testing-x86_64/dvd+rw-tools-7.1-layerbreaksetup.patch |   93 
 12 files changed, 368 insertions(+)

Copied: dvd+rw-tools/repos/testing-i686/PKGBUILD (from rev 239328, 
dvd+rw-tools/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-05-14 07:09:47 UTC (rev 239329)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: damir da...@archlinux.org
+
+pkgname=dvd+rw-tools
+pkgver=7.1
+pkgrel=6
+pkgdesc=dvd burning tools
+arch=('i686' 'x86_64')
+license=('GPL')
+url=http://fy.chalmers.se/~appro/linux/DVD+RW;
+depends=('cdrkit' 'gcc-libs')
+source=(http://fy.chalmers.se/~appro/linux/DVD+RW/tools/${pkgname}-${pkgver}.tar.gz;
+'dvd+rw-tools-7.0-dvddl.patch'
+'dvd+rw-tools-7.0-glibc2.6.90.patch'
+'dvd+rw-tools-7.0-wctomb.patch'
+'dvd+rw-tools-7.0-wexit.patch'
+   'dvd+rw-tools-7.1-layerbreaksetup.patch')
+sha1sums=('6400e013934ff589b4b224eced03fd9f42ed719b'
+  'd2c949bc15420f39a9055757b1f5bb5543c46b6c'
+  '6b2f496e8d95738501dcad5fb63a4faa32882202'
+  '08ad4c2309ae1602b855cf1a2bbdbe0dab5037a2'
+  'f50dc64f5d020f0dd64ffb38c18cfa3fbf03f8a2'
+  'dd5224fdd8e94ec9483f651b3579cf9c18381129')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  # patches from Gentoo/Fedora
+  # see https://bugs.gentoo.org/257360, 
https://bugzilla.redhat.com/show_bug.cgi?id=426068
+  # and https://bugzilla.redhat.com/show_bug.cgi?id=243036
+  patch -p0 -i ${srcdir}/dvd+rw-tools-7.0-dvddl.patch
+  patch -p1 -i ${srcdir}/dvd+rw-tools-7.0-glibc2.6.90.patch
+  patch -p0 -i ${srcdir}/dvd+rw-tools-7.0-wctomb.patch
+  patch -p1 -i ${srcdir}/dvd+rw-tools-7.0-wexit.patch
+  patch -p1 -i ${srcdir}/dvd+rw-tools-7.1-layerbreaksetup.patch
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  install -m755 -d ${pkgdir}/usr/bin
+  install -m755 -d ${pkgdir}/usr/share/man/man1
+
+  install -m755 growisofs dvd+rw-booktype dvd+rw-format dvd+rw-mediainfo 
dvd-ram-control ${pkgdir}/usr/bin/
+  install -m644 growisofs.1 ${pkgdir}/usr/share/man/man1/growisofs.1
+}

Copied: dvd+rw-tools/repos/testing-i686/dvd+rw-tools-7.0-dvddl.patch (from rev 
239328, dvd+rw-tools/trunk/dvd+rw-tools-7.0-dvddl.patch)
===
--- 

[arch-commits] Commit in dvd+rw-tools/trunk (2 files)

2015-05-14 Thread Ronald van Haren
Date: Thursday, May 14, 2015 @ 09:09:28
  Author: ronald
Revision: 239328

upgpkg: dvd+rw-tools 7.1-6

FS#37735 unable to manually set layer break

Added:
  dvd+rw-tools/trunk/dvd+rw-tools-7.1-layerbreaksetup.patch
Modified:
  dvd+rw-tools/trunk/PKGBUILD

+
 PKGBUILD   |   18 +++---
 dvd+rw-tools-7.1-layerbreaksetup.patch |   93 +++
 2 files changed, 103 insertions(+), 8 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-05-14 06:56:29 UTC (rev 239327)
+++ PKGBUILD2015-05-14 07:09:28 UTC (rev 239328)
@@ -3,7 +3,7 @@
 
 pkgname=dvd+rw-tools
 pkgver=7.1
-pkgrel=5
+pkgrel=6
 pkgdesc=dvd burning tools
 arch=('i686' 'x86_64')
 license=('GPL')
@@ -13,12 +13,14 @@
 'dvd+rw-tools-7.0-dvddl.patch'
 'dvd+rw-tools-7.0-glibc2.6.90.patch'
 'dvd+rw-tools-7.0-wctomb.patch'
-'dvd+rw-tools-7.0-wexit.patch')
-md5sums=('8acb3c885c87f6838704a0025e435871'
- '65d30aa98ff314f256d0a1afb9e3edf6'
- '1be5401035ca850edb7e522f22aead4b'
- '3ba1af063b30f942e1cd2004044702d3'
- 'b2c66b6c6243b207fbe4f6ae34fa6cba')
+'dvd+rw-tools-7.0-wexit.patch'
+   'dvd+rw-tools-7.1-layerbreaksetup.patch')
+sha1sums=('6400e013934ff589b4b224eced03fd9f42ed719b'
+  'd2c949bc15420f39a9055757b1f5bb5543c46b6c'
+  '6b2f496e8d95738501dcad5fb63a4faa32882202'
+  '08ad4c2309ae1602b855cf1a2bbdbe0dab5037a2'
+  'f50dc64f5d020f0dd64ffb38c18cfa3fbf03f8a2'
+  'dd5224fdd8e94ec9483f651b3579cf9c18381129')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
@@ -29,7 +31,7 @@
   patch -p1 -i ${srcdir}/dvd+rw-tools-7.0-glibc2.6.90.patch
   patch -p0 -i ${srcdir}/dvd+rw-tools-7.0-wctomb.patch
   patch -p1 -i ${srcdir}/dvd+rw-tools-7.0-wexit.patch
-
+  patch -p1 -i ${srcdir}/dvd+rw-tools-7.1-layerbreaksetup.patch
   make
 }
 

Added: dvd+rw-tools-7.1-layerbreaksetup.patch
===
--- dvd+rw-tools-7.1-layerbreaksetup.patch  (rev 0)
+++ dvd+rw-tools-7.1-layerbreaksetup.patch  2015-05-14 07:09:28 UTC (rev 
239328)
@@ -0,0 +1,93 @@
+diff -ur dvd+rw-tools-7.1-orig/growisofs.c dvd+rw-tools-7.1/growisofs.c
+--- dvd+rw-tools-7.1-orig/growisofs.c  2008-03-04 10:15:03.0 +0100
 dvd+rw-tools-7.1/growisofs.c   2009-09-06 22:39:33.0 +0200
+@@ -535,7 +535,7 @@
+  */
+ intget_mmc_profile(void *fd);
+ intplusminus_r_C_parm (void *fd,char *C_parm);
+-pwrite64_t poor_mans_setup(void *fd,off64_t leadout);
++pwrite64_t poor_mans_setup(void *fd,off64_t leadout,unsigned int lbreak);
+ char  *plusminus_locale   ();
+ int__1x   ();
+ /*
+@@ -2447,7 +2447,7 @@
+   goto out;
+   }
+   if (!progress.final) progress.final = tracksize;
+-  tracksize = layer_break*CD_BLOCK*2;
++  //tracksize = layer_break*CD_BLOCK*2;
+   }
+   }
+   else if (capacity  outoff)
+@@ -2648,7 +2648,7 @@
+* further details on poor_mans_setup
+*/
+   pwrite64_method = poor_mans_setup (ioctl_handle,
+- outoff+tracksize);
++ outoff+tracksize, (unsigned 
int)layer_break);
+ }
+ 
+ if (!progress.final)
+diff -ur dvd+rw-tools-7.1-orig/growisofs_mmc.cpp 
dvd+rw-tools-7.1/growisofs_mmc.cpp
+--- dvd+rw-tools-7.1-orig/growisofs_mmc.cpp2008-03-04 18:47:49.0 
+0100
 dvd+rw-tools-7.1/growisofs_mmc.cpp 2009-09-06 20:52:46.0 +0200
+@@ -1612,7 +1612,7 @@
+   return 0;
+ }
+ 
+-static void plus_r_dl_split (Scsi_Command cmd,off64_t size)
++static void plus_r_dl_split (Scsi_Command cmd,off64_t size,unsigned int 
lbreak)
+ { int   err;
+   unsigned int  blocks,split;
+   unsigned char dvd_20[4+8];
+@@ -1644,10 +1644,17 @@
+   use single layer media for this recording\n),
+   exit (FATAL_START(EMEDIUMTYPE));
+ 
+-blocks /= 16;
+-blocks += 1;
+-blocks /= 2;
+-blocks *= 16;
++if (lbreak)
++  {
++  blocks=lbreak;
++  }
++else
++  {
++  blocks /= 16;
++  blocks += 1;
++  blocks /= 2;
++  blocks *= 16;
++  }
+ 
+ fprintf (stderr,%s: splitting layers at %u blocks\n,
+   ioctl_device,blocks);
+@@ -2010,7 +2017,7 @@
+ typedef ssize_t (*pwrite64_t)(int,const void *,size_t,off64_t);
+ 
+ extern C
+-pwrite64_t poor_mans_setup (void *fd,off64_t leadout)
++pwrite64_t poor_mans_setup (void *fd,off64_t leadout,unsigned int lbreak)
+ { Scsi_Command cmd(ioctl_handle=fd);
+   int err,profile=mmc_profile0x;
+ 
+@@ -2059,7 +2066,7 @@
+   case 0x2B:  // DVD+R Double Layer
+   plusminus_pages_setup(cmd,profile);
+ 

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

2015-05-14 Thread Felix Yan
Date: Thursday, May 14, 2015 @ 09:32:11
  Author: fyan
Revision: 239330

upgpkg: qt5 5.4.1-8

- add patches for CVE-2015-0295, CVE-2015-1858, CVE-2015-1859, CVE-2015-1860
- add patch to fix keypad shortcuts (FS#44676)

Added:
  qt5/trunk/CVE-2015-0295.patch
  qt5/trunk/CVE-2015-1858_1859.patch
  qt5/trunk/CVE-2015-1860.patch
  qt5/trunk/keypad-shortcuts.patch
Modified:
  qt5/trunk/PKGBUILD

--+
 CVE-2015-0295.patch  |   44 +
 CVE-2015-1858_1859.patch |   62 +
 CVE-2015-1860.patch  |   30 ++
 PKGBUILD |   21 --
 keypad-shortcuts.patch   |   94 +
 5 files changed, 248 insertions(+), 3 deletions(-)

Added: CVE-2015-0295.patch
===
--- CVE-2015-0295.patch (rev 0)
+++ CVE-2015-0295.patch 2015-05-14 07:32:11 UTC (rev 239330)
@@ -0,0 +1,44 @@
+From 661f6bfd032dacc62841037732816a583640e187 Mon Sep 17 00:00:00 2001
+From: Richard J. Moore r...@kde.org
+Date: Sat, 21 Feb 2015 17:43:21 +
+Subject: Fix a division by zero when processing malformed BMP files.
+
+This fixes a division by 0 when processing a maliciously crafted BMP
+file. No impact beyond DoS.
+
+Task-number: QTBUG-44547
+Change-Id: Ifcded2c0aa712e90d23e6b3969af0ec3add53973
+Reviewed-by: Thiago Macieira thiago.macie...@intel.com
+Reviewed-by: Oswald Buddenhagen oswald.buddenha...@theqtcompany.com
+---
+ src/gui/image/qbmphandler.cpp | 8 
+ 1 file changed, 8 insertions(+)
+
+diff --git a/src/gui/image/qbmphandler.cpp b/src/gui/image/qbmphandler.cpp
+index 21c1a2f..df66499 100644
+--- a/src/gui/image/qbmphandler.cpp
 b/src/gui/image/qbmphandler.cpp
+@@ -314,12 +314,20 @@ static bool read_dib_body(QDataStream s, const 
BMP_INFOHDR bi, int offset, int
+ }
+ } else if (comp == BMP_BITFIELDS  (nbits == 16 || nbits == 32)) {
+ red_shift = calc_shift(red_mask);
++if (((red_mask  red_shift) + 1) == 0)
++return false;
+ red_scale = 256 / ((red_mask  red_shift) + 1);
+ green_shift = calc_shift(green_mask);
++if (((green_mask  green_shift) + 1) == 0)
++return false;
+ green_scale = 256 / ((green_mask  green_shift) + 1);
+ blue_shift = calc_shift(blue_mask);
++if (((blue_mask  blue_shift) + 1) == 0)
++return false;
+ blue_scale = 256 / ((blue_mask  blue_shift) + 1);
+ alpha_shift = calc_shift(alpha_mask);
++if (((alpha_mask  alpha_shift) + 1) == 0)
++return false;
+ alpha_scale = 256 / ((alpha_mask  alpha_shift) + 1);
+ } else if (comp == BMP_RGB  (nbits == 24 || nbits == 32)) {
+ blue_mask = 0x00ff;
+-- 
+cgit v0.11.0
+

Added: CVE-2015-1858_1859.patch
===
--- CVE-2015-1858_1859.patch(rev 0)
+++ CVE-2015-1858_1859.patch2015-05-14 07:32:11 UTC (rev 239330)
@@ -0,0 +1,62 @@
+From 51ec7ebfe5f45d1c0a03d992e97053cac66e25fe Mon Sep 17 00:00:00 2001
+From: Eirik Aavitsland eirik.aavitsl...@theqtcompany.com
+Date: Wed, 11 Mar 2015 13:34:01 +0100
+Subject: Fixes crash in bmp and ico image decoding
+
+Fuzzing test revealed that for certain malformed bmp and ico files,
+the handler would segfault.
+
+Change-Id: I19d45145f31e7f808f7f6a1a1610270ea4159cbe
+Reviewed-by: Lars Knoll lars.kn...@digia.com
+---
+ src/gui/image/qbmphandler.cpp| 13 +++--
+ src/plugins/imageformats/ico/qicohandler.cpp |  2 +-
+ 2 files changed, 8 insertions(+), 7 deletions(-)
+
+diff --git a/src/gui/image/qbmphandler.cpp b/src/gui/image/qbmphandler.cpp
+index df66499..8acc593 100644
+--- a/src/gui/image/qbmphandler.cpp
 b/src/gui/image/qbmphandler.cpp
+@@ -484,12 +484,6 @@ static bool read_dib_body(QDataStream s, const 
BMP_INFOHDR bi, int offset, int
+ p = data + (h-y-1)*bpl;
+ break;
+ case 2:// delta (jump)
+-// Protection
+-if ((uint)x = (uint)w)
+-x = w-1;
+-if ((uint)y = (uint)h)
+-y = h-1;
+-
+ {
+ quint8 tmp;
+ d-getChar((char *)tmp);
+@@ -497,6 +491,13 @@ static bool read_dib_body(QDataStream s, const 
BMP_INFOHDR bi, int offset, int
+ d-getChar((char *)tmp);
+ y += tmp;
+ }
++
++// Protection
++if ((uint)x = (uint)w)
++x = w-1;
++if ((uint)y = (uint)h)
++y = h-1;
++
+

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

2015-05-14 Thread Ronald van Haren
Date: Thursday, May 14, 2015 @ 09:32:22
  Author: ronald
Revision: 239331

FS#34145 add optional deps for imagemagick and ghostscript; FS#34065: add 
optional dependency on aspell for spell checking support

Modified:
  texmacs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-14 07:32:11 UTC (rev 239330)
+++ PKGBUILD2015-05-14 07:32:22 UTC (rev 239331)
@@ -13,7 +13,10 @@
  'desktop-file-utils' 'qt4')
 # do not remove texlive-core dependency, as it is needed!
 optdepends=('transfig: convert images using fig2ps'
-'gawk: conversion of some files')
+'gawk: conversion of some files'
+   'ghostscript: rendering ps files'
+'imagemagick: convert images'
+'aspell: spell checking')
 makedepends=('ghostscript')
 
source=(http://www.texmacs.org/Download/ftp/tmftp/source/TeXmacs-${pkgver}-src.tar.gz)
 install=texmacs.install


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

2015-05-14 Thread Evangelos Foutras
Date: Thursday, May 14, 2015 @ 08:43:26
  Author: foutrelis
Revision: 239326

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

Added:
  dialog/repos/testing-i686/
  dialog/repos/testing-i686/PKGBUILD
(from rev 239325, dialog/trunk/PKGBUILD)
  dialog/repos/testing-x86_64/
  dialog/repos/testing-x86_64/PKGBUILD
(from rev 239325, dialog/trunk/PKGBUILD)

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

Copied: dialog/repos/testing-i686/PKGBUILD (from rev 239325, 
dialog/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-05-14 06:43:26 UTC (rev 239326)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Evangelos Foutras evange...@foutrelis.com
+# Contributor: Stéphane Gaudreault steph...@archlinux.org
+# Contributor: Allan McRae al...@archlinux.org
+# Contributor: Andreas Radke andy...@archlinux.org
+
+pkgname=dialog
+pkgver=1.2_20150513
+pkgrel=1
+epoch=1
+pkgdesc=A tool to display dialog boxes from shell scripts
+arch=('i686' 'x86_64')
+url=http://invisible-island.net/dialog/;
+license=('LGPL2.1')
+depends=('sh' 'ncurses')
+source=(ftp://invisible-island.net/$pkgname/$pkgname-${pkgver/_/-}.tgz)
+sha256sums=('a70f957e983235ccbe63f8c5a45cd5ebde547bd57cedd07e35527a236d3cab4c')
+
+build() {
+  cd $srcdir/$pkgname-${pkgver/_/-}
+
+  ./configure \
+--prefix=/usr \
+--mandir=/usr/share/man \
+--with-ncursesw \
+--with-shared \
+--with-versioned-syms \
+--enable-nls
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-${pkgver/_/-}
+  make DESTDIR=$pkgdir install-full
+}
+
+# vim:set ts=2 sw=2 et:

Copied: dialog/repos/testing-x86_64/PKGBUILD (from rev 239325, 
dialog/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2015-05-14 06:43:26 UTC (rev 239326)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Evangelos Foutras evange...@foutrelis.com
+# Contributor: Stéphane Gaudreault steph...@archlinux.org
+# Contributor: Allan McRae al...@archlinux.org
+# Contributor: Andreas Radke andy...@archlinux.org
+
+pkgname=dialog
+pkgver=1.2_20150513
+pkgrel=1
+epoch=1
+pkgdesc=A tool to display dialog boxes from shell scripts
+arch=('i686' 'x86_64')
+url=http://invisible-island.net/dialog/;
+license=('LGPL2.1')
+depends=('sh' 'ncurses')
+source=(ftp://invisible-island.net/$pkgname/$pkgname-${pkgver/_/-}.tgz)
+sha256sums=('a70f957e983235ccbe63f8c5a45cd5ebde547bd57cedd07e35527a236d3cab4c')
+
+build() {
+  cd $srcdir/$pkgname-${pkgver/_/-}
+
+  ./configure \
+--prefix=/usr \
+--mandir=/usr/share/man \
+--with-ncursesw \
+--with-shared \
+--with-versioned-syms \
+--enable-nls
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-${pkgver/_/-}
+  make DESTDIR=$pkgdir install-full
+}
+
+# vim:set ts=2 sw=2 et:


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

2015-05-14 Thread Evangelos Foutras
Date: Thursday, May 14, 2015 @ 08:43:16
  Author: foutrelis
Revision: 239325

upgpkg: dialog 1:1.2_20150513-1

New upstream release.

Modified:
  dialog/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-14 06:25:03 UTC (rev 239324)
+++ PKGBUILD2015-05-14 06:43:16 UTC (rev 239325)
@@ -5,7 +5,7 @@
 # Contributor: Andreas Radke andy...@archlinux.org
 
 pkgname=dialog
-pkgver=1.2_20150225
+pkgver=1.2_20150513
 pkgrel=1
 epoch=1
 pkgdesc=A tool to display dialog boxes from shell scripts
@@ -14,7 +14,7 @@
 license=('LGPL2.1')
 depends=('sh' 'ncurses')
 source=(ftp://invisible-island.net/$pkgname/$pkgname-${pkgver/_/-}.tgz)
-sha256sums=('6844b13a7a1fea568a8d5bb3004e1af90888cd4a5e8c2ded2c38f34fcc7397ff')
+sha256sums=('a70f957e983235ccbe63f8c5a45cd5ebde547bd57cedd07e35527a236d3cab4c')
 
 build() {
   cd $srcdir/$pkgname-${pkgver/_/-}


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

2015-05-14 Thread Felix Yan
Date: Thursday, May 14, 2015 @ 09:34:57
  Author: fyan
Revision: 239332

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

Added:
  
qt5/repos/extra-i686/0001-Require-fPIC-instead-of-just-fPIE-for-reduce-relocat.patch
(from rev 239331, 
qt5/trunk/0001-Require-fPIC-instead-of-just-fPIE-for-reduce-relocat.patch)
  
qt5/repos/extra-i686/0001-Revert-Rotate-images-according-to-Exif-orientation.patch
(from rev 239331, 
qt5/trunk/0001-Revert-Rotate-images-according-to-Exif-orientation.patch)
  qt5/repos/extra-i686/CVE-2015-0295.patch
(from rev 239331, qt5/trunk/CVE-2015-0295.patch)
  qt5/repos/extra-i686/CVE-2015-1858_1859.patch
(from rev 239331, qt5/trunk/CVE-2015-1858_1859.patch)
  qt5/repos/extra-i686/CVE-2015-1860.patch
(from rev 239331, qt5/trunk/CVE-2015-1860.patch)
  qt5/repos/extra-i686/PKGBUILD
(from rev 239331, qt5/trunk/PKGBUILD)
  qt5/repos/extra-i686/assistant.desktop
(from rev 239331, qt5/trunk/assistant.desktop)
  qt5/repos/extra-i686/designer.desktop
(from rev 239331, qt5/trunk/designer.desktop)
  qt5/repos/extra-i686/glib-2.43.patch
(from rev 239331, qt5/trunk/glib-2.43.patch)
  qt5/repos/extra-i686/keypad-shortcuts.patch
(from rev 239331, qt5/trunk/keypad-shortcuts.patch)
  qt5/repos/extra-i686/linguist.desktop
(from rev 239331, qt5/trunk/linguist.desktop)
  qt5/repos/extra-i686/qdbusviewer.desktop
(from rev 239331, qt5/trunk/qdbusviewer.desktop)
  qt5/repos/extra-i686/qlockfile-deadlock.patch
(from rev 239331, qt5/trunk/qlockfile-deadlock.patch)
  qt5/repos/extra-i686/qnam-corruption.patch
(from rev 239331, qt5/trunk/qnam-corruption.patch)
  qt5/repos/extra-i686/qt5-tools.install
(from rev 239331, qt5/trunk/qt5-tools.install)
  
qt5/repos/extra-x86_64/0001-Require-fPIC-instead-of-just-fPIE-for-reduce-relocat.patch
(from rev 239331, 
qt5/trunk/0001-Require-fPIC-instead-of-just-fPIE-for-reduce-relocat.patch)
  
qt5/repos/extra-x86_64/0001-Revert-Rotate-images-according-to-Exif-orientation.patch
(from rev 239331, 
qt5/trunk/0001-Revert-Rotate-images-according-to-Exif-orientation.patch)
  qt5/repos/extra-x86_64/CVE-2015-0295.patch
(from rev 239331, qt5/trunk/CVE-2015-0295.patch)
  qt5/repos/extra-x86_64/CVE-2015-1858_1859.patch
(from rev 239331, qt5/trunk/CVE-2015-1858_1859.patch)
  qt5/repos/extra-x86_64/CVE-2015-1860.patch
(from rev 239331, qt5/trunk/CVE-2015-1860.patch)
  qt5/repos/extra-x86_64/PKGBUILD
(from rev 239331, qt5/trunk/PKGBUILD)
  qt5/repos/extra-x86_64/assistant.desktop
(from rev 239331, qt5/trunk/assistant.desktop)
  qt5/repos/extra-x86_64/designer.desktop
(from rev 239331, qt5/trunk/designer.desktop)
  qt5/repos/extra-x86_64/glib-2.43.patch
(from rev 239331, qt5/trunk/glib-2.43.patch)
  qt5/repos/extra-x86_64/keypad-shortcuts.patch
(from rev 239331, qt5/trunk/keypad-shortcuts.patch)
  qt5/repos/extra-x86_64/linguist.desktop
(from rev 239331, qt5/trunk/linguist.desktop)
  qt5/repos/extra-x86_64/qdbusviewer.desktop
(from rev 239331, qt5/trunk/qdbusviewer.desktop)
  qt5/repos/extra-x86_64/qlockfile-deadlock.patch
(from rev 239331, qt5/trunk/qlockfile-deadlock.patch)
  qt5/repos/extra-x86_64/qnam-corruption.patch
(from rev 239331, qt5/trunk/qnam-corruption.patch)
  qt5/repos/extra-x86_64/qt5-tools.install
(from rev 239331, qt5/trunk/qt5-tools.install)
Deleted:
  
qt5/repos/extra-i686/0001-Require-fPIC-instead-of-just-fPIE-for-reduce-relocat.patch
  
qt5/repos/extra-i686/0001-Revert-Rotate-images-according-to-Exif-orientation.patch
  qt5/repos/extra-i686/PKGBUILD
  qt5/repos/extra-i686/assistant.desktop
  qt5/repos/extra-i686/designer.desktop
  qt5/repos/extra-i686/glib-2.43.patch
  qt5/repos/extra-i686/linguist.desktop
  qt5/repos/extra-i686/qdbusviewer.desktop
  qt5/repos/extra-i686/qlockfile-deadlock.patch
  qt5/repos/extra-i686/qnam-corruption.patch
  qt5/repos/extra-i686/qt5-tools.install
  
qt5/repos/extra-x86_64/0001-Require-fPIC-instead-of-just-fPIE-for-reduce-relocat.patch
  
qt5/repos/extra-x86_64/0001-Revert-Rotate-images-according-to-Exif-orientation.patch
  qt5/repos/extra-x86_64/PKGBUILD
  qt5/repos/extra-x86_64/assistant.desktop
  qt5/repos/extra-x86_64/designer.desktop
  qt5/repos/extra-x86_64/glib-2.43.patch
  qt5/repos/extra-x86_64/linguist.desktop
  qt5/repos/extra-x86_64/qdbusviewer.desktop
  qt5/repos/extra-x86_64/qlockfile-deadlock.patch
  qt5/repos/extra-x86_64/qnam-corruption.patch
  qt5/repos/extra-x86_64/qt5-tools.install

--+
 /0001-Require-fPIC-instead-of-just-fPIE-for-reduce-relocat.patch | 
 260 +
 /0001-Revert-Rotate-images-according-to-Exif-orientation.patch   | 
 580 
 /PKGBUILD| 
1166 
 /assistant.desktop   | 
  16 
 /designer.desktop| 

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

2015-05-14 Thread Jan Steffens
Date: Thursday, May 14, 2015 @ 10:25:16
  Author: heftig
Revision: 239333

adwaita-icon-theme is already a dep

Modified:
  gtk3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-14 07:34:57 UTC (rev 239332)
+++ PKGBUILD2015-05-14 08:25:16 UTC (rev 239333)
@@ -42,8 +42,7 @@
 
 package_gtk3() {
 depends+=(gtk-update-icon-cache)
-optdepends=('libcanberra: gtk3-widget-factory demo'
-'adwaita-icon-theme: Default icon theme')
+optdepends=('libcanberra: gtk3-widget-factory demo')
 install=gtk3.install
 
 cd gtk+-$pkgver


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

2015-05-14 Thread Pierre Schmitz
Date: Thursday, May 14, 2015 @ 10:28:37
  Author: pierre
Revision: 239335

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

Added:
  php/repos/staging-i686/
  php/repos/staging-i686/PKGBUILD
(from rev 239334, php/trunk/PKGBUILD)
  php/repos/staging-i686/apache.conf
(from rev 239334, php/trunk/apache.conf)
  php/repos/staging-i686/logrotate.d.php-fpm
(from rev 239334, php/trunk/logrotate.d.php-fpm)
  php/repos/staging-i686/php-fpm.conf.in.patch
(from rev 239334, php/trunk/php-fpm.conf.in.patch)
  php/repos/staging-i686/php-fpm.install
(from rev 239334, php/trunk/php-fpm.install)
  php/repos/staging-i686/php-fpm.service
(from rev 239334, php/trunk/php-fpm.service)
  php/repos/staging-i686/php-fpm.tmpfiles
(from rev 239334, php/trunk/php-fpm.tmpfiles)
  php/repos/staging-i686/php.ini.patch
(from rev 239334, php/trunk/php.ini.patch)
  php/repos/staging-x86_64/
  php/repos/staging-x86_64/PKGBUILD
(from rev 239334, php/trunk/PKGBUILD)
  php/repos/staging-x86_64/apache.conf
(from rev 239334, php/trunk/apache.conf)
  php/repos/staging-x86_64/logrotate.d.php-fpm
(from rev 239334, php/trunk/logrotate.d.php-fpm)
  php/repos/staging-x86_64/php-fpm.conf.in.patch
(from rev 239334, php/trunk/php-fpm.conf.in.patch)
  php/repos/staging-x86_64/php-fpm.install
(from rev 239334, php/trunk/php-fpm.install)
  php/repos/staging-x86_64/php-fpm.service
(from rev 239334, php/trunk/php-fpm.service)
  php/repos/staging-x86_64/php-fpm.tmpfiles
(from rev 239334, php/trunk/php-fpm.tmpfiles)
  php/repos/staging-x86_64/php.ini.patch
(from rev 239334, php/trunk/php.ini.patch)

--+
 staging-i686/PKGBUILD|  395 +
 staging-i686/apache.conf |   13 +
 staging-i686/logrotate.d.php-fpm |8 
 staging-i686/php-fpm.conf.in.patch   |   52 
 staging-i686/php-fpm.install |9 
 staging-i686/php-fpm.service |   13 +
 staging-i686/php-fpm.tmpfiles|1 
 staging-i686/php.ini.patch   |  121 ++
 staging-x86_64/PKGBUILD  |  395 +
 staging-x86_64/apache.conf   |   13 +
 staging-x86_64/logrotate.d.php-fpm   |8 
 staging-x86_64/php-fpm.conf.in.patch |   52 
 staging-x86_64/php-fpm.install   |9 
 staging-x86_64/php-fpm.service   |   13 +
 staging-x86_64/php-fpm.tmpfiles  |1 
 staging-x86_64/php.ini.patch |  121 ++
 16 files changed, 1224 insertions(+)

Copied: php/repos/staging-i686/PKGBUILD (from rev 239334, php/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-05-14 08:28:37 UTC (rev 239335)
@@ -0,0 +1,395 @@
+# $Id$
+# Maintainer: Pierre Schmitz pie...@archlinux.de
+
+pkgbase=php
+pkgname=('php'
+ 'php-cgi'
+ 'php-apache'
+ 'php-fpm'
+ 'php-embed'
+ 'php-phpdbg'
+ 'php-pear'
+ 'php-enchant'
+ 'php-gd'
+ 'php-intl'
+ 'php-ldap'
+ 'php-mcrypt'
+ 'php-mssql'
+ 'php-odbc'
+ 'php-pgsql'
+ 'php-pspell'
+ 'php-snmp'
+ 'php-sqlite'
+ 'php-tidy'
+ 'php-xsl')
+pkgver=5.6.8
+pkgrel=3
+arch=('i686' 'x86_64')
+license=('PHP')
+url='http://www.php.net'
+makedepends=('apache' 'imap' 'postgresql-libs' 'libldap' 'postfix'
+ 'sqlite' 'unixodbc' 'net-snmp' 'libzip' 'enchant' 'file' 'freetds'
+ 'libmcrypt' 'tidyhtml' 'aspell' 'libltdl' 'gd' 'icu'
+ 'curl' 'libxslt' 'openssl' 'db' 'gmp' 'systemd')
+source=(http://www.php.net/distributions/${pkgbase}-${pkgver}.tar.xz;
+#http://www.php.net/distributions/${pkgbase}-${pkgver}.tar.xz.asc;
+'php.ini.patch' 'apache.conf' 'php-fpm.conf.in.patch'
+'logrotate.d.php-fpm' 'php-fpm.service' 'php-fpm.tmpfiles')
+md5sums=('526a5a7f593de632cd9e8546335de8b7'
+# 'SKIP'
+ '942f9d8af9bcab2487ca710ef42ef1de'
+ 'dec2cbaad64e3abf4f0ec70e1de4e8e9'
+ '16b5e2e4da59f15bea4c2db78a7bc8dc'
+ '25bc67ad828e8147a817410b68d8016c'
+ 'cc2940f5312ba42e7aa1ddfab74b84c4'
+ 'c60343df74f8e1afb13b084d5c0e47ed')
+validpgpkeys=('6E4F6AB321FDC07F2C332E3AC2BF0BC433CFC8B3'
+  '0BD78B5F97500D450838F95DFE857D9A90D90EC1')
+
+prepare() {
+   cd ${srcdir}/${pkgbase}-${pkgver}
+
+   patch -p0 -i ${srcdir}/php.ini.patch
+   patch -p0 -i ${srcdir}/php-fpm.conf.in.patch
+   # Just because our Apache 2.4 is configured with a threaded MPM by 
default does not mean we want to build a ZTS PHP.
+   # Let's supress this behaviour and build a SAPI that works fine with 
the prefork MPM.
+   sed '/APACHE_THREADED_MPM=/d' -i sapi/apache2handler/config.m4 -i 
configure
+}
+
+build() {
+   local _phpconfig=--srcdir=../${pkgbase}-${pkgver} \
+   

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

2015-05-14 Thread Pierre Schmitz
Date: Thursday, May 14, 2015 @ 10:28:12
  Author: pierre
Revision: 239334

upgpkg: php 5.6.8-3

libzip 1.0.1 rebuild

Modified:
  php/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-14 08:25:16 UTC (rev 239333)
+++ PKGBUILD2015-05-14 08:28:12 UTC (rev 239334)
@@ -23,7 +23,7 @@
  'php-tidy'
  'php-xsl')
 pkgver=5.6.8
-pkgrel=2
+pkgrel=3
 arch=('i686' 'x86_64')
 license=('PHP')
 url='http://www.php.net'


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

2015-05-14 Thread Ronald van Haren
Date: Thursday, May 14, 2015 @ 11:15:17
  Author: ronald
Revision: 239342

move hugin optdepends top kipi-plugins subpackage

Modified:
  digikam/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-14 08:50:13 UTC (rev 239341)
+++ PKGBUILD2015-05-14 09:15:17 UTC (rev 239342)
@@ -15,7 +15,6 @@
  'kdeedu-marble' 'opencv' 'boost' 'libgpod' 'qjson' 'hugin' 
'libgphoto2'
  'cmake' 'automoc4' 'doxygen' 'lensfun' 'qt-gstreamer' 
'imagemagick' 'eigen' 
 'libbaloo4' 'libpgf' 'libusb-compat' 'libkface' 'libkgeomap')
-optdepends=('hugin: panorama tools')
 
source=(http://download.kde.org/stable/${pkgname}/${pkgname}-${pkgver}.tar.bz2;)
 sha1sums=('d44ab133f152b84599507dd6a02aef4b22033dd4')
 
@@ -81,7 +80,8 @@
   'libgpod: iPodExport plugin'
   'opencv: Remove Red Eyes plugin'
   'imagemagick: Video SlideShow plugin'
-  'qt-gstreamer: Video SlideShow plugin')
+  'qt-gstreamer: Video SlideShow plugin'
+ 'hugin: panorama tools')
   options=('staticlibs')
   install=kipi-plugins.install
 


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

2015-05-14 Thread Pierre Schmitz
Date: Thursday, May 14, 2015 @ 10:31:21
  Author: pierre
Revision: 239337

archrelease: copy trunk to testing-any

Added:
  archlinux-keyring/repos/testing-any/
  archlinux-keyring/repos/testing-any/PKGBUILD
(from rev 239336, archlinux-keyring/trunk/PKGBUILD)
  archlinux-keyring/repos/testing-any/archlinux-keyring.install
(from rev 239336, archlinux-keyring/trunk/archlinux-keyring.install)

---+
 PKGBUILD  |   21 +
 archlinux-keyring.install |   22 ++
 2 files changed, 43 insertions(+)

Copied: archlinux-keyring/repos/testing-any/PKGBUILD (from rev 239336, 
archlinux-keyring/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2015-05-14 08:31:21 UTC (rev 239337)
@@ -0,0 +1,21 @@
+# $Id$
+# Maintainer: Pierre Schmitz pie...@archlinux.de
+
+pkgname=archlinux-keyring
+pkgver=20150514
+pkgrel=1
+pkgdesc='Arch Linux PGP keyring'
+arch=('any')
+url='https://projects.archlinux.org/archlinux-keyring.git/'
+license=('GPL')
+install=${pkgname}.install
+source=(https://sources.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.gz;
+
https://sources.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.gz.sig;)
+md5sums=('31e15e71dfd27efb984d2defa5d7515b'
+ 'SKIP')
+validpgpkeys=('4AA4767BBC9C4B1D18AE28B77F2D434B9741E8AC')
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make PREFIX=/usr DESTDIR=${pkgdir} install
+}

Copied: archlinux-keyring/repos/testing-any/archlinux-keyring.install (from rev 
239336, archlinux-keyring/trunk/archlinux-keyring.install)
===
--- testing-any/archlinux-keyring.install   (rev 0)
+++ testing-any/archlinux-keyring.install   2015-05-14 08:31:21 UTC (rev 
239337)
@@ -0,0 +1,22 @@
+post_upgrade() {
+   if usr/bin/pacman-key -l /dev/null 21; then
+   usr/bin/pacman-key --populate archlinux
+
+   # Re-enable key of dwallace
+   # See https://bugs.archlinux.org/task/35478
+   if [ -z $2 ] || [ $2 = 20130525-1 ]; then
+   printf 'enable\nquit\n' | LANG=C \
+   gpg --homedir /etc/pacman.d/gnupg \
+   --no-permission-warning --command-fd 0 \
+   --quiet --batch --edit-key \
+   5559BC1A32B8F76B3FCCD9555FA5E5544F010D48 \
+   2/dev/null
+   fi
+   fi
+}
+
+post_install() {
+   if [ -x usr/bin/pacman-key ]; then
+   post_upgrade
+   fi
+}


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

2015-05-14 Thread Jan Steffens
Date: Thursday, May 14, 2015 @ 10:42:14
  Author: heftig
Revision: 239338

remove old patches

Deleted:
  linux/trunk/0001-fix-btrfs-mount-deadlock.patch
  linux/trunk/0001-fixup-drm.patch

-+
 0001-fix-btrfs-mount-deadlock.patch |   43 
 0001-fixup-drm.patch|   70 --
 2 files changed, 113 deletions(-)

Deleted: 0001-fix-btrfs-mount-deadlock.patch
===
--- 0001-fix-btrfs-mount-deadlock.patch 2015-05-14 08:31:21 UTC (rev 239337)
+++ 0001-fix-btrfs-mount-deadlock.patch 2015-05-14 08:42:14 UTC (rev 239338)
@@ -1,43 +0,0 @@
-From 9c4f61f01d269815bb7c37be3ede59c5587747c6 Mon Sep 17 00:00:00 2001
-From: David Sterba dste...@suse.cz
-Date: Fri, 2 Jan 2015 19:12:57 +0100
-Subject: btrfs: simplify insert_orphan_item
-
-We can search and add the orphan item in one go,
-btrfs_insert_orphan_item will find out if the item already exists.
-
-Signed-off-by: David Sterba dste...@suse.cz
-
-diff --git a/fs/btrfs/tree-log.c b/fs/btrfs/tree-log.c
-index 5be45c1..25a1c36 100644
 a/fs/btrfs/tree-log.c
-+++ b/fs/btrfs/tree-log.c
-@@ -1254,21 +1254,13 @@ out:
- }
- 
- static int insert_orphan_item(struct btrfs_trans_handle *trans,
--struct btrfs_root *root, u64 offset)
-+struct btrfs_root *root, u64 ino)
- {
-   int ret;
--  struct btrfs_path *path;
--
--  path = btrfs_alloc_path();
--  if (!path)
--  return -ENOMEM;
- 
--  ret = btrfs_find_item(root, path, BTRFS_ORPHAN_OBJECTID,
--  offset, BTRFS_ORPHAN_ITEM_KEY, NULL);
--  if (ret  0)
--  ret = btrfs_insert_orphan_item(trans, root, offset);
--
--  btrfs_free_path(path);
-+  ret = btrfs_insert_orphan_item(trans, root, ino);
-+  if (ret == -EEXIST)
-+  ret = 0;
- 
-   return ret;
- }
--- 
-cgit v0.10.2
-

Deleted: 0001-fixup-drm.patch
===
--- 0001-fixup-drm.patch2015-05-14 08:31:21 UTC (rev 239337)
+++ 0001-fixup-drm.patch2015-05-14 08:42:14 UTC (rev 239338)
@@ -1,70 +0,0 @@
-From 8218c3f4df3bb1c637c17552405039a6dd3c1ee1 Mon Sep 17 00:00:00 2001
-From: Daniel Vetter daniel.vet...@ffwll.ch
-Date: Fri, 27 Feb 2015 12:58:13 +0100
-Subject: drm: Fixup racy refcounting in plane_force_disable
-
-Originally it was impossible to be dropping the last refcount in this
-function since there was always one around still from the idr. But in
-
-commit 83f45fc360c8e16a330474860ebda872d1384c8c
-Author: Daniel Vetter daniel.vet...@ffwll.ch
-Date:   Wed Aug 6 09:10:18 2014 +0200
-
-drm: Don't grab an fb reference for the idr
-
-we've switched to weak references, broke that assumption but forgot to
-fix it up.
-
-Since we still force-disable planes it's only possible to hit this
-when racing multiple rmfb with fbdev restoring or similar evil things.
-As long as userspace is nice it's impossible to hit the BUG_ON.
-
-But the BUG_ON would most likely be hit from fbdev code, which usually
-invovles the console_lock besides all modeset locks. So very likely
-we'd never get the bug reports if this was hit in the wild, hence
-better be safe than sorry and backport.
-
-Spotted by Matt Roper while reviewing other patches.
-
-[airlied: pull this back into 4.0 - the oops happens there]
-
-Cc: sta...@vger.kernel.org
-Cc: Matt Roper matthew.d.ro...@intel.com
-Reviewed-by: Matt Roper matthew.d.ro...@intel.com
-Signed-off-by: Daniel Vetter daniel.vet...@intel.com
-Signed-off-by: Dave Airlie airl...@redhat.com
-
-diff --git a/drivers/gpu/drm/drm_crtc.c b/drivers/gpu/drm/drm_crtc.c
-index f6d04c7..679b10e 100644
 a/drivers/gpu/drm/drm_crtc.c
-+++ b/drivers/gpu/drm/drm_crtc.c
-@@ -525,17 +525,6 @@ void drm_framebuffer_reference(struct drm_framebuffer *fb)
- }
- EXPORT_SYMBOL(drm_framebuffer_reference);
- 
--static void drm_framebuffer_free_bug(struct kref *kref)
--{
--  BUG();
--}
--
--static void __drm_framebuffer_unreference(struct drm_framebuffer *fb)
--{
--  DRM_DEBUG(%p: FB ID: %d (%d)\n, fb, fb-base.id, 
atomic_read(fb-refcount.refcount));
--  kref_put(fb-refcount, drm_framebuffer_free_bug);
--}
--
- /**
-  * drm_framebuffer_unregister_private - unregister a private fb from the 
lookup idr
-  * @fb: fb to unregister
-@@ -1320,7 +1309,7 @@ void drm_plane_force_disable(struct drm_plane *plane)
-   return;
-   }
-   /* disconnect the plane from the fb and crtc: */
--  __drm_framebuffer_unreference(plane-old_fb);
-+  drm_framebuffer_unreference(plane-old_fb);
-   plane-old_fb = NULL;
-   plane-fb = NULL;
-   plane-crtc = NULL;
--- 
-cgit v0.10.2
-


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

2015-05-14 Thread Florian Pritz
Date: Thursday, May 14, 2015 @ 10:50:13
  Author: bluewind
Revision: 239341

fix VENOM

Added:
  qemu/repos/extra-i686/CVE-2015-3456.patch
  qemu/repos/extra-x86_64/CVE-2015-3456.patch
Modified:
  qemu/repos/extra-i686/PKGBUILD
  qemu/repos/extra-x86_64/PKGBUILD

--+
 extra-i686/CVE-2015-3456.patch   |   84 +
 extra-i686/PKGBUILD  |8 +++
 extra-x86_64/CVE-2015-3456.patch |   84 +
 extra-x86_64/PKGBUILD|8 +++
 4 files changed, 182 insertions(+), 2 deletions(-)

Added: extra-i686/CVE-2015-3456.patch
===
--- extra-i686/CVE-2015-3456.patch  (rev 0)
+++ extra-i686/CVE-2015-3456.patch  2015-05-14 08:50:13 UTC (rev 239341)
@@ -0,0 +1,84 @@
+From e907746266721f305d67bc0718795fedee2e824c Mon Sep 17 00:00:00 2001
+From: Petr Matousek pmato...@redhat.com
+Date: Wed, 6 May 2015 09:48:59 +0200
+Subject: [PATCH] fdc: force the fifo access to be in bounds of the allocated 
buffer
+
+During processing of certain commands such as FD_CMD_READ_ID and
+FD_CMD_DRIVE_SPECIFICATION_COMMAND the fifo memory access could
+get out of bounds leading to memory corruption with values coming
+from the guest.
+
+Fix this by making sure that the index is always bounded by the
+allocated memory.
+
+This is CVE-2015-3456.
+
+Signed-off-by: Petr Matousek pmato...@redhat.com
+Reviewed-by: John Snow js...@redhat.com
+Signed-off-by: John Snow js...@redhat.com
+---
+ hw/block/fdc.c |   17 +++--
+ 1 files changed, 11 insertions(+), 6 deletions(-)
+
+diff --git a/hw/block/fdc.c b/hw/block/fdc.c
+index f72a392..d8a8edd 100644
+--- a/hw/block/fdc.c
 b/hw/block/fdc.c
+@@ -1497,7 +1497,7 @@ static uint32_t fdctrl_read_data(FDCtrl *fdctrl)
+ {
+ FDrive *cur_drv;
+ uint32_t retval = 0;
+-int pos;
++uint32_t pos;
+ 
+ cur_drv = get_cur_drv(fdctrl);
+ fdctrl-dsr = ~FD_DSR_PWRDOWN;
+@@ -1506,8 +1506,8 @@ static uint32_t fdctrl_read_data(FDCtrl *fdctrl)
+ return 0;
+ }
+ pos = fdctrl-data_pos;
++pos %= FD_SECTOR_LEN;
+ if (fdctrl-msr  FD_MSR_NONDMA) {
+-pos %= FD_SECTOR_LEN;
+ if (pos == 0) {
+ if (fdctrl-data_pos != 0)
+ if (!fdctrl_seek_to_next_sect(fdctrl, cur_drv)) {
+@@ -1852,10 +1852,13 @@ static void fdctrl_handle_option(FDCtrl *fdctrl, int 
direction)
+ static void fdctrl_handle_drive_specification_command(FDCtrl *fdctrl, int 
direction)
+ {
+ FDrive *cur_drv = get_cur_drv(fdctrl);
++uint32_t pos;
+ 
+-if (fdctrl-fifo[fdctrl-data_pos - 1]  0x80) {
++pos = fdctrl-data_pos - 1;
++pos %= FD_SECTOR_LEN;
++if (fdctrl-fifo[pos]  0x80) {
+ /* Command parameters done */
+-if (fdctrl-fifo[fdctrl-data_pos - 1]  0x40) {
++if (fdctrl-fifo[pos]  0x40) {
+ fdctrl-fifo[0] = fdctrl-fifo[1];
+ fdctrl-fifo[2] = 0;
+ fdctrl-fifo[3] = 0;
+@@ -1955,7 +1958,7 @@ static uint8_t command_to_handler[256];
+ static void fdctrl_write_data(FDCtrl *fdctrl, uint32_t value)
+ {
+ FDrive *cur_drv;
+-int pos;
++uint32_t pos;
+ 
+ /* Reset mode */
+ if (!(fdctrl-dor  FD_DOR_nRESET)) {
+@@ -2004,7 +2007,9 @@ static void fdctrl_write_data(FDCtrl *fdctrl, uint32_t 
value)
+ }
+ 
+ FLOPPY_DPRINTF(%s: %02x\n, __func__, value);
+-fdctrl-fifo[fdctrl-data_pos++] = value;
++pos = fdctrl-data_pos++;
++pos %= FD_SECTOR_LEN;
++fdctrl-fifo[pos] = value;
+ if (fdctrl-data_pos == fdctrl-data_len) {
+ /* We now have all parameters
+  * and will be able to treat the command
+-- 
+1.7.0.4
+

Modified: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-05-14 08:43:58 UTC (rev 239340)
+++ extra-i686/PKGBUILD 2015-05-14 08:50:13 UTC (rev 239341)
@@ -2,7 +2,7 @@
 # Maintainer: Tobias Powalowski tp...@archlinux.org
 pkgname=('qemu' 'libcacard')
 pkgver=2.2.1
-pkgrel=4
+pkgrel=5
 arch=('i686' 'x86_64')
 license=('GPL2' 'LGPL2.1')
 url=http://wiki.qemu.org/Index.html;
@@ -13,7 +13,12 @@
  'usbredir')
 options=(!strip)
 source=(http://wiki.qemu.org/download/${pkgname}-${pkgver}.tar.bz2
+CVE-2015-3456.patch
 65-kvm.rules)
+prepare() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  patch -p1 -i ${srcdir}/CVE-2015-3456.patch
+}
 
 build ()
 {
@@ -90,4 +95,5 @@
  cp -a ${srcdir}/qemu-${pkgver}/.libs/vscclient ${pkgdir}/usr/bin/
 }
 md5sums=('833ff4457062456d38d6567f802ffef4'
+ '5e8a68940c4e0267e795a6ddd144e00e'
  '33ab286a20242dda7743a900f369d68a')

Added: extra-x86_64/CVE-2015-3456.patch
===
--- extra-x86_64/CVE-2015-3456.patch(rev 0)
+++ extra-x86_64/CVE-2015-3456.patch2015-05-14 08:50:13 UTC (rev 239341)
@@ -0,0 +1,84 @@
+From 

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

2015-05-14 Thread Pierre Schmitz
Date: Thursday, May 14, 2015 @ 10:31:15
  Author: pierre
Revision: 239336

upgpkg: archlinux-keyring 20150514-1

Modified:
  archlinux-keyring/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-14 08:28:37 UTC (rev 239335)
+++ PKGBUILD2015-05-14 08:31:15 UTC (rev 239336)
@@ -2,7 +2,7 @@
 # Maintainer: Pierre Schmitz pie...@archlinux.de
 
 pkgname=archlinux-keyring
-pkgver=20150212
+pkgver=20150514
 pkgrel=1
 pkgdesc='Arch Linux PGP keyring'
 arch=('any')
@@ -11,7 +11,7 @@
 install=${pkgname}.install
 
source=(https://sources.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.gz;
 
https://sources.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.gz.sig;)
-md5sums=('6f1c01af59098e16918f97ff947f7e54'
+md5sums=('31e15e71dfd27efb984d2defa5d7515b'
  'SKIP')
 validpgpkeys=('4AA4767BBC9C4B1D18AE28B77F2D434B9741E8AC')
 


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

2015-05-14 Thread Pierre Schmitz
Date: Thursday, May 14, 2015 @ 10:43:51
  Author: pierre
Revision: 239339

upgpkg: devtools 20150514-1

Modified:
  devtools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-05-14 08:42:14 UTC (rev 239338)
+++ PKGBUILD2015-05-14 08:43:51 UTC (rev 239339)
@@ -2,7 +2,7 @@
 # Maintainer: Pierre Schmitz pie...@archlinux.de
 
 pkgname=devtools
-pkgver=20150228
+pkgver=20150514
 pkgrel=1
 pkgdesc='Tools for Arch Linux package maintainers'
 arch=('any')
@@ -10,8 +10,9 @@
 url='http://projects.archlinux.org/devtools.git/'
 depends=('namcap' 'openssh' 'subversion' 'rsync' 'arch-install-scripts')
 
source=(https://sources.archlinux.org/other/$pkgname/$pkgname-$pkgver.tar.gz{,.sig})
-validpgpkeys=('487EACC08557AD082088DABA1EB2638FF56C0C53')  # Dave Reisner
-md5sums=('4b17a83dac3f8c93de85acebd0a90a16'
+validpgpkeys=('487EACC08557AD082088DABA1EB2638FF56C0C53'
+  '4AA4767BBC9C4B1D18AE28B77F2D434B9741E8AC')
+md5sums=('0b2c687cef6932151cdc7fe815494c07'
  'SKIP')
 
 build() {


  1   2   >