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

2015-07-24 Thread Antonio Rojas
Date: Friday, July 24, 2015 @ 08:56:26
  Author: arojas
Revision: 242477

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

Added:
  quazip/repos/staging-i686/PKGBUILD
(from rev 242476, quazip/trunk/PKGBUILD)
  quazip/repos/staging-i686/qt5.patch
(from rev 242476, quazip/trunk/qt5.patch)
  quazip/repos/staging-x86_64/PKGBUILD
(from rev 242476, quazip/trunk/PKGBUILD)
  quazip/repos/staging-x86_64/qt5.patch
(from rev 242476, quazip/trunk/qt5.patch)
Deleted:
  quazip/repos/staging-i686/PKGBUILD
  quazip/repos/staging-x86_64/PKGBUILD

--+
 /PKGBUILD|  110 +
 staging-i686/PKGBUILD|   30 
 staging-i686/qt5.patch   |   95 ++
 staging-x86_64/PKGBUILD  |   30 
 staging-x86_64/qt5.patch |   95 ++
 5 files changed, 300 insertions(+), 60 deletions(-)

Deleted: staging-i686/PKGBUILD
===
--- staging-i686/PKGBUILD   2015-07-24 06:55:15 UTC (rev 242476)
+++ staging-i686/PKGBUILD   2015-07-24 06:56:26 UTC (rev 242477)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: trya tryagainp...@gmail.com
-
-pkgname=quazip
-pkgver=0.7.1
-pkgrel=3
-pkgdesc=C++ wrapper for the Gilles Vollant's ZIP/UNZIP C package
-url=http://sourceforge.net/projects/quazip/;
-license=('LGPL')
-arch=('i686' 'x86_64')
-depends=('qt4')
-source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
-md5sums=('3b99effb2a9417707d463e6f19cf2629')
-
-build() {
-  cd ${pkgname}-${pkgver}/${pkgname}
-  qmake-qt4 PREFIX=/usr
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}/${pkgname}
-  make INSTALL_ROOT=${pkgdir} install
-
-  install -d ${pkgdir}/usr/share/cmake-3.3/Modules
-  install -m644 ../FindQuaZip.cmake\
-${pkgdir}/usr/share/cmake-3.3/Modules
-}

Copied: quazip/repos/staging-i686/PKGBUILD (from rev 242476, 
quazip/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-07-24 06:56:26 UTC (rev 242477)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: trya tryagainp...@gmail.com
+
+pkgbase=quazip
+pkgname=(quazip-qt4 quazip-qt5)
+pkgver=0.7.1
+pkgrel=4
+pkgdesc=C++ wrapper for the Gilles Vollant's ZIP/UNZIP C package
+url=http://sourceforge.net/projects/quazip/;
+license=('LGPL')
+arch=('i686' 'x86_64')
+makedepends=(qt4 qt5-base cmake automoc4)
+source=(http://downloads.sourceforge.net/$pkgbase/$pkgbase-$pkgver.tar.gz; 
'qt5.patch')
+md5sums=('3b99effb2a9417707d463e6f19cf2629'
+ 'f79814b21f1fbbfa86a14240d71158fc')
+
+prepare() {
+# Make qt4 and qt5 versions coinstallable
+  cd $pkgbase-$pkgver
+  patch -p1 -i ../qt5.patch
+}
+
+build() {
+  cd $pkgbase-$pkgver
+  mkdir -p qt{4,5}
+
+  pushd qt4
+   cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DBUILD_WITH_QT4:BOOL=ON
+   make
+  popd
+
+  pushd qt5
+   cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DBUILD_WITH_QT4:BOOL=OFF
+   make
+  popd  
+}
+
+package_quazip-qt4() {
+  depends=(qt4)
+  replaces=(quazip)
+  provides=(quazip)
+  conflicts=(quazip)
+
+  cd $pkgbase-$pkgver/qt4
+  make DESTDIR=$pkgdir install
+}
+
+package_quazip-qt5() {
+  depends=(qt5-base)
+
+  cd $pkgbase-$pkgver/qt5
+  make DESTDIR=$pkgdir install
+}

Copied: quazip/repos/staging-i686/qt5.patch (from rev 242476, 
quazip/trunk/qt5.patch)
===
--- staging-i686/qt5.patch  (rev 0)
+++ staging-i686/qt5.patch  2015-07-24 06:56:26 UTC (rev 242477)
@@ -0,0 +1,95 @@
+diff -up quazip-0.7.1/CMakeLists.txt.qt5 quazip-0.7.1/CMakeLists.txt
+--- quazip-0.7.1/CMakeLists.txt.qt52013-11-18 11:37:54.0 -0600
 quazip-0.7.1/CMakeLists.txt2015-04-19 17:25:59.638703934 -0500
+@@ -10,10 +10,11 @@ endif()
+ 
+ if (Qt5Core_FOUND)
+ set(QTCORE_LIBRARIES ${Qt5Core_LIBRARIES})
++set(QUAZIP_LIB_VERSION_SUFFIX 5)
+ # if there is no QT_ROOT, try to deduce it from Qt QtCore include
+ if (${QT_ROOT} STREQUAL )
+ set(QT_ROOT ${QT_QTCORE_INCLUDE_DIR}/../..)
+-endif()
++endif()
+ include_directories(${Qt5Core_INCLUDE_DIRS})
+ 
+ macro(qt_wrap_cpp)
+@@ -33,7 +34,7 @@ else()
+ endif()
+ 
+ # Use system zlib on unix and Qt ZLIB on Windows
+-IF(UNIX)
++IF(UNIX OR MINGW)
+   find_package(ZLIB REQUIRED)
+ ELSE(UNIX)
+   SET(ZLIB_INCLUDE_DIRS ${QT_ROOT}/src/3rdparty/zlib CACHE STRING Path 
to ZLIB headers of Qt)
+@@ -48,7 +49,9 @@ SET(LIBRARY_OUTPUT_PATH ${CMAKE_BINARY_D
+ 
+ set(LIB_SUFFIX  CACHE STRING Define suffix of directory name (32/64))
+ set(LIB_DESTINATION 

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

2015-07-24 Thread Antonio Rojas
Date: Friday, July 24, 2015 @ 08:55:15
  Author: arojas
Revision: 242476

Build with cmake, add patch to make qt4 and qt5 versions coinstallable (taken 
from Fedora since SF is offline ATM)

Added:
  quazip/trunk/qt5.patch
Modified:
  quazip/trunk/PKGBUILD

---+
 PKGBUILD  |   53 -
 qt5.patch |   95 
 2 files changed, 134 insertions(+), 14 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-07-24 06:31:32 UTC (rev 242475)
+++ PKGBUILD2015-07-24 06:55:15 UTC (rev 242476)
@@ -3,28 +3,53 @@
 # Contributor: Andrea Scarpino and...@archlinux.org
 # Contributor: trya tryagainp...@gmail.com
 
-pkgname=quazip
+pkgbase=quazip
+pkgname=(quazip-qt4 quazip-qt5)
 pkgver=0.7.1
-pkgrel=3
+pkgrel=4
 pkgdesc=C++ wrapper for the Gilles Vollant's ZIP/UNZIP C package
 url=http://sourceforge.net/projects/quazip/;
 license=('LGPL')
 arch=('i686' 'x86_64')
-depends=('qt4')
-source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
-md5sums=('3b99effb2a9417707d463e6f19cf2629')
+makedepends=(qt4 qt5-base cmake automoc4)
+source=(http://downloads.sourceforge.net/$pkgbase/$pkgbase-$pkgver.tar.gz; 
'qt5.patch')
+md5sums=('3b99effb2a9417707d463e6f19cf2629'
+ 'f79814b21f1fbbfa86a14240d71158fc')
 
+prepare() {
+# Make qt4 and qt5 versions coinstallable
+  cd $pkgbase-$pkgver
+  patch -p1 -i ../qt5.patch
+}
+
 build() {
-  cd ${pkgname}-${pkgver}/${pkgname}
-  qmake-qt4 PREFIX=/usr
-  make
+  cd $pkgbase-$pkgver
+  mkdir -p qt{4,5}
+
+  pushd qt4
+   cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DBUILD_WITH_QT4:BOOL=ON
+   make
+  popd
+
+  pushd qt5
+   cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DBUILD_WITH_QT4:BOOL=OFF
+   make
+  popd  
 }
 
-package() {
-  cd ${pkgname}-${pkgver}/${pkgname}
-  make INSTALL_ROOT=${pkgdir} install
+package_quazip-qt4() {
+  depends=(qt4)
+  replaces=(quazip)
+  provides=(quazip)
+  conflicts=(quazip)
 
-  install -d ${pkgdir}/usr/share/cmake-3.3/Modules
-  install -m644 ../FindQuaZip.cmake\
-${pkgdir}/usr/share/cmake-3.3/Modules
+  cd $pkgbase-$pkgver/qt4
+  make DESTDIR=$pkgdir install
 }
+
+package_quazip-qt5() {
+  depends=(qt5-base)
+
+  cd $pkgbase-$pkgver/qt5
+  make DESTDIR=$pkgdir install
+}

Added: qt5.patch
===
--- qt5.patch   (rev 0)
+++ qt5.patch   2015-07-24 06:55:15 UTC (rev 242476)
@@ -0,0 +1,95 @@
+diff -up quazip-0.7.1/CMakeLists.txt.qt5 quazip-0.7.1/CMakeLists.txt
+--- quazip-0.7.1/CMakeLists.txt.qt52013-11-18 11:37:54.0 -0600
 quazip-0.7.1/CMakeLists.txt2015-04-19 17:25:59.638703934 -0500
+@@ -10,10 +10,11 @@ endif()
+ 
+ if (Qt5Core_FOUND)
+ set(QTCORE_LIBRARIES ${Qt5Core_LIBRARIES})
++set(QUAZIP_LIB_VERSION_SUFFIX 5)
+ # if there is no QT_ROOT, try to deduce it from Qt QtCore include
+ if (${QT_ROOT} STREQUAL )
+ set(QT_ROOT ${QT_QTCORE_INCLUDE_DIR}/../..)
+-endif()
++endif()
+ include_directories(${Qt5Core_INCLUDE_DIRS})
+ 
+ macro(qt_wrap_cpp)
+@@ -33,7 +34,7 @@ else()
+ endif()
+ 
+ # Use system zlib on unix and Qt ZLIB on Windows
+-IF(UNIX)
++IF(UNIX OR MINGW)
+   find_package(ZLIB REQUIRED)
+ ELSE(UNIX)
+   SET(ZLIB_INCLUDE_DIRS ${QT_ROOT}/src/3rdparty/zlib CACHE STRING Path 
to ZLIB headers of Qt)
+@@ -48,7 +49,9 @@ SET(LIBRARY_OUTPUT_PATH ${CMAKE_BINARY_D
+ 
+ set(LIB_SUFFIX  CACHE STRING Define suffix of directory name (32/64))
+ set(LIB_DESTINATION ${CMAKE_INSTALL_PREFIX}/lib${LIB_SUFFIX} CACHE STRING 
Library directory name FORCE)
++set(QUAZIP_LIB_TARGET_NAME quazip${QUAZIP_LIB_VERSION_SUFFIX} CACHE
++INTERNAL Target name of libquazip FORCE)
+ 
+ add_subdirectory(quazip)
+ 
+-install(FILES FindQuaZip.cmake DESTINATION ${CMAKE_ROOT}/Modules)
++install(FILES FindQuaZip.cmake RENAME 
FindQuaZip${QUAZIP_LIB_VERSION_SUFFIX}.cmake DESTINATION ${CMAKE_ROOT}/Modules)
+diff -up quazip-0.7.1/FindQuaZip.cmake.qt5 quazip-0.7.1/FindQuaZip.cmake
+--- quazip-0.7.1/FindQuaZip.cmake.qt5  2012-02-26 00:46:10.0 -0600
 quazip-0.7.1/FindQuaZip.cmake  2015-04-19 17:25:59.638703934 -0500
+@@ -9,14 +9,17 @@ IF (QUAZIP_INCLUDE_DIRS AND QUAZIP_LIBRA
+   # in cache already
+   SET(QUAZIP_FOUND TRUE)
+ ELSE (QUAZIP_INCLUDE_DIRS AND QUAZIP_LIBRARIES)
++  IF (Qt5Core_FOUND)
++  set(QUAZIP_LIB_VERSION_SUFFIX 5)
++  ENDIF()
+   IF (WIN32)
+   FIND_PATH(QUAZIP_LIBRARY_DIR
+   WIN32_DEBUG_POSTFIX d
+-  NAMES libquazip.dll
++  NAMES libquazip${QUAZIP_LIB_VERSION_SUFFIX}.dll
+   HINTS C:/Programme/ C:/Program Files
+   PATH_SUFFIXES QuaZip/lib
+   )
+-  FIND_LIBRARY(QUAZIP_LIBRARIES NAMES libquazip.dll HINTS 
${QUAZIP_LIBRARY_DIR})
++  

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

2015-07-24 Thread Felix Yan
Date: Friday, July 24, 2015 @ 08:30:42
  Author: fyan
Revision: 242474

upgpkg: quazip 0.7.1-3

cmake 3.3 rebuild

Modified:
  quazip/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-07-24 03:26:19 UTC (rev 242473)
+++ PKGBUILD2015-07-24 06:30:42 UTC (rev 242474)
@@ -1,10 +1,11 @@
 # $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
 # Contributor: trya tryagainp...@gmail.com
 
 pkgname=quazip
 pkgver=0.7.1
-pkgrel=2
+pkgrel=3
 pkgdesc=C++ wrapper for the Gilles Vollant's ZIP/UNZIP C package
 url=http://sourceforge.net/projects/quazip/;
 license=('LGPL')
@@ -23,7 +24,7 @@
   cd ${pkgname}-${pkgver}/${pkgname}
   make INSTALL_ROOT=${pkgdir} install
 
-  install -d ${pkgdir}/usr/share/cmake-3.2/Modules
+  install -d ${pkgdir}/usr/share/cmake-3.3/Modules
   install -m644 ../FindQuaZip.cmake\
-${pkgdir}/usr/share/cmake-3.2/Modules
+${pkgdir}/usr/share/cmake-3.3/Modules
 }


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

2015-07-24 Thread Felix Yan
Date: Friday, July 24, 2015 @ 08:31:32
  Author: fyan
Revision: 242475

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

Added:
  quazip/repos/staging-i686/
  quazip/repos/staging-i686/PKGBUILD
(from rev 242474, quazip/trunk/PKGBUILD)
  quazip/repos/staging-x86_64/
  quazip/repos/staging-x86_64/PKGBUILD
(from rev 242474, quazip/trunk/PKGBUILD)

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

Copied: quazip/repos/staging-i686/PKGBUILD (from rev 242474, 
quazip/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-07-24 06:31:32 UTC (rev 242475)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: trya tryagainp...@gmail.com
+
+pkgname=quazip
+pkgver=0.7.1
+pkgrel=3
+pkgdesc=C++ wrapper for the Gilles Vollant's ZIP/UNZIP C package
+url=http://sourceforge.net/projects/quazip/;
+license=('LGPL')
+arch=('i686' 'x86_64')
+depends=('qt4')
+source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
+md5sums=('3b99effb2a9417707d463e6f19cf2629')
+
+build() {
+  cd ${pkgname}-${pkgver}/${pkgname}
+  qmake-qt4 PREFIX=/usr
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}/${pkgname}
+  make INSTALL_ROOT=${pkgdir} install
+
+  install -d ${pkgdir}/usr/share/cmake-3.3/Modules
+  install -m644 ../FindQuaZip.cmake\
+${pkgdir}/usr/share/cmake-3.3/Modules
+}

Copied: quazip/repos/staging-x86_64/PKGBUILD (from rev 242474, 
quazip/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2015-07-24 06:31:32 UTC (rev 242475)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: trya tryagainp...@gmail.com
+
+pkgname=quazip
+pkgver=0.7.1
+pkgrel=3
+pkgdesc=C++ wrapper for the Gilles Vollant's ZIP/UNZIP C package
+url=http://sourceforge.net/projects/quazip/;
+license=('LGPL')
+arch=('i686' 'x86_64')
+depends=('qt4')
+source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
+md5sums=('3b99effb2a9417707d463e6f19cf2629')
+
+build() {
+  cd ${pkgname}-${pkgver}/${pkgname}
+  qmake-qt4 PREFIX=/usr
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}/${pkgname}
+  make INSTALL_ROOT=${pkgdir} install
+
+  install -d ${pkgdir}/usr/share/cmake-3.3/Modules
+  install -m644 ../FindQuaZip.cmake\
+${pkgdir}/usr/share/cmake-3.3/Modules
+}


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

2015-07-24 Thread Florian Pritz
Date: Friday, July 24, 2015 @ 10:37:30
  Author: bluewind
Revision: 137351

archrelease: copy trunk to community-any

Added:
  inxi/repos/community-any/PKGBUILD
(from rev 137350, inxi/trunk/PKGBUILD)
  inxi/repos/community-any/upgpkg
(from rev 137350, inxi/trunk/upgpkg)
Deleted:
  inxi/repos/community-any/PKGBUILD
  inxi/repos/community-any/upgpkg

--+
 PKGBUILD |   72 ++---
 upgpkg   |8 +++---
 2 files changed, 40 insertions(+), 40 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-07-24 08:37:27 UTC (rev 137350)
+++ PKGBUILD2015-07-24 08:37:30 UTC (rev 137351)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Florian Pritz f...@gmx.at
-pkgname=inxi
-pkgver=2.2.25
-pkgrel=1
-pkgdesc=script to get system information
-arch=('any')
-url=http://inxi.org;
-license=('GPL')
-depends=(coreutils gawk grep pciutils procps-ng sed)
-optdepends=(
-  dmidecode: inxi -M if no sys machine data
-  file: inxi -o unmounted file system
-  hddtemp: inxi -Dx show hdd temp
-  net-tools: inxi -i ip lan-deprecated
-  iproute2: inxi -i ip lan
-  lm_sensors: inxi -s sensors output
-  usbutils: inxi -A usb audio;-N usb networking
-  kmod: inxi -Ax,-Nx module version
-  systemd-sysvcompat: inxi -I runlevel
-  sudo: inxi -Dx hddtemp-user;-o file-user
-  mesa-demos: inxi -G glx info
-  xorg-xdpyinfo: inxi -G multi screen resolution
-  xorg-xprop: inxi -S desktop data
-  xorg-xrandr: inxi -G single screen resolution
-)
-source=(https://sources.archlinux.org/other/community/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('0498c9404a541e39ab69dcca25ba5d05')
-
-package() {
-  cd $srcdir
-  install -D -m755 inxi $pkgdir/usr/bin/inxi
-  install -D -m755 inxi.1.gz $pkgdir/usr/share/man/man1/inxi.1.gz
-}
-
-# vim:set ts=2 sw=2 et:

Copied: inxi/repos/community-any/PKGBUILD (from rev 137350, inxi/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-07-24 08:37:30 UTC (rev 137351)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Florian Pritz f...@gmx.at
+pkgname=inxi
+pkgver=2.2.26
+pkgrel=1
+pkgdesc=script to get system information
+arch=('any')
+url=http://inxi.org;
+license=('GPL')
+depends=(coreutils gawk grep pciutils procps-ng sed)
+optdepends=(
+  dmidecode: inxi -M if no sys machine data
+  file: inxi -o unmounted file system
+  hddtemp: inxi -Dx show hdd temp
+  net-tools: inxi -i ip lan-deprecated
+  iproute2: inxi -i ip lan
+  lm_sensors: inxi -s sensors output
+  usbutils: inxi -A usb audio;-N usb networking
+  kmod: inxi -Ax,-Nx module version
+  systemd-sysvcompat: inxi -I runlevel
+  sudo: inxi -Dx hddtemp-user;-o file-user
+  mesa-demos: inxi -G glx info
+  xorg-xdpyinfo: inxi -G multi screen resolution
+  xorg-xprop: inxi -S desktop data
+  xorg-xrandr: inxi -G single screen resolution
+)
+source=(https://sources.archlinux.org/other/community/$pkgname/$pkgname-$pkgver.tar.gz)
+md5sums=('2441f0bf51770fc0d6b843d463accf1f')
+
+package() {
+  cd $srcdir
+  install -D -m755 inxi $pkgdir/usr/bin/inxi
+  install -D -m755 inxi.1.gz $pkgdir/usr/share/man/man1/inxi.1.gz
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: upgpkg
===
--- upgpkg  2015-07-24 08:37:27 UTC (rev 137350)
+++ upgpkg  2015-07-24 08:37:30 UTC (rev 137351)
@@ -1,4 +0,0 @@
-upgpkg_pre_upgrade() {
-  wget http://inxi.googlecode.com/svn/trunk/inxi.tar.gz -O 
inxi-$_newpkgver.tar.gz
-  scp inxi-$_newpkgver.tar.gz nymeria:/srv/ftp/other/community/inxi
-}

Copied: inxi/repos/community-any/upgpkg (from rev 137350, inxi/trunk/upgpkg)
===
--- upgpkg  (rev 0)
+++ upgpkg  2015-07-24 08:37:30 UTC (rev 137351)
@@ -0,0 +1,4 @@
+upgpkg_pre_upgrade() {
+  wget http://inxi.googlecode.com/svn/trunk/inxi.tar.gz -O 
inxi-$_newpkgver.tar.gz
+  scp inxi-$_newpkgver.tar.gz nymeria:/srv/ftp/other/community/inxi
+}


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

2015-07-24 Thread Florian Pritz
Date: Friday, July 24, 2015 @ 10:37:27
  Author: bluewind
Revision: 137350

upgpkg: inxi 2.2.26-1

upstream update

Modified:
  inxi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-07-24 08:13:46 UTC (rev 137349)
+++ PKGBUILD2015-07-24 08:37:27 UTC (rev 137350)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Florian Pritz f...@gmx.at
 pkgname=inxi
-pkgver=2.2.25
+pkgver=2.2.26
 pkgrel=1
 pkgdesc=script to get system information
 arch=('any')
@@ -25,7 +25,7 @@
   xorg-xrandr: inxi -G single screen resolution
 )
 
source=(https://sources.archlinux.org/other/community/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('0498c9404a541e39ab69dcca25ba5d05')
+md5sums=('2441f0bf51770fc0d6b843d463accf1f')
 
 package() {
   cd $srcdir


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

2015-07-24 Thread Sven-Hendrik Haase
Date: Friday, July 24, 2015 @ 11:15:08
  Author: svenstaro
Revision: 137360

upgpkg: wt 3.3.4-5

Cmake 3.3 rebuild

Modified:
  wt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-07-24 09:01:25 UTC (rev 137359)
+++ PKGBUILD2015-07-24 09:15:08 UTC (rev 137360)
@@ -6,7 +6,7 @@
 pkgname=wt
 pkgver=3.3.4
 _pkgver=3.3.4
-pkgrel=4
+pkgrel=5
 pkgdesc=a C++ library and application server for developing and deploying web 
applications
 arch=('i686' 'x86_64')
 url=http://www.webtoolkit.eu/;


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

2015-07-24 Thread Sven-Hendrik Haase
Date: Friday, July 24, 2015 @ 11:15:13
  Author: svenstaro
Revision: 137361

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

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

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

Copied: wt/repos/community-staging-i686/PKGBUILD (from rev 137360, 
wt/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-07-24 09:15:13 UTC (rev 137361)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: Denis Martinez deuns.marti...@gmail.com
+
+pkgname=wt
+pkgver=3.3.4
+_pkgver=3.3.4
+pkgrel=5
+pkgdesc=a C++ library and application server for developing and deploying web 
applications
+arch=('i686' 'x86_64')
+url=http://www.webtoolkit.eu/;
+license=('GPL')
+depends=('boost-libs' 'libharu' 'graphicsmagick' 'pango' 'zlib')
+makedepends=('boost' 'cmake' 'postgresql-libs' 'fcgi' 'sqlite' 'mysql++' 'qt4' 
'doxygen' 'mesa' 'glu')
+optdepends=('openssl: for SSL support in built-in webserver'
+   'fcgi: for FastCGI support'
+   'postgresql-libs: for PostgreSQL Dbo support'
+   'sqlite: for Sqlite Dbo support'
+   'mysql++: for the hangman example'
+   'qt4: for the Wt/Qt interopability example (wtwithqt)')
+backup=('etc/wt/wt_config.xml')
+source=(http://downloads.sourceforge.net/witty/$pkgname-${_pkgver}.tar.gz)
+md5sums=('fdbb6042c7d6901e254685966ff55fac')
+
+build() {
+  cd ${srcdir}/${pkgname}-${_pkgver}
+
+  [[ -d build ]]  rm -r build
+  mkdir -p build  cd build
+  cmake \
+  -DCONNECTOR_HTTP=ON \
+  -DWT_CPP_11_MODE=-std=c++11 \
+  -DWT_WRASTERIMAGE_IMPLEMENTATION=GraphicsMagick \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DWEBUSER=http \
+  -DWEBGROUP=http \
+  -DUSE_SYSTEM_SQLITE3=ON \
+  -DINSTALL_EXAMPLES=ON \
+  -DBUILD_EXAMPLES=OFF \
+  -DINSTALL_FINDWT_CMAKE_FILE=ON \
+  ..
+  # build examples again when they are compatible with boost 1.58
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${_pkgver}/build
+
+  make DESTDIR=${pkgdir} install
+
+  rm -r ${pkgdir}/usr/cmake
+  rm -rf $pkgdir/var/run
+}

Copied: wt/repos/community-staging-x86_64/PKGBUILD (from rev 137360, 
wt/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-07-24 09:15:13 UTC (rev 137361)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: Denis Martinez deuns.marti...@gmail.com
+
+pkgname=wt
+pkgver=3.3.4
+_pkgver=3.3.4
+pkgrel=5
+pkgdesc=a C++ library and application server for developing and deploying web 
applications
+arch=('i686' 'x86_64')
+url=http://www.webtoolkit.eu/;
+license=('GPL')
+depends=('boost-libs' 'libharu' 'graphicsmagick' 'pango' 'zlib')
+makedepends=('boost' 'cmake' 'postgresql-libs' 'fcgi' 'sqlite' 'mysql++' 'qt4' 
'doxygen' 'mesa' 'glu')
+optdepends=('openssl: for SSL support in built-in webserver'
+   'fcgi: for FastCGI support'
+   'postgresql-libs: for PostgreSQL Dbo support'
+   'sqlite: for Sqlite Dbo support'
+   'mysql++: for the hangman example'
+   'qt4: for the Wt/Qt interopability example (wtwithqt)')
+backup=('etc/wt/wt_config.xml')
+source=(http://downloads.sourceforge.net/witty/$pkgname-${_pkgver}.tar.gz)
+md5sums=('fdbb6042c7d6901e254685966ff55fac')
+
+build() {
+  cd ${srcdir}/${pkgname}-${_pkgver}
+
+  [[ -d build ]]  rm -r build
+  mkdir -p build  cd build
+  cmake \
+  -DCONNECTOR_HTTP=ON \
+  -DWT_CPP_11_MODE=-std=c++11 \
+  -DWT_WRASTERIMAGE_IMPLEMENTATION=GraphicsMagick \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DWEBUSER=http \
+  -DWEBGROUP=http \
+  -DUSE_SYSTEM_SQLITE3=ON \
+  -DINSTALL_EXAMPLES=ON \
+  -DBUILD_EXAMPLES=OFF \
+  -DINSTALL_FINDWT_CMAKE_FILE=ON \
+  ..
+  # build examples again when they are compatible with boost 1.58
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${_pkgver}/build
+
+  make DESTDIR=${pkgdir} install
+
+  rm -r ${pkgdir}/usr/cmake
+  rm -rf $pkgdir/var/run
+}


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

2015-07-24 Thread Felix Yan
Date: Friday, July 24, 2015 @ 10:13:23
  Author: fyan
Revision: 137348

upgpkg: npm 2.13.2-1

Modified:
  npm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-07-23 22:39:10 UTC (rev 137347)
+++ PKGBUILD2015-07-24 08:13:23 UTC (rev 137348)
@@ -2,7 +2,7 @@
 # Maintainer: Felix Yan felixonm...@archlinux.org
 
 pkgname=npm
-pkgver=2.13.1
+pkgver=2.13.2
 pkgrel=1
 pkgdesc='A package manager for javascript'
 arch=('any')


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

2015-07-24 Thread Felix Yan
Date: Friday, July 24, 2015 @ 10:13:46
  Author: fyan
Revision: 137349

archrelease: copy trunk to community-any

Added:
  npm/repos/community-any/PKGBUILD
(from rev 137348, npm/trunk/PKGBUILD)
Deleted:
  npm/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-07-24 08:13:23 UTC (rev 137348)
+++ PKGBUILD2015-07-24 08:13:46 UTC (rev 137349)
@@ -1,47 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-
-pkgname=npm
-pkgver=2.13.1
-pkgrel=1
-pkgdesc='A package manager for javascript'
-arch=('any')
-url='https://www.npmjs.com/'
-license=('custom:Artistic')
-depends=('nodejs')
-provides=('nodejs-node-gyp')
-makedepends=('git' 'procps-ng')
-optdepends=('python2: for node-gyp')
-options=('!emptydirs')
-source=(git+https://github.com/npm/npm.git#tag=v$pkgver;)
-md5sums=('SKIP')
-
-build() {
-  cd npm
-  make
-}
-
-package() {
-  cd npm
-  make NPMOPTS=--prefix=\$pkgdir/usr\ install
-
-  # Why 777? :/
-  chmod -R u=rwX,go=rX $pkgdir
-  
-  # Fix files owned by nobody:
-  chown -R root $pkgdir/usr/lib/node_modules 
-
-  # Fix wrong symlinks
-  for _dir in man1 man3 man5 man7; do
-rm -f $pkgdir/usr/share/man/$_dir/*
-cd $pkgdir/usr/lib/node_modules/npm/man/$_dir
-for _file in *; do
-  ln -s /usr/lib/node_modules/npm/man/$_dir/$_file 
$pkgdir/usr/share/man/$_dir/
-done
-  done
-  
-  # Make symlink for node-gyp
-  ln -s /usr/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js 
$pkgdir/usr/bin/node-gyp
-  
-  install -Dm644 $srcdir/npm/LICENSE 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
-}

Copied: npm/repos/community-any/PKGBUILD (from rev 137348, npm/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-07-24 08:13:46 UTC (rev 137349)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+
+pkgname=npm
+pkgver=2.13.2
+pkgrel=1
+pkgdesc='A package manager for javascript'
+arch=('any')
+url='https://www.npmjs.com/'
+license=('custom:Artistic')
+depends=('nodejs')
+provides=('nodejs-node-gyp')
+makedepends=('git' 'procps-ng')
+optdepends=('python2: for node-gyp')
+options=('!emptydirs')
+source=(git+https://github.com/npm/npm.git#tag=v$pkgver;)
+md5sums=('SKIP')
+
+build() {
+  cd npm
+  make
+}
+
+package() {
+  cd npm
+  make NPMOPTS=--prefix=\$pkgdir/usr\ install
+
+  # Why 777? :/
+  chmod -R u=rwX,go=rX $pkgdir
+  
+  # Fix files owned by nobody:
+  chown -R root $pkgdir/usr/lib/node_modules 
+
+  # Fix wrong symlinks
+  for _dir in man1 man3 man5 man7; do
+rm -f $pkgdir/usr/share/man/$_dir/*
+cd $pkgdir/usr/lib/node_modules/npm/man/$_dir
+for _file in *; do
+  ln -s /usr/lib/node_modules/npm/man/$_dir/$_file 
$pkgdir/usr/share/man/$_dir/
+done
+  done
+  
+  # Make symlink for node-gyp
+  ln -s /usr/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js 
$pkgdir/usr/bin/node-gyp
+  
+  install -Dm644 $srcdir/npm/LICENSE 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
+}


[arch-commits] Commit in lib32-libtiff/repos/multilib-x86_64 (8 files)

2015-07-24 Thread Florian Pritz
Date: Friday, July 24, 2015 @ 10:43:14
  Author: bluewind
Revision: 137355

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-libtiff/repos/multilib-x86_64/PKGBUILD
(from rev 137354, lib32-libtiff/trunk/PKGBUILD)
Deleted:
  lib32-libtiff/repos/multilib-x86_64/PKGBUILD
  lib32-libtiff/repos/multilib-x86_64/tiff-3.9.7-CVE-2012-4447.patch
  lib32-libtiff/repos/multilib-x86_64/tiff-3.9.7-CVE-2012-4564.patch
  lib32-libtiff/repos/multilib-x86_64/tiff-4.0.3-CVE-2013-1960.patch
  lib32-libtiff/repos/multilib-x86_64/tiff-4.0.3-CVE-2013-1961.patch
  lib32-libtiff/repos/multilib-x86_64/tiff-4.0.3-libjpeg-turbo.patch
  lib32-libtiff/repos/multilib-x86_64/tiff-4.0.3-tiff2pdf-colors.patch

--+
 PKGBUILD |  107 ++---
 tiff-3.9.7-CVE-2012-4447.patch   |   37 -
 tiff-3.9.7-CVE-2012-4564.patch   |   77 ---
 tiff-4.0.3-CVE-2013-1960.patch   |  145 ---
 tiff-4.0.3-CVE-2013-1961.patch   |  759 -
 tiff-4.0.3-libjpeg-turbo.patch   |  122 -
 tiff-4.0.3-tiff2pdf-colors.patch |   15 
 7 files changed, 42 insertions(+), 1220 deletions(-)

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


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

2015-07-24 Thread Florian Pritz
Date: Friday, July 24, 2015 @ 10:42:24
  Author: bluewind
Revision: 137352

upgpkg: lib32-libldap 2.4.41-1

upstream update

Modified:
  lib32-libldap/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-07-24 08:37:30 UTC (rev 137351)
+++ PKGBUILD2015-07-24 08:42:24 UTC (rev 137352)
@@ -4,7 +4,7 @@
 
 _pkgbasename=libldap
 pkgname=lib32-$_pkgbasename
-pkgver=2.4.40
+pkgver=2.4.41
 pkgrel=1
 pkgdesc=Lightweight Directory Access Protocol (LDAP) client libraries 
(32-bit)
 arch=('x86_64')
@@ -14,7 +14,7 @@
 makedepends=(gcc-multilib)
 
source=(ftp://ftp.openldap.org/pub/OpenLDAP/openldap-release/openldap-${pkgver}.tgz;
 'ntlm.patch')
-md5sums=('423c1f23d2a0cb96b3e9baf7e9d7dda7'
+md5sums=('3f1a4cea52827e18feaedfdc1634b5d0'
  '4258ddbef923d1f29f2843bc050f8c56')
 
 build() {


[arch-commits] Commit in lib32-libldap/repos/multilib-x86_64 (4 files)

2015-07-24 Thread Florian Pritz
Date: Friday, July 24, 2015 @ 10:42:27
  Author: bluewind
Revision: 137353

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-libldap/repos/multilib-x86_64/PKGBUILD
(from rev 137352, lib32-libldap/trunk/PKGBUILD)
  lib32-libldap/repos/multilib-x86_64/ntlm.patch
(from rev 137352, lib32-libldap/trunk/ntlm.patch)
Deleted:
  lib32-libldap/repos/multilib-x86_64/PKGBUILD
  lib32-libldap/repos/multilib-x86_64/ntlm.patch

+
 PKGBUILD   |  120 +++
 ntlm.patch |  460 +--
 2 files changed, 290 insertions(+), 290 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-07-24 08:42:24 UTC (rev 137352)
+++ PKGBUILD2015-07-24 08:42:27 UTC (rev 137353)
@@ -1,60 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: Judd Vinet jvi...@zeroflux.org
-
-_pkgbasename=libldap
-pkgname=lib32-$_pkgbasename
-pkgver=2.4.40
-pkgrel=1
-pkgdesc=Lightweight Directory Access Protocol (LDAP) client libraries 
(32-bit)
-arch=('x86_64')
-license=('custom')
-url=http://www.openldap.org/;
-depends=('lib32-openssl' $_pkgbasename)
-makedepends=(gcc-multilib)
-source=(ftp://ftp.openldap.org/pub/OpenLDAP/openldap-release/openldap-${pkgver}.tgz;
-'ntlm.patch')
-md5sums=('423c1f23d2a0cb96b3e9baf7e9d7dda7'
- '4258ddbef923d1f29f2843bc050f8c56')
-
-build() {
-  export CC=gcc -m32
-  export CXX=g++ -m32
-  export PKG_CONFIG_PATH=/usr/lib32/pkgconfig
-
-  cd ${srcdir}/openldap-${pkgver}
-
-  patch -Np1 -i ${srcdir}/ntlm.patch
-
-  ./configure --prefix=/usr \
-  --libexecdir=/usr/sbin \
-  --sysconfdir=/etc \
- --mandir=/usr/share/man \
-  --localstatedir=/var/lib/openldap \
-  --enable-crypt --enable-dynamic \
-  --with-threads --disable-wrappers \
- --disable-spasswd --without-cyrus-sasl \
- --disable-bdb --disable-hdb --libdir=/usr/lib32
-
-  cd include
-  make
-
-  cd ../libraries
-  make depend
-  make
-
-}
-
-package() {
-  cd ${srcdir}/openldap-${pkgver}
-
-  cd include
-  make DESTDIR=${pkgdir} install
-
-  cd ../libraries
-  make DESTDIR=${pkgdir} install
-
-  rm -rf ${pkgdir}/usr/{include,share,bin} $pkgdir/etc
-  mkdir -p $pkgdir/usr/share/licenses
-  ln -s $_pkgbasename $pkgdir/usr/share/licenses/$pkgname
-}

Copied: lib32-libldap/repos/multilib-x86_64/PKGBUILD (from rev 137352, 
lib32-libldap/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-07-24 08:42:27 UTC (rev 137353)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer:
+# Contributor: Judd Vinet jvi...@zeroflux.org
+
+_pkgbasename=libldap
+pkgname=lib32-$_pkgbasename
+pkgver=2.4.41
+pkgrel=1
+pkgdesc=Lightweight Directory Access Protocol (LDAP) client libraries 
(32-bit)
+arch=('x86_64')
+license=('custom')
+url=http://www.openldap.org/;
+depends=('lib32-openssl' $_pkgbasename)
+makedepends=(gcc-multilib)
+source=(ftp://ftp.openldap.org/pub/OpenLDAP/openldap-release/openldap-${pkgver}.tgz;
+'ntlm.patch')
+md5sums=('3f1a4cea52827e18feaedfdc1634b5d0'
+ '4258ddbef923d1f29f2843bc050f8c56')
+
+build() {
+  export CC=gcc -m32
+  export CXX=g++ -m32
+  export PKG_CONFIG_PATH=/usr/lib32/pkgconfig
+
+  cd ${srcdir}/openldap-${pkgver}
+
+  patch -Np1 -i ${srcdir}/ntlm.patch
+
+  ./configure --prefix=/usr \
+  --libexecdir=/usr/sbin \
+  --sysconfdir=/etc \
+ --mandir=/usr/share/man \
+  --localstatedir=/var/lib/openldap \
+  --enable-crypt --enable-dynamic \
+  --with-threads --disable-wrappers \
+ --disable-spasswd --without-cyrus-sasl \
+ --disable-bdb --disable-hdb --libdir=/usr/lib32
+
+  cd include
+  make
+
+  cd ../libraries
+  make depend
+  make
+
+}
+
+package() {
+  cd ${srcdir}/openldap-${pkgver}
+
+  cd include
+  make DESTDIR=${pkgdir} install
+
+  cd ../libraries
+  make DESTDIR=${pkgdir} install
+
+  rm -rf ${pkgdir}/usr/{include,share,bin} $pkgdir/etc
+  mkdir -p $pkgdir/usr/share/licenses
+  ln -s $_pkgbasename $pkgdir/usr/share/licenses/$pkgname
+}

Deleted: ntlm.patch
===
--- ntlm.patch  2015-07-24 08:42:24 UTC (rev 137352)
+++ ntlm.patch  2015-07-24 08:42:27 UTC (rev 137353)
@@ -1,230 +0,0 @@
-Patch from evolution-exchange (2.10.3).  The ldap_ntlm_bind function is
-actually called by evolution-data-server, checked at version 1.12.2.
-Without this patch, the Exchange addressbook integration uses simple binds
-with cleartext passwords.
-
-Russ checked with openldap-software for upstream's opinion on this patch
-on 2007-12-21.  Upstream had never received it as a patch submission and
-given that it's apparently only for older Exchange servers that can't do
-SASL and DIGEST-MD5, it's not very appealing.
-
-Bug#457374 filed against 

[arch-commits] Commit in lib32-libtiff/trunk (7 files)

2015-07-24 Thread Florian Pritz
Date: Friday, July 24, 2015 @ 10:43:11
  Author: bluewind
Revision: 137354

upgpkg: lib32-libtiff 4.0.4-1

upstream update

Modified:
  lib32-libtiff/trunk/PKGBUILD
Deleted:
  lib32-libtiff/trunk/tiff-3.9.7-CVE-2012-4447.patch
  lib32-libtiff/trunk/tiff-3.9.7-CVE-2012-4564.patch
  lib32-libtiff/trunk/tiff-4.0.3-CVE-2013-1960.patch
  lib32-libtiff/trunk/tiff-4.0.3-CVE-2013-1961.patch
  lib32-libtiff/trunk/tiff-4.0.3-libjpeg-turbo.patch
  lib32-libtiff/trunk/tiff-4.0.3-tiff2pdf-colors.patch

--+
 PKGBUILD |   41 -
 tiff-3.9.7-CVE-2012-4447.patch   |   37 -
 tiff-3.9.7-CVE-2012-4564.patch   |   77 ---
 tiff-4.0.3-CVE-2013-1960.patch   |  145 ---
 tiff-4.0.3-CVE-2013-1961.patch   |  759 -
 tiff-4.0.3-libjpeg-turbo.patch   |  122 -
 tiff-4.0.3-tiff2pdf-colors.patch |   15 
 7 files changed, 9 insertions(+), 1187 deletions(-)

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


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

2015-07-24 Thread Sven-Hendrik Haase
Date: Friday, July 24, 2015 @ 11:01:17
  Author: svenstaro
Revision: 137358

upgpkg: glm 0.9.6.3-2

Cmake 3.3 rebuild

Modified:
  glm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-07-24 08:44:36 UTC (rev 137357)
+++ PKGBUILD2015-07-24 09:01:17 UTC (rev 137358)
@@ -2,7 +2,7 @@
 # Contributor: Peter Hatina phatina AT gmail.com
 pkgname=glm
 pkgver=0.9.6.3
-pkgrel=1
+pkgrel=2
 pkgdesc=C++ mathematics library for 3D software based on the OpenGL Shading 
Language (GLSL) specification
 arch=('any')
 license=('MIT')
@@ -20,6 +20,6 @@
 find $pkgdir -type f -exec chmod 644 {} \;
 find $pkgdir -type d -exec chmod 755 {} \;
 
-install -Dm644 util/FindGLM.cmake 
$pkgdir/usr/share/cmake-3.2/Modules/FindGLM.cmake
+install -Dm644 util/FindGLM.cmake 
$pkgdir/usr/share/cmake-3.3/Modules/FindGLM.cmake
 install -Dm644 copying.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
 }


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

2015-07-24 Thread Sven-Hendrik Haase
Date: Friday, July 24, 2015 @ 11:18:20
  Author: svenstaro
Revision: 137362

upgpkg: sfml 2.3.1-2

Cmake 3.3 rebuild

Modified:
  sfml/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-07-24 09:15:13 UTC (rev 137361)
+++ PKGBUILD2015-07-24 09:18:20 UTC (rev 137362)
@@ -4,7 +4,7 @@
 
 pkgname=sfml
 pkgver=2.3.1
-pkgrel=1
+pkgrel=2
 pkgdesc='A simple, fast, cross-platform, and object-oriented multimedia API'
 arch=('i686' 'x86_64')
 url='http://www.sfml-dev.org/'
@@ -33,7 +33,7 @@
 
   make DESTDIR=$pkgdir/ install
 
-  install -Dm644 $pkgdir/usr/share/SFML/cmake/Modules/FindSFML.cmake 
$pkgdir/usr/share/cmake-3.2/Modules/FindSFML.cmake
+  install -Dm644 $pkgdir/usr/share/SFML/cmake/Modules/FindSFML.cmake 
$pkgdir/usr/share/cmake-3.3/Modules/FindSFML.cmake
 
   install -Dm644 ../license.txt 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
 }


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

2015-07-24 Thread Sven-Hendrik Haase
Date: Friday, July 24, 2015 @ 11:18:25
  Author: svenstaro
Revision: 137363

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

Added:
  sfml/repos/community-staging-i686/
  sfml/repos/community-staging-i686/PKGBUILD
(from rev 137362, sfml/trunk/PKGBUILD)
  sfml/repos/community-staging-i686/sfml.install
(from rev 137362, sfml/trunk/sfml.install)
  sfml/repos/community-staging-x86_64/
  sfml/repos/community-staging-x86_64/PKGBUILD
(from rev 137362, sfml/trunk/PKGBUILD)
  sfml/repos/community-staging-x86_64/sfml.install
(from rev 137362, sfml/trunk/sfml.install)

---+
 community-staging-i686/PKGBUILD   |   40 
 community-staging-i686/sfml.install   |3 ++
 community-staging-x86_64/PKGBUILD |   40 
 community-staging-x86_64/sfml.install |3 ++
 4 files changed, 86 insertions(+)

Copied: sfml/repos/community-staging-i686/PKGBUILD (from rev 137362, 
sfml/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-07-24 09:18:25 UTC (rev 137363)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: Ondrej Martinak omarti...@gmail.com
+
+pkgname=sfml
+pkgver=2.3.1
+pkgrel=2
+pkgdesc='A simple, fast, cross-platform, and object-oriented multimedia API'
+arch=('i686' 'x86_64')
+url='http://www.sfml-dev.org/'
+license=('zlib')
+depends=('libsndfile' 'libxrandr' 'libjpeg' 'openal' 'glew' 'freetype2' 
'xcb-util-image')
+makedepends=('mesa' 'cmake' 'doxygen' 'git')
+install=sfml.install
+source=(git+git://github.com/LaurentGomila/SFML.git#tag=${pkgver})
+md5sums=('SKIP')
+
+build() {
+  cd $srcdir/SFML
+
+  mkdir build  cd build
+  cmake .. \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DSFML_BUILD_EXAMPLES=1 \
+  -DSFML_BUILD_DOC=1 \
+  -DSFML_INSTALL_PKGCONFIG_FILES=1
+  make
+  make doc
+}
+
+package() {
+  cd $srcdir/SFML/build
+
+  make DESTDIR=$pkgdir/ install
+
+  install -Dm644 $pkgdir/usr/share/SFML/cmake/Modules/FindSFML.cmake 
$pkgdir/usr/share/cmake-3.3/Modules/FindSFML.cmake
+
+  install -Dm644 ../license.txt 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}
+

Copied: sfml/repos/community-staging-i686/sfml.install (from rev 137362, 
sfml/trunk/sfml.install)
===
--- community-staging-i686/sfml.install (rev 0)
+++ community-staging-i686/sfml.install 2015-07-24 09:18:25 UTC (rev 137363)
@@ -0,0 +1,3 @@
+post_install() {
+echo To view the SFML samples, go to /usr/share/SFML/examples/ and run 
them individually
+}

Copied: sfml/repos/community-staging-x86_64/PKGBUILD (from rev 137362, 
sfml/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-07-24 09:18:25 UTC (rev 137363)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: Ondrej Martinak omarti...@gmail.com
+
+pkgname=sfml
+pkgver=2.3.1
+pkgrel=2
+pkgdesc='A simple, fast, cross-platform, and object-oriented multimedia API'
+arch=('i686' 'x86_64')
+url='http://www.sfml-dev.org/'
+license=('zlib')
+depends=('libsndfile' 'libxrandr' 'libjpeg' 'openal' 'glew' 'freetype2' 
'xcb-util-image')
+makedepends=('mesa' 'cmake' 'doxygen' 'git')
+install=sfml.install
+source=(git+git://github.com/LaurentGomila/SFML.git#tag=${pkgver})
+md5sums=('SKIP')
+
+build() {
+  cd $srcdir/SFML
+
+  mkdir build  cd build
+  cmake .. \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DSFML_BUILD_EXAMPLES=1 \
+  -DSFML_BUILD_DOC=1 \
+  -DSFML_INSTALL_PKGCONFIG_FILES=1
+  make
+  make doc
+}
+
+package() {
+  cd $srcdir/SFML/build
+
+  make DESTDIR=$pkgdir/ install
+
+  install -Dm644 $pkgdir/usr/share/SFML/cmake/Modules/FindSFML.cmake 
$pkgdir/usr/share/cmake-3.3/Modules/FindSFML.cmake
+
+  install -Dm644 ../license.txt 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}
+

Copied: sfml/repos/community-staging-x86_64/sfml.install (from rev 137362, 
sfml/trunk/sfml.install)
===
--- community-staging-x86_64/sfml.install   (rev 0)
+++ community-staging-x86_64/sfml.install   2015-07-24 09:18:25 UTC (rev 
137363)
@@ -0,0 +1,3 @@
+post_install() {
+echo To view the SFML samples, go to /usr/share/SFML/examples/ and run 
them individually
+}


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

2015-07-24 Thread Sven-Hendrik Haase
Date: Friday, July 24, 2015 @ 11:01:25
  Author: svenstaro
Revision: 137359

archrelease: copy trunk to community-staging-any

Added:
  glm/repos/community-staging-any/
  glm/repos/community-staging-any/PKGBUILD
(from rev 137358, glm/trunk/PKGBUILD)

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

Copied: glm/repos/community-staging-any/PKGBUILD (from rev 137358, 
glm/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2015-07-24 09:01:25 UTC (rev 137359)
@@ -0,0 +1,25 @@
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: Peter Hatina phatina AT gmail.com
+pkgname=glm
+pkgver=0.9.6.3
+pkgrel=2
+pkgdesc=C++ mathematics library for 3D software based on the OpenGL Shading 
Language (GLSL) specification
+arch=('any')
+license=('MIT')
+url=http://glm.g-truc.net;
+source=(http://sourceforge.net/projects/ogl-math/files/glm-$pkgver/glm-$pkgver.zip;)
+md5sums=('acd0b517c37ed25c3f11ee155ee8257e')
+
+package() {
+cd $pkgname
+mkdir -p $pkgdir/usr/include/glm
+mkdir -p $pkgdir/usr/share/doc
+cp -r glm $pkgdir/usr/include
+cp -r doc $pkgdir/usr/share/doc/glm
+rm -f $pkgdir/usr/include/glm/CMakeLists.txt
+find $pkgdir -type f -exec chmod 644 {} \;
+find $pkgdir -type d -exec chmod 755 {} \;
+
+install -Dm644 util/FindGLM.cmake 
$pkgdir/usr/share/cmake-3.3/Modules/FindGLM.cmake
+install -Dm644 copying.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}


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

2015-07-24 Thread Sven-Hendrik Haase
Date: Friday, July 24, 2015 @ 11:22:43
  Author: svenstaro
Revision: 137365

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

Added:
  gluon/repos/community-staging-i686/
  gluon/repos/community-staging-i686/PKGBUILD
(from rev 137364, gluon/trunk/PKGBUILD)
  gluon/repos/community-staging-i686/gcc47.patch
(from rev 137364, gluon/trunk/gcc47.patch)
  gluon/repos/community-staging-i686/gluon.install
(from rev 137364, gluon/trunk/gluon.install)
  gluon/repos/community-staging-x86_64/
  gluon/repos/community-staging-x86_64/PKGBUILD
(from rev 137364, gluon/trunk/PKGBUILD)
  gluon/repos/community-staging-x86_64/gcc47.patch
(from rev 137364, gluon/trunk/gcc47.patch)
  gluon/repos/community-staging-x86_64/gluon.install
(from rev 137364, gluon/trunk/gluon.install)

+
 community-staging-i686/PKGBUILD|   43 +++
 community-staging-i686/gcc47.patch |   31 ++
 community-staging-i686/gluon.install   |   15 ++
 community-staging-x86_64/PKGBUILD  |   43 +++
 community-staging-x86_64/gcc47.patch   |   31 ++
 community-staging-x86_64/gluon.install |   15 ++
 6 files changed, 178 insertions(+)

Copied: gluon/repos/community-staging-i686/PKGBUILD (from rev 137364, 
gluon/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-07-24 09:22:43 UTC (rev 137365)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: Ivan Sichmann Freitas ivansichfrei...@gmail.com
+
+pkgname=gluon
+pkgver=0.71.0
+_pkgver=0.71
+pkgrel=8
+pkgdesc=A free and open source platform for creating and distributing games
+arch=('i686' 'x86_64')
+url=http://gluon.gamingfreedom.org/;
+license=('LGPL')
+depends=('kdelibs' 'libsndfile' 'alure')
+makedepends=('cmake' 'automoc4' 'mesa' 'kdevplatform')
+install=gluon.install
+source=(http://download.kde.org/unstable/$pkgname/$_pkgver/src/$pkgname-$pkgver.tar.gz;
+'gcc47.patch')
+md5sums=('e4f284c0ae00e5b8a58cc3e6201857fe'
+ '92adbf8b23f4af2a15a005b031c81c5f')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  patch -p1 -i $srcdir/gcc47.patch
+
+  cd $srcdir
+  mkdir build
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_SKIP_RPATH=ON
+  grep -rl Qt4::moc|xargs sed -i s/Qt4::moc/moc-qt4/ # No idea what's up 
here but I can't be bothered to fix it properly
+  make
+}
+
+package() {
+  cd $srcdir/build
+  make DESTDIR=$pkgdir install
+
+  if [[ $CARCH == x86_64 ]]; then
+mv ${pkgdir}/usr/lib64 ${pkgdir}/usr/lib
+  fi
+}

Copied: gluon/repos/community-staging-i686/gcc47.patch (from rev 137364, 
gluon/trunk/gcc47.patch)
===
--- community-staging-i686/gcc47.patch  (rev 0)
+++ community-staging-i686/gcc47.patch  2015-07-24 09:22:43 UTC (rev 137365)
@@ -0,0 +1,31 @@
+From: Christoph Feck christ...@maxiom.de
+Date: Fri, 23 Mar 2012 22:35:09 +
+Subject: Fix includes
+X-Git-Url: 
http://quickgit.kde.org/?p=gluon.gitamp;a=commitdiffamp;h=bccbda88a6bc53ac20091bb6aefd2f1b501ba31a
+---
+Fix includes
+---
+
+
+--- a/input/linux/detectlinux.cpp
 b/input/linux/detectlinux.cpp
+@@ -26,6 +26,7 @@
+ 
+ #include QtCore/QDir
+ 
++#include unistd.h
+ // #include libudev.h
+ 
+ using namespace GluonInput;
+
+--- a/input/linux/inputthread.cpp
 b/input/linux/inputthread.cpp
+@@ -30,6 +30,7 @@
+ // #include QtCore/QStringList
+ 
+ #include fcntl.h
++#include unistd.h
+ #include sys/stat.h
+ #include sys/types.h
+ #include linux/input.h
+

Copied: gluon/repos/community-staging-i686/gluon.install (from rev 137364, 
gluon/trunk/gluon.install)
===
--- community-staging-i686/gluon.install(rev 0)
+++ community-staging-i686/gluon.install2015-07-24 09:22:43 UTC (rev 
137365)
@@ -0,0 +1,15 @@
+post_install() {
+  update-desktop-database -q
+  xdg-icon-resource forceupdate --theme hicolor
+  update-mime-database usr/share/mime  /dev/null
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  update-desktop-database -q
+  xdg-icon-resource forceupdate --theme hicolor
+  update-mime-database usr/share/mime  /dev/null
+}

Copied: gluon/repos/community-staging-x86_64/PKGBUILD (from rev 137364, 
gluon/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-07-24 09:22:43 UTC (rev 137365)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: Ivan Sichmann Freitas 

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

2015-07-24 Thread Sven-Hendrik Haase
Date: Friday, July 24, 2015 @ 11:22:37
  Author: svenstaro
Revision: 137364

upgpkg: gluon 0.71.0-8

Cmake 3.3 rebuild

Modified:
  gluon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-07-24 09:18:25 UTC (rev 137363)
+++ PKGBUILD2015-07-24 09:22:37 UTC (rev 137364)
@@ -5,7 +5,7 @@
 pkgname=gluon
 pkgver=0.71.0
 _pkgver=0.71
-pkgrel=7
+pkgrel=8
 pkgdesc=A free and open source platform for creating and distributing games
 arch=('i686' 'x86_64')
 url=http://gluon.gamingfreedom.org/;


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

2015-07-24 Thread Florian Pritz
Date: Friday, July 24, 2015 @ 10:44:33
  Author: bluewind
Revision: 137356

upgpkg: lib32-tdb 1.3.6-1

upstream update

Modified:
  lib32-tdb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-07-24 08:43:14 UTC (rev 137355)
+++ PKGBUILD2015-07-24 08:44:33 UTC (rev 137356)
@@ -3,7 +3,7 @@
 
 _pkgbasename=tdb
 pkgname=lib32-$_pkgbasename
-pkgver=1.3.4
+pkgver=1.3.6
 pkgrel=1
 pkgdesc=A Trivial Database similar to GDBM but allows simultaneous commits 
(32-bit)
 arch=(x86_64)
@@ -12,7 +12,7 @@
 depends=(lib32-glibc $_pkgbasename)
 makedepends=(gcc-multilib libxslt python2)
 source=(http://samba.org/ftp/${_pkgbasename}/${_pkgbasename}-${pkgver}.tar.gz)
-md5sums=('60a9ad41e45d53e97c7cd4262932a53a')
+md5sums=('d4df2bcebbcd18463408b5a1ccb5b71b')
 
 build() {
   export CC=gcc -m32


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

2015-07-24 Thread Florian Pritz
Date: Friday, July 24, 2015 @ 10:44:36
  Author: bluewind
Revision: 137357

archrelease: copy trunk to multilib-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-07-24 08:44:33 UTC (rev 137356)
+++ PKGBUILD2015-07-24 08:44:36 UTC (rev 137357)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Florian Pritz f...@xssn.at
-
-_pkgbasename=tdb
-pkgname=lib32-$_pkgbasename
-pkgver=1.3.4
-pkgrel=1
-pkgdesc=A Trivial Database similar to GDBM but allows simultaneous commits 
(32-bit)
-arch=(x86_64)
-license=('GPL3')
-url=http://tdb.samba.org/;
-depends=(lib32-glibc $_pkgbasename)
-makedepends=(gcc-multilib libxslt python2)
-source=(http://samba.org/ftp/${_pkgbasename}/${_pkgbasename}-${pkgver}.tar.gz)
-md5sums=('60a9ad41e45d53e97c7cd4262932a53a')
-
-build() {
-  export CC=gcc -m32
-  export CXX=g++ -m32
-  export PKG_CONFIG_PATH=/usr/lib32/pkgconfig
-
-   cd ${srcdir}/${_pkgbasename}-${pkgver}
-
-   sed -i -e 's#python#python2#g' buildtools/bin/waf
-
-   ./configure --prefix=/usr \
-   --localstatedir=/var \
-   --sysconfdir=/etc/samba \
-   --libdir=/usr/lib32 \
-   --disable-python
-   make
-}
-
-package() {
-  cd ${srcdir}/${_pkgbasename}-${pkgver}
-  make -j1  DESTDIR=$pkgdir install
-  rm -rf ${pkgdir}/usr/{include,share,bin}
-}

Copied: lib32-tdb/repos/multilib-x86_64/PKGBUILD (from rev 137356, 
lib32-tdb/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-07-24 08:44:36 UTC (rev 137357)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Florian Pritz f...@xssn.at
+
+_pkgbasename=tdb
+pkgname=lib32-$_pkgbasename
+pkgver=1.3.6
+pkgrel=1
+pkgdesc=A Trivial Database similar to GDBM but allows simultaneous commits 
(32-bit)
+arch=(x86_64)
+license=('GPL3')
+url=http://tdb.samba.org/;
+depends=(lib32-glibc $_pkgbasename)
+makedepends=(gcc-multilib libxslt python2)
+source=(http://samba.org/ftp/${_pkgbasename}/${_pkgbasename}-${pkgver}.tar.gz)
+md5sums=('d4df2bcebbcd18463408b5a1ccb5b71b')
+
+build() {
+  export CC=gcc -m32
+  export CXX=g++ -m32
+  export PKG_CONFIG_PATH=/usr/lib32/pkgconfig
+
+   cd ${srcdir}/${_pkgbasename}-${pkgver}
+
+   sed -i -e 's#python#python2#g' buildtools/bin/waf
+
+   ./configure --prefix=/usr \
+   --localstatedir=/var \
+   --sysconfdir=/etc/samba \
+   --libdir=/usr/lib32 \
+   --disable-python
+   make
+}
+
+package() {
+  cd ${srcdir}/${_pkgbasename}-${pkgver}
+  make -j1  DESTDIR=$pkgdir install
+  rm -rf ${pkgdir}/usr/{include,share,bin}
+}


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

2015-07-24 Thread Ike Devolder
Date: Friday, July 24, 2015 @ 14:44:05
  Author: idevolder
Revision: 137372

kodi :: 15.0

Modified:
  kodi/trunk/PKGBUILD
Deleted:
  kodi/trunk/kodi-14.0-dvddemux-ffmpeg.patch
  kodi/trunk/kodi-14.0-gcc5.patch

-+
 PKGBUILD|   29 +
 kodi-14.0-dvddemux-ffmpeg.patch |   13 -
 kodi-14.0-gcc5.patch|   25 -
 3 files changed, 9 insertions(+), 58 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-07-24 12:35:14 UTC (rev 137371)
+++ PKGBUILD2015-07-24 12:44:05 UTC (rev 137372)
@@ -13,9 +13,9 @@
 
 pkgbase=kodi
 pkgname=('kodi' 'kodi-eventclients')
-pkgver=14.2
-_codename=Helix
-pkgrel=5
+pkgver=15.0
+_codename=Isengard
+pkgrel=1
 arch=('i686' 'x86_64')
 url=http://kodi.tv;
 license=('GPL2')
@@ -24,18 +24,15 @@
   'gperf' 'hicolor-icon-theme' 'jasper' 'java-runtime' 'libaacs' 'libass'
   'libbluray' 'libcdio' 'libcec' 'libgl' 'libmariadbclient' 'libmicrohttpd'
   'libmodplug' 'libmpeg2' 'libnfs' 'libplist' 'libpulse' 'libssh' 'libva'
-  'libvdpau' 'libxrandr' 'libxslt' 'lzo' 'nasm' 'nss-mdns' 'python2-pillow'
-  'python2-pybluez' 'python2-simplejson' 'rtmpdump' 'sdl2' 'sdl_image'
-  'shairplay' 'smbclient' 'swig' 'taglib' 'tinyxml' 'unzip' 'upower' 'yajl' 
'zip'
+  'libvdpau' 'libxrandr' 'libxslt' 'lzo' 'mesa' 'nasm' 'nss-mdns'
+  'python2-pillow' 'python2-pybluez' 'python2-simplejson' 'rtmpdump' 'sdl2'
+  'sdl_image' 'shairplay' 'smbclient' 'swig' 'taglib' 'tinyxml' 'unzip' 
'upower'
+  'yajl' 'zip'
 )
 source=(
   
$pkgname-$pkgver-$_codename.tar.gz::https://github.com/xbmc/xbmc/archive/$pkgver-$_codename.tar.gz;
-  kodi-14.0-dvddemux-ffmpeg.patch
-  kodi-14.0-gcc5.patch
 )
-sha256sums=('d9cb8590430a925fb789a5beb4da2695cdcd2d2500dd31126f3b77b31aa267f4'
-'01453e18987b01ad40c9ae423a7e47422e537b648e74f5c942f132c37e6370f8'
-'598f36cea0f63440e5755d88752552240fc5cd2b98e4f80a9feeb9605c91')
+sha256sums=('27dba173cfe74b323f4dbaa72ae2bfe5961f76c27bddcd5210253be91cae0dff')
 
 prepare() {
   cd $srcdir/xbmc-$pkgver-$_codename
@@ -44,14 +41,6 @@
   sed 's|^#!.*python$|#!/usr/bin/python2|' -i 
tools/depends/native/rpl-native/rpl
sed 's/python/python2/' -i tools/Linux/kodi.sh.in
   sed 's/shell python/shell python2/' -i tools/EventClients/Makefile.in
-  # disable wiiremote due to incompatibility with bluez-5.29
-  sed '/WiiRemote/d' -i tools/EventClients/Makefile.in
-  sed '/mkdir -p $(DESTDIR)$(bindir)/i \
-install:' -i tools/EventClients/Makefile.in
-
-  patch -p0 -i $srcdir/kodi-14.0-dvddemux-ffmpeg.patch
-  patch -p1 -i $srcdir/kodi-14.0-gcc5.patch
-
 }
 
 build() {
@@ -71,7 +60,7 @@
 --enable-libbluray \
 --enable-shared-libraries \
 --with-lirc-device=/run/lirc/lircd \
-ac_cv_lib_bluetooth_hci_devid=no
+ac_cv_type__Bool=yes
 
   # Now (finally) build
   make

Deleted: kodi-14.0-dvddemux-ffmpeg.patch
===
--- kodi-14.0-dvddemux-ffmpeg.patch 2015-07-24 12:35:14 UTC (rev 137371)
+++ kodi-14.0-dvddemux-ffmpeg.patch 2015-07-24 12:44:05 UTC (rev 137372)
@@ -1,13 +0,0 @@
 xbmc/cores/dvdplayer/DVDDemuxers/DVDDemuxFFmpeg.cpp.orig   2014-08-01 
11:18:24.0 -0500
-+++ xbmc/cores/dvdplayer/DVDDemuxers/DVDDemuxFFmpeg.cpp2014-08-24 
15:36:34.844966866 -0500
-@@ -519,10 +519,6 @@
- 
- void CDVDDemuxFFmpeg::Flush()
- {
--  // naughty usage of an internal ffmpeg function
--  if (m_pFormatContext)
--av_read_frame_flush(m_pFormatContext);
--
-   m_currentPts = DVD_NOPTS_VALUE;
- 
-   m_pkt.result = -1;

Deleted: kodi-14.0-gcc5.patch
===
--- kodi-14.0-gcc5.patch2015-07-24 12:35:14 UTC (rev 137371)
+++ kodi-14.0-gcc5.patch2015-07-24 12:44:05 UTC (rev 137372)
@@ -1,25 +0,0 @@
 a/xbmc/screensavers/rsxs-0.9/lib/argp.h.orig   2015-03-26 
13:25:20.0 -0500
-+++ b/xbmc/screensavers/rsxs-0.9/lib/argp.h2015-05-19 16:05:20.992493851 
-0500
-@@ -559,7 +559,7 @@
- # endif
- 
- # ifndef ARGP_EI
--#  define ARGP_EI extern __inline__
-+#  define ARGP_EI extern __inline__ __attribute__ ((gnu_inline)) 
- # endif
- 
- ARGP_EI void
 a/xbmc/screensavers/rsxs-0.9/lib/argp-fmtstream.h.orig 2015-03-26 
13:25:20.0 -0500
-+++ b/xbmc/screensavers/rsxs-0.9/lib/argp-fmtstream.h  2015-05-19 
16:02:25.775456866 -0500
-@@ -198,11 +198,7 @@
- #endif
- 
- #ifndef ARGP_FS_EI
--#ifdef __clang__
- #define ARGP_FS_EI extern inline __attribute__ ((__gnu_inline__))
--#else
--#define ARGP_FS_EI extern inline
--#endif
- #endif
- 
- ARGP_FS_EI size_t


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

2015-07-24 Thread Ike Devolder
Date: Friday, July 24, 2015 @ 14:44:39
  Author: idevolder
Revision: 137373

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

Added:
  kodi/repos/community-i686/PKGBUILD
(from rev 137372, kodi/trunk/PKGBUILD)
  kodi/repos/community-i686/kodi.install
(from rev 137372, kodi/trunk/kodi.install)
  kodi/repos/community-x86_64/PKGBUILD
(from rev 137372, kodi/trunk/PKGBUILD)
  kodi/repos/community-x86_64/kodi.install
(from rev 137372, kodi/trunk/kodi.install)
Deleted:
  kodi/repos/community-i686/PKGBUILD
  kodi/repos/community-i686/kodi-14.0-dvddemux-ffmpeg.patch
  kodi/repos/community-i686/kodi-14.0-gcc5.patch
  kodi/repos/community-i686/kodi.install
  kodi/repos/community-x86_64/PKGBUILD
  kodi/repos/community-x86_64/kodi-14.0-dvddemux-ffmpeg.patch
  kodi/repos/community-x86_64/kodi-14.0-gcc5.patch
  kodi/repos/community-x86_64/kodi.install

--+
 /PKGBUILD|  260 +
 /kodi.install|   34 ++
 community-i686/PKGBUILD  |  141 ---
 community-i686/kodi-14.0-dvddemux-ffmpeg.patch   |   13 -
 community-i686/kodi-14.0-gcc5.patch  |   25 --
 community-i686/kodi.install  |   17 -
 community-x86_64/PKGBUILD|  141 ---
 community-x86_64/kodi-14.0-dvddemux-ffmpeg.patch |   13 -
 community-x86_64/kodi-14.0-gcc5.patch|   25 --
 community-x86_64/kodi.install|   17 -
 10 files changed, 294 insertions(+), 392 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-07-24 12:44:05 UTC (rev 137372)
+++ community-i686/PKGBUILD 2015-07-24 12:44:39 UTC (rev 137373)
@@ -1,141 +0,0 @@
-# vim:set ts=2 sw=2 et:
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: BlackIkeEagle  ike DOT devolder AT gmail DOT com 
-# Contributor: Brad Fanella bradfane...@archlinux.us
-# Contributor: [vEX] niechift.dot.vex.at.gmail.dot.com
-# Contributor: Zeqadious zeqadious.at.gmail.dot.com
-# Contributor: BlackIkeEagle  ike DOT devolder AT gmail DOT com 
-# Contributor: Bartłomiej Piotrowski bpiotrow...@archlinux.org
-# Contributor: Maxime Gauduin aluc...@gmail.com
-
-_prefix=/usr
-
-pkgbase=kodi
-pkgname=('kodi' 'kodi-eventclients')
-pkgver=14.2
-_codename=Helix
-pkgrel=5
-arch=('i686' 'x86_64')
-url=http://kodi.tv;
-license=('GPL2')
-makedepends=(
-  'afpfs-ng' 'bluez-libs' 'boost' 'cmake' 'curl' 'cwiid' 'doxygen' 'git' 'glew'
-  'gperf' 'hicolor-icon-theme' 'jasper' 'java-runtime' 'libaacs' 'libass'
-  'libbluray' 'libcdio' 'libcec' 'libgl' 'libmariadbclient' 'libmicrohttpd'
-  'libmodplug' 'libmpeg2' 'libnfs' 'libplist' 'libpulse' 'libssh' 'libva'
-  'libvdpau' 'libxrandr' 'libxslt' 'lzo' 'nasm' 'nss-mdns' 'python2-pillow'
-  'python2-pybluez' 'python2-simplejson' 'rtmpdump' 'sdl2' 'sdl_image'
-  'shairplay' 'smbclient' 'swig' 'taglib' 'tinyxml' 'unzip' 'upower' 'yajl' 
'zip'
-)
-source=(
-  
$pkgname-$pkgver-$_codename.tar.gz::https://github.com/xbmc/xbmc/archive/$pkgver-$_codename.tar.gz;
-  kodi-14.0-dvddemux-ffmpeg.patch
-  kodi-14.0-gcc5.patch
-)
-sha256sums=('d9cb8590430a925fb789a5beb4da2695cdcd2d2500dd31126f3b77b31aa267f4'
-'01453e18987b01ad40c9ae423a7e47422e537b648e74f5c942f132c37e6370f8'
-'598f36cea0f63440e5755d88752552240fc5cd2b98e4f80a9feeb9605c91')
-
-prepare() {
-  cd $srcdir/xbmc-$pkgver-$_codename
-
-  find -type f -name *.py -exec sed 's|^#!.*python$|#!/usr/bin/python2|' -i 
{} +
-  sed 's|^#!.*python$|#!/usr/bin/python2|' -i 
tools/depends/native/rpl-native/rpl
-   sed 's/python/python2/' -i tools/Linux/kodi.sh.in
-  sed 's/shell python/shell python2/' -i tools/EventClients/Makefile.in
-  # disable wiiremote due to incompatibility with bluez-5.29
-  sed '/WiiRemote/d' -i tools/EventClients/Makefile.in
-  sed '/mkdir -p $(DESTDIR)$(bindir)/i \
-install:' -i tools/EventClients/Makefile.in
-
-  patch -p0 -i $srcdir/kodi-14.0-dvddemux-ffmpeg.patch
-  patch -p1 -i $srcdir/kodi-14.0-gcc5.patch
-
-}
-
-build() {
-  cd $srcdir/xbmc-$pkgver-$_codename
-
-   # Bootstrapping
-  MAKEFLAGS=-j1 ./bootstrap
-
-  #./configure --help
-  #return 1
-
-  # Configuring XBMC
-  export PYTHON_VERSION=2  # external python v2
-  ./configure --prefix=$_prefix --exec-prefix=$_prefix \
---disable-debug \
---enable-optimizations \
---enable-libbluray \
---enable-shared-libraries \
---with-lirc-device=/run/lirc/lircd \
-ac_cv_lib_bluetooth_hci_devid=no
-
-  # Now (finally) build
-  make
-}
-
-package_kodi() {
-  pkgdesc=A software media player and entertainment hub for digital media
-
-  # depends expected for kodi plugins:
-  # 'python2-pillow' 'python2-pybluez' 'python2-simplejson'
-  # depends expeced in FEH.py
-  # 'mesa-demos' 'xorg-xdpyinfo'
-  depends=(
-'python2-pillow' 

[arch-commits] Commit in kodi-audioencoder-flac/trunk (PKGBUILD)

2015-07-24 Thread Ike Devolder
Date: Friday, July 24, 2015 @ 14:56:51
  Author: idevolder
Revision: 137376

kodi-audioencoder-flac :: 20150601.a5e2d12

Modified:
  kodi-audioencoder-flac/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-07-24 12:51:45 UTC (rev 137375)
+++ PKGBUILD2015-07-24 12:56:51 UTC (rev 137376)
@@ -2,8 +2,7 @@
 # Maintainer: BlackEagle ike.devol...@gmail.com
 
 pkgname=kodi-audioencoder-flac
-pkgver=20141202.a960eba
-_commit=a960ebae64f4
+pkgver=20150601.a5e2d12
 pkgrel=2
 pkgdesc=kodi audioencoder addon for flac
 arch=('i686' 'x86_64')
@@ -12,7 +11,7 @@
 groups=('kodi-addons')
 depends=('kodi')
 makedepends=('git' 'cmake')
-source=($pkgname::git://github.com/xbmc/audioencoder.flac.git#commit=$_commit)
+source=($pkgname::git://github.com/xbmc/audioencoder.flac.git)
 sha256sums=('SKIP')
 
 pkgver() {


[arch-commits] Commit in kodi-audioencoder-wav/trunk (PKGBUILD)

2015-07-24 Thread Ike Devolder
Date: Friday, July 24, 2015 @ 14:58:16
  Author: idevolder
Revision: 137379

kodi-audioencoder-wav :: 20150601.797c990

Modified:
  kodi-audioencoder-wav/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-07-24 12:57:50 UTC (rev 137378)
+++ PKGBUILD2015-07-24 12:58:16 UTC (rev 137379)
@@ -2,8 +2,7 @@
 # Maintainer: BlackEagle ike.devol...@gmail.com
 
 pkgname=kodi-audioencoder-wav
-pkgver=20141102.40aaedf
-_commit=40aaedfa1cd9
+pkgver=20150601.797c990
 pkgrel=2
 pkgdesc=kodi audioencoder addon for wav
 arch=('i686' 'x86_64')
@@ -12,7 +11,7 @@
 groups=('kodi-addons')
 depends=('kodi')
 makedepends=('git' 'cmake')
-source=($pkgname::git://github.com/xbmc/audioencoder.wav.git#commit=$_commit)
+source=($pkgname::git://github.com/xbmc/audioencoder.wav.git)
 sha256sums=('SKIP')
 
 pkgver() {


[arch-commits] Commit in kodi-audioencoder-flac/repos (4 files)

2015-07-24 Thread Ike Devolder
Date: Friday, July 24, 2015 @ 14:58:39
  Author: idevolder
Revision: 137380

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

Added:
  kodi-audioencoder-flac/repos/community-i686/PKGBUILD
(from rev 137379, kodi-audioencoder-flac/trunk/PKGBUILD)
  kodi-audioencoder-flac/repos/community-x86_64/PKGBUILD
(from rev 137379, kodi-audioencoder-flac/trunk/PKGBUILD)
Deleted:
  kodi-audioencoder-flac/repos/community-i686/PKGBUILD
  kodi-audioencoder-flac/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   72 
 community-i686/PKGBUILD   |   37 --
 community-x86_64/PKGBUILD |   37 --
 3 files changed, 72 insertions(+), 74 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-07-24 12:58:16 UTC (rev 137379)
+++ community-i686/PKGBUILD 2015-07-24 12:58:39 UTC (rev 137380)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: BlackEagle ike.devol...@gmail.com
-
-pkgname=kodi-audioencoder-flac
-pkgver=20141202.a960eba
-_commit=a960ebae64f4
-pkgrel=2
-pkgdesc=kodi audioencoder addon for flac
-arch=('i686' 'x86_64')
-url='https://github.com/xbmc/audioencoder.flac'
-license=('GPL')
-groups=('kodi-addons')
-depends=('kodi')
-makedepends=('git' 'cmake')
-source=($pkgname::git://github.com/xbmc/audioencoder.flac.git#commit=$_commit)
-sha256sums=('SKIP')
-
-pkgver() {
-   cd $pkgname
-   git log -1 --date=short --format=%cd.%h | tr -d '-'
-}
-
-build() {
-   cd $pkgname
-   cmake \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DCMAKE_BUILD_TYPE=Release \
-   -DBUILD_SHARED_LIBS=1 \
-   -DUSE_LTO=1
-   make
-}
-
-package() {
-   cd $pkgname
-   make DESTDIR=$pkgdir/ install
-}
-

Copied: kodi-audioencoder-flac/repos/community-i686/PKGBUILD (from rev 137379, 
kodi-audioencoder-flac/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-07-24 12:58:39 UTC (rev 137380)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: BlackEagle ike.devol...@gmail.com
+
+pkgname=kodi-audioencoder-flac
+pkgver=20150601.a5e2d12
+pkgrel=2
+pkgdesc=kodi audioencoder addon for flac
+arch=('i686' 'x86_64')
+url='https://github.com/xbmc/audioencoder.flac'
+license=('GPL')
+groups=('kodi-addons')
+depends=('kodi')
+makedepends=('git' 'cmake')
+source=($pkgname::git://github.com/xbmc/audioencoder.flac.git)
+sha256sums=('SKIP')
+
+pkgver() {
+   cd $pkgname
+   git log -1 --date=short --format=%cd.%h | tr -d '-'
+}
+
+build() {
+   cd $pkgname
+   cmake \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DBUILD_SHARED_LIBS=1 \
+   -DUSE_LTO=1
+   make
+}
+
+package() {
+   cd $pkgname
+   make DESTDIR=$pkgdir/ install
+}
+

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-07-24 12:58:16 UTC (rev 137379)
+++ community-x86_64/PKGBUILD   2015-07-24 12:58:39 UTC (rev 137380)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: BlackEagle ike.devol...@gmail.com
-
-pkgname=kodi-audioencoder-flac
-pkgver=20141202.a960eba
-_commit=a960ebae64f4
-pkgrel=2
-pkgdesc=kodi audioencoder addon for flac
-arch=('i686' 'x86_64')
-url='https://github.com/xbmc/audioencoder.flac'
-license=('GPL')
-groups=('kodi-addons')
-depends=('kodi')
-makedepends=('git' 'cmake')
-source=($pkgname::git://github.com/xbmc/audioencoder.flac.git#commit=$_commit)
-sha256sums=('SKIP')
-
-pkgver() {
-   cd $pkgname
-   git log -1 --date=short --format=%cd.%h | tr -d '-'
-}
-
-build() {
-   cd $pkgname
-   cmake \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DCMAKE_BUILD_TYPE=Release \
-   -DBUILD_SHARED_LIBS=1 \
-   -DUSE_LTO=1
-   make
-}
-
-package() {
-   cd $pkgname
-   make DESTDIR=$pkgdir/ install
-}
-

Copied: kodi-audioencoder-flac/repos/community-x86_64/PKGBUILD (from rev 
137379, kodi-audioencoder-flac/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-07-24 12:58:39 UTC (rev 137380)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: BlackEagle ike.devol...@gmail.com
+
+pkgname=kodi-audioencoder-flac
+pkgver=20150601.a5e2d12
+pkgrel=2
+pkgdesc=kodi audioencoder addon for flac
+arch=('i686' 'x86_64')
+url='https://github.com/xbmc/audioencoder.flac'
+license=('GPL')
+groups=('kodi-addons')
+depends=('kodi')
+makedepends=('git' 'cmake')
+source=($pkgname::git://github.com/xbmc/audioencoder.flac.git)
+sha256sums=('SKIP')
+
+pkgver() {
+   cd $pkgname
+   git log -1 --date=short --format=%cd.%h | tr -d '-'
+}

[arch-commits] Commit in kodi-audioencoder-vorbis/trunk (PKGBUILD)

2015-07-24 Thread Ike Devolder
Date: Friday, July 24, 2015 @ 14:57:50
  Author: idevolder
Revision: 137378

kodi-audioencoder-vorbis :: 20150601.15d619d

Modified:
  kodi-audioencoder-vorbis/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-07-24 12:57:20 UTC (rev 137377)
+++ PKGBUILD2015-07-24 12:57:50 UTC (rev 137378)
@@ -2,8 +2,7 @@
 # Maintainer: BlackEagle ike.devol...@gmail.com
 
 pkgname=kodi-audioencoder-vorbis
-pkgver=20141224.787d4a0
-_commit=787d4a048be7
+pkgver=20150601.15d619d
 pkgrel=2
 pkgdesc=kodi audioencoder addon for ogg/vorbis
 arch=('i686' 'x86_64')
@@ -12,7 +11,7 @@
 groups=('kodi-addons')
 depends=('kodi')
 makedepends=('git' 'cmake')
-source=($pkgname::git://github.com/xbmc/audioencoder.vorbis.git#commit=$_commit)
+source=($pkgname::git://github.com/xbmc/audioencoder.vorbis.git)
 sha256sums=('SKIP')
 
 pkgver() {


[arch-commits] Commit in kodi-audioencoder-lame/trunk (PKGBUILD)

2015-07-24 Thread Ike Devolder
Date: Friday, July 24, 2015 @ 14:57:20
  Author: idevolder
Revision: 137377

kodi-audioencoder-lame :: 20150601.b283cd5

Modified:
  kodi-audioencoder-lame/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-07-24 12:56:51 UTC (rev 137376)
+++ PKGBUILD2015-07-24 12:57:20 UTC (rev 137377)
@@ -2,8 +2,7 @@
 # Maintainer: BlackEagle ike.devol...@gmail.com
 
 pkgname=kodi-audioencoder-lame
-pkgver=20141110.6f8384f
-_commit=6f8384f0d003
+pkgver=20150601.b283cd5
 pkgrel=2
 pkgdesc=kodi audioencoder addon for lame (mp3)
 arch=('i686' 'x86_64')
@@ -12,7 +11,7 @@
 groups=('kodi-addons')
 depends=('kodi' 'lame')
 makedepends=('git' 'cmake')
-source=($pkgname::git://github.com/xbmc/audioencoder.lame.git#commit=$_commit)
+source=($pkgname::git://github.com/xbmc/audioencoder.lame.git)
 sha256sums=('SKIP')
 
 pkgver() {


[arch-commits] Commit in kodi-audioencoder-vorbis/repos (4 files)

2015-07-24 Thread Ike Devolder
Date: Friday, July 24, 2015 @ 15:00:53
  Author: idevolder
Revision: 137382

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

Added:
  kodi-audioencoder-vorbis/repos/community-i686/PKGBUILD
(from rev 137381, kodi-audioencoder-vorbis/trunk/PKGBUILD)
  kodi-audioencoder-vorbis/repos/community-x86_64/PKGBUILD
(from rev 137381, kodi-audioencoder-vorbis/trunk/PKGBUILD)
Deleted:
  kodi-audioencoder-vorbis/repos/community-i686/PKGBUILD
  kodi-audioencoder-vorbis/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   72 
 community-i686/PKGBUILD   |   37 --
 community-x86_64/PKGBUILD |   37 --
 3 files changed, 72 insertions(+), 74 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-07-24 13:00:30 UTC (rev 137381)
+++ community-i686/PKGBUILD 2015-07-24 13:00:53 UTC (rev 137382)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: BlackEagle ike.devol...@gmail.com
-
-pkgname=kodi-audioencoder-vorbis
-pkgver=20141224.787d4a0
-_commit=787d4a048be7
-pkgrel=2
-pkgdesc=kodi audioencoder addon for ogg/vorbis
-arch=('i686' 'x86_64')
-url='https://github.com/xbmc/audioencoder.vorbis'
-license=('GPL')
-groups=('kodi-addons')
-depends=('kodi')
-makedepends=('git' 'cmake')
-source=($pkgname::git://github.com/xbmc/audioencoder.vorbis.git#commit=$_commit)
-sha256sums=('SKIP')
-
-pkgver() {
-   cd $pkgname
-   git log -1 --date=short --format=%cd.%h | tr -d '-'
-}
-
-build() {
-   cd $pkgname
-   cmake \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DCMAKE_BUILD_TYPE=Release \
-   -DBUILD_SHARED_LIBS=1 \
-   -DUSE_LTO=1
-   make
-}
-
-package() {
-   cd $pkgname
-   make DESTDIR=$pkgdir/ install
-}
-

Copied: kodi-audioencoder-vorbis/repos/community-i686/PKGBUILD (from rev 
137381, kodi-audioencoder-vorbis/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-07-24 13:00:53 UTC (rev 137382)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: BlackEagle ike.devol...@gmail.com
+
+pkgname=kodi-audioencoder-vorbis
+pkgver=20150601.15d619d
+pkgrel=2
+pkgdesc=kodi audioencoder addon for ogg/vorbis
+arch=('i686' 'x86_64')
+url='https://github.com/xbmc/audioencoder.vorbis'
+license=('GPL')
+groups=('kodi-addons')
+depends=('kodi')
+makedepends=('git' 'cmake')
+source=($pkgname::git://github.com/xbmc/audioencoder.vorbis.git)
+sha256sums=('SKIP')
+
+pkgver() {
+   cd $pkgname
+   git log -1 --date=short --format=%cd.%h | tr -d '-'
+}
+
+build() {
+   cd $pkgname
+   cmake \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DBUILD_SHARED_LIBS=1 \
+   -DUSE_LTO=1
+   make
+}
+
+package() {
+   cd $pkgname
+   make DESTDIR=$pkgdir/ install
+}
+

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-07-24 13:00:30 UTC (rev 137381)
+++ community-x86_64/PKGBUILD   2015-07-24 13:00:53 UTC (rev 137382)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: BlackEagle ike.devol...@gmail.com
-
-pkgname=kodi-audioencoder-vorbis
-pkgver=20141224.787d4a0
-_commit=787d4a048be7
-pkgrel=2
-pkgdesc=kodi audioencoder addon for ogg/vorbis
-arch=('i686' 'x86_64')
-url='https://github.com/xbmc/audioencoder.vorbis'
-license=('GPL')
-groups=('kodi-addons')
-depends=('kodi')
-makedepends=('git' 'cmake')
-source=($pkgname::git://github.com/xbmc/audioencoder.vorbis.git#commit=$_commit)
-sha256sums=('SKIP')
-
-pkgver() {
-   cd $pkgname
-   git log -1 --date=short --format=%cd.%h | tr -d '-'
-}
-
-build() {
-   cd $pkgname
-   cmake \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DCMAKE_BUILD_TYPE=Release \
-   -DBUILD_SHARED_LIBS=1 \
-   -DUSE_LTO=1
-   make
-}
-
-package() {
-   cd $pkgname
-   make DESTDIR=$pkgdir/ install
-}
-

Copied: kodi-audioencoder-vorbis/repos/community-x86_64/PKGBUILD (from rev 
137381, kodi-audioencoder-vorbis/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-07-24 13:00:53 UTC (rev 137382)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: BlackEagle ike.devol...@gmail.com
+
+pkgname=kodi-audioencoder-vorbis
+pkgver=20150601.15d619d
+pkgrel=2
+pkgdesc=kodi audioencoder addon for ogg/vorbis
+arch=('i686' 'x86_64')
+url='https://github.com/xbmc/audioencoder.vorbis'
+license=('GPL')
+groups=('kodi-addons')
+depends=('kodi')
+makedepends=('git' 'cmake')
+source=($pkgname::git://github.com/xbmc/audioencoder.vorbis.git)
+sha256sums=('SKIP')
+
+pkgver() {
+   cd 

[arch-commits] Commit in kodi-audioencoder-lame/repos (4 files)

2015-07-24 Thread Ike Devolder
Date: Friday, July 24, 2015 @ 15:00:30
  Author: idevolder
Revision: 137381

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

Added:
  kodi-audioencoder-lame/repos/community-i686/PKGBUILD
(from rev 137380, kodi-audioencoder-lame/trunk/PKGBUILD)
  kodi-audioencoder-lame/repos/community-x86_64/PKGBUILD
(from rev 137380, kodi-audioencoder-lame/trunk/PKGBUILD)
Deleted:
  kodi-audioencoder-lame/repos/community-i686/PKGBUILD
  kodi-audioencoder-lame/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   72 
 community-i686/PKGBUILD   |   37 --
 community-x86_64/PKGBUILD |   37 --
 3 files changed, 72 insertions(+), 74 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-07-24 12:58:39 UTC (rev 137380)
+++ community-i686/PKGBUILD 2015-07-24 13:00:30 UTC (rev 137381)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: BlackEagle ike.devol...@gmail.com
-
-pkgname=kodi-audioencoder-lame
-pkgver=20141110.6f8384f
-_commit=6f8384f0d003
-pkgrel=2
-pkgdesc=kodi audioencoder addon for lame (mp3)
-arch=('i686' 'x86_64')
-url='https://github.com/xbmc/audioencoder.lame'
-license=('GPL')
-groups=('kodi-addons')
-depends=('kodi' 'lame')
-makedepends=('git' 'cmake')
-source=($pkgname::git://github.com/xbmc/audioencoder.lame.git#commit=$_commit)
-sha256sums=('SKIP')
-
-pkgver() {
-   cd $pkgname
-   git log -1 --date=short --format=%cd.%h | tr -d '-'
-}
-
-build() {
-   cd $pkgname
-   cmake \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DCMAKE_BUILD_TYPE=Release \
-   -DBUILD_SHARED_LIBS=1 \
-   -DUSE_LTO=1
-   make
-}
-
-package() {
-   cd $pkgname
-   make DESTDIR=$pkgdir/ install
-}
-

Copied: kodi-audioencoder-lame/repos/community-i686/PKGBUILD (from rev 137380, 
kodi-audioencoder-lame/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-07-24 13:00:30 UTC (rev 137381)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: BlackEagle ike.devol...@gmail.com
+
+pkgname=kodi-audioencoder-lame
+pkgver=20150601.b283cd5
+pkgrel=2
+pkgdesc=kodi audioencoder addon for lame (mp3)
+arch=('i686' 'x86_64')
+url='https://github.com/xbmc/audioencoder.lame'
+license=('GPL')
+groups=('kodi-addons')
+depends=('kodi' 'lame')
+makedepends=('git' 'cmake')
+source=($pkgname::git://github.com/xbmc/audioencoder.lame.git)
+sha256sums=('SKIP')
+
+pkgver() {
+   cd $pkgname
+   git log -1 --date=short --format=%cd.%h | tr -d '-'
+}
+
+build() {
+   cd $pkgname
+   cmake \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DBUILD_SHARED_LIBS=1 \
+   -DUSE_LTO=1
+   make
+}
+
+package() {
+   cd $pkgname
+   make DESTDIR=$pkgdir/ install
+}
+

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-07-24 12:58:39 UTC (rev 137380)
+++ community-x86_64/PKGBUILD   2015-07-24 13:00:30 UTC (rev 137381)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: BlackEagle ike.devol...@gmail.com
-
-pkgname=kodi-audioencoder-lame
-pkgver=20141110.6f8384f
-_commit=6f8384f0d003
-pkgrel=2
-pkgdesc=kodi audioencoder addon for lame (mp3)
-arch=('i686' 'x86_64')
-url='https://github.com/xbmc/audioencoder.lame'
-license=('GPL')
-groups=('kodi-addons')
-depends=('kodi' 'lame')
-makedepends=('git' 'cmake')
-source=($pkgname::git://github.com/xbmc/audioencoder.lame.git#commit=$_commit)
-sha256sums=('SKIP')
-
-pkgver() {
-   cd $pkgname
-   git log -1 --date=short --format=%cd.%h | tr -d '-'
-}
-
-build() {
-   cd $pkgname
-   cmake \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DCMAKE_BUILD_TYPE=Release \
-   -DBUILD_SHARED_LIBS=1 \
-   -DUSE_LTO=1
-   make
-}
-
-package() {
-   cd $pkgname
-   make DESTDIR=$pkgdir/ install
-}
-

Copied: kodi-audioencoder-lame/repos/community-x86_64/PKGBUILD (from rev 
137380, kodi-audioencoder-lame/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-07-24 13:00:30 UTC (rev 137381)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: BlackEagle ike.devol...@gmail.com
+
+pkgname=kodi-audioencoder-lame
+pkgver=20150601.b283cd5
+pkgrel=2
+pkgdesc=kodi audioencoder addon for lame (mp3)
+arch=('i686' 'x86_64')
+url='https://github.com/xbmc/audioencoder.lame'
+license=('GPL')
+groups=('kodi-addons')
+depends=('kodi' 'lame')
+makedepends=('git' 'cmake')
+source=($pkgname::git://github.com/xbmc/audioencoder.lame.git)
+sha256sums=('SKIP')
+
+pkgver() {
+   cd $pkgname
+   

[arch-commits] Commit in kodi-audioencoder-wav/repos (4 files)

2015-07-24 Thread Ike Devolder
Date: Friday, July 24, 2015 @ 15:02:12
  Author: idevolder
Revision: 137383

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

Added:
  kodi-audioencoder-wav/repos/community-i686/PKGBUILD
(from rev 137382, kodi-audioencoder-wav/trunk/PKGBUILD)
  kodi-audioencoder-wav/repos/community-x86_64/PKGBUILD
(from rev 137382, kodi-audioencoder-wav/trunk/PKGBUILD)
Deleted:
  kodi-audioencoder-wav/repos/community-i686/PKGBUILD
  kodi-audioencoder-wav/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   72 
 community-i686/PKGBUILD   |   37 --
 community-x86_64/PKGBUILD |   37 --
 3 files changed, 72 insertions(+), 74 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-07-24 13:00:53 UTC (rev 137382)
+++ community-i686/PKGBUILD 2015-07-24 13:02:12 UTC (rev 137383)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: BlackEagle ike.devol...@gmail.com
-
-pkgname=kodi-audioencoder-wav
-pkgver=20141102.40aaedf
-_commit=40aaedfa1cd9
-pkgrel=2
-pkgdesc=kodi audioencoder addon for wav
-arch=('i686' 'x86_64')
-url='https://github.com/xbmc/audioencoder.wav'
-license=('GPL')
-groups=('kodi-addons')
-depends=('kodi')
-makedepends=('git' 'cmake')
-source=($pkgname::git://github.com/xbmc/audioencoder.wav.git#commit=$_commit)
-sha256sums=('SKIP')
-
-pkgver() {
-   cd $pkgname
-   git log -1 --date=short --format=%cd.%h | tr -d '-'
-}
-
-build() {
-   cd $pkgname
-   cmake \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DCMAKE_BUILD_TYPE=Release \
-   -DBUILD_SHARED_LIBS=1 \
-   -DUSE_LTO=1
-   make
-}
-
-package() {
-   cd $pkgname
-   make DESTDIR=$pkgdir/ install
-}
-

Copied: kodi-audioencoder-wav/repos/community-i686/PKGBUILD (from rev 137382, 
kodi-audioencoder-wav/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-07-24 13:02:12 UTC (rev 137383)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: BlackEagle ike.devol...@gmail.com
+
+pkgname=kodi-audioencoder-wav
+pkgver=20150601.797c990
+pkgrel=2
+pkgdesc=kodi audioencoder addon for wav
+arch=('i686' 'x86_64')
+url='https://github.com/xbmc/audioencoder.wav'
+license=('GPL')
+groups=('kodi-addons')
+depends=('kodi')
+makedepends=('git' 'cmake')
+source=($pkgname::git://github.com/xbmc/audioencoder.wav.git)
+sha256sums=('SKIP')
+
+pkgver() {
+   cd $pkgname
+   git log -1 --date=short --format=%cd.%h | tr -d '-'
+}
+
+build() {
+   cd $pkgname
+   cmake \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DBUILD_SHARED_LIBS=1 \
+   -DUSE_LTO=1
+   make
+}
+
+package() {
+   cd $pkgname
+   make DESTDIR=$pkgdir/ install
+}
+

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-07-24 13:00:53 UTC (rev 137382)
+++ community-x86_64/PKGBUILD   2015-07-24 13:02:12 UTC (rev 137383)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: BlackEagle ike.devol...@gmail.com
-
-pkgname=kodi-audioencoder-wav
-pkgver=20141102.40aaedf
-_commit=40aaedfa1cd9
-pkgrel=2
-pkgdesc=kodi audioencoder addon for wav
-arch=('i686' 'x86_64')
-url='https://github.com/xbmc/audioencoder.wav'
-license=('GPL')
-groups=('kodi-addons')
-depends=('kodi')
-makedepends=('git' 'cmake')
-source=($pkgname::git://github.com/xbmc/audioencoder.wav.git#commit=$_commit)
-sha256sums=('SKIP')
-
-pkgver() {
-   cd $pkgname
-   git log -1 --date=short --format=%cd.%h | tr -d '-'
-}
-
-build() {
-   cd $pkgname
-   cmake \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DCMAKE_BUILD_TYPE=Release \
-   -DBUILD_SHARED_LIBS=1 \
-   -DUSE_LTO=1
-   make
-}
-
-package() {
-   cd $pkgname
-   make DESTDIR=$pkgdir/ install
-}
-

Copied: kodi-audioencoder-wav/repos/community-x86_64/PKGBUILD (from rev 137382, 
kodi-audioencoder-wav/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-07-24 13:02:12 UTC (rev 137383)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: BlackEagle ike.devol...@gmail.com
+
+pkgname=kodi-audioencoder-wav
+pkgver=20150601.797c990
+pkgrel=2
+pkgdesc=kodi audioencoder addon for wav
+arch=('i686' 'x86_64')
+url='https://github.com/xbmc/audioencoder.wav'
+license=('GPL')
+groups=('kodi-addons')
+depends=('kodi')
+makedepends=('git' 'cmake')
+source=($pkgname::git://github.com/xbmc/audioencoder.wav.git)
+sha256sums=('SKIP')
+
+pkgver() {
+   cd $pkgname
+   git log -1 --date=short --format=%cd.%h | tr -d '-'
+}
+
+build() {
+   cd 

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

2015-07-24 Thread Sergej Pupykin
Date: Friday, July 24, 2015 @ 12:17:12
  Author: spupykin
Revision: 137366

upgpkg: libuser 0.62-1

upd

Modified:
  libuser/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-07-24 09:22:43 UTC (rev 137365)
+++ PKGBUILD2015-07-24 10:17:12 UTC (rev 137366)
@@ -3,7 +3,7 @@
 # Maintainer: Thomas Dziedzic  gostrc at gmail 
 
 pkgname=libuser
-pkgver=0.61
+pkgver=0.62
 pkgrel=1
 pkgdesc='A standardized interface for manipulating and administering user and 
group accounts.'
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 depends=('python2' 'glib2' 'popt')
 backup=('etc/libuser.conf')
 
source=(https://fedorahosted.org/releases/l/i/libuser/libuser-${pkgver}.tar.xz;)
-md5sums=('d977dc59161272c1491edd9ca7ba22f2')
+md5sums=('63e5e5c551e99dc5302b40b80bd6d4f2')
 
 build() {
   cd ${pkgname}-${pkgver}


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

2015-07-24 Thread Sergej Pupykin
Date: Friday, July 24, 2015 @ 12:17:32
  Author: spupykin
Revision: 137367

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-07-24 10:17:12 UTC (rev 137366)
+++ community-i686/PKGBUILD 2015-07-24 10:17:32 UTC (rev 137367)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: Thomas Dziedzic  gostrc at gmail 
-
-pkgname=libuser
-pkgver=0.61
-pkgrel=1
-pkgdesc='A standardized interface for manipulating and administering user and 
group accounts.'
-arch=('i686' 'x86_64')
-license=('LGPL')
-url='https://fedorahosted.org/libuser/'
-depends=('python2' 'glib2' 'popt')
-backup=('etc/libuser.conf')
-source=(https://fedorahosted.org/releases/l/i/libuser/libuser-${pkgver}.tar.xz;)
-md5sums=('d977dc59161272c1491edd9ca7ba22f2')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  export PYTHON=python2
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---sbindir=/usr/bin \
---disable-gtk-doc-html \
---disable-rpath
-  sed -i 's/SUBDIRS = po docs/SUBDIRS = po/' Makefile
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: libuser/repos/community-i686/PKGBUILD (from rev 137366, 
libuser/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-07-24 10:17:32 UTC (rev 137367)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: Thomas Dziedzic  gostrc at gmail 
+
+pkgname=libuser
+pkgver=0.62
+pkgrel=1
+pkgdesc='A standardized interface for manipulating and administering user and 
group accounts.'
+arch=('i686' 'x86_64')
+license=('LGPL')
+url='https://fedorahosted.org/libuser/'
+depends=('python2' 'glib2' 'popt')
+backup=('etc/libuser.conf')
+source=(https://fedorahosted.org/releases/l/i/libuser/libuser-${pkgver}.tar.xz;)
+md5sums=('63e5e5c551e99dc5302b40b80bd6d4f2')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  export PYTHON=python2
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--sbindir=/usr/bin \
+--disable-gtk-doc-html \
+--disable-rpath
+  sed -i 's/SUBDIRS = po docs/SUBDIRS = po/' Makefile
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-07-24 10:17:12 UTC (rev 137366)
+++ community-x86_64/PKGBUILD   2015-07-24 10:17:32 UTC (rev 137367)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: Thomas Dziedzic  gostrc at gmail 
-
-pkgname=libuser
-pkgver=0.61
-pkgrel=1
-pkgdesc='A standardized interface for manipulating and administering user and 
group accounts.'
-arch=('i686' 'x86_64')
-license=('LGPL')
-url='https://fedorahosted.org/libuser/'
-depends=('python2' 'glib2' 'popt')
-backup=('etc/libuser.conf')
-source=(https://fedorahosted.org/releases/l/i/libuser/libuser-${pkgver}.tar.xz;)
-md5sums=('d977dc59161272c1491edd9ca7ba22f2')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  export PYTHON=python2
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---sbindir=/usr/bin \
---disable-gtk-doc-html \
---disable-rpath
-  sed -i 's/SUBDIRS = po docs/SUBDIRS = po/' Makefile
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: libuser/repos/community-x86_64/PKGBUILD (from rev 137366, 
libuser/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-07-24 10:17:32 UTC (rev 137367)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: Thomas Dziedzic  gostrc at gmail 
+
+pkgname=libuser
+pkgver=0.62
+pkgrel=1
+pkgdesc='A standardized interface for manipulating and administering user and 
group accounts.'
+arch=('i686' 'x86_64')
+license=('LGPL')
+url='https://fedorahosted.org/libuser/'
+depends=('python2' 'glib2' 'popt')
+backup=('etc/libuser.conf')
+source=(https://fedorahosted.org/releases/l/i/libuser/libuser-${pkgver}.tar.xz;)
+md5sums=('63e5e5c551e99dc5302b40b80bd6d4f2')
+
+build() {
+  cd 

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

2015-07-24 Thread Evgeniy Alekseev
Date: Friday, July 24, 2015 @ 17:03:12
  Author: arcanis
Revision: 137385

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

Added:
  qscintilla-qt5/repos/community-i686/ChangeLog
(from rev 137384, qscintilla-qt5/trunk/ChangeLog)
  qscintilla-qt5/repos/community-i686/PKGBUILD
(from rev 137384, qscintilla-qt5/trunk/PKGBUILD)
  qscintilla-qt5/repos/community-i686/configure.py.patch
(from rev 137384, qscintilla-qt5/trunk/configure.py.patch)
  qscintilla-qt5/repos/community-i686/libname.patch
(from rev 137384, qscintilla-qt5/trunk/libname.patch)
  qscintilla-qt5/repos/community-x86_64/ChangeLog
(from rev 137384, qscintilla-qt5/trunk/ChangeLog)
  qscintilla-qt5/repos/community-x86_64/PKGBUILD
(from rev 137384, qscintilla-qt5/trunk/PKGBUILD)
  qscintilla-qt5/repos/community-x86_64/configure.py.patch
(from rev 137384, qscintilla-qt5/trunk/configure.py.patch)
  qscintilla-qt5/repos/community-x86_64/libname.patch
(from rev 137384, qscintilla-qt5/trunk/libname.patch)
Deleted:
  qscintilla-qt5/repos/community-i686/ChangeLog
  qscintilla-qt5/repos/community-i686/PKGBUILD
  qscintilla-qt5/repos/community-i686/configure.py.patch
  qscintilla-qt5/repos/community-i686/libname.patch
  qscintilla-qt5/repos/community-x86_64/ChangeLog
  qscintilla-qt5/repos/community-x86_64/PKGBUILD
  qscintilla-qt5/repos/community-x86_64/configure.py.patch
  qscintilla-qt5/repos/community-x86_64/libname.patch

-+
 /ChangeLog  |   22 
 /PKGBUILD   |  176 ++
 /configure.py.patch |   96 ++
 /libname.patch  |  100 +++
 community-i686/ChangeLog|8 -
 community-i686/PKGBUILD |   88 -
 community-i686/configure.py.patch   |   48 -
 community-i686/libname.patch|   50 -
 community-x86_64/ChangeLog  |8 -
 community-x86_64/PKGBUILD   |   88 -
 community-x86_64/configure.py.patch |   48 -
 community-x86_64/libname.patch  |   50 -
 12 files changed, 394 insertions(+), 388 deletions(-)

Deleted: community-i686/ChangeLog
===
--- community-i686/ChangeLog2015-07-24 15:02:49 UTC (rev 137384)
+++ community-i686/ChangeLog2015-07-24 15:03:12 UTC (rev 137385)
@@ -1,8 +0,0 @@
-2.9-1:
-upstream update
-
-2.8.4-2:
-remov conflict with qsctintilla
-
-2.8.4-1:
-move to [community]

Copied: qscintilla-qt5/repos/community-i686/ChangeLog (from rev 137384, 
qscintilla-qt5/trunk/ChangeLog)
===
--- community-i686/ChangeLog(rev 0)
+++ community-i686/ChangeLog2015-07-24 15:03:12 UTC (rev 137385)
@@ -0,0 +1,11 @@
+2.9-2:
+rebuild againist qt-5.5
+
+2.9-1:
+upstream update
+
+2.8.4-2:
+remov conflict with qsctintilla
+
+2.8.4-1:
+move to [community]

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-07-24 15:02:49 UTC (rev 137384)
+++ community-i686/PKGBUILD 2015-07-24 15:03:12 UTC (rev 137385)
@@ -1,88 +0,0 @@
-# $Id$
-# Maintainer: Evgeniy Alekseev arcanis at archlinux dot org
-# Maintainer: Ilya87 yast4ik at yahoo dot com
-
-pkgbase=qscintilla-qt5
-pkgname=('qscintilla-qt5' 'python-qscintilla-qt5' 'python2-qscintilla-qt5'
- 'python-qscintilla-qt5-common')
-pkgver=2.9
-pkgrel=1
-license=('GPL')
-arch=('i686' 'x86_64')
-url=http://www.riverbankcomputing.co.uk/software/qscintilla/intro;
-makedepends=('python2-pyqt5' 'python-pyqt5' 'qt5-tools' 'chrpath')
-options=('!buildflags')
-source=(http://downloads.sourceforge.net/pyqt/QScintilla-gpl-${pkgver}.tar.gz;
-'configure.py.patch'
-'libname.patch')
-changelog=ChangeLog
-md5sums=('24659879edf9786f41a9b9268ce3c817'
- '196ba01efe8bf18f3f2e10826c577a11'
- '1ac0fea53f72b0146e0820912ae8c48c')
-
-prepare() {
-  cd QScintilla-gpl-${pkgver}
-
-  patch -Np1 -i ${srcdir}/configure.py.patch
-  patch -Np1 -i ${srcdir}/libname.patch
-
-  cp -r Python{,2}
-  find Python2 -name '*.py' -type f -exec \
-   sed -i 's|env python|env python2|' {} \;
-}
-
-build() {
-  cd QScintilla-gpl-${pkgver}/Qt4Qt5
-  qmake qscintilla.pro
-  make
-
-  cd ../designer-Qt4Qt5
-  qmake designer.pro INCLUDEPATH+=../Qt4Qt5 QMAKE_LIBDIR+=../Qt4Qt5
-  make
-
-  cd ../Python
-  python3 configure.py -n ../Qt4Qt5/ -o ../Qt4Qt5/ -c --pyqt=PyQt5 
--pyqt-sipdir=/usr/share/sip/PyQt5 --qsci-sipdir=/usr/share/sip/PyQt5  --qmake 
/usr/bin/qmake
-  make
-
-  cd ../Python2
-  python2 configure.py -n ../Qt4Qt5/ -o ../Qt4Qt5/ -c --pyqt=PyQt5 
--pyqt-sipdir=/usr/share/sip/PyQt5 --qsci-sipdir=/usr/share/sip/PyQt5 --qmake 
/usr/bin/qmake
-  make
-}
-
-package_qscintilla-qt5() {
-  pkgdesc=A port to Qt5 of Neil Hodgson's Scintilla C++ 

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

2015-07-24 Thread Evgeniy Alekseev
Date: Friday, July 24, 2015 @ 17:02:49
  Author: arcanis
Revision: 137384

upgpkg: qscintilla-qt5 2.9-2
rebuild against qt-5.5

Modified:
  qscintilla-qt5/trunk/ChangeLog
  qscintilla-qt5/trunk/PKGBUILD

---+
 ChangeLog |3 +++
 PKGBUILD  |4 ++--
 2 files changed, 5 insertions(+), 2 deletions(-)

Modified: ChangeLog
===
--- ChangeLog   2015-07-24 13:02:12 UTC (rev 137383)
+++ ChangeLog   2015-07-24 15:02:49 UTC (rev 137384)
@@ -1,3 +1,6 @@
+2.9-2:
+rebuild againist qt-5.5
+
 2.9-1:
 upstream update
 

Modified: PKGBUILD
===
--- PKGBUILD2015-07-24 13:02:12 UTC (rev 137383)
+++ PKGBUILD2015-07-24 15:02:49 UTC (rev 137384)
@@ -6,13 +6,13 @@
 pkgname=('qscintilla-qt5' 'python-qscintilla-qt5' 'python2-qscintilla-qt5'
  'python-qscintilla-qt5-common')
 pkgver=2.9
-pkgrel=1
+pkgrel=2
 license=('GPL')
 arch=('i686' 'x86_64')
 url=http://www.riverbankcomputing.co.uk/software/qscintilla/intro;
 makedepends=('python2-pyqt5' 'python-pyqt5' 'qt5-tools' 'chrpath')
 options=('!buildflags')
-source=(http://downloads.sourceforge.net/pyqt/QScintilla-gpl-${pkgver}.tar.gz;
+source=(http://downloads.sourceforge.net/project/pyqt/QScintilla2/QScintilla-${pkgver}/QScintilla-gpl-${pkgver}.tar.gz;
 'configure.py.patch'
 'libname.patch')
 changelog=ChangeLog


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

2015-07-24 Thread Antonio Rojas
Date: Friday, July 24, 2015 @ 22:25:35
  Author: arojas
Revision: 137396

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

Added:
  calibre/repos/community-i686/PKGBUILD
(from rev 137395, calibre/trunk/PKGBUILD)
  calibre/repos/community-i686/calibre.install
(from rev 137395, calibre/trunk/calibre.install)
  calibre/repos/community-x86_64/PKGBUILD
(from rev 137395, calibre/trunk/PKGBUILD)
  calibre/repos/community-x86_64/calibre.install
(from rev 137395, calibre/trunk/calibre.install)
Deleted:
  calibre/repos/community-i686/PKGBUILD
  calibre/repos/community-i686/calibre.install
  calibre/repos/community-i686/pyqt5.5.patch
  calibre/repos/community-x86_64/PKGBUILD
  calibre/repos/community-x86_64/calibre.install
  calibre/repos/community-x86_64/pyqt5.5.patch

--+
 /PKGBUILD|  176 +
 /calibre.install |   24 +
 community-i686/PKGBUILD  |   91 ---
 community-i686/calibre.install   |   12 --
 community-i686/pyqt5.5.patch |   55 ---
 community-x86_64/PKGBUILD|   91 ---
 community-x86_64/calibre.install |   12 --
 community-x86_64/pyqt5.5.patch   |   55 ---
 8 files changed, 200 insertions(+), 316 deletions(-)

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

[arch-commits] Commit in calibre/trunk (PKGBUILD pyqt5.5.patch)

2015-07-24 Thread Antonio Rojas
Date: Friday, July 24, 2015 @ 22:25:03
  Author: arojas
Revision: 137395

Update to 2.33.0

Modified:
  calibre/trunk/PKGBUILD
Deleted:
  calibre/trunk/pyqt5.5.patch

---+
 PKGBUILD  |   11 ---
 pyqt5.5.patch |   55 ---
 2 files changed, 4 insertions(+), 62 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-07-24 19:28:43 UTC (rev 137394)
+++ PKGBUILD2015-07-24 20:25:03 UTC (rev 137395)
@@ -7,8 +7,8 @@
 # Contributor: Larry Hajali larryh...@gmail.com
 
 pkgname=calibre
-pkgver=2.32.1
-pkgrel=2
+pkgver=2.33.0
+pkgrel=1
 pkgdesc=Ebook management application
 arch=('i686' 'x86_64')
 url=http://calibre-ebook.com/;
@@ -25,9 +25,8 @@
 'udisks: required for mounting certain devices'
 )
 install=calibre.install
-source=(http://download.calibre-ebook.com/${pkgver}/calibre-${pkgver}.tar.xz; 
pyqt5.5.patch)
-md5sums=('54e8bcfdf1e74595bd7611dd61bac20a'
- 'bec94ae1af7725c2ddc5981e606a3906')
+source=(http://download.calibre-ebook.com/${pkgver}/calibre-${pkgver}.tar.xz;)
+md5sums=('7c08641db7f014546bb2b215c392b877')
 
 prepare(){
   cd ${srcdir}/${pkgname}-${pkgver}
@@ -38,8 +37,6 @@
  src/html5lib \
  src/chardet
 
-  patch -Np1 -i $srcdir/pyqt5.5.patch
-
   sed -i s/shlex.split(ldflags)/ + ['-fPIC']/ setup/extensions.py
 
   # Use python2

Deleted: pyqt5.5.patch
===
--- pyqt5.5.patch   2015-07-24 19:28:43 UTC (rev 137394)
+++ pyqt5.5.patch   2015-07-24 20:25:03 UTC (rev 137395)
@@ -1,55 +0,0 @@
-From 8f75f2d5ad17ef35d52a9dc1a137c36d42e8454e Mon Sep 17 00:00:00 2001
-From: Kovid Goyal ko...@kovidgoyal.net
-Date: Thu, 23 Jul 2015 11:47:53 +0530
-Subject: [PATCH] More compatibility fixes for PyQt 5.5
-

- src/calibre/gui2/library/alternate_views.py | 2 +-
- src/calibre/gui2/library/delegates.py   | 4 ++--
- src/calibre/gui2/library/views.py   | 2 +-
- 3 files changed, 4 insertions(+), 4 deletions(-)
-
-diff --git a/src/calibre/gui2/library/alternate_views.py 
b/src/calibre/gui2/library/alternate_views.py
-index f492343..813ff48 100644
 a/src/calibre/gui2/library/alternate_views.py
-+++ b/src/calibre/gui2/library/alternate_views.py
-@@ -101,7 +101,7 @@ def drag_data(self):
- selected = self.get_selected_ids()
- ids = ' '.join(map(str, selected))
- md = QMimeData()
--md.setData('application/calibre+from_library', ids)
-+md.setData('application/calibre+from_library', ids.encode('utf-8'))
- fmt = prefs['output_format']
- 
- def url_for_id(i):
-diff --git a/src/calibre/gui2/library/delegates.py 
b/src/calibre/gui2/library/delegates.py
-index eed3ed8..5e0344c 100644
 a/src/calibre/gui2/library/delegates.py
-+++ b/src/calibre/gui2/library/delegates.py
-@@ -55,11 +55,11 @@ def updateEditorGeometry(self, editor, option, index):
- # Now get the size of the combo/spinner arrows and add them to the 
needed width
- if isinstance(editor, (QComboBox, QDateTimeEdit)):
- r = style.subControlRect(QStyle.CC_ComboBox, 
QStyleOptionComboBox(),
--  QStyle.SC_ComboBoxArrow)
-+  QStyle.SC_ComboBoxArrow, editor)
- new_width += r.width()
- elif isinstance(editor, (QSpinBox, QDoubleSpinBox)):
- r = style.subControlRect(QStyle.CC_SpinBox, QStyleOptionSpinBox(),
--  QStyle.SC_SpinBoxUp)
-+  QStyle.SC_SpinBoxUp, editor)
- new_width += r.width()
- 
- # Compute the maximum we can show if we consume the entire viewport
-diff --git a/src/calibre/gui2/library/views.py 
b/src/calibre/gui2/library/views.py
-index 008721e..7e1743d 100644
 a/src/calibre/gui2/library/views.py
-+++ b/src/calibre/gui2/library/views.py
-@@ -1098,7 +1098,7 @@ def drag_data(self):
- rows = self.selectionModel().selectedRows()
- paths = [force_unicode(p, enc=filesystem_encoding) for p in 
m.paths(rows) if p]
- md = QMimeData()
--md.setData('application/calibre+from_device', 'dummy')
-+md.setData('application/calibre+from_device', b'dummy')
- md.setUrls([QUrl.fromLocalFile(p) for p in paths])
- drag = QDrag(self)
- drag.setMimeData(md)


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

2015-07-24 Thread Levente Polyak
Date: Friday, July 24, 2015 @ 19:41:29
  Author: anthraxx
Revision: 137386

upgpkg: wordpress 4.2.3-1

updpkg wordpress 4.2.3-1

Modified:
  wordpress/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-07-24 15:03:12 UTC (rev 137385)
+++ PKGBUILD2015-07-24 17:41:29 UTC (rev 137386)
@@ -6,7 +6,7 @@
 # Contributor: Christopher Rogers slaxemulator.gmail.com
 
 pkgname=wordpress
-pkgver=4.2.2
+pkgver=4.2.3
 pkgrel=1
 pkgdesc='Blog tool and publishing platform'
 arch=('any')
@@ -20,7 +20,7 @@
 options=('emptydirs')
 install=$pkgname.install
 source=(http://wordpress.org/$pkgname-$pkgver.tar.gz;)
-sha256sums=('3c4e2cc3af289366ff5352e35c3f80fca2dcaed3d56a79f33b25374c356c3f90')
+sha256sums=('49073745a56f8ddf740b95018071d69c3100d730dba014566a49c7b386786b16')
 
 package() {
   install -d $pkgdir/usr/share/webapps


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

2015-07-24 Thread Levente Polyak
Date: Friday, July 24, 2015 @ 19:41:33
  Author: anthraxx
Revision: 137387

archrelease: copy trunk to community-any

Added:
  wordpress/repos/community-any/PKGBUILD
(from rev 137386, wordpress/trunk/PKGBUILD)
  wordpress/repos/community-any/wordpress.install
(from rev 137386, wordpress/trunk/wordpress.install)
Deleted:
  wordpress/repos/community-any/PKGBUILD
  wordpress/repos/community-any/wordpress.install

---+
 PKGBUILD  |   60 ++--
 wordpress.install |   42 ++--
 2 files changed, 51 insertions(+), 51 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-07-24 17:41:29 UTC (rev 137386)
+++ PKGBUILD2015-07-24 17:41:33 UTC (rev 137387)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: Thomas Dziedzic gostrc at gmail
-# Contributor: Jose Valecillos valecillosjg (at) gmail (dot) com
-# Contributor: Kaos gianlucaatlas (at) gmail (dot) com
-# Contributor: Christopher Rogers slaxemulator.gmail.com
-
-pkgname=wordpress
-pkgver=4.2.2
-pkgrel=1
-pkgdesc='Blog tool and publishing platform'
-arch=('any')
-url='http://wordpress.org/'
-license=('GPL')
-depends=('php')
-optdepends=('apache: Web server to run wordpress'
-'nginx: Web server to run wordpress'
-'cherokee: Lightweight Web server to run wordpress'
-'mysql: Database server')
-options=('emptydirs')
-install=$pkgname.install
-source=(http://wordpress.org/$pkgname-$pkgver.tar.gz;)
-sha256sums=('3c4e2cc3af289366ff5352e35c3f80fca2dcaed3d56a79f33b25374c356c3f90')
-
-package() {
-  install -d $pkgdir/usr/share/webapps
-  cp -r wordpress $pkgdir/usr/share/webapps
-}
-
-# vim:set ts=2 sw=2 et:

Copied: wordpress/repos/community-any/PKGBUILD (from rev 137386, 
wordpress/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-07-24 17:41:33 UTC (rev 137387)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Thomas Dziedzic gostrc at gmail
+# Contributor: Jose Valecillos valecillosjg (at) gmail (dot) com
+# Contributor: Kaos gianlucaatlas (at) gmail (dot) com
+# Contributor: Christopher Rogers slaxemulator.gmail.com
+
+pkgname=wordpress
+pkgver=4.2.3
+pkgrel=1
+pkgdesc='Blog tool and publishing platform'
+arch=('any')
+url='http://wordpress.org/'
+license=('GPL')
+depends=('php')
+optdepends=('apache: Web server to run wordpress'
+'nginx: Web server to run wordpress'
+'cherokee: Lightweight Web server to run wordpress'
+'mysql: Database server')
+options=('emptydirs')
+install=$pkgname.install
+source=(http://wordpress.org/$pkgname-$pkgver.tar.gz;)
+sha256sums=('49073745a56f8ddf740b95018071d69c3100d730dba014566a49c7b386786b16')
+
+package() {
+  install -d $pkgdir/usr/share/webapps
+  cp -r wordpress $pkgdir/usr/share/webapps
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: wordpress.install
===
--- wordpress.install   2015-07-24 17:41:29 UTC (rev 137386)
+++ wordpress.install   2015-07-24 17:41:33 UTC (rev 137387)
@@ -1,21 +0,0 @@
-post_install() {
-  # Make uploads work
-  install -dm775 /usr/share/webapps/wordpress/wp-content/uploads
-  chown http:http /usr/share/webapps/wordpress/wp-content/uploads
-  echo 'You can now configure your (PHP compatible) web server to run 
Wordpress'
-}
-
-pre_remove() {
-  cp -r /usr/share/webapps/wordpress /usr/share/webapps/wordpress_backup
-  echo 'Your Wordpress folder were backed up to 
/usr/share/webapps/wordpress_backup'
-}
-
-post_remove() {
-  rm -rf /usr/share/webapps/wordpress
-}
-
-post_upgrade() {
-  echo 'Wordpress is in /usr/share/webapps now'
-}
-
-# vim:set ts=2 sw=2 et:

Copied: wordpress/repos/community-any/wordpress.install (from rev 137386, 
wordpress/trunk/wordpress.install)
===
--- wordpress.install   (rev 0)
+++ wordpress.install   2015-07-24 17:41:33 UTC (rev 137387)
@@ -0,0 +1,21 @@
+post_install() {
+  # Make uploads work
+  install -dm775 /usr/share/webapps/wordpress/wp-content/uploads
+  chown http:http /usr/share/webapps/wordpress/wp-content/uploads
+  echo 'You can now configure your (PHP compatible) web server to run 
Wordpress'
+}
+
+pre_remove() {
+  cp -r /usr/share/webapps/wordpress /usr/share/webapps/wordpress_backup
+  echo 'Your Wordpress folder were backed up to 
/usr/share/webapps/wordpress_backup'
+}
+
+post_remove() {
+  rm -rf /usr/share/webapps/wordpress
+}
+
+post_upgrade() {
+  echo 'Wordpress is in /usr/share/webapps now'
+}
+
+# vim:set ts=2 sw=2 et:


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

2015-07-24 Thread Evangelos Foutras
Date: Saturday, July 25, 2015 @ 01:21:51
  Author: foutrelis
Revision: 242480

upgpkg: chromium 44.0.2403.107-1

New upstream release.

Modified:
  chromium/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-07-24 11:59:01 UTC (rev 242479)
+++ PKGBUILD2015-07-24 23:21:51 UTC (rev 242480)
@@ -5,7 +5,7 @@
 # Contributor: Daniel J Griffiths ghost1...@archlinux.us
 
 pkgname=chromium
-pkgver=44.0.2403.89
+pkgver=44.0.2403.107
 pkgrel=1
 _launcher_ver=2
 pkgdesc=The open-source project behind Google Chrome, an attempt at creating 
a safer, faster, and more stable browser
@@ -30,7 +30,7 @@
 0001-NSS-reject-DH-groups-smaller-than-1024-bits.patch
 0001-Use-the-correct-URL-for-ERR_SSL_WEAK_SERVER_EPHEMERA.patch
 chromium-widevine.patch)
-sha256sums=('badd9aa979487b55bbcce4f54ec16926c6fa7eb46ec2536866200a5e68853a98'
+sha256sums=('d0634ffbe4f158010852fde3ee32aaf7bdf200932573fdf57328dd9ba5983d71'
 '7f91c81721092d707d7b94e6555a48bc7fd0bc0e1174df4649bdcd745930e52f'
 '028a748a5c275de9b8f776f97909f999a8583a4b77fd1cd600b4fc5c0c3e91e9'
 '46daf921ed7eaab175f5a86b09357c69c33a10ffe1d4e7c24476af510c1b28d0'


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

2015-07-24 Thread Evangelos Foutras
Date: Saturday, July 25, 2015 @ 01:22:15
  Author: foutrelis
Revision: 242481

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

Added:
  
chromium/repos/extra-i686/0001-NSS-reject-DH-groups-smaller-than-1024-bits.patch
(from rev 242480, 
chromium/trunk/0001-NSS-reject-DH-groups-smaller-than-1024-bits.patch)
  
chromium/repos/extra-i686/0001-Use-the-correct-URL-for-ERR_SSL_WEAK_SERVER_EPHEMERA.patch
(from rev 242480, 
chromium/trunk/0001-Use-the-correct-URL-for-ERR_SSL_WEAK_SERVER_EPHEMERA.patch)
  chromium/repos/extra-i686/PKGBUILD
(from rev 242480, chromium/trunk/PKGBUILD)
  chromium/repos/extra-i686/chromium-widevine.patch
(from rev 242480, chromium/trunk/chromium-widevine.patch)
  chromium/repos/extra-i686/chromium.desktop
(from rev 242480, chromium/trunk/chromium.desktop)
  chromium/repos/extra-i686/chromium.install
(from rev 242480, chromium/trunk/chromium.install)
  
chromium/repos/extra-x86_64/0001-NSS-reject-DH-groups-smaller-than-1024-bits.patch
(from rev 242480, 
chromium/trunk/0001-NSS-reject-DH-groups-smaller-than-1024-bits.patch)
  
chromium/repos/extra-x86_64/0001-Use-the-correct-URL-for-ERR_SSL_WEAK_SERVER_EPHEMERA.patch
(from rev 242480, 
chromium/trunk/0001-Use-the-correct-URL-for-ERR_SSL_WEAK_SERVER_EPHEMERA.patch)
  chromium/repos/extra-x86_64/PKGBUILD
(from rev 242480, chromium/trunk/PKGBUILD)
  chromium/repos/extra-x86_64/chromium-widevine.patch
(from rev 242480, chromium/trunk/chromium-widevine.patch)
  chromium/repos/extra-x86_64/chromium.desktop
(from rev 242480, chromium/trunk/chromium.desktop)
  chromium/repos/extra-x86_64/chromium.install
(from rev 242480, chromium/trunk/chromium.install)
Deleted:
  
chromium/repos/extra-i686/0001-NSS-reject-DH-groups-smaller-than-1024-bits.patch
  
chromium/repos/extra-i686/0001-Use-the-correct-URL-for-ERR_SSL_WEAK_SERVER_EPHEMERA.patch
  chromium/repos/extra-i686/PKGBUILD
  chromium/repos/extra-i686/chromium-widevine.patch
  chromium/repos/extra-i686/chromium.desktop
  chromium/repos/extra-i686/chromium.install
  
chromium/repos/extra-x86_64/0001-NSS-reject-DH-groups-smaller-than-1024-bits.patch
  
chromium/repos/extra-x86_64/0001-Use-the-correct-URL-for-ERR_SSL_WEAK_SERVER_EPHEMERA.patch
  chromium/repos/extra-x86_64/PKGBUILD
  chromium/repos/extra-x86_64/chromium-widevine.patch
  chromium/repos/extra-x86_64/chromium.desktop
  chromium/repos/extra-x86_64/chromium.install

--+
 /0001-NSS-reject-DH-groups-smaller-than-1024-bits.patch  | 
  66 +
 /0001-Use-the-correct-URL-for-ERR_SSL_WEAK_SERVER_EPHEMERA.patch | 
  64 +
 /PKGBUILD| 
 420 ++
 /chromium-widevine.patch | 
  24 
 /chromium.desktop| 
 224 +
 /chromium.install| 
  54 +
 extra-i686/0001-NSS-reject-DH-groups-smaller-than-1024-bits.patch| 
  33 
 extra-i686/0001-Use-the-correct-URL-for-ERR_SSL_WEAK_SERVER_EPHEMERA.patch   | 
  32 
 extra-i686/PKGBUILD  | 
 210 -
 extra-i686/chromium-widevine.patch   | 
  12 
 extra-i686/chromium.desktop  | 
 112 --
 extra-i686/chromium.install  | 
  27 
 extra-x86_64/0001-NSS-reject-DH-groups-smaller-than-1024-bits.patch  | 
  33 
 extra-x86_64/0001-Use-the-correct-URL-for-ERR_SSL_WEAK_SERVER_EPHEMERA.patch | 
  32 
 extra-x86_64/PKGBUILD| 
 210 -
 extra-x86_64/chromium-widevine.patch | 
  12 
 extra-x86_64/chromium.desktop| 
 112 --
 extra-x86_64/chromium.install| 
  27 
 18 files changed, 852 insertions(+), 852 deletions(-)

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


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

2015-07-24 Thread Sergej Pupykin
Date: Friday, July 24, 2015 @ 21:28:43
  Author: spupykin
Revision: 137394

archrelease: copy trunk to community-x86_64

Added:
  glusterfs/repos/community-x86_64/PKGBUILD
(from rev 137393, glusterfs/trunk/PKGBUILD)
  glusterfs/repos/community-x86_64/glusterfs.install
(from rev 137393, glusterfs/trunk/glusterfs.install)
Deleted:
  glusterfs/repos/community-x86_64/PKGBUILD
  glusterfs/repos/community-x86_64/glusterfs.install

---+
 PKGBUILD  |  127 ++--
 glusterfs.install |   16 +++---
 2 files changed, 72 insertions(+), 71 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-07-24 19:18:11 UTC (rev 137393)
+++ PKGBUILD2015-07-24 19:28:43 UTC (rev 137394)
@@ -1,63 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributors:
-#   Andrei Antoukh - n...@niwi.be - http://www.niwi.be
-#   henning mueller henn...@orgizm.net
-
-pkgname=glusterfs
-pkgver=3.7.2
-pkgrel=1
-pkgdesc='Is a cluster file-system capable of scaling to several peta-bytes.'
-arch=(i686 x86_64)
-url='http://www.gluster.org/'
-license=(GPL2 LGPL3)
-install=glusterfs.install
-depends=(fuse python2 libxml2 libaio liburcu)
-makedepends=(flex bison)
-optdepends=('rpcbind: NFS'
-   'glib2: qemu-block')
-source=($pkgname-$pkgver.tar.gz::https://github.com/gluster/glusterfs/archive/v$pkgver.tar.gz)
-md5sums=('02bc49db6013495edacebe1ee3d1bca0')
-
-prepare() {
-  cd $srcdir/$pkgname-$pkgver
-  find -type f -name '*.py' -exec sed -i \
--e 's:env\ python:env\ python2:' \
--e 's:/usr/bin/python:/usr/bin/python2:' {} \;
-}
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./autogen.sh
-  ./configure \
---prefix=/usr \
---sbindir=/usr/bin \
---with-mountutildir=/usr/bin \
---sysconfdir=/etc \
---localstatedir=/var \
---mandir=/usr/share/man \
---libexecdir=/usr/lib/$pkgname \
---with-systemddir=/usr/lib/systemd/system \
-PYTHON=python2 LEXLIB=
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-
-  make -j1 DESTDIR=$pkgdir install
-
-  mkdir -p $pkgdir/usr/lib/tmpfiles.d
-  echo d /var/run/glusterfs 0755 root root - 
$pkgdir/usr/lib/tmpfiles.d/glusterfs.conf
-
-  install -D -m 644 \
-$srcdir/$pkgname-$pkgver/{README.md,INSTALL,COPYING*} \
-$pkgdir/usr/share/doc/glusterfs/
-
-  cp -rf \
-$srcdir/$pkgname-$pkgver/doc/* \
-$pkgdir/usr/share/doc/glusterfs/
-  rm -rf $pkgdir/var/run
-}
-
-# vim:set ts=2 sw=2 et:

Copied: glusterfs/repos/community-x86_64/PKGBUILD (from rev 137393, 
glusterfs/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-07-24 19:28:43 UTC (rev 137394)
@@ -0,0 +1,64 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributors:
+#   Andrei Antoukh - n...@niwi.be - http://www.niwi.be
+#   henning mueller henn...@orgizm.net
+
+pkgname=glusterfs
+pkgver=3.7.2
+pkgrel=2
+pkgdesc='Is a cluster file-system capable of scaling to several peta-bytes.'
+arch=(i686 x86_64)
+url='http://www.gluster.org/'
+license=(GPL2 LGPL3)
+install=glusterfs.install
+depends=(fuse python2 libxml2 libaio liburcu)
+makedepends=(flex bison)
+optdepends=('rpcbind: NFS'
+   'glib2: qemu-block')
+#source=($pkgname-$pkgver.tar.gz::https://github.com/gluster/glusterfs/archive/v$pkgver.tar.gz)
+source=(https://download.gluster.org/pub/gluster/glusterfs/${pkgver%.?}/$pkgver/glusterfs-$pkgver.tar.gz)
+md5sums=('8354e1b830874a13c14a816e7c14c287')
+
+prepare() {
+  cd $srcdir/$pkgname-$pkgver
+  find -type f -name '*.py' -exec sed -i \
+-e 's:env\ python:env\ python2:' \
+-e 's:/usr/bin/python:/usr/bin/python2:' {} \;
+}
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./autogen.sh
+  ./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--with-mountutildir=/usr/bin \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--mandir=/usr/share/man \
+--libexecdir=/usr/lib/$pkgname \
+--with-systemddir=/usr/lib/systemd/system \
+PYTHON=python2 LEXLIB=
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+
+  make -j1 DESTDIR=$pkgdir install
+
+  mkdir -p $pkgdir/usr/lib/tmpfiles.d
+  echo d /var/run/glusterfs 0755 root root - 
$pkgdir/usr/lib/tmpfiles.d/glusterfs.conf
+
+  install -D -m 644 \
+$srcdir/$pkgname-$pkgver/{README.md,INSTALL,COPYING*} \
+$pkgdir/usr/share/doc/glusterfs/
+
+  cp -rf \
+$srcdir/$pkgname-$pkgver/doc/* \
+$pkgdir/usr/share/doc/glusterfs/
+  rm -rf $pkgdir/var/run
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: glusterfs.install
===
--- glusterfs.install   2015-07-24 19:18:11 UTC (rev 137393)
+++ glusterfs.install   2015-07-24 19:28:43 UTC (rev 137394)
@@ -1,8 +0,0 @@
-post_install() {
-  systemd-tmpfiles --create glusterfs.conf
-}
-
-post_upgrade() {
-  systemd-tmpfiles 

[arch-commits] Commit in uwsgi/repos/community-i686 (24 files)

2015-07-24 Thread Sven-Hendrik Haase
Date: Friday, July 24, 2015 @ 21:03:01
  Author: svenstaro
Revision: 137390

archrelease: copy trunk to community-i686

Added:
  uwsgi/repos/community-i686/PKGBUILD
(from rev 137389, uwsgi/trunk/PKGBUILD)
  uwsgi/repos/community-i686/archlinux.ini
(from rev 137389, uwsgi/trunk/archlinux.ini)
  uwsgi/repos/community-i686/emperor.ini
(from rev 137389, uwsgi/trunk/emperor.ini)
  uwsgi/repos/community-i686/emperor.uwsgi.service
(from rev 137389, uwsgi/trunk/emperor.uwsgi.service)
  uwsgi/repos/community-i686/emperor.uwsgi.socket
(from rev 137389, uwsgi/trunk/emperor.uwsgi.socket)
  uwsgi/repos/community-i686/tmpfilesd
(from rev 137389, uwsgi/trunk/tmpfilesd)
  uwsgi/repos/community-i686/uwsgi.install
(from rev 137389, uwsgi/trunk/uwsgi.install)
  uwsgi/repos/community-i686/uwsgi_at.service
(from rev 137389, uwsgi/trunk/uwsgi_at.service)
  uwsgi/repos/community-i686/uwsgi_at.socket
(from rev 137389, uwsgi/trunk/uwsgi_at.socket)
  uwsgi/repos/community-i686/uwsgi_fix_rpath.patch
(from rev 137389, uwsgi/trunk/uwsgi_fix_rpath.patch)
  uwsgi/repos/community-i686/uwsgi_ruby20_compatibility.patch
(from rev 137389, uwsgi/trunk/uwsgi_ruby20_compatibility.patch)
  uwsgi/repos/community-i686/uwsgi_trick_chroot.patch
(from rev 137389, uwsgi/trunk/uwsgi_trick_chroot.patch)
Deleted:
  uwsgi/repos/community-i686/PKGBUILD
  uwsgi/repos/community-i686/archlinux.ini
  uwsgi/repos/community-i686/emperor.ini
  uwsgi/repos/community-i686/emperor.uwsgi.service
  uwsgi/repos/community-i686/emperor.uwsgi.socket
  uwsgi/repos/community-i686/tmpfilesd
  uwsgi/repos/community-i686/uwsgi.install
  uwsgi/repos/community-i686/uwsgi_at.service
  uwsgi/repos/community-i686/uwsgi_at.socket
  uwsgi/repos/community-i686/uwsgi_fix_rpath.patch
  uwsgi/repos/community-i686/uwsgi_ruby20_compatibility.patch
  uwsgi/repos/community-i686/uwsgi_trick_chroot.patch

--+
 PKGBUILD |  392 ++---
 archlinux.ini|   10 
 emperor.ini  |8 
 emperor.uwsgi.service|   32 +--
 emperor.uwsgi.socket |   18 -
 tmpfilesd|2 
 uwsgi.install|   24 +-
 uwsgi_at.service |   32 +--
 uwsgi_at.socket  |   18 -
 uwsgi_fix_rpath.patch|  132 ++--
 uwsgi_ruby20_compatibility.patch |   84 +++
 uwsgi_trick_chroot.patch |   32 +--
 12 files changed, 392 insertions(+), 392 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-07-24 19:02:48 UTC (rev 137389)
+++ PKGBUILD2015-07-24 19:03:01 UTC (rev 137390)
@@ -1,196 +0,0 @@
-# $Id$
-# Maintainer: Daniel Wallace danielwallace at gtmanfred dot com
-# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
-# Contributor: Valentin Hăloiu vially.ichb+...@gmail.com
-# Contributor: Angel Velasquez an...@archlinux.org
-# Contributor: Kevin Zuber u...@knet.eu
-# Contributor: Vsevolod Balashov vsevo...@balashov.name
-# Contributor: David Runge d...@sleepmap.de
-
-pkgbase=uwsgi
-pkgname=(uwsgi
- uwsgi-plugin-rack
- uwsgi-plugin-psgi
- uwsgi-plugin-cgi
- uwsgi-plugin-python2
- uwsgi-plugin-python
- uwsgi-plugin-pypy
- uwsgi-plugin-php
- uwsgi-plugin-lua51
- uwsgi-plugin-jvm
- uwsgi-plugin-mono
- uwsgi-plugin-webdav
- mod_proxy_uwsgi)
-pkgver=2.0.10
-pkgrel=3
-arch=(i686 x86_64)
-url=http://projects.unbit.it/$pkgbase;
-license=(GPL2)
-backup=('etc/uwsgi/emperor.ini')
-conflicts=(python-$pkgbase)
-makedepends=(gcc python python2 ruby python2-greenlet python-greenlet 
php-embed curl libxml2 libyaml
- perl lua51 pcre libedit openssl bzip2 gmp pam java-environment=7
- jansson classpath pypy mono python2-gevent apache)
-source=(http://projects.unbit.it/downloads/$pkgbase-$pkgver.tar.gz
-archlinux.ini
-tmpfilesd
-uwsgi_at.service
-uwsgi_at.socket
-uwsgi_fix_rpath.patch
-uwsgi_ruby20_compatibility.patch
-uwsgi_trick_chroot.patch
-emperor.ini
-emperor.uwsgi.service
-emperor.uwsgi.socket)
-
-md5sums=('7a9be0db5f6a8d4150dc5e9e0517ce80'
- '9aced0faffc5fc04afccf946e8a2a886'
- '752475ee32286acfbafa49b898616817'
- 'feaf107977aec047101acdbf06810f30'
- 'ea381549fe65a5d72fa1abb5ceb7d3ef'
- '1a4516d5cdcf5b95b036f4eae2d0c152'
- '4d09535ce379c8acd76160f35d5d6b55'
- '0c09a52fdb88f08c36a8b380f451ce6d'
- '5fa14ddea9a3dae17b5be28468d47b80'
- '25dfcc365241f16d7ea16f7143698b53'
- '3ab4486e02f5c217566fb6c8d469c246')
-
-prepare() {
-cd $srcdir/$pkgbase-$pkgver
-cp $srcdir/archlinux.ini buildconf/archlinux.ini
-#sed -i 's/LIBS .*-lphp5.*/LIBS = []/' plugins/php/uwsgiplugin.py
-for patch in 

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

2015-07-24 Thread Sven-Hendrik Haase
Date: Friday, July 24, 2015 @ 21:02:48
  Author: svenstaro
Revision: 137389

upgpkg: uwsgi 2.0.11.1-1

upstream release 2.0.11.1

Modified:
  uwsgi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-07-24 18:02:41 UTC (rev 137388)
+++ PKGBUILD2015-07-24 19:02:48 UTC (rev 137389)
@@ -21,8 +21,8 @@
  uwsgi-plugin-mono
  uwsgi-plugin-webdav
  mod_proxy_uwsgi)
-pkgver=2.0.10
-pkgrel=3
+pkgver=2.0.11.1
+pkgrel=1
 arch=(i686 x86_64)
 url=http://projects.unbit.it/$pkgbase;
 license=(GPL2)
@@ -43,7 +43,7 @@
 emperor.uwsgi.service
 emperor.uwsgi.socket)
 
-md5sums=('7a9be0db5f6a8d4150dc5e9e0517ce80'
+md5sums=('087ba7b53bd4afc0f0218f5eb3398809'
  '9aced0faffc5fc04afccf946e8a2a886'
  '752475ee32286acfbafa49b898616817'
  'feaf107977aec047101acdbf06810f30'


[arch-commits] Commit in uwsgi/repos (48 files)

2015-07-24 Thread Sven-Hendrik Haase
Date: Friday, July 24, 2015 @ 21:04:54
  Author: svenstaro
Revision: 137391

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

Added:
  uwsgi/repos/community-i686/PKGBUILD
(from rev 137390, uwsgi/trunk/PKGBUILD)
  uwsgi/repos/community-i686/archlinux.ini
(from rev 137390, uwsgi/trunk/archlinux.ini)
  uwsgi/repos/community-i686/emperor.ini
(from rev 137390, uwsgi/trunk/emperor.ini)
  uwsgi/repos/community-i686/emperor.uwsgi.service
(from rev 137390, uwsgi/trunk/emperor.uwsgi.service)
  uwsgi/repos/community-i686/emperor.uwsgi.socket
(from rev 137390, uwsgi/trunk/emperor.uwsgi.socket)
  uwsgi/repos/community-i686/tmpfilesd
(from rev 137390, uwsgi/trunk/tmpfilesd)
  uwsgi/repos/community-i686/uwsgi.install
(from rev 137390, uwsgi/trunk/uwsgi.install)
  uwsgi/repos/community-i686/uwsgi_at.service
(from rev 137390, uwsgi/trunk/uwsgi_at.service)
  uwsgi/repos/community-i686/uwsgi_at.socket
(from rev 137390, uwsgi/trunk/uwsgi_at.socket)
  uwsgi/repos/community-i686/uwsgi_fix_rpath.patch
(from rev 137390, uwsgi/trunk/uwsgi_fix_rpath.patch)
  uwsgi/repos/community-i686/uwsgi_ruby20_compatibility.patch
(from rev 137390, uwsgi/trunk/uwsgi_ruby20_compatibility.patch)
  uwsgi/repos/community-i686/uwsgi_trick_chroot.patch
(from rev 137390, uwsgi/trunk/uwsgi_trick_chroot.patch)
  uwsgi/repos/community-x86_64/PKGBUILD
(from rev 137390, uwsgi/trunk/PKGBUILD)
  uwsgi/repos/community-x86_64/archlinux.ini
(from rev 137390, uwsgi/trunk/archlinux.ini)
  uwsgi/repos/community-x86_64/emperor.ini
(from rev 137390, uwsgi/trunk/emperor.ini)
  uwsgi/repos/community-x86_64/emperor.uwsgi.service
(from rev 137390, uwsgi/trunk/emperor.uwsgi.service)
  uwsgi/repos/community-x86_64/emperor.uwsgi.socket
(from rev 137390, uwsgi/trunk/emperor.uwsgi.socket)
  uwsgi/repos/community-x86_64/tmpfilesd
(from rev 137390, uwsgi/trunk/tmpfilesd)
  uwsgi/repos/community-x86_64/uwsgi.install
(from rev 137390, uwsgi/trunk/uwsgi.install)
  uwsgi/repos/community-x86_64/uwsgi_at.service
(from rev 137390, uwsgi/trunk/uwsgi_at.service)
  uwsgi/repos/community-x86_64/uwsgi_at.socket
(from rev 137390, uwsgi/trunk/uwsgi_at.socket)
  uwsgi/repos/community-x86_64/uwsgi_fix_rpath.patch
(from rev 137390, uwsgi/trunk/uwsgi_fix_rpath.patch)
  uwsgi/repos/community-x86_64/uwsgi_ruby20_compatibility.patch
(from rev 137390, uwsgi/trunk/uwsgi_ruby20_compatibility.patch)
  uwsgi/repos/community-x86_64/uwsgi_trick_chroot.patch
(from rev 137390, uwsgi/trunk/uwsgi_trick_chroot.patch)
Deleted:
  uwsgi/repos/community-i686/PKGBUILD
  uwsgi/repos/community-i686/archlinux.ini
  uwsgi/repos/community-i686/emperor.ini
  uwsgi/repos/community-i686/emperor.uwsgi.service
  uwsgi/repos/community-i686/emperor.uwsgi.socket
  uwsgi/repos/community-i686/tmpfilesd
  uwsgi/repos/community-i686/uwsgi.install
  uwsgi/repos/community-i686/uwsgi_at.service
  uwsgi/repos/community-i686/uwsgi_at.socket
  uwsgi/repos/community-i686/uwsgi_fix_rpath.patch
  uwsgi/repos/community-i686/uwsgi_ruby20_compatibility.patch
  uwsgi/repos/community-i686/uwsgi_trick_chroot.patch
  uwsgi/repos/community-x86_64/PKGBUILD
  uwsgi/repos/community-x86_64/archlinux.ini
  uwsgi/repos/community-x86_64/emperor.ini
  uwsgi/repos/community-x86_64/emperor.uwsgi.service
  uwsgi/repos/community-x86_64/emperor.uwsgi.socket
  uwsgi/repos/community-x86_64/tmpfilesd
  uwsgi/repos/community-x86_64/uwsgi.install
  uwsgi/repos/community-x86_64/uwsgi_at.service
  uwsgi/repos/community-x86_64/uwsgi_at.socket
  uwsgi/repos/community-x86_64/uwsgi_fix_rpath.patch
  uwsgi/repos/community-x86_64/uwsgi_ruby20_compatibility.patch
  uwsgi/repos/community-x86_64/uwsgi_trick_chroot.patch

---+
 /PKGBUILD |  392 
 /archlinux.ini|   10 
 /emperor.ini  |8 
 /emperor.uwsgi.service|   32 +
 /emperor.uwsgi.socket |   18 
 /tmpfilesd|2 
 /uwsgi.install|   24 +
 /uwsgi_at.service |   32 +
 /uwsgi_at.socket  |   18 
 /uwsgi_fix_rpath.patch|  132 ++
 /uwsgi_ruby20_compatibility.patch |   84 
 /uwsgi_trick_chroot.patch |   32 +
 community-i686/PKGBUILD   |  196 --
 community-i686/archlinux.ini  |5 
 community-i686/emperor.ini|4 
 community-i686/emperor.uwsgi.service  |   16 
 community-i686/emperor.uwsgi.socket   |9 
 community-i686/tmpfilesd  |1 
 community-i686/uwsgi.install  |   12 
 community-i686/uwsgi_at.service   

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

2015-07-24 Thread Sergej Pupykin
Date: Friday, July 24, 2015 @ 21:18:11
  Author: spupykin
Revision: 137393

archrelease: copy trunk to community-i686

Added:
  glusterfs/repos/community-i686/PKGBUILD
(from rev 137392, glusterfs/trunk/PKGBUILD)
  glusterfs/repos/community-i686/glusterfs.install
(from rev 137392, glusterfs/trunk/glusterfs.install)
Deleted:
  glusterfs/repos/community-i686/PKGBUILD
  glusterfs/repos/community-i686/glusterfs.install

---+
 PKGBUILD  |  127 ++--
 glusterfs.install |   16 +++---
 2 files changed, 72 insertions(+), 71 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-07-24 19:18:00 UTC (rev 137392)
+++ PKGBUILD2015-07-24 19:18:11 UTC (rev 137393)
@@ -1,63 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributors:
-#   Andrei Antoukh - n...@niwi.be - http://www.niwi.be
-#   henning mueller henn...@orgizm.net
-
-pkgname=glusterfs
-pkgver=3.7.2
-pkgrel=1
-pkgdesc='Is a cluster file-system capable of scaling to several peta-bytes.'
-arch=(i686 x86_64)
-url='http://www.gluster.org/'
-license=(GPL2 LGPL3)
-install=glusterfs.install
-depends=(fuse python2 libxml2 libaio liburcu)
-makedepends=(flex bison)
-optdepends=('rpcbind: NFS'
-   'glib2: qemu-block')
-source=($pkgname-$pkgver.tar.gz::https://github.com/gluster/glusterfs/archive/v$pkgver.tar.gz)
-md5sums=('02bc49db6013495edacebe1ee3d1bca0')
-
-prepare() {
-  cd $srcdir/$pkgname-$pkgver
-  find -type f -name '*.py' -exec sed -i \
--e 's:env\ python:env\ python2:' \
--e 's:/usr/bin/python:/usr/bin/python2:' {} \;
-}
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./autogen.sh
-  ./configure \
---prefix=/usr \
---sbindir=/usr/bin \
---with-mountutildir=/usr/bin \
---sysconfdir=/etc \
---localstatedir=/var \
---mandir=/usr/share/man \
---libexecdir=/usr/lib/$pkgname \
---with-systemddir=/usr/lib/systemd/system \
-PYTHON=python2 LEXLIB=
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-
-  make -j1 DESTDIR=$pkgdir install
-
-  mkdir -p $pkgdir/usr/lib/tmpfiles.d
-  echo d /var/run/glusterfs 0755 root root - 
$pkgdir/usr/lib/tmpfiles.d/glusterfs.conf
-
-  install -D -m 644 \
-$srcdir/$pkgname-$pkgver/{README.md,INSTALL,COPYING*} \
-$pkgdir/usr/share/doc/glusterfs/
-
-  cp -rf \
-$srcdir/$pkgname-$pkgver/doc/* \
-$pkgdir/usr/share/doc/glusterfs/
-  rm -rf $pkgdir/var/run
-}
-
-# vim:set ts=2 sw=2 et:

Copied: glusterfs/repos/community-i686/PKGBUILD (from rev 137392, 
glusterfs/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-07-24 19:18:11 UTC (rev 137393)
@@ -0,0 +1,64 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributors:
+#   Andrei Antoukh - n...@niwi.be - http://www.niwi.be
+#   henning mueller henn...@orgizm.net
+
+pkgname=glusterfs
+pkgver=3.7.2
+pkgrel=2
+pkgdesc='Is a cluster file-system capable of scaling to several peta-bytes.'
+arch=(i686 x86_64)
+url='http://www.gluster.org/'
+license=(GPL2 LGPL3)
+install=glusterfs.install
+depends=(fuse python2 libxml2 libaio liburcu)
+makedepends=(flex bison)
+optdepends=('rpcbind: NFS'
+   'glib2: qemu-block')
+#source=($pkgname-$pkgver.tar.gz::https://github.com/gluster/glusterfs/archive/v$pkgver.tar.gz)
+source=(https://download.gluster.org/pub/gluster/glusterfs/${pkgver%.?}/$pkgver/glusterfs-$pkgver.tar.gz)
+md5sums=('8354e1b830874a13c14a816e7c14c287')
+
+prepare() {
+  cd $srcdir/$pkgname-$pkgver
+  find -type f -name '*.py' -exec sed -i \
+-e 's:env\ python:env\ python2:' \
+-e 's:/usr/bin/python:/usr/bin/python2:' {} \;
+}
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./autogen.sh
+  ./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--with-mountutildir=/usr/bin \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--mandir=/usr/share/man \
+--libexecdir=/usr/lib/$pkgname \
+--with-systemddir=/usr/lib/systemd/system \
+PYTHON=python2 LEXLIB=
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+
+  make -j1 DESTDIR=$pkgdir install
+
+  mkdir -p $pkgdir/usr/lib/tmpfiles.d
+  echo d /var/run/glusterfs 0755 root root - 
$pkgdir/usr/lib/tmpfiles.d/glusterfs.conf
+
+  install -D -m 644 \
+$srcdir/$pkgname-$pkgver/{README.md,INSTALL,COPYING*} \
+$pkgdir/usr/share/doc/glusterfs/
+
+  cp -rf \
+$srcdir/$pkgname-$pkgver/doc/* \
+$pkgdir/usr/share/doc/glusterfs/
+  rm -rf $pkgdir/var/run
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: glusterfs.install
===
--- glusterfs.install   2015-07-24 19:18:00 UTC (rev 137392)
+++ glusterfs.install   2015-07-24 19:18:11 UTC (rev 137393)
@@ -1,8 +0,0 @@
-post_install() {
-  systemd-tmpfiles --create glusterfs.conf
-}
-
-post_upgrade() {
-  systemd-tmpfiles --create 

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

2015-07-24 Thread Sergej Pupykin
Date: Friday, July 24, 2015 @ 21:18:00
  Author: spupykin
Revision: 137392

upgpkg: glusterfs 3.7.2-2

upd

Modified:
  glusterfs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-07-24 19:04:54 UTC (rev 137391)
+++ PKGBUILD2015-07-24 19:18:00 UTC (rev 137392)
@@ -6,7 +6,7 @@
 
 pkgname=glusterfs
 pkgver=3.7.2
-pkgrel=1
+pkgrel=2
 pkgdesc='Is a cluster file-system capable of scaling to several peta-bytes.'
 arch=(i686 x86_64)
 url='http://www.gluster.org/'
@@ -16,8 +16,9 @@
 makedepends=(flex bison)
 optdepends=('rpcbind: NFS'
'glib2: qemu-block')
-source=($pkgname-$pkgver.tar.gz::https://github.com/gluster/glusterfs/archive/v$pkgver.tar.gz)
-md5sums=('02bc49db6013495edacebe1ee3d1bca0')
+#source=($pkgname-$pkgver.tar.gz::https://github.com/gluster/glusterfs/archive/v$pkgver.tar.gz)
+source=(https://download.gluster.org/pub/gluster/glusterfs/${pkgver%.?}/$pkgver/glusterfs-$pkgver.tar.gz)
+md5sums=('8354e1b830874a13c14a816e7c14c287')
 
 prepare() {
   cd $srcdir/$pkgname-$pkgver


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

2015-07-24 Thread Sébastien Luttringer
Date: Saturday, July 25, 2015 @ 02:34:40
  Author: seblu
Revision: 242484

upgpkg: qemu 2.3.0-4

- Implement FS#45208

Modified:
  qemu/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-07-25 00:22:26 UTC (rev 242483)
+++ PKGBUILD2015-07-25 00:34:40 UTC (rev 242484)
@@ -2,15 +2,15 @@
 # Maintainer: Tobias Powalowski tp...@archlinux.org
 pkgname=('qemu' 'libcacard')
 pkgver=2.3.0
-pkgrel=3
+pkgrel=4
 arch=('i686' 'x86_64')
 license=('GPL2' 'LGPL2.1')
 url=http://wiki.qemu.org/Index.html;
 makedepends=('pixman' 'libjpeg' 'libpng' 'sdl' 'alsa-lib' 'nss' 'glib2'
- 'gnutls=2.4.1' 'bluez-libs' 'vde2' 'util-linux' 'curl' 'libsasl'
+ 'gnutls' 'bluez-libs' 'vde2' 'util-linux' 'curl' 'libsasl'
  'libgl' 'libpulse' 'seabios' 'libcap-ng' 'libaio' 'libseccomp'
  'libiscsi' 'libcacard' 'spice' 'spice-protocol' 'python2'
- 'usbredir' 'ceph')
+ 'usbredir' 'ceph' 'glusterfs' 'libssh2' 'lzo')
 options=(!strip)
 source=(http://wiki.qemu.org/download/${pkgname}-${pkgver}.tar.bz2
 CVE-2015-3456.patch
@@ -27,7 +27,7 @@
   # qemu vs. make 4 == bad
   export ARFLAGS=rv
   # http://permalink.gmane.org/gmane.comp.emulators.qemu/238740
-
+  export CFLAGS+=' -fPIC'
   # gtk gui breaks keymappings at the moment
   ./configure --prefix=/usr --sysconfdir=/etc --audio-drv-list='pa alsa sdl' \
   --python=/usr/bin/python2 --smbd=/usr/bin/smbd \
@@ -34,7 +34,8 @@
   --enable-docs --libexecdir=/usr/lib/qemu \
   --disable-gtk --enable-linux-aio --enable-seccomp \
   --enable-spice --localstatedir=/var \
-  --enable-tpm 
+  --enable-tpm \
+  --enable-modules --enable-{rbd,glusterfs,libiscsi,curl}
   make V=99
 }
 
@@ -41,12 +42,17 @@
 package_qemu() {
   pkgdesc=A generic and open source processor emulator which achieves a good 
emulation speed by using dynamic translation.
   depends=('pixman' 'libjpeg' 'libpng' 'sdl' 'alsa-lib' 'nss' 'glib2'
- 'gnutls=2.4.1' 'bluez-libs' 'vde2' 'util-linux' 'curl' 'libsasl'
+ 'gnutls' 'bluez-libs' 'vde2' 'util-linux' 'curl' 'libsasl'
  'libgl' 'libpulse' 'seabios' 'libcap-ng' 'libaio' 'libseccomp'
- 'libiscsi' 'libcacard' 'spice' 'usbredir' 'libssh2=1.5.0' 'ceph')
+ 'libcacard' 'spice' 'usbredir' 'lzo')
   backup=('etc/qemu/target-x86_64.conf')
   replaces=('qemu-kvm')
-  optdepends=('samba: for SMB Server support')
+  optdepends=('samba: for SMB server support'
+ 'libssh2: for remote disks over ssh support'
+ 'curl: for remote disks over http/ftp support'
+  'libiscsi: for iSCSI support'
+  'ceph: for RDB support'
+ 'glusterfs: for glusterfs support')
   install=qemu.install
   cd ${srcdir}/${pkgname}-${pkgver}
   make DESTDIR=${pkgdir} libexecdir=/usr/lib/qemu install


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

2015-07-24 Thread Sébastien Luttringer
Date: Saturday, July 25, 2015 @ 02:35:17
  Author: seblu
Revision: 137397

upgpkg: libvirt 1.2.17-2

- fix FS#45252

Modified:
  libvirt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-07-24 20:25:35 UTC (rev 137396)
+++ PKGBUILD2015-07-25 00:35:17 UTC (rev 137397)
@@ -4,7 +4,7 @@
 
 pkgname=libvirt
 pkgver=1.2.17
-pkgrel=1
+pkgrel=2
 pkgdesc=API for controlling virtualization engines 
(openvz,kvm,qemu,virtualbox,xen,etc)
 arch=('i686' 'x86_64')
 url=http://libvirt.org/;
@@ -113,9 +113,13 @@
   install -D -m644 $srcdir/libvirtd-guests.conf.d 
$pkgdir/etc/conf.d/libvirt-guests
   install -D -m644 $srcdir/libvirt.tmpfiles.d 
$pkgdir/usr/lib/tmpfiles.d/libvirt.conf
 
-  chown -R 0:78 $pkgdir/var/lib/libvirt/qemu
-  chmod 0770 $pkgdir/var/lib/libvirt/qemu
+  chown -R 0:78 $pkgdir/var/lib/libvirt/qemu
+  chmod 0770 $pkgdir/var/lib/libvirt/qemu
 
+  # FS#45252
+  chown polkitd $pkgdir/usr/share/polkit-1/rules.d
+  chmod 0700 $pkgdir/usr/share/polkit-1/rules.d
+
   rm -rf \
$pkgdir/var/run \
$pkgdir/etc/sysconfig \


[arch-commits] Commit in nvidia-304xx/repos (community-i686 community-x86_64)

2015-07-24 Thread Sébastien Luttringer
Date: Saturday, July 25, 2015 @ 02:58:41
  Author: seblu
Revision: 242486

Crazy man

Deleted:
  nvidia-304xx/repos/community-i686/
  nvidia-304xx/repos/community-x86_64/


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

2015-07-24 Thread Felix Yan
Date: Saturday, July 25, 2015 @ 04:47:59
  Author: fyan
Revision: 137404

archrelease: copy trunk to community-any

Added:
  thefuck/repos/community-any/PKGBUILD
(from rev 137403, thefuck/trunk/PKGBUILD)
Deleted:
  thefuck/repos/community-any/PKGBUILD

--+
 PKGBUILD |   68 ++---
 1 file changed, 34 insertions(+), 34 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-07-25 02:47:37 UTC (rev 137403)
+++ PKGBUILD2015-07-25 02:47:59 UTC (rev 137404)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-
-pkgname=thefuck
-pkgver=2.3
-pkgrel=1
-pkgdesc=Magnificent app which corrects your previous console command
-arch=('any')
-url=https://github.com/nvbn/thefuck;
-license=('MIT')
-depends=('python-setuptools' 'python-psutil' 'python-six' 'python-colorama')
-makedepends=('git')
-checkdepends=('python-pytest-mock' 'python-mock')
-source=(git+https://github.com/nvbn/thefuck.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-build() {
-  cd thefuck
-  python setup.py build
-}
-
-check() {
-  cd thefuck/tests
-  PYTHONPATH=$PWD/build/lib:$PYTHONPATH py.test
-}
-
-package() {
-  cd thefuck
-  python3 setup.py install -O1 --prefix=/usr --root=$pkgdir/
-
-  install -Dm644 LICENSE.md $pkgdir/usr/share/licenses/$pkgname/LICENSE.md
-}
-
-# vim:set ts=2 sw=2 et:

Copied: thefuck/repos/community-any/PKGBUILD (from rev 137403, 
thefuck/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-07-25 02:47:59 UTC (rev 137404)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+
+pkgname=thefuck
+pkgver=2.4
+pkgrel=1
+pkgdesc=Magnificent app which corrects your previous console command
+arch=('any')
+url=https://github.com/nvbn/thefuck;
+license=('MIT')
+depends=('python-setuptools' 'python-psutil' 'python-six' 'python-colorama')
+makedepends=('git')
+checkdepends=('python-pytest-mock' 'python-mock' 'python-pexpect')
+source=(git+https://github.com/nvbn/thefuck.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+build() {
+  cd thefuck
+  python setup.py build
+}
+
+check() {
+  cd thefuck/tests
+  PYTHONPATH=$PWD/build/lib:$PYTHONPATH py.test
+}
+
+package() {
+  cd thefuck
+  python3 setup.py install -O1 --prefix=/usr --root=$pkgdir/
+
+  install -Dm644 LICENSE.md $pkgdir/usr/share/licenses/$pkgname/LICENSE.md
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in nvidia-304xx/trunk (PKGBUILD nvidia-304xx-dkms.install)

2015-07-24 Thread Sébastien Luttringer
Date: Saturday, July 25, 2015 @ 02:21:09
  Author: seblu
Revision: 242482

upgpkg: nvidia-304xx 304.125-20

- Add a DKMS version

Added:
  nvidia-304xx/trunk/nvidia-304xx-dkms.install
Modified:
  nvidia-304xx/trunk/PKGBUILD

---+
 PKGBUILD  |   32 +---
 nvidia-304xx-dkms.install |   30 ++
 2 files changed, 55 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-07-24 23:22:15 UTC (rev 242481)
+++ PKGBUILD2015-07-25 00:21:09 UTC (rev 242482)
@@ -2,18 +2,16 @@
 # Maintainer: Felix Yan felixonm...@archlinux.org
 # Contributor: Thomas Baechler tho...@archlinux.org
 
-pkgname=nvidia-304xx
+pkgbase=nvidia-304xx
+pkgname=(nvidia-304xx nvidia-304xx-dkms)
 pkgver=304.125
 _extramodules=extramodules-4.1-ARCH
-pkgrel=19
-pkgdesc=NVIDIA drivers for linux, 304xx legacy branch
+pkgrel=20
 arch=('i686' 'x86_64')
 url=http://www.nvidia.com/;
-depends=('linux=4.1' 'linux4.2' 'libgl' nvidia-304xx-utils=${pkgver})
-makedepends=('linux-headers=4.1' 'linux-headers4.2')
+makedepends=('libgl' nvidia-304xx-utils=${pkgver} 'linux' 
'linux-headers=4.1' 'linux-headers4.2')
 conflicts=('nvidia')
 license=('custom')
-install=${pkgname}.install
 options=(!strip)
 
source=(http://us.download.nvidia.com/XFree86/Linux-x86/${pkgver}/NVIDIA-Linux-x86-${pkgver}.run;
 
http://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run;
@@ -45,7 +43,12 @@
 make SYSSRC=/usr/lib/modules/${_kernver}/build module
 }
 
-package() {
+package_nvidia-304xx() {
+pkgdesc=NVIDIA drivers for linux, 304xx legacy branch
+depends=('linux=4.1' 'linux4.2' 'libgl' nvidia-304xx-utils=${pkgver})
+   conflict+=('nvidia-304xx-dkms')
+install=nvidia-304xx.install
+
 install -D -m644 ${srcdir}/${_pkg}/kernel/nvidia.ko \
 ${pkgdir}/usr/lib/modules/${_extramodules}/nvidia.ko
 install -d -m755 ${pkgdir}/usr/lib/modprobe.d
@@ -55,3 +58,18 @@
 
 # the license file is part of nvidia-304xx-utils - the module depends on 
it, so we don't ship it another time.
 }
+
+package_nvidia-304xx-dkms() {
+pkgdesc=NVIDIA driver sources for linux, 304xx legacy branch
+depends=('dkms' nvidia-304xx-utils=$pkgver)
+optdepends=('linux-headers: Build the module for Arch kernel'
+'linux-lts-headers: Build the module for LTS Arch kernel')
+   conflict+=('nvidia-304xx')
+install=nvidia-304xx-dkms.install
+
+cd ${_pkg}
+   make -C kernel clean
+install -dm 755 ${pkgdir}/usr/{lib/modprobe.d,src}
+cp -dr --no-preserve='ownership' kernel 
${pkgdir}/usr/src/nvidia-${pkgver}
+echo 'blacklist nouveau'  ${pkgdir}/usr/lib/modprobe.d/nvidia.conf
+}

Added: nvidia-304xx-dkms.install
===
--- nvidia-304xx-dkms.install   (rev 0)
+++ nvidia-304xx-dkms.install   2015-07-25 00:21:09 UTC (rev 242482)
@@ -0,0 +1,30 @@
+#/bin/sh
+
+# arg 1:  the new package version
+post_install() {
+  dkms add nvidia/${1%-*}
+  cat  EOF
+== To build and install your modules run: dkms install nvidia/${1%-*}
+== To do this automatically at startup run: systemctl enable dkms.service
+EOF
+}
+
+# arg 1:  the new package version
+# arg 2:  the old package version
+pre_upgrade() {
+  pre_remove $2
+}
+
+# arg 1:  the new package version
+# arg 2:  the old package version
+post_upgrade() {
+  post_install $1
+}
+
+# arg 1:  the old package version
+pre_remove() {
+  # Remove modules using dkms
+  [ -n ${1%-*} ]  dkms remove nvidia/${1%-*} --all /dev/null || true
+}
+
+# vim:set ts=2 sw=2 ft=sh et:


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

2015-07-24 Thread Sébastien Luttringer
Date: Saturday, July 25, 2015 @ 02:37:55
  Author: seblu
Revision: 137399

upgpkg: glances 2.4.2-2

- fix FS#45671

Modified:
  glances/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-07-25 00:36:29 UTC (rev 137398)
+++ PKGBUILD2015-07-25 00:37:55 UTC (rev 137399)
@@ -5,7 +5,7 @@
 
 pkgname=glances
 pkgver=2.4.2
-pkgrel=1
+pkgrel=2
 pkgdesc='CLI curses-based monitoring tool'
 arch=('any')
 url='https://github.com/nicolargo/glances'
@@ -12,7 +12,8 @@
 license=('LGPL')
 depends=('python' 'python-psutil' 'python-setuptools')
 optdepends=('python-bottle: web server support'
-'hddtemp: HDD temperature monitoring support')
+'hddtemp: HDD temperature monitoring support'
+'python-matplotlib: for graphical/chart support')
 
source=(https://pypi.python.org/packages/source/G/Glances/Glances-$pkgver.tar.gz;)
 md5sums=('21d8ca9d780bb52101a365c33e65869d')
 


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

2015-07-24 Thread Sébastien Luttringer
Date: Saturday, July 25, 2015 @ 02:38:22
  Author: seblu
Revision: 137400

archrelease: copy trunk to community-any

Added:
  glances/repos/community-any/PKGBUILD
(from rev 137399, glances/trunk/PKGBUILD)
Deleted:
  glances/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-07-25 00:37:55 UTC (rev 137399)
+++ PKGBUILD2015-07-25 00:38:22 UTC (rev 137400)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer se...@archlinux.org
-# Contributor: Bartłomiej Piotrowski bpiotrow...@archlinux.org
-# Contributor: Francois Boulogne fboulogne at april dot org
-
-pkgname=glances
-pkgver=2.4.2
-pkgrel=1
-pkgdesc='CLI curses-based monitoring tool'
-arch=('any')
-url='https://github.com/nicolargo/glances'
-license=('LGPL')
-depends=('python' 'python-psutil' 'python-setuptools')
-optdepends=('python-bottle: web server support'
-'hddtemp: HDD temperature monitoring support')
-source=(https://pypi.python.org/packages/source/G/Glances/Glances-$pkgver.tar.gz;)
-md5sums=('21d8ca9d780bb52101a365c33e65869d')
-
-package() {
-  cd Glances-$pkgver
-  python setup.py install --prefix=/usr --root=$pkgdir --optimize=1
-  # remove html doc
-  rm -r $pkgdir/usr/share/doc/$pkgname/{glances-doc.html,images}
-}
-
-# vim:set ts=2 sw=2 et:

Copied: glances/repos/community-any/PKGBUILD (from rev 137399, 
glances/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-07-25 00:38:22 UTC (rev 137400)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Sébastien Luttringer se...@archlinux.org
+# Contributor: Bartłomiej Piotrowski bpiotrow...@archlinux.org
+# Contributor: Francois Boulogne fboulogne at april dot org
+
+pkgname=glances
+pkgver=2.4.2
+pkgrel=2
+pkgdesc='CLI curses-based monitoring tool'
+arch=('any')
+url='https://github.com/nicolargo/glances'
+license=('LGPL')
+depends=('python' 'python-psutil' 'python-setuptools')
+optdepends=('python-bottle: web server support'
+'hddtemp: HDD temperature monitoring support'
+'python-matplotlib: for graphical/chart support')
+source=(https://pypi.python.org/packages/source/G/Glances/Glances-$pkgver.tar.gz;)
+md5sums=('21d8ca9d780bb52101a365c33e65869d')
+
+package() {
+  cd Glances-$pkgver
+  python setup.py install --prefix=/usr --root=$pkgdir --optimize=1
+  # remove html doc
+  rm -r $pkgdir/usr/share/doc/$pkgname/{glances-doc.html,images}
+}
+
+# vim:set ts=2 sw=2 et:


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

2015-07-24 Thread Sébastien Luttringer
Date: Saturday, July 25, 2015 @ 02:42:56
  Author: seblu
Revision: 137402

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

Added:
  aiccu/repos/community-i686/02-allow-tunnels.patch
(from rev 137401, aiccu/trunk/02-allow-tunnels.patch)
  aiccu/repos/community-i686/03-no-quiet-gcc.patch
(from rev 137401, aiccu/trunk/03-no-quiet-gcc.patch)
  aiccu/repos/community-i686/04-skip-strip.patch
(from rev 137401, aiccu/trunk/04-skip-strip.patch)
  aiccu/repos/community-i686/05-spelling-error.patch
(from rev 137401, aiccu/trunk/05-spelling-error.patch)
  aiccu/repos/community-i686/06-setup-script.patch
(from rev 137401, aiccu/trunk/06-setup-script.patch)
  aiccu/repos/community-i686/PKGBUILD
(from rev 137401, aiccu/trunk/PKGBUILD)
  aiccu/repos/community-i686/aiccu.service
(from rev 137401, aiccu/trunk/aiccu.service)
  aiccu/repos/community-i686/gnutls-3.4.0.patch
(from rev 137401, aiccu/trunk/gnutls-3.4.0.patch)
  aiccu/repos/community-x86_64/02-allow-tunnels.patch
(from rev 137401, aiccu/trunk/02-allow-tunnels.patch)
  aiccu/repos/community-x86_64/03-no-quiet-gcc.patch
(from rev 137401, aiccu/trunk/03-no-quiet-gcc.patch)
  aiccu/repos/community-x86_64/04-skip-strip.patch
(from rev 137401, aiccu/trunk/04-skip-strip.patch)
  aiccu/repos/community-x86_64/05-spelling-error.patch
(from rev 137401, aiccu/trunk/05-spelling-error.patch)
  aiccu/repos/community-x86_64/06-setup-script.patch
(from rev 137401, aiccu/trunk/06-setup-script.patch)
  aiccu/repos/community-x86_64/PKGBUILD
(from rev 137401, aiccu/trunk/PKGBUILD)
  aiccu/repos/community-x86_64/aiccu.service
(from rev 137401, aiccu/trunk/aiccu.service)
  aiccu/repos/community-x86_64/gnutls-3.4.0.patch
(from rev 137401, aiccu/trunk/gnutls-3.4.0.patch)
Deleted:
  aiccu/repos/community-i686/02-allow-tunnels.patch
  aiccu/repos/community-i686/03-no-quiet-gcc.patch
  aiccu/repos/community-i686/04-skip-strip.patch
  aiccu/repos/community-i686/05-spelling-error.patch
  aiccu/repos/community-i686/06-setup-script.patch
  aiccu/repos/community-i686/PKGBUILD
  aiccu/repos/community-i686/aiccu.service
  aiccu/repos/community-i686/gnutls-3.4.0.patch
  aiccu/repos/community-x86_64/02-allow-tunnels.patch
  aiccu/repos/community-x86_64/03-no-quiet-gcc.patch
  aiccu/repos/community-x86_64/04-skip-strip.patch
  aiccu/repos/community-x86_64/05-spelling-error.patch
  aiccu/repos/community-x86_64/06-setup-script.patch
  aiccu/repos/community-x86_64/PKGBUILD
  aiccu/repos/community-x86_64/aiccu.service
  aiccu/repos/community-x86_64/gnutls-3.4.0.patch

--+
 /02-allow-tunnels.patch  |  122 +
 /03-no-quiet-gcc.patch   |   32 +++
 /04-skip-strip.patch |   32 +++
 /05-spelling-error.patch |   92 +
 /06-setup-script.patch   |   80 +++
 /PKGBUILD|  108 +
 /aiccu.service   |   22 +
 /gnutls-3.4.0.patch  |   40 +
 community-i686/02-allow-tunnels.patch|   61 --
 community-i686/03-no-quiet-gcc.patch |   16 ---
 community-i686/04-skip-strip.patch   |   16 ---
 community-i686/05-spelling-error.patch   |   46 --
 community-i686/06-setup-script.patch |   40 -
 community-i686/PKGBUILD  |   54 
 community-i686/aiccu.service |   12 --
 community-i686/gnutls-3.4.0.patch|   20 
 community-x86_64/02-allow-tunnels.patch  |   61 --
 community-x86_64/03-no-quiet-gcc.patch   |   16 ---
 community-x86_64/04-skip-strip.patch |   16 ---
 community-x86_64/05-spelling-error.patch |   46 --
 community-x86_64/06-setup-script.patch   |   40 -
 community-x86_64/PKGBUILD|   54 
 community-x86_64/aiccu.service   |   12 --
 community-x86_64/gnutls-3.4.0.patch  |   20 
 24 files changed, 528 insertions(+), 530 deletions(-)

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


[arch-commits] Commit in aiccu/trunk (PKGBUILD aiccu.service)

2015-07-24 Thread Sébastien Luttringer
Date: Saturday, July 25, 2015 @ 02:41:22
  Author: seblu
Revision: 137401

upgpkg: aiccu 20070115-6

See FS#38221

Modified:
  aiccu/trunk/PKGBUILD
  aiccu/trunk/aiccu.service

---+
 PKGBUILD  |4 ++--
 aiccu.service |1 -
 2 files changed, 2 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-07-25 00:38:22 UTC (rev 137400)
+++ PKGBUILD2015-07-25 00:41:22 UTC (rev 137401)
@@ -3,7 +3,7 @@
 
 pkgname=aiccu
 pkgver=20070115
-pkgrel=5
+pkgrel=6
 pkgdesc='SixXS Automatic IPv6 Connectivity Client Utility'
 arch=('i686' 'x86_64')
 url='http://www.sixxs.net/tools/aiccu/'
@@ -19,7 +19,7 @@
 '06-setup-script.patch'
 'gnutls-3.4.0.patch')
 md5sums=('c9bcc83644ed788e22a7c3f3d4021350'
- '891b0fa527c1b847ce803dac047cf80d'
+ '8b76ec84d494f3752b54c3aebcf53c6a'
  'b9b2c0e7186f3f96366caaa39252dccc'
  'b38db1d95760cd9687330b7db5f4ea1d'
  '6dfa2df27bb4859c7511bfea91337925'

Modified: aiccu.service
===
--- aiccu.service   2015-07-25 00:38:22 UTC (rev 137400)
+++ aiccu.service   2015-07-25 00:41:22 UTC (rev 137401)
@@ -1,6 +1,5 @@
 [Unit]
 Description=SixXS Automatic IPv6 Connectivity Configuration Utility
-After=network.target
 
 [Service]
 Type=forking


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

2015-07-24 Thread Eric Bélanger
Date: Saturday, July 25, 2015 @ 03:57:26
  Author: eric
Revision: 242488

upgpkg: keychain 2.8.1-1

Upstream update

Modified:
  keychain/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-07-25 01:01:56 UTC (rev 242487)
+++ PKGBUILD2015-07-25 01:57:26 UTC (rev 242488)
@@ -2,7 +2,7 @@
 # Maintainer: Eric Bélanger e...@archlinux.org
 
 pkgname=keychain
-pkgver=2.8.0
+pkgver=2.8.1
 pkgrel=1
 pkgdesc=A front-end to ssh-agent, allowing one long-running ssh-agent process 
per system, rather than per login
 arch=('any')
@@ -10,7 +10,7 @@
 license=('GPL2')
 depends=('sh')
 source=(http://www.funtoo.org/archive/keychain/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('411bfe6a3ac9daca1c35f9a56828f03cc8474e8a668e122773397deb8f7a0799')
+sha256sums=('1568c0946db3638fe081d5a7ba3df022b533dbeb8aa67cd07dc8276e87598809')
 
 package() {
   cd ${pkgname}-${pkgver}


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

2015-07-24 Thread Eric Bélanger
Date: Saturday, July 25, 2015 @ 03:59:20
  Author: eric
Revision: 242489

archrelease: copy trunk to extra-any

Added:
  keychain/repos/extra-any/PKGBUILD
(from rev 242488, keychain/trunk/PKGBUILD)
Deleted:
  keychain/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-07-25 01:57:26 UTC (rev 242488)
+++ PKGBUILD2015-07-25 01:59:20 UTC (rev 242489)
@@ -1,19 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger e...@archlinux.org
-
-pkgname=keychain
-pkgver=2.8.0
-pkgrel=1
-pkgdesc=A front-end to ssh-agent, allowing one long-running ssh-agent process 
per system, rather than per login
-arch=('any')
-url=http://www.funtoo.org/Keychain;
-license=('GPL2')
-depends=('sh')
-source=(http://www.funtoo.org/archive/keychain/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('411bfe6a3ac9daca1c35f9a56828f03cc8474e8a668e122773397deb8f7a0799')
-
-package() {
-  cd ${pkgname}-${pkgver}
-  install -Dm755 keychain ${pkgdir}/usr/bin/keychain
-  install -Dm644 keychain.1 ${pkgdir}/usr/share/man/man1/keychain.1
-}

Copied: keychain/repos/extra-any/PKGBUILD (from rev 242488, 
keychain/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-07-25 01:59:20 UTC (rev 242489)
@@ -0,0 +1,19 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=keychain
+pkgver=2.8.1
+pkgrel=1
+pkgdesc=A front-end to ssh-agent, allowing one long-running ssh-agent process 
per system, rather than per login
+arch=('any')
+url=http://www.funtoo.org/Keychain;
+license=('GPL2')
+depends=('sh')
+source=(http://www.funtoo.org/archive/keychain/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('1568c0946db3638fe081d5a7ba3df022b533dbeb8aa67cd07dc8276e87598809')
+
+package() {
+  cd ${pkgname}-${pkgver}
+  install -Dm755 keychain ${pkgdir}/usr/bin/keychain
+  install -Dm644 keychain.1 ${pkgdir}/usr/share/man/man1/keychain.1
+}


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

2015-07-24 Thread Felix Yan
Date: Saturday, July 25, 2015 @ 04:45:29
  Author: fyan
Revision: 242491

archrelease: copy trunk to extra-any

Added:
  perl-uri/repos/extra-any/PKGBUILD
(from rev 242490, perl-uri/trunk/PKGBUILD)
Deleted:
  perl-uri/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-07-25 02:45:09 UTC (rev 242490)
+++ PKGBUILD2015-07-25 02:45:29 UTC (rev 242491)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Manolis Tzanidakis
-# Contributor: Firmicus francois.archlinux.org 
-
-pkgname=perl-uri
-_realname=URI
-pkgver=1.68
-pkgrel=1
-pkgdesc=Uniform Resource Identifiers (absolute and relative)
-arch=('any')
-url=http://search.cpan.org/dist/${_realname}/;
-license=('PerlArtistic')
-depends=('perl')
-provides=('perl-uri-escape=3.30')
-options=('!emptydirs')
-source=(http://cpan.metacpan.org/authors/id/E/ET/ETHER/${_realname}-${pkgver}.tar.gz;)
-md5sums=('4a954ab8d79f831616ca817ba4b26cb9')
-
-build() {
-  cd ${srcdir}/${_realname}-$pkgver
-  # install module in vendor directories.
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd ${srcdir}/${_realname}-${pkgver}
-  make test
-}
-
-package() {
-  cd ${srcdir}/${_realname}-$pkgver
-  make install DESTDIR=${pkgdir}
-}
-# vim: ts=2 sw=2 et ft=sh

Copied: perl-uri/repos/extra-any/PKGBUILD (from rev 242490, 
perl-uri/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-07-25 02:45:29 UTC (rev 242491)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Manolis Tzanidakis
+# Contributor: Firmicus francois.archlinux.org 
+
+pkgname=perl-uri
+_realname=URI
+pkgver=1.69
+pkgrel=1
+pkgdesc=Uniform Resource Identifiers (absolute and relative)
+arch=('any')
+url=http://search.cpan.org/dist/${_realname}/;
+license=('PerlArtistic')
+depends=('perl')
+provides=('perl-uri-escape=3.30')
+options=('!emptydirs')
+source=(http://cpan.metacpan.org/authors/id/E/ET/ETHER/${_realname}-${pkgver}.tar.gz;)
+md5sums=('3c56aee0300bce5a440ccbd558277ea0')
+
+build() {
+  cd ${srcdir}/${_realname}-$pkgver
+  # install module in vendor directories.
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd ${srcdir}/${_realname}-${pkgver}
+  make test
+}
+
+package() {
+  cd ${srcdir}/${_realname}-$pkgver
+  make install DESTDIR=${pkgdir}
+}
+# vim: ts=2 sw=2 et ft=sh


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

2015-07-24 Thread Felix Yan
Date: Saturday, July 25, 2015 @ 04:45:09
  Author: fyan
Revision: 242490

upgpkg: perl-uri 1.69-1

Modified:
  perl-uri/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-07-25 01:59:20 UTC (rev 242489)
+++ PKGBUILD2015-07-25 02:45:09 UTC (rev 242490)
@@ -5,7 +5,7 @@
 
 pkgname=perl-uri
 _realname=URI
-pkgver=1.68
+pkgver=1.69
 pkgrel=1
 pkgdesc=Uniform Resource Identifiers (absolute and relative)
 arch=('any')
@@ -15,7 +15,7 @@
 provides=('perl-uri-escape=3.30')
 options=('!emptydirs')
 
source=(http://cpan.metacpan.org/authors/id/E/ET/ETHER/${_realname}-${pkgver}.tar.gz;)
-md5sums=('4a954ab8d79f831616ca817ba4b26cb9')
+md5sums=('3c56aee0300bce5a440ccbd558277ea0')
 
 build() {
   cd ${srcdir}/${_realname}-$pkgver


[arch-commits] Commit in nvidia-304xx/repos (14 files)

2015-07-24 Thread Sébastien Luttringer
Date: Saturday, July 25, 2015 @ 02:22:26
  Author: seblu
Revision: 242483

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

Added:
  nvidia-304xx/repos/community-i686/
  nvidia-304xx/repos/community-i686/PKGBUILD
(from rev 242482, nvidia-304xx/trunk/PKGBUILD)
  nvidia-304xx/repos/community-i686/nv-drm.patch
(from rev 242482, nvidia-304xx/trunk/nv-drm.patch)
  nvidia-304xx/repos/community-i686/nvidia-3.19.patch
(from rev 242482, nvidia-304xx/trunk/nvidia-3.19.patch)
  nvidia-304xx/repos/community-i686/nvidia-304xx-dkms.install
(from rev 242482, nvidia-304xx/trunk/nvidia-304xx-dkms.install)
  nvidia-304xx/repos/community-i686/nvidia-304xx.install
(from rev 242482, nvidia-304xx/trunk/nvidia-304xx.install)
  nvidia-304xx/repos/community-i686/nvidia-4.0.patch
(from rev 242482, nvidia-304xx/trunk/nvidia-4.0.patch)
  nvidia-304xx/repos/community-x86_64/
  nvidia-304xx/repos/community-x86_64/PKGBUILD
(from rev 242482, nvidia-304xx/trunk/PKGBUILD)
  nvidia-304xx/repos/community-x86_64/nv-drm.patch
(from rev 242482, nvidia-304xx/trunk/nv-drm.patch)
  nvidia-304xx/repos/community-x86_64/nvidia-3.19.patch
(from rev 242482, nvidia-304xx/trunk/nvidia-3.19.patch)
  nvidia-304xx/repos/community-x86_64/nvidia-304xx-dkms.install
(from rev 242482, nvidia-304xx/trunk/nvidia-304xx-dkms.install)
  nvidia-304xx/repos/community-x86_64/nvidia-304xx.install
(from rev 242482, nvidia-304xx/trunk/nvidia-304xx.install)
  nvidia-304xx/repos/community-x86_64/nvidia-4.0.patch
(from rev 242482, nvidia-304xx/trunk/nvidia-4.0.patch)

+
 community-i686/PKGBUILD|   75 +++
 community-i686/nv-drm.patch|   27 +
 community-i686/nvidia-3.19.patch   |   21 +++
 community-i686/nvidia-304xx-dkms.install   |   30 ++
 community-i686/nvidia-304xx.install|   13 
 community-i686/nvidia-4.0.patch|   28 ++
 community-x86_64/PKGBUILD  |   75 +++
 community-x86_64/nv-drm.patch  |   27 +
 community-x86_64/nvidia-3.19.patch |   21 +++
 community-x86_64/nvidia-304xx-dkms.install |   30 ++
 community-x86_64/nvidia-304xx.install  |   13 
 community-x86_64/nvidia-4.0.patch  |   28 ++
 12 files changed, 388 insertions(+)

Copied: nvidia-304xx/repos/community-i686/PKGBUILD (from rev 242482, 
nvidia-304xx/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-07-25 00:22:26 UTC (rev 242483)
@@ -0,0 +1,75 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Thomas Baechler tho...@archlinux.org
+
+pkgbase=nvidia-304xx
+pkgname=(nvidia-304xx nvidia-304xx-dkms)
+pkgver=304.125
+_extramodules=extramodules-4.1-ARCH
+pkgrel=20
+arch=('i686' 'x86_64')
+url=http://www.nvidia.com/;
+makedepends=('libgl' nvidia-304xx-utils=${pkgver} 'linux' 
'linux-headers=4.1' 'linux-headers4.2')
+conflicts=('nvidia')
+license=('custom')
+options=(!strip)
+source=(http://us.download.nvidia.com/XFree86/Linux-x86/${pkgver}/NVIDIA-Linux-x86-${pkgver}.run;
+
http://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run;
+'nv-drm.patch'
+'nvidia-3.19.patch'
+'nvidia-4.0.patch')
+sha512sums=('cd77736790876b66c1e88bf30b7a93f755c0f94118edda8fde1701dc07dc4eb60f89a27b0ed432db74729f269cb239f32f3c5e045d701f60baf69da7fc0d0ea7'
+
'3b50d1353ff6cfee9042455b78e889c198e40dfe832dde79eda1a47d9f1f02b29f0161f1ac694dc7502eb2a94bad6b98244568cc353f387b02de6cae1c17d4ae'
+
'aaa36ef7179acdc86850381de145a3aebab22273cd3c702a9d1343dc3415192c74a35da692312555f36193c5d46a1771ce07ea9508113cb9d0698873064aa19f'
+
'f52a9f82a73eef9e27046c51ce0b2671ee2893f9b12e17c722f17416c39ac0b8d7d5b1fed51b6ab6f36670b036cd96d5cfeae37300ef041c029fd3d3d136ff3d'
+
'd00a2a4c5bf38041cf9e4f61aa0ad0d6123451839eb272c36d7e466d77b33d90415cfa6f96a3a9da8688a1048e93a03169f808e6b2ddc2d9d148bab8485dae27')
+
+[[ $CARCH = i686 ]]  _pkg=NVIDIA-Linux-x86-${pkgver}
+[[ $CARCH = x86_64 ]]  _pkg=NVIDIA-Linux-x86_64-${pkgver}-no-compat32
+
+prepare() {
+cd ${srcdir}
+sh ${_pkg}.run --extract-only
+cd ${_pkg}
+# patches here
+patch -p0 -i $srcdir/nv-drm.patch
+patch -p1 -i $srcdir/nvidia-3.19.patch
+patch -p0 -i $srcdir/nvidia-4.0.patch
+}
+
+build() {
+_kernver=$(cat /usr/lib/modules/${_extramodules}/version)
+cd ${_pkg}/kernel
+make SYSSRC=/usr/lib/modules/${_kernver}/build module
+}
+
+package_nvidia-304xx() {
+pkgdesc=NVIDIA drivers for linux, 304xx legacy branch
+depends=('linux=4.1' 'linux4.2' 'libgl' nvidia-304xx-utils=${pkgver})
+   conflict+=('nvidia-304xx-dkms')
+install=nvidia-304xx.install
+
+install 

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

2015-07-24 Thread Sébastien Luttringer
Date: Saturday, July 25, 2015 @ 02:36:29
  Author: seblu
Revision: 137398

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

Added:
  libvirt/repos/community-i686/PKGBUILD
(from rev 137397, libvirt/trunk/PKGBUILD)
  libvirt/repos/community-i686/libvirt.install
(from rev 137397, libvirt/trunk/libvirt.install)
  libvirt/repos/community-i686/libvirt.tmpfiles.d
(from rev 137397, libvirt/trunk/libvirt.tmpfiles.d)
  libvirt/repos/community-i686/libvirtd-guests.conf.d
(from rev 137397, libvirt/trunk/libvirtd-guests.conf.d)
  libvirt/repos/community-i686/libvirtd.conf.d
(from rev 137397, libvirt/trunk/libvirtd.conf.d)
  libvirt/repos/community-x86_64/PKGBUILD
(from rev 137397, libvirt/trunk/PKGBUILD)
  libvirt/repos/community-x86_64/libvirt.install
(from rev 137397, libvirt/trunk/libvirt.install)
  libvirt/repos/community-x86_64/libvirt.tmpfiles.d
(from rev 137397, libvirt/trunk/libvirt.tmpfiles.d)
  libvirt/repos/community-x86_64/libvirtd-guests.conf.d
(from rev 137397, libvirt/trunk/libvirtd-guests.conf.d)
  libvirt/repos/community-x86_64/libvirtd.conf.d
(from rev 137397, libvirt/trunk/libvirtd.conf.d)
Deleted:
  libvirt/repos/community-i686/PKGBUILD
  libvirt/repos/community-i686/libvirt.install
  libvirt/repos/community-i686/libvirt.tmpfiles.d
  libvirt/repos/community-i686/libvirtd-guests.conf.d
  libvirt/repos/community-i686/libvirtd.conf.d
  libvirt/repos/community-x86_64/PKGBUILD
  libvirt/repos/community-x86_64/libvirt.install
  libvirt/repos/community-x86_64/libvirt.tmpfiles.d
  libvirt/repos/community-x86_64/libvirtd-guests.conf.d
  libvirt/repos/community-x86_64/libvirtd.conf.d

-+
 /PKGBUILD   |  254 ++
 /libvirt.install|   30 +++
 /libvirt.tmpfiles.d |8 
 /libvirtd-guests.conf.d |   18 ++
 /libvirtd.conf.d|2 
 community-i686/PKGBUILD |  123 --
 community-i686/libvirt.install  |   15 -
 community-i686/libvirt.tmpfiles.d   |4 
 community-i686/libvirtd-guests.conf.d   |9 -
 community-i686/libvirtd.conf.d  |1 
 community-x86_64/PKGBUILD   |  123 --
 community-x86_64/libvirt.install|   15 -
 community-x86_64/libvirt.tmpfiles.d |4 
 community-x86_64/libvirtd-guests.conf.d |9 -
 community-x86_64/libvirtd.conf.d|1 
 15 files changed, 312 insertions(+), 304 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-07-25 00:35:17 UTC (rev 137397)
+++ community-i686/PKGBUILD 2015-07-25 00:36:29 UTC (rev 137398)
@@ -1,123 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Jonathan Wiersma archaur at jonw dot org
-
-pkgname=libvirt
-pkgver=1.2.17
-pkgrel=1
-pkgdesc=API for controlling virtualization engines 
(openvz,kvm,qemu,virtualbox,xen,etc)
-arch=('i686' 'x86_64')
-url=http://libvirt.org/;
-license=('LGPL')
-depends=('e2fsprogs' 'gnutls' 'iptables' 'libxml2' 'parted' 'polkit' 'python2'
-'avahi' 'yajl' 'libpciaccess' 'udev' 'dbus' 'libxau' 'libxdmcp' 
'libpcap'
-'curl' 'libsasl' 'libgcrypt' 'libgpg-error' 'openssl' 'libxcb' 
'gcc-libs'
-'iproute2' 'libnl' 'libx11' 'numactl' 'gettext' 'ceph')
-   # 'audit'
-makedepends=('pkgconfig' 'lvm2' 'linux-api-headers' 'dnsmasq' 'lxc'
-'libiscsi' 'open-iscsi'
-'perl-xml-xpath' 'libxslt')
-optdepends=('ebtables: required for default NAT networking'
-   'dnsmasq: required for default NAT/DHCP for guests'
-   'bridge-utils: for brigded networking'
-   'openbsd-netcat: for remote management over ssh'
-   'qemu'
-   'radvd'
-   'dmidecode'
-   'pm-utils: host power management')
-options=('emptydirs')
-backup=('etc/conf.d/libvirt-guests'
-   'etc/conf.d/libvirtd'
-   'etc/libvirt/libvirt.conf'
-   'etc/libvirt/libvirtd.conf'
-   'etc/libvirt/lxc.conf'
-   'etc/libvirt/nwfilter/allow-arp.xml'
-   'etc/libvirt/nwfilter/allow-dhcp-server.xml'
-   'etc/libvirt/nwfilter/allow-dhcp.xml'
-   'etc/libvirt/nwfilter/allow-incoming-ipv4.xml'
-   'etc/libvirt/nwfilter/allow-ipv4.xml'
-   'etc/libvirt/nwfilter/clean-traffic.xml'
-   'etc/libvirt/nwfilter/no-arp-ip-spoofing.xml'
-   'etc/libvirt/nwfilter/no-arp-mac-spoofing.xml'
-   'etc/libvirt/nwfilter/no-arp-spoofing.xml'
-   'etc/libvirt/nwfilter/no-ip-multicast.xml'
-   'etc/libvirt/nwfilter/no-ip-spoofing.xml'
-   'etc/libvirt/nwfilter/no-mac-broadcast.xml'
-   'etc/libvirt/nwfilter/no-mac-spoofing.xml'
-   'etc/libvirt/nwfilter/no-other-l2-traffic.xml'
-   'etc/libvirt/nwfilter/no-other-rarp-traffic.xml'
-   'etc/libvirt/nwfilter/qemu-announce-self-rarp.xml'
-   

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

2015-07-24 Thread Sébastien Luttringer
Date: Saturday, July 25, 2015 @ 02:35:36
  Author: seblu
Revision: 242485

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

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

+
 testing-i686/65-kvm.rules  |2 
 testing-i686/CVE-2015-3456.patch   |   84 +++
 testing-i686/PKGBUILD  |  106 +++
 testing-i686/qemu.install  |   19 ++
 testing-x86_64/65-kvm.rules|2 
 testing-x86_64/CVE-2015-3456.patch |   84 +++
 testing-x86_64/PKGBUILD|  106 +++
 testing-x86_64/qemu.install|   19 ++
 8 files changed, 422 insertions(+)

Copied: qemu/repos/testing-i686/65-kvm.rules (from rev 242484, 
qemu/trunk/65-kvm.rules)
===
--- testing-i686/65-kvm.rules   (rev 0)
+++ testing-i686/65-kvm.rules   2015-07-25 00:35:36 UTC (rev 242485)
@@ -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 242484, 
qemu/trunk/CVE-2015-3456.patch)
===
--- testing-i686/CVE-2015-3456.patch(rev 0)
+++ testing-i686/CVE-2015-3456.patch2015-07-25 00:35:36 UTC (rev 242485)
@@ -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) 

[arch-commits] Commit in nvidia-304xx/repos (22 files)

2015-07-24 Thread Sébastien Luttringer
Date: Saturday, July 25, 2015 @ 03:01:56
  Author: seblu
Revision: 242487

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

Added:
  nvidia-304xx/repos/extra-i686/PKGBUILD
(from rev 242486, nvidia-304xx/trunk/PKGBUILD)
  nvidia-304xx/repos/extra-i686/nv-drm.patch
(from rev 242486, nvidia-304xx/trunk/nv-drm.patch)
  nvidia-304xx/repos/extra-i686/nvidia-3.19.patch
(from rev 242486, nvidia-304xx/trunk/nvidia-3.19.patch)
  nvidia-304xx/repos/extra-i686/nvidia-304xx-dkms.install
(from rev 242486, nvidia-304xx/trunk/nvidia-304xx-dkms.install)
  nvidia-304xx/repos/extra-i686/nvidia-304xx.install
(from rev 242486, nvidia-304xx/trunk/nvidia-304xx.install)
  nvidia-304xx/repos/extra-i686/nvidia-4.0.patch
(from rev 242486, nvidia-304xx/trunk/nvidia-4.0.patch)
  nvidia-304xx/repos/extra-x86_64/PKGBUILD
(from rev 242486, nvidia-304xx/trunk/PKGBUILD)
  nvidia-304xx/repos/extra-x86_64/nv-drm.patch
(from rev 242486, nvidia-304xx/trunk/nv-drm.patch)
  nvidia-304xx/repos/extra-x86_64/nvidia-3.19.patch
(from rev 242486, nvidia-304xx/trunk/nvidia-3.19.patch)
  nvidia-304xx/repos/extra-x86_64/nvidia-304xx-dkms.install
(from rev 242486, nvidia-304xx/trunk/nvidia-304xx-dkms.install)
  nvidia-304xx/repos/extra-x86_64/nvidia-304xx.install
(from rev 242486, nvidia-304xx/trunk/nvidia-304xx.install)
  nvidia-304xx/repos/extra-x86_64/nvidia-4.0.patch
(from rev 242486, nvidia-304xx/trunk/nvidia-4.0.patch)
Deleted:
  nvidia-304xx/repos/extra-i686/PKGBUILD
  nvidia-304xx/repos/extra-i686/nv-drm.patch
  nvidia-304xx/repos/extra-i686/nvidia-3.19.patch
  nvidia-304xx/repos/extra-i686/nvidia-304xx.install
  nvidia-304xx/repos/extra-i686/nvidia-4.0.patch
  nvidia-304xx/repos/extra-x86_64/PKGBUILD
  nvidia-304xx/repos/extra-x86_64/nv-drm.patch
  nvidia-304xx/repos/extra-x86_64/nvidia-3.19.patch
  nvidia-304xx/repos/extra-x86_64/nvidia-304xx.install
  nvidia-304xx/repos/extra-x86_64/nvidia-4.0.patch

+
 /PKGBUILD  |  150 +++
 /nv-drm.patch  |   54 +++
 /nvidia-3.19.patch |   42 
 /nvidia-304xx.install  |   26 +
 /nvidia-4.0.patch  |   56 +++
 extra-i686/PKGBUILD|   57 ---
 extra-i686/nv-drm.patch|   27 -
 extra-i686/nvidia-3.19.patch   |   21 
 extra-i686/nvidia-304xx-dkms.install   |   30 ++
 extra-i686/nvidia-304xx.install|   13 --
 extra-i686/nvidia-4.0.patch|   28 -
 extra-x86_64/PKGBUILD  |   57 ---
 extra-x86_64/nv-drm.patch  |   27 -
 extra-x86_64/nvidia-3.19.patch |   21 
 extra-x86_64/nvidia-304xx-dkms.install |   30 ++
 extra-x86_64/nvidia-304xx.install  |   13 --
 extra-x86_64/nvidia-4.0.patch  |   28 -
 17 files changed, 388 insertions(+), 292 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-07-25 00:58:41 UTC (rev 242486)
+++ extra-i686/PKGBUILD 2015-07-25 01:01:56 UTC (rev 242487)
@@ -1,57 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Thomas Baechler tho...@archlinux.org
-
-pkgname=nvidia-304xx
-pkgver=304.125
-_extramodules=extramodules-4.1-ARCH
-pkgrel=19
-pkgdesc=NVIDIA drivers for linux, 304xx legacy branch
-arch=('i686' 'x86_64')
-url=http://www.nvidia.com/;
-depends=('linux=4.1' 'linux4.2' 'libgl' nvidia-304xx-utils=${pkgver})
-makedepends=('linux-headers=4.1' 'linux-headers4.2')
-conflicts=('nvidia')
-license=('custom')
-install=${pkgname}.install
-options=(!strip)
-source=(http://us.download.nvidia.com/XFree86/Linux-x86/${pkgver}/NVIDIA-Linux-x86-${pkgver}.run;
-
http://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run;
-'nv-drm.patch'
-'nvidia-3.19.patch'
-'nvidia-4.0.patch')
-sha512sums=('cd77736790876b66c1e88bf30b7a93f755c0f94118edda8fde1701dc07dc4eb60f89a27b0ed432db74729f269cb239f32f3c5e045d701f60baf69da7fc0d0ea7'
-
'3b50d1353ff6cfee9042455b78e889c198e40dfe832dde79eda1a47d9f1f02b29f0161f1ac694dc7502eb2a94bad6b98244568cc353f387b02de6cae1c17d4ae'
-
'aaa36ef7179acdc86850381de145a3aebab22273cd3c702a9d1343dc3415192c74a35da692312555f36193c5d46a1771ce07ea9508113cb9d0698873064aa19f'
-
'f52a9f82a73eef9e27046c51ce0b2671ee2893f9b12e17c722f17416c39ac0b8d7d5b1fed51b6ab6f36670b036cd96d5cfeae37300ef041c029fd3d3d136ff3d'
-
'd00a2a4c5bf38041cf9e4f61aa0ad0d6123451839eb272c36d7e466d77b33d90415cfa6f96a3a9da8688a1048e93a03169f808e6b2ddc2d9d148bab8485dae27')
-
-[[ $CARCH = i686 ]]  _pkg=NVIDIA-Linux-x86-${pkgver}
-[[ $CARCH = x86_64 ]]  _pkg=NVIDIA-Linux-x86_64-${pkgver}-no-compat32
-
-prepare() {
-cd ${srcdir}
-sh ${_pkg}.run --extract-only
-cd ${_pkg}
-# 

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

2015-07-24 Thread Felix Yan
Date: Saturday, July 25, 2015 @ 04:47:37
  Author: fyan
Revision: 137403

upgpkg: thefuck 2.4-1

Modified:
  thefuck/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-07-25 00:42:56 UTC (rev 137402)
+++ PKGBUILD2015-07-25 02:47:37 UTC (rev 137403)
@@ -2,7 +2,7 @@
 # Maintainer: Felix Yan felixonm...@archlinux.org
 
 pkgname=thefuck
-pkgver=2.3
+pkgver=2.4
 pkgrel=1
 pkgdesc=Magnificent app which corrects your previous console command
 arch=('any')
@@ -10,7 +10,7 @@
 license=('MIT')
 depends=('python-setuptools' 'python-psutil' 'python-six' 'python-colorama')
 makedepends=('git')
-checkdepends=('python-pytest-mock' 'python-mock')
+checkdepends=('python-pytest-mock' 'python-mock' 'python-pexpect')
 source=(git+https://github.com/nvbn/thefuck.git#tag=$pkgver;)
 sha256sums=('SKIP')
 


[arch-commits] Commit in crypto++/trunk (CVE-2015-2141.patch PKGBUILD)

2015-07-24 Thread Allan McRae
Date: Friday, July 24, 2015 @ 13:57:33
  Author: allan
Revision: 242478

upgpkg: crypto++ 5.6.2-3

fix CVE-2015-2141

Added:
  crypto++/trunk/CVE-2015-2141.patch
Modified:
  crypto++/trunk/PKGBUILD

-+
 CVE-2015-2141.patch |   32 
 PKGBUILD|8 +++-
 2 files changed, 39 insertions(+), 1 deletion(-)

Added: CVE-2015-2141.patch
===
--- CVE-2015-2141.patch (rev 0)
+++ CVE-2015-2141.patch 2015-07-24 11:57:33 UTC (rev 242478)
@@ -0,0 +1,32 @@
+From 9425e16437439e68c7d96abef922167d68fafaff Mon Sep 17 00:00:00 2001
+From: Jeffrey Walton noloa...@gmail.com
+Date: Sat, 27 Jun 2015 17:56:01 -0400
+Subject: [PATCH] Fix for CVE-2015-2141. Thanks to Evgeny Sidorov for
+ reporting. Squaring to satisfy Jacobi requirements suggested by JPM.
+
+---
+ rw.cpp | 8 +++-
+ 1 file changed, 7 insertions(+), 1 deletion(-)
+
+diff --git a/rw.cpp b/rw.cpp
+index cdd9f2d..0b9318b 100644
+--- a/rw.cpp
 b/rw.cpp
+@@ -126,10 +126,16 @@ Integer 
InvertibleRWFunction::CalculateInverse(RandomNumberGenerator rng, const
+   DoQuickSanityCheck();
+   ModularArithmetic modn(m_n);
+   Integer r, rInv;
+-  do {// do this in a loop for people using small numbers for testing
++
++  // do this in a loop for people using small numbers for testing
++  do {
+   r.Randomize(rng, Integer::One(), m_n - Integer::One());
++  // Fix for CVE-2015-2141. Thanks to Evgeny Sidorov for 
reporting.
++  // Squaring to satisfy Jacobi requirements suggested by JPM.
++  r = modn.Square(r);
+   rInv = modn.MultiplicativeInverse(r);
+   } while (rInv.IsZero());
++
+   Integer re = modn.Square(r);
+   re = modn.Multiply(re, x);  // blind
+ 

Modified: PKGBUILD
===
--- PKGBUILD2015-07-24 06:56:26 UTC (rev 242477)
+++ PKGBUILD2015-07-24 11:57:33 UTC (rev 242478)
@@ -8,7 +8,7 @@
 pkgname=crypto++
 pkgver=5.6.2
 _srcver=562
-pkgrel=2
+pkgrel=3
 pkgdesc=A free C++ class library of cryptographic schemes
 arch=('i686' 'x86_64')
 url=http://www.cryptopp.com/;
@@ -16,10 +16,16 @@
 depends=('gcc-libs')
 makedepends=('unzip')
 source=(http://www.cryptopp.com/cryptopp${_srcver}.zip;
+   'CVE-2015-2141.patch'
 'libcrypto++.pc')
 md5sums=('7ed022585698df48e65ce9218f6c6a67'
+ '7ff9a215b9244b4f8a17c7185e27beda'
  '46de3847c59ad16456fa863eb33e73b2')
 
+prepare() {
+  patch -p1 -i ${srcdir}/CVE-2015-2141.patch
+}
+
 build() {
   sed -i -e 's/^CXXFLAGS/#CXXFLAGS/' GNUmakefile
   export CXXFLAGS=${CXXFLAGS} -DNDEBUG -fPIC


[arch-commits] Commit in (4 files)

2015-07-24 Thread Ike Devolder
Date: Friday, July 24, 2015 @ 14:33:17
  Author: idevolder
Revision: 137368

libplatform :: 1.0.10

Added:
  libplatform/
  libplatform/repos/
  libplatform/trunk/
  libplatform/trunk/PKGBUILD

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

Added: libplatform/trunk/PKGBUILD
===
--- libplatform/trunk/PKGBUILD  (rev 0)
+++ libplatform/trunk/PKGBUILD  2015-07-24 12:33:17 UTC (rev 137368)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: BlackIkeEagle ike DOT devolder AT gmail DOT com
+# Contributor: Cedric Girard girard.ced...@gmail.com
+
+pkgname=libplatform
+pkgver=1.0.10
+pkgrel=1
+pkgdesc=Platform support library used by libCEC and binary add-ons for Kodi
+arch=('i686' 'x86_64')
+url=https://github.com/Pulse-Eight/platform;
+license=('GPL')
+provides=('libplatform')
+conflicts=('libplatform')
+makedepends=('cmake')
+depends=('gcc-libs')
+source=(https://github.com/Pulse-Eight/platform/archive/${pkgver}.tar.gz)
+sha256sums=('6ba3239cb1c0a5341efcf9488f4d3dfad8c26d6b2994b2b2247e5a61568ab5cd')
+
+build() {
+  cd $srcdir/platform-${pkgver}
+  cmake . \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_SHARED_LIBS=1 \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=/usr/lib \
+-DCMAKE_INSTALL_LIBDIR_NOARCH=/usr/lib
+  make
+}
+
+package() {
+  cd $srcdir/platform-${pkgver}
+  make DESTDIR=$pkgdir/ install
+}
+
+# vim:set ts=2 sw=2 et:


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


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

2015-07-24 Thread Ike Devolder
Date: Friday, July 24, 2015 @ 14:34:17
  Author: idevolder
Revision: 137369

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

Added:
  libplatform/repos/community-i686/
  libplatform/repos/community-i686/PKGBUILD
(from rev 137368, libplatform/trunk/PKGBUILD)
  libplatform/repos/community-x86_64/
  libplatform/repos/community-x86_64/PKGBUILD
(from rev 137368, libplatform/trunk/PKGBUILD)

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

Copied: libplatform/repos/community-i686/PKGBUILD (from rev 137368, 
libplatform/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-07-24 12:34:17 UTC (rev 137369)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: BlackIkeEagle ike DOT devolder AT gmail DOT com
+# Contributor: Cedric Girard girard.ced...@gmail.com
+
+pkgname=libplatform
+pkgver=1.0.10
+pkgrel=1
+pkgdesc=Platform support library used by libCEC and binary add-ons for Kodi
+arch=('i686' 'x86_64')
+url=https://github.com/Pulse-Eight/platform;
+license=('GPL')
+provides=('libplatform')
+conflicts=('libplatform')
+makedepends=('cmake')
+depends=('gcc-libs')
+source=(https://github.com/Pulse-Eight/platform/archive/${pkgver}.tar.gz)
+sha256sums=('6ba3239cb1c0a5341efcf9488f4d3dfad8c26d6b2994b2b2247e5a61568ab5cd')
+
+build() {
+  cd $srcdir/platform-${pkgver}
+  cmake . \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_SHARED_LIBS=1 \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=/usr/lib \
+-DCMAKE_INSTALL_LIBDIR_NOARCH=/usr/lib
+  make
+}
+
+package() {
+  cd $srcdir/platform-${pkgver}
+  make DESTDIR=$pkgdir/ install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: libplatform/repos/community-x86_64/PKGBUILD (from rev 137368, 
libplatform/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-07-24 12:34:17 UTC (rev 137369)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: BlackIkeEagle ike DOT devolder AT gmail DOT com
+# Contributor: Cedric Girard girard.ced...@gmail.com
+
+pkgname=libplatform
+pkgver=1.0.10
+pkgrel=1
+pkgdesc=Platform support library used by libCEC and binary add-ons for Kodi
+arch=('i686' 'x86_64')
+url=https://github.com/Pulse-Eight/platform;
+license=('GPL')
+provides=('libplatform')
+conflicts=('libplatform')
+makedepends=('cmake')
+depends=('gcc-libs')
+source=(https://github.com/Pulse-Eight/platform/archive/${pkgver}.tar.gz)
+sha256sums=('6ba3239cb1c0a5341efcf9488f4d3dfad8c26d6b2994b2b2247e5a61568ab5cd')
+
+build() {
+  cd $srcdir/platform-${pkgver}
+  cmake . \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_SHARED_LIBS=1 \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=/usr/lib \
+-DCMAKE_INSTALL_LIBDIR_NOARCH=/usr/lib
+  make
+}
+
+package() {
+  cd $srcdir/platform-${pkgver}
+  make DESTDIR=$pkgdir/ install
+}
+
+# vim:set ts=2 sw=2 et:


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

2015-07-24 Thread Ike Devolder
Date: Friday, July 24, 2015 @ 14:35:14
  Author: idevolder
Revision: 137371

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-07-24 12:34:58 UTC (rev 137370)
+++ community-i686/PKGBUILD 2015-07-24 12:35:14 UTC (rev 137371)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: BlackIkeEagle ike DOT devolder AT gmail DOT com
-# Contributor: Philippe Cherel philippe.che...@mayenne.org
-# vim: ft=sh:
-
-pkgname=libcec
-pkgver=2.2.0
-pkgrel=1
-pkgdesc=Pulse-Eight's libcec for the Pulse-Eight USB-CEC adapter
-arch=('i686' 'x86_64')
-url=http://libcec.pulse-eight.com/;
-license=('GPL')
-depends=('udev' 'lockdev')
-source=($pkgname-$pkgver.tar.gz::https://github.com/Pulse-Eight/$pkgname/archive/$pkgname-$pkgver.tar.gz;)
-
-build() {
-  cd $pkgname-$pkgname-$pkgver
-  autoreconf -vif
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}
-sha256sums=('fd4f47a18d6e0f4b9e6f5831280207ee2b2a5fc2741ae32ae09ad12a8aa52917')

Copied: libcec/repos/community-i686/PKGBUILD (from rev 137370, 
libcec/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-07-24 12:35:14 UTC (rev 137371)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: BlackIkeEagle ike DOT devolder AT gmail DOT com
+# Contributor: Philippe Cherel philippe.che...@mayenne.org
+# vim: ft=sh:
+
+pkgname=libcec
+pkgver=3.0.1
+pkgrel=1
+pkgdesc=Pulse-Eight's libcec for the Pulse-Eight USB-CEC adapter
+arch=('i686' 'x86_64')
+url=http://libcec.pulse-eight.com/;
+license=('GPL')
+makedepends=('cmake')
+depends=('udev' 'lockdev' 'libplatform' 'libxrandr')
+source=($pkgname-$pkgver.tar.gz::https://github.com/Pulse-Eight/$pkgname/archive/$pkgname-$pkgver.tar.gz;)
+sha256sums=('7e3670c8949a1964d6e5481f56dfff838857da10bdc60b506f6e9b7f117e253e')
+
+build() {
+cd $pkgname-$pkgname-$pkgver
+mkdir build
+cd build
+cmake .. \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_SHARED_LIBS=1 \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=/usr/lib \
+-DCMAKE_INSTALL_LIBDIR_NOARCH=/usr/lib
+make
+}
+
+package() {
+cd $pkgname-$pkgname-$pkgver/build
+make DESTDIR=$pkgdir install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-07-24 12:34:58 UTC (rev 137370)
+++ community-x86_64/PKGBUILD   2015-07-24 12:35:14 UTC (rev 137371)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: BlackIkeEagle ike DOT devolder AT gmail DOT com
-# Contributor: Philippe Cherel philippe.che...@mayenne.org
-# vim: ft=sh:
-
-pkgname=libcec
-pkgver=2.2.0
-pkgrel=1
-pkgdesc=Pulse-Eight's libcec for the Pulse-Eight USB-CEC adapter
-arch=('i686' 'x86_64')
-url=http://libcec.pulse-eight.com/;
-license=('GPL')
-depends=('udev' 'lockdev')
-source=($pkgname-$pkgver.tar.gz::https://github.com/Pulse-Eight/$pkgname/archive/$pkgname-$pkgver.tar.gz;)
-
-build() {
-  cd $pkgname-$pkgname-$pkgver
-  autoreconf -vif
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}
-sha256sums=('fd4f47a18d6e0f4b9e6f5831280207ee2b2a5fc2741ae32ae09ad12a8aa52917')

Copied: libcec/repos/community-x86_64/PKGBUILD (from rev 137370, 
libcec/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-07-24 12:35:14 UTC (rev 137371)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: BlackIkeEagle ike DOT devolder AT gmail DOT com
+# Contributor: Philippe Cherel philippe.che...@mayenne.org
+# vim: ft=sh:
+
+pkgname=libcec
+pkgver=3.0.1
+pkgrel=1
+pkgdesc=Pulse-Eight's libcec for the Pulse-Eight USB-CEC adapter
+arch=('i686' 'x86_64')
+url=http://libcec.pulse-eight.com/;
+license=('GPL')
+makedepends=('cmake')
+depends=('udev' 'lockdev' 'libplatform' 'libxrandr')
+source=($pkgname-$pkgver.tar.gz::https://github.com/Pulse-Eight/$pkgname/archive/$pkgname-$pkgver.tar.gz;)
+sha256sums=('7e3670c8949a1964d6e5481f56dfff838857da10bdc60b506f6e9b7f117e253e')
+
+build() {
+cd $pkgname-$pkgname-$pkgver
+mkdir build
+cd build
+cmake .. \
+-DCMAKE_BUILD_TYPE=Release 

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

2015-07-24 Thread Ike Devolder
Date: Friday, July 24, 2015 @ 14:34:58
  Author: idevolder
Revision: 137370

libcec :: 3.0.1

Modified:
  libcec/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-07-24 12:34:17 UTC (rev 137369)
+++ PKGBUILD2015-07-24 12:34:58 UTC (rev 137370)
@@ -4,24 +4,31 @@
 # vim: ft=sh:
 
 pkgname=libcec
-pkgver=2.2.0
+pkgver=3.0.1
 pkgrel=1
 pkgdesc=Pulse-Eight's libcec for the Pulse-Eight USB-CEC adapter
 arch=('i686' 'x86_64')
 url=http://libcec.pulse-eight.com/;
 license=('GPL')
-depends=('udev' 'lockdev')
+makedepends=('cmake')
+depends=('udev' 'lockdev' 'libplatform' 'libxrandr')
 
source=($pkgname-$pkgver.tar.gz::https://github.com/Pulse-Eight/$pkgname/archive/$pkgname-$pkgver.tar.gz;)
+sha256sums=('7e3670c8949a1964d6e5481f56dfff838857da10bdc60b506f6e9b7f117e253e')
 
 build() {
-  cd $pkgname-$pkgname-$pkgver
-  autoreconf -vif
-  ./configure --prefix=/usr
-  make
+cd $pkgname-$pkgname-$pkgver
+mkdir build
+cd build
+cmake .. \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_SHARED_LIBS=1 \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=/usr/lib \
+-DCMAKE_INSTALL_LIBDIR_NOARCH=/usr/lib
+make
 }
 
 package() {
-  cd $pkgname-$pkgname-$pkgver
-  make DESTDIR=$pkgdir install
+cd $pkgname-$pkgname-$pkgver/build
+make DESTDIR=$pkgdir install
 }
-sha256sums=('fd4f47a18d6e0f4b9e6f5831280207ee2b2a5fc2741ae32ae09ad12a8aa52917')


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

2015-07-24 Thread Allan McRae
Date: Friday, July 24, 2015 @ 13:59:01
  Author: allan
Revision: 242479

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

Added:
  crypto++/repos/extra-i686/CVE-2015-2141.patch
(from rev 242478, crypto++/trunk/CVE-2015-2141.patch)
  crypto++/repos/extra-i686/PKGBUILD
(from rev 242478, crypto++/trunk/PKGBUILD)
  crypto++/repos/extra-i686/libcrypto++.pc
(from rev 242478, crypto++/trunk/libcrypto++.pc)
  crypto++/repos/extra-x86_64/CVE-2015-2141.patch
(from rev 242478, crypto++/trunk/CVE-2015-2141.patch)
  crypto++/repos/extra-x86_64/PKGBUILD
(from rev 242478, crypto++/trunk/PKGBUILD)
  crypto++/repos/extra-x86_64/libcrypto++.pc
(from rev 242478, crypto++/trunk/libcrypto++.pc)
Deleted:
  crypto++/repos/extra-i686/PKGBUILD
  crypto++/repos/extra-i686/libcrypto++.pc
  crypto++/repos/extra-x86_64/PKGBUILD
  crypto++/repos/extra-x86_64/libcrypto++.pc

--+
 /PKGBUILD|   84 +
 /libcrypto++.pc  |   22 +
 extra-i686/CVE-2015-2141.patch   |   32 ++
 extra-i686/PKGBUILD  |   36 ---
 extra-i686/libcrypto++.pc|   11 
 extra-x86_64/CVE-2015-2141.patch |   32 ++
 extra-x86_64/PKGBUILD|   36 ---
 extra-x86_64/libcrypto++.pc  |   11 
 8 files changed, 170 insertions(+), 94 deletions(-)

Copied: crypto++/repos/extra-i686/CVE-2015-2141.patch (from rev 242478, 
crypto++/trunk/CVE-2015-2141.patch)
===
--- extra-i686/CVE-2015-2141.patch  (rev 0)
+++ extra-i686/CVE-2015-2141.patch  2015-07-24 11:59:01 UTC (rev 242479)
@@ -0,0 +1,32 @@
+From 9425e16437439e68c7d96abef922167d68fafaff Mon Sep 17 00:00:00 2001
+From: Jeffrey Walton noloa...@gmail.com
+Date: Sat, 27 Jun 2015 17:56:01 -0400
+Subject: [PATCH] Fix for CVE-2015-2141. Thanks to Evgeny Sidorov for
+ reporting. Squaring to satisfy Jacobi requirements suggested by JPM.
+
+---
+ rw.cpp | 8 +++-
+ 1 file changed, 7 insertions(+), 1 deletion(-)
+
+diff --git a/rw.cpp b/rw.cpp
+index cdd9f2d..0b9318b 100644
+--- a/rw.cpp
 b/rw.cpp
+@@ -126,10 +126,16 @@ Integer 
InvertibleRWFunction::CalculateInverse(RandomNumberGenerator rng, const
+   DoQuickSanityCheck();
+   ModularArithmetic modn(m_n);
+   Integer r, rInv;
+-  do {// do this in a loop for people using small numbers for testing
++
++  // do this in a loop for people using small numbers for testing
++  do {
+   r.Randomize(rng, Integer::One(), m_n - Integer::One());
++  // Fix for CVE-2015-2141. Thanks to Evgeny Sidorov for 
reporting.
++  // Squaring to satisfy Jacobi requirements suggested by JPM.
++  r = modn.Square(r);
+   rInv = modn.MultiplicativeInverse(r);
+   } while (rInv.IsZero());
++
+   Integer re = modn.Square(r);
+   re = modn.Multiply(re, x);  // blind
+ 

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-07-24 11:57:33 UTC (rev 242478)
+++ extra-i686/PKGBUILD 2015-07-24 11:59:01 UTC (rev 242479)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora giova...@archlinux.org
-# Contributor: Alexander Rødseth rods...@gmail.com
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Kritoke krit...@gamebox.net
-# Contributor: jlvsimoes jlvsim...@oninet.pt
-
-pkgname=crypto++
-pkgver=5.6.2
-_srcver=562
-pkgrel=2
-pkgdesc=A free C++ class library of cryptographic schemes
-arch=('i686' 'x86_64')
-url=http://www.cryptopp.com/;
-license=('custom')
-depends=('gcc-libs')
-makedepends=('unzip')
-source=(http://www.cryptopp.com/cryptopp${_srcver}.zip;
-'libcrypto++.pc')
-md5sums=('7ed022585698df48e65ce9218f6c6a67'
- '46de3847c59ad16456fa863eb33e73b2')
-
-build() {
-  sed -i -e 's/^CXXFLAGS/#CXXFLAGS/' GNUmakefile
-  export CXXFLAGS=${CXXFLAGS} -DNDEBUG -fPIC
-  make -f GNUmakefile  
-  make libcryptopp.so
-}
-
-package() {
-  install -d ${pkgdir}/usr/{lib/pkgconfig,include/cryptopp}
-  install -m644 *.h ${pkgdir}/usr/include/cryptopp/
-  install -m644 libcryptopp.so ${pkgdir}/usr/lib/libcryptopp.so
-  install -m644 ${srcdir}/libcrypto++.pc 
${pkgdir}/usr/lib/pkgconfig/libcrypto++.pc
-  install -D -m644 License.txt 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: crypto++/repos/extra-i686/PKGBUILD (from rev 242478, 
crypto++/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-07-24 11:59:01 UTC (rev 242479)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Giovanni Scafora giova...@archlinux.org
+# Contributor: Alexander Rødseth rods...@gmail.com
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Kritoke krit...@gamebox.net
+#