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

2016-02-26 Thread Tobias Powalowski
Date: Saturday, February 27, 2016 @ 08:04:13
  Author: tpowa
Revision: 260267

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

Added:
  findutils/repos/core-i686/PKGBUILD
(from rev 260266, findutils/repos/testing-i686/PKGBUILD)
  findutils/repos/core-i686/findutils.install
(from rev 260266, findutils/repos/testing-i686/findutils.install)
  findutils/repos/core-x86_64/PKGBUILD
(from rev 260266, findutils/repos/testing-x86_64/PKGBUILD)
  findutils/repos/core-x86_64/findutils.install
(from rev 260266, findutils/repos/testing-x86_64/findutils.install)
Deleted:
  findutils/repos/core-i686/PKGBUILD
  findutils/repos/core-i686/findutils.install
  findutils/repos/core-x86_64/PKGBUILD
  findutils/repos/core-x86_64/findutils.install
  findutils/repos/testing-i686/
  findutils/repos/testing-x86_64/

---+
 /PKGBUILD |   76 
 /findutils.install|   44 +++
 core-i686/PKGBUILD|   37 ---
 core-i686/findutils.install   |   22 ---
 core-x86_64/PKGBUILD  |   37 ---
 core-x86_64/findutils.install |   22 ---
 6 files changed, 120 insertions(+), 118 deletions(-)

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2016-02-27 07:03:47 UTC (rev 260266)
+++ core-i686/PKGBUILD  2016-02-27 07:04:13 UTC (rev 260267)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer:
-
-pkgname=findutils
-pkgver=4.4.2
-pkgrel=6
-pkgdesc="GNU utilities to locate files"
-arch=('i686' 'x86_64')
-license=('GPL3')
-groups=('base' 'base-devel')
-depends=('glibc' 'sh')
-url="http://www.gnu.org/software/findutils;
-source=(ftp://ftp.gnu.org/pub/gnu/findutils/${pkgname}-${pkgver}.tar.gz{,.sig})
-install=findutils.install
-sha1sums=('e8dd88fa2cc58abffd0bfc1eddab9020231bb024'
-  '77d9585d9feea0814752a31bf109fe287f528243')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  # Don't build or install locate because we use mlocate,
-  # which is a secure version of locate.
-  sed -i '/^SUBDIRS/s/locate//' Makefile.in
-
-  ./configure --prefix=/usr
-  make
-}
-
-check() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make check
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR=$pkgdir install
-}

Copied: findutils/repos/core-i686/PKGBUILD (from rev 260266, 
findutils/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2016-02-27 07:04:13 UTC (rev 260267)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer:
+
+pkgname=findutils
+pkgver=4.6.0
+pkgrel=1
+pkgdesc="GNU utilities to locate files"
+arch=('i686' 'x86_64')
+license=('GPL3')
+groups=('base' 'base-devel')
+depends=('glibc' 'sh')
+url="http://www.gnu.org/software/findutils;
+source=(ftp://ftp.gnu.org/pub/gnu/findutils/${pkgname}-${pkgver}.tar.gz)
+install=findutils.install
+sha1sums=('f18e8aaee3f3d4173a1f598001003be8706d28b0')
+#validpgpkeys=('A15B725964A95EE5') # James Youngman 
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  # Don't build or install locate because we use mlocate,
+  # which is a secure version of locate.
+  sed -i '/^SUBDIRS/s/locate//' Makefile.in
+
+  ./configure --prefix=/usr
+  # don't build locate, but the docs want a file in there.
+  make -C locate dblocation.texi
+  make
+}
+
+check() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make check
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR=$pkgdir install
+}

Deleted: core-i686/findutils.install
===
--- core-i686/findutils.install 2016-02-27 07:03:47 UTC (rev 260266)
+++ core-i686/findutils.install 2016-02-27 07:04:13 UTC (rev 260267)
@@ -1,22 +0,0 @@
-infodir=/usr/share/info
-filelist=(find-maint.info find.info)
-
-post_install() {
-  [ -x usr/bin/install-info ] || return 0
-  for file in ${filelist[@]}; do
-install-info $infodir/$file.gz $infodir/dir 2> /dev/null
-  done
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-pre_remove() {
-  [ -x usr/bin/install-info ] || return 0
-  for file in ${filelist[@]}; do
-install-info --delete $infodir/$file.gz $infodir/dir 2> /dev/null
-  done
-}
-
-# vim:set ts=2 sw=2 et:

Copied: findutils/repos/core-i686/findutils.install (from rev 260266, 
findutils/repos/testing-i686/findutils.install)
===
--- core-i686/findutils.install (rev 0)
+++ core-i686/findutils.install 2016-02-27 07:04:13 UTC (rev 260267)
@@ -0,0 +1,22 @@
+infodir=/usr/share/info
+filelist=(find-maint.info find.info)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+install-info $infodir/$file.gz $infodir/dir 2> /dev/null
+  done
+}
+
+post_upgrade() {
+  

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

2016-02-26 Thread Tobias Powalowski
Date: Saturday, February 27, 2016 @ 08:04:15
  Author: tpowa
Revision: 260268

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

Added:
  gettext/repos/core-i686/PKGBUILD
(from rev 260267, gettext/repos/testing-i686/PKGBUILD)
  gettext/repos/core-i686/gettext.install
(from rev 260267, gettext/repos/testing-i686/gettext.install)
  gettext/repos/core-x86_64/PKGBUILD
(from rev 260267, gettext/repos/testing-x86_64/PKGBUILD)
  gettext/repos/core-x86_64/gettext.install
(from rev 260267, gettext/repos/testing-x86_64/gettext.install)
Deleted:
  gettext/repos/core-i686/PKGBUILD
  gettext/repos/core-i686/gettext.install
  gettext/repos/core-x86_64/PKGBUILD
  gettext/repos/core-x86_64/gettext.install
  gettext/repos/testing-i686/
  gettext/repos/testing-x86_64/

-+
 /PKGBUILD   |   70 ++
 /gettext.install|   44 ++
 core-i686/PKGBUILD  |   35 -
 core-i686/gettext.install   |   22 -
 core-x86_64/PKGBUILD|   35 -
 core-x86_64/gettext.install |   22 -
 6 files changed, 114 insertions(+), 114 deletions(-)

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2016-02-27 07:04:13 UTC (rev 260267)
+++ core-i686/PKGBUILD  2016-02-27 07:04:15 UTC (rev 260268)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer:
-
-pkgname=gettext
-pkgver=0.19.6
-pkgrel=2
-pkgdesc="GNU internationalization library"
-arch=('i686' 'x86_64')
-url="http://www.gnu.org/software/gettext/;
-license=('GPL')
-groups=('base' 'base-devel')
-depends=('gcc-libs' 'acl' 'sh' 'glib2' 'libunistring')
-optdepends=('git: for autopoint infrastructure updates')
-options=(!docs)
-install=gettext.install
-source=(ftp://ftp.gnu.org/pub/gnu/gettext/${pkgname}-${pkgver}.tar.gz{,.sig})
-validpgpkeys=('462225C3B46F34879FC8496CD605848ED7E69871') # Daiki Ueno
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr
-  make
-}
-
-check() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make -j1 -k check
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-}
-md5sums=('6d1447f8c5c45c329371ef4bfe7d79a5'
- 'SKIP')

Copied: gettext/repos/core-i686/PKGBUILD (from rev 260267, 
gettext/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2016-02-27 07:04:15 UTC (rev 260268)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer:
+
+pkgname=gettext
+pkgver=0.19.7
+pkgrel=1
+pkgdesc="GNU internationalization library"
+arch=('i686' 'x86_64')
+url="http://www.gnu.org/software/gettext/;
+license=('GPL')
+groups=('base' 'base-devel')
+depends=('gcc-libs' 'acl' 'sh' 'glib2' 'libunistring')
+optdepends=('git: for autopoint infrastructure updates')
+options=(!docs)
+install=gettext.install
+source=(ftp://ftp.gnu.org/pub/gnu/gettext/${pkgname}-${pkgver}.tar.gz{,.sig})
+validpgpkeys=('462225C3B46F34879FC8496CD605848ED7E69871') # Daiki Ueno
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make -j1 -k check
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}
+md5sums=('87c4ab267c4dce8a75db5d057bb3c92f'
+ 'SKIP')

Deleted: core-i686/gettext.install
===
--- core-i686/gettext.install   2016-02-27 07:04:13 UTC (rev 260267)
+++ core-i686/gettext.install   2016-02-27 07:04:15 UTC (rev 260268)
@@ -1,22 +0,0 @@
-infodir=/usr/share/info
-filelist=(gettext.info.gz autosprintf.info.gz)
-
-post_install() {
-  [ -x usr/bin/install-info ] || return 0
-  for file in ${filelist[@]}; do
-install-info $infodir/$file $infodir/dir 2> /dev/null
-  done
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-pre_remove() {
-  [ -x usr/bin/install-info ] || return 0
-  for file in ${filelist[@]}; do
-install-info --delete $infodir/$file $infodir/dir 2> /dev/null
-  done
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gettext/repos/core-i686/gettext.install (from rev 260267, 
gettext/repos/testing-i686/gettext.install)
===
--- core-i686/gettext.install   (rev 0)
+++ core-i686/gettext.install   2016-02-27 07:04:15 UTC (rev 260268)
@@ -0,0 +1,22 @@
+infodir=/usr/share/info
+filelist=(gettext.info.gz autosprintf.info.gz)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+install-info $infodir/$file $infodir/dir 2> /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+install-info --delete $infodir/$file $infodir/dir 2> 

[arch-commits] Commit in mdadm/repos (34 files)

2016-02-26 Thread Tobias Powalowski
Date: Saturday, February 27, 2016 @ 08:03:47
  Author: tpowa
Revision: 260266

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

Added:
  mdadm/repos/core-i686/PKGBUILD
(from rev 260265, mdadm/repos/testing-i686/PKGBUILD)
  mdadm/repos/core-i686/disable-werror.patch
(from rev 260265, mdadm/repos/testing-i686/disable-werror.patch)
  mdadm/repos/core-i686/linux-3.0.patch
(from rev 260265, mdadm/repos/testing-i686/linux-3.0.patch)
  mdadm/repos/core-i686/mdadm-fix-udev-rules.patch
(from rev 260265, mdadm/repos/testing-i686/mdadm-fix-udev-rules.patch)
  mdadm/repos/core-i686/mdadm.conf
(from rev 260265, mdadm/repos/testing-i686/mdadm.conf)
  mdadm/repos/core-i686/mdadm_hook
(from rev 260265, mdadm/repos/testing-i686/mdadm_hook)
  mdadm/repos/core-i686/mdadm_install
(from rev 260265, mdadm/repos/testing-i686/mdadm_install)
  mdadm/repos/core-i686/mdadm_udev_install
(from rev 260265, mdadm/repos/testing-i686/mdadm_udev_install)
  mdadm/repos/core-x86_64/PKGBUILD
(from rev 260265, mdadm/repos/testing-x86_64/PKGBUILD)
  mdadm/repos/core-x86_64/disable-werror.patch
(from rev 260265, mdadm/repos/testing-x86_64/disable-werror.patch)
  mdadm/repos/core-x86_64/linux-3.0.patch
(from rev 260265, mdadm/repos/testing-x86_64/linux-3.0.patch)
  mdadm/repos/core-x86_64/mdadm-fix-udev-rules.patch
(from rev 260265, mdadm/repos/testing-x86_64/mdadm-fix-udev-rules.patch)
  mdadm/repos/core-x86_64/mdadm.conf
(from rev 260265, mdadm/repos/testing-x86_64/mdadm.conf)
  mdadm/repos/core-x86_64/mdadm_hook
(from rev 260265, mdadm/repos/testing-x86_64/mdadm_hook)
  mdadm/repos/core-x86_64/mdadm_install
(from rev 260265, mdadm/repos/testing-x86_64/mdadm_install)
  mdadm/repos/core-x86_64/mdadm_udev_install
(from rev 260265, mdadm/repos/testing-x86_64/mdadm_udev_install)
Deleted:
  mdadm/repos/core-i686/PKGBUILD
  mdadm/repos/core-i686/disable-werror.patch
  mdadm/repos/core-i686/linux-3.0.patch
  mdadm/repos/core-i686/mdadm-fix-udev-rules.patch
  mdadm/repos/core-i686/mdadm.conf
  mdadm/repos/core-i686/mdadm_hook
  mdadm/repos/core-i686/mdadm_install
  mdadm/repos/core-i686/mdadm_udev_install
  mdadm/repos/core-x86_64/PKGBUILD
  mdadm/repos/core-x86_64/disable-werror.patch
  mdadm/repos/core-x86_64/linux-3.0.patch
  mdadm/repos/core-x86_64/mdadm-fix-udev-rules.patch
  mdadm/repos/core-x86_64/mdadm.conf
  mdadm/repos/core-x86_64/mdadm_hook
  mdadm/repos/core-x86_64/mdadm_install
  mdadm/repos/core-x86_64/mdadm_udev_install
  mdadm/repos/testing-i686/
  mdadm/repos/testing-x86_64/

+
 /PKGBUILD  |  106 +++
 /disable-werror.patch  |   22 ++
 /linux-3.0.patch   |   90 ++
 /mdadm-fix-udev-rules.patch|  274 +++
 /mdadm.conf|  134 +++
 /mdadm_hook|   98 +++
 /mdadm_install |   92 ++
 /mdadm_udev_install|   50 +
 core-i686/PKGBUILD |   53 -
 core-i686/disable-werror.patch |   11 -
 core-i686/linux-3.0.patch  |   45 -
 core-i686/mdadm-fix-udev-rules.patch   |  137 ---
 core-i686/mdadm.conf   |   67 ---
 core-i686/mdadm_hook   |   49 -
 core-i686/mdadm_install|   46 -
 core-i686/mdadm_udev_install   |   25 --
 core-x86_64/PKGBUILD   |   53 -
 core-x86_64/disable-werror.patch   |   11 -
 core-x86_64/linux-3.0.patch|   45 -
 core-x86_64/mdadm-fix-udev-rules.patch |  137 ---
 core-x86_64/mdadm.conf |   67 ---
 core-x86_64/mdadm_hook |   49 -
 core-x86_64/mdadm_install  |   46 -
 core-x86_64/mdadm_udev_install |   25 --
 24 files changed, 866 insertions(+), 866 deletions(-)

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


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

2016-02-26 Thread Tobias Powalowski
Date: Saturday, February 27, 2016 @ 07:59:58
  Author: tpowa
Revision: 260265

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

Added:
  linux/repos/testing-i686/0001-sdhci-revert.patch
(from rev 260264, linux/trunk/0001-sdhci-revert.patch)
  linux/repos/testing-i686/PKGBUILD
(from rev 260264, linux/trunk/PKGBUILD)
  linux/repos/testing-i686/change-default-console-loglevel.patch
(from rev 260264, linux/trunk/change-default-console-loglevel.patch)
  linux/repos/testing-i686/config
(from rev 260264, linux/trunk/config)
  linux/repos/testing-i686/config.x86_64
(from rev 260264, linux/trunk/config.x86_64)
  linux/repos/testing-i686/linux.install
(from rev 260264, linux/trunk/linux.install)
  linux/repos/testing-i686/linux.preset
(from rev 260264, linux/trunk/linux.preset)
  linux/repos/testing-x86_64/0001-sdhci-revert.patch
(from rev 260264, linux/trunk/0001-sdhci-revert.patch)
  linux/repos/testing-x86_64/PKGBUILD
(from rev 260264, linux/trunk/PKGBUILD)
  linux/repos/testing-x86_64/change-default-console-loglevel.patch
(from rev 260264, linux/trunk/change-default-console-loglevel.patch)
  linux/repos/testing-x86_64/config
(from rev 260264, linux/trunk/config)
  linux/repos/testing-x86_64/config.x86_64
(from rev 260264, linux/trunk/config.x86_64)
  linux/repos/testing-x86_64/linux.install
(from rev 260264, linux/trunk/linux.install)
  linux/repos/testing-x86_64/linux.preset
(from rev 260264, linux/trunk/linux.preset)
Deleted:
  linux/repos/testing-i686/0001-4.4-revert-btrfs.patch
  linux/repos/testing-i686/0001-4.4-revert-xfs.patch
  linux/repos/testing-i686/0001-sdhci-revert.patch
  linux/repos/testing-i686/PKGBUILD
  linux/repos/testing-i686/change-default-console-loglevel.patch
  linux/repos/testing-i686/config
  linux/repos/testing-i686/config.x86_64
  linux/repos/testing-i686/linux.install
  linux/repos/testing-i686/linux.preset
  linux/repos/testing-x86_64/0001-4.4-revert-btrfs.patch
  linux/repos/testing-x86_64/0001-4.4-revert-xfs.patch
  linux/repos/testing-x86_64/0001-sdhci-revert.patch
  linux/repos/testing-x86_64/PKGBUILD
  linux/repos/testing-x86_64/change-default-console-loglevel.patch
  linux/repos/testing-x86_64/config
  linux/repos/testing-x86_64/config.x86_64
  linux/repos/testing-x86_64/linux.install
  linux/repos/testing-x86_64/linux.preset

--+
 /0001-sdhci-revert.patch |   50 
 /PKGBUILD|  604 
 /change-default-console-loglevel.patch   |   22 
 /config  |15792 +
 /config.x86_64   |15310 
 /linux.install   |   74 
 /linux.preset|   28 
 testing-i686/0001-4.4-revert-btrfs.patch |   78 
 testing-i686/0001-4.4-revert-xfs.patch   |   39 
 testing-i686/0001-sdhci-revert.patch |   25 
 testing-i686/PKGBUILD|  310 
 testing-i686/change-default-console-loglevel.patch   |   11 
 testing-i686/config  | 7896 
 testing-i686/config.x86_64   | 7655 
 testing-i686/linux.install   |   37 
 testing-i686/linux.preset|   14 
 testing-x86_64/0001-4.4-revert-btrfs.patch   |   78 
 testing-x86_64/0001-4.4-revert-xfs.patch |   39 
 testing-x86_64/0001-sdhci-revert.patch   |   25 
 testing-x86_64/PKGBUILD  |  310 
 testing-x86_64/change-default-console-loglevel.patch |   11 
 testing-x86_64/config| 7896 
 testing-x86_64/config.x86_64 | 7655 
 testing-x86_64/linux.install |   37 
 testing-x86_64/linux.preset  |   14 
 25 files changed, 31880 insertions(+), 32130 deletions(-)

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


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

2016-02-26 Thread Tobias Powalowski
Date: Saturday, February 27, 2016 @ 07:59:33
  Author: tpowa
Revision: 260264

upgpkg: linux 4.4.3-1

bump to latest version

Modified:
  linux/trunk/PKGBUILD
Deleted:
  linux/trunk/0001-4.4-revert-btrfs.patch
  linux/trunk/0001-4.4-revert-xfs.patch

-+
 0001-4.4-revert-btrfs.patch |   78 --
 0001-4.4-revert-xfs.patch   |   39 -
 PKGBUILD|   16 ++--
 3 files changed, 4 insertions(+), 129 deletions(-)

Deleted: 0001-4.4-revert-btrfs.patch
===
--- 0001-4.4-revert-btrfs.patch 2016-02-27 04:36:31 UTC (rev 260263)
+++ 0001-4.4-revert-btrfs.patch 2016-02-27 06:59:33 UTC (rev 260264)
@@ -1,78 +0,0 @@
-From 80ad623edd2d0ccb47d85357ee31c97e6c684e82 Mon Sep 17 00:00:00 2001
-From: David Sterba 
-Date: Mon, 25 Jan 2016 11:02:06 +0100
-Subject: Revert "btrfs: clear PF_NOFREEZE in cleaner_kthread()"
-
-This reverts commit 696249132158014d594896df3a81390616069c5c. The
-cleaner thread can block freezing when there's a snapshot cleaning in
-progress and the other threads get suspended first. From the logs
-provided by Martin we're waiting for reading extent pages:
-
-kernel: PM: Syncing filesystems ... done.
-kernel: Freezing user space processes ... (elapsed 0.015 seconds) done.
-kernel: Freezing remaining freezable tasks ...
-kernel: Freezing of tasks failed after 20.003 seconds (1 tasks refusing to 
freeze, wq_busy=0):
-kernel: btrfs-cleaner   D 88033dd13bc0 0   152  2 0x
-kernel: 88032ebc2e00 88032e75 88032e74fa50 7fff
-kernel: 814a58df 0002 ea000934d580 814a5451
-kernel: 7fff 814a6e8f  0020
-kernel: Call Trace:
-kernel: [] ? bit_wait+0x2c/0x2c
-kernel: [] ? schedule+0x6f/0x7c
-kernel: [] ? schedule_timeout+0x2f/0xd8
-kernel: [] ? timekeeping_get_ns+0xa/0x2e
-kernel: [] ? ktime_get+0x36/0x44
-kernel: [] ? io_schedule_timeout+0x94/0xf2
-kernel: [] ? io_schedule_timeout+0x94/0xf2
-kernel: [] ? bit_wait_io+0x2c/0x30
-kernel: [] ? __wait_on_bit+0x41/0x73
-kernel: [] ? wait_on_page_bit+0x6d/0x72
-kernel: [] ? autoremove_wake_function+0x2a/0x2a
-kernel: [] ? read_extent_buffer_pages+0x1bd/0x203
-kernel: [] ? free_root_pointers+0x4c/0x4c
-kernel: [] ? 
btree_read_extent_buffer_pages.constprop.57+0x5a/0xe9
-kernel: [] ? read_tree_block+0x2d/0x45
-kernel: [] ? read_block_for_search.isra.34+0x22a/0x26b
-kernel: [] ? btrfs_set_path_blocking+0x1e/0x4a
-kernel: [] ? btrfs_search_slot+0x648/0x736
-kernel: [] ? btrfs_lookup_extent_info+0xb7/0x2c7
-kernel: [] ? walk_down_proc+0x9c/0x1ae
-kernel: [] ? walk_down_tree+0x40/0xa4
-kernel: [] ? btrfs_drop_snapshot+0x2da/0x664
-kernel: [] ? finish_task_switch+0x126/0x167
-kernel: [] ? btrfs_clean_one_deleted_snapshot+0xa6/0xb0
-kernel: [] ? cleaner_kthread+0x13e/0x17b
-kernel: [] ? btrfs_item_end+0x33/0x33
-kernel: [] ? kthread+0x95/0x9d
-kernel: [] ? kthread_parkme+0x16/0x16
-kernel: [] ? ret_from_fork+0x3f/0x70
-kernel: [] ? kthread_parkme+0x16/0x16
-
-As this affects a released kernel (4.4) we need a minimal fix for
-stable kernels.
-
-Bugzilla: https://bugzilla.kernel.org/show_bug.cgi?id=108361
-Reported-by: Martin Ziegler 
-CC: sta...@vger.kernel.org # 4.4
-CC: Jiri Kosina 
-Signed-off-by: David Sterba 
-Signed-off-by: Chris Mason 

- fs/btrfs/disk-io.c | 1 -
- 1 file changed, 1 deletion(-)
-
-diff --git a/fs/btrfs/disk-io.c b/fs/btrfs/disk-io.c
-index 26ef141..404e894 100644
 a/fs/btrfs/disk-io.c
-+++ b/fs/btrfs/disk-io.c
-@@ -1787,7 +1787,6 @@ static int cleaner_kthread(void *arg)
-   int again;
-   struct btrfs_trans_handle *trans;
- 
--  set_freezable();
-   do {
-   again = 0;
- 
--- 
-cgit v0.12
-

Deleted: 0001-4.4-revert-xfs.patch
===
--- 0001-4.4-revert-xfs.patch   2016-02-27 04:36:31 UTC (rev 260263)
+++ 0001-4.4-revert-xfs.patch   2016-02-27 06:59:33 UTC (rev 260264)
@@ -1,39 +0,0 @@
-From 3e85286e75224fa3f08bdad20e78c8327742634e Mon Sep 17 00:00:00 2001
-From: Dave Chinner 
-Date: Tue, 19 Jan 2016 08:21:46 +1100
-Subject: Revert "xfs: clear PF_NOFREEZE for xfsaild kthread"
-
-This reverts commit 24ba16bb3d499c49974669cd8429c3e4138ab102 as it
-prevents machines from suspending. This regression occurs when the
-xfsaild is idle on entry to suspend, and so there s no activity to
-wake it from it's idle sleep and hence see that it is supposed to
-freeze. Hence the freezer times out waiting for it and suspend is
-cancelled.
-
-There is no obvious fix for this short of freezing the filesystem
-properly, so revert this change for now.
-
-cc:  # 4.4
-Signed-off-by: Dave Chinner 
-Acked-by: Jiri Kosina 

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

2016-02-26 Thread Felix Yan
Date: Saturday, February 27, 2016 @ 05:36:16
  Author: fyan
Revision: 260262

upgpkg: python-packaging 16.5-1

Modified:
  python-packaging/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-27 01:11:36 UTC (rev 260261)
+++ PKGBUILD2016-02-27 04:36:16 UTC (rev 260262)
@@ -4,7 +4,7 @@
 pkgbase=python-packaging
 pkgname=(python-packaging python2-packaging)
 _pkgname=packaging
-pkgver=16.4
+pkgver=16.5
 pkgrel=1
 pkgdesc="Core utilities for Python packages"
 arch=('any')


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

2016-02-26 Thread Felix Yan
Date: Saturday, February 27, 2016 @ 05:36:31
  Author: fyan
Revision: 260263

archrelease: copy trunk to extra-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-02-27 04:36:16 UTC (rev 260262)
+++ PKGBUILD2016-02-27 04:36:31 UTC (rev 260263)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgbase=python-packaging
-pkgname=(python-packaging python2-packaging)
-_pkgname=packaging
-pkgver=16.4
-pkgrel=1
-pkgdesc="Core utilities for Python packages"
-arch=('any')
-url="https://github.com/pypa/packaging;
-license=('Apache')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-pyparsing' 
'python2-pyparsing' 'git')
-checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'python-pretend' 
'python2-pretend' 'python-coverage' 'python2-coverage')
-source=("git+https://github.com/pypa/packaging.git#tag=$pkgver;)
-md5sums=('SKIP')
-
-prepare() {
-  cp -a $_pkgname{,-py2}
-}
-
-build() {
-  cd "${srcdir}/${_pkgname}"
-  python setup.py build
-
-  cd "${srcdir}/${_pkgname}-py2"
-  python2 setup.py build
-}
-
-check() {
-  cd "${srcdir}/${_pkgname}"
-  python setup.py ptr
-
-  cd "${srcdir}/${_pkgname}-py2"
-  python2 setup.py ptr
-}
-
-package_python-packaging() {
-  depends=('python-pyparsing' 'python-six')
-
-  cd "${srcdir}/${_pkgname}"
-  python setup.py install --root "$pkgdir"
-}
-
-package_python2-packaging() {
-  depends=('python2-pyparsing' 'python2-six')
-
-  cd "${srcdir}/${_pkgname}-py2"
-  python2 setup.py install --root "$pkgdir"
-}

Copied: python-packaging/repos/extra-any/PKGBUILD (from rev 260262, 
python-packaging/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-02-27 04:36:31 UTC (rev 260263)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-packaging
+pkgname=(python-packaging python2-packaging)
+_pkgname=packaging
+pkgver=16.5
+pkgrel=1
+pkgdesc="Core utilities for Python packages"
+arch=('any')
+url="https://github.com/pypa/packaging;
+license=('Apache')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-pyparsing' 
'python2-pyparsing' 'git')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'python-pretend' 
'python2-pretend' 'python-coverage' 'python2-coverage')
+source=("git+https://github.com/pypa/packaging.git#tag=$pkgver;)
+md5sums=('SKIP')
+
+prepare() {
+  cp -a $_pkgname{,-py2}
+}
+
+build() {
+  cd "${srcdir}/${_pkgname}"
+  python setup.py build
+
+  cd "${srcdir}/${_pkgname}-py2"
+  python2 setup.py build
+}
+
+check() {
+  cd "${srcdir}/${_pkgname}"
+  python setup.py ptr
+
+  cd "${srcdir}/${_pkgname}-py2"
+  python2 setup.py ptr
+}
+
+package_python-packaging() {
+  depends=('python-pyparsing' 'python-six')
+
+  cd "${srcdir}/${_pkgname}"
+  python setup.py install --root "$pkgdir"
+}
+
+package_python2-packaging() {
+  depends=('python2-pyparsing' 'python2-six')
+
+  cd "${srcdir}/${_pkgname}-py2"
+  python2 setup.py install --root "$pkgdir"
+}


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

2016-02-26 Thread Felix Yan
Date: Saturday, February 27, 2016 @ 05:33:30
  Author: fyan
Revision: 163548

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

Added:
  git-annex/repos/community-staging-i686/
  git-annex/repos/community-staging-i686/PKGBUILD
(from rev 163547, git-annex/trunk/PKGBUILD)
  git-annex/repos/community-staging-x86_64/
  git-annex/repos/community-staging-x86_64/PKGBUILD
(from rev 163547, git-annex/trunk/PKGBUILD)

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

Copied: git-annex/repos/community-staging-i686/PKGBUILD (from rev 163547, 
git-annex/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-02-27 04:33:30 UTC (rev 163548)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=git-annex
+pkgver=6.20160211
+pkgrel=7
+pkgdesc="Manage files with git, without checking their contents into git"
+url="http://git-annex.branchable.com/;
+license=("AGPL3")
+arch=('i686' 'x86_64')
+depends=('git' 'rsync' 'libxml2' 'gsasl' 'file')
+makedepends=("ghc=7.10.3" "haskell-aeson" "haskell-async" "haskell-aws" 
"haskell-blaze-builder"
+ "haskell-bloomfilter" "haskell-byteable" 
"haskell-case-insensitive"
+ "haskell-clientsession" "haskell-concurrent-output" 
"haskell-conduit"
+ "haskell-conduit-extra" "haskell-crypto-api" "haskell-cryptonite"
+ "haskell-data-default" "haskell-dav" "haskell-dbus" 
"haskell-dlist" "haskell-dns"
+ "haskell-edit-distance" "haskell-esqueleto" "haskell-exceptions"
+ "haskell-fdo-notify" "haskell-feed" "haskell-gnutls" 
"haskell-hinotify"
+ "haskell-hslogger" "haskell-http-client" "haskell-http-conduit"
+ "haskell-http-types" "haskell-ifelse" "haskell-json" 
"haskell-magic"
+ "haskell-missingh" "haskell-monad-control" "haskell-monad-logger" 
"haskell-mtl"
+ "haskell-network" "haskell-network-info" 
"haskell-network-multicast"
+ "haskell-network-protocol-xmpp" "haskell-network-uri" 
"haskell-old-locale"
+ "haskell-optparse-applicative" "haskell-path-pieces" 
"haskell-persistent"
+ "haskell-persistent-sqlite" "haskell-persistent-template" 
"haskell-quickcheck"
+ "haskell-random" "haskell-regex-tdfa" "haskell-resourcet" 
"haskell-safesemaphore"
+ "haskell-sandi" "haskell-securemem" "haskell-shakespeare" 
"haskell-stm"
+ "haskell-tasty" "haskell-tasty-hunit" "haskell-tasty-quickcheck"
+ "haskell-tasty-rerun" "haskell-text" "haskell-torrent" 
"haskell-unix-compat"
+ "haskell-utf8-string" "haskell-uuid" "haskell-wai" 
"haskell-wai-extra" "haskell-warp"
+ "haskell-warp-tls" "haskell-xml-types" "haskell-yesod" 
"haskell-yesod-core"
+ "haskell-yesod-default" "haskell-yesod-form" 
"haskell-yesod-static")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('0a7d2dab17df27c06a935c469ced47a68d3c018cbb9254c9a735b584d413fb42')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --prefix=/usr 
--docdir="/usr/share/doc/${pkgname}" \
+-fcryptonite -fnetwork-uri -f-ekg -fconcurrentoutput -ftorrentparser \
+-ftestsuite -f-androidsplice -f-android -fproduction -fpairing 
-fwebapp \
+-fassistant -fwebdav -fs3 -f-benchmark -fdbus -fxmpp -fmagicmime
+runhaskell Setup build
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+
+install -Dm644 bash-completion.bash 
"${pkgdir}/usr/share/bash-completion/completions/git-annex"
+
+rm "$pkgdir/usr/share/doc/git-annex/COPYRIGHT"
+rmdir "$pkgdir/usr/share/doc/git-annex" "$pkgdir/usr/share/doc"
+}

Copied: git-annex/repos/community-staging-x86_64/PKGBUILD (from rev 163547, 
git-annex/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-02-27 04:33:30 UTC (rev 163548)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=git-annex
+pkgver=6.20160211
+pkgrel=7
+pkgdesc="Manage files with git, without checking their contents into git"
+url="http://git-annex.branchable.com/;
+license=("AGPL3")
+arch=('i686' 'x86_64')
+depends=('git' 'rsync' 'libxml2' 'gsasl' 'file')
+makedepends=("ghc=7.10.3" "haskell-aeson" "haskell-async" 

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

2016-02-26 Thread Felix Yan
Date: Saturday, February 27, 2016 @ 05:33:09
  Author: fyan
Revision: 163547

upgpkg: git-annex 6.20160211-7

rebuild with cryptohash-0.11.7, cryptonite-0.13, hjsmin-0.1.5.3, http2-1.5.0, 
warp-3.2.3

Modified:
  git-annex/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-27 04:10:29 UTC (rev 163546)
+++ PKGBUILD2016-02-27 04:33:09 UTC (rev 163547)
@@ -4,7 +4,7 @@
 
 pkgname=git-annex
 pkgver=6.20160211
-pkgrel=6
+pkgrel=7
 pkgdesc="Manage files with git, without checking their contents into git"
 url="http://git-annex.branchable.com/;
 license=("AGPL3")


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

2016-02-26 Thread Felix Yan
Date: Saturday, February 27, 2016 @ 05:10:00
  Author: fyan
Revision: 163545

upgpkg: stack 1.0.4.1-2

rebuild with cryptohash-0.11.7, cryptonite-0.13, hjsmin-0.1.5.3, http2-1.5.0, 
warp-3.2.3

Modified:
  stack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-27 02:43:43 UTC (rev 163544)
+++ PKGBUILD2016-02-27 04:10:00 UTC (rev 163545)
@@ -5,7 +5,7 @@
 pkgbase=stack
 pkgname=(stack haskell-stack)
 pkgver=1.0.4.1
-pkgrel=1
+pkgrel=2
 pkgdesc="The Haskell Tool Stack"
 url="https://github.com/commercialhaskell/stack;
 license=("custom:BSD3")


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

2016-02-26 Thread Felix Yan
Date: Saturday, February 27, 2016 @ 05:10:29
  Author: fyan
Revision: 163546

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

Added:
  stack/repos/community-staging-i686/
  stack/repos/community-staging-i686/PKGBUILD
(from rev 163545, stack/trunk/PKGBUILD)
  stack/repos/community-staging-i686/haskell-stack.install
(from rev 163545, stack/trunk/haskell-stack.install)
  stack/repos/community-staging-i686/stack.install
(from rev 163545, stack/trunk/stack.install)
  stack/repos/community-staging-x86_64/
  stack/repos/community-staging-x86_64/PKGBUILD
(from rev 163545, stack/trunk/PKGBUILD)
  stack/repos/community-staging-x86_64/haskell-stack.install
(from rev 163545, stack/trunk/haskell-stack.install)
  stack/repos/community-staging-x86_64/stack.install
(from rev 163545, stack/trunk/stack.install)

+
 community-staging-i686/PKGBUILD|   78 +++
 community-staging-i686/haskell-stack.install   |   18 +
 community-staging-i686/stack.install   |4 +
 community-staging-x86_64/PKGBUILD  |   78 +++
 community-staging-x86_64/haskell-stack.install |   18 +
 community-staging-x86_64/stack.install |4 +
 6 files changed, 200 insertions(+)

Copied: stack/repos/community-staging-i686/PKGBUILD (from rev 163545, 
stack/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-02-27 04:10:29 UTC (rev 163546)
@@ -0,0 +1,78 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgbase=stack
+pkgname=(stack haskell-stack)
+pkgver=1.0.4.1
+pkgrel=2
+pkgdesc="The Haskell Tool Stack"
+url="https://github.com/commercialhaskell/stack;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+makedepends=("ghc=7.10.3" "haskell-aeson" "haskell-ansi-terminal" 
"haskell-async"
+ "haskell-attoparsec" "haskell-base16-bytestring" 
"haskell-base64-bytestring"
+ "haskell-binary-tagged" "haskell-blaze-builder" "haskell-byteable"
+ "haskell-conduit" "haskell-conduit-extra" "haskell-cryptohash"
+ "haskell-cryptohash-conduit" "haskell-edit-distance" 
"haskell-either"
+ "haskell-enclosed-exceptions" "haskell-errors" 
"haskell-exceptions"
+ "haskell-extra" "haskell-fast-logger" "haskell-filelock" 
"haskell-fsnotify"
+ "haskell-gitrev" "haskell-hashable" "haskell-hastache" 
"haskell-http-client"
+ "haskell-http-client-tls" "haskell-http-conduit" 
"haskell-http-types"
+ "haskell-hpack" "haskell-lifted-base" "haskell-monad-control"
+ "haskell-monad-logger" "haskell-mtl" 
"haskell-optparse-applicative"
+ "haskell-optparse-simple" "haskell-path" "haskell-path-io"
+ "haskell-persistent" "haskell-persistent-sqlite" 
"haskell-persistent-template"
+ "haskell-project-template" "haskell-resourcet" "haskell-retry" 
"haskell-safe"
+ "haskell-semigroups" "haskell-split" "haskell-stm" 
"haskell-streaming-commons"
+ "haskell-tar" "haskell-temporary" "haskell-text" 
"haskell-text-binary"
+ "haskell-transformers-base" "haskell-unix-compat" 
"haskell-unordered-containers"
+ "haskell-uuid" "haskell-vector" "haskell-vector-binary-instances"
+ "haskell-yaml" "haskell-zip-archive" "haskell-zlib")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${pkgbase}/${pkgver}/${pkgbase}-${pkgver}.tar.gz;)
+sha256sums=('660ce0c2126ddf2bb8c88a7b857571781dd09ac1953a3437522e123830dc537a')
+
+build() {
+cd "${srcdir}/${pkgbase}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgbase}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-disable-git-info -f-integration-tests -f-static
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package_stack() {
+depends=('gmp' 'libffi' 'zlib')
+optdepends=('ghc')
+install="stack.install"
+
+cd "${srcdir}/${pkgbase}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -r "$pkgdir"/usr/{lib,share/doc}
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+
+"${pkgdir}"/usr/bin/stack --bash-completion-script /usr/bin/stack > 
stack_completion_script
+install -Dm644 stack_completion_script 
"${pkgdir}/usr/share/bash-completion/completions/stack"
+}
+
+package_haskell-stack() {
+pkgdesc="The Haskell Tool Stack (docs and 

[arch-commits] Commit in virtualbox/repos (80 files)

2016-02-26 Thread Sébastien Luttringer
Date: Saturday, February 27, 2016 @ 03:43:43
  Author: seblu
Revision: 163544

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

Added:
  virtualbox/repos/community-testing-i686/002-dri-driver-path.patch
(from rev 163543, virtualbox/trunk/002-dri-driver-path.patch)
  virtualbox/repos/community-testing-i686/003-ogl-include-path.patch
(from rev 163543, virtualbox/trunk/003-ogl-include-path.patch)
  virtualbox/repos/community-testing-i686/005-gsoap-build.patch
(from rev 163543, virtualbox/trunk/005-gsoap-build.patch)
  virtualbox/repos/community-testing-i686/006-rdesktop-vrdp-keymap-path.patch
(from rev 163543, virtualbox/trunk/006-rdesktop-vrdp-keymap-path.patch)
  virtualbox/repos/community-testing-i686/007-python2-path.patch
(from rev 163543, virtualbox/trunk/007-python2-path.patch)
  virtualbox/repos/community-testing-i686/010-no-update.patch
(from rev 163543, virtualbox/trunk/010-no-update.patch)
  virtualbox/repos/community-testing-i686/60-vboxdrv.rules
(from rev 163543, virtualbox/trunk/60-vboxdrv.rules)
  virtualbox/repos/community-testing-i686/60-vboxguest.rules
(from rev 163543, virtualbox/trunk/60-vboxguest.rules)
  virtualbox/repos/community-testing-i686/LocalConfig.kmk
(from rev 163543, virtualbox/trunk/LocalConfig.kmk)
  virtualbox/repos/community-testing-i686/PKGBUILD
(from rev 163543, virtualbox/trunk/PKGBUILD)
  virtualbox/repos/community-testing-i686/build.sh
(from rev 163543, virtualbox/trunk/build.sh)
  virtualbox/repos/community-testing-i686/vboxreload
(from rev 163543, virtualbox/trunk/vboxreload)
  virtualbox/repos/community-testing-i686/vboxservice-nox.service
(from rev 163543, virtualbox/trunk/vboxservice-nox.service)
  virtualbox/repos/community-testing-i686/vboxservice.service
(from rev 163543, virtualbox/trunk/vboxservice.service)
  virtualbox/repos/community-testing-i686/vboxweb.service
(from rev 163543, virtualbox/trunk/vboxweb.service)
  virtualbox/repos/community-testing-i686/virtualbox-ext-vnc.install
(from rev 163543, virtualbox/trunk/virtualbox-ext-vnc.install)
  virtualbox/repos/community-testing-i686/virtualbox-guest-utils.install
(from rev 163543, virtualbox/trunk/virtualbox-guest-utils.install)
  virtualbox/repos/community-testing-i686/virtualbox-guest-utils.sysusers
(from rev 163543, virtualbox/trunk/virtualbox-guest-utils.sysusers)
  virtualbox/repos/community-testing-i686/virtualbox.install
(from rev 163543, virtualbox/trunk/virtualbox.install)
  virtualbox/repos/community-testing-i686/virtualbox.sysusers
(from rev 163543, virtualbox/trunk/virtualbox.sysusers)
  virtualbox/repos/community-testing-x86_64/002-dri-driver-path.patch
(from rev 163543, virtualbox/trunk/002-dri-driver-path.patch)
  virtualbox/repos/community-testing-x86_64/003-ogl-include-path.patch
(from rev 163543, virtualbox/trunk/003-ogl-include-path.patch)
  virtualbox/repos/community-testing-x86_64/005-gsoap-build.patch
(from rev 163543, virtualbox/trunk/005-gsoap-build.patch)
  virtualbox/repos/community-testing-x86_64/006-rdesktop-vrdp-keymap-path.patch
(from rev 163543, virtualbox/trunk/006-rdesktop-vrdp-keymap-path.patch)
  virtualbox/repos/community-testing-x86_64/007-python2-path.patch
(from rev 163543, virtualbox/trunk/007-python2-path.patch)
  virtualbox/repos/community-testing-x86_64/010-no-update.patch
(from rev 163543, virtualbox/trunk/010-no-update.patch)
  virtualbox/repos/community-testing-x86_64/60-vboxdrv.rules
(from rev 163543, virtualbox/trunk/60-vboxdrv.rules)
  virtualbox/repos/community-testing-x86_64/60-vboxguest.rules
(from rev 163543, virtualbox/trunk/60-vboxguest.rules)
  virtualbox/repos/community-testing-x86_64/LocalConfig.kmk
(from rev 163543, virtualbox/trunk/LocalConfig.kmk)
  virtualbox/repos/community-testing-x86_64/PKGBUILD
(from rev 163543, virtualbox/trunk/PKGBUILD)
  virtualbox/repos/community-testing-x86_64/build.sh
(from rev 163543, virtualbox/trunk/build.sh)
  virtualbox/repos/community-testing-x86_64/vboxreload
(from rev 163543, virtualbox/trunk/vboxreload)
  virtualbox/repos/community-testing-x86_64/vboxservice-nox.service
(from rev 163543, virtualbox/trunk/vboxservice-nox.service)
  virtualbox/repos/community-testing-x86_64/vboxservice.service
(from rev 163543, virtualbox/trunk/vboxservice.service)
  virtualbox/repos/community-testing-x86_64/vboxweb.service
(from rev 163543, virtualbox/trunk/vboxweb.service)
  virtualbox/repos/community-testing-x86_64/virtualbox-ext-vnc.install
(from rev 163543, virtualbox/trunk/virtualbox-ext-vnc.install)
  virtualbox/repos/community-testing-x86_64/virtualbox-guest-utils.install
(from rev 163543, virtualbox/trunk/virtualbox-guest-utils.install)
  virtualbox/repos/community-testing-x86_64/virtualbox-guest-utils.sysusers
(from rev 163543, virtualbox/trunk/virtualbox-guest-utils.sysusers)
  

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

2016-02-26 Thread Sébastien Luttringer
Date: Saturday, February 27, 2016 @ 03:39:31
  Author: seblu
Revision: 163543

upgpkg: virtualbox 5.0.14-3

Modified:
  virtualbox/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-27 01:59:37 UTC (rev 163542)
+++ PKGBUILD2016-02-27 02:39:31 UTC (rev 163543)
@@ -11,7 +11,7 @@
  'virtualbox-guest-utils-nox'
  'virtualbox-ext-vnc')
 pkgver=5.0.14
-pkgrel=2
+pkgrel=3
 arch=('i686' 'x86_64')
 url='http://virtualbox.org'
 license=('GPL' 'custom')
@@ -247,7 +247,7 @@
 package_virtualbox-host-dkms() {
 pkgdesc='VirtualBox Host kernel modules sources'
 depends=('dkms' 'gcc' 'make')
-replaces=('virtualbox-source' 'virtualbox-host-source')
+replaces=('virtualbox-source' 'virtualbox-host-source' 
'virtualbox-host-modules')
 conflicts=('virtualbox-source' 'virtualbox-host-source')
 optdepends=('linux-headers'
 'linux-lts-headers')
@@ -264,7 +264,7 @@
 package_virtualbox-guest-dkms() {
 pkgdesc='VirtualBox Guest kernel modules sources'
 depends=('dkms' 'gcc' 'make')
-replaces=('virtualbox-archlinux-source' 'virtualbox-guest-source')
+replaces=('virtualbox-archlinux-source' 'virtualbox-guest-source' 
'virtualbox-guest-modules')
 conflicts=('virtualbox-archlinux-source' 'virtualbox-guest-source')
 optdepends=('linux-headers'
 'linux-lts-headers')


[arch-commits] Commit in diff-so-fancy/repos/community-any (6 files)

2016-02-26 Thread Felix Yan
Date: Saturday, February 27, 2016 @ 02:59:37
  Author: fyan
Revision: 163542

archrelease: copy trunk to community-any

Added:
  diff-so-fancy/repos/community-any/PKGBUILD
(from rev 163541, diff-so-fancy/trunk/PKGBUILD)
  diff-so-fancy/repos/community-any/diff-so-fancy.install
(from rev 163541, diff-so-fancy/trunk/diff-so-fancy.install)
  diff-so-fancy/repos/community-any/system-diff_highlight.patch
(from rev 163541, diff-so-fancy/trunk/system-diff_highlight.patch)
Deleted:
  diff-so-fancy/repos/community-any/PKGBUILD
  diff-so-fancy/repos/community-any/diff-so-fancy.install
  diff-so-fancy/repos/community-any/system-diff_highlight.patch

-+
 PKGBUILD|   86 +-
 diff-so-fancy.install   |6 +-
 system-diff_highlight.patch |   44 ++---
 3 files changed, 68 insertions(+), 68 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-02-27 01:59:19 UTC (rev 163541)
+++ PKGBUILD2016-02-27 01:59:37 UTC (rev 163542)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: icasdri 
-
-pkgname=diff-so-fancy
-pkgver=0.5.0
-pkgrel=1
-pkgdesc="Good-looking diffs with diff-highlight and more"
-arch=('any')
-url="https://github.com/so-fancy/diff-so-fancy;
-license=('MIT')
-install="${pkgname}.install"
-depends=('git')
-checkdepends=('bash-bats')
-source=("git+https://github.com/so-fancy/diff-so-fancy.git#tag=v$pkgver;
-"git+https://github.com/ztombol/bats-core.git;
-"git+https://github.com/ztombol/bats-assert.git;
-system-diff_highlight.patch)
-sha384sums=('SKIP'
-'SKIP'
-'SKIP'
-
'9ec860b54a91f4852d9426e7e471de918132c29e846772cc3d65b33ff5be78b95875ba994f96882e0ce9f5c6dccac998')
-
-prepare() {
-  cd "${srcdir}/${pkgname}"
-  git config submodule."test/test_helper/bats-core".url "${srcdir}"/bats-core
-  git config submodule."test/test_helper/bats-assert".url 
"${srcdir}"/bats-assert
-  git submodule update --init
-
-  patch -p1 -i ../system-diff_highlight.patch
-  rm -r third_party
-  rm test/diff-highlight.bats
-}
-
-check() {
-  cd "${srcdir}/${pkgname}"
-  bats test/*.bats
-}
-
-package() {
-  cd "${srcdir}/${pkgname}"
-  install -Dm755 'diff-so-fancy' "${pkgdir}/usr/bin/diff-so-fancy"
-}

Copied: diff-so-fancy/repos/community-any/PKGBUILD (from rev 163541, 
diff-so-fancy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-02-27 01:59:37 UTC (rev 163542)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: icasdri 
+
+pkgname=diff-so-fancy
+pkgver=0.5.1
+pkgrel=1
+pkgdesc="Good-looking diffs with diff-highlight and more"
+arch=('any')
+url="https://github.com/so-fancy/diff-so-fancy;
+license=('MIT')
+install="${pkgname}.install"
+depends=('git')
+checkdepends=('bash-bats')
+source=("git+https://github.com/so-fancy/diff-so-fancy.git#tag=v$pkgver;
+"git+https://github.com/ztombol/bats-core.git;
+"git+https://github.com/ztombol/bats-assert.git;
+system-diff_highlight.patch)
+sha384sums=('SKIP'
+'SKIP'
+'SKIP'
+
'9ec860b54a91f4852d9426e7e471de918132c29e846772cc3d65b33ff5be78b95875ba994f96882e0ce9f5c6dccac998')
+
+prepare() {
+  cd "${srcdir}/${pkgname}"
+  git config submodule."test/test_helper/bats-core".url "${srcdir}"/bats-core
+  git config submodule."test/test_helper/bats-assert".url 
"${srcdir}"/bats-assert
+  git submodule update --init
+
+  patch -p1 -i ../system-diff_highlight.patch
+  rm -r third_party
+  rm test/diff-highlight.bats
+}
+
+check() {
+  cd "${srcdir}/${pkgname}"
+  bats test/*.bats
+}
+
+package() {
+  cd "${srcdir}/${pkgname}"
+  install -Dm755 'diff-so-fancy' "${pkgdir}/usr/bin/diff-so-fancy"
+}

Deleted: diff-so-fancy.install
===
--- diff-so-fancy.install   2016-02-27 01:59:19 UTC (rev 163541)
+++ diff-so-fancy.install   2016-02-27 01:59:37 UTC (rev 163542)
@@ -1,3 +0,0 @@
-post_install() {
-echo "Refer to https://github.com/so-fancy/diff-so-fancy#usage for usage"
-}

Copied: diff-so-fancy/repos/community-any/diff-so-fancy.install (from rev 
163541, diff-so-fancy/trunk/diff-so-fancy.install)
===
--- diff-so-fancy.install   (rev 0)
+++ diff-so-fancy.install   2016-02-27 01:59:37 UTC (rev 163542)
@@ -0,0 +1,3 @@
+post_install() {
+echo "Refer to https://github.com/so-fancy/diff-so-fancy#usage for usage"
+}

Deleted: system-diff_highlight.patch
===
--- system-diff_highlight.patch 2016-02-27 01:59:19 UTC (rev 163541)
+++ system-diff_highlight.patch 2016-02-27 01:59:37 UTC (rev 

[arch-commits] Commit in diff-so-fancy/trunk (PKGBUILD)

2016-02-26 Thread Felix Yan
Date: Saturday, February 27, 2016 @ 02:59:19
  Author: fyan
Revision: 163541

upgpkg: diff-so-fancy 0.5.1-1

Modified:
  diff-so-fancy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-27 01:51:44 UTC (rev 163540)
+++ PKGBUILD2016-02-27 01:59:19 UTC (rev 163541)
@@ -3,7 +3,7 @@
 # Contributor: icasdri 
 
 pkgname=diff-so-fancy
-pkgver=0.5.0
+pkgver=0.5.1
 pkgrel=1
 pkgdesc="Good-looking diffs with diff-highlight and more"
 arch=('any')


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

2016-02-26 Thread Sébastien Luttringer
Date: Saturday, February 27, 2016 @ 02:51:44
  Author: seblu
Revision: 163540

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

Added:
  znc/repos/community-i686/PKGBUILD
(from rev 163539, znc/trunk/PKGBUILD)
  znc/repos/community-i686/znc.install
(from rev 163539, znc/trunk/znc.install)
  znc/repos/community-i686/znc.sysusers
(from rev 163539, znc/trunk/znc.sysusers)
  znc/repos/community-x86_64/PKGBUILD
(from rev 163539, znc/trunk/PKGBUILD)
  znc/repos/community-x86_64/znc.install
(from rev 163539, znc/trunk/znc.install)
  znc/repos/community-x86_64/znc.sysusers
(from rev 163539, znc/trunk/znc.sysusers)
Deleted:
  znc/repos/community-i686/PKGBUILD
  znc/repos/community-i686/znc.install
  znc/repos/community-i686/znc.sysusers
  znc/repos/community-x86_64/PKGBUILD
  znc/repos/community-x86_64/znc.install
  znc/repos/community-x86_64/znc.sysusers

---+
 /PKGBUILD |   84 
 /znc.install  |   40 +++
 /znc.sysusers |2 
 community-i686/PKGBUILD   |   42 
 community-i686/znc.install|   20 -
 community-i686/znc.sysusers   |1 
 community-x86_64/PKGBUILD |   42 
 community-x86_64/znc.install  |   20 -
 community-x86_64/znc.sysusers |1 
 9 files changed, 126 insertions(+), 126 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-02-27 01:50:43 UTC (rev 163539)
+++ community-i686/PKGBUILD 2016-02-27 01:51:44 UTC (rev 163540)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer
-# Contributor: Kaiting Chen 
-# Contributor: mickael9 
-
-pkgname=znc
-pkgver=1.6.2
-pkgrel=2
-pkgdesc='An IRC bouncer with modules & scripts support'
-url='http://en.znc.in/wiki/index.php/ZNC'
-license=('GPL2')
-arch=('i686' 'x86_64')
-depends=('libsasl' 'icu')
-makedepends=('tcl' 'python' 'perl')
-optdepends=('tcl: modtcl module'
-'python: modpython module'
-'perl: modperl module'
-'cyrus-sasl: saslauth module')
-install=$pkgname.install
-source=("http://znc.in/releases/$pkgname-$pkgver.tar.gz;
-"$pkgname.sysusers")
-md5sums=('89f6696ed31f7432ece343fd19d0'
- '919705dccc42d3bff1549d3b3680e55a')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr \
---enable-cyrus \
---enable-python \
---enable-perl \
---enable-tcl \
---with-systemdsystemunitdir=/usr/lib/systemd/system
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-  install -Dm644 "$srcdir/$pkgname.sysusers" 
"$pkgdir/usr/lib/sysusers.d/$pkgname.conf"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: znc/repos/community-i686/PKGBUILD (from rev 163539, znc/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-02-27 01:51:44 UTC (rev 163540)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+# Contributor: Kaiting Chen 
+# Contributor: mickael9 
+
+pkgname=znc
+pkgver=1.6.3
+pkgrel=1
+pkgdesc='An IRC bouncer with modules & scripts support'
+url='http://en.znc.in/wiki/index.php/ZNC'
+license=('GPL2')
+arch=('i686' 'x86_64')
+depends=('libsasl' 'icu')
+makedepends=('tcl' 'python' 'perl')
+optdepends=('tcl: modtcl module'
+'python: modpython module'
+'perl: modperl module'
+'cyrus-sasl: saslauth module')
+install=$pkgname.install
+source=("http://znc.in/releases/$pkgname-$pkgver.tar.gz;
+"$pkgname.sysusers")
+md5sums=('0dad0307e2faea26b9e304e308f7ec63'
+ '919705dccc42d3bff1549d3b3680e55a')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr \
+--enable-cyrus \
+--enable-python \
+--enable-perl \
+--enable-tcl \
+--with-systemdsystemunitdir=/usr/lib/systemd/system
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm644 "$srcdir/$pkgname.sysusers" 
"$pkgdir/usr/lib/sysusers.d/$pkgname.conf"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/znc.install
===
--- community-i686/znc.install  2016-02-27 01:50:43 UTC (rev 163539)
+++ community-i686/znc.install  2016-02-27 01:51:44 UTC (rev 163540)
@@ -1,20 +0,0 @@
-#/bin/sh
-
-# arg 1:  the new package version
-post_install() {
-  systemd-sysusers znc.conf
-  [[ -d /var/lib/znc ]] || install -dm 750 -o znc -g znc /var/lib/znc
-  echo "==> Use 'znc --makeconf' as user znc to generate your first config"
-}
-
-# arg 1:  the new package version
-# arg 2:  the old package version
-post_upgrade() {
-  if (( "$(vercmp $2 1.0-4)" < 0 )); then
-[[ -d /var/lib/znc ]] || install -dm 750 -o znc -g znc /var/lib/znc

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

2016-02-26 Thread Sébastien Luttringer
Date: Saturday, February 27, 2016 @ 02:50:43
  Author: seblu
Revision: 163539

upgpkg: znc 1.6.3-1

Modified:
  znc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-27 01:33:45 UTC (rev 163538)
+++ PKGBUILD2016-02-27 01:50:43 UTC (rev 163539)
@@ -4,8 +4,8 @@
 # Contributor: mickael9 
 
 pkgname=znc
-pkgver=1.6.2
-pkgrel=2
+pkgver=1.6.3
+pkgrel=1
 pkgdesc='An IRC bouncer with modules & scripts support'
 url='http://en.znc.in/wiki/index.php/ZNC'
 license=('GPL2')
@@ -19,7 +19,7 @@
 install=$pkgname.install
 source=("http://znc.in/releases/$pkgname-$pkgver.tar.gz;
 "$pkgname.sysusers")
-md5sums=('89f6696ed31f7432ece343fd19d0'
+md5sums=('0dad0307e2faea26b9e304e308f7ec63'
  '919705dccc42d3bff1549d3b3680e55a')
 
 build() {


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

2016-02-26 Thread Sven-Hendrik Haase
Date: Saturday, February 27, 2016 @ 02:33:42
  Author: svenstaro
Revision: 163537

upgpkg: ansible 2.0.1.0-1

upstream release 2.0.1.0

Modified:
  ansible/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-27 01:32:09 UTC (rev 163536)
+++ PKGBUILD2016-02-27 01:33:42 UTC (rev 163537)
@@ -7,8 +7,8 @@
 # Contributor: atweiden 
 
 pkgname=ansible
-pkgver=2.0.0.2
-pkgrel=2
+pkgver=2.0.1.0
+pkgrel=1
 pkgdesc='Radically simple IT automation platform'
 arch=('any')
 url='http://www.ansible.com'
@@ -18,7 +18,7 @@
 makedepends=('asciidoc' 'fakeroot')
 backup=('etc/ansible/ansible.cfg')
 source=(http://releases.ansible.com/ansible/ansible-${pkgver}.tar.gz)
-md5sums=('816d0c49e084383e47a725c761a0e413')
+md5sums=('84c576762bc1a8a345fe12ac338bd2d8')
 
 build() {
   cd ${pkgname}-${pkgver}


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

2016-02-26 Thread Sven-Hendrik Haase
Date: Saturday, February 27, 2016 @ 02:33:45
  Author: svenstaro
Revision: 163538

archrelease: copy trunk to community-any

Added:
  ansible/repos/community-any/PKGBUILD
(from rev 163537, ansible/trunk/PKGBUILD)
Deleted:
  ansible/repos/community-any/PKGBUILD

--+
 PKGBUILD |   80 +
 1 file changed, 39 insertions(+), 41 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-02-27 01:33:42 UTC (rev 163537)
+++ PKGBUILD2016-02-27 01:33:45 UTC (rev 163538)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Daniel Wallace 
-# Contributor: Chris 
-# Contributor: m0ikz 
-# Contributor: atweiden 
-
-pkgname=ansible
-pkgver=2.0.0.2
-pkgrel=2
-pkgdesc='Radically simple IT automation platform'
-arch=('any')
-url='http://www.ansible.com'
-license=('GPL3')
-depends=('python2' 'python2-yaml' 'python2-paramiko' 'python2-jinja')
-optdepends=('python2-passlib: crypt values for vars_prompt')
-makedepends=('asciidoc' 'fakeroot')
-backup=('etc/ansible/ansible.cfg')
-source=(http://releases.ansible.com/ansible/ansible-${pkgver}.tar.gz)
-md5sums=('816d0c49e084383e47a725c761a0e413')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  python2 setup.py build
-
-  # make docs
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  python2 setup.py install -O1 --root="${pkgdir}"
-  install -Dm644 COPYING "${pkgdir}"/usr/share/doc/ansible/COPYING
-
-  install -d "${pkgdir}"/usr/share/ansible/doc
-  cp -dpr --no-preserve=ownership ./examples "${pkgdir}"/usr/share/ansible/doc/
-  install -Dm644 examples/ansible.cfg "${pkgdir}"/etc/ansible/ansible.cfg
-
-  install -d "${pkgdir}"/usr/share/man/man1
-  cp -dpr --no-preserve=ownership docs/man/man1/*.1 
"${pkgdir}"/usr/share/man/man1
-}

Copied: ansible/repos/community-any/PKGBUILD (from rev 163537, 
ansible/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-02-27 01:33:45 UTC (rev 163538)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Daniel Wallace 
+# Contributor: Chris 
+# Contributor: m0ikz 
+# Contributor: atweiden 
+
+pkgname=ansible
+pkgver=2.0.1.0
+pkgrel=1
+pkgdesc='Radically simple IT automation platform'
+arch=('any')
+url='http://www.ansible.com'
+license=('GPL3')
+depends=('python2' 'python2-yaml' 'python2-paramiko' 'python2-jinja')
+optdepends=('python2-passlib: crypt values for vars_prompt')
+makedepends=('asciidoc' 'fakeroot')
+backup=('etc/ansible/ansible.cfg')
+source=(http://releases.ansible.com/ansible/ansible-${pkgver}.tar.gz)
+md5sums=('84c576762bc1a8a345fe12ac338bd2d8')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  python2 setup.py build
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  python2 setup.py install -O1 --root="${pkgdir}"
+  install -Dm644 COPYING "${pkgdir}"/usr/share/doc/ansible/COPYING
+
+  install -d "${pkgdir}"/usr/share/ansible/doc
+  cp -dpr --no-preserve=ownership ./examples "${pkgdir}"/usr/share/ansible/doc/
+  install -Dm644 examples/ansible.cfg "${pkgdir}"/etc/ansible/ansible.cfg
+
+  install -d "${pkgdir}"/usr/share/man/man1
+  cp -dpr --no-preserve=ownership docs/man/man1/*.1 
"${pkgdir}"/usr/share/man/man1
+}


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

2016-02-26 Thread Sven-Hendrik Haase
Date: Saturday, February 27, 2016 @ 02:32:09
  Author: svenstaro
Revision: 163536

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-02-27 01:32:00 UTC (rev 163535)
+++ PKGBUILD2016-02-27 01:32:09 UTC (rev 163536)
@@ -1,44 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-
-pkgbase=python-neovim
-pkgname=('python-neovim' 'python2-neovim')
-_realname=python-client
-pkgver=0.1.0
-pkgrel=1
-pkgdesc='Python client for Neovim'
-url='https://github.com/neovim/python-client'
-arch=('any')
-license=('Apache')
-makedepends=('python-setuptools' 'python2-setuptools')
-source=("https://github.com/neovim/python-client/archive/${pkgver}.tar.gz;)
-sha256sums=('2a9a1f07bd6d5617b1b85ee1772feed9aabd1f7a6ddb24664a48896c7db6121a')
-
-prepare() {
-  cp -a ${_realname}-${pkgver}{,-python2}
-}
-
-build() {
-  cd "${srcdir}/${_realname}-${pkgver}"
-  python setup.py build
-
-  cd "${srcdir}/${_realname}-${pkgver}-python2"
-  python2 setup.py build
-}
-
-package_python-neovim() {
-  pkgdesc='Python 3 client for neovim'
-  depends=('neovim' 'python' 'python-msgpack' 'python-greenlet' 'python-click')
-
-  cd "${srcdir}/${_realname}-${pkgver}"
-  python setup.py install --optimize=1 --prefix=/usr --root="${pkgdir}" 
--skip-build
-}
-
-package_python2-neovim() {
-  pkgdesc='Python 2 client for neovim'
-  depends=('neovim' 'python2' 'python2-msgpack' 'python2-greenlet' 
'python2-click' 'python2-trollius')
-
-  cd "${srcdir}/${_realname}-${pkgver}-python2"
-  python2 setup.py install --optimize=1 --prefix=/usr --root="${pkgdir}" 
--skip-build
-}
-
-# vim:set sw=2 sts=2 et:

Copied: python-neovim/repos/community-any/PKGBUILD (from rev 163535, 
python-neovim/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-02-27 01:32:09 UTC (rev 163536)
@@ -0,0 +1,44 @@
+# Maintainer: Sven-Hendrik Haase 
+
+pkgbase=python-neovim
+pkgname=('python-neovim' 'python2-neovim')
+_realname=python-client
+pkgver=0.1.2
+pkgrel=1
+pkgdesc='Python client for Neovim'
+url='https://github.com/neovim/python-client'
+arch=('any')
+license=('Apache')
+makedepends=('python-setuptools' 'python2-setuptools')
+source=("https://github.com/neovim/python-client/archive/${pkgver}.tar.gz;)
+sha256sums=('2d85a493194b5dfbc08cad1fd2e252f7ad35b65eb826dd61f67f4fecfc8476b2')
+
+prepare() {
+  cp -a ${_realname}-${pkgver}{,-python2}
+}
+
+build() {
+  cd "${srcdir}/${_realname}-${pkgver}"
+  python setup.py build
+
+  cd "${srcdir}/${_realname}-${pkgver}-python2"
+  python2 setup.py build
+}
+
+package_python-neovim() {
+  pkgdesc='Python 3 client for neovim'
+  depends=('neovim' 'python' 'python-msgpack' 'python-greenlet' 'python-click')
+
+  cd "${srcdir}/${_realname}-${pkgver}"
+  python setup.py install --optimize=1 --prefix=/usr --root="${pkgdir}" 
--skip-build
+}
+
+package_python2-neovim() {
+  pkgdesc='Python 2 client for neovim'
+  depends=('neovim' 'python2' 'python2-msgpack' 'python2-greenlet' 
'python2-click' 'python2-trollius')
+
+  cd "${srcdir}/${_realname}-${pkgver}-python2"
+  python2 setup.py install --optimize=1 --prefix=/usr --root="${pkgdir}" 
--skip-build
+}
+
+# vim:set sw=2 sts=2 et:


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

2016-02-26 Thread Sven-Hendrik Haase
Date: Saturday, February 27, 2016 @ 02:32:00
  Author: svenstaro
Revision: 163535

upgpkg: python-neovim 0.1.2-1

upstream release 0.1.2

Modified:
  python-neovim/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-27 01:31:19 UTC (rev 163534)
+++ PKGBUILD2016-02-27 01:32:00 UTC (rev 163535)
@@ -3,7 +3,7 @@
 pkgbase=python-neovim
 pkgname=('python-neovim' 'python2-neovim')
 _realname=python-client
-pkgver=0.1.0
+pkgver=0.1.2
 pkgrel=1
 pkgdesc='Python client for Neovim'
 url='https://github.com/neovim/python-client'
@@ -11,7 +11,7 @@
 license=('Apache')
 makedepends=('python-setuptools' 'python2-setuptools')
 source=("https://github.com/neovim/python-client/archive/${pkgver}.tar.gz;)
-sha256sums=('2a9a1f07bd6d5617b1b85ee1772feed9aabd1f7a6ddb24664a48896c7db6121a')
+sha256sums=('2d85a493194b5dfbc08cad1fd2e252f7ad35b65eb826dd61f67f4fecfc8476b2')
 
 prepare() {
   cp -a ${_realname}-${pkgver}{,-python2}


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

2016-02-26 Thread Balló György
Date: Saturday, February 27, 2016 @ 02:31:13
  Author: bgyorgy
Revision: 163533

upgpkg: zim 0.65-2

Fix zeitgeist plugin dependency (the python bindings can be found in the 
zeitgeist package)

Modified:
  zim/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-27 01:07:16 UTC (rev 163532)
+++ PKGBUILD2016-02-27 01:31:13 UTC (rev 163533)
@@ -5,7 +5,7 @@
 
 pkgname=zim
 pkgver=0.65
-pkgrel=1
+pkgrel=2
 pkgdesc="A WYSIWYG text editor that aims at bringing the concept of a wiki to 
the desktop."
 arch=(any)
 license=('GPL' 'PerlArtistic')
@@ -20,7 +20,7 @@
 'python2-gtkspell: Spell Checker plugin'
 'r: Insert GNU R Plot plugin'
 'scrot: Insert Screenshot plugin'
-'libzeitgeist: Log events with Zeitgeist plugin'
+'zeitgeist: Log events with Zeitgeist plugin'
 'lilypond: Insert Score plugin'
 'texlive-bin: Insert Equation plugin')
 install=zim.install


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

2016-02-26 Thread Balló György
Date: Saturday, February 27, 2016 @ 02:31:19
  Author: bgyorgy
Revision: 163534

archrelease: copy trunk to community-any

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

-+
 PKGBUILD|   90 +-
 zim.install |   42 +--
 2 files changed, 66 insertions(+), 66 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-02-27 01:31:13 UTC (rev 163533)
+++ PKGBUILD2016-02-27 01:31:19 UTC (rev 163534)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Florian Pritz 
-# Contributor: Kevin Piche 
-# Contributor: Daniel J Griffiths 
-
-pkgname=zim
-pkgver=0.65
-pkgrel=1
-pkgdesc="A WYSIWYG text editor that aims at bringing the concept of a wiki to 
the desktop."
-arch=(any)
-license=('GPL' 'PerlArtistic')
-url="http://zim-wiki.org/;
-depends=('pygtk' 'ttf-dejavu')
-optdepends=('bzr: Version Control plugin'
-'git: Version Control plugin'
-'mercurial: Version Control plugin'
-'gnuplot: Insert Gnuplot plugin'
-'ditaa: Insert Ditaa plugin'
-'graphviz: Insert Diagram & Link Map plugins'
-'python2-gtkspell: Spell Checker plugin'
-'r: Insert GNU R Plot plugin'
-'scrot: Insert Screenshot plugin'
-'libzeitgeist: Log events with Zeitgeist plugin'
-'lilypond: Insert Score plugin'
-'texlive-bin: Insert Equation plugin')
-install=zim.install
-source=(http://www.zim-wiki.org/downloads/${pkgname}-${pkgver}.tar.gz)
-md5sums=('63ab7a2070e6d1d3fb32700a851d7b8b')
-
-build() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-
-# python2 fixes
-for file in zim/inc/xdot.py zim/_version.py; do
-sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_' $file
-done
-
-   sed -i 's|\t\tinstall_class.run(self)|&\n\t\treturn None|' setup.py
-}
-
-package() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-
-   python2 setup.py install --root=${pkgdir} --optimize=1
-}

Copied: zim/repos/community-any/PKGBUILD (from rev 163533, zim/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-02-27 01:31:19 UTC (rev 163534)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Florian Pritz 
+# Contributor: Kevin Piche 
+# Contributor: Daniel J Griffiths 
+
+pkgname=zim
+pkgver=0.65
+pkgrel=2
+pkgdesc="A WYSIWYG text editor that aims at bringing the concept of a wiki to 
the desktop."
+arch=(any)
+license=('GPL' 'PerlArtistic')
+url="http://zim-wiki.org/;
+depends=('pygtk' 'ttf-dejavu')
+optdepends=('bzr: Version Control plugin'
+'git: Version Control plugin'
+'mercurial: Version Control plugin'
+'gnuplot: Insert Gnuplot plugin'
+'ditaa: Insert Ditaa plugin'
+'graphviz: Insert Diagram & Link Map plugins'
+'python2-gtkspell: Spell Checker plugin'
+'r: Insert GNU R Plot plugin'
+'scrot: Insert Screenshot plugin'
+'zeitgeist: Log events with Zeitgeist plugin'
+'lilypond: Insert Score plugin'
+'texlive-bin: Insert Equation plugin')
+install=zim.install
+source=(http://www.zim-wiki.org/downloads/${pkgname}-${pkgver}.tar.gz)
+md5sums=('63ab7a2070e6d1d3fb32700a851d7b8b')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+
+# python2 fixes
+for file in zim/inc/xdot.py zim/_version.py; do
+sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_' $file
+done
+
+   sed -i 's|\t\tinstall_class.run(self)|&\n\t\treturn None|' setup.py
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+
+   python2 setup.py install --root=${pkgdir} --optimize=1
+}

Deleted: zim.install
===
--- zim.install 2016-02-27 01:31:13 UTC (rev 163533)
+++ zim.install 2016-02-27 01:31:19 UTC (rev 163534)
@@ -1,21 +0,0 @@
-updatedesktopdtb() {
-  [ -x /usr/bin/update-desktop-database ] \
-&& update-desktop-database -q
-  [ -x /usr/bin/update-mime-database ] \
-&& update-mime-database usr/share/mime > /dev/null 2>&1
-}
-
-post_install() {
-  updatedesktopdtb
-   echo
-  echo " >>> zim package need a browser to work properly"
-  echo " >>> you can choose a browser like firefox, chromium, konqueror, ..."
-}
-
-post_upgrade() {
-  updatedesktopdtb
-}
-
-post_remove() {
-  updatedesktopdtb
-}

Copied: zim/repos/community-any/zim.install (from rev 163533, 
zim/trunk/zim.install)
===
--- 

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

2016-02-26 Thread Sébastien Luttringer
Date: Saturday, February 27, 2016 @ 02:11:36
  Author: seblu
Revision: 260261

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

Added:
  btrfs-progs/repos/testing-i686/
  btrfs-progs/repos/testing-i686/PKGBUILD
(from rev 260260, btrfs-progs/trunk/PKGBUILD)
  btrfs-progs/repos/testing-i686/btrfs-progs.install
(from rev 260260, btrfs-progs/trunk/btrfs-progs.install)
  btrfs-progs/repos/testing-i686/btrfs-scrub@.service
(from rev 260260, btrfs-progs/trunk/btrfs-scrub@.service)
  btrfs-progs/repos/testing-i686/btrfs-scrub@.timer
(from rev 260260, btrfs-progs/trunk/btrfs-scrub@.timer)
  btrfs-progs/repos/testing-i686/initcpio-hook-btrfs
(from rev 260260, btrfs-progs/trunk/initcpio-hook-btrfs)
  btrfs-progs/repos/testing-i686/initcpio-install-btrfs
(from rev 260260, btrfs-progs/trunk/initcpio-install-btrfs)
  btrfs-progs/repos/testing-x86_64/
  btrfs-progs/repos/testing-x86_64/PKGBUILD
(from rev 260260, btrfs-progs/trunk/PKGBUILD)
  btrfs-progs/repos/testing-x86_64/btrfs-progs.install
(from rev 260260, btrfs-progs/trunk/btrfs-progs.install)
  btrfs-progs/repos/testing-x86_64/btrfs-scrub@.service
(from rev 260260, btrfs-progs/trunk/btrfs-scrub@.service)
  btrfs-progs/repos/testing-x86_64/btrfs-scrub@.timer
(from rev 260260, btrfs-progs/trunk/btrfs-scrub@.timer)
  btrfs-progs/repos/testing-x86_64/initcpio-hook-btrfs
(from rev 260260, btrfs-progs/trunk/initcpio-hook-btrfs)
  btrfs-progs/repos/testing-x86_64/initcpio-install-btrfs
(from rev 260260, btrfs-progs/trunk/initcpio-install-btrfs)

---+
 testing-i686/PKGBUILD |   60 
 testing-i686/btrfs-progs.install  |   15 
 testing-i686/btrfs-scrub@.service |7 +++
 testing-i686/btrfs-scrub@.timer   |   10 +
 testing-i686/initcpio-hook-btrfs  |7 +++
 testing-i686/initcpio-install-btrfs   |   17 +
 testing-x86_64/PKGBUILD   |   60 
 testing-x86_64/btrfs-progs.install|   15 
 testing-x86_64/btrfs-scrub@.service   |7 +++
 testing-x86_64/btrfs-scrub@.timer |   10 +
 testing-x86_64/initcpio-hook-btrfs|7 +++
 testing-x86_64/initcpio-install-btrfs |   17 +
 12 files changed, 232 insertions(+)

Copied: btrfs-progs/repos/testing-i686/PKGBUILD (from rev 260260, 
btrfs-progs/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-02-27 01:11:36 UTC (rev 260261)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Sébastien "Seblu" Luttringer 
+# Contributor: Tom Gundersen 
+# Contributor: Tobias Powalowski 
+
+pkgname=btrfs-progs
+pkgver=4.4.1
+pkgrel=1
+pkgdesc='Btrfs filesystem utilities'
+arch=('i686' 'x86_64')
+depends=('glibc' 'libutil-linux' 'e2fsprogs' 'lzo' 'zlib')
+makedepends=('git' 'asciidoc' 'xmlto')
+url='http://btrfs.wiki.kernel.org/'
+replaces=('btrfs-progs-unstable')
+conflicts=('btrfs-progs-unstable')
+provides=('btrfs-progs-unstable')
+license=('GPL2')
+source=("git://git.kernel.org/pub/scm/linux/kernel/git/kdave/$pkgname.git#tag=v$pkgver"
+'initcpio-install-btrfs'
+'initcpio-hook-btrfs'
+'btrfs-scrub@.service'
+'btrfs-scrub@.timer')
+install=btrfs-progs.install
+options=(!staticlibs)
+md5sums=('SKIP'
+ '7241ba3a4286d08da0d50b7176941112'
+ 'b09688a915a0ec8f40e2f5aacbabc9ad'
+ '794b867e09451284c545bae112aa0cfd'
+ 'a290e0ab88b7b4675cd20f5a2befc8cb')
+
+build() {
+  cd $pkgname
+  ./autogen.sh
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd $pkgname
+ ./btrfs filesystem show
+}
+
+package() {
+  cd $pkgname
+  make prefix="$pkgdir"/usr install
+
+  # install bash completion (FS#44618)
+  install -Dm644 btrfs-completion 
"$pkgdir/usr/share/bash-completion/completions/btrfs"
+
+  # install mkinitcpio hooks
+  cd "$srcdir"
+  install -Dm644 initcpio-install-btrfs 
"$pkgdir/usr/lib/initcpio/install/btrfs"
+  install -Dm644 initcpio-hook-btrfs "$pkgdir/usr/lib/initcpio/hooks/btrfs"
+
+  # install scrub service/timer
+  install -Dm644 btrfs-scrub@.service 
"$pkgdir/usr/lib/systemd/system/btrfs-scrub@.service"
+  install -Dm644 btrfs-scrub@.timer 
"$pkgdir/usr/lib/systemd/system/btrfs-scrub@.timer"
+}
+
+# vim:set ts=2 sw=2 ft=sh et:

Copied: btrfs-progs/repos/testing-i686/btrfs-progs.install (from rev 260260, 
btrfs-progs/trunk/btrfs-progs.install)
===
--- testing-i686/btrfs-progs.install(rev 0)
+++ testing-i686/btrfs-progs.install2016-02-27 01:11:36 UTC (rev 260261)
@@ -0,0 +1,15 @@
+#!/bin/sh
+
+## arg 1:  the new package version
+## arg 2:  the old package version
+post_upgrade() {
+  if (( "$(vercmp "$2" 0.19.20121005)" < 0 )); then
+echo 'btrfs multi-device 

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

2016-02-26 Thread Sébastien Luttringer
Date: Saturday, February 27, 2016 @ 02:10:08
  Author: seblu
Revision: 260260

upgpkg: btrfs-progs 4.4.1-1

Modified:
  btrfs-progs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-26 20:02:05 UTC (rev 260259)
+++ PKGBUILD2016-02-27 01:10:08 UTC (rev 260260)
@@ -4,7 +4,7 @@
 # Contributor: Tobias Powalowski 
 
 pkgname=btrfs-progs
-pkgver=4.4
+pkgver=4.4.1
 pkgrel=1
 pkgdesc='Btrfs filesystem utilities'
 arch=('i686' 'x86_64')


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

2016-02-26 Thread Balló György
Date: Saturday, February 27, 2016 @ 02:07:07
  Author: bgyorgy
Revision: 163531

upgpkg: midori-gtk2 0.5.11-3

Remove unused dependencies

Modified:
  midori-gtk2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-27 01:04:57 UTC (rev 163530)
+++ PKGBUILD2016-02-27 01:07:07 UTC (rev 163531)
@@ -8,7 +8,7 @@
 
 pkgname=midori-gtk2
 pkgver=0.5.11
-pkgrel=2
+pkgrel=3
 pkgdesc='Lightweight web browser (GTK2)'
 arch=('x86_64' 'i686')
 url='http://www.midori-browser.org/'
@@ -16,9 +16,12 @@
 install='midori.install'
 conflicts=('midori')
 provides=('midori')
-depends=('webkitgtk2' 'libnotify' 'libxss' 'hicolor-icon-theme' 
'desktop-file-utils' 'libunique' 'libzeitgeist' 'zeitgeist' 'gcr')
-makedepends=('bzr' 'python2' 'intltool' 'vala' 'librsvg' 'cmake' 'ninja' 
'libzeitgeist' 'gcr')
-optdepends=('aria2: download utility')
+depends=('webkitgtk2' 'libxss' 'hicolor-icon-theme' 'desktop-file-utils' 'gcr' 
'zeitgeist')
+makedepends=('bzr' 'intltool' 'vala' 'cmake' 'ninja')
+optdepends=('gst-plugins-base: HTML5 OGG videos support'
+'gst-plugins-good: HTML5 H264 and WebM videos support'
+'gst-libav: HTML5 H264 videos support'
+'aria2: download utility')
 options=('!emptydirs')
 
source=("http://www.midori-browser.org/downloads/${pkgname/-gtk2}_${pkgver}_all_.tar.bz2;)
 sha256sums=('96191a96be71144ae848a409fae5a1d6d52a00e583f33122081f47ead9c49c3d')


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

2016-02-26 Thread Balló György
Date: Saturday, February 27, 2016 @ 02:07:16
  Author: bgyorgy
Revision: 163532

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

Added:
  midori-gtk2/repos/community-i686/PKGBUILD
(from rev 163531, midori-gtk2/trunk/PKGBUILD)
  midori-gtk2/repos/community-i686/midori.install
(from rev 163531, midori-gtk2/trunk/midori.install)
  midori-gtk2/repos/community-x86_64/PKGBUILD
(from rev 163531, midori-gtk2/trunk/PKGBUILD)
  midori-gtk2/repos/community-x86_64/midori.install
(from rev 163531, midori-gtk2/trunk/midori.install)
Deleted:
  midori-gtk2/repos/community-i686/PKGBUILD
  midori-gtk2/repos/community-i686/midori.install
  midori-gtk2/repos/community-x86_64/PKGBUILD
  midori-gtk2/repos/community-x86_64/midori.install

-+
 /PKGBUILD   |   86 ++
 /midori.install |   28 
 community-i686/PKGBUILD |   40 -
 community-i686/midori.install   |   14 --
 community-x86_64/PKGBUILD   |   40 -
 community-x86_64/midori.install |   14 --
 6 files changed, 114 insertions(+), 108 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-02-27 01:07:07 UTC (rev 163531)
+++ community-i686/PKGBUILD 2016-02-27 01:07:16 UTC (rev 163532)
@@ -1,40 +0,0 @@
-# $Id: PKGBUILD 139371 2015-09-06 21:13:29Z arodseth $
-# Maintainer: Alexander Rødseth 
-# Contributor: Andreas Radke 
-# Contributor: rabyte 
-# Contributor: Johannes Krampf 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Andrew Gregory 
-
-pkgname=midori-gtk2
-pkgver=0.5.11
-pkgrel=2
-pkgdesc='Lightweight web browser (GTK2)'
-arch=('x86_64' 'i686')
-url='http://www.midori-browser.org/'
-license=('LGPL2.1')
-install='midori.install'
-conflicts=('midori')
-provides=('midori')
-depends=('webkitgtk2' 'libnotify' 'libxss' 'hicolor-icon-theme' 
'desktop-file-utils' 'libunique' 'libzeitgeist' 'zeitgeist' 'gcr')
-makedepends=('bzr' 'python2' 'intltool' 'vala' 'librsvg' 'cmake' 'ninja' 
'libzeitgeist' 'gcr')
-optdepends=('aria2: download utility')
-options=('!emptydirs')
-source=("http://www.midori-browser.org/downloads/${pkgname/-gtk2}_${pkgver}_all_.tar.bz2;)
-sha256sums=('96191a96be71144ae848a409fae5a1d6d52a00e583f33122081f47ead9c49c3d')
-
-build() {
-  cd "${pkgname/-gtk2}-$pkgver"
-
-  mkdir -p build
-  cd build
-  cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib -G Ninja
-  ninja
-}
-
-package() {
-  DESTDIR="$pkgdir" ninja -C "${pkgname/-gtk2}-$pkgver/build" install
-}
-
-# getver: -u 2 midori-browser.org/download/source
-# vim:set ts=2 sw=2 et:

Copied: midori-gtk2/repos/community-i686/PKGBUILD (from rev 163531, 
midori-gtk2/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-02-27 01:07:16 UTC (rev 163532)
@@ -0,0 +1,43 @@
+# $Id: PKGBUILD 139371 2015-09-06 21:13:29Z arodseth $
+# Maintainer: Alexander Rødseth 
+# Contributor: Andreas Radke 
+# Contributor: rabyte 
+# Contributor: Johannes Krampf 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Andrew Gregory 
+
+pkgname=midori-gtk2
+pkgver=0.5.11
+pkgrel=3
+pkgdesc='Lightweight web browser (GTK2)'
+arch=('x86_64' 'i686')
+url='http://www.midori-browser.org/'
+license=('LGPL2.1')
+install='midori.install'
+conflicts=('midori')
+provides=('midori')
+depends=('webkitgtk2' 'libxss' 'hicolor-icon-theme' 'desktop-file-utils' 'gcr' 
'zeitgeist')
+makedepends=('bzr' 'intltool' 'vala' 'cmake' 'ninja')
+optdepends=('gst-plugins-base: HTML5 OGG videos support'
+'gst-plugins-good: HTML5 H264 and WebM videos support'
+'gst-libav: HTML5 H264 videos support'
+'aria2: download utility')
+options=('!emptydirs')
+source=("http://www.midori-browser.org/downloads/${pkgname/-gtk2}_${pkgver}_all_.tar.bz2;)
+sha256sums=('96191a96be71144ae848a409fae5a1d6d52a00e583f33122081f47ead9c49c3d')
+
+build() {
+  cd "${pkgname/-gtk2}-$pkgver"
+
+  mkdir -p build
+  cd build
+  cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib -G Ninja
+  ninja
+}
+
+package() {
+  DESTDIR="$pkgdir" ninja -C "${pkgname/-gtk2}-$pkgver/build" install
+}
+
+# getver: -u 2 midori-browser.org/download/source
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/midori.install
===
--- community-i686/midori.install   2016-02-27 01:07:07 UTC (rev 163531)
+++ community-i686/midori.install   2016-02-27 01:07:16 UTC (rev 163532)
@@ -1,14 +0,0 @@
-post_install() {
-  update-desktop-database -q
-  gtk-update-icon-cache -f -q -t 

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

2016-02-26 Thread Balló György
Date: Saturday, February 27, 2016 @ 02:04:49
  Author: bgyorgy
Revision: 163529

upgpkg: midori 0.5.11-3

Remove unused dependencies

Modified:
  midori/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-26 20:41:57 UTC (rev 163528)
+++ PKGBUILD2016-02-27 01:04:49 UTC (rev 163529)
@@ -8,7 +8,7 @@
 
 pkgname=midori
 pkgver=0.5.11
-pkgrel=2
+pkgrel=3
 pkgdesc='Lightweight web browser (GTK3)'
 arch=('x86_64' 'i686')
 url='http://www.midori-browser.org/'
@@ -17,8 +17,8 @@
 conflicts=('midori-gtk2')
 provides=('midori')
 replaces=('midori-gtk3')
-depends=('webkitgtk' 'libnotify' 'libxss' 'hicolor-icon-theme' 
'desktop-file-utils' 'libunique3' 'gcr' 'libzeitgeist' 'zeitgeist') # webkit2gtk
-makedepends=('pkg-config' 'bzr' 'python2' 'libxml2' 'gtk3' 'intltool' 
'python2-docutils' 'libsoup' 'vala' 'librsvg' 'cmake' 'ninja' 'gcr' 
'libzeitgeist' 'zeitgeist')
+depends=('webkitgtk' 'libxss' 'hicolor-icon-theme' 'desktop-file-utils' 'gcr' 
'zeitgeist') # webkit2gtk
+makedepends=('bzr' 'intltool' 'vala' 'cmake' 'ninja')
 optdepends=('gst-plugins-base: HTML5 OGG videos support'
 'gst-plugins-good: HTML5 H264 and WebM videos support'
 'gst-libav: HTML5 H264 videos support'


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

2016-02-26 Thread Balló György
Date: Saturday, February 27, 2016 @ 02:04:57
  Author: bgyorgy
Revision: 163530

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

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

-+
 /PKGBUILD   |   94 ++
 /midori.install |   30 
 community-i686/PKGBUILD |   47 ---
 community-i686/midori.install   |   15 --
 community-x86_64/PKGBUILD   |   47 ---
 community-x86_64/midori.install |   15 --
 6 files changed, 124 insertions(+), 124 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-02-27 01:04:49 UTC (rev 163529)
+++ community-i686/PKGBUILD 2016-02-27 01:04:57 UTC (rev 163530)
@@ -1,47 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Andreas Radke 
-# Contributor: rabyte 
-# Contributor: Johannes Krampf 
-# Contributor: Bartłomiej Piotrowski 
-
-pkgname=midori
-pkgver=0.5.11
-pkgrel=2
-pkgdesc='Lightweight web browser (GTK3)'
-arch=('x86_64' 'i686')
-url='http://www.midori-browser.org/'
-license=('LGPL2.1')
-install='midori.install'
-conflicts=('midori-gtk2')
-provides=('midori')
-replaces=('midori-gtk3')
-depends=('webkitgtk' 'libnotify' 'libxss' 'hicolor-icon-theme' 
'desktop-file-utils' 'libunique3' 'gcr' 'libzeitgeist' 'zeitgeist') # webkit2gtk
-makedepends=('pkg-config' 'bzr' 'python2' 'libxml2' 'gtk3' 'intltool' 
'python2-docutils' 'libsoup' 'vala' 'librsvg' 'cmake' 'ninja' 'gcr' 
'libzeitgeist' 'zeitgeist')
-optdepends=('gst-plugins-base: HTML5 OGG videos support'
-'gst-plugins-good: HTML5 H264 and WebM videos support'
-'gst-libav: HTML5 H264 videos support'
-'aria2: download utility')
-options=('!emptydirs')
-source=("http://www.midori-browser.org/downloads/${pkgname}_${pkgver}_all_.tar.bz2;)
-sha256sums=('96191a96be71144ae848a409fae5a1d6d52a00e583f33122081f47ead9c49c3d')
-
-build() {
-  cd "$pkgname-$pkgver"
-  mkdir -p build
-  cd build
-  cmake .. \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DUSE_GTK3=1 \
--G Ninja
-  ninja
-}
-
-package() {
-  DESTDIR="$pkgdir" ninja -C "$pkgname-$pkgver/build" install
-}
-
-# getver: -u 2 midori-browser.org/download/source
-# vim:set ts=2 sw=2 et:

Copied: midori/repos/community-i686/PKGBUILD (from rev 163529, 
midori/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-02-27 01:04:57 UTC (rev 163530)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Andreas Radke 
+# Contributor: rabyte 
+# Contributor: Johannes Krampf 
+# Contributor: Bartłomiej Piotrowski 
+
+pkgname=midori
+pkgver=0.5.11
+pkgrel=3
+pkgdesc='Lightweight web browser (GTK3)'
+arch=('x86_64' 'i686')
+url='http://www.midori-browser.org/'
+license=('LGPL2.1')
+install='midori.install'
+conflicts=('midori-gtk2')
+provides=('midori')
+replaces=('midori-gtk3')
+depends=('webkitgtk' 'libxss' 'hicolor-icon-theme' 'desktop-file-utils' 'gcr' 
'zeitgeist') # webkit2gtk
+makedepends=('bzr' 'intltool' 'vala' 'cmake' 'ninja')
+optdepends=('gst-plugins-base: HTML5 OGG videos support'
+'gst-plugins-good: HTML5 H264 and WebM videos support'
+'gst-libav: HTML5 H264 videos support'
+'aria2: download utility')
+options=('!emptydirs')
+source=("http://www.midori-browser.org/downloads/${pkgname}_${pkgver}_all_.tar.bz2;)
+sha256sums=('96191a96be71144ae848a409fae5a1d6d52a00e583f33122081f47ead9c49c3d')
+
+build() {
+  cd "$pkgname-$pkgver"
+  mkdir -p build
+  cd build
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DUSE_GTK3=1 \
+-G Ninja
+  ninja
+}
+
+package() {
+  DESTDIR="$pkgdir" ninja -C "$pkgname-$pkgver/build" install
+}
+
+# getver: -u 2 midori-browser.org/download/source
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/midori.install
===
--- community-i686/midori.install   2016-02-27 01:04:49 

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

2016-02-26 Thread Jan Steffens
Date: Friday, February 26, 2016 @ 21:41:57
  Author: heftig
Revision: 163528

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-02-26 20:34:28 UTC (rev 163527)
+++ community-i686/PKGBUILD 2016-02-26 20:41:57 UTC (rev 163528)
@@ -1,87 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgbase=rubinius
-pkgname=(rubinius rubinius-ruby)
-pkgver=3.15
-pkgrel=1
-pkgdesc="Ruby runtime written in Ruby, designed for concurrency"
-arch=(i686 x86_64)
-url="http://rubinius.com;
-license=(custom)
-depends=(llvm35-libs libffi openssl libyaml)
-makedepends=(llvm35 ruby clang valgrind)
-options=(!emptydirs)
-source=(http://releases.rubinius.com/${pkgbase}-${pkgver}.tar.bz2
-gemrc dirs.patch)
-sha256sums=('86ce6c330843f1a4fa1217e37d8898e10b90673838b7a2867e4e4d6d65599cef'
-'4bb7eb2fe66e396ed16b589cdb656831407b39ad4e138d88536754c0448ac614'
-'1bfb4d590d35f01b3ee344cec8f961558f08847b3db54e5f56a4a20a22a898ec')
-
-_common() {
-  export GEM_HOME="$srcdir/gemdir" LANG="en_US.UTF-8"
-  cd $pkgbase-$pkgver
-}
-
-prepare() {
-  _common
-
-  patch -Np1 -i ../dirs.patch
-
-  mkdir -p "$GEM_HOME"
-  gem install --no-user-install -N vendor/cache/bundler-*.gem
-
-  "$GEM_HOME/bin/bundle" install --local
-}
-
-build() {
-  _common
-  ./configure --prefix=/usr \
---mandir=/usr/share/man \
---includedir=/usr/include/rubinius \
---appdir=/usr/lib/rubinius \
---gemsdir=/usr/lib/rubinius/gems \
---llvm-shared \
---preserve-prefix \
---without-rpath \
---bin-link bundle --bin-link bundler
-  rake build
-}
-
-check() {
-  _common
-  rake vm:test || :
-}
-
-package_rubinius() {
-  optdepends=('ruby-docs: Ruby documentation')
-
-  _common
-
-  DESTDIR="$pkgdir" rake install
-
-  mkdir -p "$pkgdir/usr/share/ri"
-  ln -s 2.3.0 "$pkgdir/usr/share/ri/2.2"
-
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/rubinius/LICENSE"
-
-### Split rubinius-ruby
-  mkdir -p "$srcdir/ruby/usr/bin"
-  for _f in "$pkgdir"/usr/bin/*; do
-[[ $_f == */rbx ]] && continue
-mv $_f "$srcdir/ruby/usr/bin"
-  done
-}
-
-package_rubinius-ruby() {
-  pkgdesc="Ruby compat for Rubinius"
-  depends=("rubinius=$pkgver-$pkgrel")
-  provides=(ruby)
-  conflicts=(ruby)
-  backup=(etc/gemrc)
-
-  mv ruby/* "$pkgdir"
-  install -Dm644 gemrc "$pkgdir/etc/gemrc"
-  install -d "$pkgdir/usr/share/licenses/rubinius-ruby"
-  ln -s ../rubinius/LICENSE "$pkgdir/usr/share/licenses/rubinius-ruby/LICENSE"
-}

Copied: rubinius/repos/community-i686/PKGBUILD (from rev 163527, 
rubinius/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-02-26 20:41:57 UTC (rev 163528)
@@ -0,0 +1,87 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgbase=rubinius
+pkgname=(rubinius rubinius-ruby)
+pkgver=3.16
+pkgrel=1
+pkgdesc="Ruby runtime written in Ruby, designed for concurrency"
+arch=(i686 x86_64)
+url="http://rubinius.com;
+license=(custom)
+depends=(llvm35-libs libffi openssl libyaml)
+makedepends=(llvm35 ruby clang valgrind)
+options=(!emptydirs)
+source=(http://releases.rubinius.com/${pkgbase}-${pkgver}.tar.bz2
+gemrc dirs.patch)
+sha256sums=('1c34db3254e8304988b3c10591c11af058f371bee80fe3b559e6c16d84f4fa03'
+'4bb7eb2fe66e396ed16b589cdb656831407b39ad4e138d88536754c0448ac614'
+

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

2016-02-26 Thread Jan Steffens
Date: Friday, February 26, 2016 @ 21:34:28
  Author: heftig
Revision: 163527

3.16

Modified:
  rubinius/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-26 20:26:29 UTC (rev 163526)
+++ PKGBUILD2016-02-26 20:34:28 UTC (rev 163527)
@@ -3,7 +3,7 @@
 
 pkgbase=rubinius
 pkgname=(rubinius rubinius-ruby)
-pkgver=3.15
+pkgver=3.16
 pkgrel=1
 pkgdesc="Ruby runtime written in Ruby, designed for concurrency"
 arch=(i686 x86_64)
@@ -14,7 +14,7 @@
 options=(!emptydirs)
 source=(http://releases.rubinius.com/${pkgbase}-${pkgver}.tar.bz2
 gemrc dirs.patch)
-sha256sums=('86ce6c330843f1a4fa1217e37d8898e10b90673838b7a2867e4e4d6d65599cef'
+sha256sums=('1c34db3254e8304988b3c10591c11af058f371bee80fe3b559e6c16d84f4fa03'
 '4bb7eb2fe66e396ed16b589cdb656831407b39ad4e138d88536754c0448ac614'
 '1bfb4d590d35f01b3ee344cec8f961558f08847b3db54e5f56a4a20a22a898ec')
 


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

2016-02-26 Thread Anatol Pomozov
Date: Friday, February 26, 2016 @ 21:26:29
  Author: anatolik
Revision: 163526

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

Added:
  rethinkdb/repos/community-testing-i686/
  rethinkdb/repos/community-testing-i686/PKGBUILD
(from rev 163525, rethinkdb/trunk/PKGBUILD)
  rethinkdb/repos/community-testing-i686/rethinkdb-tmpfile.conf
(from rev 163525, rethinkdb/trunk/rethinkdb-tmpfile.conf)
  rethinkdb/repos/community-testing-i686/rethinkdb.install
(from rev 163525, rethinkdb/trunk/rethinkdb.install)
  rethinkdb/repos/community-testing-i686/rethinkdb.service
(from rev 163525, rethinkdb/trunk/rethinkdb.service)
  rethinkdb/repos/community-testing-x86_64/
  rethinkdb/repos/community-testing-x86_64/PKGBUILD
(from rev 163525, rethinkdb/trunk/PKGBUILD)
  rethinkdb/repos/community-testing-x86_64/rethinkdb-tmpfile.conf
(from rev 163525, rethinkdb/trunk/rethinkdb-tmpfile.conf)
  rethinkdb/repos/community-testing-x86_64/rethinkdb.install
(from rev 163525, rethinkdb/trunk/rethinkdb.install)
  rethinkdb/repos/community-testing-x86_64/rethinkdb.service
(from rev 163525, rethinkdb/trunk/rethinkdb.service)

-+
 community-testing-i686/PKGBUILD |   74 ++
 community-testing-i686/rethinkdb-tmpfile.conf   |1 
 community-testing-i686/rethinkdb.install|   22 ++
 community-testing-i686/rethinkdb.service|   12 +++
 community-testing-x86_64/PKGBUILD   |   74 ++
 community-testing-x86_64/rethinkdb-tmpfile.conf |1 
 community-testing-x86_64/rethinkdb.install  |   22 ++
 community-testing-x86_64/rethinkdb.service  |   12 +++
 8 files changed, 218 insertions(+)

Copied: rethinkdb/repos/community-testing-i686/PKGBUILD (from rev 163525, 
rethinkdb/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2016-02-26 20:26:29 UTC (rev 163526)
@@ -0,0 +1,74 @@
+# $Id$
+# Maintainer: Anatol Pomozov 
+# Contributor: Massimiliano Torromeo 
+# Contributor: Sigmund Lahn 
+
+pkgname=rethinkdb
+pkgver=2.2.5
+_tag=rethinkdb-$pkgver
+pkgrel=1
+pkgdesc='Distributed powerful and scalable NoSQL database'
+arch=(i686 x86_64)
+url='http://www.rethinkdb.com/'
+license=(AGPL)
+depends=(protobuf ncurses curl)
+makedepends=(boost python2 wget)
+backup=(etc/rethinkdb/instances.d/default.conf)
+install=rethinkdb.install
+options=(!emptydirs)
+source=(
+  http://download.rethinkdb.com/dist/$_tag.tgz
+  rethinkdb-tmpfile.conf
+  rethinkdb.service
+  
fix_isinf.patch::https://github.com/rethinkdb/rethinkdb/commit/84be09f314c4cbf88b4ac8fe9dbff1d36f0f5781.patch
+)
+sha256sums=('4770cc8b1939c700a01f900fa5bca1cb99742c73336c9142656e754e36ea9b47'
+'656d3a42e75d087e723f71aa320fdd91cbbb82071ef72eb11fd3e4a619b429a4'
+'e56bffa2b9ebc3a00ef566ab2be0719a633c89d961a2461dfa2d9ffdb258c1a2'
+'ca21f7ae633118a57ed7cc69ee959db925ec59cbef2ebd5cbcd6504849b17a9b')
+
+prepare() {
+  cd $_tag
+
+  sed \
+-e 's|#!/usr/bin/python|#!/usr/bin/python2|' \
+-e 's|#!/usr/bin/env python|#!/usr/bin/env python2|' \
+-i scripts/*.py external/v8_*/tools/*.py
+  sed -e 's|exec python|exec python2|g' -i external/v8_*/build/gyp/gyp
+  sed -e 's|\bpython\b|python2|g' -i 
external/v8_*/{Makefile,*/*.gyp,*/*.gypi,*/*/*.gyp}
+
+  # https://github.com/rethinkdb/rethinkdb/issues/5450
+  patch -p1 < ../fix_isinf.patch
+}
+
+build() {
+  cd $_tag
+  export PYTHON=/usr/bin/python2
+  ./configure --fetch v8 --fetch jemalloc --dynamic all 
--enable-precompiled-web --prefix=/usr --sysconfdir=/etc
+  make ALLOW_WARNINGS=1
+}
+
+check() {
+  cd $_tag
+
+  # these tests are flaky and extremely slow in Arch chroot
+  # make build/release/rethinkdb-unittest
+  # ./build/release/rethinkdb-unittest 
--gtest_filter=-RDBBtree.*:RDBInterrupt.*
+  # some tests might be flaky on btrfs filesystem
+}
+
+package() {
+  cd $_tag
+  make DESTDIR="$pkgdir" install
+
+  install -Dm644 "$srcdir"/rethinkdb-tmpfile.conf 
"$pkgdir"/usr/lib/tmpfiles.d/rethinkdb.conf
+  install -Dm644 "$srcdir"/rethinkdb.service 
"$pkgdir"/usr/lib/systemd/system/rethinkdb@.service
+
+  # create 'default' database instance
+  mv "$pkgdir"/etc/rethinkdb/default.conf.sample 
"$pkgdir"/etc/rethinkdb/instances.d/default.conf
+  sed -e 's|# directory=/var/lib/rethinkdb|directory=/var/lib/rethinkdb|' \
+  -i "$pkgdir"/etc/rethinkdb/instances.d/default.conf
+
+  # Arch uses systemd, no need for init.d scripts
+  rm -r "$pkgdir"/etc/init.d
+}

Copied: rethinkdb/repos/community-testing-i686/rethinkdb-tmpfile.conf (from rev 
163525, rethinkdb/trunk/rethinkdb-tmpfile.conf)
===
--- 

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

2016-02-26 Thread Anatol Pomozov
Date: Friday, February 26, 2016 @ 21:23:55
  Author: anatolik
Revision: 163525

upgpkg: rethinkdb 2.2.5-1

Modified:
  rethinkdb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-26 19:47:45 UTC (rev 163524)
+++ PKGBUILD2016-02-26 20:23:55 UTC (rev 163525)
@@ -4,7 +4,7 @@
 # Contributor: Sigmund Lahn 
 
 pkgname=rethinkdb
-pkgver=2.2.4
+pkgver=2.2.5
 _tag=rethinkdb-$pkgver
 pkgrel=1
 pkgdesc='Distributed powerful and scalable NoSQL database'
@@ -20,10 +20,12 @@
   http://download.rethinkdb.com/dist/$_tag.tgz
   rethinkdb-tmpfile.conf
   rethinkdb.service
+  
fix_isinf.patch::https://github.com/rethinkdb/rethinkdb/commit/84be09f314c4cbf88b4ac8fe9dbff1d36f0f5781.patch
 )
-sha256sums=('3562816790b408cd1b8e261363b9c2a588f6be776e2e5c0baa3be7acce3b407f'
+sha256sums=('4770cc8b1939c700a01f900fa5bca1cb99742c73336c9142656e754e36ea9b47'
 '656d3a42e75d087e723f71aa320fdd91cbbb82071ef72eb11fd3e4a619b429a4'
-'e56bffa2b9ebc3a00ef566ab2be0719a633c89d961a2461dfa2d9ffdb258c1a2')
+'e56bffa2b9ebc3a00ef566ab2be0719a633c89d961a2461dfa2d9ffdb258c1a2'
+'ca21f7ae633118a57ed7cc69ee959db925ec59cbef2ebd5cbcd6504849b17a9b')
 
 prepare() {
   cd $_tag
@@ -34,6 +36,9 @@
 -i scripts/*.py external/v8_*/tools/*.py
   sed -e 's|exec python|exec python2|g' -i external/v8_*/build/gyp/gyp
   sed -e 's|\bpython\b|python2|g' -i 
external/v8_*/{Makefile,*/*.gyp,*/*.gypi,*/*/*.gyp}
+
+  # https://github.com/rethinkdb/rethinkdb/issues/5450
+  patch -p1 < ../fix_isinf.patch
 }
 
 build() {


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

2016-02-26 Thread Jan Steffens
Date: Friday, February 26, 2016 @ 21:02:05
  Author: heftig
Revision: 260259

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

Added:
  
pulseaudio/repos/extra-i686/0001-Revert-module-switch-on-port-available-Route-to-pref.patch
(from rev 260258, 
pulseaudio/trunk/0001-Revert-module-switch-on-port-available-Route-to-pref.patch)
  
pulseaudio/repos/extra-i686/0002-Revert-module-alsa-card-Report-available-ports-befor.patch
(from rev 260258, 
pulseaudio/trunk/0002-Revert-module-alsa-card-Report-available-ports-befor.patch)
  pulseaudio/repos/extra-i686/PKGBUILD
(from rev 260258, pulseaudio/trunk/PKGBUILD)
  pulseaudio/repos/extra-i686/padsp-lib32.patch
(from rev 260258, pulseaudio/trunk/padsp-lib32.patch)
  pulseaudio/repos/extra-i686/pulseaudio.install
(from rev 260258, pulseaudio/trunk/pulseaudio.install)
  
pulseaudio/repos/extra-x86_64/0001-Revert-module-switch-on-port-available-Route-to-pref.patch
(from rev 260258, 
pulseaudio/trunk/0001-Revert-module-switch-on-port-available-Route-to-pref.patch)
  
pulseaudio/repos/extra-x86_64/0002-Revert-module-alsa-card-Report-available-ports-befor.patch
(from rev 260258, 
pulseaudio/trunk/0002-Revert-module-alsa-card-Report-available-ports-befor.patch)
  pulseaudio/repos/extra-x86_64/PKGBUILD
(from rev 260258, pulseaudio/trunk/PKGBUILD)
  pulseaudio/repos/extra-x86_64/padsp-lib32.patch
(from rev 260258, pulseaudio/trunk/padsp-lib32.patch)
  pulseaudio/repos/extra-x86_64/pulseaudio.install
(from rev 260258, pulseaudio/trunk/pulseaudio.install)
Deleted:
  
pulseaudio/repos/extra-i686/0001-Revert-module-switch-on-port-available-Route-to-pref.patch
  pulseaudio/repos/extra-i686/PKGBUILD
  pulseaudio/repos/extra-i686/padsp-lib32.patch
  pulseaudio/repos/extra-i686/pulseaudio.install
  
pulseaudio/repos/extra-x86_64/0001-Revert-module-switch-on-port-available-Route-to-pref.patch
  pulseaudio/repos/extra-x86_64/PKGBUILD
  pulseaudio/repos/extra-x86_64/padsp-lib32.patch
  pulseaudio/repos/extra-x86_64/pulseaudio.install

--+
 /0001-Revert-module-switch-on-port-available-Route-to-pref.patch | 
 516 ++
 /PKGBUILD| 
 436 
 /padsp-lib32.patch   | 
  30 
 /pulseaudio.install  | 
  28 
 extra-i686/0001-Revert-module-switch-on-port-available-Route-to-pref.patch   | 
 258 -
 extra-i686/0002-Revert-module-alsa-card-Report-available-ports-befor.patch   | 
  86 +
 extra-i686/PKGBUILD  | 
 216 
 extra-i686/padsp-lib32.patch | 
  15 
 extra-i686/pulseaudio.install| 
   8 
 extra-x86_64/0001-Revert-module-switch-on-port-available-Route-to-pref.patch | 
 258 -
 extra-x86_64/0002-Revert-module-alsa-card-Report-available-ports-befor.patch | 
  86 +
 extra-x86_64/PKGBUILD| 
 216 
 extra-x86_64/padsp-lib32.patch   | 
  15 
 extra-x86_64/pulseaudio.install  | 
   8 
 14 files changed, 1182 insertions(+), 994 deletions(-)

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


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

2016-02-26 Thread Jan Steffens
Date: Friday, February 26, 2016 @ 20:59:11
  Author: heftig
Revision: 260258

Enable socket on install; FS#48306

Added:
  
pulseaudio/trunk/0002-Revert-module-alsa-card-Report-available-ports-befor.patch
Modified:
  
pulseaudio/trunk/0001-Revert-module-switch-on-port-available-Route-to-pref.patch
  pulseaudio/trunk/PKGBUILD
  pulseaudio/trunk/pulseaudio.install

-+
 0001-Revert-module-switch-on-port-available-Route-to-pref.patch |8 
 0002-Revert-module-alsa-card-Report-available-ports-befor.patch |   86 
++
 PKGBUILD|   14 -
 pulseaudio.install  |   18 +-
 4 files changed, 110 insertions(+), 16 deletions(-)

Modified: 0001-Revert-module-switch-on-port-available-Route-to-pref.patch
===
--- 0001-Revert-module-switch-on-port-available-Route-to-pref.patch 
2016-02-26 08:50:56 UTC (rev 260257)
+++ 0001-Revert-module-switch-on-port-available-Route-to-pref.patch 
2016-02-26 19:59:11 UTC (rev 260258)
@@ -1,8 +1,8 @@
-From 343a86252241c591114b064a3340f7beb2d1ff44 Mon Sep 17 00:00:00 2001
+From d36e55c2d416ac95715d27b2155c3b548ba59c7a Mon Sep 17 00:00:00 2001
 From: "Jan Alexander Steffens (heftig)" 
-Date: Sun, 21 Feb 2016 12:59:50 +0100
-Subject: [PATCH] Revert "module-switch-on-port-available: Route to preferred
- profile"
+Date: Fri, 26 Feb 2016 20:29:00 +0100
+Subject: [PATCH 1/2] Revert "module-switch-on-port-available: Route to
+ preferred profile"
 
 This reverts commit e87100d41ef6d14f8dc7f803582191d9f8d8f183.
 ---

Added: 0002-Revert-module-alsa-card-Report-available-ports-befor.patch
===
--- 0002-Revert-module-alsa-card-Report-available-ports-befor.patch 
(rev 0)
+++ 0002-Revert-module-alsa-card-Report-available-ports-befor.patch 
2016-02-26 19:59:11 UTC (rev 260258)
@@ -0,0 +1,86 @@
+From 8a7423fb4b4ca9e2825251d734217df8d982ea32 Mon Sep 17 00:00:00 2001
+From: "Jan Alexander Steffens (heftig)" 
+Date: Fri, 26 Feb 2016 20:29:24 +0100
+Subject: [PATCH 2/2] Revert "module-alsa-card: Report available ports before
+ unavailable ones"
+
+This reverts commit 91313e60a81e96ce976f24c522656c57b4ab94ca.
+---
+ src/modules/alsa/module-alsa-card.c | 31 ++-
+ 1 file changed, 6 insertions(+), 25 deletions(-)
+
+diff --git a/src/modules/alsa/module-alsa-card.c 
b/src/modules/alsa/module-alsa-card.c
+index 286cfc9..a88a83f 100644
+--- a/src/modules/alsa/module-alsa-card.c
 b/src/modules/alsa/module-alsa-card.c
+@@ -306,7 +306,7 @@ static void init_profile(struct userdata *u) {
+ am->source = pa_alsa_source_new(u->module, u->modargs, __FILE__, 
u->card, am);
+ }
+ 
+-static pa_available_t calc_port_state(pa_device_port *p, struct userdata *u) {
++static void report_port_state(pa_device_port *p, struct userdata *u) {
+ void *state;
+ pa_alsa_jack *jack;
+ pa_available_t pa = PA_AVAILABLE_UNKNOWN;
+@@ -350,13 +350,9 @@ static pa_available_t calc_port_state(pa_device_port *p, 
struct userdata *u) {
+   pa = cpa;
+ }
+ }
+-return pa;
+-}
+ 
+-struct temp_port_avail {
+-pa_device_port *port;
+-pa_available_t avail;
+-};
++pa_device_port_set_available(p, pa);
++}
+ 
+ static int report_jack_state(snd_mixer_elem_t *melem, unsigned int mask) {
+ struct userdata *u = snd_mixer_elem_get_callback_private(melem);
+@@ -365,7 +361,7 @@ static int report_jack_state(snd_mixer_elem_t *melem, 
unsigned int mask) {
+ bool plugged_in;
+ void *state;
+ pa_alsa_jack *jack;
+-struct temp_port_avail *tp, *tports;
++pa_device_port *port;
+ 
+ pa_assert(u);
+ 
+@@ -382,8 +378,6 @@ static int report_jack_state(snd_mixer_elem_t *melem, 
unsigned int mask) {
+ 
+ pa_log_debug("Jack '%s' is now %s", 
pa_strnull(snd_hctl_elem_get_name(elem)), plugged_in ? "plugged in" : 
"unplugged");
+ 
+-tports = tp = pa_xnew0(struct temp_port_avail, 
pa_hashmap_size(u->jacks)+1);
+-
+ PA_HASHMAP_FOREACH(jack, u->jacks, state)
+ if (jack->melem == melem) {
+ pa_alsa_jack_set_plugged_in(jack, plugged_in);
+@@ -396,22 +390,9 @@ static int report_jack_state(snd_mixer_elem_t *melem, 
unsigned int mask) {
+ 
+ /* When not using UCM, we have to do the jack state -> port
+  * availability mapping ourselves. */
+-pa_assert_se(tp->port = jack->path->port);
+-tp->avail = calc_port_state(tp->port, u);
+-tp++;
++pa_assert_se(port = jack->path->port);
++report_port_state(port, u);
+ }
+-
+-/* Report available ports before unavailable ones: in case port 1 becomes 
available when port 2 becomes unavailable,
+-   this prevents an unnecessary 

[arch-commits] Commit in arm-none-eabi-newlib/repos (2 files)

2016-02-26 Thread Anatol Pomozov
Date: Friday, February 26, 2016 @ 20:47:45
  Author: anatolik
Revision: 163524

archrelease: copy trunk to community-testing-any

Added:
  arm-none-eabi-newlib/repos/community-testing-any/
  arm-none-eabi-newlib/repos/community-testing-any/PKGBUILD
(from rev 163523, arm-none-eabi-newlib/trunk/PKGBUILD)

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

Copied: arm-none-eabi-newlib/repos/community-testing-any/PKGBUILD (from rev 
163523, arm-none-eabi-newlib/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2016-02-26 19:47:45 UTC (rev 163524)
@@ -0,0 +1,66 @@
+# $Id$
+# Maintainer: Anatol Pomozov 
+
+_target=arm-none-eabi
+pkgname=$_target-newlib
+pkgver=2.3.0.20160226
+pkgrel=1
+_upstream_ver=$pkgver
+pkgdesc='A C standard library implementation intended for use on embedded 
systems (ARM bare metal)'
+arch=(any)
+url='http://www.sourceware.org/newlib/'
+license=(BSD)
+makedepends=($_target-gcc)
+options=(!emptydirs !strip)
+source=(ftp://sourceware.org/pub/newlib/newlib-$_upstream_ver.tar.gz)
+sha1sums=('56df3bc630fd36e5b37eece303f6f7033fa9ff85')
+
+build() {
+  rm -rf build-{newlib,nano}
+  mkdir build-{newlib,nano}
+
+  export CFLAGS_FOR_TARGET='-g -O2 -ffunction-sections -fdata-sections'
+  cd "$srcdir"/build-newlib
+  ../newlib-$_upstream_ver/configure \
+--target=$_target \
+--prefix=/usr \
+--disable-newlib-supplied-syscalls \
+--disable-nls \
+--enable-newlib-io-long-long \
+--enable-newlib-register-fini
+  make
+
+  export CFLAGS_FOR_TARGET='-g -Os -ffunction-sections -fdata-sections'
+  cd "$srcdir"/build-nano
+  ../newlib-$_upstream_ver/configure \
+--target=$_target \
+--prefix=/usr \
+--disable-newlib-supplied-syscalls \
+--disable-nls \
+--enable-newlib-reent-small   \
+--disable-newlib-fvwrite-in-streamio  \
+--disable-newlib-fseek-optimization   \
+--disable-newlib-wide-orient  \
+--enable-newlib-nano-malloc   \
+--disable-newlib-unbuf-stream-opt \
+--enable-lite-exit\
+--enable-newlib-global-atexit \
+--enable-newlib-nano-formatted-io
+  make
+}
+
+package() {
+  cd "$srcdir"/build-nano
+  make DESTDIR="$pkgdir" install -j1
+  find "$pkgdir" -regex ".*/lib\(c\|g\|rdimon\)\.a" -exec rename .a _nano.a 
'{}' \;
+
+  cd "$srcdir"/build-newlib
+  make DESTDIR="$pkgdir" install -j1
+
+  find "$pkgdir"/usr/$_target/lib \( -name "*.a" -or -name "*.o" \) -exec 
$_target-objcopy -R .comment -R .note -R .debug_info -R .debug_aranges -R 
.debug_pubnames -R .debug_pubtypes -R .debug_abbrev -R .debug_line -R 
.debug_str -R .debug_ranges -R .debug_loc '{}' \;
+
+  rm "$pkgdir"/usr/share/info/*.info
+
+  install -d "$pkgdir"/usr/share/licenses/$pkgname/
+  install -m644 -t "$pkgdir"/usr/share/licenses/$pkgname/ 
"$srcdir"/newlib-$_upstream_ver/COPYING*
+}


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

2016-02-26 Thread Anatol Pomozov
Date: Friday, February 26, 2016 @ 20:47:11
  Author: anatolik
Revision: 163523

upgpkg: arm-none-eabi-newlib 2.3.0.20160226-1

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

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-26 19:36:44 UTC (rev 163522)
+++ PKGBUILD2016-02-26 19:47:11 UTC (rev 163523)
@@ -3,7 +3,7 @@
 
 _target=arm-none-eabi
 pkgname=$_target-newlib
-pkgver=2.3.0.20160104
+pkgver=2.3.0.20160226
 pkgrel=1
 _upstream_ver=$pkgver
 pkgdesc='A C standard library implementation intended for use on embedded 
systems (ARM bare metal)'
@@ -13,7 +13,7 @@
 makedepends=($_target-gcc)
 options=(!emptydirs !strip)
 source=(ftp://sourceware.org/pub/newlib/newlib-$_upstream_ver.tar.gz)
-sha1sums=('43d8ac3eb3b582efdf68c217c4a1136a3efa0068')
+sha1sums=('56df3bc630fd36e5b37eece303f6f7033fa9ff85')
 
 build() {
   rm -rf build-{newlib,nano}


[arch-commits] Commit in libasl/trunk (PKGBUILD libasl-vtk7.patch)

2016-02-26 Thread Evgeniy Alekseev
Date: Friday, February 26, 2016 @ 20:36:21
  Author: arcanis
Revision: 163521

upgpkg: libasl 0.1.6-5
rebuild against vtk-7.0

Added:
  libasl/trunk/libasl-vtk7.patch
Modified:
  libasl/trunk/PKGBUILD

---+
 PKGBUILD  |7 ++-
 libasl-vtk7.patch |   13 +
 2 files changed, 19 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-02-26 18:59:22 UTC (rev 163520)
+++ PKGBUILD2016-02-26 19:36:21 UTC (rev 163521)
@@ -4,7 +4,7 @@
 
 pkgname=libasl
 pkgver=0.1.6
-pkgrel=4
+pkgrel=5
 pkgdesc='Multiphysics simulation software package (Advanced Simulation 
Library)'
 arch=('i686' 'x86_64')
 url='http://asl.org.il/'
@@ -14,9 +14,11 @@
 makedepends=('cmake' 'opencl-headers' 'boost' 'mesa-libgl')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/AvtechScientific/ASL/archive/v${pkgver}.tar.gz;
 'suppress-deprecated-warnings.patch'
+'libasl-vtk7.patch'
 
'libasl-0.1.6-Explicitly-define-namespace-of-ifstream-and-ofstream.patch')
 md5sums=('1f283d066d57e11d4602016148181420'
  '972d7ed8037a35d32125773ae70f6360'
+ '583fff4d0e81579720e094ecb8729c2d'
  '4747d00c048574f5722b4d9cfaa73676')
 
 prepare() {
@@ -28,6 +30,9 @@
   cd "ASL-${pkgver}"
   patch -p1 -i "${srcdir}/suppress-deprecated-warnings.patch"
 
+  # patch cmakelists for newest vtk
+  patch -p1 -i "${srcdir}/libasl-vtk7.patch"
+
   patch -p1 -i 
"${srcdir}/libasl-0.1.6-Explicitly-define-namespace-of-ifstream-and-ofstream.patch"
 }
 

Added: libasl-vtk7.patch
===
--- libasl-vtk7.patch   (rev 0)
+++ libasl-vtk7.patch   2016-02-26 19:36:21 UTC (rev 163521)
@@ -0,0 +1,13 @@
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 203e0b8..cd7789e 100644
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -52,7 +52,7 @@ include(ASLBuildFunctions)
+ find_package(OpenCL 1.1 REQUIRED)
+ # ToDo: check - system component might be not needed any longer on new 
versions of Boost
+ find_package(Boost 1.55 REQUIRED COMPONENTS program_options filesystem system)
+-find_package(VTK 6.1 COMPONENTS vtkRenderingCore vtkImagingCore 
vtkFiltersCore vtkIOCore vtkIOLegacy vtkIOXML vtkIOMINC vtkCommonCore 
vtkViewsCore vtkftgl vtksys vtkDICOMParser vtkexpat vtkzlib NO_MODULE)
++find_package(VTK 7.0 COMPONENTS vtkRenderingCore vtkImagingCore 
vtkFiltersCore vtkIOCore vtkIOLegacy vtkIOXML vtkIOMINC vtkCommonCore 
vtkViewsCore vtksys vtkDICOMParser vtkexpat vtkzlib NO_MODULE)
+ include(${VTK_USE_FILE})
+ 
+ include_directories(SYSTEM ${OpenCL_INCLUDE_DIRS} ${Boost_INCLUDE_DIRS})


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

2016-02-26 Thread Evgeniy Alekseev
Date: Friday, February 26, 2016 @ 20:36:44
  Author: arcanis
Revision: 163522

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

Added:
  libasl/repos/community-i686/PKGBUILD
(from rev 163521, libasl/trunk/PKGBUILD)
  
libasl/repos/community-i686/libasl-0.1.6-Explicitly-define-namespace-of-ifstream-and-ofstream.patch
(from rev 163521, 
libasl/trunk/libasl-0.1.6-Explicitly-define-namespace-of-ifstream-and-ofstream.patch)
  libasl/repos/community-i686/libasl-vtk7.patch
(from rev 163521, libasl/trunk/libasl-vtk7.patch)
  libasl/repos/community-i686/suppress-deprecated-warnings.patch
(from rev 163521, libasl/trunk/suppress-deprecated-warnings.patch)
  libasl/repos/community-x86_64/PKGBUILD
(from rev 163521, libasl/trunk/PKGBUILD)
  
libasl/repos/community-x86_64/libasl-0.1.6-Explicitly-define-namespace-of-ifstream-and-ofstream.patch
(from rev 163521, 
libasl/trunk/libasl-0.1.6-Explicitly-define-namespace-of-ifstream-and-ofstream.patch)
  libasl/repos/community-x86_64/libasl-vtk7.patch
(from rev 163521, libasl/trunk/libasl-vtk7.patch)
  libasl/repos/community-x86_64/suppress-deprecated-warnings.patch
(from rev 163521, libasl/trunk/suppress-deprecated-warnings.patch)
Deleted:
  libasl/repos/community-i686/PKGBUILD
  
libasl/repos/community-i686/libasl-0.1.6-Explicitly-define-namespace-of-ifstream-and-ofstream.patch
  libasl/repos/community-i686/suppress-deprecated-warnings.patch
  libasl/repos/community-x86_64/PKGBUILD
  
libasl/repos/community-x86_64/libasl-0.1.6-Explicitly-define-namespace-of-ifstream-and-ofstream.patch
  libasl/repos/community-x86_64/suppress-deprecated-warnings.patch

--+
 /PKGBUILD  
  |  112 +
 /libasl-0.1.6-Explicitly-define-namespace-of-ifstream-and-ofstream.patch   
  |  118 ++
 /suppress-deprecated-warnings.patch
  |   22 +
 community-i686/PKGBUILD
  |   51 
 
community-i686/libasl-0.1.6-Explicitly-define-namespace-of-ifstream-and-ofstream.patch
   |   59 -
 community-i686/libasl-vtk7.patch   
  |   13 +
 community-i686/suppress-deprecated-warnings.patch  
  |   11 
 community-x86_64/PKGBUILD  
  |   51 
 
community-x86_64/libasl-0.1.6-Explicitly-define-namespace-of-ifstream-and-ofstream.patch
 |   59 -
 community-x86_64/libasl-vtk7.patch 
  |   13 +
 community-x86_64/suppress-deprecated-warnings.patch
  |   11 
 11 files changed, 278 insertions(+), 242 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-02-26 19:36:21 UTC (rev 163521)
+++ community-i686/PKGBUILD 2016-02-26 19:36:44 UTC (rev 163522)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer: Evgeniy Alekseev 
-# Contributor: Andrejs Mivreņiks 
-
-pkgname=libasl
-pkgver=0.1.6
-pkgrel=4
-pkgdesc='Multiphysics simulation software package (Advanced Simulation 
Library)'
-arch=('i686' 'x86_64')
-url='http://asl.org.il/'
-license=('AGPL3')
-depends=('boost-libs' 'libcl' 'libmatio' 'vtk' 'libjpeg' 'libpng' 'libtiff'
- 'freetype2' 'libgl')
-makedepends=('cmake' 'opencl-headers' 'boost' 'mesa-libgl')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/AvtechScientific/ASL/archive/v${pkgver}.tar.gz;
-'suppress-deprecated-warnings.patch'
-
'libasl-0.1.6-Explicitly-define-namespace-of-ifstream-and-ofstream.patch')
-md5sums=('1f283d066d57e11d4602016148181420'
- '972d7ed8037a35d32125773ae70f6360'
- '4747d00c048574f5722b4d9cfaa73676')
-
-prepare() {
-  rm -rf "build"
-  mkdir "build"
-
-  # patch to suppress 'deprecated' warning messages
-  # caused by 'opencl-headers' since update to 2.0
-  cd "ASL-${pkgver}"
-  patch -p1 -i "${srcdir}/suppress-deprecated-warnings.patch"
-
-  patch -p1 -i 
"${srcdir}/libasl-0.1.6-Explicitly-define-namespace-of-ifstream-and-ofstream.patch"
-}
-
-build() {
-  cd "build"
-  cmake -DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DBUILD_SHARED_LIBS=ON \
--DWITH_EXAMPLES=ON \
--DWITH_MATIO=ON \
--DWITH_API_DOC=OFF \
--DWITH_TESTS=OFF \
-"../ASL-${pkgver}"
-  make
-}
-
-package() {
-  cd "build"
-  make DESTDIR="${pkgdir}" install
-}
-

Copied: libasl/repos/community-i686/PKGBUILD (from rev 163521, 
libasl/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-02-26 19:36:44 UTC (rev 

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

2016-02-26 Thread Evgeniy Alekseev
Date: Friday, February 26, 2016 @ 19:59:22
  Author: arcanis
Revision: 163520

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

Added:
  libmatio/repos/community-i686/ChangeLog
(from rev 163519, libmatio/trunk/ChangeLog)
  libmatio/repos/community-i686/PKGBUILD
(from rev 163519, libmatio/trunk/PKGBUILD)
  libmatio/repos/community-x86_64/ChangeLog
(from rev 163519, libmatio/trunk/ChangeLog)
  libmatio/repos/community-x86_64/PKGBUILD
(from rev 163519, libmatio/trunk/PKGBUILD)
Deleted:
  libmatio/repos/community-i686/ChangeLog
  libmatio/repos/community-i686/PKGBUILD
  libmatio/repos/community-x86_64/ChangeLog
  libmatio/repos/community-x86_64/PKGBUILD

+
 /ChangeLog |   10 +++
 /PKGBUILD  |   60 +++
 community-i686/ChangeLog   |2 -
 community-i686/PKGBUILD|   30 -
 community-x86_64/ChangeLog |2 -
 community-x86_64/PKGBUILD  |   30 -
 6 files changed, 70 insertions(+), 64 deletions(-)

Deleted: community-i686/ChangeLog
===
--- community-i686/ChangeLog2016-02-26 18:59:04 UTC (rev 163519)
+++ community-i686/ChangeLog2016-02-26 18:59:22 UTC (rev 163520)
@@ -1,2 +0,0 @@
-1.5.2-3:
-move from AUR to [community]

Copied: libmatio/repos/community-i686/ChangeLog (from rev 163519, 
libmatio/trunk/ChangeLog)
===
--- community-i686/ChangeLog(rev 0)
+++ community-i686/ChangeLog2016-02-26 18:59:22 UTC (rev 163520)
@@ -0,0 +1,5 @@
+1.5.6-1:
+upstream update
+
+1.5.2-3:
+move from AUR to [community]

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-02-26 18:59:04 UTC (rev 163519)
+++ community-i686/PKGBUILD 2016-02-26 18:59:22 UTC (rev 163520)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Evgeniy Alekseev 
-# Contributor: Stefan Husmann 
-# Contributor: Alexander Rødseth 
-# Contributor: William Rea 
-
-pkgname=libmatio
-pkgver=1.5.2
-pkgrel=4
-pkgdesc='C library with a fortran 90/95 module interface for reading/writing 
MATLAB MAT-files'
-arch=('x86_64' 'i686')
-license=('custom:BSD')
-url='http://sourceforge.net/projects/matio'
-depends=('zlib' 'hdf5')
-options=('!libtool' '!emptydirs')
-source=("http://downloads.sourceforge.net/matio/matio-${pkgver}.tar.gz;)
-changelog=ChangeLog
-md5sums=('85b007b99916c63791f28398f6a4c6f1')
-
-build() {
-  cd "matio-${pkgver}"
-  ./configure --prefix=/usr --enable-shared --with-hdf5
-  make
-}
-
-package() {
-  cd "matio-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
-}

Copied: libmatio/repos/community-i686/PKGBUILD (from rev 163519, 
libmatio/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-02-26 18:59:22 UTC (rev 163520)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Evgeniy Alekseev 
+# Contributor: Stefan Husmann 
+# Contributor: Alexander Rødseth 
+# Contributor: William Rea 
+
+pkgname=libmatio
+pkgver=1.5.6
+pkgrel=1
+pkgdesc='C library with a fortran 90/95 module interface for reading/writing 
MATLAB MAT-files'
+arch=('x86_64' 'i686')
+license=('custom:BSD')
+url='http://sourceforge.net/projects/matio'
+depends=('zlib' 'hdf5')
+options=('!libtool' '!emptydirs')
+source=("http://downloads.sourceforge.net/matio/matio-${pkgver}.tar.gz;)
+changelog=ChangeLog
+md5sums=('bb53fd06f7ebb74589e9dd684b1b66a6')
+
+build() {
+  cd "matio-${pkgver}"
+  ./configure --prefix=/usr --enable-shared --with-hdf5
+  make
+}
+
+package() {
+  cd "matio-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}

Deleted: community-x86_64/ChangeLog
===
--- community-x86_64/ChangeLog  2016-02-26 18:59:04 UTC (rev 163519)
+++ community-x86_64/ChangeLog  2016-02-26 18:59:22 UTC (rev 163520)
@@ -1,2 +0,0 @@
-1.5.2-3:
-move from AUR to [community]

Copied: libmatio/repos/community-x86_64/ChangeLog (from rev 163519, 
libmatio/trunk/ChangeLog)
===
--- community-x86_64/ChangeLog  (rev 0)
+++ community-x86_64/ChangeLog  2016-02-26 18:59:22 UTC (rev 163520)
@@ -0,0 +1,5 @@
+1.5.6-1:
+upstream update
+
+1.5.2-3:
+move from AUR to [community]

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-02-26 18:59:04 UTC (rev 163519)
+++ community-x86_64/PKGBUILD   2016-02-26 18:59:22 UTC (rev 163520)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Evgeniy Alekseev 
-# Contributor: Stefan 

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

2016-02-26 Thread Evgeniy Alekseev
Date: Friday, February 26, 2016 @ 19:59:04
  Author: arcanis
Revision: 163519

upgpkg: libmatio 1.5.6-1

Modified:
  libmatio/trunk/ChangeLog
  libmatio/trunk/PKGBUILD

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

Modified: ChangeLog
===
--- ChangeLog   2016-02-26 18:12:23 UTC (rev 163518)
+++ ChangeLog   2016-02-26 18:59:04 UTC (rev 163519)
@@ -1,2 +1,5 @@
+1.5.6-1:
+upstream update
+
 1.5.2-3:
 move from AUR to [community]

Modified: PKGBUILD
===
--- PKGBUILD2016-02-26 18:12:23 UTC (rev 163518)
+++ PKGBUILD2016-02-26 18:59:04 UTC (rev 163519)
@@ -5,8 +5,8 @@
 # Contributor: William Rea 
 
 pkgname=libmatio
-pkgver=1.5.2
-pkgrel=4
+pkgver=1.5.6
+pkgrel=1
 pkgdesc='C library with a fortran 90/95 module interface for reading/writing 
MATLAB MAT-files'
 arch=('x86_64' 'i686')
 license=('custom:BSD')
@@ -15,7 +15,7 @@
 options=('!libtool' '!emptydirs')
 source=("http://downloads.sourceforge.net/matio/matio-${pkgver}.tar.gz;)
 changelog=ChangeLog
-md5sums=('85b007b99916c63791f28398f6a4c6f1')
+md5sums=('bb53fd06f7ebb74589e9dd684b1b66a6')
 
 build() {
   cd "matio-${pkgver}"


[arch-commits] Commit in electrum/repos/community-any (5 files)

2016-02-26 Thread Timothy Redaelli
Date: Friday, February 26, 2016 @ 19:12:23
  Author: tredaelli
Revision: 163518

archrelease: copy trunk to community-any

Added:
  electrum/repos/community-any/60b595356b8c049adc296deb0ffe65b357500ab4.patch
(from rev 163517, 
electrum/trunk/60b595356b8c049adc296deb0ffe65b357500ab4.patch)
  electrum/repos/community-any/PKGBUILD
(from rev 163517, electrum/trunk/PKGBUILD)
  electrum/repos/community-any/electrum.install
(from rev 163517, electrum/trunk/electrum.install)
Deleted:
  electrum/repos/community-any/PKGBUILD
  electrum/repos/community-any/electrum.install

+
 60b595356b8c049adc296deb0ffe65b357500ab4.patch |   29 ++
 PKGBUILD   |  103 ---
 electrum.install   |   22 ++--
 3 files changed, 95 insertions(+), 59 deletions(-)

Copied: 
electrum/repos/community-any/60b595356b8c049adc296deb0ffe65b357500ab4.patch 
(from rev 163517, electrum/trunk/60b595356b8c049adc296deb0ffe65b357500ab4.patch)
===
--- 60b595356b8c049adc296deb0ffe65b357500ab4.patch  
(rev 0)
+++ 60b595356b8c049adc296deb0ffe65b357500ab4.patch  2016-02-26 18:12:23 UTC 
(rev 163518)
@@ -0,0 +1,29 @@
+From 60b595356b8c049adc296deb0ffe65b357500ab4 Mon Sep 17 00:00:00 2001
+From: Andreas Hilboll 
+Date: Tue, 5 Jan 2016 12:13:15 +0100
+Subject: [PATCH] BUG: allow non-root installation on linux
+
+fixes #1607
+---
+ setup.py | 5 +
+ 1 file changed, 5 insertions(+)
+ mode change 100644 => 100755 setup.py
+
+diff --git a/setup.py b/setup.py
+old mode 100644
+new mode 100755
+index 117a7ba..943f572
+--- a/setup.py
 b/setup.py
+@@ -17,6 +17,11 @@
+ 
+ if platform.system() in ['Linux', 'FreeBSD', 'DragonFly']:
+ usr_share = os.path.join(sys.prefix, "share")
++if not os.access(usr_share, os.W_OK):
++if 'XDG_DATA_HOME' in os.environ.keys():
++usr_share = os.environ['$XDG_DATA_HOME']
++else:
++usr_share = os.path.expanduser('~/.local/share')
+ data_files += [
+ (os.path.join(usr_share, 'applications/'), ['electrum.desktop']),
+ (os.path.join(usr_share, 'pixmaps/'), ['icons/electrum.png'])

Deleted: PKGBUILD
===
--- PKGBUILD2016-02-26 18:12:13 UTC (rev 163517)
+++ PKGBUILD2016-02-26 18:12:23 UTC (rev 163518)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli 
-# Contributor: Andy Weidenbaum 
-# ThomasV PGP key: gpg --recv-key 6694D8DE7BE8EE5631BED9502BD5824B7F9470E6
-# http://bitcoin-otc.com/viewgpg.php?nick=ThomasV
-
-pkgname=electrum
-pkgver=2.5.4
-pkgrel=1
-pkgdesc="Lightweight Bitcoin wallet"
-arch=('any')
-depends=('python2-ecdsa' 'python2-pbkdf2' 'python2-requests' 'python2-pyasn1' 
'python2-pyasn1-modules' 'python2-qrcode'
- 'python2-protobuf' 'python2-tlslite' 'python2-dnspython' 
'python2-pyqt4' 'python2-sip' 'python2-slowaes')
-makedepends=('gettext' 'python2-pycurl' 'python2-setuptools' 
'desktop-file-utils')
-optdepends=('python2-btchip: BTChip hardware wallet support'
-'python2-matplotlib: plot transaction history in graphical mode'
-'zbar: QR code reading support')
-url="https://electrum.org;
-license=('GPL3')
-source=("https://download.electrum.org/${pkgver}/${pkgname^}-${pkgver}.tar.gz"{,.asc})
-md5sums=('a36929bf236c22095e656a3b34003af2'
- 'SKIP')
-sha256sums=('c0b00f440884fe3f087e842c44914e1c5f1139d0288ecb74ba6e1ff0b2504aa3'
-'SKIP')
-validpgpkeys=('6694D8DE7BE8EE5631BED9502BD5824B7F9470E6')
-
-provides=('electrum')
-install=electrum.install
-
-prepare() {
-  cd ${pkgname^}-${pkgver}
-
-  find . -type f -exec sed -i 's#/usr/bin/python#/usr/bin/python2#g' {} +
-  find . -type f -exec sed -i 's#/usr/bin/env python#/usr/bin/env python2#g' 
{} +
-}
-
-build() {
-  cd ${pkgname^}-${pkgver}
-
-  pyrcc4 icons.qrc -o gui/qt/icons_rc.py
-  python2 setup.py build
-}
-
-package() {
-  cd ${pkgname^}-${pkgver}
-
-  python2 setup.py install --root="${pkgdir}" --optimize=1
-}

Copied: electrum/repos/community-any/PKGBUILD (from rev 163517, 
electrum/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-02-26 18:12:23 UTC (rev 163518)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Timothy Redaelli 
+# Contributor: Andy Weidenbaum 
+# ThomasV PGP key: gpg --recv-key 6694D8DE7BE8EE5631BED9502BD5824B7F9470E6
+# http://bitcoin-otc.com/viewgpg.php?nick=ThomasV
+
+pkgname=electrum
+pkgver=2.6
+pkgrel=1
+pkgdesc="Lightweight Bitcoin wallet"
+arch=('any')
+depends=('python2-ecdsa' 'python2-pbkdf2' 'python2-requests' 'python2-pyasn1' 
'python2-pyasn1-modules' 'python2-qrcode'
+ 'python2-protobuf' 

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

2016-02-26 Thread Timothy Redaelli
Date: Friday, February 26, 2016 @ 19:12:13
  Author: tredaelli
Revision: 163517

upgpkg: electrum 2.6-1

Added:
  electrum/trunk/60b595356b8c049adc296deb0ffe65b357500ab4.patch
Modified:
  electrum/trunk/PKGBUILD

+
 60b595356b8c049adc296deb0ffe65b357500ab4.patch |   29 +++
 PKGBUILD   |   25 ---
 2 files changed, 45 insertions(+), 9 deletions(-)

Added: 60b595356b8c049adc296deb0ffe65b357500ab4.patch
===
--- 60b595356b8c049adc296deb0ffe65b357500ab4.patch  
(rev 0)
+++ 60b595356b8c049adc296deb0ffe65b357500ab4.patch  2016-02-26 18:12:13 UTC 
(rev 163517)
@@ -0,0 +1,29 @@
+From 60b595356b8c049adc296deb0ffe65b357500ab4 Mon Sep 17 00:00:00 2001
+From: Andreas Hilboll 
+Date: Tue, 5 Jan 2016 12:13:15 +0100
+Subject: [PATCH] BUG: allow non-root installation on linux
+
+fixes #1607
+---
+ setup.py | 5 +
+ 1 file changed, 5 insertions(+)
+ mode change 100644 => 100755 setup.py
+
+diff --git a/setup.py b/setup.py
+old mode 100644
+new mode 100755
+index 117a7ba..943f572
+--- a/setup.py
 b/setup.py
+@@ -17,6 +17,11 @@
+ 
+ if platform.system() in ['Linux', 'FreeBSD', 'DragonFly']:
+ usr_share = os.path.join(sys.prefix, "share")
++if not os.access(usr_share, os.W_OK):
++if 'XDG_DATA_HOME' in os.environ.keys():
++usr_share = os.environ['$XDG_DATA_HOME']
++else:
++usr_share = os.path.expanduser('~/.local/share')
+ data_files += [
+ (os.path.join(usr_share, 'applications/'), ['electrum.desktop']),
+ (os.path.join(usr_share, 'pixmaps/'), ['icons/electrum.png'])

Modified: PKGBUILD
===
--- PKGBUILD2016-02-26 17:55:12 UTC (rev 163516)
+++ PKGBUILD2016-02-26 18:12:13 UTC (rev 163517)
@@ -5,7 +5,7 @@
 # http://bitcoin-otc.com/viewgpg.php?nick=ThomasV
 
 pkgname=electrum
-pkgver=2.5.4
+pkgver=2.6
 pkgrel=1
 pkgdesc="Lightweight Bitcoin wallet"
 arch=('any')
@@ -16,12 +16,15 @@
 'python2-matplotlib: plot transaction history in graphical mode'
 'zbar: QR code reading support')
 url="https://electrum.org;
-license=('GPL3')
-source=("https://download.electrum.org/${pkgver}/${pkgname^}-${pkgver}.tar.gz"{,.asc})
-md5sums=('a36929bf236c22095e656a3b34003af2'
- 'SKIP')
-sha256sums=('c0b00f440884fe3f087e842c44914e1c5f1139d0288ecb74ba6e1ff0b2504aa3'
-'SKIP')
+license=(MIT)
+source=("https://download.electrum.org/${pkgver}/${pkgname^}-${pkgver}.tar.gz"{,.asc}
+60b595356b8c049adc296deb0ffe65b357500ab4.patch)
+md5sums=('63039f6e307274829a9b8cd0662e40e9'
+ 'SKIP'
+ '99509675fb508c1d10ded5cb8dd1acff')
+sha256sums=('6adb213f042fc4cdefca6675948d3a7d4b5d7ec89178d3388626ee5e0e032d29'
+'SKIP'
+'f157421a54ffd001fb0957a557f0a3a91709424ae4b78b97f0eda9e053ac3c81')
 validpgpkeys=('6694D8DE7BE8EE5631BED9502BD5824B7F9470E6')
 
 provides=('electrum')
@@ -30,8 +33,11 @@
 prepare() {
   cd ${pkgname^}-${pkgver}
 
-  find . -type f -exec sed -i 's#/usr/bin/python#/usr/bin/python2#g' {} +
-  find . -type f -exec sed -i 's#/usr/bin/env python#/usr/bin/env python2#g' 
{} +
+  find . -type f -exec sed -i 's#/usr/bin/python$#/usr/bin/python2#g' {} +
+  find . -type f -exec sed -i 's#/usr/bin/env python$#/usr/bin/env python2#g' 
{} +
+
+  # Revert commit 60b595356b8c049adc296deb0ffe65b357500ab4
+  patch -Rp1 -i "$srcdir/60b595356b8c049adc296deb0ffe65b357500ab4.patch"
 }
 
 build() {
@@ -45,4 +51,5 @@
   cd ${pkgname^}-${pkgver}
 
   python2 setup.py install --root="${pkgdir}" --optimize=1
+  install -D -m644 LICENCE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
 }


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

2016-02-26 Thread Timothy Redaelli
Date: Friday, February 26, 2016 @ 18:55:12
  Author: tredaelli
Revision: 163516

archrelease: copy trunk to community-any

Added:
  python2-jsonrpclib/repos/community-any/
  python2-jsonrpclib/repos/community-any/PKGBUILD
(from rev 163515, python2-jsonrpclib/trunk/PKGBUILD)

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

Copied: python2-jsonrpclib/repos/community-any/PKGBUILD (from rev 163515, 
python2-jsonrpclib/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2016-02-26 17:55:12 UTC (rev 163516)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Timothy Redaelli 
+# Contributor: Andy Weidenbaum 
+
+pkgname=python2-jsonrpclib
+pkgver=0.1.7
+pkgrel=1
+pkgdesc="An implementation of the JSON-RPC v2.0 specification 
(backwards-compatible) as a client library"
+arch=('any')
+depends=('python2')
+makedepends=('python2-setuptools')
+url="https://github.com/joshmarshall/jsonrpclib/;
+license=('Apache')
+source=(https://pypi.python.org/packages/source/j/${pkgname#python2-}/${pkgname#python2-}-$pkgver.tar.gz)
+md5sums=('fb67bd327fbd8b53e62ecbc1c4c6b97d')
+sha256sums=('7f50239d53b5e95b94455d5e1adae70592b5b71f0e960d3bbbfbb125788e6f0b')
+
+build() {
+  cd $srcdir/${pkgname#python2-}-$pkgver
+
+  msg2 'Building...'
+  python2 setup.py build
+}
+
+package() {
+  cd $srcdir/${pkgname#python2-}-$pkgver
+
+  msg2 'Installing...'
+  python2 setup.py install --root="$pkgdir" --optimize=1
+}


[arch-commits] Commit in (6 files)

2016-02-26 Thread Timothy Redaelli
Date: Friday, February 26, 2016 @ 18:47:26
  Author: tredaelli
Revision: 163512

New package: python2-jsonrpclib (needed by electrum 2.6)

Added:
  python2-jsonrpclib/
  python2-jsonrpclib/repos/
  python2-jsonrpclib/trunk/
  python2-jsonrpclib/trunk/PKGBUILD
Modified:
  electrum/trunk/PKGBUILD
  uthash/trunk/PKGBUILD

---+
 electrum/trunk/PKGBUILD   |   25 -
 python2-jsonrpclib/trunk/PKGBUILD |   30 ++
 uthash/trunk/PKGBUILD |2 +-
 3 files changed, 47 insertions(+), 10 deletions(-)

Modified: electrum/trunk/PKGBUILD
===
--- electrum/trunk/PKGBUILD 2016-02-26 17:35:31 UTC (rev 163511)
+++ electrum/trunk/PKGBUILD 2016-02-26 17:47:26 UTC (rev 163512)
@@ -5,7 +5,7 @@
 # http://bitcoin-otc.com/viewgpg.php?nick=ThomasV
 
 pkgname=electrum
-pkgver=2.5.4
+pkgver=2.6
 pkgrel=1
 pkgdesc="Lightweight Bitcoin wallet"
 arch=('any')
@@ -16,12 +16,15 @@
 'python2-matplotlib: plot transaction history in graphical mode'
 'zbar: QR code reading support')
 url="https://electrum.org;
-license=('GPL3')
-source=("https://download.electrum.org/${pkgver}/${pkgname^}-${pkgver}.tar.gz"{,.asc})
-md5sums=('a36929bf236c22095e656a3b34003af2'
- 'SKIP')
-sha256sums=('c0b00f440884fe3f087e842c44914e1c5f1139d0288ecb74ba6e1ff0b2504aa3'
-'SKIP')
+license=(MIT)
+source=("https://download.electrum.org/${pkgver}/${pkgname^}-${pkgver}.tar.gz"{,.asc}
+60b595356b8c049adc296deb0ffe65b357500ab4.patch)
+md5sums=('63039f6e307274829a9b8cd0662e40e9'
+ 'SKIP'
+ '99509675fb508c1d10ded5cb8dd1acff')
+sha256sums=('6adb213f042fc4cdefca6675948d3a7d4b5d7ec89178d3388626ee5e0e032d29'
+'SKIP'
+'f157421a54ffd001fb0957a557f0a3a91709424ae4b78b97f0eda9e053ac3c81')
 validpgpkeys=('6694D8DE7BE8EE5631BED9502BD5824B7F9470E6')
 
 provides=('electrum')
@@ -30,8 +33,11 @@
 prepare() {
   cd ${pkgname^}-${pkgver}
 
-  find . -type f -exec sed -i 's#/usr/bin/python#/usr/bin/python2#g' {} +
-  find . -type f -exec sed -i 's#/usr/bin/env python#/usr/bin/env python2#g' 
{} +
+  find . -type f -exec sed -i 's#/usr/bin/python$#/usr/bin/python2#g' {} +
+  find . -type f -exec sed -i 's#/usr/bin/env python$#/usr/bin/env python2#g' 
{} +
+
+  # Revert commit 60b595356b8c049adc296deb0ffe65b357500ab4
+  patch -Rp1 -i "$srcdir/60b595356b8c049adc296deb0ffe65b357500ab4.patch"
 }
 
 build() {
@@ -45,4 +51,5 @@
   cd ${pkgname^}-${pkgver}
 
   python2 setup.py install --root="${pkgdir}" --optimize=1
+  install -D -m644 LICENCE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
 }

Added: python2-jsonrpclib/trunk/PKGBUILD
===
--- python2-jsonrpclib/trunk/PKGBUILD   (rev 0)
+++ python2-jsonrpclib/trunk/PKGBUILD   2016-02-26 17:47:26 UTC (rev 163512)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Timothy Redaelli 
+# Contributor: Andy Weidenbaum 
+
+pkgname=python2-jsonrpclib
+pkgver=0.1.7
+pkgrel=1
+pkgdesc="An implementation of the JSON-RPC v2.0 specification 
(backwards-compatible) as a client library"
+arch=('any')
+depends=('python2')
+makedepends=('python2-setuptools')
+url="https://github.com/joshmarshall/jsonrpclib/;
+license=('Apache')
+source=(https://pypi.python.org/packages/source/j/${pkgname#python2-}/${pkgname#python2-}-$pkgver.tar.gz)
+md5sums=('fb67bd327fbd8b53e62ecbc1c4c6b97d')
+sha256sums=('7f50239d53b5e95b94455d5e1adae70592b5b71f0e960d3bbbfbb125788e6f0b')
+
+build() {
+  cd $srcdir/${pkgname#python2-}-$pkgver
+
+  msg2 'Building...'
+  python2 setup.py build
+}
+
+package() {
+  cd $srcdir/${pkgname#python2-}-$pkgver
+
+  msg2 'Installing...'
+  python2 setup.py install --root="$pkgdir" --optimize=1
+}


Property changes on: python2-jsonrpclib/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Modified: uthash/trunk/PKGBUILD
===
--- uthash/trunk/PKGBUILD   2016-02-26 17:35:31 UTC (rev 163511)
+++ uthash/trunk/PKGBUILD   2016-02-26 17:47:26 UTC (rev 163512)
@@ -2,7 +2,7 @@
 # Maintainer: Timothy Redaelli 
 # Contributor: Michael Frey 
 pkgname=uthash
-pkgver=1.9.9
+pkgver=1.9.9.1
 pkgrel=1
 pkgdesc="C preprocessor implementations of a hash table and a linked list"
 arch=('any')


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

2016-02-26 Thread Timothy Redaelli
Date: Friday, February 26, 2016 @ 18:51:44
  Author: tredaelli
Revision: 163515

Partially revert 163512

Modified:
  electrum/trunk/PKGBUILD
  uthash/trunk/PKGBUILD

-+
 electrum/trunk/PKGBUILD |   25 +
 uthash/trunk/PKGBUILD   |2 +-
 2 files changed, 10 insertions(+), 17 deletions(-)

Modified: electrum/trunk/PKGBUILD
===
--- electrum/trunk/PKGBUILD 2016-02-26 17:48:10 UTC (rev 163514)
+++ electrum/trunk/PKGBUILD 2016-02-26 17:51:44 UTC (rev 163515)
@@ -5,7 +5,7 @@
 # http://bitcoin-otc.com/viewgpg.php?nick=ThomasV
 
 pkgname=electrum
-pkgver=2.6
+pkgver=2.5.4
 pkgrel=1
 pkgdesc="Lightweight Bitcoin wallet"
 arch=('any')
@@ -16,15 +16,12 @@
 'python2-matplotlib: plot transaction history in graphical mode'
 'zbar: QR code reading support')
 url="https://electrum.org;
-license=(MIT)
-source=("https://download.electrum.org/${pkgver}/${pkgname^}-${pkgver}.tar.gz"{,.asc}
-60b595356b8c049adc296deb0ffe65b357500ab4.patch)
-md5sums=('63039f6e307274829a9b8cd0662e40e9'
- 'SKIP'
- '99509675fb508c1d10ded5cb8dd1acff')
-sha256sums=('6adb213f042fc4cdefca6675948d3a7d4b5d7ec89178d3388626ee5e0e032d29'
-'SKIP'
-'f157421a54ffd001fb0957a557f0a3a91709424ae4b78b97f0eda9e053ac3c81')
+license=('GPL3')
+source=("https://download.electrum.org/${pkgver}/${pkgname^}-${pkgver}.tar.gz"{,.asc})
+md5sums=('a36929bf236c22095e656a3b34003af2'
+ 'SKIP')
+sha256sums=('c0b00f440884fe3f087e842c44914e1c5f1139d0288ecb74ba6e1ff0b2504aa3'
+'SKIP')
 validpgpkeys=('6694D8DE7BE8EE5631BED9502BD5824B7F9470E6')
 
 provides=('electrum')
@@ -33,11 +30,8 @@
 prepare() {
   cd ${pkgname^}-${pkgver}
 
-  find . -type f -exec sed -i 's#/usr/bin/python$#/usr/bin/python2#g' {} +
-  find . -type f -exec sed -i 's#/usr/bin/env python$#/usr/bin/env python2#g' 
{} +
-
-  # Revert commit 60b595356b8c049adc296deb0ffe65b357500ab4
-  patch -Rp1 -i "$srcdir/60b595356b8c049adc296deb0ffe65b357500ab4.patch"
+  find . -type f -exec sed -i 's#/usr/bin/python#/usr/bin/python2#g' {} +
+  find . -type f -exec sed -i 's#/usr/bin/env python#/usr/bin/env python2#g' 
{} +
 }
 
 build() {
@@ -51,5 +45,4 @@
   cd ${pkgname^}-${pkgver}
 
   python2 setup.py install --root="${pkgdir}" --optimize=1
-  install -D -m644 LICENCE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
 }

Modified: uthash/trunk/PKGBUILD
===
--- uthash/trunk/PKGBUILD   2016-02-26 17:48:10 UTC (rev 163514)
+++ uthash/trunk/PKGBUILD   2016-02-26 17:51:44 UTC (rev 163515)
@@ -2,7 +2,7 @@
 # Maintainer: Timothy Redaelli 
 # Contributor: Michael Frey 
 pkgname=uthash
-pkgver=1.9.9.1
+pkgver=1.9.9
 pkgrel=1
 pkgdesc="C preprocessor implementations of a hash table and a linked list"
 arch=('any')


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

2016-02-26 Thread Evgeniy Alekseev
Date: Friday, February 26, 2016 @ 18:48:10
  Author: arcanis
Revision: 163514

archrelease: copy trunk to community-any

Added:
  zsh-completions/repos/community-any/ChangeLog
(from rev 163513, zsh-completions/trunk/ChangeLog)
  zsh-completions/repos/community-any/LICENSE-BSD
(from rev 163513, zsh-completions/trunk/LICENSE-BSD)
  zsh-completions/repos/community-any/LICENSE-MIT
(from rev 163513, zsh-completions/trunk/LICENSE-MIT)
  zsh-completions/repos/community-any/PKGBUILD
(from rev 163513, zsh-completions/trunk/PKGBUILD)
Deleted:
  zsh-completions/repos/community-any/ChangeLog
  zsh-completions/repos/community-any/LICENSE-BSD
  zsh-completions/repos/community-any/LICENSE-MIT
  zsh-completions/repos/community-any/PKGBUILD

-+
 ChangeLog   |   31 -
 LICENSE-BSD |   48 +++---
 LICENSE-MIT |   38 ++--
 PKGBUILD|   60 +-
 4 files changed, 90 insertions(+), 87 deletions(-)

Deleted: ChangeLog
===
--- ChangeLog   2016-02-26 17:47:55 UTC (rev 163513)
+++ ChangeLog   2016-02-26 17:48:10 UTC (rev 163514)
@@ -1,14 +0,0 @@
-0.15.0-1:
-upstream update
-
-0.14.0-2:
-fix build
-
-0.14.0-1:
-upstream update
-
-0.12.0-2:
-drop _salt completions since it is provided by upstream
-
-0.12.0-1:
-ustream update

Copied: zsh-completions/repos/community-any/ChangeLog (from rev 163513, 
zsh-completions/trunk/ChangeLog)
===
--- ChangeLog   (rev 0)
+++ ChangeLog   2016-02-26 17:48:10 UTC (rev 163514)
@@ -0,0 +1,17 @@
+0.16.0-1:
+upstream update
+
+0.15.0-1:
+upstream update
+
+0.14.0-2:
+fix build
+
+0.14.0-1:
+upstream update
+
+0.12.0-2:
+drop _salt completions since it is provided by upstream
+
+0.12.0-1:
+ustream update

Deleted: LICENSE-BSD
===
--- LICENSE-BSD 2016-02-26 17:47:55 UTC (rev 163513)
+++ LICENSE-BSD 2016-02-26 17:48:10 UTC (rev 163514)
@@ -1,24 +0,0 @@
-Copyright (c) 2011 Github zsh-users - http://github.com/zsh-users
-All rights reserved.
-
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions are met:
-* Redistributions of source code must retain the above copyright
-  notice, this list of conditions and the following disclaimer.
-* Redistributions in binary form must reproduce the above copyright
-  notice, this list of conditions and the following disclaimer in the
-  documentation and/or other materials provided with the distribution.
-* Neither the name of the zsh-users nor the
-  names of its contributors may be used to endorse or promote products
-  derived from this software without specific prior written permission.
-
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
-ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-DISCLAIMED. IN NO EVENT SHALL ZSH-USERS BE LIABLE FOR ANY
-DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
-ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
-SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

Copied: zsh-completions/repos/community-any/LICENSE-BSD (from rev 163513, 
zsh-completions/trunk/LICENSE-BSD)
===
--- LICENSE-BSD (rev 0)
+++ LICENSE-BSD 2016-02-26 17:48:10 UTC (rev 163514)
@@ -0,0 +1,24 @@
+Copyright (c) 2011 Github zsh-users - http://github.com/zsh-users
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are met:
+* Redistributions of source code must retain the above copyright
+  notice, this list of conditions and the following disclaimer.
+* Redistributions in binary form must reproduce the above copyright
+  notice, this list of conditions and the following disclaimer in the
+  documentation and/or other materials provided with the distribution.
+* Neither the name of the zsh-users nor the
+  names of its contributors may be used to endorse or promote products
+  derived from this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
+ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+WARRANTIES 

[arch-commits] Commit in zsh-completions/trunk (ChangeLog PKGBUILD)

2016-02-26 Thread Evgeniy Alekseev
Date: Friday, February 26, 2016 @ 18:47:55
  Author: arcanis
Revision: 163513

upgpkg: zsh-completions 0.16.0-1

Modified:
  zsh-completions/trunk/ChangeLog
  zsh-completions/trunk/PKGBUILD

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

Modified: ChangeLog
===
--- ChangeLog   2016-02-26 17:47:26 UTC (rev 163512)
+++ ChangeLog   2016-02-26 17:47:55 UTC (rev 163513)
@@ -1,3 +1,6 @@
+0.16.0-1:
+upstream update
+
 0.15.0-1:
 upstream update
 

Modified: PKGBUILD
===
--- PKGBUILD2016-02-26 17:47:26 UTC (rev 163512)
+++ PKGBUILD2016-02-26 17:47:55 UTC (rev 163513)
@@ -3,7 +3,7 @@
 # Contributor: Julien Nicoulaud 
 
 pkgname=zsh-completions
-pkgver=0.15.0
+pkgver=0.16.0
 pkgrel=1
 pkgdesc="Additional completion definitions for Zsh"
 arch=(any)
@@ -13,7 +13,7 @@
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/zsh-users/${pkgname}/tarball/${pkgver};
 "LICENSE-BSD"
 "LICENSE-MIT")
-md5sums=('9dfa8ff0dd3784ceed4dc183c2853121'
+md5sums=('d45ef2e769aee59d3bb9e050c0038874'
  '4f686c32a301905655f945fbbdd56880'
  '159dd6fa77daca30268c2438111becae')
 changelog=ChangeLog


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

2016-02-26 Thread Evgeniy Alekseev
Date: Friday, February 26, 2016 @ 18:35:31
  Author: arcanis
Revision: 163511

archrelease: copy trunk to community-any

Added:
  python-mysql-connector/repos/community-any/ChangeLog
(from rev 163510, python-mysql-connector/trunk/ChangeLog)
  python-mysql-connector/repos/community-any/PKGBUILD
(from rev 163510, python-mysql-connector/trunk/PKGBUILD)
Deleted:
  python-mysql-connector/repos/community-any/ChangeLog
  python-mysql-connector/repos/community-any/PKGBUILD

---+
 ChangeLog |   43 +++-
 PKGBUILD  |   92 ++--
 2 files changed, 69 insertions(+), 66 deletions(-)

Deleted: ChangeLog
===
--- ChangeLog   2016-02-26 17:35:17 UTC (rev 163510)
+++ ChangeLog   2016-02-26 17:35:31 UTC (rev 163511)
@@ -1,20 +0,0 @@
-2.0.4-2:
-python3.5 rebuild
-
-2.0.4-1:
-upstream update
-
-2.0.3-1:
-upstream update
-
-2.0.2-1:
-upstream update
-
-2.0.1-1:
-upstream update
-
-1.2.3-1:
-upstream update
-
-1.2.2-1:
-move from AUR into [community]

Copied: python-mysql-connector/repos/community-any/ChangeLog (from rev 163510, 
python-mysql-connector/trunk/ChangeLog)
===
--- ChangeLog   (rev 0)
+++ ChangeLog   2016-02-26 17:35:31 UTC (rev 163511)
@@ -0,0 +1,23 @@
+2.1.3-1:
+upstream update
+
+2.0.4-2:
+python3.5 rebuild
+
+2.0.4-1:
+upstream update
+
+2.0.3-1:
+upstream update
+
+2.0.2-1:
+upstream update
+
+2.0.1-1:
+upstream update
+
+1.2.3-1:
+upstream update
+
+1.2.2-1:
+move from AUR into [community]

Deleted: PKGBUILD
===
--- PKGBUILD2016-02-26 17:35:17 UTC (rev 163510)
+++ PKGBUILD2016-02-26 17:35:31 UTC (rev 163511)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Evgeniy Alekseev 
-# Contributor: Raphaël Doursenaud 
-
-pkgbase=python-mysql-connector
-pkgname=('python-mysql-connector' 'python2-mysql-connector')
-_pkgname=mysql-connector-python
-pkgver=2.0.4
-pkgrel=2
-pkgdesc="A standardized database driver for Python platforms and development"
-arch=('any')
-url="http://dev.mysql.com/downloads/connector/python/;
-license=('GPL')
-depends=('python' 'python2')
-source=("http://cdn.mysql.com/Downloads/Connector-Python/${_pkgname}-${pkgver}.tar.gz;)
-md5sums=('d6f5532a79c80f0daa90c0f8fc3a0952')
-changelog=ChangeLog
-
-prepare() {
-  cp -r "${_pkgname}-${pkgver}" "${_pkgname}-${pkgver}-py2"
-  # change python to python2
-  find "${_pkgname}-${pkgver}-py2" -name '*.py' -type f -exec \
-  sed -i 's|env python|env python2|' {} \;
-}
-
-build() {
-  cd "${srcdir}/${_pkgname}-${pkgver}"
-  python setup.py build
-
-  cd "${srcdir}/${_pkgname}-${pkgver}-py2"
-  python2 setup.py build
-}
-
-package_python-mysql-connector() {
-  depends=('python')
-
-  cd "${srcdir}/${_pkgname}-${pkgver}"
-  python setup.py install --root="${pkgdir}" --optimize=1
-}
-
-package_python2-mysql-connector() {
-  depends=('python2')
-
-  cd "${srcdir}/${_pkgname}-${pkgver}-py2"
-  python2 setup.py install --root="${pkgdir}" --optimize=1
-}

Copied: python-mysql-connector/repos/community-any/PKGBUILD (from rev 163510, 
python-mysql-connector/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-02-26 17:35:31 UTC (rev 163511)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Evgeniy Alekseev 
+# Contributor: Raphaël Doursenaud 
+
+pkgbase=python-mysql-connector
+pkgname=('python-mysql-connector' 'python2-mysql-connector')
+_pkgname=mysql-connector-python
+pkgver=2.1.3
+pkgrel=1
+pkgdesc="A standardized database driver for Python platforms and development"
+arch=('any')
+url="http://dev.mysql.com/downloads/connector/python/;
+license=('GPL')
+depends=('python' 'python2')
+source=("http://cdn.mysql.com/Downloads/Connector-Python/${_pkgname}-${pkgver}.tar.gz;)
+md5sums=('20bf8e52e24804915f9d85c1aa161c55')
+changelog=ChangeLog
+
+prepare() {
+  cp -r "${_pkgname}-${pkgver}" "${_pkgname}-${pkgver}-py2"
+  # change python to python2
+  find "${_pkgname}-${pkgver}-py2" -name '*.py' -type f -exec \
+  sed -i 's|env python|env python2|' {} \;
+}
+
+build() {
+  cd "${srcdir}/${_pkgname}-${pkgver}"
+  python setup.py build
+
+  cd "${srcdir}/${_pkgname}-${pkgver}-py2"
+  python2 setup.py build
+}
+
+package_python-mysql-connector() {
+  depends=('python')
+
+  cd "${srcdir}/${_pkgname}-${pkgver}"
+  python setup.py install --root="${pkgdir}" --optimize=1
+}
+
+package_python2-mysql-connector() {
+  depends=('python2')
+
+  cd "${srcdir}/${_pkgname}-${pkgver}-py2"
+  python2 setup.py install --root="${pkgdir}" --optimize=1
+}


[arch-commits] Commit in python-mysql-connector/trunk (ChangeLog PKGBUILD)

2016-02-26 Thread Evgeniy Alekseev
Date: Friday, February 26, 2016 @ 18:35:17
  Author: arcanis
Revision: 163510

upgpkg: python-mysql-connector 2.1.3-1

Modified:
  python-mysql-connector/trunk/ChangeLog
  python-mysql-connector/trunk/PKGBUILD

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

Modified: ChangeLog
===
--- ChangeLog   2016-02-26 17:12:22 UTC (rev 163509)
+++ ChangeLog   2016-02-26 17:35:17 UTC (rev 163510)
@@ -1,3 +1,6 @@
+2.1.3-1:
+upstream update
+
 2.0.4-2:
 python3.5 rebuild
 

Modified: PKGBUILD
===
--- PKGBUILD2016-02-26 17:12:22 UTC (rev 163509)
+++ PKGBUILD2016-02-26 17:35:17 UTC (rev 163510)
@@ -5,8 +5,8 @@
 pkgbase=python-mysql-connector
 pkgname=('python-mysql-connector' 'python2-mysql-connector')
 _pkgname=mysql-connector-python
-pkgver=2.0.4
-pkgrel=2
+pkgver=2.1.3
+pkgrel=1
 pkgdesc="A standardized database driver for Python platforms and development"
 arch=('any')
 url="http://dev.mysql.com/downloads/connector/python/;
@@ -13,7 +13,7 @@
 license=('GPL')
 depends=('python' 'python2')
 
source=("http://cdn.mysql.com/Downloads/Connector-Python/${_pkgname}-${pkgver}.tar.gz;)
-md5sums=('d6f5532a79c80f0daa90c0f8fc3a0952')
+md5sums=('20bf8e52e24804915f9d85c1aa161c55')
 changelog=ChangeLog
 
 prepare() {


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

2016-02-26 Thread Timothy Redaelli
Date: Friday, February 26, 2016 @ 18:12:22
  Author: tredaelli
Revision: 163509

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

Added:
  bitcoin/repos/community-i686/PKGBUILD
(from rev 163508, bitcoin/trunk/PKGBUILD)
  bitcoin/repos/community-i686/bitcoin-qt.install
(from rev 163508, bitcoin/trunk/bitcoin-qt.install)
  bitcoin/repos/community-x86_64/PKGBUILD
(from rev 163508, bitcoin/trunk/PKGBUILD)
  bitcoin/repos/community-x86_64/bitcoin-qt.install
(from rev 163508, bitcoin/trunk/bitcoin-qt.install)
Deleted:
  bitcoin/repos/community-i686/PKGBUILD
  bitcoin/repos/community-i686/bitcoin-qt.install
  bitcoin/repos/community-x86_64/PKGBUILD
  bitcoin/repos/community-x86_64/bitcoin-qt.install

-+
 /PKGBUILD   |  204 ++
 /bitcoin-qt.install |   22 +++
 community-i686/PKGBUILD |   80 -
 community-i686/bitcoin-qt.install   |   11 -
 community-x86_64/PKGBUILD   |   80 -
 community-x86_64/bitcoin-qt.install |   11 -
 6 files changed, 226 insertions(+), 182 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-02-26 17:12:11 UTC (rev 163508)
+++ community-i686/PKGBUILD 2016-02-26 17:12:22 UTC (rev 163509)
@@ -1,80 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli 
-# Contributor: shahid 
-
-pkgbase=bitcoin
-pkgname=('bitcoin-daemon' 'bitcoin-cli' 'bitcoin-qt')
-pkgver=0.12.0
-pkgrel=1
-arch=('i686' 'x86_64')
-url="http://www.bitcoin.org/;
-makedepends=('boost' 'libevent' 'qt5-base' 'qt5-tools' 'qrencode' 'miniupnpc' 
'protobuf')
-license=('MIT')
-source=(http://bitcoin.org/bin/bitcoin-core-$pkgver/bitcoin-$pkgver.tar.gz
-   
https://raw.github.com/bitcoin/bitcoin/v$pkgver/contrib/debian/bitcoin-qt.desktop
-   
https://raw.github.com/bitcoin/bitcoin/v$pkgver/share/pixmaps/bitcoin128.png
-   
https://raw.github.com/bitcoin/bitcoin/v$pkgver/contrib/debian/examples/bitcoin.conf
-   
https://raw.github.com/bitcoin/bitcoin/v$pkgver/contrib/debian/manpages/bitcoind.1
-   
https://raw.github.com/bitcoin/bitcoin/v$pkgver/contrib/debian/manpages/bitcoin.conf.5)
-sha256sums=('0f1cda66c841a548a07cc37e80b0727354b1236d9f374c7d44362acdb85eb3e1'
-'b65b377c0d9ecae9eea722843bca0add6bdb7e50929a7e1f751b79b6621c6073'
-'ad880c8459ecfdb96abe6a4689af06bdd27906e0edcd39d0915482f2da91e722'
-'30a30533cc3f2dbaea3ca1fab69e775a2b64aa0c1c510f9639a25910cb80fc4a'
-'829d5d38c8c3145b6debcb569bfa75acdfcfab5d914495b56ceb4d02060f130f'
-'9acf7f46052f6e508af4f38be4574f34bf0f57d2cf462f072606d3f177b4c957')
-
-# Upstream should be more coherent!
-case "$pkgver" in
-*.*.*.*)
-  _pkgver=${pkgver%.*}
-  ;;
-*)
-  _pkgver=$pkgver
-  ;;
-esac
-
-build() {
-  cd "$srcdir/$pkgbase-$pkgver"
-  CXXFLAGS="$CXXFLAGS -DBOOST_VARIANT_USE_RELAXED_GET_BY_DEFAULT=1 
-UUPNPDISCOVER_SUCCESS"
-  ./configure --prefix=/usr --with-incompatible-bdb --with-gui=qt5
-  make
-}
-
-package_bitcoin-qt() {
-  pkgdesc="Bitcoin is a peer-to-peer network based digital currency - Qt"
-  depends=(boost-libs desktop-file-utils libevent qt5-base miniupnpc qrencode 
protobuf)
-  install=bitcoin-qt.install
-
-  cd "$pkgbase-$pkgver"
-  install -Dm755 src/qt/bitcoin-qt "$pkgdir"/usr/bin/bitcoin-qt
-  install -Dm644 "$srcdir"/bitcoin-qt.desktop \
-"$pkgdir"/usr/share/applications/bitcoin.desktop
-  install -Dm644 "$srcdir"/bitcoin128.png \
-"$pkgdir"/usr/share/pixmaps/bitcoin128.png
-
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
-}
-
-package_bitcoin-daemon() {
-  pkgdesc="Bitcoin is a peer-to-peer network based digital currency - daemon"
-  depends=(boost-libs libevent miniupnpc)
-
-  cd "$pkgbase-$pkgver"
-  install -Dm755 src/bitcoind "$pkgdir"/usr/bin/bitcoind
-  install -Dm644 "$srcdir"/bitcoin.conf \
-"$pkgdir/usr/share/doc/$pkgname/examples/bitcoin.conf"
-  install -Dm644 "$srcdir"/bitcoind.1 \
-"$pkgdir"/usr/share/man/man1/bitcoind.1
-  install -Dm644 "$srcdir"/bitcoin.conf.5 \
-"$pkgdir"/usr/share/man/man5/bitcoin.conf.5
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
-}
-
-package_bitcoin-cli() {
-  pkgdesc="Bitcoin is a peer-to-peer network based digital currency - RPC 
client"
-  depends=(boost-libs libevent)
-
-  cd "$pkgbase-$pkgver"
-  install -Dm755 src/bitcoin-cli "$pkgdir"/usr/bin/bitcoin-cli
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
-}

Copied: bitcoin/repos/community-i686/PKGBUILD (from rev 163508, 
bitcoin/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-02-26 17:12:22 UTC (rev 163509)
@@ -0,0 +1,102 @@
+# $Id$
+# Maintainer: Timothy 

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

2016-02-26 Thread Timothy Redaelli
Date: Friday, February 26, 2016 @ 18:12:11
  Author: tredaelli
Revision: 163508

upgpkg: bitcoin 0.12.0-2

Build also bitcoin-tx and update manpages and example configuration

Modified:
  bitcoin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-26 15:21:24 UTC (rev 163507)
+++ PKGBUILD2016-02-26 17:12:11 UTC (rev 163508)
@@ -2,26 +2,28 @@
 # Maintainer: Timothy Redaelli 
 # Contributor: shahid 
 
+#_dbver=4.8.30
 pkgbase=bitcoin
-pkgname=('bitcoin-daemon' 'bitcoin-cli' 'bitcoin-qt')
+pkgname=('bitcoin-daemon' 'bitcoin-cli' 'bitcoin-qt' 'bitcoin-tx')
 pkgver=0.12.0
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 url="http://www.bitcoin.org/;
 makedepends=('boost' 'libevent' 'qt5-base' 'qt5-tools' 'qrencode' 'miniupnpc' 
'protobuf')
 license=('MIT')
 source=(http://bitcoin.org/bin/bitcoin-core-$pkgver/bitcoin-$pkgver.tar.gz
-   
https://raw.github.com/bitcoin/bitcoin/v$pkgver/contrib/debian/bitcoin-qt.desktop
-   
https://raw.github.com/bitcoin/bitcoin/v$pkgver/share/pixmaps/bitcoin128.png
-   
https://raw.github.com/bitcoin/bitcoin/v$pkgver/contrib/debian/examples/bitcoin.conf
-   
https://raw.github.com/bitcoin/bitcoin/v$pkgver/contrib/debian/manpages/bitcoind.1
-   
https://raw.github.com/bitcoin/bitcoin/v$pkgver/contrib/debian/manpages/bitcoin.conf.5)
+
https://raw.github.com/bitcoin/bitcoin/v$pkgver/contrib/debian/bitcoin-qt.desktop
+
https://raw.github.com/bitcoin/bitcoin/v$pkgver/share/pixmaps/bitcoin128.png
+
https://raw.github.com/bitcoin/bitcoin/v$pkgver/contrib/debian/examples/bitcoin.conf
+
https://raw.github.com/bitcoin/bitcoin/v$pkgver/contrib/debian/manpages/bitcoind.1
+
https://raw.github.com/bitcoin/bitcoin/v$pkgver/contrib/debian/manpages/bitcoin.conf.5)
+#http://download.oracle.com/berkeley-db/db-${_dbver}.NC.tar.gz
 sha256sums=('0f1cda66c841a548a07cc37e80b0727354b1236d9f374c7d44362acdb85eb3e1'
 'b65b377c0d9ecae9eea722843bca0add6bdb7e50929a7e1f751b79b6621c6073'
 'ad880c8459ecfdb96abe6a4689af06bdd27906e0edcd39d0915482f2da91e722'
-'30a30533cc3f2dbaea3ca1fab69e775a2b64aa0c1c510f9639a25910cb80fc4a'
-'829d5d38c8c3145b6debcb569bfa75acdfcfab5d914495b56ceb4d02060f130f'
-'9acf7f46052f6e508af4f38be4574f34bf0f57d2cf462f072606d3f177b4c957')
+'efe06ab377706338bc75fa1e24de9785950029f3350a17a4b8ce563b760f3c0c'
+'7d090ddd485c36d4fae5e6627388c5550f824fd498d5fd958ec999857fff7b28'
+'7f4021e34d52c321f679b548fcf6d55b4da30077b7aed392976f048ab88dcdd1')
 
 # Upstream should be more coherent!
 case "$pkgver" in
@@ -33,10 +35,19 @@
   ;;
 esac
 
+# TODO: Build using db 4.8.30
+#prepare() {
+#  mkdir -p db4
+#}
+
 build() {
+#  cd "db-$_dbver.NC/build_unix"
+#  ../dist/configure --enable-cxx --disable-shared --with-pic 
--prefix="$srcdir/db4"
+#  make
+#  make install
+
   cd "$srcdir/$pkgbase-$pkgver"
-  CXXFLAGS="$CXXFLAGS -DBOOST_VARIANT_USE_RELAXED_GET_BY_DEFAULT=1 
-UUPNPDISCOVER_SUCCESS"
-  ./configure --prefix=/usr --with-incompatible-bdb --with-gui=qt5
+  ./configure --prefix=/usr --with-gui=qt5 --with-incompatible-bdb 
#LDFLAGS="-L$srcdir/db4/lib/ $LDFLAGS" CPPFLAGS="-I$srcdir/db4/include/ 
$CPPFLAGS"
   make
 }
 
@@ -78,3 +89,14 @@
   install -Dm755 src/bitcoin-cli "$pkgdir"/usr/bin/bitcoin-cli
   install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
 }
+
+package_bitcoin-tx() {
+  pkgdesc="Bitcoin is a peer-to-peer network based digital currency - 
Transaction tool"
+  depends=(boost-libs openssl)
+
+  cd "$pkgbase-$pkgver"
+  install -Dm755 src/bitcoin-tx "$pkgdir"/usr/bin/bitcoin-tx
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
+}
+
+# vim:set ts=2 sw=2 et:


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

2016-02-26 Thread Felix Yan
Date: Friday, February 26, 2016 @ 16:21:07
  Author: fyan
Revision: 163506

upgpkg: autopep8 1.2.2-1

Modified:
  autopep8/trunk/PKGBUILD   (contents, properties)

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-26 14:54:44 UTC (rev 163505)
+++ PKGBUILD2016-02-26 15:21:07 UTC (rev 163506)
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 156190 2016-01-13 01:59:24Z fyan $
+# $Id$
 # Maintainer: Felix Yan 
 # Contributor: Ismael Carnales 
 # Contributor: Sergey Mastykov 
@@ -5,7 +5,7 @@
 
 pkgbase=autopep8
 pkgname=(autopep8 python2-autopep8)
-pkgver=1.2.1
+pkgver=1.2.2
 pkgrel=1
 pkgdesc="A tool that automatically formats Python code to conform to the PEP 8 
style guide"
 arch=('any')


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


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

2016-02-26 Thread Felix Yan
Date: Friday, February 26, 2016 @ 16:21:24
  Author: fyan
Revision: 163507

archrelease: copy trunk to community-any

Added:
  autopep8/repos/community-any/PKGBUILD
(from rev 163506, autopep8/trunk/PKGBUILD)
Deleted:
  autopep8/repos/community-any/PKGBUILD

--+
 PKGBUILD |  118 ++---
 1 file changed, 59 insertions(+), 59 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-02-26 15:21:07 UTC (rev 163506)
+++ PKGBUILD2016-02-26 15:21:24 UTC (rev 163507)
@@ -1,59 +0,0 @@
-# $Id: PKGBUILD 156190 2016-01-13 01:59:24Z fyan $
-# Maintainer: Felix Yan 
-# Contributor: Ismael Carnales 
-# Contributor: Sergey Mastykov 
-
-pkgbase=autopep8
-pkgname=(autopep8 python2-autopep8)
-pkgver=1.2.1
-pkgrel=1
-pkgdesc="A tool that automatically formats Python code to conform to the PEP 8 
style guide"
-arch=('any')
-url="http://github.com/hhatto/autopep8;
-license=('MIT')
-makedepends=('pep8' 'python2-pep8' 'git')
-source=("git+https://github.com/hhatto/autopep8.git#tag=ver$pkgver;)
-sha256sums=('SKIP')
-
-prepare() {
-  cp -a autopep8{,-py2}
-}
-
-build() {
-  cd "$srcdir"/autopep8
-  python setup.py build
-
-  cd "$srcdir"/autopep8-py2
-  python2 setup.py build
-}
-
-check() {
-  export LC_CTYPE=en_US.UTF-8
-
-  cd "$srcdir"/autopep8
-  python setup.py test
-
-  cd "$srcdir"/autopep8-py2
-  python2 setup.py test
-}
-
-package_autopep8() {
-  depends=('pep8')
-
-  cd autopep8
-  python3 setup.py install -O1 --prefix=/usr --root="$pkgdir/"
-
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_python2-autopep8() {
-  depends=('python2-pep8')
-
-  cd autopep8-py2
-  python2 setup.py install -O1 --prefix=/usr --root="$pkgdir/"
-  mv "$pkgdir/usr/bin/autopep8" "$pkgdir/usr/bin/autopep8-python2"
-
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: autopep8/repos/community-any/PKGBUILD (from rev 163506, 
autopep8/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-02-26 15:21:24 UTC (rev 163507)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Ismael Carnales 
+# Contributor: Sergey Mastykov 
+
+pkgbase=autopep8
+pkgname=(autopep8 python2-autopep8)
+pkgver=1.2.2
+pkgrel=1
+pkgdesc="A tool that automatically formats Python code to conform to the PEP 8 
style guide"
+arch=('any')
+url="http://github.com/hhatto/autopep8;
+license=('MIT')
+makedepends=('pep8' 'python2-pep8' 'git')
+source=("git+https://github.com/hhatto/autopep8.git#tag=ver$pkgver;)
+sha256sums=('SKIP')
+
+prepare() {
+  cp -a autopep8{,-py2}
+}
+
+build() {
+  cd "$srcdir"/autopep8
+  python setup.py build
+
+  cd "$srcdir"/autopep8-py2
+  python2 setup.py build
+}
+
+check() {
+  export LC_CTYPE=en_US.UTF-8
+
+  cd "$srcdir"/autopep8
+  python setup.py test
+
+  cd "$srcdir"/autopep8-py2
+  python2 setup.py test
+}
+
+package_autopep8() {
+  depends=('pep8')
+
+  cd autopep8
+  python3 setup.py install -O1 --prefix=/usr --root="$pkgdir/"
+
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_python2-autopep8() {
+  depends=('python2-pep8')
+
+  cd autopep8-py2
+  python2 setup.py install -O1 --prefix=/usr --root="$pkgdir/"
+  mv "$pkgdir/usr/bin/autopep8" "$pkgdir/usr/bin/autopep8-python2"
+
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in lxde-common/repos/community-any (6 files)

2016-02-26 Thread Balló György
Date: Friday, February 26, 2016 @ 15:54:44
  Author: bgyorgy
Revision: 163505

archrelease: copy trunk to community-any

Added:
  lxde-common/repos/community-any/PKGBUILD
(from rev 163504, lxde-common/trunk/PKGBUILD)
  lxde-common/repos/community-any/dbus-update-environment.patch
(from rev 163504, lxde-common/trunk/dbus-update-environment.patch)
  lxde-common/repos/community-any/default-config.patch
(from rev 163504, lxde-common/trunk/default-config.patch)
Deleted:
  lxde-common/repos/community-any/PKGBUILD
  lxde-common/repos/community-any/dbus-update-environment.patch
  lxde-common/repos/community-any/default-config.patch

---+
 PKGBUILD  |   84 
 dbus-update-environment.patch |   40 +--
 default-config.patch  |   32 +--
 3 files changed, 82 insertions(+), 74 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-02-26 14:54:38 UTC (rev 163504)
+++ PKGBUILD2016-02-26 14:54:44 UTC (rev 163505)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Angel Velasquez 
-# Contributor: Juergen Hoetzel 
-
-pkgname=lxde-common
-pkgver=0.99.1
-pkgrel=1
-pkgdesc='Common files of the LXDE Desktop'
-arch=('any')
-url='http://lxde.org/'
-license=('GPL2')
-groups=('lxde' 'lxde-gtk3')
-backup=(etc/xdg/lxsession/LXDE/desktop.conf
-etc/xdg/lxsession/LXDE/autostart)
-makedepends=('intltool')
-optdepends=('gnome-themes-standard: default GTK+ theme'
-'lxde-icon-theme: default icon theme')
-source=(http://downloads.sourceforge.net/lxde/$pkgname-$pkgver.tar.xz
-dbus-update-environment.patch
-default-config.patch)
-md5sums=('3ab92bd7bcff8bc8e6395651d164cf76'
- '9f5cdfb8aef6286b6de79a50d1fddd7f'
- '61b3a79b6d1397fd295c8f88561ece82')
-
-prepare() {
-cd $pkgname-$pkgver
-patch -Np1 -i ../dbus-update-environment.patch
-patch -Np1 -i ../default-config.patch
-}
-
-build() {
-cd $pkgname-$pkgver
-./configure --sysconfdir=/etc --prefix=/usr
-make
-}
-
-package() {
-cd $pkgname-$pkgver
-make DESTDIR="$pkgdir" install
-}

Copied: lxde-common/repos/community-any/PKGBUILD (from rev 163504, 
lxde-common/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-02-26 14:54:44 UTC (rev 163505)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Balló György 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Angel Velasquez 
+# Contributor: Juergen Hoetzel 
+
+pkgname=lxde-common
+pkgver=0.99.1
+pkgrel=2
+pkgdesc='Common files of the LXDE Desktop'
+arch=('any')
+url='http://lxde.org/'
+license=('GPL2')
+groups=('lxde' 'lxde-gtk3')
+backup=(etc/xdg/lxsession/LXDE/desktop.conf
+etc/xdg/lxsession/LXDE/autostart)
+makedepends=('intltool')
+optdepends=('gnome-themes-standard: default GTK+ theme'
+'lxde-icon-theme: default icon theme')
+source=(http://downloads.sourceforge.net/lxde/$pkgname-$pkgver.tar.xz
+dbus-update-environment.patch
+default-config.patch)
+md5sums=('3ab92bd7bcff8bc8e6395651d164cf76'
+ '9f5cdfb8aef6286b6de79a50d1fddd7f'
+ 'fc8a3499ee9caeff1fbdeb1761fe8a4e')
+
+prepare() {
+cd $pkgname-$pkgver
+patch -Np1 -i ../dbus-update-environment.patch
+patch -Np1 -i ../default-config.patch
+}
+
+build() {
+cd $pkgname-$pkgver
+./configure --sysconfdir=/etc --prefix=/usr
+make
+}
+
+package() {
+cd $pkgname-$pkgver
+make DESTDIR="$pkgdir" install
+}

Deleted: dbus-update-environment.patch
===
--- dbus-update-environment.patch   2016-02-26 14:54:38 UTC (rev 163504)
+++ dbus-update-environment.patch   2016-02-26 14:54:44 UTC (rev 163505)
@@ -1,20 +0,0 @@
-diff -u -r lxde-common-0.99.0/startlxde.in lxde-common-0.99.0-dbus/startlxde.in
 lxde-common-0.99.0/startlxde.in2014-10-23 16:08:00.0 +0200
-+++ lxde-common-0.99.0-dbus/startlxde.in   2015-09-25 19:00:01.152474183 
+0200
-@@ -26,8 +26,14 @@
- export SAL_USE_VCLPLUGIN=gtk
- 
- # Launch DBus if needed
--if which dbus-launch >/dev/null && test -z "$DBUS_SESSION_BUS_ADDRESS"; then
--  eval "$(dbus-launch --sh-syntax --exit-with-session)"
-+if test -z "$DBUS_SESSION_BUS_ADDRESS"; then
-+  if which dbus-launch >/dev/null; then
-+  eval "$(dbus-launch --sh-syntax --exit-with-session)"
-+  fi
-+else
-+  if which dbus-update-activation-environment >/dev/null; then
-+  dbus-update-activation-environment --systemd --all
-+  fi
- fi
- 
- export 

[arch-commits] Commit in lxde-common/trunk (PKGBUILD default-config.patch)

2016-02-26 Thread Balló György
Date: Friday, February 26, 2016 @ 15:54:38
  Author: bgyorgy
Revision: 163504

upgpkg: lxde-common 0.99.1-2

Don't set default file manager, let users to select default one

Modified:
  lxde-common/trunk/PKGBUILD
  lxde-common/trunk/default-config.patch

--+
 PKGBUILD |4 ++--
 default-config.patch |   14 +++---
 2 files changed, 13 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-02-26 10:20:08 UTC (rev 163503)
+++ PKGBUILD2016-02-26 14:54:38 UTC (rev 163504)
@@ -6,7 +6,7 @@
 
 pkgname=lxde-common
 pkgver=0.99.1
-pkgrel=1
+pkgrel=2
 pkgdesc='Common files of the LXDE Desktop'
 arch=('any')
 url='http://lxde.org/'
@@ -22,7 +22,7 @@
 default-config.patch)
 md5sums=('3ab92bd7bcff8bc8e6395651d164cf76'
  '9f5cdfb8aef6286b6de79a50d1fddd7f'
- '61b3a79b6d1397fd295c8f88561ece82')
+ 'fc8a3499ee9caeff1fbdeb1761fe8a4e')
 
 prepare() {
 cd $pkgname-$pkgver

Modified: default-config.patch
===
--- default-config.patch2016-02-26 10:20:08 UTC (rev 163503)
+++ default-config.patch2016-02-26 14:54:38 UTC (rev 163504)
@@ -1,6 +1,6 @@
-diff -Naur lxde-common-0.99.0.orig/desktop.conf lxde-common-0.99.0/desktop.conf
 lxde-common-0.99.0.orig/desktop.conf   2016-02-20 15:25:47.971017849 
+
-+++ lxde-common-0.99.0/desktop.conf2016-02-20 15:26:29.844166792 +
+diff -Naur lxde-common-0.99.1.orig/desktop.conf lxde-common-0.99.1/desktop.conf
+--- lxde-common-0.99.1.orig/desktop.conf   2016-02-26 14:51:28.558478250 
+
 lxde-common-0.99.1/desktop.conf2016-02-26 14:52:20.038264394 +
 @@ -2,7 +2,7 @@
  window_manager=openbox-lxde
  
@@ -10,3 +10,11 @@
  sNet/IconThemeName=nuoveXT2
  sGtk/FontName=Sans 10
  iGtk/ToolbarStyle=3
+diff -Naur lxde-common-0.99.1.orig/lxpanel/config 
lxde-common-0.99.1/lxpanel/config
+--- lxde-common-0.99.1.orig/lxpanel/config 2016-02-26 14:51:28.558478250 
+
 lxde-common-0.99.1/lxpanel/config  2016-02-26 14:51:55.178367667 +
+@@ -1,4 +1,3 @@
+ [Command]
+-FileManager=pcmanfm %s
+ Terminal=lxterminal
+ Logout=lxde-logout


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

2016-02-26 Thread Felix Yan
Date: Friday, February 26, 2016 @ 11:20:08
  Author: fyan
Revision: 163503

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-02-26 10:19:49 UTC (rev 163502)
+++ PKGBUILD2016-02-26 10:20:08 UTC (rev 163503)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgname=python-phonenumbers
-pkgname=(python-phonenumbers python2-phonenumbers)
-_pypiname=phonenumbers
-pkgver=7.2.5
-pkgrel=1
-pkgdesc="Python version of Google's common library for parsing, formatting, 
storing and validating international phone numbers"
-arch=('any')
-url="https://github.com/daviddrysdale/python-phonenumbers;
-license=('Apache')
-makedepends=("python-setuptools" "python2-setuptools")
-source=("https://pypi.python.org/packages/source/p/$_pypiname/$_pypiname-$pkgver.tar.gz;)
-sha512sums=('9aa7b3539194961cc720e65ea93ce0f30afd588d44a07d84e9f0b5dc2277e16767ea53a786db89fc3d99279c361d8e38da482750b12245637013093c5717c63b')
-
-prepare() {
-  cp -a $_pypiname-$pkgver{,-py2}
-}
-
-build() {
-  cd $_pypiname-$pkgver
-  python setup.py build
-
-  cd ../$_pypiname-$pkgver
-  python2 setup.py build
-}
-
-check() {
-  cd $_pypiname-$pkgver
-  python setup.py test
-
-  cd ../$_pypiname-$pkgver
-  python2 setup.py test
-}
-
-package_python-phonenumbers() {
-  depends=('python')
-
-  cd $_pypiname-$pkgver
-  python setup.py install -O1 --root "${pkgdir}"
-}
-
-package_python2-phonenumbers() {
-  depends=('python2')
-
-  cd $_pypiname-$pkgver
-  python2 setup.py install -O1 --root "${pkgdir}"
-}

Copied: python-phonenumbers/repos/community-any/PKGBUILD (from rev 163502, 
python-phonenumbers/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-02-26 10:20:08 UTC (rev 163503)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=python-phonenumbers
+pkgname=(python-phonenumbers python2-phonenumbers)
+_pypiname=phonenumbers
+pkgver=7.2.6
+pkgrel=1
+pkgdesc="Python version of Google's common library for parsing, formatting, 
storing and validating international phone numbers"
+arch=('any')
+url="https://github.com/daviddrysdale/python-phonenumbers;
+license=('Apache')
+makedepends=("python-setuptools" "python2-setuptools")
+source=("https://pypi.python.org/packages/source/p/$_pypiname/$_pypiname-$pkgver.tar.gz;)
+sha512sums=('04bd71914cf5f04c3ad5b22e5b8adf5def7b960a003437e44287a56fcd17ec626c0abea6a269043668b670c53df3ba0817e26764287fd55f32340521873dd0a2')
+
+prepare() {
+  cp -a $_pypiname-$pkgver{,-py2}
+}
+
+build() {
+  cd $_pypiname-$pkgver
+  python setup.py build
+
+  cd ../$_pypiname-$pkgver
+  python2 setup.py build
+}
+
+check() {
+  cd $_pypiname-$pkgver
+  python setup.py test
+
+  cd ../$_pypiname-$pkgver
+  python2 setup.py test
+}
+
+package_python-phonenumbers() {
+  depends=('python')
+
+  cd $_pypiname-$pkgver
+  python setup.py install -O1 --root "${pkgdir}"
+}
+
+package_python2-phonenumbers() {
+  depends=('python2')
+
+  cd $_pypiname-$pkgver
+  python2 setup.py install -O1 --root "${pkgdir}"
+}


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

2016-02-26 Thread Felix Yan
Date: Friday, February 26, 2016 @ 11:19:49
  Author: fyan
Revision: 163502

upgpkg: python-phonenumbers 7.2.6-1

Modified:
  python-phonenumbers/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-26 10:14:52 UTC (rev 163501)
+++ PKGBUILD2016-02-26 10:19:49 UTC (rev 163502)
@@ -4,7 +4,7 @@
 pkgname=python-phonenumbers
 pkgname=(python-phonenumbers python2-phonenumbers)
 _pypiname=phonenumbers
-pkgver=7.2.5
+pkgver=7.2.6
 pkgrel=1
 pkgdesc="Python version of Google's common library for parsing, formatting, 
storing and validating international phone numbers"
 arch=('any')
@@ -12,7 +12,7 @@
 license=('Apache')
 makedepends=("python-setuptools" "python2-setuptools")
 
source=("https://pypi.python.org/packages/source/p/$_pypiname/$_pypiname-$pkgver.tar.gz;)
-sha512sums=('9aa7b3539194961cc720e65ea93ce0f30afd588d44a07d84e9f0b5dc2277e16767ea53a786db89fc3d99279c361d8e38da482750b12245637013093c5717c63b')
+sha512sums=('04bd71914cf5f04c3ad5b22e5b8adf5def7b960a003437e44287a56fcd17ec626c0abea6a269043668b670c53df3ba0817e26764287fd55f32340521873dd0a2')
 
 prepare() {
   cp -a $_pypiname-$pkgver{,-py2}


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

2016-02-26 Thread Felix Yan
Date: Friday, February 26, 2016 @ 11:14:32
  Author: fyan
Revision: 163500

upgpkg: python-oslo-config 3.9.0-1

Modified:
  python-oslo-config/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-26 10:10:51 UTC (rev 163499)
+++ PKGBUILD2016-02-26 10:14:32 UTC (rev 163500)
@@ -4,7 +4,7 @@
 
 pkgbase=python-oslo-config
 pkgname=(python-oslo-config python2-oslo-config)
-pkgver=3.8.0
+pkgver=3.9.0
 pkgrel=1
 pkgdesc="parsing command line arguments and .ini style configuration files"
 arch=('any')
@@ -12,15 +12,16 @@
 license=('GPL')
 makedepends=('git' 'python-setuptools' 'python2-setuptools' 'python-netaddr' 
'python2-netaddr'
  'python-stevedore' 'python2-stevedore' 'python-debtcollector' 
'python2-debtcollector')
-checkdepends=('python-mock' 'python2-mock' 'python-fixtures' 
'python2-fixtures')
+checkdepends=('python-oslotest' 'python2-oslotest' 'python-sphinx' 
'python2-sphinx')
 options=('!emptydirs')
 source=("git+https://git.openstack.org/openstack/oslo.config#tag=$pkgver;)
 md5sums=('SKIP')
 
 prepare() {
+  sed -i '/argparse/d' oslo.config/requirements.txt
+
   cp -a oslo.config{,-py2}
   find oslo.config-py2 -name \*.py -exec sed -i '1s/python$/&2/' {} +
-  sed -i '/argparse/d' "oslo.config"{,-py2}/requirements.txt
 }
 
 build() {
@@ -32,13 +33,11 @@
 }
 
 check() {
-  # Disabled for now, as it brings in too many dependencies
-
   cd "$srcdir"/oslo.config
-  # py.test
+  python setup.py testr
 
   cd "$srcdir"/oslo.config-py2
-  # py.test2
+  PYTHON=python2 python2 setup.py testr
 }
 
 package_python-oslo-config() {


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

2016-02-26 Thread Felix Yan
Date: Friday, February 26, 2016 @ 11:14:52
  Author: fyan
Revision: 163501

archrelease: copy trunk to community-any

Added:
  python-oslo-config/repos/community-any/PKGBUILD
(from rev 163500, python-oslo-config/trunk/PKGBUILD)
Deleted:
  python-oslo-config/repos/community-any/PKGBUILD

--+
 PKGBUILD |  117 ++---
 1 file changed, 58 insertions(+), 59 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-02-26 10:14:32 UTC (rev 163500)
+++ PKGBUILD2016-02-26 10:14:52 UTC (rev 163501)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Daniel Wallace 
-
-pkgbase=python-oslo-config
-pkgname=(python-oslo-config python2-oslo-config)
-pkgver=3.8.0
-pkgrel=1
-pkgdesc="parsing command line arguments and .ini style configuration files"
-arch=('any')
-url="https://pypi.python.org/pypi/oslo.config/$pkgver;
-license=('GPL')
-makedepends=('git' 'python-setuptools' 'python2-setuptools' 'python-netaddr' 
'python2-netaddr'
- 'python-stevedore' 'python2-stevedore' 'python-debtcollector' 
'python2-debtcollector')
-checkdepends=('python-mock' 'python2-mock' 'python-fixtures' 
'python2-fixtures')
-options=('!emptydirs')
-source=("git+https://git.openstack.org/openstack/oslo.config#tag=$pkgver;)
-md5sums=('SKIP')
-
-prepare() {
-  cp -a oslo.config{,-py2}
-  find oslo.config-py2 -name \*.py -exec sed -i '1s/python$/&2/' {} +
-  sed -i '/argparse/d' "oslo.config"{,-py2}/requirements.txt
-}
-
-build() {
-  cd "$srcdir"/oslo.config
-  python setup.py build
-
-  cd "$srcdir"/oslo.config-py2
-  python2 setup.py build
-}
-
-check() {
-  # Disabled for now, as it brings in too many dependencies
-
-  cd "$srcdir"/oslo.config
-  # py.test
-
-  cd "$srcdir"/oslo.config-py2
-  # py.test2
-}
-
-package_python-oslo-config() {
-  depends=('python-six' 'python-netaddr' 'python-stevedore' 
'python-debtcollector')
-
-  cd "$srcdir"/oslo.config
-  python setup.py install --root="$pkgdir/" --optimize=1
-}
-
-package_python2-oslo-config() {
-  depends=('python2-six' 'python2-netaddr' 'python2-stevedore' 
'python2-debtcollector')
-
-  cd "$srcdir"/oslo.config-py2
-  python2 setup.py install --root="$pkgdir/" --optimize=1
-  mv $pkgdir/usr/bin/oslo-config-generator 
$pkgdir/usr/bin/oslo-config-generator2
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-oslo-config/repos/community-any/PKGBUILD (from rev 163500, 
python-oslo-config/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-02-26 10:14:52 UTC (rev 163501)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Daniel Wallace 
+
+pkgbase=python-oslo-config
+pkgname=(python-oslo-config python2-oslo-config)
+pkgver=3.9.0
+pkgrel=1
+pkgdesc="parsing command line arguments and .ini style configuration files"
+arch=('any')
+url="https://pypi.python.org/pypi/oslo.config/$pkgver;
+license=('GPL')
+makedepends=('git' 'python-setuptools' 'python2-setuptools' 'python-netaddr' 
'python2-netaddr'
+ 'python-stevedore' 'python2-stevedore' 'python-debtcollector' 
'python2-debtcollector')
+checkdepends=('python-oslotest' 'python2-oslotest' 'python-sphinx' 
'python2-sphinx')
+options=('!emptydirs')
+source=("git+https://git.openstack.org/openstack/oslo.config#tag=$pkgver;)
+md5sums=('SKIP')
+
+prepare() {
+  sed -i '/argparse/d' oslo.config/requirements.txt
+
+  cp -a oslo.config{,-py2}
+  find oslo.config-py2 -name \*.py -exec sed -i '1s/python$/&2/' {} +
+}
+
+build() {
+  cd "$srcdir"/oslo.config
+  python setup.py build
+
+  cd "$srcdir"/oslo.config-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/oslo.config
+  python setup.py testr
+
+  cd "$srcdir"/oslo.config-py2
+  PYTHON=python2 python2 setup.py testr
+}
+
+package_python-oslo-config() {
+  depends=('python-six' 'python-netaddr' 'python-stevedore' 
'python-debtcollector')
+
+  cd "$srcdir"/oslo.config
+  python setup.py install --root="$pkgdir/" --optimize=1
+}
+
+package_python2-oslo-config() {
+  depends=('python2-six' 'python2-netaddr' 'python2-stevedore' 
'python2-debtcollector')
+
+  cd "$srcdir"/oslo.config-py2
+  python2 setup.py install --root="$pkgdir/" --optimize=1
+  mv $pkgdir/usr/bin/oslo-config-generator 
$pkgdir/usr/bin/oslo-config-generator2
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in python-os-client-config/repos (2 files)

2016-02-26 Thread Felix Yan
Date: Friday, February 26, 2016 @ 11:10:51
  Author: fyan
Revision: 163499

archrelease: copy trunk to community-any

Added:
  python-os-client-config/repos/community-any/
  python-os-client-config/repos/community-any/PKGBUILD
(from rev 163498, python-os-client-config/trunk/PKGBUILD)

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

Copied: python-os-client-config/repos/community-any/PKGBUILD (from rev 163498, 
python-os-client-config/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2016-02-26 10:10:51 UTC (rev 163499)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-os-client-config
+pkgname=('python-os-client-config' 'python2-os-client-config')
+pkgver=1.16.0
+pkgrel=1
+arch=('any')
+pkgdesc='OpenStack Client Configuation Library'
+url='https://github.com/openstack/os-client-config'
+license=('Apache')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-yaml' 
'python2-yaml' 'git'
+ 'python-appdirs' 'python2-appdirs' 'python-keystoneauth1' 
'python2-keystoneauth1'
+ 'python-requestsexceptions' 'python2-requestsexceptions')
+checkdepends=('python-testrepository' 'python2-testrepository' 
'python-oslotest' 'python2-oslotest'
+  'python-jsonschema' 'python2-jsonschema' 'python-mock' 
'python2-mock'
+  'python-glanceclient' 'python2-glanceclient')
+source=("git+https://github.com/openstack/os-client-config.git#tag=$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  cp -a os-client-config{,-py2}
+}
+
+build() {
+  cd "$srcdir"/os-client-config
+  python setup.py build
+
+  cd "$srcdir"/os-client-config-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/os-client-config
+  # One test failure in os_client_config.tests.test_config.TestConfig
+  python setup.py testr || warning "Tests failed"
+
+  cd "$srcdir"/os-client-config-py2
+  PYTHON=python2 python2 setup.py testr
+}
+
+package_python-os-client-config() {
+  depends=('python-yaml' 'python-appdirs' 'python-keystoneauth1' 
'python-requestsexceptions')
+
+  cd os-client-config
+  python setup.py install --root "$pkgdir" --optimize=1
+}
+
+package_python2-os-client-config() {
+  depends=('python2-yaml' 'python2-appdirs' 'python2-keystoneauth1' 
'python2-requestsexceptions')
+
+  cd os-client-config-py2
+  python2 setup.py install --root "$pkgdir" --optimize=1
+}


[arch-commits] Commit in (4 files)

2016-02-26 Thread Felix Yan
Date: Friday, February 26, 2016 @ 11:10:20
  Author: fyan
Revision: 163498

addpkg: python-os-client-config 1.16.0-1

Added:
  python-os-client-config/
  python-os-client-config/repos/
  python-os-client-config/trunk/
  python-os-client-config/trunk/PKGBUILD

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

Added: python-os-client-config/trunk/PKGBUILD
===
--- python-os-client-config/trunk/PKGBUILD  (rev 0)
+++ python-os-client-config/trunk/PKGBUILD  2016-02-26 10:10:20 UTC (rev 
163498)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-os-client-config
+pkgname=('python-os-client-config' 'python2-os-client-config')
+pkgver=1.16.0
+pkgrel=1
+arch=('any')
+pkgdesc='OpenStack Client Configuation Library'
+url='https://github.com/openstack/os-client-config'
+license=('Apache')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-yaml' 
'python2-yaml' 'git'
+ 'python-appdirs' 'python2-appdirs' 'python-keystoneauth1' 
'python2-keystoneauth1'
+ 'python-requestsexceptions' 'python2-requestsexceptions')
+checkdepends=('python-testrepository' 'python2-testrepository' 
'python-oslotest' 'python2-oslotest'
+  'python-jsonschema' 'python2-jsonschema' 'python-mock' 
'python2-mock'
+  'python-glanceclient' 'python2-glanceclient')
+source=("git+https://github.com/openstack/os-client-config.git#tag=$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  cp -a os-client-config{,-py2}
+}
+
+build() {
+  cd "$srcdir"/os-client-config
+  python setup.py build
+
+  cd "$srcdir"/os-client-config-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/os-client-config
+  # One test failure in os_client_config.tests.test_config.TestConfig
+  python setup.py testr || warning "Tests failed"
+
+  cd "$srcdir"/os-client-config-py2
+  PYTHON=python2 python2 setup.py testr
+}
+
+package_python-os-client-config() {
+  depends=('python-yaml' 'python-appdirs' 'python-keystoneauth1' 
'python-requestsexceptions')
+
+  cd os-client-config
+  python setup.py install --root "$pkgdir" --optimize=1
+}
+
+package_python2-os-client-config() {
+  depends=('python2-yaml' 'python2-appdirs' 'python2-keystoneauth1' 
'python2-requestsexceptions')
+
+  cd os-client-config-py2
+  python2 setup.py install --root "$pkgdir" --optimize=1
+}


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


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

2016-02-26 Thread Felix Yan
Date: Friday, February 26, 2016 @ 11:07:34
  Author: fyan
Revision: 163497

archrelease: copy trunk to community-any

Added:
  python-glanceclient/repos/community-any/
  python-glanceclient/repos/community-any/PKGBUILD
(from rev 163496, python-glanceclient/trunk/PKGBUILD)

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

Copied: python-glanceclient/repos/community-any/PKGBUILD (from rev 163496, 
python-glanceclient/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2016-02-26 10:07:34 UTC (rev 163497)
@@ -0,0 +1,64 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Daniel Wallace 
+
+pkgbase=python-glanceclient
+pkgname=(python-glanceclient python2-glanceclient)
+pkgver=1.2.0
+pkgrel=1
+pkgdesc="OpenStack Image API Client Library"
+arch=('any')
+url="http://docs.openstack.org/developer/python-glanceclient;
+license=('Apache')
+makedepends=('git' 'python-setuptools' 'python2-setuptools' 'python-pbr' 
'python2-pbr'
+ 'python-babel' 'python2-babel' 'python-prettytable' 
'python2-prettytable'
+ 'python-keystoneclient' 'python2-keystoneclient' 'python-requests'
+ 'python2-requests' 'python-warlock' 'python2-warlock' 
'python-oslo-utils'
+ 'python2-oslo-utils' 'python-oslo-i18n' 'python2-oslo-i18n')
+checkdepends=('python-oslotest' 'python2-oslotest' 'python-requests-mock'
+  'python2-requests-mock')
+options=('!emptydirs')
+source=("git+https://git.openstack.org/openstack/python-glanceclient#tag=$pkgver;)
+md5sums=('SKIP')
+
+prepare() {
+  cp -a python-glanceclient{,-py2}
+}
+
+build() {
+  cd "$srcdir"/python-glanceclient
+  python setup.py build
+
+  cd "$srcdir"/python-glanceclient-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/python-glanceclient
+  # One random test failure in 
glanceclient.tests.unit.test_shell.ShellCacheSchemaTest
+  python setup.py testr || warning "Tests failed"
+
+  cd "$srcdir"/python-glanceclient-py2
+  # Three test failures in glanceclient.tests.unit.test_ssl.TestHTTPSVerifyCert
+  PYTHON=python2 python2 setup.py testr || warning "Tests failed"
+}
+
+package_python-glanceclient() {
+  depends=('python-six' 'python-pbr' 'python-babel' 'python-prettytable' 
'python-keystoneclient'
+   'python-requests' 'python-warlock' 'python-oslo-utils' 
'python-oslo-i18n')
+
+  cd "$srcdir"/python-glanceclient
+  python setup.py install --root="$pkgdir/" --optimize=1
+}
+
+package_python2-glanceclient() {
+  depends=('python2-six' 'python2-pbr' 'python2-babel' 'python2-prettytable' 
'python2-keystoneclient'
+   'python2-requests' 'python2-warlock' 'python2-oslo-utils' 
'python2-oslo-i18n')
+
+  cd "$srcdir"/python-glanceclient-py2
+  python2 setup.py install --root="$pkgdir/" --optimize=1
+
+  mv "$pkgdir"/usr/bin/glance{,2}
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in (4 files)

2016-02-26 Thread Felix Yan
Date: Friday, February 26, 2016 @ 11:07:15
  Author: fyan
Revision: 163496

addpkg: python-glanceclient 1.2.0-1

Added:
  python-glanceclient/
  python-glanceclient/repos/
  python-glanceclient/trunk/
  python-glanceclient/trunk/PKGBUILD

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

Added: python-glanceclient/trunk/PKGBUILD
===
--- python-glanceclient/trunk/PKGBUILD  (rev 0)
+++ python-glanceclient/trunk/PKGBUILD  2016-02-26 10:07:15 UTC (rev 163496)
@@ -0,0 +1,64 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Daniel Wallace 
+
+pkgbase=python-glanceclient
+pkgname=(python-glanceclient python2-glanceclient)
+pkgver=1.2.0
+pkgrel=1
+pkgdesc="OpenStack Image API Client Library"
+arch=('any')
+url="http://docs.openstack.org/developer/python-glanceclient;
+license=('Apache')
+makedepends=('git' 'python-setuptools' 'python2-setuptools' 'python-pbr' 
'python2-pbr'
+ 'python-babel' 'python2-babel' 'python-prettytable' 
'python2-prettytable'
+ 'python-keystoneclient' 'python2-keystoneclient' 'python-requests'
+ 'python2-requests' 'python-warlock' 'python2-warlock' 
'python-oslo-utils'
+ 'python2-oslo-utils' 'python-oslo-i18n' 'python2-oslo-i18n')
+checkdepends=('python-oslotest' 'python2-oslotest' 'python-requests-mock'
+  'python2-requests-mock')
+options=('!emptydirs')
+source=("git+https://git.openstack.org/openstack/python-glanceclient#tag=$pkgver;)
+md5sums=('SKIP')
+
+prepare() {
+  cp -a python-glanceclient{,-py2}
+}
+
+build() {
+  cd "$srcdir"/python-glanceclient
+  python setup.py build
+
+  cd "$srcdir"/python-glanceclient-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/python-glanceclient
+  # One random test failure in 
glanceclient.tests.unit.test_shell.ShellCacheSchemaTest
+  python setup.py testr || warning "Tests failed"
+
+  cd "$srcdir"/python-glanceclient-py2
+  # Three test failures in glanceclient.tests.unit.test_ssl.TestHTTPSVerifyCert
+  PYTHON=python2 python2 setup.py testr || warning "Tests failed"
+}
+
+package_python-glanceclient() {
+  depends=('python-six' 'python-pbr' 'python-babel' 'python-prettytable' 
'python-keystoneclient'
+   'python-requests' 'python-warlock' 'python-oslo-utils' 
'python-oslo-i18n')
+
+  cd "$srcdir"/python-glanceclient
+  python setup.py install --root="$pkgdir/" --optimize=1
+}
+
+package_python2-glanceclient() {
+  depends=('python2-six' 'python2-pbr' 'python2-babel' 'python2-prettytable' 
'python2-keystoneclient'
+   'python2-requests' 'python2-warlock' 'python2-oslo-utils' 
'python2-oslo-i18n')
+
+  cd "$srcdir"/python-glanceclient-py2
+  python2 setup.py install --root="$pkgdir/" --optimize=1
+
+  mv "$pkgdir"/usr/bin/glance{,2}
+}
+
+# vim:set ts=2 sw=2 et:


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


[arch-commits] Commit in (4 files)

2016-02-26 Thread Felix Yan
Date: Friday, February 26, 2016 @ 11:00:11
  Author: fyan
Revision: 163494

addpkg: python-keystoneclient 2.2.0-1

Added:
  python-keystoneclient/
  python-keystoneclient/repos/
  python-keystoneclient/trunk/
  python-keystoneclient/trunk/PKGBUILD

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

Added: python-keystoneclient/trunk/PKGBUILD
===
--- python-keystoneclient/trunk/PKGBUILD(rev 0)
+++ python-keystoneclient/trunk/PKGBUILD2016-02-26 10:00:11 UTC (rev 
163494)
@@ -0,0 +1,66 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-keystoneclient
+pkgname=(python-keystoneclient python2-keystoneclient)
+pkgver=2.2.0
+pkgrel=1
+pkgdesc="Client Library for OpenStack Identity"
+arch=('any')
+url="http://docs.openstack.org/developer/python-keystoneclient;
+license=('Apache')
+makedepends=('git' 'python-setuptools' 'python2-setuptools' 'python-pbr' 
'python2-pbr'
+ 'python-iso8601' 'python2-iso8601' 'python-prettytable' 
'python2-prettytable'
+ 'python-debtcollector' 'python2-debtcollector' 
'python-keystoneauth1'
+ 'python2-keystoneauth1' 'python-positional' 'python2-positional' 
'python-oslo-utils'
+ 'python2-oslo-utils' 'python-oslo-i18n' 'python2-oslo-i18n'
+ 'python-oslo-serialization' 'python2-oslo-serialization' 
'python-oslo-config'
+ 'python2-oslo-config' 'python-requests' 'python2-requests' 
'python-stevedore'
+ 'python2-stevedore')
+checkdepends=('python-oslotest' 'python2-oslotest' 'python-testresources' 
'python2-testresources'
+  'python-requests-mock' 'python2-requests-mock' 'pep8' 
'python2-pep8' 'python-lxml'
+  'python2-lxml')
+source=("git+https://git.openstack.org/openstack/python-keystoneclient#tag=$pkgver;)
+md5sums=('SKIP')
+
+prepare() {
+  cp -a python-keystoneclient{,-py2}
+}
+
+build() {
+  cd "$srcdir"/python-keystoneclient
+  python setup.py build
+
+  cd "$srcdir"/python-keystoneclient-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/python-keystoneclient
+  python setup.py testr
+
+  cd "$srcdir"/python-keystoneclient-py2
+  PYTHON=python2 python2 setup.py testr
+}
+
+package_python-keystoneclient() {
+  depends=('python-six' 'python-pbr' 'python-iso8601' 'python-prettytable' 
'python-debtcollector'
+   'python-keystoneauth1' 'python-positional' 'python-oslo-utils' 
'python-oslo-i18n'
+   'python-oslo-serialization' 'python-oslo-config' 'python-requests' 
'python-stevedore')
+
+  cd "$srcdir"/python-keystoneclient
+  python setup.py install --root="$pkgdir/" --optimize=1
+}
+
+package_python2-keystoneclient() {
+  depends=('python2-six' 'python2-pbr' 'python2-iso8601' 'python2-prettytable' 
'python2-debtcollector'
+   'python2-keystoneauth1' 'python2-positional' 'python2-oslo-utils' 
'python2-oslo-i18n'
+   'python2-oslo-serialization' 'python2-oslo-config' 
'python2-requests' 'python2-stevedore')
+
+  cd "$srcdir"/python-keystoneclient-py2
+  python2 setup.py install --root="$pkgdir/" --optimize=1
+
+  mv "$pkgdir"/usr/bin/keystone{,2}
+}
+
+# vim:set ts=2 sw=2 et:


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


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

2016-02-26 Thread Felix Yan
Date: Friday, February 26, 2016 @ 11:00:30
  Author: fyan
Revision: 163495

archrelease: copy trunk to community-any

Added:
  python-keystoneclient/repos/community-any/
  python-keystoneclient/repos/community-any/PKGBUILD
(from rev 163494, python-keystoneclient/trunk/PKGBUILD)

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

Copied: python-keystoneclient/repos/community-any/PKGBUILD (from rev 163494, 
python-keystoneclient/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2016-02-26 10:00:30 UTC (rev 163495)
@@ -0,0 +1,66 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-keystoneclient
+pkgname=(python-keystoneclient python2-keystoneclient)
+pkgver=2.2.0
+pkgrel=1
+pkgdesc="Client Library for OpenStack Identity"
+arch=('any')
+url="http://docs.openstack.org/developer/python-keystoneclient;
+license=('Apache')
+makedepends=('git' 'python-setuptools' 'python2-setuptools' 'python-pbr' 
'python2-pbr'
+ 'python-iso8601' 'python2-iso8601' 'python-prettytable' 
'python2-prettytable'
+ 'python-debtcollector' 'python2-debtcollector' 
'python-keystoneauth1'
+ 'python2-keystoneauth1' 'python-positional' 'python2-positional' 
'python-oslo-utils'
+ 'python2-oslo-utils' 'python-oslo-i18n' 'python2-oslo-i18n'
+ 'python-oslo-serialization' 'python2-oslo-serialization' 
'python-oslo-config'
+ 'python2-oslo-config' 'python-requests' 'python2-requests' 
'python-stevedore'
+ 'python2-stevedore')
+checkdepends=('python-oslotest' 'python2-oslotest' 'python-testresources' 
'python2-testresources'
+  'python-requests-mock' 'python2-requests-mock' 'pep8' 
'python2-pep8' 'python-lxml'
+  'python2-lxml')
+source=("git+https://git.openstack.org/openstack/python-keystoneclient#tag=$pkgver;)
+md5sums=('SKIP')
+
+prepare() {
+  cp -a python-keystoneclient{,-py2}
+}
+
+build() {
+  cd "$srcdir"/python-keystoneclient
+  python setup.py build
+
+  cd "$srcdir"/python-keystoneclient-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/python-keystoneclient
+  python setup.py testr
+
+  cd "$srcdir"/python-keystoneclient-py2
+  PYTHON=python2 python2 setup.py testr
+}
+
+package_python-keystoneclient() {
+  depends=('python-six' 'python-pbr' 'python-iso8601' 'python-prettytable' 
'python-debtcollector'
+   'python-keystoneauth1' 'python-positional' 'python-oslo-utils' 
'python-oslo-i18n'
+   'python-oslo-serialization' 'python-oslo-config' 'python-requests' 
'python-stevedore')
+
+  cd "$srcdir"/python-keystoneclient
+  python setup.py install --root="$pkgdir/" --optimize=1
+}
+
+package_python2-keystoneclient() {
+  depends=('python2-six' 'python2-pbr' 'python2-iso8601' 'python2-prettytable' 
'python2-debtcollector'
+   'python2-keystoneauth1' 'python2-positional' 'python2-oslo-utils' 
'python2-oslo-i18n'
+   'python2-oslo-serialization' 'python2-oslo-config' 
'python2-requests' 'python2-stevedore')
+
+  cd "$srcdir"/python-keystoneclient-py2
+  python2 setup.py install --root="$pkgdir/" --optimize=1
+
+  mv "$pkgdir"/usr/bin/keystone{,2}
+}
+
+# vim:set ts=2 sw=2 et:


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

2016-02-26 Thread Felix Yan
Date: Friday, February 26, 2016 @ 10:52:10
  Author: fyan
Revision: 163492

upgpkg: python-oslo-serialization 2.4.0-2

fix a typo in dependency

Modified:
  python-oslo-serialization/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-26 09:44:07 UTC (rev 163491)
+++ PKGBUILD2016-02-26 09:52:10 UTC (rev 163492)
@@ -4,7 +4,7 @@
 pkgbase=python-oslo-serialization
 pkgname=(python-oslo-serialization python2-oslo-serialization)
 pkgver=2.4.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Oslo Serialization library"
 arch=('any')
 url="http://docs.openstack.org/developer/oslo.serialization;
@@ -38,7 +38,7 @@
 
 package_python-oslo-serialization() {
   depends=('python-six' 'python-pbr' 'python-babel' 'python-msgpack' 
'python-oslo-utils'
-   'python-pyta')
+   'python-pytz')
 
   cd "$srcdir"/oslo.serialization
   python setup.py install --root="$pkgdir/" --optimize=1
@@ -46,7 +46,7 @@
 
 package_python2-oslo-serialization() {
   depends=('python2-six' 'python2-pbr' 'python2-babel' 'python2-msgpack' 
'python2-oslo-utils'
-   'python2-pyta')
+   'python2-pytz')
 
   cd "$srcdir"/oslo.serialization-py2
   python2 setup.py install --root="$pkgdir/" --optimize=1


[arch-commits] Commit in python-oslo-serialization/repos/community-any (2 files)

2016-02-26 Thread Felix Yan
Date: Friday, February 26, 2016 @ 10:52:29
  Author: fyan
Revision: 163493

archrelease: copy trunk to community-any

Added:
  python-oslo-serialization/repos/community-any/PKGBUILD
(from rev 163492, python-oslo-serialization/trunk/PKGBUILD)
Deleted:
  python-oslo-serialization/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-02-26 09:52:10 UTC (rev 163492)
+++ PKGBUILD2016-02-26 09:52:29 UTC (rev 163493)
@@ -1,55 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgbase=python-oslo-serialization
-pkgname=(python-oslo-serialization python2-oslo-serialization)
-pkgver=2.4.0
-pkgrel=1
-pkgdesc="Oslo Serialization library"
-arch=('any')
-url="http://docs.openstack.org/developer/oslo.serialization;
-license=('Apache')
-makedepends=('git' 'python-setuptools' 'python2-setuptools' 'python-pbr' 
'python2-pbr'
- 'python-babel' 'python2-babel' 'python-msgpack' 'python2-msgpack'
- 'python-oslo-utils' 'python2-oslo-utils' 'python-pytz' 
'python2-pytz')
-checkdepends=('python-oslotest' 'python2-oslotest')
-source=("git+https://git.openstack.org/openstack/oslo.serialization#tag=$pkgver;)
-md5sums=('SKIP')
-
-prepare() {
-  cp -a oslo.serialization{,-py2}
-}
-
-build() {
-  cd "$srcdir"/oslo.serialization
-  python setup.py build
-
-  cd "$srcdir"/oslo.serialization-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/oslo.serialization
-  python setup.py testr
-
-  cd "$srcdir"/oslo.serialization-py2
-  PYTHON=python2 python2 setup.py testr
-}
-
-package_python-oslo-serialization() {
-  depends=('python-six' 'python-pbr' 'python-babel' 'python-msgpack' 
'python-oslo-utils'
-   'python-pyta')
-
-  cd "$srcdir"/oslo.serialization
-  python setup.py install --root="$pkgdir/" --optimize=1
-}
-
-package_python2-oslo-serialization() {
-  depends=('python2-six' 'python2-pbr' 'python2-babel' 'python2-msgpack' 
'python2-oslo-utils'
-   'python2-pyta')
-
-  cd "$srcdir"/oslo.serialization-py2
-  python2 setup.py install --root="$pkgdir/" --optimize=1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-oslo-serialization/repos/community-any/PKGBUILD (from rev 
163492, python-oslo-serialization/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-02-26 09:52:29 UTC (rev 163493)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-oslo-serialization
+pkgname=(python-oslo-serialization python2-oslo-serialization)
+pkgver=2.4.0
+pkgrel=2
+pkgdesc="Oslo Serialization library"
+arch=('any')
+url="http://docs.openstack.org/developer/oslo.serialization;
+license=('Apache')
+makedepends=('git' 'python-setuptools' 'python2-setuptools' 'python-pbr' 
'python2-pbr'
+ 'python-babel' 'python2-babel' 'python-msgpack' 'python2-msgpack'
+ 'python-oslo-utils' 'python2-oslo-utils' 'python-pytz' 
'python2-pytz')
+checkdepends=('python-oslotest' 'python2-oslotest')
+source=("git+https://git.openstack.org/openstack/oslo.serialization#tag=$pkgver;)
+md5sums=('SKIP')
+
+prepare() {
+  cp -a oslo.serialization{,-py2}
+}
+
+build() {
+  cd "$srcdir"/oslo.serialization
+  python setup.py build
+
+  cd "$srcdir"/oslo.serialization-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/oslo.serialization
+  python setup.py testr
+
+  cd "$srcdir"/oslo.serialization-py2
+  PYTHON=python2 python2 setup.py testr
+}
+
+package_python-oslo-serialization() {
+  depends=('python-six' 'python-pbr' 'python-babel' 'python-msgpack' 
'python-oslo-utils'
+   'python-pytz')
+
+  cd "$srcdir"/oslo.serialization
+  python setup.py install --root="$pkgdir/" --optimize=1
+}
+
+package_python2-oslo-serialization() {
+  depends=('python2-six' 'python2-pbr' 'python2-babel' 'python2-msgpack' 
'python2-oslo-utils'
+   'python2-pytz')
+
+  cd "$srcdir"/oslo.serialization-py2
+  python2 setup.py install --root="$pkgdir/" --optimize=1
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in python-oslo-serialization/repos (2 files)

2016-02-26 Thread Felix Yan
Date: Friday, February 26, 2016 @ 10:44:07
  Author: fyan
Revision: 163491

archrelease: copy trunk to community-any

Added:
  python-oslo-serialization/repos/community-any/
  python-oslo-serialization/repos/community-any/PKGBUILD
(from rev 163490, python-oslo-serialization/trunk/PKGBUILD)

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

Copied: python-oslo-serialization/repos/community-any/PKGBUILD (from rev 
163490, python-oslo-serialization/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2016-02-26 09:44:07 UTC (rev 163491)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-oslo-serialization
+pkgname=(python-oslo-serialization python2-oslo-serialization)
+pkgver=2.4.0
+pkgrel=1
+pkgdesc="Oslo Serialization library"
+arch=('any')
+url="http://docs.openstack.org/developer/oslo.serialization;
+license=('Apache')
+makedepends=('git' 'python-setuptools' 'python2-setuptools' 'python-pbr' 
'python2-pbr'
+ 'python-babel' 'python2-babel' 'python-msgpack' 'python2-msgpack'
+ 'python-oslo-utils' 'python2-oslo-utils' 'python-pytz' 
'python2-pytz')
+checkdepends=('python-oslotest' 'python2-oslotest')
+source=("git+https://git.openstack.org/openstack/oslo.serialization#tag=$pkgver;)
+md5sums=('SKIP')
+
+prepare() {
+  cp -a oslo.serialization{,-py2}
+}
+
+build() {
+  cd "$srcdir"/oslo.serialization
+  python setup.py build
+
+  cd "$srcdir"/oslo.serialization-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/oslo.serialization
+  python setup.py testr
+
+  cd "$srcdir"/oslo.serialization-py2
+  PYTHON=python2 python2 setup.py testr
+}
+
+package_python-oslo-serialization() {
+  depends=('python-six' 'python-pbr' 'python-babel' 'python-msgpack' 
'python-oslo-utils'
+   'python-pyta')
+
+  cd "$srcdir"/oslo.serialization
+  python setup.py install --root="$pkgdir/" --optimize=1
+}
+
+package_python2-oslo-serialization() {
+  depends=('python2-six' 'python2-pbr' 'python2-babel' 'python2-msgpack' 
'python2-oslo-utils'
+   'python2-pyta')
+
+  cd "$srcdir"/oslo.serialization-py2
+  python2 setup.py install --root="$pkgdir/" --optimize=1
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in (4 files)

2016-02-26 Thread Felix Yan
Date: Friday, February 26, 2016 @ 10:43:46
  Author: fyan
Revision: 163490

addpkg: python-oslo-serialization 2.4.0-1

Added:
  python-oslo-serialization/
  python-oslo-serialization/repos/
  python-oslo-serialization/trunk/
  python-oslo-serialization/trunk/PKGBUILD

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

Added: python-oslo-serialization/trunk/PKGBUILD
===
--- python-oslo-serialization/trunk/PKGBUILD(rev 0)
+++ python-oslo-serialization/trunk/PKGBUILD2016-02-26 09:43:46 UTC (rev 
163490)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-oslo-serialization
+pkgname=(python-oslo-serialization python2-oslo-serialization)
+pkgver=2.4.0
+pkgrel=1
+pkgdesc="Oslo Serialization library"
+arch=('any')
+url="http://docs.openstack.org/developer/oslo.serialization;
+license=('Apache')
+makedepends=('git' 'python-setuptools' 'python2-setuptools' 'python-pbr' 
'python2-pbr'
+ 'python-babel' 'python2-babel' 'python-msgpack' 'python2-msgpack'
+ 'python-oslo-utils' 'python2-oslo-utils' 'python-pytz' 
'python2-pytz')
+checkdepends=('python-oslotest' 'python2-oslotest')
+source=("git+https://git.openstack.org/openstack/oslo.serialization#tag=$pkgver;)
+md5sums=('SKIP')
+
+prepare() {
+  cp -a oslo.serialization{,-py2}
+}
+
+build() {
+  cd "$srcdir"/oslo.serialization
+  python setup.py build
+
+  cd "$srcdir"/oslo.serialization-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/oslo.serialization
+  python setup.py testr
+
+  cd "$srcdir"/oslo.serialization-py2
+  PYTHON=python2 python2 setup.py testr
+}
+
+package_python-oslo-serialization() {
+  depends=('python-six' 'python-pbr' 'python-babel' 'python-msgpack' 
'python-oslo-utils'
+   'python-pyta')
+
+  cd "$srcdir"/oslo.serialization
+  python setup.py install --root="$pkgdir/" --optimize=1
+}
+
+package_python2-oslo-serialization() {
+  depends=('python2-six' 'python2-pbr' 'python2-babel' 'python2-msgpack' 
'python2-oslo-utils'
+   'python2-pyta')
+
+  cd "$srcdir"/oslo.serialization-py2
+  python2 setup.py install --root="$pkgdir/" --optimize=1
+}
+
+# vim:set ts=2 sw=2 et:


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


[arch-commits] Commit in (4 files)

2016-02-26 Thread Felix Yan
Date: Friday, February 26, 2016 @ 09:52:55
  Author: fyan
Revision: 163488

addpkg: python-warlock 1.2.0-1

Added:
  python-warlock/
  python-warlock/repos/
  python-warlock/trunk/
  python-warlock/trunk/PKGBUILD

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

Added: python-warlock/trunk/PKGBUILD
===
--- python-warlock/trunk/PKGBUILD   (rev 0)
+++ python-warlock/trunk/PKGBUILD   2016-02-26 08:52:55 UTC (rev 163488)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-warlock
+pkgname=('python-warlock' 'python2-warlock')
+pkgver=1.2.0
+pkgrel=1
+pkgdesc="Python object model built on JSON schema and JSON patch."
+arch=('any')
+license=('Apache')
+url="https://github.com/bcwaldon/warlock;
+makedepends=('python-setuptools' 'python2-setuptools' 'python-jsonschema' 
'python2-jsonschema'
+ 'python-jsonpatch' 'python2-jsonpatch' 'python-six' 'python2-six' 
'git')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner')
+source=("git+https://github.com/bcwaldon/warlock.git#tag=$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  cp -a warlock{,-py2}
+}
+
+build() {
+  cd "$srcdir"/warlock
+  python setup.py build
+
+  cd "$srcdir"/warlock-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/warlock
+  python setup.py ptr
+
+  cd "$srcdir"/warlock-py2
+  python2 setup.py ptr
+}
+
+package_python-warlock() {
+  depends=('python-jsonschema' 'python-jsonpatch' 'python-six')
+
+  cd warlock
+  python setup.py install --root="$pkgdir" --optimize=1
+}
+
+package_python2-warlock() {
+  depends=('python2-jsonschema' 'python2-jsonpatch' 'python2-six')
+
+  cd warlock-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+}


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


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

2016-02-26 Thread Felix Yan
Date: Friday, February 26, 2016 @ 09:53:14
  Author: fyan
Revision: 163489

archrelease: copy trunk to community-any

Added:
  python-warlock/repos/community-any/
  python-warlock/repos/community-any/PKGBUILD
(from rev 163488, python-warlock/trunk/PKGBUILD)

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

Copied: python-warlock/repos/community-any/PKGBUILD (from rev 163488, 
python-warlock/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2016-02-26 08:53:14 UTC (rev 163489)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-warlock
+pkgname=('python-warlock' 'python2-warlock')
+pkgver=1.2.0
+pkgrel=1
+pkgdesc="Python object model built on JSON schema and JSON patch."
+arch=('any')
+license=('Apache')
+url="https://github.com/bcwaldon/warlock;
+makedepends=('python-setuptools' 'python2-setuptools' 'python-jsonschema' 
'python2-jsonschema'
+ 'python-jsonpatch' 'python2-jsonpatch' 'python-six' 'python2-six' 
'git')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner')
+source=("git+https://github.com/bcwaldon/warlock.git#tag=$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  cp -a warlock{,-py2}
+}
+
+build() {
+  cd "$srcdir"/warlock
+  python setup.py build
+
+  cd "$srcdir"/warlock-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/warlock
+  python setup.py ptr
+
+  cd "$srcdir"/warlock-py2
+  python2 setup.py ptr
+}
+
+package_python-warlock() {
+  depends=('python-jsonschema' 'python-jsonpatch' 'python-six')
+
+  cd warlock
+  python setup.py install --root="$pkgdir" --optimize=1
+}
+
+package_python2-warlock() {
+  depends=('python2-jsonschema' 'python2-jsonpatch' 'python2-six')
+
+  cd warlock-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+}


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

2016-02-26 Thread Felix Yan
Date: Friday, February 26, 2016 @ 09:51:06
  Author: fyan
Revision: 163487

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-02-26 08:50:46 UTC (rev 163486)
+++ PKGBUILD2016-02-26 08:51:06 UTC (rev 163487)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Daniel Wallace 
-# Contributor: Limao Luo 
-
-pkgbase=python-jsonpatch
-_pkgname=jsonpatch
-pkgname=(python-$_pkgname python2-$_pkgname)
-pkgver=1.13
-pkgrel=1
-pkgdesc="Python object model built on JSON schema and JSON patch"
-arch=(any)
-url=https://github.com/stefankoegl/python-json-patch
-license=(BSD)
-makedepends=(python2-setuptools python2-jsonschema python-setuptools 
python-jsonschema)
-options=(!emptydirs)
-source=(http://pypi.python.org/packages/source/j/${_pkgname#*-}/${_pkgname#*-}-$pkgver.tar.gz)
-sha256sums=('9470656a08002e309632b59772b206ce0564c9a77b44c25f05f49dd2cad248d5')
-sha512sums=('23f0c92c2c8834d5e3129e9ba78ece7da2646dd60d5b0522b0f09d83e20057ef7517042e5ee8547804185d3ce23cff394c8fe78df93fad7999fae12cc5467a45')
-
-prepare(){
-cp -a $_pkgname-$pkgver $_pkgname-$pkgver-2
-find $_pkgname-$pkgver-2 -name \*.py -exec sed -i '1s/python$/&2/' {} +
-}
-
-build() {
-LANG=en_US.UTF-8
-cd $srcdir/$_pkgname-$pkgver
-python setup.py build
-cd $srcdir/$_pkgname-$pkgver-2
-python2 setup.py build
-}
-
-package_python-jsonpatch() {
-cd $srcdir/$_pkgname-$pkgver
-depends=(python-jsonschema)
-install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
-python setup.py install --prefix=/usr --root="$pkgdir"
-}
-package_python2-jsonpatch() {
-cd $srcdir/$_pkgname-$pkgver-2
-depends=(python2-jsonschema)
-install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
-python2 setup.py install --prefix=/usr --root="$pkgdir"
-rm $pkgdir/usr/bin/json{diff,patch}
-}

Copied: python-jsonpatch/repos/community-any/PKGBUILD (from rev 163486, 
python-jsonpatch/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-02-26 08:51:06 UTC (rev 163487)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Daniel Wallace 
+# Contributor: Limao Luo 
+
+pkgbase=python-jsonpatch
+_pkgname=jsonpatch
+pkgname=(python-jsonpatch python2-jsonpatch)
+pkgver=1.13
+pkgrel=2
+pkgdesc="An implementation of the JSON Patch format"
+arch=("any")
+url="https://github.com/stefankoegl/python-json-patch;
+license=("BSD")
+makedepends=("python-setuptools" "python2-setuptools" "python-jsonpointer" 
"python2-jsonpointer"
+ "python-pypandoc" "python2-pypandoc" "git")
+checkdepends=('python-coverage' 'python2-coverage')
+source=("git+https://github.com/stefankoegl/python-json-patch.git#tag=v$pkgver;)
+sha512sums=('SKIP')
+
+prepare(){
+  cp -a python-json-patch{,-py2}
+  find python-json-patch-py2 -name \*.py -exec sed -i '1s/python$/&2/' {} +
+}
+
+build() {
+  cd "$srcdir"/python-json-patch
+  python setup.py build
+
+  cd "$srcdir"/python-json-patch-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/python-json-patch
+  coverage run --source=jsonpatch tests.py
+
+  cd "$srcdir"/python-json-patch-py2
+  coverage2 run --source=jsonpatch tests.py
+}
+
+package_python-jsonpatch() {
+  depends=("python-jsonpointer")
+
+  cd "$srcdir"/python-json-patch
+
+  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+  python setup.py install --prefix=/usr --root="$pkgdir"
+}
+package_python2-jsonpatch() {
+  depends=("python2-jsonpointer")
+
+  cd "$srcdir"/python-json-patch-py2
+
+  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+  python2 setup.py install --prefix=/usr --root="$pkgdir"
+  for _bin in "$pkgdir"/usr/bin/*; do
+mv "$_bin"{,2}
+  done
+}


[arch-commits] Commit in xf86-input-libinput/repos (6 files)

2016-02-26 Thread Laurent Carlier
Date: Friday, February 26, 2016 @ 09:50:56
  Author: lcarlier
Revision: 260257

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

Added:
  xf86-input-libinput/repos/testing-i686/
  
xf86-input-libinput/repos/testing-i686/0001-Fedora-use-unaccelerated-vmask-on-input-ABI-21.patch
(from rev 260256, 
xf86-input-libinput/trunk/0001-Fedora-use-unaccelerated-vmask-on-input-ABI-21.patch)
  xf86-input-libinput/repos/testing-i686/PKGBUILD
(from rev 260256, xf86-input-libinput/trunk/PKGBUILD)
  xf86-input-libinput/repos/testing-x86_64/
  
xf86-input-libinput/repos/testing-x86_64/0001-Fedora-use-unaccelerated-vmask-on-input-ABI-21.patch
(from rev 260256, 
xf86-input-libinput/trunk/0001-Fedora-use-unaccelerated-vmask-on-input-ABI-21.patch)
  xf86-input-libinput/repos/testing-x86_64/PKGBUILD
(from rev 260256, xf86-input-libinput/trunk/PKGBUILD)

--+
 testing-i686/0001-Fedora-use-unaccelerated-vmask-on-input-ABI-21.patch   |   
27 +++
 testing-i686/PKGBUILD|   
36 ++
 testing-x86_64/0001-Fedora-use-unaccelerated-vmask-on-input-ABI-21.patch |   
27 +++
 testing-x86_64/PKGBUILD  |   
36 ++
 4 files changed, 126 insertions(+)

Copied: 
xf86-input-libinput/repos/testing-i686/0001-Fedora-use-unaccelerated-vmask-on-input-ABI-21.patch
 (from rev 260256, 
xf86-input-libinput/trunk/0001-Fedora-use-unaccelerated-vmask-on-input-ABI-21.patch)
===
--- testing-i686/0001-Fedora-use-unaccelerated-vmask-on-input-ABI-21.patch  
(rev 0)
+++ testing-i686/0001-Fedora-use-unaccelerated-vmask-on-input-ABI-21.patch  
2016-02-26 08:50:56 UTC (rev 260257)
@@ -0,0 +1,27 @@
+From cf8b629ebf30d6aa57dd405ce450fb0f33136626 Mon Sep 17 00:00:00 2001
+From: Peter Hutterer 
+Date: Mon, 13 Jul 2015 08:30:43 +1000
+Subject: [PATCH xf86-input-libinput] Fedora: use unaccelerated vmask on input
+ ABI > 21
+
+Signed-off-by: Peter Hutterer 
+---
+ src/xf86libinput.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/libinput.c b/src/libinput.c
+index a06e44f..5eb5adf 100644
+--- a/src/xf86libinput.c
 b/src/xf86libinput.c
+@@ -47,7 +47,7 @@
+ #define XI86_SERVER_FD 0x20
+ #endif
+
+-#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) * 1000 + 
GET_ABI_MINOR(ABI_XINPUT_VERSION) > 22000
++#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) * 1000 + 
GET_ABI_MINOR(ABI_XINPUT_VERSION) > 21000
+ #define HAVE_VMASK_UNACCEL 1
+ #else
+ #undef HAVE_VMASK_UNACCEL
+--
+2.4.3
+

Copied: xf86-input-libinput/repos/testing-i686/PKGBUILD (from rev 260256, 
xf86-input-libinput/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-02-26 08:50:56 UTC (rev 260257)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Laurent Carlier 
+
+pkgname=xf86-input-libinput
+pkgver=0.17.0
+pkgrel=1
+pkgdesc="Generic input driver for the X.Org server based on libinput"
+arch=('i686' 'x86_64')
+license=('custom')
+url="http://xorg.freedesktop.org/;
+depends=('libinput>=1.2.0')
+makedepends=('xorg-server-devel' 'X-ABI-XINPUT_VERSION=22.1' 'libxi' 'libx11' 
'resourceproto' 'scrnsaverproto')
+provides=('xf86-input-driver')
+conflicts=('xorg-server<1.18.0' 'X-ABI-XINPUT_VERSION<22' 
'X-ABI-XINPUT_VERSION>=23')
+groups=('xorg-drivers' 'xorg')
+source=(http://xorg.freedesktop.org/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2{,.sig})
+sha256sums=('2a378a25da46a875b6699ada29332290798e37df708ab2f2e4b0915ef1fbbab2'
+'SKIP')
+validpgpkeys=('3C2C43D9447D5938EF4551EBE23B7E70B467F0BF') # Peter Hutterer 
(Who-T) 
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  ./configure --prefix=/usr \
+--disable-static
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+
+  make DESTDIR="${pkgdir}" install
+
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}

Copied: 
xf86-input-libinput/repos/testing-x86_64/0001-Fedora-use-unaccelerated-vmask-on-input-ABI-21.patch
 (from rev 260256, 
xf86-input-libinput/trunk/0001-Fedora-use-unaccelerated-vmask-on-input-ABI-21.patch)
===
--- testing-x86_64/0001-Fedora-use-unaccelerated-vmask-on-input-ABI-21.patch
(rev 0)
+++ testing-x86_64/0001-Fedora-use-unaccelerated-vmask-on-input-ABI-21.patch
2016-02-26 08:50:56 UTC (rev 260257)
@@ -0,0 +1,27 @@
+From cf8b629ebf30d6aa57dd405ce450fb0f33136626 Mon Sep 17 00:00:00 2001
+From: Peter Hutterer 
+Date: Mon, 13 Jul 2015 08:30:43 +1000
+Subject: [PATCH xf86-input-libinput] Fedora: use unaccelerated 

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

2016-02-26 Thread Felix Yan
Date: Friday, February 26, 2016 @ 09:50:46
  Author: fyan
Revision: 163486

upgpkg: python-jsonpatch 1.13-2

fix dependency and description

Modified:
  python-jsonpatch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-26 08:21:28 UTC (rev 163485)
+++ PKGBUILD2016-02-26 08:50:46 UTC (rev 163486)
@@ -1,45 +1,60 @@
 # $Id$
-# Maintainer: Daniel Wallace 
+# Maintainer: Felix Yan 
+# Contributor: Daniel Wallace 
 # Contributor: Limao Luo 
 
 pkgbase=python-jsonpatch
 _pkgname=jsonpatch
-pkgname=(python-$_pkgname python2-$_pkgname)
+pkgname=(python-jsonpatch python2-jsonpatch)
 pkgver=1.13
-pkgrel=1
-pkgdesc="Python object model built on JSON schema and JSON patch"
-arch=(any)
-url=https://github.com/stefankoegl/python-json-patch
-license=(BSD)
-makedepends=(python2-setuptools python2-jsonschema python-setuptools 
python-jsonschema)
-options=(!emptydirs)
-source=(http://pypi.python.org/packages/source/j/${_pkgname#*-}/${_pkgname#*-}-$pkgver.tar.gz)
-sha256sums=('9470656a08002e309632b59772b206ce0564c9a77b44c25f05f49dd2cad248d5')
-sha512sums=('23f0c92c2c8834d5e3129e9ba78ece7da2646dd60d5b0522b0f09d83e20057ef7517042e5ee8547804185d3ce23cff394c8fe78df93fad7999fae12cc5467a45')
+pkgrel=2
+pkgdesc="An implementation of the JSON Patch format"
+arch=("any")
+url="https://github.com/stefankoegl/python-json-patch;
+license=("BSD")
+makedepends=("python-setuptools" "python2-setuptools" "python-jsonpointer" 
"python2-jsonpointer"
+ "python-pypandoc" "python2-pypandoc" "git")
+checkdepends=('python-coverage' 'python2-coverage')
+source=("git+https://github.com/stefankoegl/python-json-patch.git#tag=v$pkgver;)
+sha512sums=('SKIP')
 
 prepare(){
-cp -a $_pkgname-$pkgver $_pkgname-$pkgver-2
-find $_pkgname-$pkgver-2 -name \*.py -exec sed -i '1s/python$/&2/' {} +
+  cp -a python-json-patch{,-py2}
+  find python-json-patch-py2 -name \*.py -exec sed -i '1s/python$/&2/' {} +
 }
 
 build() {
-LANG=en_US.UTF-8
-cd $srcdir/$_pkgname-$pkgver
-python setup.py build
-cd $srcdir/$_pkgname-$pkgver-2
-python2 setup.py build
+  cd "$srcdir"/python-json-patch
+  python setup.py build
+
+  cd "$srcdir"/python-json-patch-py2
+  python2 setup.py build
 }
 
+check() {
+  cd "$srcdir"/python-json-patch
+  coverage run --source=jsonpatch tests.py
+
+  cd "$srcdir"/python-json-patch-py2
+  coverage2 run --source=jsonpatch tests.py
+}
+
 package_python-jsonpatch() {
-cd $srcdir/$_pkgname-$pkgver
-depends=(python-jsonschema)
-install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
-python setup.py install --prefix=/usr --root="$pkgdir"
+  depends=("python-jsonpointer")
+
+  cd "$srcdir"/python-json-patch
+
+  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+  python setup.py install --prefix=/usr --root="$pkgdir"
 }
 package_python2-jsonpatch() {
-cd $srcdir/$_pkgname-$pkgver-2
-depends=(python2-jsonschema)
-install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
-python2 setup.py install --prefix=/usr --root="$pkgdir"
-rm $pkgdir/usr/bin/json{diff,patch}
+  depends=("python2-jsonpointer")
+
+  cd "$srcdir"/python-json-patch-py2
+
+  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+  python2 setup.py install --prefix=/usr --root="$pkgdir"
+  for _bin in "$pkgdir"/usr/bin/*; do
+mv "$_bin"{,2}
+  done
 }


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

2016-02-26 Thread Laurent Carlier
Date: Friday, February 26, 2016 @ 09:50:48
  Author: lcarlier
Revision: 260256

upgpkg: xf86-input-libinput 0.17.0-1

upstream update 0.17.0

Modified:
  xf86-input-libinput/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-26 05:12:59 UTC (rev 260255)
+++ PKGBUILD2016-02-26 08:50:48 UTC (rev 260256)
@@ -2,19 +2,19 @@
 # Maintainer: Laurent Carlier 
 
 pkgname=xf86-input-libinput
-pkgver=0.16.0
+pkgver=0.17.0
 pkgrel=1
 pkgdesc="Generic input driver for the X.Org server based on libinput"
 arch=('i686' 'x86_64')
 license=('custom')
 url="http://xorg.freedesktop.org/;
-depends=('libinput')
+depends=('libinput>=1.2.0')
 makedepends=('xorg-server-devel' 'X-ABI-XINPUT_VERSION=22.1' 'libxi' 'libx11' 
'resourceproto' 'scrnsaverproto')
 provides=('xf86-input-driver')
 conflicts=('xorg-server<1.18.0' 'X-ABI-XINPUT_VERSION<22' 
'X-ABI-XINPUT_VERSION>=23')
 groups=('xorg-drivers' 'xorg')
 
source=(http://xorg.freedesktop.org/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2{,.sig})
-sha256sums=('fdade531e91e79acf6dce8ac55fa4f65abe3f1358c5d3d777ae48dbc74b76f49'
+sha256sums=('2a378a25da46a875b6699ada29332290798e37df708ab2f2e4b0915ef1fbbab2'
 'SKIP')
 validpgpkeys=('3C2C43D9447D5938EF4551EBE23B7E70B467F0BF') # Peter Hutterer 
(Who-T) 
 


[arch-commits] Commit in (4 files)

2016-02-26 Thread Felix Yan
Date: Friday, February 26, 2016 @ 09:21:08
  Author: fyan
Revision: 163484

addpkg: python-keystoneauth1 2.3.0-1

Added:
  python-keystoneauth1/
  python-keystoneauth1/repos/
  python-keystoneauth1/trunk/
  python-keystoneauth1/trunk/PKGBUILD

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

Added: python-keystoneauth1/trunk/PKGBUILD
===
--- python-keystoneauth1/trunk/PKGBUILD (rev 0)
+++ python-keystoneauth1/trunk/PKGBUILD 2016-02-26 08:21:08 UTC (rev 163484)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Daniel Wallace 
+
+pkgbase=python-keystoneauth1
+pkgname=(python-keystoneauth1 python2-keystoneauth1)
+pkgver=2.3.0
+pkgrel=1
+pkgdesc="Authentication Library for OpenStack Identity"
+arch=('any')
+url="http://docs.openstack.org/developer/keystoneauth;
+license=('Apache')
+makedepends=('git' 'python-setuptools' 'python2-setuptools' 'python-pbr' 
'python2-pbr'
+ 'python-iso8601' 'python2-iso8601' 'python-positional' 
'python2-positional'
+ 'python-requests' 'python2-requests' 'python-stevedore' 
'python2-stevedore')
+checkdepends=('python-testrepository' 'python2-testrepository' 
'python-requests-mock'
+  'python2-requests-mock' 'python-testscenarios' 
'python2-testscenarios'
+  'python-mock' 'python2-mock' 'python-lxml' 'python2-lxml' 'pep8' 
'python2-pep8'
+  'python-oslo-config' 'python2-oslo-config' 'python-betamax' 
'python2-betamax'
+  'python-oslotest' 'python2-oslotest' 'python-oslo-utils' 
'python2-oslo-utils'
+  'python-requests-kerberos' 'python2-requests-kerberos')
+source=("git+https://git.openstack.org/openstack/keystoneauth#tag=$pkgver;)
+md5sums=('SKIP')
+
+prepare() {
+  cp -a keystoneauth{,-py2}
+}
+
+build() {
+  cd "$srcdir"/keystoneauth
+  python setup.py build
+
+  cd "$srcdir"/keystoneauth-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/keystoneauth
+  # Two failures in 
keystoneauth1.tests.unit.test_betamax_fixture.TestBetamaxFixture
+  python setup.py testr || warning "Tests failed"
+
+  cd "$srcdir"/keystoneauth-py2
+  PYTHON=python2 python2 setup.py testr
+}
+
+package_python-keystoneauth1() {
+  depends=('python-pbr' 'python-iso8601' 'python-stevedore' 
'python-positional' 'python-requests')
+
+  cd "$srcdir"/keystoneauth
+  python setup.py install --root="$pkgdir/" --optimize=1
+}
+
+package_python2-keystoneauth1() {
+  depends=('python2-pbr' 'python2-iso8601' 'python2-stevedore' 
'python2-positional' 'python2-requests')
+
+  cd "$srcdir"/keystoneauth-py2
+  python2 setup.py install --root="$pkgdir/" --optimize=1
+}
+
+# vim:set ts=2 sw=2 et:


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


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

2016-02-26 Thread Felix Yan
Date: Friday, February 26, 2016 @ 09:21:28
  Author: fyan
Revision: 163485

archrelease: copy trunk to community-any

Added:
  python-keystoneauth1/repos/community-any/
  python-keystoneauth1/repos/community-any/PKGBUILD
(from rev 163484, python-keystoneauth1/trunk/PKGBUILD)

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

Copied: python-keystoneauth1/repos/community-any/PKGBUILD (from rev 163484, 
python-keystoneauth1/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2016-02-26 08:21:28 UTC (rev 163485)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Daniel Wallace 
+
+pkgbase=python-keystoneauth1
+pkgname=(python-keystoneauth1 python2-keystoneauth1)
+pkgver=2.3.0
+pkgrel=1
+pkgdesc="Authentication Library for OpenStack Identity"
+arch=('any')
+url="http://docs.openstack.org/developer/keystoneauth;
+license=('Apache')
+makedepends=('git' 'python-setuptools' 'python2-setuptools' 'python-pbr' 
'python2-pbr'
+ 'python-iso8601' 'python2-iso8601' 'python-positional' 
'python2-positional'
+ 'python-requests' 'python2-requests' 'python-stevedore' 
'python2-stevedore')
+checkdepends=('python-testrepository' 'python2-testrepository' 
'python-requests-mock'
+  'python2-requests-mock' 'python-testscenarios' 
'python2-testscenarios'
+  'python-mock' 'python2-mock' 'python-lxml' 'python2-lxml' 'pep8' 
'python2-pep8'
+  'python-oslo-config' 'python2-oslo-config' 'python-betamax' 
'python2-betamax'
+  'python-oslotest' 'python2-oslotest' 'python-oslo-utils' 
'python2-oslo-utils'
+  'python-requests-kerberos' 'python2-requests-kerberos')
+source=("git+https://git.openstack.org/openstack/keystoneauth#tag=$pkgver;)
+md5sums=('SKIP')
+
+prepare() {
+  cp -a keystoneauth{,-py2}
+}
+
+build() {
+  cd "$srcdir"/keystoneauth
+  python setup.py build
+
+  cd "$srcdir"/keystoneauth-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/keystoneauth
+  # Two failures in 
keystoneauth1.tests.unit.test_betamax_fixture.TestBetamaxFixture
+  python setup.py testr || warning "Tests failed"
+
+  cd "$srcdir"/keystoneauth-py2
+  PYTHON=python2 python2 setup.py testr
+}
+
+package_python-keystoneauth1() {
+  depends=('python-pbr' 'python-iso8601' 'python-stevedore' 
'python-positional' 'python-requests')
+
+  cd "$srcdir"/keystoneauth
+  python setup.py install --root="$pkgdir/" --optimize=1
+}
+
+package_python2-keystoneauth1() {
+  depends=('python2-pbr' 'python2-iso8601' 'python2-stevedore' 
'python2-positional' 'python2-requests')
+
+  cd "$srcdir"/keystoneauth-py2
+  python2 setup.py install --root="$pkgdir/" --optimize=1
+}
+
+# vim:set ts=2 sw=2 et:


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

2016-02-26 Thread Felix Yan
Date: Friday, February 26, 2016 @ 09:18:33
  Author: fyan
Revision: 163483

archrelease: copy trunk to community-any

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

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

Copied: python-requests-kerberos/repos/community-any/PKGBUILD (from rev 163482, 
python-requests-kerberos/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2016-02-26 08:18:33 UTC (rev 163483)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-requests-kerberos
+pkgname=('python-requests-kerberos' 'python2-requests-kerberos')
+pkgver=0.8.0
+pkgrel=1
+pkgdesc="A kerberos of useful classes and functions to be used with 
python-requests."
+arch=('any')
+url="https://github.com/requests/requests-kerberos;
+license=('Apache')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-requests' 
'python2-requests'
+ 'python-pykerberos' 'python2-pykerberos' 'git')
+checkdepends=('python-pytest' 'python2-pytest' 'python-mock' 'python2-mock')
+source=("git+https://github.com/requests/requests-kerberos.git#tag=v$pkgver;)
+md5sums=('SKIP')
+
+prepare() {
+  cp -a requests-kerberos{,-py2}
+}
+
+build() {
+  cd "$srcdir"/requests-kerberos
+  python setup.py build
+
+  cd "$srcdir"/requests-kerberos-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/requests-kerberos
+  py.test
+
+  cd "$srcdir"/requests-kerberos-py2
+  py.test2
+}
+
+package_python-requests-kerberos() {
+  depends=('python-requests' 'python-pykerberos')
+
+  cd "$srcdir"/requests-kerberos
+  python setup.py install --root="$pkgdir/" --optimize=1
+}
+
+package_python2-requests-kerberos() {
+  depends=('python2-requests' 'python2-pykerberos')
+
+  cd "$srcdir"/requests-kerberos-py2
+  python2 setup.py install --root="$pkgdir/" --optimize=1
+}


[arch-commits] Commit in (4 files)

2016-02-26 Thread Felix Yan
Date: Friday, February 26, 2016 @ 09:16:46
  Author: fyan
Revision: 163482

addpkg: python-requests-kerberos 0.8.0-1

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

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

Added: python-requests-kerberos/trunk/PKGBUILD
===
--- python-requests-kerberos/trunk/PKGBUILD (rev 0)
+++ python-requests-kerberos/trunk/PKGBUILD 2016-02-26 08:16:46 UTC (rev 
163482)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-requests-kerberos
+pkgname=('python-requests-kerberos' 'python2-requests-kerberos')
+pkgver=0.8.0
+pkgrel=1
+pkgdesc="A kerberos of useful classes and functions to be used with 
python-requests."
+arch=('any')
+url="https://github.com/requests/requests-kerberos;
+license=('Apache')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-requests' 
'python2-requests'
+ 'python-pykerberos' 'python2-pykerberos' 'git')
+checkdepends=('python-pytest' 'python2-pytest' 'python-mock' 'python2-mock')
+source=("git+https://github.com/requests/requests-kerberos.git#tag=v$pkgver;)
+md5sums=('SKIP')
+
+prepare() {
+  cp -a requests-kerberos{,-py2}
+}
+
+build() {
+  cd "$srcdir"/requests-kerberos
+  python setup.py build
+
+  cd "$srcdir"/requests-kerberos-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/requests-kerberos
+  py.test
+
+  cd "$srcdir"/requests-kerberos-py2
+  py.test2
+}
+
+package_python-requests-kerberos() {
+  depends=('python-requests' 'python-pykerberos')
+
+  cd "$srcdir"/requests-kerberos
+  python setup.py install --root="$pkgdir/" --optimize=1
+}
+
+package_python2-requests-kerberos() {
+  depends=('python2-requests' 'python2-pykerberos')
+
+  cd "$srcdir"/requests-kerberos-py2
+  python2 setup.py install --root="$pkgdir/" --optimize=1
+}


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


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

2016-02-26 Thread Felix Yan
Date: Friday, February 26, 2016 @ 09:14:21
  Author: fyan
Revision: 163481

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

Added:
  python-pykerberos/repos/community-i686/
  python-pykerberos/repos/community-i686/PKGBUILD
(from rev 163480, python-pykerberos/trunk/PKGBUILD)
  python-pykerberos/repos/community-x86_64/
  python-pykerberos/repos/community-x86_64/PKGBUILD
(from rev 163480, python-pykerberos/trunk/PKGBUILD)

---+
 community-i686/PKGBUILD   |   42 ++
 community-x86_64/PKGBUILD |   42 ++
 2 files changed, 84 insertions(+)

Copied: python-pykerberos/repos/community-i686/PKGBUILD (from rev 163480, 
python-pykerberos/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-02-26 08:14:21 UTC (rev 163481)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-pykerberos
+pkgname=('python-pykerberos' 'python2-pykerberos')
+pkgver=1.1.10
+pkgrel=1
+pkgdesc="High-level interface to Kerberos"
+arch=('i686' 'x86_64')
+license=('Apache')
+url="https://github.com/02strich/pykerberos;
+makedepends=('python-setuptools' 'python2-setuptools' 'krb5' 'git')
+source=("git+https://github.com/02strich/pykerberos.git#tag=v$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  cp -a pykerberos{,-py2}
+}
+
+build() {
+  cd "$srcdir"/pykerberos
+  python setup.py build
+
+  cd "$srcdir"/pykerberos-py2
+  python2 setup.py build
+}
+
+package_python-pykerberos() {
+  depends=('python' 'krb5')
+
+  cd pykerberos
+  python setup.py install --root="${pkgdir}" --optimize=1
+  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_python2-pykerberos() {
+  depends=('python2' 'krb5')
+
+  cd pykerberos-py2
+  python2 setup.py install --root="${pkgdir}" --optimize=1
+  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}

Copied: python-pykerberos/repos/community-x86_64/PKGBUILD (from rev 163480, 
python-pykerberos/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-02-26 08:14:21 UTC (rev 163481)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-pykerberos
+pkgname=('python-pykerberos' 'python2-pykerberos')
+pkgver=1.1.10
+pkgrel=1
+pkgdesc="High-level interface to Kerberos"
+arch=('i686' 'x86_64')
+license=('Apache')
+url="https://github.com/02strich/pykerberos;
+makedepends=('python-setuptools' 'python2-setuptools' 'krb5' 'git')
+source=("git+https://github.com/02strich/pykerberos.git#tag=v$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  cp -a pykerberos{,-py2}
+}
+
+build() {
+  cd "$srcdir"/pykerberos
+  python setup.py build
+
+  cd "$srcdir"/pykerberos-py2
+  python2 setup.py build
+}
+
+package_python-pykerberos() {
+  depends=('python' 'krb5')
+
+  cd pykerberos
+  python setup.py install --root="${pkgdir}" --optimize=1
+  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_python2-pykerberos() {
+  depends=('python2' 'krb5')
+
+  cd pykerberos-py2
+  python2 setup.py install --root="${pkgdir}" --optimize=1
+  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}


[arch-commits] Commit in (4 files)

2016-02-26 Thread Felix Yan
Date: Friday, February 26, 2016 @ 09:13:48
  Author: fyan
Revision: 163480

addpkg: python-pykerberos 1.1.10-1

Added:
  python-pykerberos/
  python-pykerberos/repos/
  python-pykerberos/trunk/
  python-pykerberos/trunk/PKGBUILD

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

Added: python-pykerberos/trunk/PKGBUILD
===
--- python-pykerberos/trunk/PKGBUILD(rev 0)
+++ python-pykerberos/trunk/PKGBUILD2016-02-26 08:13:48 UTC (rev 163480)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-pykerberos
+pkgname=('python-pykerberos' 'python2-pykerberos')
+pkgver=1.1.10
+pkgrel=1
+pkgdesc="High-level interface to Kerberos"
+arch=('i686' 'x86_64')
+license=('Apache')
+url="https://github.com/02strich/pykerberos;
+makedepends=('python-setuptools' 'python2-setuptools' 'krb5' 'git')
+source=("git+https://github.com/02strich/pykerberos.git#tag=v$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  cp -a pykerberos{,-py2}
+}
+
+build() {
+  cd "$srcdir"/pykerberos
+  python setup.py build
+
+  cd "$srcdir"/pykerberos-py2
+  python2 setup.py build
+}
+
+package_python-pykerberos() {
+  depends=('python' 'krb5')
+
+  cd pykerberos
+  python setup.py install --root="${pkgdir}" --optimize=1
+  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_python2-pykerberos() {
+  depends=('python2' 'krb5')
+
+  cd pykerberos-py2
+  python2 setup.py install --root="${pkgdir}" --optimize=1
+  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}


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