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

2016-09-12 Thread Evangelos Foutras
Date: Tuesday, September 13, 2016 @ 00:31:15
  Author: foutrelis
Revision: 276208

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

Added:
  
xfdesktop/repos/extra-i686/0001-Settings-Allow-directories-to-be-selected.patch
(from rev 276207, 
xfdesktop/trunk/0001-Settings-Allow-directories-to-be-selected.patch)
  xfdesktop/repos/extra-i686/PKGBUILD
(from rev 276207, xfdesktop/trunk/PKGBUILD)
  
xfdesktop/repos/extra-x86_64/0001-Settings-Allow-directories-to-be-selected.patch
(from rev 276207, 
xfdesktop/trunk/0001-Settings-Allow-directories-to-be-selected.patch)
  xfdesktop/repos/extra-x86_64/PKGBUILD
(from rev 276207, xfdesktop/trunk/PKGBUILD)
Deleted:
  xfdesktop/repos/extra-i686/PKGBUILD
  xfdesktop/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |   90 
++
 extra-i686/0001-Settings-Allow-directories-to-be-selected.patch   |   29 +++
 extra-i686/PKGBUILD   |   42 
 extra-x86_64/0001-Settings-Allow-directories-to-be-selected.patch |   29 +++
 extra-x86_64/PKGBUILD |   42 
 5 files changed, 148 insertions(+), 84 deletions(-)

Copied: 
xfdesktop/repos/extra-i686/0001-Settings-Allow-directories-to-be-selected.patch 
(from rev 276207, 
xfdesktop/trunk/0001-Settings-Allow-directories-to-be-selected.patch)
===
--- extra-i686/0001-Settings-Allow-directories-to-be-selected.patch 
(rev 0)
+++ extra-i686/0001-Settings-Allow-directories-to-be-selected.patch 
2016-09-13 00:31:15 UTC (rev 276208)
@@ -0,0 +1,29 @@
+From cc311b61b82b7510a3a6cb0952d3a331e3551e05 Mon Sep 17 00:00:00 2001
+From: Eric Koegel 
+Date: Mon, 13 Jun 2016 15:08:11 +0300
+Subject: [PATCH] Settings: Allow directories to be selected
+
+Gtk3 isn't as bright as Gtk2 so we need to add directories to the
+filter for the GtkFileChooser, otherwise you can't select
+directories while in directory mode...
+---
+ settings/main.c | 3 +++
+ 1 file changed, 3 insertions(+)
+
+diff --git a/settings/main.c b/settings/main.c
+index ce08110..39eeafa 100644
+--- a/settings/main.c
 b/settings/main.c
+@@ -1852,6 +1852,9 @@ xfdesktop_settings_dialog_setup_tabs(GtkBuilder 
*main_gxml,
+ filter = gtk_file_filter_new();
+ gtk_file_filter_set_name(filter, _("Image files"));
+ gtk_file_filter_add_pixbuf_formats(filter);
++gtk_file_filter_add_mime_type(filter, "inode/directory");
++gtk_file_filter_add_mime_type(filter, "application/x-directory");
++gtk_file_filter_add_mime_type(filter, "text/directory");
+ gtk_file_chooser_add_filter(GTK_FILE_CHOOSER(panel->btn_folder), filter);
+ 
+ /* Get default wallpaper folder */
+-- 
+2.9.3
+

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-09-13 00:30:55 UTC (rev 276207)
+++ extra-i686/PKGBUILD 2016-09-13 00:31:15 UTC (rev 276208)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Evangelos Foutras 
-# Contributor: tobias 
-
-pkgname=xfdesktop
-pkgver=4.12.3
-pkgrel=2
-pkgdesc="A desktop manager for Xfce"
-arch=('i686' 'x86_64')
-url="http://www.xfce.org/;
-license=('GPL2')
-groups=('xfce4')
-depends=('libxfce4ui' 'thunar' 'garcon' 'hicolor-icon-theme' 'libwnck')
-makedepends=('intltool')
-conflicts=('xfce4-menueditor')
-replaces=('xfce4-menueditor')
-source=(http://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
-sha256sums=('a8a8d93744d842ca6ac1f9bd2c8789ee178937bca7e170e5239cbdbef30520ac')
-
-prepare() {
-  cd "$srcdir/$pkgname-$pkgver"
-}
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---enable-gio-unix \
---enable-thunarx \
---enable-notifications \
---disable-debug
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: xfdesktop/repos/extra-i686/PKGBUILD (from rev 276207, 
xfdesktop/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-09-13 00:31:15 UTC (rev 276208)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Evangelos Foutras 
+# Contributor: tobias 
+
+pkgname=xfdesktop
+pkgver=4.12.3
+pkgrel=3
+pkgdesc="A desktop manager for Xfce"
+arch=('i686' 'x86_64')
+url="http://www.xfce.org/;
+license=('GPL2')
+groups=('xfce4')
+depends=('libxfce4ui' 'thunar' 'garcon' 'hicolor-icon-theme' 'libwnck')
+makedepends=('intltool')
+conflicts=('xfce4-menueditor')
+replaces=('xfce4-menueditor')
+source=(http://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2
+0001-Settings-Allow-directories-to-be-selected.patch)

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

2016-09-12 Thread Evangelos Foutras
Date: Tuesday, September 13, 2016 @ 00:30:55
  Author: foutrelis
Revision: 276207

upgpkg: xfdesktop 4.12.3-3

Fix FS#50729: gtk 2.24.31 regression - folders grayed out in wallpaper choose 
dialog

Added:
  xfdesktop/trunk/0001-Settings-Allow-directories-to-be-selected.patch
Modified:
  xfdesktop/trunk/PKGBUILD

--+
 0001-Settings-Allow-directories-to-be-selected.patch |   29 +
 PKGBUILD |9 +++--
 2 files changed, 35 insertions(+), 3 deletions(-)

Added: 0001-Settings-Allow-directories-to-be-selected.patch
===
--- 0001-Settings-Allow-directories-to-be-selected.patch
(rev 0)
+++ 0001-Settings-Allow-directories-to-be-selected.patch2016-09-13 
00:30:55 UTC (rev 276207)
@@ -0,0 +1,29 @@
+From cc311b61b82b7510a3a6cb0952d3a331e3551e05 Mon Sep 17 00:00:00 2001
+From: Eric Koegel 
+Date: Mon, 13 Jun 2016 15:08:11 +0300
+Subject: [PATCH] Settings: Allow directories to be selected
+
+Gtk3 isn't as bright as Gtk2 so we need to add directories to the
+filter for the GtkFileChooser, otherwise you can't select
+directories while in directory mode...
+---
+ settings/main.c | 3 +++
+ 1 file changed, 3 insertions(+)
+
+diff --git a/settings/main.c b/settings/main.c
+index ce08110..39eeafa 100644
+--- a/settings/main.c
 b/settings/main.c
+@@ -1852,6 +1852,9 @@ xfdesktop_settings_dialog_setup_tabs(GtkBuilder 
*main_gxml,
+ filter = gtk_file_filter_new();
+ gtk_file_filter_set_name(filter, _("Image files"));
+ gtk_file_filter_add_pixbuf_formats(filter);
++gtk_file_filter_add_mime_type(filter, "inode/directory");
++gtk_file_filter_add_mime_type(filter, "application/x-directory");
++gtk_file_filter_add_mime_type(filter, "text/directory");
+ gtk_file_chooser_add_filter(GTK_FILE_CHOOSER(panel->btn_folder), filter);
+ 
+ /* Get default wallpaper folder */
+-- 
+2.9.3
+

Modified: PKGBUILD
===
--- PKGBUILD2016-09-12 20:39:34 UTC (rev 276206)
+++ PKGBUILD2016-09-13 00:30:55 UTC (rev 276207)
@@ -4,7 +4,7 @@
 
 pkgname=xfdesktop
 pkgver=4.12.3
-pkgrel=2
+pkgrel=3
 pkgdesc="A desktop manager for Xfce"
 arch=('i686' 'x86_64')
 url="http://www.xfce.org/;
@@ -14,11 +14,14 @@
 makedepends=('intltool')
 conflicts=('xfce4-menueditor')
 replaces=('xfce4-menueditor')
-source=(http://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
-sha256sums=('a8a8d93744d842ca6ac1f9bd2c8789ee178937bca7e170e5239cbdbef30520ac')
+source=(http://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2
+0001-Settings-Allow-directories-to-be-selected.patch)
+sha256sums=('a8a8d93744d842ca6ac1f9bd2c8789ee178937bca7e170e5239cbdbef30520ac'
+'6dbd98fc621b5da741d4528c884e0eb9e1c045407879b3d046a1a7faae00bac6')
 
 prepare() {
   cd "$srcdir/$pkgname-$pkgver"
+  patch -Np1 -i ../0001-Settings-Allow-directories-to-be-selected.patch
 }
 
 build() {


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

2016-09-12 Thread Tobias Powalowski
Date: Monday, September 12, 2016 @ 20:39:34
  Author: tpowa
Revision: 276206

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

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

---+
 /PKGBUILD |  122 
 /btrfs-progs.install  |   30 +++
 /btrfs-scrub@.service |   14 +++
 /btrfs-scrub@.timer   |   20 +
 /initcpio-hook-btrfs  |   14 +++
 /initcpio-install-btrfs   |   34 
 testing-i686/PKGBUILD |   61 
 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   |   61 
 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 
 18 files changed, 234 insertions(+), 234 deletions(-)

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2016-09-12 20:37:40 UTC (rev 276205)
+++ testing-i686/PKGBUILD   2016-09-12 20:39:34 UTC (rev 276206)
@@ -1,61 +0,0 @@
-# $Id$
-# Maintainer: Sébastien "Seblu" Luttringer 
-# Contributor: Tom Gundersen 
-# Contributor: Tobias Powalowski 
-
-pkgname=btrfs-progs
-pkgver=4.7.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')
-validpgpkeys=('F2B41200C54EFB30380C1756C565D5F9D76D583B')
-source=("https://www.kernel.org/pub/linux/kernel/people/kdave/btrfs-progs/btrfs-progs-v$pkgver.tar."{sign,xz}
-'initcpio-install-btrfs'
-'initcpio-hook-btrfs'
-'btrfs-scrub@.service'
-'btrfs-scrub@.timer')
-install=btrfs-progs.install
-options=(!staticlibs)
-md5sums=('SKIP'
- 'f9d3255f729bb2de9bfd604962cdbf45'
- '7241ba3a4286d08da0d50b7176941112'
- 'b09688a915a0ec8f40e2f5aacbabc9ad'
- '794b867e09451284c545bae112aa0cfd'
- '502221c1b47a3bb2c06703d4fb90a0c2')
-
-build() {
-  cd $pkgname-v$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-check() {
-  cd $pkgname-v$pkgver
- ./btrfs filesystem show
-}
-
-package() {
-  cd $pkgname-v$pkgver
-  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 

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

2016-09-12 Thread Tobias Powalowski
Date: Monday, September 12, 2016 @ 20:37:40
  Author: tpowa
Revision: 276205

upgpkg: btrfs-progs 4.7.2-1

bump to latest version

Modified:
  btrfs-progs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-12 20:17:23 UTC (rev 276204)
+++ PKGBUILD2016-09-12 20:37:40 UTC (rev 276205)
@@ -4,7 +4,7 @@
 # Contributor: Tobias Powalowski 
 
 pkgname=btrfs-progs
-pkgver=4.7.1
+pkgver=4.7.2
 pkgrel=1
 pkgdesc='Btrfs filesystem utilities'
 arch=('i686' 'x86_64')
@@ -24,7 +24,7 @@
 install=btrfs-progs.install
 options=(!staticlibs)
 md5sums=('SKIP'
- 'f9d3255f729bb2de9bfd604962cdbf45'
+ '0cc94ee801027ea06c357bbb9906b987'
  '7241ba3a4286d08da0d50b7176941112'
  'b09688a915a0ec8f40e2f5aacbabc9ad'
  '794b867e09451284c545bae112aa0cfd'


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

2016-09-12 Thread Sergej Pupykin
Date: Monday, September 12, 2016 @ 20:34:51
  Author: spupykin
Revision: 189217

upgpkg: poedit 1.8.9-1

upd

Modified:
  poedit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-12 18:04:51 UTC (rev 189216)
+++ PKGBUILD2016-09-12 20:34:51 UTC (rev 189217)
@@ -6,8 +6,8 @@
 # Contributor: Daniel J Griffiths 
 
 pkgname=poedit
-pkgver=1.8.8
-pkgrel=2
+pkgver=1.8.9
+pkgrel=1
 pkgdesc="Cross-platform gettext catalogs (.po files) editor"
 arch=('i686' 'x86_64')
 url="http://www.poedit.net/;
@@ -17,7 +17,7 @@
 #source=(http://www.poedit.net/dl/poedit-$pkgver.tar.gz)
 
#source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-$pkgver.tar.gz
 
source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-${pkgver}.tar.gz)
-md5sums=('b38e9812dde5ec8cb772943503a8b182')
+md5sums=('d1c1503b5825fb14d626f2d276b0d75f')
 
 build() {
 cd "${srcdir}/${pkgname}-${pkgver}"


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

2016-09-12 Thread Sergej Pupykin
Date: Monday, September 12, 2016 @ 20:35:09
  Author: spupykin
Revision: 189218

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-09-12 20:34:51 UTC (rev 189217)
+++ community-i686/PKGBUILD 2016-09-12 20:35:09 UTC (rev 189218)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Andrea Scarpino 
-# Contributor: Giovanni Scafora 
-# Contributor: Alexander Fehr 
-# Contributor: Daniel J Griffiths 
-
-pkgname=poedit
-pkgver=1.8.8
-pkgrel=2
-pkgdesc="Cross-platform gettext catalogs (.po files) editor"
-arch=('i686' 'x86_64')
-url="http://www.poedit.net/;
-license=('MIT')
-depends=('wxgtk' 'desktop-file-utils' 'lucene++' 'gtkspell')
-makedepends=('boost' 'libsm')
-#source=(http://www.poedit.net/dl/poedit-$pkgver.tar.gz)
-#source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-$pkgver.tar.gz
-source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-${pkgver}.tar.gz)
-md5sums=('b38e9812dde5ec8cb772943503a8b182')
-
-build() {
-cd "${srcdir}/${pkgname}-${pkgver}"
-./configure --prefix=/usr --libexecdir=/usr/lib/poedit
-make
-}
-
-package() {
-cd "${srcdir}/${pkgname}-${pkgver}"
-make DESTDIR="${pkgdir}" install
-install -D -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: poedit/repos/community-i686/PKGBUILD (from rev 189217, 
poedit/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-09-12 20:35:09 UTC (rev 189218)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Andrea Scarpino 
+# Contributor: Giovanni Scafora 
+# Contributor: Alexander Fehr 
+# Contributor: Daniel J Griffiths 
+
+pkgname=poedit
+pkgver=1.8.9
+pkgrel=1
+pkgdesc="Cross-platform gettext catalogs (.po files) editor"
+arch=('i686' 'x86_64')
+url="http://www.poedit.net/;
+license=('MIT')
+depends=('wxgtk' 'desktop-file-utils' 'lucene++' 'gtkspell')
+makedepends=('boost' 'libsm')
+#source=(http://www.poedit.net/dl/poedit-$pkgver.tar.gz)
+#source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-$pkgver.tar.gz
+source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-${pkgver}.tar.gz)
+md5sums=('d1c1503b5825fb14d626f2d276b0d75f')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+./configure --prefix=/usr --libexecdir=/usr/lib/poedit
+make
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+make DESTDIR="${pkgdir}" install
+install -D -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-09-12 20:34:51 UTC (rev 189217)
+++ community-x86_64/PKGBUILD   2016-09-12 20:35:09 UTC (rev 189218)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Andrea Scarpino 
-# Contributor: Giovanni Scafora 
-# Contributor: Alexander Fehr 
-# Contributor: Daniel J Griffiths 
-
-pkgname=poedit
-pkgver=1.8.8
-pkgrel=2
-pkgdesc="Cross-platform gettext catalogs (.po files) editor"
-arch=('i686' 'x86_64')
-url="http://www.poedit.net/;
-license=('MIT')
-depends=('wxgtk' 'desktop-file-utils' 'lucene++' 'gtkspell')
-makedepends=('boost' 'libsm')
-#source=(http://www.poedit.net/dl/poedit-$pkgver.tar.gz)
-#source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-$pkgver.tar.gz
-source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-${pkgver}.tar.gz)
-md5sums=('b38e9812dde5ec8cb772943503a8b182')
-
-build() {
-cd "${srcdir}/${pkgname}-${pkgver}"
-./configure --prefix=/usr --libexecdir=/usr/lib/poedit
-make
-}
-
-package() {
-cd "${srcdir}/${pkgname}-${pkgver}"
-make DESTDIR="${pkgdir}" install
-install -D -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}


[arch-commits] Commit in linux/trunk (config.4.8 config.x86_64.4.8)

2016-09-12 Thread Tobias Powalowski
Date: Monday, September 12, 2016 @ 20:17:23
  Author: tpowa
Revision: 276204

add 4.8 configs to svn

Added:
  linux/trunk/config.4.8
  linux/trunk/config.x86_64.4.8

---+
 config.4.8| 8208 
 config.x86_64.4.8 | 7958 ++
 2 files changed, 16166 insertions(+)

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


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

2016-09-12 Thread Andreas Radke
Date: Monday, September 12, 2016 @ 19:38:04
  Author: andyrtr
Revision: 276202

archrelease: copy trunk to extra-any

Added:
  getmail/repos/extra-any/PKGBUILD
(from rev 276201, getmail/trunk/PKGBUILD)
Deleted:
  getmail/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-09-12 19:37:50 UTC (rev 276201)
+++ PKGBUILD2016-09-12 19:38:04 UTC (rev 276202)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke 
-# Committer: Manolis Tzanidakis 
-
-pkgname=getmail
-pkgver=4.49.0
-pkgrel=1
-pkgdesc="A POP3 mail retriever with reliable Maildir and command delivery."
-arch=(any)
-url="http://pyropus.ca/software/getmail;
-license=("GPL")
-depends=('python2')
-optdepends=('python2-gnomekeyring: for storing passwords in gnome-keyring')
-source=(http://pyropus.ca/software/getmail/old-versions/$pkgname-$pkgver.tar.gz)
-md5sums=('165c7ca5c985f10e07ad3ddd900b08dd')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  # fix broken shebang calls
-  sed -i -e "s|#![ ]*/usr/bin/env python|#!/usr/bin/env python2|" 
getmailcore/__init__.py
-  sed -i -e "s|#![ ]*/usr/bin/env python2.3|#!/usr/bin/env python2|" $(find . 
-name '*.py')
-  # recheck
-  head -1 $(find . -name '*.py')
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-  python2 setup.py build
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  python2 setup.py install --root=${pkgdir}
-}

Copied: getmail/repos/extra-any/PKGBUILD (from rev 276201, 
getmail/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-09-12 19:38:04 UTC (rev 276202)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Committer: Manolis Tzanidakis 
+
+pkgname=getmail
+pkgver=4.51.0
+pkgrel=1
+pkgdesc="A POP3 mail retriever with reliable Maildir and command delivery."
+arch=(any)
+url="http://pyropus.ca/software/getmail;
+license=("GPL")
+depends=('python2')
+optdepends=('python2-gnomekeyring: for storing passwords in gnome-keyring')
+source=(http://pyropus.ca/software/getmail/old-versions/$pkgname-$pkgver.tar.gz)
+md5sums=('782425a50c05812b431197021d44ebcb')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  # fix broken shebang calls
+  sed -i -e "s|#![ ]*/usr/bin/env python|#!/usr/bin/env python2|" 
getmailcore/__init__.py
+  sed -i -e "s|#![ ]*/usr/bin/env python2.3|#!/usr/bin/env python2|" $(find . 
-name '*.py')
+  # recheck
+  head -1 $(find . -name '*.py')
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  python2 setup.py build
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  python2 setup.py install --root=${pkgdir}
+}


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

2016-09-12 Thread Andreas Radke
Date: Monday, September 12, 2016 @ 19:37:50
  Author: andyrtr
Revision: 276201

upgpkg: getmail 4.51.0-1

upstream update 4.51.0

Modified:
  getmail/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-12 18:21:45 UTC (rev 276200)
+++ PKGBUILD2016-09-12 19:37:50 UTC (rev 276201)
@@ -3,7 +3,7 @@
 # Committer: Manolis Tzanidakis 
 
 pkgname=getmail
-pkgver=4.49.0
+pkgver=4.51.0
 pkgrel=1
 pkgdesc="A POP3 mail retriever with reliable Maildir and command delivery."
 arch=(any)
@@ -12,7 +12,7 @@
 depends=('python2')
 optdepends=('python2-gnomekeyring: for storing passwords in gnome-keyring')
 
source=(http://pyropus.ca/software/getmail/old-versions/$pkgname-$pkgver.tar.gz)
-md5sums=('165c7ca5c985f10e07ad3ddd900b08dd')
+md5sums=('782425a50c05812b431197021d44ebcb')
 
 prepare() {
   cd ${pkgname}-${pkgver}


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

2016-09-12 Thread Anatol Pomozov
Date: Monday, September 12, 2016 @ 18:21:45
  Author: anatolik
Revision: 276200

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

Added:
  vim/repos/testing-i686/
  vim/repos/testing-i686/PKGBUILD
(from rev 276199, vim/trunk/PKGBUILD)
  vim/repos/testing-i686/archlinux.vim
(from rev 276199, vim/trunk/archlinux.vim)
  vim/repos/testing-i686/vimrc
(from rev 276199, vim/trunk/vimrc)
  vim/repos/testing-x86_64/
  vim/repos/testing-x86_64/PKGBUILD
(from rev 276199, vim/trunk/PKGBUILD)
  vim/repos/testing-x86_64/archlinux.vim
(from rev 276199, vim/trunk/archlinux.vim)
  vim/repos/testing-x86_64/vimrc
(from rev 276199, vim/trunk/vimrc)

--+
 testing-i686/PKGBUILD|  203 +
 testing-i686/archlinux.vim   |   25 +
 testing-i686/vimrc   |   18 +++
 testing-x86_64/PKGBUILD  |  203 +
 testing-x86_64/archlinux.vim |   25 +
 testing-x86_64/vimrc |   18 +++
 6 files changed, 492 insertions(+)

Copied: vim/repos/testing-i686/PKGBUILD (from rev 276199, vim/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-09-12 18:21:45 UTC (rev 276200)
@@ -0,0 +1,203 @@
+# $Id$
+# Maintainer: Anatol Pomozov 
+# Contributor: Thomas Dziedzic 
+# Contributor: Jan "heftig" Steffens 
+# Contributor: tobias [ tobias at archlinux org ]
+# Contributor: Daniel J Griffiths 
+# Contributor: Christian Hesse 
+
+pkgbase=vim
+pkgname=(vim gvim vim-runtime)
+pkgver=8.0.0003
+_versiondir=80
+pkgrel=1
+arch=(i686 x86_64)
+license=('custom:vim')
+url='http://www.vim.org'
+makedepends=(gpm python2 python ruby libxt gtk2 gtk3 lua gawk tcl)
+source=(vim-$pkgver.tar.gz::http://github.com/vim/vim/archive/v$pkgver.tar.gz
+vimrc
+archlinux.vim)
+sha1sums=('77fac5302969a292ab89e827a36f3b278c99af9a'
+  '0612c9d685ca7bb3b7bad8ebb9eaaefd5e724376'
+  '94f7bb87b5d06bace86bc4b3ef1372813b4eedf2')
+
+prepare() {
+  cd vim-$pkgver/src
+
+  # define the place for the global (g)vimrc file (set to /etc/vimrc)
+  sed -i 's|^.*\(#define SYS_.*VIMRC_FILE.*"\) .*$|\1|' feature.h
+  sed -i 's|^.*\(#define VIMRC_FILE.*"\) .*$|\1|' feature.h
+
+  autoconf
+
+  cd "$srcdir"
+  cp -a vim-$pkgver gvim-$pkgver
+}
+
+build() {
+  cd "${srcdir}"/vim-$pkgver
+  ./configure \
+--prefix=/usr \
+--localstatedir=/var/lib/vim \
+--with-features=huge \
+--with-compiledby='Arch Linux' \
+--enable-gpm \
+--enable-acl \
+--with-x=no \
+--disable-gui \
+--enable-multibyte \
+--enable-cscope \
+--enable-netbeans \
+--enable-perlinterp=dynamic \
+--enable-pythoninterp=dynamic \
+--enable-python3interp=dynamic \
+--enable-rubyinterp=dynamic \
+--enable-luainterp=dynamic \
+--enable-tclinterp=dynamic
+  make
+
+  cd "${srcdir}"/gvim-$pkgver
+  ./configure \
+--prefix=/usr \
+--localstatedir=/var/lib/vim \
+--with-features=huge \
+--with-compiledby='Arch Linux' \
+--enable-gpm \
+--enable-acl \
+--with-x=yes \
+--enable-gui=gtk2 \
+--enable-multibyte \
+--enable-cscope \
+--enable-netbeans \
+--enable-perlinterp=dynamic \
+--enable-pythoninterp=dynamic \
+--enable-python3interp=dynamic \
+--enable-rubyinterp=dynamic \
+--enable-luainterp=dynamic \
+--enable-tclinterp=dynamic
+  make
+}
+
+check() {
+  # disable tests because they are broken FS#50742
+  cd "${srcdir}"/vim-$pkgver
+  #TERM=xterm make -j1 test
+}
+
+package_vim-runtime() {
+  pkgdesc='Runtime for vim and gvim'
+  backup=('etc/vimrc')
+
+  cd "${srcdir}"/vim-$pkgver
+
+  make -j1 VIMRCLOC=/etc DESTDIR="${pkgdir}" install
+  # man and bin files belong to 'vim'
+  rm -r "${pkgdir}"/usr/share/man/ "${pkgdir}"/usr/bin/
+
+  # Don't forget logtalk.dict
+  install -Dm644 runtime/ftplugin/logtalk.dict \
+"${pkgdir}"/usr/share/vim/vim${_versiondir}/ftplugin/logtalk.dict
+
+  # fix FS#17216
+  sed -i 's|messages,/var|messages,/var/log/messages.log,/var|' \
+"${pkgdir}"/usr/share/vim/vim${_versiondir}/filetype.vim
+
+  # patch filetype.vim for better handling of pacman related files
+  sed -i 
"s/rpmsave/pacsave/;s/rpmnew/pacnew/;s/,\*\.ebuild/\0,PKGBUILD*,*.install/" \
+"${pkgdir}"/usr/share/vim/vim${_versiondir}/filetype.vim
+  sed -i "/find the 
end/,+3{s/changelog_date_entry_search/changelog_date_end_entry_search/}" \
+"${pkgdir}"/usr/share/vim/vim${_versiondir}/ftplugin/changelog.vim
+
+  # rc files
+  install -Dm644 "${srcdir}"/vimrc "${pkgdir}"/etc/vimrc
+  install -Dm644 "${srcdir}"/archlinux.vim \
+"${pkgdir}"/usr/share/vim/vimfiles/archlinux.vim
+
+  # rgb.txt file
+  install -Dm644 runtime/rgb.txt \
+

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

2016-09-12 Thread Anatol Pomozov
Date: Monday, September 12, 2016 @ 18:20:43
  Author: anatolik
Revision: 276199

upgpkg: vim 8.0.0003-1

Modified:
  vim/trunk/PKGBUILD
  vim/trunk/vimrc

--+
 PKGBUILD |   15 ++-
 vimrc|5 ++---
 2 files changed, 8 insertions(+), 12 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-09-12 18:18:33 UTC (rev 276198)
+++ PKGBUILD2016-09-12 18:20:43 UTC (rev 276199)
@@ -8,8 +8,8 @@
 
 pkgbase=vim
 pkgname=(vim gvim vim-runtime)
-pkgver=7.4.2334
-_versiondir=74
+pkgver=8.0.0003
+_versiondir=80
 pkgrel=1
 arch=(i686 x86_64)
 license=('custom:vim')
@@ -18,8 +18,8 @@
 source=(vim-$pkgver.tar.gz::http://github.com/vim/vim/archive/v$pkgver.tar.gz
 vimrc
 archlinux.vim)
-sha1sums=('3a1cf404cf54ec0ea09d86202f63d345cf3b284a'
-  'b8ca9132826e53cd14431ef9767e4fd820faa782'
+sha1sums=('77fac5302969a292ab89e827a36f3b278c99af9a'
+  '0612c9d685ca7bb3b7bad8ebb9eaaefd5e724376'
   '94f7bb87b5d06bace86bc4b3ef1372813b4eedf2')
 
 prepare() {
@@ -80,12 +80,9 @@
 }
 
 check() {
-  # disable tests because they seem to freeze
+  # disable tests because they are broken FS#50742
   cd "${srcdir}"/vim-$pkgver
-  #make test
-
-  cd "${srcdir}"/gvim-$pkgver
-  #make test
+  #TERM=xterm make -j1 test
 }
 
 package_vim-runtime() {

Modified: vimrc
===
--- vimrc   2016-09-12 18:18:33 UTC (rev 276198)
+++ vimrc   2016-09-12 18:20:43 UTC (rev 276199)
@@ -10,10 +10,9 @@
 " properly set to work with the Vim-related packages.
 runtime! archlinux.vim
 
-" do not load defaults if ~/.vimrc is missing
-"let skip_defaults_vim=1
-
 " If you prefer the old-style vim functionalty, add 'runtime! 
vimrc_example.vim'
 " Or better yet, read /usr/share/vim/vim74/vimrc_example.vim or the vim manual
 " and configure vim to your own liking!
 
+" do not load defaults if ~/.vimrc is missing
+"let skip_defaults_vim=1


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

2016-09-12 Thread Bartłomiej Piotrowski
Date: Monday, September 12, 2016 @ 18:18:33
  Author: bpiotrowski
Revision: 276198

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

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

---+
 /PKGBUILD |   78 
 extra-i686/PKGBUILD   |   38 ---
 extra-x86_64/PKGBUILD |   38 ---
 3 files changed, 78 insertions(+), 76 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-09-12 18:18:25 UTC (rev 276197)
+++ extra-i686/PKGBUILD 2016-09-12 18:18:33 UTC (rev 276198)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Tobias Powalowski 
-# Contributor: Christian Hesse 
-# Contributor: Marco A Rojas 
-# Contributor: Ng Oon-Ee 
-# Contributor: Thomas Burdick 
-
-pkgname=tevent
-pkgver=0.9.29
-pkgrel=2
-pkgdesc="An event system based on the talloc memory management library"
-arch=('i686' 'x86_64')
-url="https://tevent.samba.org/;
-source=("http://samba.org/ftp/tevent/${pkgname}-${pkgver}.tar.gz;)
-license=('GPL3')
-depends=('talloc')
-makedepends=('python2')
-optdepends=('python2: for python bindings')
-
-build() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-
-   # change to use python2
-   sed -i -e "s|/usr/bin/env python$|/usr/bin/env python2|" 
buildtools/bin/waf
-   export PYTHON=/usr/bin/python2
-
-   ./configure --prefix=/usr \
---bundled-libraries=NONE \
---builtin-libraries=replace
-}
-
-package() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   
-   make
-   make DESTDIR=${pkgdir}/ install
-}
-md5sums=('4372c1430a1ecb7ea0adddfdf21c0d55')

Copied: tevent/repos/extra-i686/PKGBUILD (from rev 276197, 
tevent/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-09-12 18:18:33 UTC (rev 276198)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Tobias Powalowski 
+# Contributor: Christian Hesse 
+# Contributor: Marco A Rojas 
+# Contributor: Ng Oon-Ee 
+# Contributor: Thomas Burdick 
+
+pkgname=tevent
+pkgver=0.9.29
+pkgrel=2
+epoch=1
+pkgdesc="An event system based on the talloc memory management library"
+arch=('i686' 'x86_64')
+url="https://tevent.samba.org/;
+source=("http://samba.org/ftp/tevent/${pkgname}-${pkgver}.tar.gz;)
+license=('GPL3')
+depends=('talloc')
+makedepends=('python2')
+optdepends=('python2: for python bindings')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+
+   # change to use python2
+   sed -i -e "s|/usr/bin/env python$|/usr/bin/env python2|" 
buildtools/bin/waf
+   export PYTHON=/usr/bin/python2
+
+   ./configure --prefix=/usr \
+--bundled-libraries=NONE \
+--builtin-libraries=replace
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   
+   make
+   make DESTDIR=${pkgdir}/ install
+}
+md5sums=('4372c1430a1ecb7ea0adddfdf21c0d55')

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-09-12 18:18:25 UTC (rev 276197)
+++ extra-x86_64/PKGBUILD   2016-09-12 18:18:33 UTC (rev 276198)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Tobias Powalowski 
-# Contributor: Christian Hesse 
-# Contributor: Marco A Rojas 
-# Contributor: Ng Oon-Ee 
-# Contributor: Thomas Burdick 
-
-pkgname=tevent
-pkgver=0.9.29
-pkgrel=2
-pkgdesc="An event system based on the talloc memory management library"
-arch=('i686' 'x86_64')
-url="https://tevent.samba.org/;
-source=("http://samba.org/ftp/tevent/${pkgname}-${pkgver}.tar.gz;)
-license=('GPL3')
-depends=('talloc')
-makedepends=('python2')
-optdepends=('python2: for python bindings')
-
-build() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-
-   # change to use python2
-   sed -i -e "s|/usr/bin/env python$|/usr/bin/env python2|" 
buildtools/bin/waf
-   export PYTHON=/usr/bin/python2
-
-   ./configure --prefix=/usr \
---bundled-libraries=NONE \
---builtin-libraries=replace
-}
-
-package() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   
-   make
-   make DESTDIR=${pkgdir}/ install
-}
-md5sums=('4372c1430a1ecb7ea0adddfdf21c0d55')

Copied: tevent/repos/extra-x86_64/PKGBUILD (from rev 276197, 
tevent/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD

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

2016-09-12 Thread Bartłomiej Piotrowski
Date: Monday, September 12, 2016 @ 18:18:25
  Author: bpiotrowski
Revision: 276197

upgpkg: tevent 1:0.9.29-2

add epoch for clean upgrade on -Syu

Modified:
  tevent/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-12 15:45:29 UTC (rev 276196)
+++ PKGBUILD2016-09-12 18:18:25 UTC (rev 276197)
@@ -8,6 +8,7 @@
 pkgname=tevent
 pkgver=0.9.29
 pkgrel=2
+epoch=1
 pkgdesc="An event system based on the talloc memory management library"
 arch=('i686' 'x86_64')
 url="https://tevent.samba.org/;


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

2016-09-12 Thread Jaroslav Lichtblau
Date: Monday, September 12, 2016 @ 18:04:51
  Author: jlichtblau
Revision: 189216

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

Added:
  encfs/repos/community-testing-i686/
  encfs/repos/community-testing-i686/PKGBUILD
(from rev 189215, encfs/trunk/PKGBUILD)
  encfs/repos/community-testing-x86_64/
  encfs/repos/community-testing-x86_64/PKGBUILD
(from rev 189215, encfs/trunk/PKGBUILD)

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

Copied: encfs/repos/community-testing-i686/PKGBUILD (from rev 189215, 
encfs/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2016-09-12 18:04:51 UTC (rev 189216)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Andrea Scarpino 
+# Contributor: Jaroslaw Swierczynski 
+# Contributor: Sven Kauber, 
+# Contributor: Daniel J Griffiths 
+
+pkgname=encfs
+pkgver=1.9
+pkgrel=1
+pkgdesc='Encrypted filesystem in user-space'
+arch=('i686' 'x86_64')
+url='https://vgough.github.io/encfs/'
+license=('LGPL')
+depends=('openssl' 'fuse' 'tinyxml2')
+makedepends=('cmake')
+source=($pkgname-$pkgver.tar.gz::https://github.com/vgough/$pkgname/archive/v$pkgver.tar.gz)
+sha256sums=('30d2db1555ec359082046748d278018b8a246dc49c0442291c5671da0486f4bf')
+
+build() {
+  cd "${srcdir}"
+
+  mkdir build
+  cd build
+
+  cmake ../$pkgname-$pkgver \
+  -DBUILD_SHARED_LIBS=ON \
+  -DUSE_INTERNAL_TINYXML=OFF \
+  -DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+check() {
+  cd "${srcdir}"/build
+
+  make test
+}
+
+package() {
+  cd "${srcdir}"/build
+
+  make DESTDIR="${pkgdir}" install
+}

Copied: encfs/repos/community-testing-x86_64/PKGBUILD (from rev 189215, 
encfs/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2016-09-12 18:04:51 UTC (rev 189216)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Andrea Scarpino 
+# Contributor: Jaroslaw Swierczynski 
+# Contributor: Sven Kauber, 
+# Contributor: Daniel J Griffiths 
+
+pkgname=encfs
+pkgver=1.9
+pkgrel=1
+pkgdesc='Encrypted filesystem in user-space'
+arch=('i686' 'x86_64')
+url='https://vgough.github.io/encfs/'
+license=('LGPL')
+depends=('openssl' 'fuse' 'tinyxml2')
+makedepends=('cmake')
+source=($pkgname-$pkgver.tar.gz::https://github.com/vgough/$pkgname/archive/v$pkgver.tar.gz)
+sha256sums=('30d2db1555ec359082046748d278018b8a246dc49c0442291c5671da0486f4bf')
+
+build() {
+  cd "${srcdir}"
+
+  mkdir build
+  cd build
+
+  cmake ../$pkgname-$pkgver \
+  -DBUILD_SHARED_LIBS=ON \
+  -DUSE_INTERNAL_TINYXML=OFF \
+  -DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+check() {
+  cd "${srcdir}"/build
+
+  make test
+}
+
+package() {
+  cd "${srcdir}"/build
+
+  make DESTDIR="${pkgdir}" install
+}


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

2016-09-12 Thread Jaroslav Lichtblau
Date: Monday, September 12, 2016 @ 18:03:43
  Author: jlichtblau
Revision: 189215

upgpkg: encfs 1.9-1 - new upstream release

Modified:
  encfs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-12 17:25:32 UTC (rev 189214)
+++ PKGBUILD2016-09-12 18:03:43 UTC (rev 189215)
@@ -6,27 +6,38 @@
 # Contributor: Daniel J Griffiths 
 
 pkgname=encfs
-pkgver=1.8.1
-pkgrel=7
+pkgver=1.9
+pkgrel=1
 pkgdesc='Encrypted filesystem in user-space'
 arch=('i686' 'x86_64')
 url='https://vgough.github.io/encfs/'
 license=('LGPL')
-depends=('rlog' 'openssl' 'fuse' 'boost-libs')
-makedepends=('boost' 'autoconf')
+depends=('openssl' 'fuse' 'tinyxml2')
+makedepends=('cmake')
 
source=($pkgname-$pkgver.tar.gz::https://github.com/vgough/$pkgname/archive/v$pkgver.tar.gz)
-sha256sums=('ed6b69d8aba06382ad01116bbce2e4ad49f8de85cdf4e2fab7ee4ac82af537e9')
+sha256sums=('30d2db1555ec359082046748d278018b8a246dc49c0442291c5671da0486f4bf')
 
-build(){
-  cd "${srcdir}"/$pkgname-$pkgver
+build() {
+  cd "${srcdir}"
 
-  autoreconf -if
-  ./configure --prefix=/usr
+  mkdir build
+  cd build
+
+  cmake ../$pkgname-$pkgver \
+  -DBUILD_SHARED_LIBS=ON \
+  -DUSE_INTERNAL_TINYXML=OFF \
+  -DCMAKE_INSTALL_PREFIX=/usr
   make
 }
 
+check() {
+  cd "${srcdir}"/build
+
+  make test
+}
+
 package() {
-  cd "${srcdir}"/$pkgname-$pkgver
+  cd "${srcdir}"/build
 
   make DESTDIR="${pkgdir}" install
 }


[arch-commits] Commit in intellij-idea-libs/trunk (PKGBUILD)

2016-09-12 Thread Lukas Jirkovsky
Date: Monday, September 12, 2016 @ 17:25:24
  Author: stativ
Revision: 189213

upgpkg: intellij-idea-libs 2:2016.2.4-1

update to 2016.2.4

Modified:
  intellij-idea-libs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-12 17:24:11 UTC (rev 189212)
+++ PKGBUILD2016-09-12 17:25:24 UTC (rev 189213)
@@ -1,8 +1,8 @@
 # $Id$
 # Maintainer: Lukas Jirkovsky 
 pkgname=intellij-idea-libs
-pkgver=2016.2
-_pkgver=162.1121.32
+pkgver=2016.2.4
+_pkgver=162.2032.8
 pkgrel=1
 epoch=2
 pkgdesc="Architecture dependent libraries needed by the Intellij Idea IDE"
@@ -12,7 +12,7 @@
 depends=('glibc')
 options=(!strip)
 source=(http://download.jetbrains.com/idea/ideaIC-$pkgver.tar.gz)
-sha256sums=('6270c2feae18e10a790d7dda0ab5fed929e353ef41cb016560f7878101259d98')
+sha256sums=('bfd1bc75386d22bf9f0559b4894b547689383bd69c4038a1516a6e2c00f96742')
 
 package() {
   cd "idea-IC-$_pkgver"


[arch-commits] Commit in intellij-idea-libs/repos (4 files)

2016-09-12 Thread Lukas Jirkovsky
Date: Monday, September 12, 2016 @ 17:25:32
  Author: stativ
Revision: 189214

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

Added:
  intellij-idea-libs/repos/community-i686/PKGBUILD
(from rev 189213, intellij-idea-libs/trunk/PKGBUILD)
  intellij-idea-libs/repos/community-x86_64/PKGBUILD
(from rev 189213, intellij-idea-libs/trunk/PKGBUILD)
Deleted:
  intellij-idea-libs/repos/community-i686/PKGBUILD
  intellij-idea-libs/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-09-12 17:25:24 UTC (rev 189213)
+++ community-i686/PKGBUILD 2016-09-12 17:25:32 UTC (rev 189214)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Lukas Jirkovsky 
-pkgname=intellij-idea-libs
-pkgver=2016.2
-_pkgver=162.1121.32
-pkgrel=1
-epoch=2
-pkgdesc="Architecture dependent libraries needed by the Intellij Idea IDE"
-arch=('i686' 'x86_64')
-url="https://www.jetbrains.com/idea/;
-license=('Apache')
-depends=('glibc')
-options=(!strip)
-source=(http://download.jetbrains.com/idea/ideaIC-$pkgver.tar.gz)
-sha256sums=('6270c2feae18e10a790d7dda0ab5fed929e353ef41cb016560f7878101259d98')
-
-package() {
-  cd "idea-IC-$_pkgver"
-
-  [ $CARCH == "x86_64" ] && SUFFIX=64
-  install -D -m755 bin/fsnotifier${SUFFIX} 
"$pkgdir"/usr/share/intellijidea-ce/bin/fsnotifier${SUFFIX}
-  install -D -m644 bin/libbreakgen${SUFFIX}.so 
"$pkgdir"/usr/lib/libbreakgen${SUFFIX}.so
-  
-  # libpty
-  [ $CARCH == "x86_64" ] && _ARCH=x86_64 || _ARCH=x86
-  install -D -m644 lib/libpty/linux/$_ARCH/libpty.so 
"$pkgdir"/usr/share/intellijidea-ce/lib/libpty/linux/$_ARCH/libpty.so
-}
-
-# vim:set ts=2 sw=2 et:

Copied: intellij-idea-libs/repos/community-i686/PKGBUILD (from rev 189213, 
intellij-idea-libs/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-09-12 17:25:32 UTC (rev 189214)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Lukas Jirkovsky 
+pkgname=intellij-idea-libs
+pkgver=2016.2.4
+_pkgver=162.2032.8
+pkgrel=1
+epoch=2
+pkgdesc="Architecture dependent libraries needed by the Intellij Idea IDE"
+arch=('i686' 'x86_64')
+url="https://www.jetbrains.com/idea/;
+license=('Apache')
+depends=('glibc')
+options=(!strip)
+source=(http://download.jetbrains.com/idea/ideaIC-$pkgver.tar.gz)
+sha256sums=('bfd1bc75386d22bf9f0559b4894b547689383bd69c4038a1516a6e2c00f96742')
+
+package() {
+  cd "idea-IC-$_pkgver"
+
+  [ $CARCH == "x86_64" ] && SUFFIX=64
+  install -D -m755 bin/fsnotifier${SUFFIX} 
"$pkgdir"/usr/share/intellijidea-ce/bin/fsnotifier${SUFFIX}
+  install -D -m644 bin/libbreakgen${SUFFIX}.so 
"$pkgdir"/usr/lib/libbreakgen${SUFFIX}.so
+  
+  # libpty
+  [ $CARCH == "x86_64" ] && _ARCH=x86_64 || _ARCH=x86
+  install -D -m644 lib/libpty/linux/$_ARCH/libpty.so 
"$pkgdir"/usr/share/intellijidea-ce/lib/libpty/linux/$_ARCH/libpty.so
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-09-12 17:25:24 UTC (rev 189213)
+++ community-x86_64/PKGBUILD   2016-09-12 17:25:32 UTC (rev 189214)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Lukas Jirkovsky 
-pkgname=intellij-idea-libs
-pkgver=2016.2
-_pkgver=162.1121.32
-pkgrel=1
-epoch=2
-pkgdesc="Architecture dependent libraries needed by the Intellij Idea IDE"
-arch=('i686' 'x86_64')
-url="https://www.jetbrains.com/idea/;
-license=('Apache')
-depends=('glibc')
-options=(!strip)
-source=(http://download.jetbrains.com/idea/ideaIC-$pkgver.tar.gz)
-sha256sums=('6270c2feae18e10a790d7dda0ab5fed929e353ef41cb016560f7878101259d98')
-
-package() {
-  cd "idea-IC-$_pkgver"
-
-  [ $CARCH == "x86_64" ] && SUFFIX=64
-  install -D -m755 bin/fsnotifier${SUFFIX} 
"$pkgdir"/usr/share/intellijidea-ce/bin/fsnotifier${SUFFIX}
-  install -D -m644 bin/libbreakgen${SUFFIX}.so 
"$pkgdir"/usr/lib/libbreakgen${SUFFIX}.so
-  
-  # libpty
-  [ $CARCH == "x86_64" ] && _ARCH=x86_64 || _ARCH=x86
-  install -D -m644 lib/libpty/linux/$_ARCH/libpty.so 
"$pkgdir"/usr/share/intellijidea-ce/lib/libpty/linux/$_ARCH/libpty.so
-}
-
-# vim:set ts=2 sw=2 et:

Copied: intellij-idea-libs/repos/community-x86_64/PKGBUILD (from rev 189213, 
intellij-idea-libs/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-09-12 17:25:32 UTC (rev 189214)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Lukas Jirkovsky 

[arch-commits] Commit in intellij-idea-community-edition/repos/community-any (8 files)

2016-09-12 Thread Lukas Jirkovsky
Date: Monday, September 12, 2016 @ 17:24:11
  Author: stativ
Revision: 189212

archrelease: copy trunk to community-any

Added:
  intellij-idea-community-edition/repos/community-any/PKGBUILD
(from rev 189211, intellij-idea-community-edition/trunk/PKGBUILD)
  intellij-idea-community-edition/repos/community-any/idea.desktop
(from rev 189211, intellij-idea-community-edition/trunk/idea.desktop)
  intellij-idea-community-edition/repos/community-any/idea.install
(from rev 189211, intellij-idea-community-edition/trunk/idea.install)
  intellij-idea-community-edition/repos/community-any/idea.sh
(from rev 189211, intellij-idea-community-edition/trunk/idea.sh)
Deleted:
  intellij-idea-community-edition/repos/community-any/PKGBUILD
  intellij-idea-community-edition/repos/community-any/idea.desktop
  intellij-idea-community-edition/repos/community-any/idea.install
  intellij-idea-community-edition/repos/community-any/idea.sh

--+
 PKGBUILD |   92 -
 idea.desktop |   22 ++---
 idea.install |   18 +--
 idea.sh  |8 ++--
 4 files changed, 70 insertions(+), 70 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-09-12 17:23:59 UTC (rev 189211)
+++ PKGBUILD2016-09-12 17:24:11 UTC (rev 189212)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Lukas Jirkovsky 
-pkgname=intellij-idea-community-edition
-pkgver=2016.2
-_pkgver=162.1121.32
-pkgrel=1
-epoch=2
-pkgdesc="IDE for Java, Groovy and other programming languages with advanced 
refactoring features"
-arch=('any')
-url="https://www.jetbrains.com/idea/;
-license=('Apache')
-depends=('java-environment' "intellij-idea-libs" 'giflib' 'libxtst' 'libxft' 
'ttf-font')
-install=idea.install
-source=(http://download.jetbrains.com/idea/ideaIC-$pkgver.tar.gz \
-idea.desktop idea.sh)
-sha256sums=('6270c2feae18e10a790d7dda0ab5fed929e353ef41cb016560f7878101259d98'
-'bd37ad47c926941108f624cbe5adbd7fe91d198b15aca63d8a0c0da14c7a76a6'
-'6f6445697ac16553e329a86d1ecb918db09493818650282a5d07c088defdbd91')
-
-package() {
-  install -d -m755 "$pkgdir/"usr/share
-  cp -a "idea-IC-$_pkgver" "$pkgdir"/usr/share/intellijidea-ce
-
-  # remove files owned by intellij-idea-libs
-  rm "$pkgdir"/usr/share/intellijidea-ce/bin/{fsnotifier,libbreakgen}*
-  rm -rf "$pkgdir"/usr/share/intellijidea-ce/lib/libpty
-
-  # make sure that all files are owned by root
-  chown -R root:root "$pkgdir/usr/share"
-
-  # never wait on user input when starting idea
-  sed -i '/.*read IGNORE.*/ d' "$pkgdir"/usr/share/intellijidea-ce/bin/idea.sh
-
-  install -D -m755 "$srcdir"/idea.sh "$pkgdir"/usr/bin/idea.sh
-  install -D -m644 "$srcdir"/idea.desktop 
"$pkgdir"/usr/share/applications/idea.desktop
-  install -D -m644 "$pkgdir"/usr/share/intellijidea-ce/bin/idea.png \
-   "$pkgdir"/usr/share/pixmaps/idea.png
-
-  # workaround FS#40934
-  sed -i 's|lcd|on|'  "$pkgdir"/usr/share/intellijidea-ce/bin/*.vmoptions
-
-  # remove the bundled jre
-  rm -rf "$pkgdir"/usr/share/intellijidea-ce/jre
-}
-
-# vim:set ts=2 sw=2 et:

Copied: intellij-idea-community-edition/repos/community-any/PKGBUILD (from rev 
189211, intellij-idea-community-edition/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-09-12 17:24:11 UTC (rev 189212)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Lukas Jirkovsky 
+pkgname=intellij-idea-community-edition
+pkgver=2016.2.4
+_pkgver=162.2032.8
+pkgrel=1
+epoch=2
+pkgdesc="IDE for Java, Groovy and other programming languages with advanced 
refactoring features"
+arch=('any')
+url="https://www.jetbrains.com/idea/;
+license=('Apache')
+depends=('java-environment' "intellij-idea-libs" 'giflib' 'libxtst' 'libxft' 
'ttf-font')
+install=idea.install
+source=(http://download.jetbrains.com/idea/ideaIC-$pkgver.tar.gz \
+idea.desktop idea.sh)
+sha256sums=('bfd1bc75386d22bf9f0559b4894b547689383bd69c4038a1516a6e2c00f96742'
+'bd37ad47c926941108f624cbe5adbd7fe91d198b15aca63d8a0c0da14c7a76a6'
+'6f6445697ac16553e329a86d1ecb918db09493818650282a5d07c088defdbd91')
+
+package() {
+  install -d -m755 "$pkgdir/"usr/share
+  cp -a "idea-IC-$_pkgver" "$pkgdir"/usr/share/intellijidea-ce
+
+  # remove files owned by intellij-idea-libs
+  rm "$pkgdir"/usr/share/intellijidea-ce/bin/{fsnotifier,libbreakgen}*
+  rm -rf "$pkgdir"/usr/share/intellijidea-ce/lib/libpty
+
+  # make sure that all files are owned by root
+  chown -R root:root "$pkgdir/usr/share"
+
+  # never wait on user input when starting idea
+  sed -i '/.*read IGNORE.*/ d' "$pkgdir"/usr/share/intellijidea-ce/bin/idea.sh
+
+  install -D -m755 "$srcdir"/idea.sh "$pkgdir"/usr/bin/idea.sh
+  install -D -m644 "$srcdir"/idea.desktop 
"$pkgdir"/usr/share/applications/idea.desktop
+  install -D 

[arch-commits] Commit in intellij-idea-community-edition/trunk (PKGBUILD)

2016-09-12 Thread Lukas Jirkovsky
Date: Monday, September 12, 2016 @ 17:23:59
  Author: stativ
Revision: 189211

upgpkg: intellij-idea-community-edition 2:2016.2.4-1

update to 2016.2.4

Modified:
  intellij-idea-community-edition/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-12 16:48:30 UTC (rev 189210)
+++ PKGBUILD2016-09-12 17:23:59 UTC (rev 189211)
@@ -1,8 +1,8 @@
 # $Id$
 # Maintainer: Lukas Jirkovsky 
 pkgname=intellij-idea-community-edition
-pkgver=2016.2
-_pkgver=162.1121.32
+pkgver=2016.2.4
+_pkgver=162.2032.8
 pkgrel=1
 epoch=2
 pkgdesc="IDE for Java, Groovy and other programming languages with advanced 
refactoring features"
@@ -13,7 +13,7 @@
 install=idea.install
 source=(http://download.jetbrains.com/idea/ideaIC-$pkgver.tar.gz \
 idea.desktop idea.sh)
-sha256sums=('6270c2feae18e10a790d7dda0ab5fed929e353ef41cb016560f7878101259d98'
+sha256sums=('bfd1bc75386d22bf9f0559b4894b547689383bd69c4038a1516a6e2c00f96742'
 'bd37ad47c926941108f624cbe5adbd7fe91d198b15aca63d8a0c0da14c7a76a6'
 '6f6445697ac16553e329a86d1ecb918db09493818650282a5d07c088defdbd91')
 


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

2016-09-12 Thread Jaroslav Lichtblau
Date: Monday, September 12, 2016 @ 16:15:33
  Author: jlichtblau
Revision: 189207

archrelease: copy trunk to community-any

Added:
  youtube-dl/repos/community-any/PKGBUILD
(from rev 189206, youtube-dl/trunk/PKGBUILD)
Deleted:
  youtube-dl/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-09-12 16:15:21 UTC (rev 189206)
+++ PKGBUILD2016-09-12 16:15:33 UTC (rev 189207)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgname=youtube-dl
-pkgver=2016.09.08
-pkgrel=1
-pkgdesc="A small command-line program to download videos from YouTube.com and 
a few more sites"
-arch=('any')
-url="http://rg3.github.io/youtube-dl/;
-license=('custom')
-depends=('python' 'python-setuptools')
-optdepends=('ffmpeg: for video post-processing'
-'rtmpdump: for rtmp streams support'
-   'atomicparsley: for embedding thumbnails into m4a files')
-source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz
-
http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz.sig)
-sha256sums=('c45af2fb1041c25ee9b2283f5c0bd32106943844425541d684e17310e216b8b7'
-'SKIP')
-validpgpkeys=('7D33D762FD6C35130481347FDB4B54CBA4826A18'  # Philipp Hagemeister
-  '428DF5D63EF07494BB455AC0EBF01804BCF05F6B'  # Filippo Valsorda
-  'ED7F5BF46B3BBED81C87368E2C393E0F18A9236D') # Sergey M. 
-
-prepare() {
-  cd ${pkgname}
-  sed -i 's|etc/bash_completion.d|share/bash-completion/completions|' setup.py
-  sed -i 's|etc/fish/completions|share/fish/completions|' setup.py
-}
-
-package() {
-  cd ${pkgname}
-  python setup.py install --root="${pkgdir}/" --optimize=1
-  mv 
"${pkgdir}/usr/share/bash-completion/completions/youtube-dl.bash-completion" \
- "${pkgdir}/usr/share/bash-completion/completions/youtube-dl"
-  install -Dm644 youtube-dl.zsh 
"${pkgdir}/usr/share/zsh/site-functions/_youtube-dl"
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: youtube-dl/repos/community-any/PKGBUILD (from rev 189206, 
youtube-dl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-09-12 16:15:33 UTC (rev 189207)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=youtube-dl
+pkgver=2016.09.11.1
+pkgrel=1
+pkgdesc="A small command-line program to download videos from YouTube.com and 
a few more sites"
+arch=('any')
+url="http://rg3.github.io/youtube-dl/;
+license=('custom')
+depends=('python' 'python-setuptools')
+optdepends=('ffmpeg: for video post-processing'
+'rtmpdump: for rtmp streams support'
+   'atomicparsley: for embedding thumbnails into m4a files')
+source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz
+
http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz.sig)
+sha256sums=('6cdeb0876295bef0325b8433c47c1ed13ebab3b108ef5ee27171e06b6958cb35'
+'SKIP')
+validpgpkeys=('7D33D762FD6C35130481347FDB4B54CBA4826A18'  # Philipp Hagemeister
+  '428DF5D63EF07494BB455AC0EBF01804BCF05F6B'  # Filippo Valsorda
+  'ED7F5BF46B3BBED81C87368E2C393E0F18A9236D') # Sergey M. 
+
+prepare() {
+  cd ${pkgname}
+  sed -i 's|etc/bash_completion.d|share/bash-completion/completions|' setup.py
+  sed -i 's|etc/fish/completions|share/fish/completions|' setup.py
+}
+
+package() {
+  cd ${pkgname}
+  python setup.py install --root="${pkgdir}/" --optimize=1
+  mv 
"${pkgdir}/usr/share/bash-completion/completions/youtube-dl.bash-completion" \
+ "${pkgdir}/usr/share/bash-completion/completions/youtube-dl"
+  install -Dm644 youtube-dl.zsh 
"${pkgdir}/usr/share/zsh/site-functions/_youtube-dl"
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}


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

2016-09-12 Thread Jaroslav Lichtblau
Date: Monday, September 12, 2016 @ 16:15:21
  Author: jlichtblau
Revision: 189206

upgpkg: youtube-dl 2016.09.11.1-1 - new upstream release

Modified:
  youtube-dl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-12 15:16:51 UTC (rev 189205)
+++ PKGBUILD2016-09-12 16:15:21 UTC (rev 189206)
@@ -2,7 +2,7 @@
 # Maintainer: Eric Bélanger 
 
 pkgname=youtube-dl
-pkgver=2016.09.08
+pkgver=2016.09.11.1
 pkgrel=1
 pkgdesc="A small command-line program to download videos from YouTube.com and 
a few more sites"
 arch=('any')
@@ -14,7 +14,7 @@
'atomicparsley: for embedding thumbnails into m4a files')
 source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz
 
http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz.sig)
-sha256sums=('c45af2fb1041c25ee9b2283f5c0bd32106943844425541d684e17310e216b8b7'
+sha256sums=('6cdeb0876295bef0325b8433c47c1ed13ebab3b108ef5ee27171e06b6958cb35'
 'SKIP')
 validpgpkeys=('7D33D762FD6C35130481347FDB4B54CBA4826A18'  # Philipp Hagemeister
   '428DF5D63EF07494BB455AC0EBF01804BCF05F6B'  # Filippo Valsorda


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

2016-09-12 Thread Anatol Pomozov
Date: Monday, September 12, 2016 @ 15:45:29
  Author: anatolik
Revision: 276196

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

Added:
  nghttp2/repos/testing-i686/
  nghttp2/repos/testing-i686/PKGBUILD
(from rev 276195, nghttp2/trunk/PKGBUILD)
  nghttp2/repos/testing-x86_64/
  nghttp2/repos/testing-x86_64/PKGBUILD
(from rev 276195, nghttp2/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   45 +
 testing-x86_64/PKGBUILD |   45 +
 2 files changed, 90 insertions(+)

Copied: nghttp2/repos/testing-i686/PKGBUILD (from rev 276195, 
nghttp2/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-09-12 15:45:29 UTC (rev 276196)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Anatol Pomozov
+# Contributor: Zhuoyun Wei 
+
+pkgname=nghttp2
+pkgver=1.14.1
+pkgrel=1
+pkgdesc='Framing layer of HTTP/2 is implemented as a reusable C library'
+arch=(i686 x86_64)
+url='https://nghttp2.org/'
+license=(MIT)
+depends=(openssl libev zlib libxml2 jansson jemalloc)
+source=(nghttp2-$pkgver.zip::https://github.com/tatsuhiro-t/nghttp2/archive/v$pkgver.zip)
+backup=(
+  etc/nghttpx/nghttpx.conf
+  etc/logrotate.d/nghttpx
+)
+sha256sums=('33d425938360b3d0bcdb814e794ae96c652fb1fa1a558d2352aeda785012e1ea')
+
+build() {
+  cd nghttp2-$pkgver
+
+  autoreconf -i
+  ./configure \
+--prefix=/usr \
+--with-spdylay=no \
+--disable-examples \
+--disable-python-bindings
+  make
+}
+
+check() {
+  cd nghttp2-$pkgver
+  make check
+}
+
+package() {
+  cd nghttp2-$pkgver
+
+  make DESTDIR="$pkgdir" install
+  install -Dm644 contrib/nghttpx.service 
"$pkgdir/usr/lib/systemd/system/nghttpx.service"
+  install -Dm644 contrib/nghttpx-logrotate "$pkgdir/etc/logrotate.d/nghttpx"
+  install -Dm644 nghttpx.conf.sample "$pkgdir/etc/nghttpx/nghttpx.conf"
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/nghttp2/COPYING"
+}

Copied: nghttp2/repos/testing-x86_64/PKGBUILD (from rev 276195, 
nghttp2/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-09-12 15:45:29 UTC (rev 276196)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Anatol Pomozov
+# Contributor: Zhuoyun Wei 
+
+pkgname=nghttp2
+pkgver=1.14.1
+pkgrel=1
+pkgdesc='Framing layer of HTTP/2 is implemented as a reusable C library'
+arch=(i686 x86_64)
+url='https://nghttp2.org/'
+license=(MIT)
+depends=(openssl libev zlib libxml2 jansson jemalloc)
+source=(nghttp2-$pkgver.zip::https://github.com/tatsuhiro-t/nghttp2/archive/v$pkgver.zip)
+backup=(
+  etc/nghttpx/nghttpx.conf
+  etc/logrotate.d/nghttpx
+)
+sha256sums=('33d425938360b3d0bcdb814e794ae96c652fb1fa1a558d2352aeda785012e1ea')
+
+build() {
+  cd nghttp2-$pkgver
+
+  autoreconf -i
+  ./configure \
+--prefix=/usr \
+--with-spdylay=no \
+--disable-examples \
+--disable-python-bindings
+  make
+}
+
+check() {
+  cd nghttp2-$pkgver
+  make check
+}
+
+package() {
+  cd nghttp2-$pkgver
+
+  make DESTDIR="$pkgdir" install
+  install -Dm644 contrib/nghttpx.service 
"$pkgdir/usr/lib/systemd/system/nghttpx.service"
+  install -Dm644 contrib/nghttpx-logrotate "$pkgdir/etc/logrotate.d/nghttpx"
+  install -Dm644 nghttpx.conf.sample "$pkgdir/etc/nghttpx/nghttpx.conf"
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/nghttp2/COPYING"
+}


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

2016-09-12 Thread Anatol Pomozov
Date: Monday, September 12, 2016 @ 15:44:23
  Author: anatolik
Revision: 276195

upgpkg: nghttp2 1.14.1-1

Modified:
  nghttp2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-12 08:54:39 UTC (rev 276194)
+++ PKGBUILD2016-09-12 15:44:23 UTC (rev 276195)
@@ -3,7 +3,7 @@
 # Contributor: Zhuoyun Wei 
 
 pkgname=nghttp2
-pkgver=1.14.0
+pkgver=1.14.1
 pkgrel=1
 pkgdesc='Framing layer of HTTP/2 is implemented as a reusable C library'
 arch=(i686 x86_64)
@@ -15,7 +15,7 @@
   etc/nghttpx/nghttpx.conf
   etc/logrotate.d/nghttpx
 )
-sha256sums=('aab85dc4e5a87558d686fd9b6e499850e77789730f5e1cac197e734cdf383fa9')
+sha256sums=('33d425938360b3d0bcdb814e794ae96c652fb1fa1a558d2352aeda785012e1ea')
 
 build() {
   cd nghttp2-$pkgver


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

2016-09-12 Thread Massimiliano Torromeo
Date: Monday, September 12, 2016 @ 15:16:51
  Author: mtorromeo
Revision: 189205

archrelease: copy trunk to community-any

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

--+
 PKGBUILD |   96 ++---
 1 file changed, 48 insertions(+), 48 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-09-12 15:16:30 UTC (rev 189204)
+++ PKGBUILD2016-09-12 15:16:51 UTC (rev 189205)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo 
-
-pkgbase=python-oauthlib
-pkgname=(python-oauthlib python2-oauthlib)
-pkgver=1.1.2
-pkgrel=1
-_libname=oauthlib
-pkgdesc="A generic, spec-compliant, thorough implementation of the OAuth 
request-signing logic"
-arch=(any)
-url="https://github.com/idan/oauthlib;
-license=('BSD')
-source=(https://files.pythonhosted.org/packages/source/${_libname:0:1}/$_libname/$_libname-$pkgver.tar.gz)
-makedepends=(python-setuptools python2-setuptools)
-
-build() {
-   cd "$srcdir/$_libname-$pkgver"
-
-   rm -rf ../buildpy3; mkdir ../buildpy3
-   python setup.py build -b ../buildpy3
-
-   rm -rf ../buildpy2; mkdir ../buildpy2
-   python2 setup.py build -b ../buildpy2
-}
-
-package_python-oauthlib() {
-   depends=(python-cryptography)
-
-   cd "$srcdir/$_libname-$pkgver"
-   rm -rf build; ln -s ../buildpy3 build
-   python setup.py install --skip-build -O1 --root="$pkgdir"
-   install -m0644 -D "LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-
-   chmod -R a+r "$pkgdir/usr/lib"
-}
-
-package_python2-oauthlib() {
-   depends=(python2-cryptography)
-
-   cd "$srcdir/$_libname-$pkgver"
-   rm -rf build; ln -s ../buildpy2 build
-   python2 setup.py install --skip-build -O1 --root="$pkgdir"
-   install -m0644 -D "LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-
-   chmod -R a+r "$pkgdir/usr/lib"
-}
-
-sha256sums=('0e83e91d9e77a396dc178eddba0c4abf75e465761804bfcdb20b977284bcb0bb')

Copied: python-oauthlib/repos/community-any/PKGBUILD (from rev 189204, 
python-oauthlib/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-09-12 15:16:51 UTC (rev 189205)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo 
+
+pkgbase=python-oauthlib
+pkgname=(python-oauthlib python2-oauthlib)
+pkgver=2.0.0
+pkgrel=1
+_libname=oauthlib
+pkgdesc="A generic, spec-compliant, thorough implementation of the OAuth 
request-signing logic"
+arch=(any)
+url="https://github.com/idan/oauthlib;
+license=('BSD')
+source=(https://files.pythonhosted.org/packages/source/${_libname:0:1}/$_libname/$_libname-$pkgver.tar.gz)
+makedepends=(python-setuptools python2-setuptools)
+
+build() {
+   cd "$srcdir/$_libname-$pkgver"
+
+   rm -rf ../buildpy3; mkdir ../buildpy3
+   python setup.py build -b ../buildpy3
+
+   rm -rf ../buildpy2; mkdir ../buildpy2
+   python2 setup.py build -b ../buildpy2
+}
+
+package_python-oauthlib() {
+   depends=(python-cryptography)
+
+   cd "$srcdir/$_libname-$pkgver"
+   rm -rf build; ln -s ../buildpy3 build
+   python setup.py install --skip-build -O1 --root="$pkgdir"
+   install -m0644 -D "LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+   chmod -R a+r "$pkgdir/usr/lib"
+}
+
+package_python2-oauthlib() {
+   depends=(python2-cryptography)
+
+   cd "$srcdir/$_libname-$pkgver"
+   rm -rf build; ln -s ../buildpy2 build
+   python2 setup.py install --skip-build -O1 --root="$pkgdir"
+   install -m0644 -D "LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+   chmod -R a+r "$pkgdir/usr/lib"
+}
+
+sha256sums=('0ad22b4f03fd75ef18d5793e1fed5e2361af5d374009f7722b4af390a0030dfd')


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

2016-09-12 Thread Massimiliano Torromeo
Date: Monday, September 12, 2016 @ 15:16:30
  Author: mtorromeo
Revision: 189204

upgpkg: python-oauthlib 2.0.0-1

Modified:
  python-oauthlib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-12 13:58:55 UTC (rev 189203)
+++ PKGBUILD2016-09-12 15:16:30 UTC (rev 189204)
@@ -3,7 +3,7 @@
 
 pkgbase=python-oauthlib
 pkgname=(python-oauthlib python2-oauthlib)
-pkgver=1.1.2
+pkgver=2.0.0
 pkgrel=1
 _libname=oauthlib
 pkgdesc="A generic, spec-compliant, thorough implementation of the OAuth 
request-signing logic"
@@ -45,4 +45,4 @@
chmod -R a+r "$pkgdir/usr/lib"
 }
 
-sha256sums=('0e83e91d9e77a396dc178eddba0c4abf75e465761804bfcdb20b977284bcb0bb')
+sha256sums=('0ad22b4f03fd75ef18d5793e1fed5e2361af5d374009f7722b4af390a0030dfd')


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

2016-09-12 Thread Jonathan Steel
Date: Monday, September 12, 2016 @ 13:58:55
  Author: jsteel
Revision: 189203

archrelease: copy trunk to community-testing-any

Added:
  aws-cli/repos/community-testing-any/
  aws-cli/repos/community-testing-any/PKGBUILD
(from rev 189202, aws-cli/trunk/PKGBUILD)

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

Copied: aws-cli/repos/community-testing-any/PKGBUILD (from rev 189202, 
aws-cli/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2016-09-12 13:58:55 UTC (rev 189203)
@@ -0,0 +1,34 @@
+# Maintainer: Jonathan Steel 
+# Contributor: Chris Severance aur.severach AatT spamgourmet.com
+# Contributor: Alper KANAT 
+
+pkgname=aws-cli
+pkgver=1.10.63
+pkgrel=2
+pkgdesc='Universal Command Line Interface for Amazon Web Services'
+arch=('any')
+url="https://github.com/aws/aws-cli;
+license=('Apache')
+depends=('python-botocore' 'python-dateutil' 'python-jmespath'
+ 'python-colorama' 'python-docutils' 'python-rsa'
+ 'python-s3transfer')
+makedepends=('python-setuptools')
+source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
+md5sums=('c08d5a1a3c656dad1b91132c3a53ef55')
+
+build() {
+  cd $pkgname-$pkgver
+
+  python setup.py build
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  python setup.py install --root="$pkgdir" --optimize=1
+
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+  install -Dm644 bin/aws_bash_completer 
"$pkgdir"/usr/share/bash-completion/completions/aws
+
+  rm -f "$pkgdir"/usr/bin/{aws.cmd,aws_bash_completer}
+}


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

2016-09-12 Thread Jonathan Steel
Date: Monday, September 12, 2016 @ 13:58:30
  Author: jsteel
Revision: 189202

upgpkg: aws-cli 1.10.63-2

FS#50727 Remove windows and duplicate bash script

Modified:
  aws-cli/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-12 13:15:40 UTC (rev 189201)
+++ PKGBUILD2016-09-12 13:58:30 UTC (rev 189202)
@@ -4,7 +4,7 @@
 
 pkgname=aws-cli
 pkgver=1.10.63
-pkgrel=1
+pkgrel=2
 pkgdesc='Universal Command Line Interface for Amazon Web Services'
 arch=('any')
 url="https://github.com/aws/aws-cli;
@@ -29,4 +29,6 @@
 
   install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
   install -Dm644 bin/aws_bash_completer 
"$pkgdir"/usr/share/bash-completion/completions/aws
+
+  rm -f "$pkgdir"/usr/bin/{aws.cmd,aws_bash_completer}
 }


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

2016-09-12 Thread Gaëtan Bisson
Date: Monday, September 12, 2016 @ 13:15:40
  Author: bisson
Revision: 189201

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

Added:
  collectd/repos/community-i686/PKGBUILD
(from rev 189200, collectd/trunk/PKGBUILD)
  collectd/repos/community-i686/service
(from rev 189200, collectd/trunk/service)
  collectd/repos/community-x86_64/PKGBUILD
(from rev 189200, collectd/trunk/PKGBUILD)
  collectd/repos/community-x86_64/service
(from rev 189200, collectd/trunk/service)
Deleted:
  collectd/repos/community-i686/PKGBUILD
  collectd/repos/community-i686/service
  collectd/repos/community-x86_64/PKGBUILD
  collectd/repos/community-x86_64/service

---+
 /PKGBUILD |  154 
 /service  |   26 +++
 community-i686/PKGBUILD   |   77 --
 community-i686/service|   13 ---
 community-x86_64/PKGBUILD |   77 --
 community-x86_64/service  |   13 ---
 6 files changed, 180 insertions(+), 180 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-09-12 13:14:45 UTC (rev 189200)
+++ community-i686/PKGBUILD 2016-09-12 13:15:40 UTC (rev 189201)
@@ -1,77 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson 
-# Contributor: Gerhard Brauer 
-
-pkgname=collectd
-pkgver=5.5.2
-pkgrel=1
-pkgdesc='Daemon which collects system performance statistics periodically'
-url='http://collectd.org/'
-arch=('i686' 'x86_64')
-license=('GPL')
-
-optdepends=('curl: apache, ascent, curl, nginx, and write_http plugins'
-'libdbi: dbi plugin'
-'libesmtp: notify_email plugin'
-'libgcrypt: encryption and authentication for network plugin'
-'libmemcached: memcachec plugin'
-'libmariadbclient: mysql plugin'
-'iproute2: netlink plugin'
-'net-snmp: snmp plugin'
-'libnotify: notify_desktop plugin'
-'openipmi: ipmi plugin'
-'liboping: ping plugin'
-'libpcap: dns plugin'
-'perl: perl plugin'
-'postgresql-libs: postgresql plugin'
-'python2: python plugin'
-'rrdtool: rrdtool and rrdcached plugins'
-'lm_sensors: lm_sensors and sensors plugins'
-'libvirt: libvirt plugin'
-'libxml2: ascent and libvirt plugins'
-'yajl: curl_json plugin'
-'libatasmart: smart plugin'
-'lvm2: lvm plugin'
-'protobuf-c: write_riemann plugin')
-
-makedepends=('curl' 'libdbi' 'libesmtp' 'libgcrypt' 'libmemcached'
- 'libmariadbclient' 'iproute2' 'net-snmp' 'libnotify' 'openipmi'
- 'liboping' 'libpcap' 'postgresql-libs' 'python2' 'rrdtool'
- 'lm_sensors' 'libvirt' 'libxml2' 'yajl' 'libatasmart' 'lvm2'
- 'protobuf-c')
-
-depends=('libltdl' 'iptables')
-
-source=("${url}files/${pkgname}-${pkgver}.tar.bz2"
-'service')
-sha1sums=('5d850b1b91cb88dd784a552f6f0dbee8ee76300f'
-  '04f676d0b76c34df0bbf94629813e035b1febe04')
-
-backup=('etc/collectd.conf')
-
-prepare() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   sed 's/-Werror//g' -i *.ac */*.{am,in} */*/*.{am,in}
-   autoreconf
-}
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   export MAKEFLAGS='-j1'
-   ./configure \
-   --prefix=/usr \
-   --sysconfdir=/etc \
-   --localstatedir=/var \
-   --sbindir=/usr/bin \
-   --with-python=/usr/bin/python2 \
-   --with-perl-bindings='INSTALLDIRS=vendor'
-   make all
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}" install
-   rmdir "${pkgdir}/var/run" # FS#30201
-   install -Dm644 ../service 
"${pkgdir}"/usr/lib/systemd/system/collectd.service
-   install -Dm644 contrib/collectd2html.pl 
"${pkgdir}"/usr/share/collectd/collectd2html.pl
-}

Copied: collectd/repos/community-i686/PKGBUILD (from rev 189200, 
collectd/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-09-12 13:15:40 UTC (rev 189201)
@@ -0,0 +1,77 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Gerhard Brauer 
+
+pkgname=collectd
+pkgver=5.6.0
+pkgrel=1
+pkgdesc='Daemon which collects system performance statistics periodically'
+url='http://collectd.org/'
+arch=('i686' 'x86_64')
+license=('GPL')
+
+optdepends=('curl: apache, ascent, curl, nginx, and write_http plugins'
+'libdbi: dbi plugin'
+'libesmtp: notify_email plugin'
+'libgcrypt: encryption and authentication for network plugin'
+'libmemcached: memcachec plugin'
+ 

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

2016-09-12 Thread Gaëtan Bisson
Date: Monday, September 12, 2016 @ 13:14:45
  Author: bisson
Revision: 189200

upstream update

Modified:
  collectd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-12 09:22:06 UTC (rev 189199)
+++ PKGBUILD2016-09-12 13:14:45 UTC (rev 189200)
@@ -3,7 +3,7 @@
 # Contributor: Gerhard Brauer 
 
 pkgname=collectd
-pkgver=5.5.2
+pkgver=5.6.0
 pkgrel=1
 pkgdesc='Daemon which collects system performance statistics periodically'
 url='http://collectd.org/'
@@ -44,7 +44,7 @@
 
 source=("${url}files/${pkgname}-${pkgver}.tar.bz2"
 'service')
-sha1sums=('5d850b1b91cb88dd784a552f6f0dbee8ee76300f'
+sha1sums=('c010b74c58d0e30613a008c881ea70b40147'
   '04f676d0b76c34df0bbf94629813e035b1febe04')
 
 backup=('etc/collectd.conf')


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

2016-09-12 Thread Timothy Redaelli
Date: Monday, September 12, 2016 @ 09:22:06
  Author: tredaelli
Revision: 189199

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

Added:
  qbittorrent/repos/community-i686/PKGBUILD
(from rev 189198, qbittorrent/trunk/PKGBUILD)
  qbittorrent/repos/community-i686/qbittorrent.service
(from rev 189198, qbittorrent/trunk/qbittorrent.service)
  qbittorrent/repos/community-i686/qbittorrent@.service
(from rev 189198, qbittorrent/trunk/qbittorrent@.service)
  qbittorrent/repos/community-x86_64/PKGBUILD
(from rev 189198, qbittorrent/trunk/PKGBUILD)
  qbittorrent/repos/community-x86_64/qbittorrent.service
(from rev 189198, qbittorrent/trunk/qbittorrent.service)
  qbittorrent/repos/community-x86_64/qbittorrent@.service
(from rev 189198, qbittorrent/trunk/qbittorrent@.service)
Deleted:
  qbittorrent/repos/community-i686/PKGBUILD
  qbittorrent/repos/community-i686/qbittorrent.service
  qbittorrent/repos/community-i686/qbittorrent@.service
  qbittorrent/repos/community-x86_64/PKGBUILD
  qbittorrent/repos/community-x86_64/qbittorrent.service
  qbittorrent/repos/community-x86_64/qbittorrent@.service

---+
 /PKGBUILD |  126 
 /qbittorrent.service  |   22 +
 /qbittorrent@.service |   24 ++
 community-i686/PKGBUILD   |   63 
 community-i686/qbittorrent.service|   11 --
 community-i686/qbittorrent@.service   |   12 ---
 community-x86_64/PKGBUILD |   63 
 community-x86_64/qbittorrent.service  |   11 --
 community-x86_64/qbittorrent@.service |   12 ---
 9 files changed, 172 insertions(+), 172 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-09-12 09:21:56 UTC (rev 189198)
+++ community-i686/PKGBUILD 2016-09-12 09:22:06 UTC (rev 189199)
@@ -1,63 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli 
-# Contributor: carstene1ns  - http://git.io/ctPKG
-# Contributor: Jkkyll Wu 
-# Contributor: Thomas Dziedzic < gostrc at gmail >
-# Contributor: Daniel J Griffiths 
-# Contributor: Geoffroy Carrier 
-
-pkgbase=qbittorrent
-pkgname=(qbittorrent qbittorrent-nox)
-pkgver=3.3.6
-pkgrel=2
-arch=('i686' 'x86_64')
-url="http://www.qbittorrent.org;
-license=('custom' 'GPL')
-makedepends=('libtorrent-rasterbar' 'qt5-base' 'desktop-file-utils' 
'hicolor-icon-theme' 'xdg-utils' 'boost' 'qt5-tools')
-source=(http://downloads.sourceforge.net/sourceforge/qbittorrent/$pkgname-$pkgver.tar.xz{,.asc}
-'qbittorrent.service'
-   'qbittorrent@.service')
-sha256sums=('5a1610311edd86023a6475dac20e24e89515d08a289d8bf0bf2ad1e27d4c624c'
-'SKIP'
-'8c5879673c66368ada97f6d70a1d8fe3b6a4995f79aab4fc6bf54fbdcbe811d0'
-'12dfd06104eaf302b79328c8096248c051208f69348e33f7fb2e4a2fb49caa29')
-validpgpkeys=('D8F3DA77AAC6741053599C136E4A2D025B7CC9A2')
-
-build() {
-  cd $pkgbase-$pkgver
-
-  mkdir $pkgbase
-  pushd $pkgbase
-  ../configure --prefix=/usr
-  make
-
-  # Build nox variant
-  popd
-  mkdir "$pkgbase-nox"
-  pushd "$pkgbase-nox"
-  ../configure --prefix=/usr --disable-gui
-}
-
-package_qbittorrent() {
-  pkgdesc="An advanced BitTorrent client programmed in C++, based on Qt 
toolkit and libtorrent-rasterbar."
-  depends=('libtorrent-rasterbar' 'qt5-base' 'desktop-file-utils' 
'hicolor-icon-theme' 'xdg-utils')
-  optdepends=('python: needed for torrent search tab')
-
-  cd $pkgbase-$pkgver/$pkgbase
-
-  make INSTALL_ROOT="$pkgdir/" install
-  install -Dm644 "$srcdir/$pkgbase-$pkgver/COPYING" 
"$pkgdir"/usr/share/licenses/$pkgname/COPYING
-}
-
-package_qbittorrent-nox() {
-  pkgdesc="An advanced BitTorrent client programmed in C++, based on Qt 
toolkit and libtorrent-rasterbar, w/o gui"
-  depends=('libtorrent-rasterbar' 'qt5-base')
-
-  cd $pkgbase-$pkgver/$pkgbase-nox
-
-  make INSTALL_ROOT="$pkgdir/" install
-  install -Dm644 "$srcdir/$pkgbase-$pkgver/COPYING" 
"$pkgdir"/usr/share/licenses/$pkgname/COPYING
-
-  install -Dm644 "$srcdir/qbittorrent.service" 
"$pkgdir/usr/lib/systemd/user/qbittorrent.service"
-  install -Dm644 "$srcdir/qbittorrent@.service" 
"$pkgdir/usr/lib/systemd/system/qbittorrent@.service"
-}

Copied: qbittorrent/repos/community-i686/PKGBUILD (from rev 189198, 
qbittorrent/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-09-12 09:22:06 UTC (rev 189199)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Timothy Redaelli 
+# Contributor: carstene1ns  - http://git.io/ctPKG
+# Contributor: Jkkyll Wu 
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Daniel J Griffiths 
+# Contributor: Geoffroy 

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

2016-09-12 Thread Timothy Redaelli
Date: Monday, September 12, 2016 @ 09:21:56
  Author: tredaelli
Revision: 189198

upgpkg: qbittorrent 3.3.7-1

Modified:
  qbittorrent/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-12 09:00:12 UTC (rev 189197)
+++ PKGBUILD2016-09-12 09:21:56 UTC (rev 189198)
@@ -8,8 +8,8 @@
 
 pkgbase=qbittorrent
 pkgname=(qbittorrent qbittorrent-nox)
-pkgver=3.3.6
-pkgrel=2
+pkgver=3.3.7
+pkgrel=1
 arch=('i686' 'x86_64')
 url="http://www.qbittorrent.org;
 license=('custom' 'GPL')
@@ -17,7 +17,7 @@
 
source=(http://downloads.sourceforge.net/sourceforge/qbittorrent/$pkgname-$pkgver.tar.xz{,.asc}
 'qbittorrent.service'
'qbittorrent@.service')
-sha256sums=('5a1610311edd86023a6475dac20e24e89515d08a289d8bf0bf2ad1e27d4c624c'
+sha256sums=('72dc824a90fadc0825e6be6f1c215e38f976262c7f83b625061d542b2b664c40'
 'SKIP'
 '8c5879673c66368ada97f6d70a1d8fe3b6a4995f79aab4fc6bf54fbdcbe811d0'
 '12dfd06104eaf302b79328c8096248c051208f69348e33f7fb2e4a2fb49caa29')


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

2016-09-12 Thread Felix Yan
Date: Monday, September 12, 2016 @ 09:00:12
  Author: felixonmars
Revision: 189197

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-09-12 08:59:48 UTC (rev 189196)
+++ community-i686/PKGBUILD 2016-09-12 09:00:12 UTC (rev 189197)
@@ -1,71 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgname=phonegap
-pkgver=6.3.0
-pkgrel=2
-pkgdesc="PhoneGap command-line interface and node.js library"
-arch=('i686' 'x86_64')
-url="https://github.com/phonegap/phonegap-cli;
-license=('Apache')
-depends=('npm' 'acorn' 'semver' 'cordova' 'browserify')
-makedepends=('python2')
-source=(http://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
-noextract=($pkgname-$pkgver.tgz)
-sha256sums=('f9964d1e17fdfc911efe6f44b7a7534e927e67ef120a5b939af168110dff596e')
-
-package() {
-  PYTHON=python2 npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
-  rm -r "$pkgdir"/usr/etc
-
-  # Experimental dedup
-  cd "$pkgdir"/usr/lib/node_modules/$pkgname/node_modules
-  for dep in acorn semver cordova npm browserify; do
-rm -r $dep;
-npm link $dep;
-  done
-
-  cd 
"$pkgdir"/usr/lib/node_modules/$pkgname/node_modules/syntax-error/node_modules
-  for dep in acorn; do
-rm -r $dep;
-npm link $dep;
-  done
-
-  cd 
"$pkgdir"/usr/lib/node_modules/$pkgname/node_modules/cordova-lib/node_modules
-  for dep in semver; do
-rm -r $dep;
-npm link $dep;
-  done
-
-  cd 
"$pkgdir"/usr/lib/node_modules/$pkgname/node_modules/npm-package-arg/node_modules
-  for dep in semver; do
-rm -r $dep;
-npm link $dep;
-  done
-
-  cd 
"$pkgdir"/usr/lib/node_modules/$pkgname/node_modules/normalize-package-data/node_modules
-  for dep in semver; do
-rm -r $dep;
-npm link $dep;
-  done
-
-  cd 
"$pkgdir"/usr/lib/node_modules/$pkgname/node_modules/init-package-json/node_modules
-  for dep in semver; do
-rm -r $dep;
-npm link $dep;
-  done
-
-  cd 
"$pkgdir"/usr/lib/node_modules/$pkgname/node_modules/semver-diff/node_modules
-  for dep in semver; do
-rm -r $dep;
-npm link $dep;
-  done
-
-  cd 
"$pkgdir"/usr/lib/node_modules/$pkgname/node_modules/cordova-lib/node_modules/cordova-common/node_modules
-  for dep in semver; do
-rm -r $dep;
-npm link $dep;
-  done
-}
-
-# vim:set ts=2 sw=2 et:

Copied: phonegap/repos/community-i686/PKGBUILD (from rev 189196, 
phonegap/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-09-12 09:00:12 UTC (rev 189197)
@@ -0,0 +1,71 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=phonegap
+pkgver=6.3.1
+pkgrel=1
+pkgdesc="PhoneGap command-line interface and node.js library"
+arch=('i686' 'x86_64')
+url="https://github.com/phonegap/phonegap-cli;
+license=('Apache')
+depends=('npm' 'acorn' 'semver' 'cordova' 'browserify')
+makedepends=('python2')
+source=(http://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
+noextract=($pkgname-$pkgver.tgz)
+sha256sums=('b907f609add096a54f08c5563b1a87575ef3249081e1d27060d2f39f1b243e5e')
+
+package() {
+  PYTHON=python2 npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
+  rm -r "$pkgdir"/usr/etc
+
+  # Experimental dedup
+  cd "$pkgdir"/usr/lib/node_modules/$pkgname/node_modules
+  for dep in acorn semver cordova npm browserify; do
+rm -r $dep;
+npm link $dep;
+  done
+
+  cd 
"$pkgdir"/usr/lib/node_modules/$pkgname/node_modules/syntax-error/node_modules
+  for dep in acorn; do
+rm -r $dep;
+npm link $dep;
+  done
+
+  cd 
"$pkgdir"/usr/lib/node_modules/$pkgname/node_modules/cordova-lib/node_modules
+  for dep in semver; do
+rm -r $dep;
+npm link $dep;
+  done
+
+  cd 
"$pkgdir"/usr/lib/node_modules/$pkgname/node_modules/npm-package-arg/node_modules
+  for dep in semver; do
+rm -r $dep;
+npm link $dep;
+  done
+
+  cd 
"$pkgdir"/usr/lib/node_modules/$pkgname/node_modules/normalize-package-data/node_modules
+  for dep in semver; do
+rm -r $dep;
+npm link $dep;
+  done
+
+  cd 
"$pkgdir"/usr/lib/node_modules/$pkgname/node_modules/init-package-json/node_modules
+  for dep in semver; do
+rm -r $dep;
+npm link $dep;
+  done
+
+  cd 

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

2016-09-12 Thread Felix Yan
Date: Monday, September 12, 2016 @ 08:59:48
  Author: felixonmars
Revision: 189196

upgpkg: phonegap 6.3.1-1

Modified:
  phonegap/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-12 08:55:55 UTC (rev 189195)
+++ PKGBUILD2016-09-12 08:59:48 UTC (rev 189196)
@@ -2,8 +2,8 @@
 # Maintainer: Felix Yan 
 
 pkgname=phonegap
-pkgver=6.3.0
-pkgrel=2
+pkgver=6.3.1
+pkgrel=1
 pkgdesc="PhoneGap command-line interface and node.js library"
 arch=('i686' 'x86_64')
 url="https://github.com/phonegap/phonegap-cli;
@@ -12,7 +12,7 @@
 makedepends=('python2')
 source=(http://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
 noextract=($pkgname-$pkgver.tgz)
-sha256sums=('f9964d1e17fdfc911efe6f44b7a7534e927e67ef120a5b939af168110dff596e')
+sha256sums=('b907f609add096a54f08c5563b1a87575ef3249081e1d27060d2f39f1b243e5e')
 
 package() {
   PYTHON=python2 npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz


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

2016-09-12 Thread Felix Yan
Date: Monday, September 12, 2016 @ 08:55:55
  Author: felixonmars
Revision: 189195

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-09-12 08:55:40 UTC (rev 189194)
+++ PKGBUILD2016-09-12 08:55:55 UTC (rev 189195)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Daniel Wallace 
-# Contributor: Thomas S Hatch 
-
-pkgbase=python-ioflo
-pkgname=('python-ioflo' 'python2-ioflo')
-pkgver=1.5.5
-pkgrel=1
-pkgdesc='Flo based programming interface in python'
-arch=('any')
-url='http://ioflo.com'
-license=('Apache')
-makedepends=('python-setuptools' 'python2-setuptools' 'git')
-checkdepends=('python-nose' 'python2-nose')
-source=("git+https://github.com/ioflo/ioflo.git#tag=v$pkgver;)
-md5sums=('SKIP')
-
-prepare() {
-  cp -a ioflo{,-py2}
-}
-
-build() {
-  cd "$srcdir"/ioflo
-  python setup.py build
-
-  cd "$srcdir"/ioflo-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/ioflo
-  python setup.py nosetests || warning "Tests failed"
-
-  cd "$srcdir"/ioflo-py2
-  python2 setup.py nosetests || warning "Tests failed"
-}
-
-package_python-ioflo() {
-  depends=('python')
-
-  cd ioflo
-  python setup.py install --root="$pkgdir" -O1
-}
-
-package_python2-ioflo() {
-  depends=('python2')
-
-  cd ioflo-py2
-  python2 setup.py install --root="$pkgdir" -O1
-
-  rm "$pkgdir"/usr/bin/ioflo
-}

Copied: python-ioflo/repos/community-any/PKGBUILD (from rev 189194, 
python-ioflo/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-09-12 08:55:55 UTC (rev 189195)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Daniel Wallace 
+# Contributor: Thomas S Hatch 
+
+pkgbase=python-ioflo
+pkgname=('python-ioflo' 'python2-ioflo')
+pkgver=1.6.0
+pkgrel=1
+pkgdesc='Flo based programming interface in python'
+arch=('any')
+url='http://ioflo.com'
+license=('Apache')
+makedepends=('python-setuptools' 'python2-setuptools' 'python2-enum34' 'git')
+checkdepends=('python-nose' 'python2-nose')
+source=("git+https://github.com/ioflo/ioflo.git#tag=v$pkgver;)
+md5sums=('SKIP')
+
+prepare() {
+  cp -a ioflo{,-py2}
+}
+
+build() {
+  cd "$srcdir"/ioflo
+  python setup.py build
+
+  cd "$srcdir"/ioflo-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/ioflo
+  python setup.py nosetests || warning "Tests failed"
+
+  cd "$srcdir"/ioflo-py2
+  python2 setup.py nosetests || warning "Tests failed"
+}
+
+package_python-ioflo() {
+  depends=('python')
+
+  cd ioflo
+  python setup.py install --root="$pkgdir" -O1
+}
+
+package_python2-ioflo() {
+  depends=('python2-enum34')
+
+  cd ioflo-py2
+  python2 setup.py install --root="$pkgdir" -O1
+
+  rm "$pkgdir"/usr/bin/ioflo
+}


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

2016-09-12 Thread Felix Yan
Date: Monday, September 12, 2016 @ 08:55:40
  Author: felixonmars
Revision: 189194

upgpkg: python-ioflo 1.6.0-1

Modified:
  python-ioflo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-12 08:50:07 UTC (rev 189193)
+++ PKGBUILD2016-09-12 08:55:40 UTC (rev 189194)
@@ -5,13 +5,13 @@
 
 pkgbase=python-ioflo
 pkgname=('python-ioflo' 'python2-ioflo')
-pkgver=1.5.5
+pkgver=1.6.0
 pkgrel=1
 pkgdesc='Flo based programming interface in python'
 arch=('any')
 url='http://ioflo.com'
 license=('Apache')
-makedepends=('python-setuptools' 'python2-setuptools' 'git')
+makedepends=('python-setuptools' 'python2-setuptools' 'python2-enum34' 'git')
 checkdepends=('python-nose' 'python2-nose')
 source=("git+https://github.com/ioflo/ioflo.git#tag=v$pkgver;)
 md5sums=('SKIP')
@@ -44,7 +44,7 @@
 }
 
 package_python2-ioflo() {
-  depends=('python2')
+  depends=('python2-enum34')
 
   cd ioflo-py2
   python2 setup.py install --root="$pkgdir" -O1


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

2016-09-12 Thread Felix Yan
Date: Monday, September 12, 2016 @ 08:54:25
  Author: felixonmars
Revision: 276193

upgpkg: python2-ipaddress 1.0.17-1

Modified:
  python2-ipaddress/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-12 08:53:16 UTC (rev 276192)
+++ PKGBUILD2016-09-12 08:54:25 UTC (rev 276193)
@@ -3,7 +3,7 @@
 # Contributor: Nikolaus Brandt 
 
 pkgname=python2-ipaddress
-pkgver=1.0.16
+pkgver=1.0.17
 pkgrel=1
 pkgdesc="IPv4/IPv6 manipulation library"
 arch=(any)
@@ -10,9 +10,9 @@
 url="https://github.com/phihag/ipaddress;
 license=('custom:PSF')
 depends=('python2')
-source=("https://pypi.python.org/packages/source/i/ipaddress/ipaddress-$pkgver.tar.gz;
+source=("https://pypi.io/packages/source/i/ipaddress/ipaddress-$pkgver.tar.gz;
 LICENSE)
-sha512sums=('50baf15f185b039037eef7b047d5a0ffbe1b335d2d94c218b6a2012ae1ba89c5e5c4f64667d8a623e4e4e7598d90c8a7caa8327ea4c155260ab90384f86a6c89'
+sha512sums=('c9f7c7226fd28a1b3905139713c2269b4bdbe5bc1b8e44ab8edd56c0cd2b6938577a66fce139ecce06398de89321097ac672bff2d1618ca2f3b917c15553f50d'
 
'5cc59a125412b0eb35f05d40756db050805fc1bd5729f350796644ad92b8117f8d3ed3c7cf6ab8b072518706bf95a1d40f016d065726a1296e19ea09582ec385')
 
 check() {


[arch-commits] Commit in python2-ipaddress/repos/extra-any (4 files)

2016-09-12 Thread Felix Yan
Date: Monday, September 12, 2016 @ 08:54:39
  Author: felixonmars
Revision: 276194

archrelease: copy trunk to extra-any

Added:
  python2-ipaddress/repos/extra-any/LICENSE
(from rev 276193, python2-ipaddress/trunk/LICENSE)
  python2-ipaddress/repos/extra-any/PKGBUILD
(from rev 276193, python2-ipaddress/trunk/PKGBUILD)
Deleted:
  python2-ipaddress/repos/extra-any/LICENSE
  python2-ipaddress/repos/extra-any/PKGBUILD

--+
 LICENSE  |  100 ++---
 PKGBUILD |   56 +-
 2 files changed, 78 insertions(+), 78 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2016-09-12 08:54:25 UTC (rev 276193)
+++ LICENSE 2016-09-12 08:54:39 UTC (rev 276194)
@@ -1,50 +0,0 @@
-This package is a modified version of cpython's ipaddress module.
-It is therefore distributed under the PSF license, as follows: 
-
-PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2
-
-
-1. This LICENSE AGREEMENT is between the Python Software Foundation
-("PSF"), and the Individual or Organization ("Licensee") accessing and
-otherwise using this software ("Python") in source or binary form and
-its associated documentation.
-
-2. Subject to the terms and conditions of this License Agreement, PSF hereby
-grants Licensee a nonexclusive, royalty-free, world-wide license to reproduce,
-analyze, test, perform and/or display publicly, prepare derivative works,
-distribute, and otherwise use Python alone or in any derivative version,
-provided, however, that PSF's License Agreement and PSF's notice of copyright,
-i.e., "Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 
2010,
-2011, 2012, 2013, 2014 Python Software Foundation; All Rights Reserved" are
-retained in Python alone or in any derivative version prepared by Licensee.
-
-3. In the event Licensee prepares a derivative work that is based on
-or incorporates Python or any part thereof, and wants to make
-the derivative work available to others as provided herein, then
-Licensee hereby agrees to include in any such work a brief summary of
-the changes made to Python.
-
-4. PSF is making Python available to Licensee on an "AS IS"
-basis.  PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
-IMPLIED.  BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND
-DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
-FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON WILL NOT
-INFRINGE ANY THIRD PARTY RIGHTS.
-
-5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON
-FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS
-A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON,
-OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
-
-6. This License Agreement will automatically terminate upon a material
-breach of its terms and conditions.
-
-7. Nothing in this License Agreement shall be deemed to create any
-relationship of agency, partnership, or joint venture between PSF and
-Licensee.  This License Agreement does not grant permission to use PSF
-trademarks or trade name in a trademark sense to endorse or promote
-products or services of Licensee, or any third party.
-
-8. By copying, installing or otherwise using Python, Licensee
-agrees to be bound by the terms and conditions of this License
-Agreement.

Copied: python2-ipaddress/repos/extra-any/LICENSE (from rev 276193, 
python2-ipaddress/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2016-09-12 08:54:39 UTC (rev 276194)
@@ -0,0 +1,50 @@
+This package is a modified version of cpython's ipaddress module.
+It is therefore distributed under the PSF license, as follows: 
+
+PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2
+
+
+1. This LICENSE AGREEMENT is between the Python Software Foundation
+("PSF"), and the Individual or Organization ("Licensee") accessing and
+otherwise using this software ("Python") in source or binary form and
+its associated documentation.
+
+2. Subject to the terms and conditions of this License Agreement, PSF hereby
+grants Licensee a nonexclusive, royalty-free, world-wide license to reproduce,
+analyze, test, perform and/or display publicly, prepare derivative works,
+distribute, and otherwise use Python alone or in any derivative version,
+provided, however, that PSF's License Agreement and PSF's notice of copyright,
+i.e., "Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 
2010,
+2011, 2012, 2013, 2014 Python Software Foundation; All Rights Reserved" are
+retained in Python alone or in any derivative version prepared by Licensee.
+
+3. In the event Licensee prepares a derivative work that is based on
+or incorporates Python or any part thereof, and wants to make
+the derivative 

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

2016-09-12 Thread Felix Yan
Date: Monday, September 12, 2016 @ 08:53:16
  Author: felixonmars
Revision: 276192

archrelease: copy trunk to extra-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-09-12 08:53:03 UTC (rev 276191)
+++ PKGBUILD2016-09-12 08:53:16 UTC (rev 276192)
@@ -1,61 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Alexander F Rødseth 
-# Contributor: Chris Brannon 
-# Contributor: Geoffroy Carrier 
-# Contributor: Arvid Ephraim Picciani 
-# Contributor: Michael Krauss 
-
-pkgname=python-pyparsing
-pkgname=('python-pyparsing' 'python2-pyparsing')
-pkgver=2.1.8
-pkgrel=1
-pkgdesc='General parsing module for Python'
-arch=('any')
-url='http://pyparsing.wikispaces.com/'
-makedepends=('python-setuptools' 'python2-setuptools' 'subversion')
-license=('MIT')
-source=("svn://svn.code.sf.net/p/pyparsing/code/tags/pyparsing_$pkgver")
-sha256sums=('SKIP')
-
-prepare() {
-  cp -a pyparsing_$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir"/pyparsing_$pkgver/src
-  python setup.py build
-
-  cd "$srcdir"/pyparsing_$pkgver-py2/src
-  python2 setup.py build
-}
-
-check() {
-  export LC_CTYPE=en_US.UTF-8
-
-  cd "$srcdir"/pyparsing_$pkgver/src
-  python unitTests.py
-
-  cd "$srcdir"/pyparsing_$pkgver-py2/src
-  python2 unitTests.py
-}
-
-package_python-pyparsing() {
-  depends=('python')
-
-  cd pyparsing_$pkgver/src
-
-  python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-pyparsing() {
-  depends=('python2')
-
-  cd pyparsing_$pkgver-py2/src
-
-  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-pyparsing/repos/extra-any/PKGBUILD (from rev 276191, 
python-pyparsing/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-09-12 08:53:16 UTC (rev 276192)
@@ -0,0 +1,64 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Alexander F Rødseth 
+# Contributor: Chris Brannon 
+# Contributor: Geoffroy Carrier 
+# Contributor: Arvid Ephraim Picciani 
+# Contributor: Michael Krauss 
+
+pkgname=python-pyparsing
+pkgname=('python-pyparsing' 'python2-pyparsing')
+pkgver=2.1.9
+pkgrel=1
+pkgdesc='General parsing module for Python'
+arch=('any')
+url='http://pyparsing.wikispaces.com/'
+makedepends=('python-setuptools' 'python2-setuptools' 'subversion')
+license=('MIT')
+source=("svn://svn.code.sf.net/p/pyparsing/code/tags/pyparsing_$pkgver")
+sha256sums=('SKIP')
+
+prepare() {
+  cp -a pyparsing_$pkgver{,-py2}
+
+  # :/
+  sed -i '1i#coding=utf-8' pyparsing_$pkgver-py2/src/unitTests.py
+}
+
+build() {
+  cd "$srcdir"/pyparsing_$pkgver/src
+  python setup.py build
+
+  cd "$srcdir"/pyparsing_$pkgver-py2/src
+  python2 setup.py build
+}
+
+check() {
+  export LC_CTYPE=en_US.UTF-8
+
+  cd "$srcdir"/pyparsing_$pkgver/src
+  python unitTests.py
+
+  cd "$srcdir"/pyparsing_$pkgver-py2/src
+  python2 unitTests.py
+}
+
+package_python-pyparsing() {
+  depends=('python')
+
+  cd pyparsing_$pkgver/src
+
+  python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-pyparsing() {
+  depends=('python2')
+
+  cd pyparsing_$pkgver-py2/src
+
+  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


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

2016-09-12 Thread Felix Yan
Date: Monday, September 12, 2016 @ 08:53:03
  Author: felixonmars
Revision: 276191

upgpkg: python-pyparsing 2.1.9-1

Modified:
  python-pyparsing/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-12 08:48:52 UTC (rev 276190)
+++ PKGBUILD2016-09-12 08:53:03 UTC (rev 276191)
@@ -8,7 +8,7 @@
 
 pkgname=python-pyparsing
 pkgname=('python-pyparsing' 'python2-pyparsing')
-pkgver=2.1.8
+pkgver=2.1.9
 pkgrel=1
 pkgdesc='General parsing module for Python'
 arch=('any')
@@ -20,6 +20,9 @@
 
 prepare() {
   cp -a pyparsing_$pkgver{,-py2}
+
+  # :/
+  sed -i '1i#coding=utf-8' pyparsing_$pkgver-py2/src/unitTests.py
 }
 
 build() {


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

2016-09-12 Thread Felix Yan
Date: Monday, September 12, 2016 @ 08:50:07
  Author: felixonmars
Revision: 189193

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

Added:
  deepin-terminal/repos/community-i686/PKGBUILD
(from rev 189192, deepin-terminal/trunk/PKGBUILD)
  deepin-terminal/repos/community-x86_64/PKGBUILD
(from rev 189192, deepin-terminal/trunk/PKGBUILD)
Deleted:
  deepin-terminal/repos/community-i686/PKGBUILD
  deepin-terminal/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-09-12 08:49:44 UTC (rev 189192)
+++ community-i686/PKGBUILD 2016-09-12 08:50:07 UTC (rev 189193)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
- 
-pkgname=deepin-terminal
-pkgver=2.0.14
-pkgrel=1
-pkgdesc='Default terminal emulation application for Deepin'
-arch=('i686' 'x86_64')
-url="https://github.com/manateelazycat/deepin-terminal;
-license=('GPL3')
-depends=('vte3' 'libsecret' 'libgee' 'libwnck3' 'expect' 
'deepin-shortcut-viewer')
-makedepends=('git' 'vala')
-groups=('deepin-extra')
-options=(!emptydirs)
-source=("git+https://github.com/manateelazycat/deepin-terminal.git;)
-sha256sums=('SKIP')
-
-prepare() {
-  sed -i 's|return __FILE__;|return 
"/usr/share/deepin-terminal/project_path.c";|' deepin-terminal/project_path.c
-}
-
-build() {
-  cd deepin-terminal
-  make PREFIX=/usr
-}
- 
-package() {
-  cd deepin-terminal
-  make DESTDIR="$pkgdir" PREFIX=/usr install
-}

Copied: deepin-terminal/repos/community-i686/PKGBUILD (from rev 189192, 
deepin-terminal/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-09-12 08:50:07 UTC (rev 189193)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+ 
+pkgname=deepin-terminal
+pkgver=2.0.15
+pkgrel=1
+pkgdesc='Default terminal emulation application for Deepin'
+arch=('i686' 'x86_64')
+url="https://github.com/manateelazycat/deepin-terminal;
+license=('GPL3')
+depends=('vte3' 'libsecret' 'libgee' 'libwnck3' 'expect' 
'deepin-shortcut-viewer')
+makedepends=('git' 'vala')
+groups=('deepin-extra')
+options=(!emptydirs)
+source=("git+https://github.com/manateelazycat/deepin-terminal.git;)
+sha256sums=('SKIP')
+
+prepare() {
+  sed -i 's|return __FILE__;|return 
"/usr/share/deepin-terminal/project_path.c";|' deepin-terminal/project_path.c
+}
+
+build() {
+  cd deepin-terminal
+  make PREFIX=/usr
+}
+ 
+package() {
+  cd deepin-terminal
+  make DESTDIR="$pkgdir" PREFIX=/usr install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-09-12 08:49:44 UTC (rev 189192)
+++ community-x86_64/PKGBUILD   2016-09-12 08:50:07 UTC (rev 189193)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
- 
-pkgname=deepin-terminal
-pkgver=2.0.14
-pkgrel=1
-pkgdesc='Default terminal emulation application for Deepin'
-arch=('i686' 'x86_64')
-url="https://github.com/manateelazycat/deepin-terminal;
-license=('GPL3')
-depends=('vte3' 'libsecret' 'libgee' 'libwnck3' 'expect' 
'deepin-shortcut-viewer')
-makedepends=('git' 'vala')
-groups=('deepin-extra')
-options=(!emptydirs)
-source=("git+https://github.com/manateelazycat/deepin-terminal.git;)
-sha256sums=('SKIP')
-
-prepare() {
-  sed -i 's|return __FILE__;|return 
"/usr/share/deepin-terminal/project_path.c";|' deepin-terminal/project_path.c
-}
-
-build() {
-  cd deepin-terminal
-  make PREFIX=/usr
-}
- 
-package() {
-  cd deepin-terminal
-  make DESTDIR="$pkgdir" PREFIX=/usr install
-}

Copied: deepin-terminal/repos/community-x86_64/PKGBUILD (from rev 189192, 
deepin-terminal/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-09-12 08:50:07 UTC (rev 189193)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+ 
+pkgname=deepin-terminal
+pkgver=2.0.15
+pkgrel=1
+pkgdesc='Default terminal emulation application for Deepin'
+arch=('i686' 'x86_64')
+url="https://github.com/manateelazycat/deepin-terminal;
+license=('GPL3')
+depends=('vte3' 'libsecret' 'libgee' 'libwnck3' 'expect' 

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

2016-09-12 Thread Felix Yan
Date: Monday, September 12, 2016 @ 08:48:52
  Author: felixonmars
Revision: 276190

archrelease: copy trunk to extra-any

Added:
  perl-date-manip/repos/extra-any/PKGBUILD
(from rev 276189, perl-date-manip/trunk/PKGBUILD)
Deleted:
  perl-date-manip/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-09-12 08:48:38 UTC (rev 276189)
+++ PKGBUILD2016-09-12 08:48:52 UTC (rev 276190)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgname=perl-date-manip
-pkgver=6.54
-pkgrel=1
-pkgdesc="Date::Manip - date manipulation routines"
-arch=('any')
-license=('PerlArtistic')
-url="http://search.cpan.org/dist/Date-Manip/;
-depends=('perl')
-checkdepends=('perl-test-inter')
-options=('!emptydirs')
-source=("http://search.cpan.org/CPAN/authors/id/S/SB/SBECK/Date-Manip-${pkgver}.tar.gz;)
-md5sums=('7ef51af4a61b30cb428bfc933f0095f4')
-
-build() {
-  cd Date-Manip-${pkgver}
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd Date-Manip-${pkgver}
-  make test
-}
-
-package() {
-  cd Date-Manip-${pkgver}
-  make DESTDIR="${pkgdir}" install
-}

Copied: perl-date-manip/repos/extra-any/PKGBUILD (from rev 276189, 
perl-date-manip/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-09-12 08:48:52 UTC (rev 276190)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=perl-date-manip
+pkgver=6.56
+pkgrel=1
+pkgdesc="Date::Manip - date manipulation routines"
+arch=('any')
+license=('PerlArtistic')
+url="http://search.cpan.org/dist/Date-Manip/;
+depends=('perl')
+checkdepends=('perl-test-inter')
+options=('!emptydirs')
+source=("http://search.cpan.org/CPAN/authors/id/S/SB/SBECK/Date-Manip-${pkgver}.tar.gz;)
+md5sums=('fc56f1a9097f8bd3da093a8afe7e06e9')
+
+build() {
+  cd Date-Manip-${pkgver}
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd Date-Manip-${pkgver}
+  make test
+}
+
+package() {
+  cd Date-Manip-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}


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

2016-09-12 Thread Felix Yan
Date: Monday, September 12, 2016 @ 08:49:44
  Author: felixonmars
Revision: 189192

upgpkg: deepin-terminal 2.0.15-1

Modified:
  deepin-terminal/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-12 08:46:24 UTC (rev 189191)
+++ PKGBUILD2016-09-12 08:49:44 UTC (rev 189192)
@@ -4,7 +4,7 @@
 # Contributor: Xu Fasheng 
  
 pkgname=deepin-terminal
-pkgver=2.0.14
+pkgver=2.0.15
 pkgrel=1
 pkgdesc='Default terminal emulation application for Deepin'
 arch=('i686' 'x86_64')


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

2016-09-12 Thread Felix Yan
Date: Monday, September 12, 2016 @ 08:48:38
  Author: felixonmars
Revision: 276189

upgpkg: perl-date-manip 6.56-1

Modified:
  perl-date-manip/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-12 08:46:51 UTC (rev 276188)
+++ PKGBUILD2016-09-12 08:48:38 UTC (rev 276189)
@@ -2,7 +2,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=perl-date-manip
-pkgver=6.54
+pkgver=6.56
 pkgrel=1
 pkgdesc="Date::Manip - date manipulation routines"
 arch=('any')
@@ -12,7 +12,7 @@
 checkdepends=('perl-test-inter')
 options=('!emptydirs')
 
source=("http://search.cpan.org/CPAN/authors/id/S/SB/SBECK/Date-Manip-${pkgver}.tar.gz;)
-md5sums=('7ef51af4a61b30cb428bfc933f0095f4')
+md5sums=('fc56f1a9097f8bd3da093a8afe7e06e9')
 
 build() {
   cd Date-Manip-${pkgver}


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

2016-09-12 Thread Felix Yan
Date: Monday, September 12, 2016 @ 08:46:51
  Author: felixonmars
Revision: 276188

archrelease: copy trunk to extra-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-09-12 08:46:37 UTC (rev 276187)
+++ PKGBUILD2016-09-12 08:46:51 UTC (rev 276188)
@@ -1,76 +0,0 @@
-# $Id$
-# Maintainer: Angel Velasquez 
-# Maintainer: Felix Yan 
-
-pkgbase=python-setuptools
-pkgname=('python-setuptools' 'python2-setuptools')
-pkgver=26.1.1
-pkgrel=1
-epoch=1
-pkgdesc="Easily download, build, install, upgrade, and uninstall Python 
packages"
-arch=('any')
-license=('PSF')
-url="http://pypi.python.org/pypi/setuptools;
-makedepends=('python-packaging' 'python2-packaging' 'python-mock' 
'python2-mock' 'python-appdirs'
- 'python2-appdirs' 'git')
-checkdepends=('python-pytest-runner' 'python2-pytest-runner' 
'python-pytest-flake8'
-  'python2-pytest-flake8' 'git')
-source=("git+https://github.com/pypa/setuptools.git#tag=v$pkgver;)
-sha512sums=('SKIP')
-
-prepare() {
-  # Remove vendored packages
-  rm -rv setuptools/pkg_resources/_vendor
-
-  # Remove post-release tag since we are using stable tags
-  sed -e '/tag_build = .post/d' \
-  -e '/tag_date = 1/d' \
-  -i setuptools/setup.cfg
-
-  cp -a setuptools{,-py2}
-
-  cd "$srcdir"/setuptools
-  sed -i -e "s|^#\!.*/usr/bin/env python|#!/usr/bin/env python3|" 
setuptools/command/easy_install.py
-
-  cd "$srcdir"/setuptools-py2
-  sed -i -e "s|^#\!.*/usr/bin/env python|#!/usr/bin/env python2|" 
setuptools/command/easy_install.py
-}
-
-build() {
-  cd "$srcdir"/setuptools
-  python bootstrap.py
-  python setup.py build
-
-  cd "$srcdir"/setuptools-py2
-  python2 bootstrap.py
-  python2 setup.py build
-}
-
-check() {
-  # Workaround UTF-8 tests by setting LC_CTYPE
-
-  cd "$srcdir"/setuptools
-  LC_CTYPE=en_US.utf8 python setup.py ptr
-
-  cd "$srcdir"/setuptools-py2
-  LC_CTYPE=en_US.utf8 python2 setup.py ptr
-}
- 
-package_python-setuptools() {
-  depends=('python-packaging' 'python-appdirs')
-  provides=('python-distribute')
-  replaces=('python-distribute')
-
-  cd "$srcdir"/setuptools
-  python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1 
--skip-build
-}
- 
-package_python2-setuptools() {
-  depends=('python2-packaging' 'python2-appdirs')
-  provides=('python2-distribute')
-  replaces=('python2-distribute')
-
-  cd "$srcdir"/setuptools-py2
-  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1 
--skip-build
-  rm "$pkgdir"/usr/bin/easy_install
-}

Copied: python-setuptools/repos/extra-any/PKGBUILD (from rev 276187, 
python-setuptools/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-09-12 08:46:51 UTC (rev 276188)
@@ -0,0 +1,76 @@
+# $Id$
+# Maintainer: Angel Velasquez 
+# Maintainer: Felix Yan 
+
+pkgbase=python-setuptools
+pkgname=('python-setuptools' 'python2-setuptools')
+pkgver=27.1.2
+pkgrel=1
+epoch=1
+pkgdesc="Easily download, build, install, upgrade, and uninstall Python 
packages"
+arch=('any')
+license=('PSF')
+url="http://pypi.python.org/pypi/setuptools;
+makedepends=('python-packaging' 'python2-packaging' 'python-mock' 
'python2-mock' 'python-appdirs'
+ 'python2-appdirs' 'git')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 
'python-pytest-flake8'
+  'python2-pytest-flake8' 'git')
+source=("git+https://github.com/pypa/setuptools.git#tag=v$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  # Remove vendored packages
+  rm -rv setuptools/pkg_resources/_vendor
+
+  # Remove post-release tag since we are using stable tags
+  sed -e '/tag_build = .post/d' \
+  -e '/tag_date = 1/d' \
+  -i setuptools/setup.cfg
+
+  cp -a setuptools{,-py2}
+
+  cd "$srcdir"/setuptools
+  sed -i -e "s|^#\!.*/usr/bin/env python|#!/usr/bin/env python3|" 
setuptools/command/easy_install.py
+
+  cd "$srcdir"/setuptools-py2
+  sed -i -e "s|^#\!.*/usr/bin/env python|#!/usr/bin/env python2|" 
setuptools/command/easy_install.py
+}
+
+build() {
+  cd "$srcdir"/setuptools
+  python bootstrap.py
+  python setup.py build
+
+  cd "$srcdir"/setuptools-py2
+  python2 bootstrap.py
+  python2 setup.py build
+}
+
+check() {
+  # Workaround UTF-8 tests by setting LC_CTYPE
+
+  cd "$srcdir"/setuptools
+  LC_CTYPE=en_US.utf8 python setup.py ptr
+
+  cd "$srcdir"/setuptools-py2
+  LC_CTYPE=en_US.utf8 python2 setup.py ptr
+}
+ 
+package_python-setuptools() {
+  depends=('python-packaging' 'python-appdirs')
+  provides=('python-distribute')

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

2016-09-12 Thread Felix Yan
Date: Monday, September 12, 2016 @ 08:46:37
  Author: felixonmars
Revision: 276187

upgpkg: python-setuptools 1:27.1.2-1

Modified:
  python-setuptools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-12 05:57:14 UTC (rev 276186)
+++ PKGBUILD2016-09-12 08:46:37 UTC (rev 276187)
@@ -4,7 +4,7 @@
 
 pkgbase=python-setuptools
 pkgname=('python-setuptools' 'python2-setuptools')
-pkgver=26.1.1
+pkgver=27.1.2
 pkgrel=1
 epoch=1
 pkgdesc="Easily download, build, install, upgrade, and uninstall Python 
packages"


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

2016-09-12 Thread Felix Yan
Date: Monday, September 12, 2016 @ 08:46:24
  Author: felixonmars
Revision: 189191

archrelease: copy trunk to community-any

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

--+
 PKGBUILD |   96 ++---
 1 file changed, 48 insertions(+), 48 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-09-12 08:46:10 UTC (rev 189190)
+++ PKGBUILD2016-09-12 08:46:24 UTC (rev 189191)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgbase=python-pygithub
-pkgname=('python-pygithub' 'python2-pygithub')
-pkgver=1.27.1
-pkgrel=1
-pkgdesc="Use the full Github API v3"
-arch=('any')
-license=('LGPL')
-url="http://jacquev6.github.com/PyGithub;
-makedepends=('python-setuptools' 'python2-setuptools' 'git')
-source=("git+https://github.com/PyGithub/PyGithub.git#tag=v$pkgver;)
-sha512sums=('SKIP')
-
-prepare() {
-  cp -a PyGithub{,-py2}
-}
-
-build() {
-  cd "$srcdir"/PyGithub
-  python setup.py build
-
-  cd "$srcdir"/PyGithub-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/PyGithub
-  python setup.py test
-
-  cd "$srcdir"/PyGithub-py2
-  python2 setup.py test
-}
-
-package_python-pygithub() {
-  depends=('python')
-
-  cd PyGithub
-  python setup.py install --root="$pkgdir" --optimize=1
-}
-
-package_python2-pygithub() {
-  depends=('python2')
-
-  cd PyGithub-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python-pygithub/repos/community-any/PKGBUILD (from rev 189190, 
python-pygithub/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-09-12 08:46:24 UTC (rev 189191)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-pygithub
+pkgname=('python-pygithub' 'python2-pygithub')
+pkgver=1.28
+pkgrel=1
+pkgdesc="Use the full Github API v3"
+arch=('any')
+license=('LGPL')
+url="http://jacquev6.github.com/PyGithub;
+makedepends=('python-setuptools' 'python2-setuptools' 'git')
+source=("git+https://github.com/PyGithub/PyGithub.git#tag=v$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  cp -a PyGithub{,-py2}
+}
+
+build() {
+  cd "$srcdir"/PyGithub
+  python setup.py build
+
+  cd "$srcdir"/PyGithub-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/PyGithub
+  python setup.py test
+
+  cd "$srcdir"/PyGithub-py2
+  python2 setup.py test
+}
+
+package_python-pygithub() {
+  depends=('python')
+
+  cd PyGithub
+  python setup.py install --root="$pkgdir" --optimize=1
+}
+
+package_python2-pygithub() {
+  depends=('python2')
+
+  cd PyGithub-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+}


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

2016-09-12 Thread Felix Yan
Date: Monday, September 12, 2016 @ 08:46:10
  Author: felixonmars
Revision: 189190

upgpkg: python-pygithub 1.28-1

Modified:
  python-pygithub/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-12 08:43:36 UTC (rev 189189)
+++ PKGBUILD2016-09-12 08:46:10 UTC (rev 189190)
@@ -3,7 +3,7 @@
 
 pkgbase=python-pygithub
 pkgname=('python-pygithub' 'python2-pygithub')
-pkgver=1.27.1
+pkgver=1.28
 pkgrel=1
 pkgdesc="Use the full Github API v3"
 arch=('any')


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

2016-09-12 Thread Felix Yan
Date: Monday, September 12, 2016 @ 08:43:36
  Author: felixonmars
Revision: 189189

archrelease: copy trunk to community-any

Added:
  acorn/repos/community-any/PKGBUILD
(from rev 189188, acorn/trunk/PKGBUILD)
Deleted:
  acorn/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-09-12 08:43:23 UTC (rev 189188)
+++ PKGBUILD2016-09-12 08:43:36 UTC (rev 189189)
@@ -1,23 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgname=acorn
-pkgver=3.3.0
-pkgrel=1
-pkgdesc='A tiny, fast JavaScript parser, written completely in JavaScript.'
-arch=('any')
-url='https://github.com/ternjs/acorn'
-license=('MIT')
-depends=('nodejs')
-makedepends=('npm')
-source=(http://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
-noextract=($pkgname-$pkgver.tgz)
-md5sums=('e851da28b89b69e6c1aa7f0ed8d83154')
-
-package() {
-  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
-  rm -r "$pkgdir"/usr/etc
-
-  mkdir -p "$pkgdir/usr/share/licenses/$pkgname"
-  ln -s "../../../lib/node_modules/$pkgname/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/"
-}

Copied: acorn/repos/community-any/PKGBUILD (from rev 189188, 
acorn/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-09-12 08:43:36 UTC (rev 189189)
@@ -0,0 +1,23 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=acorn
+pkgver=4.0.2
+pkgrel=1
+pkgdesc='A tiny, fast JavaScript parser, written completely in JavaScript.'
+arch=('any')
+url='https://github.com/ternjs/acorn'
+license=('MIT')
+depends=('nodejs')
+makedepends=('npm')
+source=(http://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
+noextract=($pkgname-$pkgver.tgz)
+md5sums=('f1fe71371da982518bbb23df89fc906b')
+
+package() {
+  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
+  rm -r "$pkgdir"/usr/etc
+
+  mkdir -p "$pkgdir/usr/share/licenses/$pkgname"
+  ln -s "../../../lib/node_modules/$pkgname/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/"
+}


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

2016-09-12 Thread Felix Yan
Date: Monday, September 12, 2016 @ 08:43:23
  Author: felixonmars
Revision: 189188

upgpkg: acorn 4.0.2-1

Modified:
  acorn/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-12 08:05:02 UTC (rev 189187)
+++ PKGBUILD2016-09-12 08:43:23 UTC (rev 189188)
@@ -2,7 +2,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=acorn
-pkgver=4.0.1
+pkgver=4.0.2
 pkgrel=1
 pkgdesc='A tiny, fast JavaScript parser, written completely in JavaScript.'
 arch=('any')
@@ -12,7 +12,7 @@
 makedepends=('npm')
 source=(http://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
 noextract=($pkgname-$pkgver.tgz)
-md5sums=('e24b36032585717c526c5e95eceb2761')
+md5sums=('f1fe71371da982518bbb23df89fc906b')
 
 package() {
   npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz


[arch-commits] Commit in yubikey-neo-manager/repos (4 files)

2016-09-12 Thread Christian Hesse
Date: Monday, September 12, 2016 @ 08:05:02
  Author: eworm
Revision: 189187

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

Added:
  yubikey-neo-manager/repos/community-i686/PKGBUILD
(from rev 189186, yubikey-neo-manager/trunk/PKGBUILD)
  yubikey-neo-manager/repos/community-x86_64/PKGBUILD
(from rev 189186, yubikey-neo-manager/trunk/PKGBUILD)
Deleted:
  yubikey-neo-manager/repos/community-i686/PKGBUILD
  yubikey-neo-manager/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-09-12 08:04:55 UTC (rev 189186)
+++ community-i686/PKGBUILD 2016-09-12 08:05:02 UTC (rev 189187)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Christian Hesse 
-
-pkgname=yubikey-neo-manager
-pkgver=1.4.0
-pkgrel=3
-pkgdesc="Cross platform personalization tool for the YubiKey NEO"
-arch=('i686' 'x86_64')
-url="https://github.com/Yubico/yubikey-neo-manager;
-license=('BSD')
-depends=('yubikey-personalization' 'libykneomgr' 'libu2f-host'
-   'python2-setuptools' 'python2-pyside' 'python2-crypto' 'qtwebkit')
-makedepends=('git' 'python2-pyside-tools' 'imagemagick')
-source=("git://github.com/Yubico/yubikey-neo-manager.git#tag=yubikey-neo-manager-${pkgver}"
-   'git://github.com/Yubico/python-yubicommon.git')
-sha256sums=('SKIP' 'SKIP')
-
-prepare() {
-   cd yubikey-neo-manager/
-
-   git config --file=.gitmodules submodule.vendor/yubicommon.url 
../python-yubicommon/
-   git submodule init
-   git submodule update
-}
-
-package() {
-   cd yubikey-neo-manager/
-
-   python2 setup.py qt_resources
-   python2 setup.py install --root="${pkgdir}/" --optimize=1
-
-   install -D -m0644 resources/yubikey-neo-manager.png 
"${pkgdir}/usr/share/icons/hicolor/128x128/neoman.png"
-   for SIZE in 16 24 32 48 64 96; do
-   convert -scale ${SIZE} \
-   resources/yubikey-neo-manager.png \
-   ${srcdir}/neoman.png
-   install -D -m0644 ${srcdir}/neoman.png 
"${pkgdir}/usr/share/icons/hicolor/${SIZE}x${SIZE}/apps/neoman.png"
-   done
-
-   install -D -m0644 resources/neoman.desktop 
"${pkgdir}/usr/share/applications/neoman.desktop"
-
-   install -D -m0644 COPYING 
"${pkgdir}/usr/share/licenses/yubikey-neo-manager/COPYING"
-   install -D -m0644 README 
"${pkgdir}/usr/share/doc/yubikey-neo-manager/README"
-}
-

Copied: yubikey-neo-manager/repos/community-i686/PKGBUILD (from rev 189186, 
yubikey-neo-manager/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-09-12 08:05:02 UTC (rev 189187)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Christian Hesse 
+
+pkgname=yubikey-neo-manager
+pkgver=1.4.0
+pkgrel=4
+pkgdesc="Cross platform personalization tool for the YubiKey NEO"
+arch=('i686' 'x86_64')
+url="https://github.com/Yubico/yubikey-neo-manager;
+license=('BSD')
+depends=('yubikey-personalization' 'libykneomgr' 'libu2f-host'
+   'python2-setuptools' 'python2-pyside' 'python2-crypto' 'qtwebkit')
+makedepends=('git' 'python2-pyside-tools' 'imagemagick')
+source=("git://github.com/Yubico/yubikey-neo-manager.git#tag=yubikey-neo-manager-${pkgver}"
+   'git://github.com/Yubico/python-yubicommon.git')
+sha256sums=('SKIP' 'SKIP')
+
+prepare() {
+   cd yubikey-neo-manager/
+
+   git config --file=.gitmodules submodule.vendor/yubicommon.url 
../python-yubicommon/
+   git submodule init
+   git submodule update
+}
+
+package() {
+   cd yubikey-neo-manager/
+
+   python2 setup.py qt_resources
+   python2 setup.py install --root="${pkgdir}/" --optimize=1
+
+   install -D -m0644 resources/yubikey-neo-manager.png 
"${pkgdir}/usr/share/icons/hicolor/128x128/apps/neoman.png"
+   for SIZE in 16 24 32 48 64 96; do
+   convert -scale ${SIZE} \
+   resources/yubikey-neo-manager.png \
+   ${srcdir}/neoman.png
+   install -D -m0644 ${srcdir}/neoman.png 
"${pkgdir}/usr/share/icons/hicolor/${SIZE}x${SIZE}/apps/neoman.png"
+   done
+
+   install -D -m0644 resources/neoman.desktop 
"${pkgdir}/usr/share/applications/neoman.desktop"
+
+   install -D -m0644 COPYING 
"${pkgdir}/usr/share/licenses/yubikey-neo-manager/COPYING"
+   install -D -m0644 README 
"${pkgdir}/usr/share/doc/yubikey-neo-manager/README"
+}
+

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-09-12 08:04:55 UTC (rev 189186)

[arch-commits] Commit in yubikey-neo-manager/trunk (PKGBUILD)

2016-09-12 Thread Christian Hesse
Date: Monday, September 12, 2016 @ 08:04:55
  Author: eworm
Revision: 189186

upgpkg: yubikey-neo-manager 1.4.0-4

rebuild with fixed icon path

Modified:
  yubikey-neo-manager/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-12 07:24:39 UTC (rev 189185)
+++ PKGBUILD2016-09-12 08:04:55 UTC (rev 189186)
@@ -3,7 +3,7 @@
 
 pkgname=yubikey-neo-manager
 pkgver=1.4.0
-pkgrel=3
+pkgrel=4
 pkgdesc="Cross platform personalization tool for the YubiKey NEO"
 arch=('i686' 'x86_64')
 url="https://github.com/Yubico/yubikey-neo-manager;


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

2016-09-12 Thread Ike Devolder
Date: Monday, September 12, 2016 @ 07:24:39
  Author: idevolder
Revision: 189185

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-09-12 07:24:30 UTC (rev 189184)
+++ PKGBUILD2016-09-12 07:24:39 UTC (rev 189185)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: BlackEagle < ike DOT devolder AT gmail DOT com >
-pkgbase=python-gflags
-pkgname=('python-gflags' 'python2-gflags')
-pkgver=3.0.6
-pkgrel=1
-pkgdesc="Commandline flags module for Python"
-arch=('any')
-url="https://github.com/google/python-gflags;
-license=('BSD')
-makedepends=('python2-setuptools' 'python-setuptools')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/google/$pkgbase/archive/$pkgver.tar.gz;)
-sha256sums=('d52ecbcb445410ab13085862ab18e5331674f131ac5f441313e5e7d605bc2789')
-
-prepare() {
-cp -a "$pkgbase-$pkgver" "${pkgbase/python/python2}-$pkgver"
-}
-
-build() {
-cd "$srcdir/$pkgbase-$pkgver"
-   python setup.py build
-
-   cd "$srcdir/${pkgbase/python/python2}-$pkgver"
-   python2 setup.py build
-}
-
-package_python-gflags() {
-depends=('python')
-   cd "$pkgbase-$pkgver"
-   python setup.py install --root=${pkgdir}
-chmod +x "$pkgdir/usr/bin/gflags2man.py"
-   #chmod +r ${pkgdir}/* -R
-   #install -dm755 ${pkgdir}/usr/share/licenses/${pkgname}
-   install -Dm644 AUTHORS "$pkgdir/usr/share/licenses/$pkgbase/AUTHORS"
-   install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgbase/COPYING"
-}
-
-package_python2-gflags() {
-depends=('python2')
-   cd ${pkgbase/python/python2}-${pkgver}
-find -name "*.py" -exec sed -e 's/env python/&2/' -i {} \;
-   python2 setup.py install --root=${pkgdir}
-mv "$pkgdir/usr/bin/gflags2man.py" "$pkgdir/usr/bin/gflags2man.py2"
-chmod +x "$pkgdir/usr/bin/gflags2man.py2"
-   #chmod +r ${pkgdir}/* -R
-   #install -dm755 ${pkgdir}/usr/share/licenses/${pkgname}
-   install -Dm644 AUTHORS 
"$pkgdir/usr/share/licenses/${pkgbase/python/python2}/AUTHORS"
-   install -Dm644 COPYING 
"$pkgdir/usr/share/licenses/${pkgbase/python/python2}/COPYING"
-}
-

Copied: python-gflags/repos/community-any/PKGBUILD (from rev 189184, 
python-gflags/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-09-12 07:24:39 UTC (rev 189185)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: BlackEagle < ike DOT devolder AT gmail DOT com >
+pkgbase=python-gflags
+pkgname=('python-gflags' 'python2-gflags')
+pkgver=3.0.7
+pkgrel=1
+pkgdesc="Commandline flags module for Python"
+arch=('any')
+url="https://github.com/google/python-gflags;
+license=('BSD')
+makedepends=('python2-setuptools' 'python-setuptools')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/google/$pkgbase/archive/$pkgver.tar.gz;)
+sha256sums=('04b1c1481e90444a4a4b4a10cd15a4edc3936458f56e15254fc05aa0563e590a')
+
+prepare() {
+cp -a "$pkgbase-$pkgver" "${pkgbase/python/python2}-$pkgver"
+}
+
+build() {
+cd "$srcdir/$pkgbase-$pkgver"
+   python setup.py build
+
+   cd "$srcdir/${pkgbase/python/python2}-$pkgver"
+   python2 setup.py build
+}
+
+package_python-gflags() {
+depends=('python')
+   cd "$pkgbase-$pkgver"
+   python setup.py install --root=${pkgdir}
+chmod +x "$pkgdir/usr/bin/gflags2man.py"
+   #chmod +r ${pkgdir}/* -R
+   #install -dm755 ${pkgdir}/usr/share/licenses/${pkgname}
+   install -Dm644 AUTHORS "$pkgdir/usr/share/licenses/$pkgbase/AUTHORS"
+   install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgbase/COPYING"
+}
+
+package_python2-gflags() {
+depends=('python2')
+   cd ${pkgbase/python/python2}-${pkgver}
+find -name "*.py" -exec sed -e 's/env python/&2/' -i {} \;
+   python2 setup.py install --root=${pkgdir}
+mv "$pkgdir/usr/bin/gflags2man.py" "$pkgdir/usr/bin/gflags2man.py2"
+chmod +x "$pkgdir/usr/bin/gflags2man.py2"
+   #chmod +r ${pkgdir}/* -R
+   #install -dm755 ${pkgdir}/usr/share/licenses/${pkgname}
+   install -Dm644 AUTHORS 
"$pkgdir/usr/share/licenses/${pkgbase/python/python2}/AUTHORS"
+   install -Dm644 COPYING 
"$pkgdir/usr/share/licenses/${pkgbase/python/python2}/COPYING"
+}
+


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

2016-09-12 Thread Ike Devolder
Date: Monday, September 12, 2016 @ 07:24:30
  Author: idevolder
Revision: 189184

upgpkg: python-gflags 3.0.7-1

Modified:
  python-gflags/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-12 07:23:28 UTC (rev 189183)
+++ PKGBUILD2016-09-12 07:24:30 UTC (rev 189184)
@@ -2,7 +2,7 @@
 # Maintainer: BlackEagle < ike DOT devolder AT gmail DOT com >
 pkgbase=python-gflags
 pkgname=('python-gflags' 'python2-gflags')
-pkgver=3.0.6
+pkgver=3.0.7
 pkgrel=1
 pkgdesc="Commandline flags module for Python"
 arch=('any')
@@ -10,7 +10,7 @@
 license=('BSD')
 makedepends=('python2-setuptools' 'python-setuptools')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/google/$pkgbase/archive/$pkgver.tar.gz;)
-sha256sums=('d52ecbcb445410ab13085862ab18e5331674f131ac5f441313e5e7d605bc2789')
+sha256sums=('04b1c1481e90444a4a4b4a10cd15a4edc3936458f56e15254fc05aa0563e590a')
 
 prepare() {
 cp -a "$pkgbase-$pkgver" "${pkgbase/python/python2}-$pkgver"


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

2016-09-12 Thread Ike Devolder
Date: Monday, September 12, 2016 @ 07:23:28
  Author: idevolder
Revision: 189183

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-09-12 07:23:15 UTC (rev 189182)
+++ community-i686/PKGBUILD 2016-09-12 07:23:28 UTC (rev 189183)
@@ -1,41 +0,0 @@
-# Maintainer: BlackEagle 
-
-pkgname=libcrossguid
-_gitname=libcrossguid
-_commit=8f399e8
-pkgver=20150803.$_commit
-pkgrel=1
-pkgdesc="Lightweight cross platform C++ GUID/UUID library"
-arch=('i686' 'x86_64')
-url="https://github.com/graeme-hill/crossguid;
-license=('MIT')
-makedepends=('git')
-provides=('libcrossguid')
-conflicts=('libcrossguid')
-source=("$_gitname::git+https://github.com/graeme-hill/crossguid.git#commit=$_commit;)
-md5sums=('SKIP')
-
-build() {
-cd libcrossguid
-
-g++ -c guid.cpp -o guid.o $CXXFLAGS -std=c++11 -DGUID_LIBUUID
-ar rvs libcrossguid.a guid.o
-
-g++ -c test.cpp -o test.o $CXXFLAGS  -std=c++11
-g++ -c testmain.cpp -o testmain.o $CXXFLAGS
-g++ test.o guid.o testmain.o -o test $CXXFLAGS -luuid
-chmod +x test
-}
-
-check(){
-cd libcrossguid
-./test
-}
-
-package() {
-cd libcrossguid
-install -D -m644 libcrossguid.a "${pkgdir}/usr/lib/libcrossguid.a"
-install -D -m644 guid.h "${pkgdir}/usr/include/guid.h"
-install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-

Copied: libcrossguid/repos/community-i686/PKGBUILD (from rev 189182, 
libcrossguid/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-09-12 07:23:28 UTC (rev 189183)
@@ -0,0 +1,41 @@
+# Maintainer: BlackEagle 
+
+pkgname=libcrossguid
+_gitname=libcrossguid
+_commit=fef89a4
+pkgver=20160907.fef89a4
+pkgrel=1
+pkgdesc="Lightweight cross platform C++ GUID/UUID library"
+arch=('i686' 'x86_64')
+url="https://github.com/graeme-hill/crossguid;
+license=('MIT')
+makedepends=('git')
+provides=('libcrossguid')
+conflicts=('libcrossguid')
+source=("$_gitname::git+https://github.com/graeme-hill/crossguid.git#commit=$_commit;)
+md5sums=('SKIP')
+
+build() {
+cd libcrossguid
+
+g++ -c guid.cpp -o guid.o $CXXFLAGS -std=c++11 -DGUID_LIBUUID
+ar rvs libcrossguid.a guid.o
+
+g++ -c test.cpp -o test.o $CXXFLAGS  -std=c++11
+g++ -c testmain.cpp -o testmain.o $CXXFLAGS
+g++ test.o guid.o testmain.o -o test $CXXFLAGS -luuid
+chmod +x test
+}
+
+check(){
+cd libcrossguid
+./test
+}
+
+package() {
+cd libcrossguid
+install -D -m644 libcrossguid.a "${pkgdir}/usr/lib/libcrossguid.a"
+install -D -m644 guid.h "${pkgdir}/usr/include/guid.h"
+install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-09-12 07:23:15 UTC (rev 189182)
+++ community-x86_64/PKGBUILD   2016-09-12 07:23:28 UTC (rev 189183)
@@ -1,41 +0,0 @@
-# Maintainer: BlackEagle 
-
-pkgname=libcrossguid
-_gitname=libcrossguid
-_commit=8f399e8
-pkgver=20150803.$_commit
-pkgrel=1
-pkgdesc="Lightweight cross platform C++ GUID/UUID library"
-arch=('i686' 'x86_64')
-url="https://github.com/graeme-hill/crossguid;
-license=('MIT')
-makedepends=('git')
-provides=('libcrossguid')
-conflicts=('libcrossguid')
-source=("$_gitname::git+https://github.com/graeme-hill/crossguid.git#commit=$_commit;)
-md5sums=('SKIP')
-
-build() {
-cd libcrossguid
-
-g++ -c guid.cpp -o guid.o $CXXFLAGS -std=c++11 -DGUID_LIBUUID
-ar rvs libcrossguid.a guid.o
-
-g++ -c test.cpp -o test.o $CXXFLAGS  -std=c++11
-g++ -c testmain.cpp -o testmain.o $CXXFLAGS
-g++ test.o guid.o testmain.o -o test $CXXFLAGS -luuid
-chmod +x test
-}
-
-check(){
-cd libcrossguid
-./test
-}
-
-package() {
-cd libcrossguid
-install -D -m644 libcrossguid.a "${pkgdir}/usr/lib/libcrossguid.a"
-install -D -m644 guid.h "${pkgdir}/usr/include/guid.h"
-install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-

Copied: libcrossguid/repos/community-x86_64/PKGBUILD (from rev 189182, 
libcrossguid/trunk/PKGBUILD)
===
--- 

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

2016-09-12 Thread Ike Devolder
Date: Monday, September 12, 2016 @ 07:23:15
  Author: idevolder
Revision: 189182

upgpkg: libcrossguid 20160907.fef89a4-1

Modified:
  libcrossguid/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-12 07:20:52 UTC (rev 189181)
+++ PKGBUILD2016-09-12 07:23:15 UTC (rev 189182)
@@ -2,8 +2,8 @@
 
 pkgname=libcrossguid
 _gitname=libcrossguid
-_commit=8f399e8
-pkgver=20150803.$_commit
+_commit=fef89a4
+pkgver=20160907.fef89a4
 pkgrel=1
 pkgdesc="Lightweight cross platform C++ GUID/UUID library"
 arch=('i686' 'x86_64')


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

2016-09-12 Thread Ike Devolder
Date: Monday, September 12, 2016 @ 07:20:52
  Author: idevolder
Revision: 189181

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

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

+
 /PKGBUILD  |  164 +++
 /doublecmd.install |   68 ++
 community-i686/PKGBUILD|   82 -
 community-i686/doublecmd.install   |   34 ---
 community-x86_64/PKGBUILD  |   82 -
 community-x86_64/doublecmd.install |   34 ---
 6 files changed, 232 insertions(+), 232 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-09-12 07:20:38 UTC (rev 189180)
+++ community-i686/PKGBUILD 2016-09-12 07:20:52 UTC (rev 189181)
@@ -1,82 +0,0 @@
-# vim:set ft=sh:
-# $Id$
-# Maintainer: BlackIkeEagle 
-# Contributor: (sirocco AT ngs.ru)
-
-pkgbase=doublecmd
-pkgname=('doublecmd-gtk2' 'doublecmd-qt')
-pkgver=0.7.4
-_helpver=0.6.0
-pkgrel=1
-url="http://doublecmd.sourceforge.net/;
-arch=('i686' 'x86_64')
-license=('GPL')
-provides=("$pkgbase")
-makedepends=('lazarus' 'qt4pas' 'gtk2')
-optdepends=(
-   'lua51: scripting'
-   'p7zip: support for 7zip archives'
-   'libunrar: support for rar archives'
-)
-source=(
-   
"http://downloads.sourceforge.net/project/$pkgbase/Double%20Commander%20Source/$pkgbase-$pkgver-src.tar.gz;
-   
"http://downloads.sourceforge.net/project/$pkgbase/Double%20Commander%20Source/$pkgbase-help-$_helpver-src.tar.gz;
-   "http://www.herecura.be/files/lazarus-20140321-2.tar.gz;
-)
-sha256sums=('ae9cf126a4ce9998ef578896ffb26d7def3721483cdde01c9bef17073537884b'
-'d50a58f0e8c25c07720f2afd987213f330dfce268e2aef349d1da3de2eef1c39'
-'16560ad7403ffbee1800384768828e1fad924d03068c6248b68a78c393fc4e20')
-
-prepare() {
-   cd "$pkgbase-$pkgver"
-   sed -e 's/LIB_SUFFIX=.*/LIB_SUFFIX=/g' -i install/linux/install.sh
-
-   cd "$srcdir"
-
-   cp -a "$pkgbase-$pkgver" "$pkgbase-gtk"
-   cp -a "$pkgbase-$pkgver" "$pkgbase-qt"
-}
-
-build() {
-   msg2 'build gtk'
-   gtkdir="$srcdir/$pkgbase-gtk"
-   cd "$gtkdir"
-   bsdtar -zxf "$srcdir/lazarus-20140321-2.tar.gz"
-   sed -e "s/\\(export\\ lazbuild=\\).*/\\1\"\$(which lazbuild) 
--primary-config-path=${gtkdir//\//\\\/}\/lazarus\/lazarus-$CARCH\"/" -i 
build.sh
-   sed -e "s/%%SRCDIR%%/${gtkdir//\//\\\/}/g" -i lazarus/packagefiles.xml
-   ./build.sh beta gtk2
-
-   msg2 'build qt'
-   qtdir="$srcdir/$pkgbase-qt"
-   cd "$qtdir"
-   bsdtar -zxf "$srcdir/lazarus-20140321-2.tar.gz"
-   sed -e "s/\\(export\\ lazbuild=\\).*/\\1\"\$(which lazbuild) 
--primary-config-path=${qtdir//\//\\\/}\/lazarus\/lazarus-$CARCH\"/" -i build.sh
-   sed -e "s/%%SRCDIR%%/${qtdir//\//\\\/}/g" -i lazarus/packagefiles.xml
-   ./build.sh beta qt
-
-}
-
-package_doublecmd-gtk2() {
-   pkgdesc="twin-panel (commander-style) file manager (GTK)"
-   depends=('gtk2' 'desktop-file-utils' 'hicolor-icon-theme' 
'shared-mime-info')
-   conflicts=('doublecmd-qt')
-   cd "$srcdir/$pkgbase-gtk"
-   ./install/linux/install.sh --install-prefix="$pkgdir"
-
-   # install doc
-   cd "$srcdir/$pkgbase-help-$_helpver"
-   cp -a * "$pkgdir/usr/share/$pkgbase/doc/"
-}
-
-package_doublecmd-qt() {
-   pkgdesc="twin-panel (commander-style) file manager (QT)"
-   depends=('qt4pas' 'desktop-file-utils' 'hicolor-icon-theme' 
'shared-mime-info')
-   conflicts=('doublecmd-gtk2')
-   cd "$srcdir/$pkgbase-qt"
-   ./install/linux/install.sh --install-prefix="$pkgdir"
-
-   # install doc
-   cd "$srcdir/$pkgbase-help-$_helpver"
-   cp -a * "$pkgdir/usr/share/$pkgbase/doc/"
-}
-

Copied: doublecmd/repos/community-i686/PKGBUILD (from rev 189180, 
doublecmd/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-09-12 07:20:52 UTC (rev 189181)
@@ -0,0 +1,82 @@
+# vim:set ft=sh:
+# $Id$
+# Maintainer: BlackIkeEagle 
+# Contributor: (sirocco AT ngs.ru)
+
+pkgbase=doublecmd
+pkgname=('doublecmd-gtk2' 'doublecmd-qt')
+pkgver=0.7.5
+_helpver=0.6.0
+pkgrel=1
+url="http://doublecmd.sourceforge.net/;
+arch=('i686' 

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

2016-09-12 Thread Ike Devolder
Date: Monday, September 12, 2016 @ 07:20:38
  Author: idevolder
Revision: 189180

upgpkg: doublecmd 0.7.5-1

Modified:
  doublecmd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-11 20:11:52 UTC (rev 189179)
+++ PKGBUILD2016-09-12 07:20:38 UTC (rev 189180)
@@ -5,7 +5,7 @@
 
 pkgbase=doublecmd
 pkgname=('doublecmd-gtk2' 'doublecmd-qt')
-pkgver=0.7.4
+pkgver=0.7.5
 _helpver=0.6.0
 pkgrel=1
 url="http://doublecmd.sourceforge.net/;
@@ -23,7 +23,7 @@

"http://downloads.sourceforge.net/project/$pkgbase/Double%20Commander%20Source/$pkgbase-help-$_helpver-src.tar.gz;
"http://www.herecura.be/files/lazarus-20140321-2.tar.gz;
 )
-sha256sums=('ae9cf126a4ce9998ef578896ffb26d7def3721483cdde01c9bef17073537884b'
+sha256sums=('b92fcd6a29cb0ed4eedb4e209c44fc6614f1b3455e0d9a9721be21f5b6bf725b'
 'd50a58f0e8c25c07720f2afd987213f330dfce268e2aef349d1da3de2eef1c39'
 '16560ad7403ffbee1800384768828e1fad924d03068c6248b68a78c393fc4e20')