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

2019-02-11 Thread Morten Linderud via arch-commits
Date: Monday, February 11, 2019 @ 13:21:48
  Author: foxboron
Revision: 431737

upgpkg: runc 1.0.0rc6-1

Added:
  runc/trunk/0001-nsenter-clone-proc-self-exe-to-avoid-exposing-host-b.patch
Modified:
  runc/trunk/PKGBUILD

-+
 0001-nsenter-clone-proc-self-exe-to-avoid-exposing-host-b.patch |  304 
++
 PKGBUILD|   24 
 2 files changed, 321 insertions(+), 7 deletions(-)

Added: 0001-nsenter-clone-proc-self-exe-to-avoid-exposing-host-b.patch
===
--- 0001-nsenter-clone-proc-self-exe-to-avoid-exposing-host-b.patch 
(rev 0)
+++ 0001-nsenter-clone-proc-self-exe-to-avoid-exposing-host-b.patch 
2019-02-11 13:21:48 UTC (rev 431737)
@@ -0,0 +1,304 @@
+From 604a8f8120ef128c0a5bc778e71909eeb0906842 Mon Sep 17 00:00:00 2001
+From: Aleksa Sarai 
+Date: Wed, 9 Jan 2019 13:40:01 +1100
+Subject: [PATCH] nsenter: clone /proc/self/exe to avoid exposing host binary
+ to container
+
+There are quite a few circumstances where /proc/self/exe pointing to a
+pretty important container binary is a _bad_ thing, so to avoid this we
+have to make a copy (preferably doing self-clean-up and not being
+writeable).
+
+As a hotfix we require memfd_create(2), but we can always extend this to
+use a scratch MNT_DETACH overlayfs or tmpfs. The main downside to this
+approach is no page-cache sharing for the runc binary (which overlayfs
+would give us) but this is far less complicated.
+
+This is only done during nsenter so that it happens transparently to the
+Go code, and any libcontainer users benefit from it. This also makes
+ExtraFiles and --preserve-fds handling trivial (because we don't need to
+worry about it).
+
+Fixes: CVE-2019-5736
+Signed-off-by: Aleksa Sarai 
+---
+ libcontainer/nsenter/cloned_binary.c | 236 +++
+ libcontainer/nsenter/nsexec.c|  11 ++
+ 2 files changed, 247 insertions(+)
+ create mode 100644 libcontainer/nsenter/cloned_binary.c
+
+diff --git a/libcontainer/nsenter/cloned_binary.c 
b/libcontainer/nsenter/cloned_binary.c
+new file mode 100644
+index ..ec383c173dd2
+--- /dev/null
 b/libcontainer/nsenter/cloned_binary.c
+@@ -0,0 +1,236 @@
++#define _GNU_SOURCE
++#include 
++#include 
++#include 
++#include 
++#include 
++#include 
++#include 
++
++#include 
++#include 
++#include 
++#include 
++#include 
++#include 
++
++#include 
++#include 
++
++#define MEMFD_COMMENT "runc_cloned:/proc/self/exe"
++#define MEMFD_LNKNAME "/memfd:" MEMFD_COMMENT " (deleted)"
++
++/* Use our own wrapper for memfd_create. */
++#if !defined(SYS_memfd_create) && defined(__NR_memfd_create)
++#  define SYS_memfd_create __NR_memfd_create
++#endif
++#ifndef SYS_memfd_create
++#  error "memfd_create(2) syscall not supported by this glibc version"
++#endif
++int memfd_create(const char *name, unsigned int flags)
++{
++  return syscall(SYS_memfd_create, name, flags);
++}
++
++/* This comes directly from . */
++#ifndef F_LINUX_SPECIFIC_BASE
++# define F_LINUX_SPECIFIC_BASE 1024
++#endif
++#ifndef F_ADD_SEALS
++# define F_ADD_SEALS (F_LINUX_SPECIFIC_BASE + 9)
++# define F_GET_SEALS (F_LINUX_SPECIFIC_BASE + 10)
++#endif
++#ifndef F_SEAL_SEAL
++# define F_SEAL_SEAL   0x0001 /* prevent further seals from being set */
++# define F_SEAL_SHRINK 0x0002 /* prevent file from shrinking */
++# define F_SEAL_GROW   0x0004 /* prevent file from growing */
++# define F_SEAL_WRITE  0x0008 /* prevent writes */
++#endif
++
++/*
++ * Verify whether we are currently in a self-cloned program. It's not really
++ * possible to trivially identify a memfd compared to a regular tmpfs file, so
++ * the best we can do is to check whether the readlink(2) looks okay and that
++ * it is on a tmpfs.
++ */
++static int is_self_cloned(void)
++{
++  struct statfs statfsbuf = {0};
++  char linkname[PATH_MAX + 1] = {0};
++
++  if (statfs("/proc/self/exe", ) < 0)
++  return -1;
++  if (readlink("/proc/self/exe", linkname, PATH_MAX) < 0)
++  return -1;
++
++  return statfsbuf.f_type == TMPFS_MAGIC &&
++  !strncmp(linkname, MEMFD_LNKNAME, PATH_MAX);
++}
++
++/*
++ * Basic wrapper around mmap(2) that gives you the file length so you can
++ * safely treat it as an ordinary buffer. Only gives you read access.
++ */
++static char *read_file(char *path, size_t *length)
++{
++  int fd;
++  char buf[4096], *copy = NULL;
++
++  if (!length)
++  goto err;
++  *length = 0;
++
++  fd = open(path, O_RDONLY|O_CLOEXEC);
++  if (fd < 0)
++  goto err_free;
++
++  for (;;) {
++  int n;
++  char *old = copy;
++
++  n = read(fd, buf, sizeof(buf));
++  if (n < 0)
++  goto err_fd;
++  if (!n)
++  break;
++
++  do {
++   

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

2019-01-30 Thread Morten Linderud via arch-commits
Date: Wednesday, January 30, 2019 @ 22:59:53
  Author: foxboron
Revision: 428683

archrelease: copy trunk to community-x86_64

Added:
  go/repos/community-x86_64/PKGBUILD
(from rev 428682, go/trunk/PKGBUILD)
  go/repos/community-x86_64/default-buildmode-pie.patch
(from rev 428682, go/trunk/default-buildmode-pie.patch)
Deleted:
  go/repos/community-x86_64/PKGBUILD
  go/repos/community-x86_64/default-buildmode-pie.patch

-+
 PKGBUILD|  220 +-
 default-buildmode-pie.patch |   28 ++---
 2 files changed, 124 insertions(+), 124 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-30 22:59:42 UTC (rev 428682)
+++ PKGBUILD2019-01-30 22:59:53 UTC (rev 428683)
@@ -1,110 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Maintainer: Bartłomiej Piotrowski 
-# Maintainer: Morten Linderud 
-# Contributor: Pierre Neidhardt 
-# Contributor: Vesa Kaihlavirta 
-# Contributor: Rémy Oudompheng 
-# Contributor: Andres Perera 
-# Contributor: Matthew Bauer 
-# Contributor: Christian Himpel 
-# Contributor: Mike Rosset 
-# Contributor: Daniel YC Lin 
-# Contributor: John Luebs 
-
-pkgbase=go
-pkgname=(go go-pie)
-epoch=2
-pkgver=1.11.5
-pkgrel=2
-arch=(x86_64)
-url='https://golang.org/'
-license=(BSD)
-makedepends=(git go)
-source=(https://storage.googleapis.com/golang/go$pkgver.src.tar.gz
-default-buildmode-pie.patch)
-sha256sums=('bc1ef02bb1668835db1390a2e478dcbccb5dd16911691af9d75184bbe5aa943e'
-'9d2f0d201d4e002d74f548cc82bd131139bab5dd62191004c71dd430fdc1666d')
-
-export GOOS=linux
-case "$CARCH" in
-  x86_64) export GOARCH=amd64 ;;
-esac
-export GOROOT_FINAL=/usr/lib/go
-export GOROOT_BOOTSTRAP=/usr/lib/go
-export GOCACHE=off
-
-prepare() {
-  cp -r $pkgbase $pkgbase-pie
-
-  cd $pkgbase-pie
-  patch -p1 -i "$srcdir/default-buildmode-pie.patch"
-}
-
-build() {
-  export GOPATH="$srcdir/"
-
-  for _pkgname in ${pkgname[@]}; do
-export GOROOT="$srcdir/$_pkgname"
-export GOBIN="$GOROOT/bin"
-
-cd "$srcdir/$_pkgname/src"
-./make.bash --no-clean -v
-
-PATH="$GOBIN:$PATH" go install -v -buildmode=shared std
-PATH="$GOBIN:$PATH" go install -v -race std
-  done
-}
-
-check() {
-  # Run test suite only for unpatched Go as it expects non-PIE ldBuildmode
-  export GOROOT="$srcdir/$pkgbase"
-  export GOBIN="$GOROOT/bin"
-  export PATH="$srcdir/$pkgbase/bin:$PATH"
-  export GO_TEST_TIMEOUT_SCALE=2
-
-  cd $pkgbase/src
-  ./run.bash --no-rebuild -v -v -v -k 
-}
-
-_package() {
-  options=(!strip staticlibs)
-  cd "$srcdir/$1"
-
-  install -d "$pkgdir/usr/bin" "$pkgdir/usr/lib/go" "$pkgdir/usr/share/doc/go"
-  cp -a bin pkg src lib misc api "$pkgdir/usr/lib/go"
-  cp -r doc/* "$pkgdir/usr/share/doc/go"
-
-  ln -sf /usr/lib/go/bin/go "$pkgdir/usr/bin/go"
-  ln -sf /usr/lib/go/bin/gofmt "$pkgdir/usr/bin/gofmt"
-  ln -sf /usr/share/doc/go "$pkgdir/usr/lib/go/doc"
-
-  install -Dm644 VERSION "$pkgdir/usr/lib/go/VERSION"
-
-  rm -rf "$pkgdir/usr/lib/go/pkg/bootstrap" "$pkgdir/usr/lib/go/pkg/tool/*/api"
-
-  # TODO: Figure out if really needed
-  rm -rf "$pkgdir"/usr/lib/go/pkg/obj/go-build/*
-
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$1/LICENSE"
-}
-
-package_go() {
-  pkgdesc='Core compiler tools for the Go programming language'
-
-  _package $pkgname
-}
-
-package_go-pie() {
-  pkgdesc='Core compiler tools for the Go programming language (with PIE 
enabled by default)'
-  provides=(go)
-  conflicts=(go)
-
-  _package $pkgname
-
-  # linux_amd64 is essentially the content of linux_amd64_shared, however 
there might
-  # be cases where the user could generate the _shared directory as it's 
missing in go-pie.
-  # Make sure it exists without rebuilding std with -buildmode=pie.
-  cp -a "$pkgdir/usr/lib/go/pkg/linux_amd64/" 
"$pkgdir/usr/lib/go/pkg/linux_amd64_shared"
-}
-
-# vim: ts=2 sw=2 et

Copied: go/repos/community-x86_64/PKGBUILD (from rev 428682, go/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-30 22:59:53 UTC (rev 428683)
@@ -0,0 +1,110 @@
+# Maintainer: Alexander F. Rødseth 
+# Maintainer: Bartłomiej Piotrowski 
+# Maintainer: Morten Linderud 
+# Contributor: Pierre Neidhardt 
+# Contributor: Vesa Kaihlavirta 
+# Contributor: Rémy Oudompheng 
+# Contributor: Andres Perera 
+# Contributor: Matthew Bauer 
+# Contributor: Christian Himpel 
+# Contributor: Mike Rosset 
+# Contributor: Daniel YC Lin 
+# Contributor: John Luebs 
+
+pkgbase=go
+pkgname=(go go-pie)
+epoch=2
+pkgver=1.11.5
+pkgrel=3
+arch=(x86_64)
+url='https://golang.org/'
+license=(BSD)
+makedepends=(git go)
+source=(https://storage.googleapis.com/golang/go$pkgver.src.tar.gz
+default-buildmode-pie.patch)
+sha256sums=('bc1ef02bb1668835db1390a2e478dcbccb5dd16911691af9d75184bbe5aa943e'
+

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

2019-01-30 Thread Morten Linderud via arch-commits
Date: Wednesday, January 30, 2019 @ 22:59:42
  Author: foxboron
Revision: 428682

upgpkg: go 2:1.11.5-3

Modified:
  go/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-30 21:50:06 UTC (rev 428681)
+++ PKGBUILD2019-01-30 22:59:42 UTC (rev 428682)
@@ -15,7 +15,7 @@
 pkgname=(go go-pie)
 epoch=2
 pkgver=1.11.5
-pkgrel=2
+pkgrel=3
 arch=(x86_64)
 url='https://golang.org/'
 license=(BSD)
@@ -71,7 +71,7 @@
   cd "$srcdir/$1"
 
   install -d "$pkgdir/usr/bin" "$pkgdir/usr/lib/go" "$pkgdir/usr/share/doc/go"
-  cp -a bin pkg src lib misc api "$pkgdir/usr/lib/go"
+  cp -a bin pkg src lib misc api test "$pkgdir/usr/lib/go"
   cp -r doc/* "$pkgdir/usr/share/doc/go"
 
   ln -sf /usr/lib/go/bin/go "$pkgdir/usr/bin/go"


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

2019-01-29 Thread Morten Linderud via arch-commits
Date: Tuesday, January 29, 2019 @ 21:45:22
  Author: foxboron
Revision: 428472

archrelease: copy trunk to community-x86_64

Added:
  i3-gaps/repos/community-x86_64/PKGBUILD
(from rev 428471, i3-gaps/trunk/PKGBUILD)
Deleted:
  i3-gaps/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-29 21:45:07 UTC (rev 428471)
+++ PKGBUILD2019-01-29 21:45:22 UTC (rev 428472)
@@ -1,54 +0,0 @@
-# Maintainer: Morten Linderud 
-# Contributor: Ingo Bürk 
-
-pkgname=i3-gaps
-_pkgsourcename=i3
-pkgver=4.16
-pkgrel=1
-pkgdesc='A fork of i3wm tiling window manager with more features, including 
gaps'
-arch=('i686' 'x86_64')
-url='https://github.com/Airblader/i3'
-license=('BSD')
-provides=('i3-wm')
-conflicts=('i3-wm')
-groups=('i3')
-depends=('xcb-util-keysyms' 'xcb-util-wm' 'libev' 'yajl'
- 'startup-notification' 'pango' 'perl' 'xcb-util-cursor' 'xcb-util-xrm'
- 'libxkbcommon-x11')
-makedepends=('bison' 'flex' 'asciidoc' 'xmlto')
-optdepends=('rxvt-unicode: The terminal emulator used in the default config.'
-'dmenu: As menu.'
-'i3lock: For locking your screen.'
-'i3status: To display system information with a bar.'
-'perl-json-xs: For i3-save-tree'
-'perl-anyevent-i3: For i3-save-tree')
-backup=(etc/i3/config)
-options=('docs' '!strip')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/Airblader/i3/archive/${pkgver}.tar.gz;)
-sha256sums=('c933bc4c37cddd23d703f1453dcbab6e9cd7ed7f2c54177339eb88977c09a299')
-
-prepare(){
-  mkdir build
-  cd "${_pkgsourcename}-${pkgver}"
-
-  autoreconf -fvi
-}
-
-build() {
-  cd build
-
-  ../i3-$pkgver/configure \
---prefix=/usr \
---sysconfdir=/etc
-  make
-}
-
-package() {
-  cd build
-
-  make DESTDIR="${pkgdir}/" install
-  install -Dt "$pkgdir/usr/share/man/man1" -m644 man/*.1
-  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 ../i3-$pkgver/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: i3-gaps/repos/community-x86_64/PKGBUILD (from rev 428471, 
i3-gaps/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-29 21:45:22 UTC (rev 428472)
@@ -0,0 +1,54 @@
+# Maintainer: Morten Linderud 
+# Contributor: Ingo Bürk 
+
+pkgname=i3-gaps
+_pkgsourcename=i3
+pkgver=4.16.1
+pkgrel=1
+pkgdesc='A fork of i3wm tiling window manager with more features, including 
gaps'
+arch=('i686' 'x86_64')
+url='https://github.com/Airblader/i3'
+license=('BSD')
+provides=('i3-wm')
+conflicts=('i3-wm')
+groups=('i3')
+depends=('xcb-util-keysyms' 'xcb-util-wm' 'libev' 'yajl'
+ 'startup-notification' 'pango' 'perl' 'xcb-util-cursor' 'xcb-util-xrm'
+ 'libxkbcommon-x11')
+makedepends=('bison' 'flex' 'asciidoc' 'xmlto')
+optdepends=('rxvt-unicode: The terminal emulator used in the default config.'
+'dmenu: As menu.'
+'i3lock: For locking your screen.'
+'i3status: To display system information with a bar.'
+'perl-json-xs: For i3-save-tree'
+'perl-anyevent-i3: For i3-save-tree')
+backup=(etc/i3/config)
+options=('docs' '!strip')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/Airblader/i3/archive/${pkgver}.tar.gz;)
+sha256sums=('135c780e4733c3117238fd984ec5716a7feb9b6fea782fbc6b51bb862e6a7ecb')
+
+prepare(){
+  mkdir build
+  cd "${_pkgsourcename}-${pkgver}"
+
+  autoreconf -fvi
+}
+
+build() {
+  cd build
+
+  ../i3-$pkgver/configure \
+--prefix=/usr \
+--sysconfdir=/etc
+  make
+}
+
+package() {
+  cd build
+
+  make DESTDIR="${pkgdir}/" install
+  install -Dt "$pkgdir/usr/share/man/man1" -m644 man/*.1
+  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 ../i3-$pkgver/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


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

2019-01-29 Thread Morten Linderud via arch-commits
Date: Tuesday, January 29, 2019 @ 21:45:07
  Author: foxboron
Revision: 428471

upgpkg: i3-gaps 4.16.1-1

Modified:
  i3-gaps/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-29 21:40:09 UTC (rev 428470)
+++ PKGBUILD2019-01-29 21:45:07 UTC (rev 428471)
@@ -3,7 +3,7 @@
 
 pkgname=i3-gaps
 _pkgsourcename=i3
-pkgver=4.16
+pkgver=4.16.1
 pkgrel=1
 pkgdesc='A fork of i3wm tiling window manager with more features, including 
gaps'
 arch=('i686' 'x86_64')
@@ -25,7 +25,7 @@
 backup=(etc/i3/config)
 options=('docs' '!strip')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/Airblader/i3/archive/${pkgver}.tar.gz;)
-sha256sums=('c933bc4c37cddd23d703f1453dcbab6e9cd7ed7f2c54177339eb88977c09a299')
+sha256sums=('135c780e4733c3117238fd984ec5716a7feb9b6fea782fbc6b51bb862e6a7ecb')
 
 prepare(){
   mkdir build


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

2019-01-29 Thread Morten Linderud via arch-commits
Date: Tuesday, January 29, 2019 @ 21:39:58
  Author: foxboron
Revision: 428469

upgpkg: python-psycopg2 2.7.7-1

Modified:
  python-psycopg2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-29 21:39:13 UTC (rev 428468)
+++ PKGBUILD2019-01-29 21:39:58 UTC (rev 428469)
@@ -5,7 +5,7 @@
 
 pkgbase=python-psycopg2
 pkgname=('python-psycopg2' 'python2-psycopg2')
-pkgver=2.7.6.1
+pkgver=2.7.7
 pkgrel=1
 pkgdesc="A PostgreSQL database adapter for the Python programming language."
 arch=('x86_64')
@@ -15,7 +15,7 @@
  'python' 'python-setuptools' 'postgresql-libs')
 
source=(http://initd.org/psycopg/tarballs/PSYCOPG-2-7/psycopg2-$pkgver.tar.gz{,.asc})
 validpgpkeys=('8AD609956CF1899418E19A856013BD3AFCF957DE')
-sha256sums=('27959abe64ca1fc6d8cd11a71a1f421d8287831a3262bd4cacd43bbf43cc3c82'
+sha256sums=('f4526d078aedd5187d0508aa5f9a01eae6a48a470ed678406da94b4cd6524b7e'
 'SKIP')
 build(){
   cd "$srcdir/psycopg2-$pkgver"


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

2019-01-29 Thread Morten Linderud via arch-commits
Date: Tuesday, January 29, 2019 @ 21:40:09
  Author: foxboron
Revision: 428470

archrelease: copy trunk to community-x86_64

Added:
  python-psycopg2/repos/community-x86_64/PKGBUILD
(from rev 428469, python-psycopg2/trunk/PKGBUILD)
Deleted:
  python-psycopg2/repos/community-x86_64/ChangeLog
  python-psycopg2/repos/community-x86_64/PKGBUILD

---+
 ChangeLog |   25 ---
 PKGBUILD  |   78 ++--
 2 files changed, 39 insertions(+), 64 deletions(-)

Deleted: ChangeLog
===
--- ChangeLog   2019-01-29 21:39:58 UTC (rev 428469)
+++ ChangeLog   2019-01-29 21:40:09 UTC (rev 428470)
@@ -1,25 +0,0 @@
-
-2009-08-05  Douglas Soares de Andrade  
-
-   * Updated to: 2.0.11
-
-2009-03-24  Douglas Soares de Andrade  
-
-   * Updated for i686: 2.0.9
-
-2009-01-11  Douglas Soares de Andrade  
-
-   * Rebuilt for python 2.6
-
-2008-04-25  Mateusz Herych 
-
-   * Built for x86_64 - 2.0.7
-
-2008-04-23  Douglas Soares de Andrade  
-
-   * Built for i686 - 2.0.7
-
-2007-06-27  tardo  
-   
-   * Built for x86_64
-

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-29 21:39:58 UTC (rev 428469)
+++ PKGBUILD2019-01-29 21:40:09 UTC (rev 428470)
@@ -1,39 +0,0 @@
-# Maintainer: Morten Linderud  
-# Contributor: Sergej Pupykin 
-# Contributor: Angel 'angvp' Velasquez 
-# Contributor: Douglas Soares de Andrade 
-
-pkgbase=python-psycopg2
-pkgname=('python-psycopg2' 'python2-psycopg2')
-pkgver=2.7.6.1
-pkgrel=1
-pkgdesc="A PostgreSQL database adapter for the Python programming language."
-arch=('x86_64')
-url="http://initd.org/psycopg/;
-license=('LGPL3')
-makedepends=('python2' 'python2-setuptools' 
- 'python' 'python-setuptools' 'postgresql-libs')
-source=(http://initd.org/psycopg/tarballs/PSYCOPG-2-7/psycopg2-$pkgver.tar.gz{,.asc})
-validpgpkeys=('8AD609956CF1899418E19A856013BD3AFCF957DE')
-sha256sums=('27959abe64ca1fc6d8cd11a71a1f421d8287831a3262bd4cacd43bbf43cc3c82'
-'SKIP')
-build(){
-  cd "$srcdir/psycopg2-$pkgver"
-  sed -i 's/,PSYCOPG_DEBUG$//' setup.cfg
-  python setup.py build
-  python2 setup.py build
-}
-
-package_python-psycopg2() {
-  depends=('python' 'postgresql-libs')
-
-  cd "$srcdir/psycopg2-$pkgver"
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}
-
-package_python2-psycopg2() {
-  depends=('python2' 'postgresql-libs')
-
-  cd "$srcdir/psycopg2-$pkgver"
-  python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}

Copied: python-psycopg2/repos/community-x86_64/PKGBUILD (from rev 428469, 
python-psycopg2/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-29 21:40:09 UTC (rev 428470)
@@ -0,0 +1,39 @@
+# Maintainer: Morten Linderud  
+# Contributor: Sergej Pupykin 
+# Contributor: Angel 'angvp' Velasquez 
+# Contributor: Douglas Soares de Andrade 
+
+pkgbase=python-psycopg2
+pkgname=('python-psycopg2' 'python2-psycopg2')
+pkgver=2.7.7
+pkgrel=1
+pkgdesc="A PostgreSQL database adapter for the Python programming language."
+arch=('x86_64')
+url="http://initd.org/psycopg/;
+license=('LGPL3')
+makedepends=('python2' 'python2-setuptools' 
+ 'python' 'python-setuptools' 'postgresql-libs')
+source=(http://initd.org/psycopg/tarballs/PSYCOPG-2-7/psycopg2-$pkgver.tar.gz{,.asc})
+validpgpkeys=('8AD609956CF1899418E19A856013BD3AFCF957DE')
+sha256sums=('f4526d078aedd5187d0508aa5f9a01eae6a48a470ed678406da94b4cd6524b7e'
+'SKIP')
+build(){
+  cd "$srcdir/psycopg2-$pkgver"
+  sed -i 's/,PSYCOPG_DEBUG$//' setup.cfg
+  python setup.py build
+  python2 setup.py build
+}
+
+package_python-psycopg2() {
+  depends=('python' 'postgresql-libs')
+
+  cd "$srcdir/psycopg2-$pkgver"
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}
+
+package_python2-psycopg2() {
+  depends=('python2' 'postgresql-libs')
+
+  cd "$srcdir/psycopg2-$pkgver"
+  python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}


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

2019-01-29 Thread Morten Linderud via arch-commits
Date: Tuesday, January 29, 2019 @ 21:37:06
  Author: foxboron
Revision: 428466

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-29 21:36:56 UTC (rev 428465)
+++ PKGBUILD2019-01-29 21:37:06 UTC (rev 428466)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Morten Linderud 
-# Contributor: Sergej Pupykin 
-# Contributor: Jeff Mickey 
-# Contributor: Pappa 
-
-pkgbase=python-xlib
-pkgname=('python-xlib' 'python2-xlib')
-pkgver=0.23
-pkgrel=2
-pkgdesc="A fully functional X client library for Python programs"
-url="https://github.com/python-xlib/python-xlib;
-arch=('any')
-license=('LGPL')
-makedepends=('python2' 'python2-setuptools'
- 'python' 'python-setuptools')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/python-xlib/python-xlib/archive/$pkgver.tar.gz;)
-sha256sums=('a345fad5003adf6d06c296a6fb917b6b7cc21f17135f11418bf603e15bbde118')
-
-prepare() {
-  cp -a python-xlib-$pkgver{,-py2}
-}
-
-build(){
-  cd "$srcdir/python-xlib-$pkgver"
-  python setup.py build
-
-  cd "$srcdir/python-xlib-$pkgver-py2"
-  python2 setup.py build
-}
-
-package_python2-xlib() {
-  depends=('python2' 'python2-six')
-
-  cd "python-xlib-$pkgver-py2"
-  python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}
-
-package_python-xlib() {
-  depends=('python' 'python-six')
-
-  cd "python-xlib-$pkgver"
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}

Copied: python-xlib/repos/community-any/PKGBUILD (from rev 428465, 
python-xlib/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-29 21:37:06 UTC (rev 428466)
@@ -0,0 +1,43 @@
+# Maintainer: Morten Linderud 
+# Contributor: Sergej Pupykin 
+# Contributor: Jeff Mickey 
+# Contributor: Pappa 
+
+pkgbase=python-xlib
+pkgname=('python-xlib' 'python2-xlib')
+pkgver=0.24
+pkgrel=1
+pkgdesc="A fully functional X client library for Python programs"
+url="https://github.com/python-xlib/python-xlib;
+arch=('any')
+license=('LGPL')
+makedepends=('python2' 'python2-setuptools-scm'
+ 'python' 'python-setuptools-scm')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/python-xlib/python-xlib/archive/$pkgver.tar.gz;)
+sha256sums=('837273fff5532e53cb63540eda55b0c3c55083e115eceda881057a744bd46276')
+
+prepare() {
+  cp -a python-xlib-$pkgver{,-py2}
+}
+
+build(){
+  cd "$srcdir/python-xlib-$pkgver"
+  python setup.py build
+
+  cd "$srcdir/python-xlib-$pkgver-py2"
+  python2 setup.py build
+}
+
+package_python2-xlib() {
+  depends=('python2' 'python2-six')
+
+  cd "python-xlib-$pkgver-py2"
+  python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}
+
+package_python-xlib() {
+  depends=('python' 'python-six')
+
+  cd "python-xlib-$pkgver"
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}


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

2019-01-29 Thread Morten Linderud via arch-commits
Date: Tuesday, January 29, 2019 @ 21:36:56
  Author: foxboron
Revision: 428465

upgpkg: python-xlib 0.24-1

Modified:
  python-xlib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-29 21:34:53 UTC (rev 428464)
+++ PKGBUILD2019-01-29 21:36:56 UTC (rev 428465)
@@ -5,8 +5,8 @@
 
 pkgbase=python-xlib
 pkgname=('python-xlib' 'python2-xlib')
-pkgver=0.23
-pkgrel=2
+pkgver=0.24
+pkgrel=1
 pkgdesc="A fully functional X client library for Python programs"
 url="https://github.com/python-xlib/python-xlib;
 arch=('any')
@@ -14,7 +14,7 @@
 makedepends=('python2' 'python2-setuptools-scm'
  'python' 'python-setuptools-scm')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/python-xlib/python-xlib/archive/$pkgver.tar.gz;)
-sha256sums=('a345fad5003adf6d06c296a6fb917b6b7cc21f17135f11418bf603e15bbde118')
+sha256sums=('837273fff5532e53cb63540eda55b0c3c55083e115eceda881057a744bd46276')
 
 prepare() {
   cp -a python-xlib-$pkgver{,-py2}


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

2019-01-29 Thread Morten Linderud via arch-commits
Date: Tuesday, January 29, 2019 @ 21:34:40
  Author: foxboron
Revision: 428463

upgpkg: font-awesome 5.7.0-1

Modified:
  font-awesome/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-29 21:32:46 UTC (rev 428462)
+++ PKGBUILD2019-01-29 21:34:40 UTC (rev 428463)
@@ -3,7 +3,7 @@
 
 pkgbase=font-awesome
 pkgname=(ttf-font-awesome otf-font-awesome)
-pkgver=5.6.3
+pkgver=5.7.0
 pkgrel=1
 pkgdesc="Iconic font designed for Bootstrap"
 url="http://fontawesome.com;
@@ -11,7 +11,7 @@
 arch=('any')
 depends=('fontconfig')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/FortAwesome/Font-Awesome/archive/$pkgver.tar.gz;)
-sha256sums=('3a162f9b878ab7e92b53ffd79c95e55c4f14b92ce770e1a967c933696ebc8f31')
+sha256sums=('b23e5b15fdbb5f2fe4d0f30a0e542d20b2ebc6254bb79f1a6accc15666a873f3')
 
 package_ttf-font-awesome() {
   cd "Font-Awesome-${pkgver}"


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

2019-01-29 Thread Morten Linderud via arch-commits
Date: Tuesday, January 29, 2019 @ 21:34:53
  Author: foxboron
Revision: 428464

archrelease: copy trunk to community-any

Added:
  font-awesome/repos/community-any/PKGBUILD
(from rev 428463, font-awesome/trunk/PKGBUILD)
Deleted:
  font-awesome/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-29 21:34:40 UTC (rev 428463)
+++ PKGBUILD2019-01-29 21:34:53 UTC (rev 428464)
@@ -1,28 +0,0 @@
-# Maintainer: Morten Linderud  
-# Contributor: Alad Wenter 

-
-pkgbase=font-awesome
-pkgname=(ttf-font-awesome otf-font-awesome)
-pkgver=5.6.3
-pkgrel=1
-pkgdesc="Iconic font designed for Bootstrap"
-url="http://fontawesome.com;
-license=('custom:OFL')
-arch=('any')
-depends=('fontconfig')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/FortAwesome/Font-Awesome/archive/$pkgver.tar.gz;)
-sha256sums=('3a162f9b878ab7e92b53ffd79c95e55c4f14b92ce770e1a967c933696ebc8f31')
-
-package_ttf-font-awesome() {
-  cd "Font-Awesome-${pkgver}"
-  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
-  install -d "$pkgdir/usr/share/fonts/TTF"
-  install -m644 ./webfonts/*.ttf "$pkgdir/usr/share/fonts/TTF"
-}
-
-package_otf-font-awesome() {
-  cd "Font-Awesome-${pkgver}"
-  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
-  install -d "$pkgdir/usr/share/fonts/OTF"
-  install -m644 ./otfs/*.otf "$pkgdir/usr/share/fonts/OTF"
-}

Copied: font-awesome/repos/community-any/PKGBUILD (from rev 428463, 
font-awesome/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-29 21:34:53 UTC (rev 428464)
@@ -0,0 +1,28 @@
+# Maintainer: Morten Linderud  
+# Contributor: Alad Wenter 

+
+pkgbase=font-awesome
+pkgname=(ttf-font-awesome otf-font-awesome)
+pkgver=5.7.0
+pkgrel=1
+pkgdesc="Iconic font designed for Bootstrap"
+url="http://fontawesome.com;
+license=('custom:OFL')
+arch=('any')
+depends=('fontconfig')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/FortAwesome/Font-Awesome/archive/$pkgver.tar.gz;)
+sha256sums=('b23e5b15fdbb5f2fe4d0f30a0e542d20b2ebc6254bb79f1a6accc15666a873f3')
+
+package_ttf-font-awesome() {
+  cd "Font-Awesome-${pkgver}"
+  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
+  install -d "$pkgdir/usr/share/fonts/TTF"
+  install -m644 ./webfonts/*.ttf "$pkgdir/usr/share/fonts/TTF"
+}
+
+package_otf-font-awesome() {
+  cd "Font-Awesome-${pkgver}"
+  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
+  install -d "$pkgdir/usr/share/fonts/OTF"
+  install -m644 ./otfs/*.otf "$pkgdir/usr/share/fonts/OTF"
+}


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

2019-01-27 Thread Morten Linderud via arch-commits
Date: Sunday, January 27, 2019 @ 16:25:59
  Author: foxboron
Revision: 428239

upgpkg: go 2:1.11.5-2

Modified:
  go/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-27 16:09:52 UTC (rev 428238)
+++ PKGBUILD2019-01-27 16:25:59 UTC (rev 428239)
@@ -15,7 +15,7 @@
 pkgname=(go go-pie)
 epoch=2
 pkgver=1.11.5
-pkgrel=1
+pkgrel=2
 arch=(x86_64)
 url='https://golang.org/'
 license=(BSD)
@@ -42,7 +42,6 @@
 
 build() {
   export GOPATH="$srcdir/"
-  export GO_GCFLAGS="-trimpath=$GOPATH"
 
   for _pkgname in ${pkgname[@]}; do
 export GOROOT="$srcdir/$_pkgname"
@@ -101,6 +100,11 @@
   conflicts=(go)
 
   _package $pkgname
+
+  # linux_amd64 is essentially the content of linux_amd64_shared, however 
there might
+  # be cases where the user could generate the _shared directory as it's 
missing in go-pie.
+  # Make sure it exists without rebuilding std with -buildmode=pie.
+  cp -a "$pkgdir/usr/lib/go/pkg/linux_amd64/" 
"$pkgdir/usr/lib/go/pkg/linux_amd64_shared"
 }
 
 # vim: ts=2 sw=2 et


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

2019-01-27 Thread Morten Linderud via arch-commits
Date: Sunday, January 27, 2019 @ 16:26:09
  Author: foxboron
Revision: 428240

archrelease: copy trunk to community-x86_64

Added:
  go/repos/community-x86_64/PKGBUILD
(from rev 428239, go/trunk/PKGBUILD)
  go/repos/community-x86_64/default-buildmode-pie.patch
(from rev 428239, go/trunk/default-buildmode-pie.patch)
Deleted:
  go/repos/community-x86_64/PKGBUILD
  go/repos/community-x86_64/default-buildmode-pie.patch

-+
 PKGBUILD|  216 +-
 default-buildmode-pie.patch |   28 ++---
 2 files changed, 124 insertions(+), 120 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-27 16:25:59 UTC (rev 428239)
+++ PKGBUILD2019-01-27 16:26:09 UTC (rev 428240)
@@ -1,106 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Maintainer: Bartłomiej Piotrowski 
-# Maintainer: Morten Linderud 
-# Contributor: Pierre Neidhardt 
-# Contributor: Vesa Kaihlavirta 
-# Contributor: Rémy Oudompheng 
-# Contributor: Andres Perera 
-# Contributor: Matthew Bauer 
-# Contributor: Christian Himpel 
-# Contributor: Mike Rosset 
-# Contributor: Daniel YC Lin 
-# Contributor: John Luebs 
-
-pkgbase=go
-pkgname=(go go-pie)
-epoch=2
-pkgver=1.11.5
-pkgrel=1
-arch=(x86_64)
-url='https://golang.org/'
-license=(BSD)
-makedepends=(git go)
-source=(https://storage.googleapis.com/golang/go$pkgver.src.tar.gz
-default-buildmode-pie.patch)
-sha256sums=('bc1ef02bb1668835db1390a2e478dcbccb5dd16911691af9d75184bbe5aa943e'
-'9d2f0d201d4e002d74f548cc82bd131139bab5dd62191004c71dd430fdc1666d')
-
-export GOOS=linux
-case "$CARCH" in
-  x86_64) export GOARCH=amd64 ;;
-esac
-export GOROOT_FINAL=/usr/lib/go
-export GOROOT_BOOTSTRAP=/usr/lib/go
-export GOCACHE=off
-
-prepare() {
-  cp -r $pkgbase $pkgbase-pie
-
-  cd $pkgbase-pie
-  patch -p1 -i "$srcdir/default-buildmode-pie.patch"
-}
-
-build() {
-  export GOPATH="$srcdir/"
-  export GO_GCFLAGS="-trimpath=$GOPATH"
-
-  for _pkgname in ${pkgname[@]}; do
-export GOROOT="$srcdir/$_pkgname"
-export GOBIN="$GOROOT/bin"
-
-cd "$srcdir/$_pkgname/src"
-./make.bash --no-clean -v
-
-PATH="$GOBIN:$PATH" go install -v -buildmode=shared std
-PATH="$GOBIN:$PATH" go install -v -race std
-  done
-}
-
-check() {
-  # Run test suite only for unpatched Go as it expects non-PIE ldBuildmode
-  export GOROOT="$srcdir/$pkgbase"
-  export GOBIN="$GOROOT/bin"
-  export PATH="$srcdir/$pkgbase/bin:$PATH"
-  export GO_TEST_TIMEOUT_SCALE=2
-
-  cd $pkgbase/src
-  ./run.bash --no-rebuild -v -v -v -k 
-}
-
-_package() {
-  options=(!strip staticlibs)
-  cd "$srcdir/$1"
-
-  install -d "$pkgdir/usr/bin" "$pkgdir/usr/lib/go" "$pkgdir/usr/share/doc/go"
-  cp -a bin pkg src lib misc api "$pkgdir/usr/lib/go"
-  cp -r doc/* "$pkgdir/usr/share/doc/go"
-
-  ln -sf /usr/lib/go/bin/go "$pkgdir/usr/bin/go"
-  ln -sf /usr/lib/go/bin/gofmt "$pkgdir/usr/bin/gofmt"
-  ln -sf /usr/share/doc/go "$pkgdir/usr/lib/go/doc"
-
-  install -Dm644 VERSION "$pkgdir/usr/lib/go/VERSION"
-
-  rm -rf "$pkgdir/usr/lib/go/pkg/bootstrap" "$pkgdir/usr/lib/go/pkg/tool/*/api"
-
-  # TODO: Figure out if really needed
-  rm -rf "$pkgdir"/usr/lib/go/pkg/obj/go-build/*
-
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$1/LICENSE"
-}
-
-package_go() {
-  pkgdesc='Core compiler tools for the Go programming language'
-
-  _package $pkgname
-}
-
-package_go-pie() {
-  pkgdesc='Core compiler tools for the Go programming language (with PIE 
enabled by default)'
-  provides=(go)
-  conflicts=(go)
-
-  _package $pkgname
-}
-
-# vim: ts=2 sw=2 et

Copied: go/repos/community-x86_64/PKGBUILD (from rev 428239, go/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-27 16:26:09 UTC (rev 428240)
@@ -0,0 +1,110 @@
+# Maintainer: Alexander F. Rødseth 
+# Maintainer: Bartłomiej Piotrowski 
+# Maintainer: Morten Linderud 
+# Contributor: Pierre Neidhardt 
+# Contributor: Vesa Kaihlavirta 
+# Contributor: Rémy Oudompheng 
+# Contributor: Andres Perera 
+# Contributor: Matthew Bauer 
+# Contributor: Christian Himpel 
+# Contributor: Mike Rosset 
+# Contributor: Daniel YC Lin 
+# Contributor: John Luebs 
+
+pkgbase=go
+pkgname=(go go-pie)
+epoch=2
+pkgver=1.11.5
+pkgrel=2
+arch=(x86_64)
+url='https://golang.org/'
+license=(BSD)
+makedepends=(git go)
+source=(https://storage.googleapis.com/golang/go$pkgver.src.tar.gz
+default-buildmode-pie.patch)
+sha256sums=('bc1ef02bb1668835db1390a2e478dcbccb5dd16911691af9d75184bbe5aa943e'
+'9d2f0d201d4e002d74f548cc82bd131139bab5dd62191004c71dd430fdc1666d')
+
+export GOOS=linux
+case "$CARCH" in
+  x86_64) export GOARCH=amd64 ;;
+esac
+export GOROOT_FINAL=/usr/lib/go
+export GOROOT_BOOTSTRAP=/usr/lib/go
+export GOCACHE=off
+
+prepare() {
+  cp -r $pkgbase $pkgbase-pie
+
+  cd $pkgbase-pie
+  patch -p1 -i 

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

2019-01-24 Thread Morten Linderud via arch-commits
Date: Thursday, January 24, 2019 @ 15:36:20
  Author: foxboron
Revision: 427545

archrelease: copy trunk to community-x86_64

Added:
  go/repos/community-x86_64/PKGBUILD
(from rev 427544, go/trunk/PKGBUILD)
  go/repos/community-x86_64/default-buildmode-pie.patch
(from rev 427544, go/trunk/default-buildmode-pie.patch)
Deleted:
  go/repos/community-x86_64/PKGBUILD
  go/repos/community-x86_64/default-buildmode-pie.patch

-+
 PKGBUILD|  211 +-
 default-buildmode-pie.patch |   28 ++---
 2 files changed, 120 insertions(+), 119 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-24 15:20:59 UTC (rev 427544)
+++ PKGBUILD2019-01-24 15:36:20 UTC (rev 427545)
@@ -1,105 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Maintainer: Bartłomiej Piotrowski 
-# Maintainer: Morten Linderud 
-# Contributor: Pierre Neidhardt 
-# Contributor: Vesa Kaihlavirta 
-# Contributor: Rémy Oudompheng 
-# Contributor: Andres Perera 
-# Contributor: Matthew Bauer 
-# Contributor: Christian Himpel 
-# Contributor: Mike Rosset 
-# Contributor: Daniel YC Lin 
-# Contributor: John Luebs 
-
-pkgbase=go
-pkgname=(go go-pie)
-epoch=2
-pkgver=1.11.4
-pkgrel=1
-arch=(x86_64)
-url='https://golang.org/'
-license=(BSD)
-makedepends=(git go)
-source=(https://storage.googleapis.com/golang/go$pkgver.src.tar.gz
-default-buildmode-pie.patch)
-sha256sums=('4cfd42720a6b1e79a8024895fa6607b69972e8e32446df76d6ce79801bbadb15'
-'9d2f0d201d4e002d74f548cc82bd131139bab5dd62191004c71dd430fdc1666d')
-
-export GOOS=linux
-case "$CARCH" in
-  x86_64) export GOARCH=amd64 ;;
-esac
-export GOROOT_FINAL=/usr/lib/go
-export GOROOT_BOOTSTRAP=/usr/lib/go
-export GOCACHE=off
-
-prepare() {
-  cp -r $pkgbase $pkgbase-pie
-
-  cd $pkgbase-pie
-  patch -p1 -i "$srcdir/default-buildmode-pie.patch"
-}
-
-build() {
-  export GOPATH="$srcdir/"
-
-  for _pkgname in ${pkgname[@]}; do
-export GOROOT="$srcdir/$_pkgname"
-export GOBIN="$GOROOT/bin"
-
-cd "$srcdir/$_pkgname/src"
-./make.bash --no-clean -v
-
-PATH="$GOBIN:$PATH" go install -v -buildmode=shared std
-PATH="$GOBIN:$PATH" go install -v -race std
-  done
-}
-
-check() {
-  # Run test suite only for unpatched Go as it expects non-PIE ldBuildmode
-  export GOROOT="$srcdir/$pkgbase"
-  export GOBIN="$GOROOT/bin"
-  export PATH="$srcdir/$pkgbase/bin:$PATH"
-  export GO_TEST_TIMEOUT_SCALE=2
-
-  cd $pkgbase/src
-  ./run.bash --no-rebuild -v -v -v -k 
-}
-
-_package() {
-  options=(!strip staticlibs)
-  cd "$srcdir/$1"
-
-  install -d "$pkgdir/usr/bin" "$pkgdir/usr/lib/go" "$pkgdir/usr/share/doc/go"
-  cp -a bin pkg src lib misc api "$pkgdir/usr/lib/go"
-  cp -r doc/* "$pkgdir/usr/share/doc/go"
-
-  ln -sf /usr/lib/go/bin/go "$pkgdir/usr/bin/go"
-  ln -sf /usr/lib/go/bin/gofmt "$pkgdir/usr/bin/gofmt"
-  ln -sf /usr/share/doc/go "$pkgdir/usr/lib/go/doc"
-
-  install -Dm644 VERSION "$pkgdir/usr/lib/go/VERSION"
-
-  rm -rf "$pkgdir/usr/lib/go/pkg/bootstrap" "$pkgdir/usr/lib/go/pkg/tool/*/api"
-
-  # TODO: Figure out if really needed
-  rm -rf "$pkgdir"/usr/lib/go/pkg/obj/go-build/*
-
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$1/LICENSE"
-}
-
-package_go() {
-  pkgdesc='Core compiler tools for the Go programming language'
-
-  _package $pkgname
-}
-
-package_go-pie() {
-  pkgdesc='Core compiler tools for the Go programming language (with PIE 
enabled by default)'
-  provides=(go)
-  conflicts=(go)
-
-  _package $pkgname
-}
-
-# vim: ts=2 sw=2 et

Copied: go/repos/community-x86_64/PKGBUILD (from rev 427544, go/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-24 15:36:20 UTC (rev 427545)
@@ -0,0 +1,106 @@
+# Maintainer: Alexander F. Rødseth 
+# Maintainer: Bartłomiej Piotrowski 
+# Maintainer: Morten Linderud 
+# Contributor: Pierre Neidhardt 
+# Contributor: Vesa Kaihlavirta 
+# Contributor: Rémy Oudompheng 
+# Contributor: Andres Perera 
+# Contributor: Matthew Bauer 
+# Contributor: Christian Himpel 
+# Contributor: Mike Rosset 
+# Contributor: Daniel YC Lin 
+# Contributor: John Luebs 
+
+pkgbase=go
+pkgname=(go go-pie)
+epoch=2
+pkgver=1.11.5
+pkgrel=1
+arch=(x86_64)
+url='https://golang.org/'
+license=(BSD)
+makedepends=(git go)
+source=(https://storage.googleapis.com/golang/go$pkgver.src.tar.gz
+default-buildmode-pie.patch)
+sha256sums=('bc1ef02bb1668835db1390a2e478dcbccb5dd16911691af9d75184bbe5aa943e'
+'9d2f0d201d4e002d74f548cc82bd131139bab5dd62191004c71dd430fdc1666d')
+
+export GOOS=linux
+case "$CARCH" in
+  x86_64) export GOARCH=amd64 ;;
+esac
+export GOROOT_FINAL=/usr/lib/go
+export GOROOT_BOOTSTRAP=/usr/lib/go
+export GOCACHE=off
+
+prepare() {
+  cp -r $pkgbase $pkgbase-pie
+
+  cd $pkgbase-pie
+  patch -p1 -i "$srcdir/default-buildmode-pie.patch"
+}
+
+build() {
+  export 

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

2019-01-24 Thread Morten Linderud via arch-commits
Date: Thursday, January 24, 2019 @ 15:20:59
  Author: foxboron
Revision: 427544

upgpkg: go 2:1.11.5-1

Modified:
  go/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-24 14:48:05 UTC (rev 427543)
+++ PKGBUILD2019-01-24 15:20:59 UTC (rev 427544)
@@ -14,7 +14,7 @@
 pkgbase=go
 pkgname=(go go-pie)
 epoch=2
-pkgver=1.11.4
+pkgver=1.11.5
 pkgrel=1
 arch=(x86_64)
 url='https://golang.org/'
@@ -22,7 +22,7 @@
 makedepends=(git go)
 source=(https://storage.googleapis.com/golang/go$pkgver.src.tar.gz
 default-buildmode-pie.patch)
-sha256sums=('4cfd42720a6b1e79a8024895fa6607b69972e8e32446df76d6ce79801bbadb15'
+sha256sums=('bc1ef02bb1668835db1390a2e478dcbccb5dd16911691af9d75184bbe5aa943e'
 '9d2f0d201d4e002d74f548cc82bd131139bab5dd62191004c71dd430fdc1666d')
 
 export GOOS=linux
@@ -42,6 +42,7 @@
 
 build() {
   export GOPATH="$srcdir/"
+  export GO_GCFLAGS="-trimpath=$GOPATH"
 
   for _pkgname in ${pkgname[@]}; do
 export GOROOT="$srcdir/$_pkgname"


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

2019-01-22 Thread Morten Linderud via arch-commits
Date: Tuesday, January 22, 2019 @ 13:54:41
  Author: foxboron
Revision: 427017

archrelease: copy trunk to community-any

Added:
  mypy/repos/community-any/PKGBUILD
(from rev 427016, mypy/trunk/PKGBUILD)
Deleted:
  mypy/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-22 13:54:29 UTC (rev 427016)
+++ PKGBUILD2019-01-22 13:54:41 UTC (rev 427017)
@@ -1,26 +0,0 @@
-# Maintainer: Morten Linderud 
-# Contributor: icasdri 
-# Contributor: hexchain 
-
-pkgname=mypy
-pkgver=0.650
-pkgrel=1
-pkgdesc='Optional static typing for Python 2 and 3 (PEP484)'
-url="http://www.mypy-lang.org/;
-arch=('any')
-license=('MIT')
-depends=('python' 'python-psutil' 'python-typed-ast' 'python-mypy_extensions')
-makedepends=('python-setuptools' 'git')
-source=("$pkgname-$pkgver.tar.gz::https://pypi.org/packages/source/m/$pkgname/$pkgname-$pkgver.tar.gz;)
-sha256sums=('38d5b5f835a81817dcc0af8d155bce4e9aefa03794fe32ed154d6612e83feafa')
-
-build() {
-cd "$pkgname-$pkgver"
-python setup.py build
-}
-
-package() {
-cd "$pkgname-$pkgver"
-python setup.py install --prefix="/usr" --root="${pkgdir}" --optimize=1 
--skip-build
-install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: mypy/repos/community-any/PKGBUILD (from rev 427016, mypy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-22 13:54:41 UTC (rev 427017)
@@ -0,0 +1,26 @@
+# Maintainer: Morten Linderud 
+# Contributor: icasdri 
+# Contributor: hexchain 
+
+pkgname=mypy
+pkgver=0.660
+pkgrel=1
+pkgdesc='Optional static typing for Python 2 and 3 (PEP484)'
+url="http://www.mypy-lang.org/;
+arch=('any')
+license=('MIT')
+depends=('python' 'python-psutil' 'python-typed-ast' 'python-mypy_extensions')
+makedepends=('python-setuptools' 'git')
+source=("$pkgname-$pkgver.tar.gz::https://pypi.org/packages/source/m/$pkgname/$pkgname-$pkgver.tar.gz;)
+sha256sums=('986a7f97808a865405c5fd98fae5ebfa963c31520a56c783df159e9a81e41b3e')
+
+build() {
+cd "$pkgname-$pkgver"
+python setup.py build
+}
+
+package() {
+cd "$pkgname-$pkgver"
+python setup.py install --prefix="/usr" --root="${pkgdir}" --optimize=1 
--skip-build
+install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2019-01-22 Thread Morten Linderud via arch-commits
Date: Tuesday, January 22, 2019 @ 13:54:29
  Author: foxboron
Revision: 427016

upgpkg: mypy 0.660-1

Modified:
  mypy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-22 13:51:37 UTC (rev 427015)
+++ PKGBUILD2019-01-22 13:54:29 UTC (rev 427016)
@@ -3,7 +3,7 @@
 # Contributor: hexchain 
 
 pkgname=mypy
-pkgver=0.650
+pkgver=0.660
 pkgrel=1
 pkgdesc='Optional static typing for Python 2 and 3 (PEP484)'
 url="http://www.mypy-lang.org/;
@@ -12,7 +12,7 @@
 depends=('python' 'python-psutil' 'python-typed-ast' 'python-mypy_extensions')
 makedepends=('python-setuptools' 'git')
 
source=("$pkgname-$pkgver.tar.gz::https://pypi.org/packages/source/m/$pkgname/$pkgname-$pkgver.tar.gz;)
-sha256sums=('38d5b5f835a81817dcc0af8d155bce4e9aefa03794fe32ed154d6612e83feafa')
+sha256sums=('986a7f97808a865405c5fd98fae5ebfa963c31520a56c783df159e9a81e41b3e')
 
 build() {
 cd "$pkgname-$pkgver"


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

2019-01-22 Thread Morten Linderud via arch-commits
Date: Tuesday, January 22, 2019 @ 13:51:37
  Author: foxboron
Revision: 427015

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-22 13:45:35 UTC (rev 427014)
+++ PKGBUILD2019-01-22 13:51:37 UTC (rev 427015)
@@ -1,32 +0,0 @@
-# Maintainer: Morten Linderud  
-# Contributor: Sean Haugh 
-
-pkgname=python-pywal
-pkgver=3.2.1
-pkgrel=2
-pkgdesc="Generate and change colorschemes on the fly"
-arch=('any')
-url="https://github.com/dylanaraps/pywal/;
-license=('MIT')
-depends=('python' 'imagemagick' 'python-setuptools')
-optdepends=('feh: set wallpaper'
-'nitrogen: set wallpaper'
-   'python2: reload gtk2 themes on the fly')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/dylanaraps/pywal/archive/${pkgver}.tar.gz;)
-sha256sums=('2301e9949eb6053a80ed59330f8cdbb3a11dab90e198059ea7a1f01894e00a8a')
-
-build(){
-  cd "pywal-${pkgver}"
-  python setup.py build
-}
-
-check(){
-  cd "pywal-${pkgver}"
-  python setup.py test
-}
-
-package() {
-  cd "pywal-${pkgver}"
-  python setup.py install --prefix=/usr --root="$pkgdir/" --optimize=1 
--skip-build
-  install -Dm644 LICENSE.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: python-pywal/repos/community-any/PKGBUILD (from rev 427014, 
python-pywal/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-22 13:51:37 UTC (rev 427015)
@@ -0,0 +1,35 @@
+# Maintainer: Morten Linderud  
+# Contributor: Sean Haugh 
+
+pkgname=python-pywal
+pkgver=3.3.0
+pkgrel=1
+pkgdesc="Generate and change colorschemes on the fly"
+arch=('any')
+url="https://github.com/dylanaraps/pywal/;
+license=('MIT')
+depends=('python' 'imagemagick' 'python-setuptools')
+optdepends=('feh: set wallpaper'
+'nitrogen: set wallpaper'
+   'python2: reload gtk2 themes on the fly')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/dylanaraps/pywal/archive/${pkgver}.tar.gz;
+   
"$pkgname-$pkgver.tar.gz.asc::https://github.com/dylanaraps/pywal/releases/download/${pkgver}/${pkgver}.tar.gz.asc;)
+validpgpkeys=("155DC67DC25496572CDD608FF635E931C2834999")
+sha256sums=('fe8fc1c29d1cad1a1a8580293dcfe32e1fac259f9dbfd5c8877439fa5948d189'
+'SKIP')
+
+build(){
+  cd "pywal-${pkgver}"
+  python setup.py build
+}
+
+check(){
+  cd "pywal-${pkgver}"
+  python setup.py test
+}
+
+package() {
+  cd "pywal-${pkgver}"
+  python setup.py install --prefix=/usr --root="$pkgdir/" --optimize=1 
--skip-build
+  install -Dm644 LICENSE.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2019-01-22 Thread Morten Linderud via arch-commits
Date: Tuesday, January 22, 2019 @ 13:45:35
  Author: foxboron
Revision: 427014

upgpkg: python-pywal 3.3.0-1

Modified:
  python-pywal/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-22 13:37:30 UTC (rev 427013)
+++ PKGBUILD2019-01-22 13:45:35 UTC (rev 427014)
@@ -2,8 +2,8 @@
 # Contributor: Sean Haugh 
 
 pkgname=python-pywal
-pkgver=3.2.1
-pkgrel=2
+pkgver=3.3.0
+pkgrel=1
 pkgdesc="Generate and change colorschemes on the fly"
 arch=('any')
 url="https://github.com/dylanaraps/pywal/;
@@ -12,8 +12,11 @@
 optdepends=('feh: set wallpaper'
 'nitrogen: set wallpaper'
'python2: reload gtk2 themes on the fly')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/dylanaraps/pywal/archive/${pkgver}.tar.gz;)
-sha256sums=('2301e9949eb6053a80ed59330f8cdbb3a11dab90e198059ea7a1f01894e00a8a')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/dylanaraps/pywal/archive/${pkgver}.tar.gz;
+   
"$pkgname-$pkgver.tar.gz.asc::https://github.com/dylanaraps/pywal/releases/download/${pkgver}/${pkgver}.tar.gz.asc;)
+validpgpkeys=("155DC67DC25496572CDD608FF635E931C2834999")
+sha256sums=('fe8fc1c29d1cad1a1a8580293dcfe32e1fac259f9dbfd5c8877439fa5948d189'
+'SKIP')
 
 build(){
   cd "pywal-${pkgver}"


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

2019-01-16 Thread Morten Linderud via arch-commits
Date: Wednesday, January 16, 2019 @ 22:18:29
  Author: foxboron
Revision: 423728

archrelease: copy trunk to community-any

Added:
  python-jsonrpclib-pelix/repos/community-any/PKGBUILD
(from rev 423727, python-jsonrpclib-pelix/trunk/PKGBUILD)
Deleted:
  python-jsonrpclib-pelix/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-16 22:18:14 UTC (rev 423727)
+++ PKGBUILD2019-01-16 22:18:29 UTC (rev 423728)
@@ -1,43 +0,0 @@
-# Maintainer: Morten Linderud 
-# Contributor: Andy Weidenbaum 
-
-pkgbase=python-jsonrpclib-pelix
-pkgname=(python-jsonrpclib-pelix python2-jsonrpclib-pelix)
-pkgver=0.3.2
-pkgrel=1
-pkgdesc="A Python JSON-RPC over HTTP that mirrors xmlrpclib syntax"
-arch=(any)
-makedepends=(python-setuptools python2-setuptools)
-url="https://github.com/tcalmant/jsonrpclib;
-license=('Apache')
-source=(https://pypi.io/packages/source/j/jsonrpclib-pelix/jsonrpclib-pelix-$pkgver.tar.gz)
-sha256sums=('14d288d1b3d3273cf96a729dd21a2470851c4962be8509f3dd62f0137ff90339')
-
-prepare() {
-  cp -r jsonrpclib-pelix-$pkgver jsonrpclib-pelix-$pkgver-py2
-  cd jsonrpclib-pelix-$pkgver-py2
-  find -name '*.py' | xargs sed -e 's|/usr/bin/python|/usr/bin/python2|' -e 
's|/usr/bin/env python|/usr/bin/env python2|' -i
-}
-
-build() {
-  cd jsonrpclib-pelix-$pkgver
-  python setup.py build
-
-  cd ../jsonrpclib-pelix-$pkgver-py2
-  python2 setup.py build
-}
-
-package_python-jsonrpclib-pelix() {
-  depends=(python)
-  conflicts=(python-jsonrpclib)
-  cd jsonrpclib-pelix-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-}
-
-package_python2-jsonrpclib-pelix() {
-  depends=(python2)
-  conflicts=(python2-jsonrpclib)
-  cd jsonrpclib-pelix-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-}
-

Copied: python-jsonrpclib-pelix/repos/community-any/PKGBUILD (from rev 423727, 
python-jsonrpclib-pelix/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-16 22:18:29 UTC (rev 423728)
@@ -0,0 +1,43 @@
+# Maintainer: Morten Linderud 
+# Contributor: Andy Weidenbaum 
+
+pkgbase=python-jsonrpclib-pelix
+pkgname=(python-jsonrpclib-pelix python2-jsonrpclib-pelix)
+pkgver=0.4.0
+pkgrel=1
+pkgdesc="A Python JSON-RPC over HTTP that mirrors xmlrpclib syntax"
+arch=(any)
+makedepends=(python-setuptools python2-setuptools)
+url="https://github.com/tcalmant/jsonrpclib;
+license=('Apache')
+source=(https://pypi.io/packages/source/j/jsonrpclib-pelix/jsonrpclib-pelix-$pkgver.tar.gz)
+sha256sums=('19c558e169a51480b39548783067ca55046b62b2409ab4559931255e12f635de')
+
+prepare() {
+  cp -r jsonrpclib-pelix-$pkgver jsonrpclib-pelix-$pkgver-py2
+  cd jsonrpclib-pelix-$pkgver-py2
+  find -name '*.py' | xargs sed -e 's|/usr/bin/python|/usr/bin/python2|' -e 
's|/usr/bin/env python|/usr/bin/env python2|' -i
+}
+
+build() {
+  cd jsonrpclib-pelix-$pkgver
+  python setup.py build
+
+  cd ../jsonrpclib-pelix-$pkgver-py2
+  python2 setup.py build
+}
+
+package_python-jsonrpclib-pelix() {
+  depends=(python)
+  conflicts=(python-jsonrpclib)
+  cd jsonrpclib-pelix-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}
+
+package_python2-jsonrpclib-pelix() {
+  depends=(python2)
+  conflicts=(python2-jsonrpclib)
+  cd jsonrpclib-pelix-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+}
+


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

2019-01-16 Thread Morten Linderud via arch-commits
Date: Wednesday, January 16, 2019 @ 22:18:14
  Author: foxboron
Revision: 423727

upgpkg: python-jsonrpclib-pelix 0.4.0-1

Modified:
  python-jsonrpclib-pelix/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-16 21:59:03 UTC (rev 423726)
+++ PKGBUILD2019-01-16 22:18:14 UTC (rev 423727)
@@ -3,7 +3,7 @@
 
 pkgbase=python-jsonrpclib-pelix
 pkgname=(python-jsonrpclib-pelix python2-jsonrpclib-pelix)
-pkgver=0.3.2
+pkgver=0.4.0
 pkgrel=1
 pkgdesc="A Python JSON-RPC over HTTP that mirrors xmlrpclib syntax"
 arch=(any)
@@ -11,7 +11,7 @@
 url="https://github.com/tcalmant/jsonrpclib;
 license=('Apache')
 
source=(https://pypi.io/packages/source/j/jsonrpclib-pelix/jsonrpclib-pelix-$pkgver.tar.gz)
-sha256sums=('14d288d1b3d3273cf96a729dd21a2470851c4962be8509f3dd62f0137ff90339')
+sha256sums=('19c558e169a51480b39548783067ca55046b62b2409ab4559931255e12f635de')
 
 prepare() {
   cp -r jsonrpclib-pelix-$pkgver jsonrpclib-pelix-$pkgver-py2


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

2019-01-16 Thread Morten Linderud via arch-commits
Date: Wednesday, January 16, 2019 @ 21:58:50
  Author: foxboron
Revision: 423725

upgpkg: influxdb 1.7.3-1

Modified:
  influxdb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-16 21:49:54 UTC (rev 423724)
+++ PKGBUILD2019-01-16 21:58:50 UTC (rev 423725)
@@ -6,7 +6,7 @@
 # Contributor: Ben Alex 
 
 pkgname=influxdb
-pkgver=1.7.2
+pkgver=1.7.3
 pkgrel=1
 pkgdesc='Scalable datastore for metrics, events, and real-time analytics'
 arch=('i686' 'x86_64' 'armv6h' 'armv7h' 'aarch64')
@@ -17,7 +17,7 @@
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/influxdata/influxdb/archive/v${pkgver}.tar.gz;
 "influxdb.sysusers"
 "influxdb.tmpfiles")
-sha256sums=('05b10655c98e5fcf16f99a3c304bda4bac09761a499566c5458e233e224daabe'
+sha256sums=('c3dc00f209cca8b9b742ddeffdd6ad0017afa992e6a7fc9279503f2a87e8ee65'
 '809cca823ae3027984bc7ace70db75753d7d0d4f6658a36db9d94a33054ca5e9'
 'e2aa59413a6204737383b86cedefd866d7073f56ace5b89aad38c530cc86e60c')
 


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

2019-01-16 Thread Morten Linderud via arch-commits
Date: Wednesday, January 16, 2019 @ 21:59:03
  Author: foxboron
Revision: 423726

archrelease: copy trunk to community-x86_64

Added:
  influxdb/repos/community-x86_64/PKGBUILD
(from rev 423725, influxdb/trunk/PKGBUILD)
  influxdb/repos/community-x86_64/influxdb.sysusers
(from rev 423725, influxdb/trunk/influxdb.sysusers)
  influxdb/repos/community-x86_64/influxdb.tmpfiles
(from rev 423725, influxdb/trunk/influxdb.tmpfiles)
Deleted:
  influxdb/repos/community-x86_64/PKGBUILD
  influxdb/repos/community-x86_64/influxdb.sysusers
  influxdb/repos/community-x86_64/influxdb.tmpfiles

---+
 PKGBUILD  |  146 ++--
 influxdb.sysusers |2 
 influxdb.tmpfiles |8 +-
 3 files changed, 78 insertions(+), 78 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-16 21:58:50 UTC (rev 423725)
+++ PKGBUILD2019-01-16 21:59:03 UTC (rev 423726)
@@ -1,73 +0,0 @@
-# Maintainer: Morten Linderud 
-# Contributor: Nicolas Leclercq 
-# Contributor: Adam S Levy 
-# Contributor: Charles B. Johnson 
-# Contributor: Daichi Shinozaki 
-# Contributor: Ben Alex 
-
-pkgname=influxdb
-pkgver=1.7.2
-pkgrel=1
-pkgdesc='Scalable datastore for metrics, events, and real-time analytics'
-arch=('i686' 'x86_64' 'armv6h' 'armv7h' 'aarch64')
-url='https://github.com/InfluxData/influxdb'
-license=('MIT')
-makedepends=('go-pie' 'git' 'asciidoc' 'xmlto' 'dep')
-backup=('etc/influxdb/influxdb.conf')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/influxdata/influxdb/archive/v${pkgver}.tar.gz;
-"influxdb.sysusers"
-"influxdb.tmpfiles")
-sha256sums=('05b10655c98e5fcf16f99a3c304bda4bac09761a499566c5458e233e224daabe'
-'809cca823ae3027984bc7ace70db75753d7d0d4f6658a36db9d94a33054ca5e9'
-'e2aa59413a6204737383b86cedefd866d7073f56ace5b89aad38c530cc86e60c')
-
-prepare(){
-  export GOPATH="$srcdir/gopath"
-
-  mkdir -p "$GOPATH/src/github.com/influxdata/"
-  cp -r "${srcdir}/influxdb-$pkgver" 
"$GOPATH/src/github.com/influxdata/influxdb"
-  cd "$GOPATH/src/github.com/influxdata/influxdb"
-  dep ensure
-}
-
-build(){
-  export GOPATH="$srcdir/gopath"
-
-  _LDFLAGS="-X main.version=$pkgver -X main.branch=master -extldflags 
${LDFLAGS}"
-  go install -v -ldflags="$_LDFLAGS" -gcflags "all=-trimpath=${GOPATH}" 
-asmflags "all=-trimpath=${GOPATH}" "github.com/influxdata/influxdb/cmd/..."
-
-  cd "$GOPATH/src/github.com/influxdata/influxdb/man/"
-  make
-}
-
-check(){
-  export GOPATH="$srcdir/gopath"
-  go test "github.com/influxdata/influxdb/..."
-}
-
-package(){
-  export GOPATH="$srcdir/gopath"
-
-  cd "$srcdir"
-  install -Dm644 influxdb.sysusers "$pkgdir/usr/lib/sysusers.d/influxdb.conf"
-  install -Dm644 influxdb.tmpfiles "$pkgdir/usr/lib/tmpfiles.d/influxdb.conf"
-
-  cd "$GOPATH/bin"
-  install -d "$pkgdir/usr/bin/"
-  install -Dm755 influx "$pkgdir/usr/bin/"
-  install -Dm755 influxd"$pkgdir/usr/bin/"
-  install -Dm755 influx_inspect "$pkgdir/usr/bin/"
-  install -Dm755 influx_stress  "$pkgdir/usr/bin/"
-  install -Dm755 influx_tools   "$pkgdir/usr/bin/"
-  install -Dm755 influx_tsm "$pkgdir/usr/bin/"
-  install -Dm755 store  "$pkgdir/usr/bin/"
-
-  cd "$GOPATH/src/github.com/influxdata/influxdb"
-  install -Dm644 scripts/influxdb.service 
"$pkgdir/usr/lib/systemd/system/influxdb.service"
-  install -Dm644 etc/config.sample.toml   "$pkgdir/etc/influxdb/influxdb.conf"
-  install -Dm644 LICENSE  
"$pkgdir/usr/share/licenses/influxdb/LICENSE"
-
-  # Install man pages
-  install -d "$pkgdir/usr/share/man/man1"
-  install -Dm644 man/*.1 "$pkgdir/usr/share/man/man1/"
-}

Copied: influxdb/repos/community-x86_64/PKGBUILD (from rev 423725, 
influxdb/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-16 21:59:03 UTC (rev 423726)
@@ -0,0 +1,73 @@
+# Maintainer: Morten Linderud 
+# Contributor: Nicolas Leclercq 
+# Contributor: Adam S Levy 
+# Contributor: Charles B. Johnson 
+# Contributor: Daichi Shinozaki 
+# Contributor: Ben Alex 
+
+pkgname=influxdb
+pkgver=1.7.3
+pkgrel=1
+pkgdesc='Scalable datastore for metrics, events, and real-time analytics'
+arch=('i686' 'x86_64' 'armv6h' 'armv7h' 'aarch64')
+url='https://github.com/InfluxData/influxdb'
+license=('MIT')
+makedepends=('go-pie' 'git' 'asciidoc' 'xmlto' 'dep')
+backup=('etc/influxdb/influxdb.conf')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/influxdata/influxdb/archive/v${pkgver}.tar.gz;
+"influxdb.sysusers"
+"influxdb.tmpfiles")
+sha256sums=('c3dc00f209cca8b9b742ddeffdd6ad0017afa992e6a7fc9279503f2a87e8ee65'
+'809cca823ae3027984bc7ace70db75753d7d0d4f6658a36db9d94a33054ca5e9'
+'e2aa59413a6204737383b86cedefd866d7073f56ace5b89aad38c530cc86e60c')
+
+prepare(){
+  export GOPATH="$srcdir/gopath"
+
+  mkdir -p 

[arch-commits] Commit in python-typed-ast/repos/community-x86_64 (PKGBUILD PKGBUILD)

2019-01-16 Thread Morten Linderud via arch-commits
Date: Wednesday, January 16, 2019 @ 21:12:19
  Author: foxboron
Revision: 423712

archrelease: copy trunk to community-x86_64

Added:
  python-typed-ast/repos/community-x86_64/PKGBUILD
(from rev 423711, python-typed-ast/trunk/PKGBUILD)
Deleted:
  python-typed-ast/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-16 21:11:49 UTC (rev 423711)
+++ PKGBUILD2019-01-16 21:12:19 UTC (rev 423712)
@@ -1,23 +0,0 @@
-# Maintainer: Morten Linderud 
-
-pkgname=python-typed-ast
-pkgver=1.1.1
-pkgrel=1
-pkgdesc="a fork of Python 2 and 3 ast modules with type comment support"
-arch=('x86_64')
-url="https://github.com/python/typed_ast;
-license=('Apache')
-depends=('python')
-makedepends=('python-setuptools')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/python/typed_ast/archive/${pkgver}.tar.gz;)
-sha256sums=('8d40e9a6d6e04c1379e58fa022fc4195228e9fec8fed7d9ff642429b9ab490f1')
-
-build(){
-  cd "typed_ast-$pkgver"
-  python setup.py build
-}
-
-package(){
-  cd "typed_ast-$pkgver"
-  python setup.py install --prefix="usr/" --root="$pkgdir/" --optimize=1 
--skip-build
-}

Copied: python-typed-ast/repos/community-x86_64/PKGBUILD (from rev 423711, 
python-typed-ast/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-16 21:12:19 UTC (rev 423712)
@@ -0,0 +1,23 @@
+# Maintainer: Morten Linderud 
+
+pkgname=python-typed-ast
+pkgver=1.2.0
+pkgrel=1
+pkgdesc="a fork of Python 2 and 3 ast modules with type comment support"
+arch=('x86_64')
+url="https://github.com/python/typed_ast;
+license=('Apache')
+depends=('python')
+makedepends=('python-setuptools')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/python/typed_ast/archive/${pkgver}.tar.gz;)
+sha256sums=('d501cd1128ec0b6fa42c8d7490203ba24b19de01a7f32900f3709503f4de38ba')
+
+build(){
+  cd "typed_ast-$pkgver"
+  python setup.py build
+}
+
+package(){
+  cd "typed_ast-$pkgver"
+  python setup.py install --prefix="usr/" --root="$pkgdir/" --optimize=1 
--skip-build
+}


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

2019-01-16 Thread Morten Linderud via arch-commits
Date: Wednesday, January 16, 2019 @ 21:11:49
  Author: foxboron
Revision: 423711

upgpkg: python-typed-ast 1.2.0-1

Modified:
  python-typed-ast/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-16 21:10:59 UTC (rev 423710)
+++ PKGBUILD2019-01-16 21:11:49 UTC (rev 423711)
@@ -1,7 +1,7 @@
 # Maintainer: Morten Linderud 
 
 pkgname=python-typed-ast
-pkgver=1.1.1
+pkgver=1.2.0
 pkgrel=1
 pkgdesc="a fork of Python 2 and 3 ast modules with type comment support"
 arch=('x86_64')
@@ -10,7 +10,7 @@
 depends=('python')
 makedepends=('python-setuptools')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/python/typed_ast/archive/${pkgver}.tar.gz;)
-sha256sums=('8d40e9a6d6e04c1379e58fa022fc4195228e9fec8fed7d9ff642429b9ab490f1')
+sha256sums=('d501cd1128ec0b6fa42c8d7490203ba24b19de01a7f32900f3709503f4de38ba')
 
 build(){
   cd "typed_ast-$pkgver"


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

2019-01-13 Thread Morten Linderud via arch-commits
Date: Sunday, January 13, 2019 @ 13:11:50
  Author: foxboron
Revision: 422911

archrelease: copy trunk to community-x86_64

Added:
  tpm2-tools/repos/community-x86_64/PKGBUILD
(from rev 422910, tpm2-tools/trunk/PKGBUILD)
Deleted:
  tpm2-tools/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-13 13:11:41 UTC (rev 422910)
+++ PKGBUILD2019-01-13 13:11:50 UTC (rev 422911)
@@ -1,34 +0,0 @@
-# Maintainer: Bruno Pagani 
-
-pkgname=tpm2-tools
-pkgver=3.1.3
-pkgrel=1
-pkgdesc="Trusted Platform Module 2.0 tools based on tpm2-tss"
-arch=('x86_64')
-url="https://github.com/tpm2-software/tpm2-tools;
-license=('BSD')
-depends=('curl' 'openssl' 'tpm2-tss')
-optdepends=('tpm2-abrmd: user space resource manager')
-checkdepends=('cmocka' 'tpm2-abrmd' 'python-pyaml')
-source=("$url/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz"{,.asc})
-sha256sums=('cc95576f49cf9bacf75772fd98dcb7edc5172a6a8dfa20c215fe3cc69b0a3a16' 
'SKIP')
-validpgpkeys=('5B482B8E3E19DA7C978E1D016DE2E9078E1F50C1'  # William Roberts 
(Bill Roberts) 
-  'D75ED7AA24E50CD645C6F457C751E590D63F3D69'  # Javier Martinez 
Canillas 
-  '5BEC526CE3A61CAF07E7A7DA49BCAE5443FFFC34') # Joshua Lock 

-
-build() {
-cd ${pkgname}-${pkgver}
-./configure --prefix=/usr
-make
-}
-
-check() {
-cd ${pkgname}-${pkgver}
-make check
-}
-
-package() {
-cd ${pkgname}-${pkgver}
-make DESTDIR="${pkgdir}" install
-install -Dm644 LICENSE -t "${pkgdir}"/usr/share/licenses/${pkgname}/
-}

Copied: tpm2-tools/repos/community-x86_64/PKGBUILD (from rev 422910, 
tpm2-tools/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-13 13:11:50 UTC (rev 422911)
@@ -0,0 +1,39 @@
+# Maintainer: Bruno Pagani 
+# Maintainer: Morten Linderud 
+
+pkgname=tpm2-tools
+pkgver=3.1.3
+pkgrel=2
+pkgdesc="Trusted Platform Module 2.0 tools based on tpm2-tss"
+arch=('x86_64')
+url="https://github.com/tpm2-software/tpm2-tools;
+license=('BSD')
+depends=('curl' 'openssl' 'tpm2-tss')
+optdepends=('tpm2-abrmd: user space resource manager')
+checkdepends=('cmocka') 
+source=("$url/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz"{,.asc})
+sha256sums=('cc95576f49cf9bacf75772fd98dcb7edc5172a6a8dfa20c215fe3cc69b0a3a16'
+'SKIP')
+validpgpkeys=('5B482B8E3E19DA7C978E1D016DE2E9078E1F50C1'  # William Roberts 
(Bill Roberts) 
+'D75ED7AA24E50CD645C6F457C751E590D63F3D69'  # Javier Martinez Canillas 

+'5BEC526CE3A61CAF07E7A7DA49BCAE5443FFFC34') # Joshua Lock 

+
+build() {
+cd ${pkgname}-${pkgver}
+./configure \
+--enable-unit \
+--sysconfdir=/etc \
+--prefix=/usr
+make
+}
+
+check() {
+cd ${pkgname}-${pkgver}
+make check
+}
+
+package() {
+cd ${pkgname}-${pkgver}
+make DESTDIR="${pkgdir}" install
+install -Dm644 LICENSE -t "${pkgdir}"/usr/share/licenses/${pkgname}/
+}


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

2019-01-13 Thread Morten Linderud via arch-commits
Date: Sunday, January 13, 2019 @ 13:11:41
  Author: foxboron
Revision: 422910

upgpkg: tpm2-tools 3.1.3-2

Modified:
  tpm2-tools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-13 13:01:20 UTC (rev 422909)
+++ PKGBUILD2019-01-13 13:11:41 UTC (rev 422910)
@@ -15,24 +15,21 @@
 sha256sums=('cc95576f49cf9bacf75772fd98dcb7edc5172a6a8dfa20c215fe3cc69b0a3a16'
 'SKIP')
 validpgpkeys=('5B482B8E3E19DA7C978E1D016DE2E9078E1F50C1'  # William Roberts 
(Bill Roberts) 
-  'D75ED7AA24E50CD645C6F457C751E590D63F3D69'  # Javier Martinez 
Canillas 
-  '5BEC526CE3A61CAF07E7A7DA49BCAE5443FFFC34') # Joshua Lock 

+'D75ED7AA24E50CD645C6F457C751E590D63F3D69'  # Javier Martinez Canillas 

+'5BEC526CE3A61CAF07E7A7DA49BCAE5443FFFC34') # Joshua Lock 

 
 build() {
 cd ${pkgname}-${pkgver}
 ./configure \
-   --enable-unit \
-   --sysconfdir=/etc \
-   --prefix=/usr
-make
+--enable-unit \
+--sysconfdir=/etc \
+--prefix=/usr
+make
 }
 
 check() {
 cd ${pkgname}-${pkgver}
 make check
-
-   # TODO: Enable ./tests.sh for system tests.
-   # Look at tpm2-tools-git next(?) release.
 }
 
 package() {


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

2019-01-13 Thread Morten Linderud via arch-commits
Date: Sunday, January 13, 2019 @ 13:01:20
  Author: foxboron
Revision: 422909

upgpkg: tpm2-tools 3.1.3-2

Modified:
  tpm2-tools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-13 12:51:50 UTC (rev 422908)
+++ PKGBUILD2019-01-13 13:01:20 UTC (rev 422909)
@@ -1,8 +1,9 @@
 # Maintainer: Bruno Pagani 
+# Maintainer: Morten Linderud 
 
 pkgname=tpm2-tools
 pkgver=3.1.3
-pkgrel=1
+pkgrel=2
 pkgdesc="Trusted Platform Module 2.0 tools based on tpm2-tss"
 arch=('x86_64')
 url="https://github.com/tpm2-software/tpm2-tools;
@@ -9,9 +10,10 @@
 license=('BSD')
 depends=('curl' 'openssl' 'tpm2-tss')
 optdepends=('tpm2-abrmd: user space resource manager')
-checkdepends=('cmocka' 'tpm2-abrmd' 'python-pyaml')
+checkdepends=('cmocka') 
 source=("$url/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz"{,.asc})
-sha256sums=('cc95576f49cf9bacf75772fd98dcb7edc5172a6a8dfa20c215fe3cc69b0a3a16' 
'SKIP')
+sha256sums=('cc95576f49cf9bacf75772fd98dcb7edc5172a6a8dfa20c215fe3cc69b0a3a16'
+'SKIP')
 validpgpkeys=('5B482B8E3E19DA7C978E1D016DE2E9078E1F50C1'  # William Roberts 
(Bill Roberts) 
   'D75ED7AA24E50CD645C6F457C751E590D63F3D69'  # Javier Martinez 
Canillas 
   '5BEC526CE3A61CAF07E7A7DA49BCAE5443FFFC34') # Joshua Lock 

@@ -18,7 +20,10 @@
 
 build() {
 cd ${pkgname}-${pkgver}
-./configure --prefix=/usr
+./configure \
+   --enable-unit \
+   --sysconfdir=/etc \
+   --prefix=/usr
 make
 }
 
@@ -25,6 +30,9 @@
 check() {
 cd ${pkgname}-${pkgver}
 make check
+
+   # TODO: Enable ./tests.sh for system tests.
+   # Look at tpm2-tools-git next(?) release.
 }
 
 package() {


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

2019-01-11 Thread Morten Linderud via arch-commits
Date: Friday, January 11, 2019 @ 14:44:26
  Author: foxboron
Revision: 422429

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-11 14:44:16 UTC (rev 422428)
+++ PKGBUILD2019-01-11 14:44:26 UTC (rev 422429)
@@ -1,44 +0,0 @@
-# Maintainer: Morten Linderud 
-# Maintainer: Anatol Pomozov
-
-pkgbase=python-autobahn
-pkgname=(python-autobahn python2-autobahn)
-pkgver=18.12.1
-pkgrel=1
-pkgdesc='Real-time framework for Web, Mobile & Internet of Things'
-arch=(any)
-url='http://autobahn.ws/python/'
-license=(MIT)
-makedepends=(python-setuptools python2-setuptools python-twisted python-six 
python-txaio python2-twisted python2-six python2-txaio)
-checkdepends=(python2-unittest2)
-source=(https://pypi.io/packages/source/a/autobahn/autobahn-$pkgver.tar.gz)
-sha256sums=('bec9e04c97536a6c0044965db4a478672a01c4adee0aa84d9c4a0945b2adc879')
-
-build() {
-  cd "$srcdir/autobahn-$pkgver"
-  python setup.py build
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir/autobahn-$pkgver"
-  #It requires python-unittest2 in [community]
-  #python setup.py test
-  #python2 setup.py test
-}
-
-package_python-autobahn() {
-  depends=(python python-twisted python-six python-txaio)
-
-  cd "$srcdir/autobahn-$pkgver"
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_python2-autobahn() {
-  depends=(python2 python2-twisted python2-six python2-txaio)
-
-  cd "$srcdir/autobahn-$pkgver"
-  python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: python-autobahn/repos/community-any/PKGBUILD (from rev 422428, 
python-autobahn/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-11 14:44:26 UTC (rev 422429)
@@ -0,0 +1,44 @@
+# Maintainer: Morten Linderud 
+# Maintainer: Anatol Pomozov
+
+pkgbase=python-autobahn
+pkgname=(python-autobahn python2-autobahn)
+pkgver=19.1.1
+pkgrel=1
+pkgdesc='Real-time framework for Web, Mobile & Internet of Things'
+arch=(any)
+url='https://crossbar.io/autobahn/'
+license=(MIT)
+makedepends=(python-setuptools python2-setuptools python-twisted python-six 
python-txaio python2-twisted python2-six python2-txaio)
+checkdepends=(python2-unittest2)
+source=(https://pypi.io/packages/source/a/autobahn/autobahn-$pkgver.tar.gz)
+sha256sums=('aebbadb700c13792a2967c79002855d1153b9ec8f2949d169e908388699596ff')
+
+build() {
+  cd "$srcdir/autobahn-$pkgver"
+  python setup.py build
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir/autobahn-$pkgver"
+  #It requires python-unittest2 in [community]
+  #python setup.py test
+  #python2 setup.py test
+}
+
+package_python-autobahn() {
+  depends=(python python-twisted python-six python-txaio)
+
+  cd "$srcdir/autobahn-$pkgver"
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_python2-autobahn() {
+  depends=(python2 python2-twisted python2-six python2-txaio)
+
+  cd "$srcdir/autobahn-$pkgver"
+  python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2019-01-11 Thread Morten Linderud via arch-commits
Date: Friday, January 11, 2019 @ 14:44:16
  Author: foxboron
Revision: 422428

upgpkg: python-autobahn 19.1.1-1

Modified:
  python-autobahn/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-11 14:43:54 UTC (rev 422427)
+++ PKGBUILD2019-01-11 14:44:16 UTC (rev 422428)
@@ -3,16 +3,16 @@
 
 pkgbase=python-autobahn
 pkgname=(python-autobahn python2-autobahn)
-pkgver=18.12.1
+pkgver=19.1.1
 pkgrel=1
 pkgdesc='Real-time framework for Web, Mobile & Internet of Things'
 arch=(any)
-url='http://autobahn.ws/python/'
+url='https://crossbar.io/autobahn/'
 license=(MIT)
 makedepends=(python-setuptools python2-setuptools python-twisted python-six 
python-txaio python2-twisted python2-six python2-txaio)
 checkdepends=(python2-unittest2)
 source=(https://pypi.io/packages/source/a/autobahn/autobahn-$pkgver.tar.gz)
-sha256sums=('bec9e04c97536a6c0044965db4a478672a01c4adee0aa84d9c4a0945b2adc879')
+sha256sums=('aebbadb700c13792a2967c79002855d1153b9ec8f2949d169e908388699596ff')
 
 build() {
   cd "$srcdir/autobahn-$pkgver"


[arch-commits] Commit in yubikey-manager-qt/repos/community-x86_64 (PKGBUILD PKGBUILD)

2019-01-09 Thread Morten Linderud via arch-commits
Date: Wednesday, January 9, 2019 @ 12:59:52
  Author: foxboron
Revision: 421147

archrelease: copy trunk to community-x86_64

Added:
  yubikey-manager-qt/repos/community-x86_64/PKGBUILD
(from rev 421146, yubikey-manager-qt/trunk/PKGBUILD)
Deleted:
  yubikey-manager-qt/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-09 12:59:39 UTC (rev 421146)
+++ PKGBUILD2019-01-09 12:59:52 UTC (rev 421147)
@@ -1,55 +0,0 @@
-# Maintainer: Christian Hesse 
-
-pkgname=yubikey-manager-qt
-pkgver=1.0.1
-pkgrel=2
-pkgdesc='Cross-platform application for configuring any YubiKey over all USB 
transports'
-arch=('x86_64')
-url='https://developers.yubico.com/yubikey-manager-qt/'
-license=('BSD')
-depends=('yubikey-manager' 'qt5-quickcontrols' 'qt5-quickcontrols2' 
'qt5-graphicaleffects' 'python-pyotherside')
-makedepends=('git') 
-replaces=('yubikey-neo-manager')
-validpgpkeys=('8D0B4EBA9345254BCEC0E843514F078FF4AB24C3') # Dag Heyman 

-#source=("https://developers.yubico.com/${pkgname}/Releases/${pkgname}-${pkgver}.tar.gz"{,.sig})
-#sha256sums=('cfee0e262641bac1b6928be8ba2fb02ac15b6c1ea551bebf5b598b6716741b86'
-#'SKIP')
-source=("git+https://github.com/Yubico/yubikey-manager-qt.git#tag=${pkgname}-${pkgver}?signed;
-   'git+https://github.com/thp/pyotherside.git'
-   'git+https://github.com/Yubico/yubikey-manager.git'
-   'git+https://github.com/qtproject/qt-solutions')
-sha256sums=('SKIP'
-'SKIP'
-'SKIP'
-'SKIP')
-
-prepare() {
-   cd yubikey-manager-qt/
-
-   git config --file=.gitmodules submodule.vendor/pyotherside.url 
../pyotherside/
-   git config --file=.gitmodules submodule.vendor/yubikey-manager.url 
../yubikey-manager/
-   git config --file=.gitmodules 
submodule.ykman-gui/vendor/qt-solutions.url ../qt-solutions/
-
-   git submodule init
-   git submodule update
-}
-
-
-build() {
-   cd yubikey-manager-qt/
-
-   qmake-qt5
-   make
-}
-
-package() {
-   cd yubikey-manager-qt/
-
-   make INSTALL_ROOT="${pkgdir}/" install
-
-   install -D -m0644 resources/ykman-gui.desktop 
"${pkgdir}/usr/share/applications/ykman-gui.desktop"
-   install -D -m0644 resources/icons/ykman.png 
"${pkgdir}/usr/share/pixmaps/ykman.png"
-
-   install -D -m0644 debian/copyright 
"${pkgdir}/usr/share/licenses/${pkgname}/copyright"
-}
-

Copied: yubikey-manager-qt/repos/community-x86_64/PKGBUILD (from rev 421146, 
yubikey-manager-qt/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-09 12:59:52 UTC (rev 421147)
@@ -0,0 +1,29 @@
+# Maintainer: Christian Hesse 
+# Maintainer: Morten Linderud 
+
+pkgname=yubikey-manager-qt
+pkgver=1.1.0
+pkgrel=1
+pkgdesc='Cross-platform application for configuring any YubiKey over all USB 
transports'
+arch=('x86_64')
+url='https://developers.yubico.com/yubikey-manager-qt/'
+license=('BSD')
+depends=('yubikey-manager' 'qt5-quickcontrols' 'qt5-quickcontrols2' 
'qt5-graphicaleffects' 'python-pyotherside')
+replaces=('yubikey-neo-manager')
+validpgpkeys=('8D0B4EBA9345254BCEC0E843514F078FF4AB24C3') # Dag Heyman 

+source=("https://developers.yubico.com/${pkgname}/Releases/${pkgname}-${pkgver}.tar.gz"{,.sig})
+sha256sums=('8049a233a8cca07543d745a9f619c0fc3afb324f5d0030b93f037b34ac1c5e66'
+'SKIP')
+
+build() {
+   qmake-qt5
+   make
+}
+
+package() {
+   make INSTALL_ROOT="${pkgdir}/" install
+   install -D -m0644 resources/ykman-gui.desktop 
"${pkgdir}/usr/share/applications/ykman-gui.desktop"
+   install -D -m0644 resources/icons/ykman.png 
"${pkgdir}/usr/share/pixmaps/ykman.png"
+   install -D -m0644 debian/copyright 
"${pkgdir}/usr/share/licenses/${pkgname}/copyright"
+}
+


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

2019-01-09 Thread Morten Linderud via arch-commits
Date: Wednesday, January 9, 2019 @ 12:59:39
  Author: foxboron
Revision: 421146

upgpkg: yubikey-manager-qt 1.1.0-1

Modified:
  yubikey-manager-qt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-09 12:57:44 UTC (rev 421145)
+++ PKGBUILD2019-01-09 12:59:39 UTC (rev 421146)
@@ -1,55 +1,29 @@
 # Maintainer: Christian Hesse 
+# Maintainer: Morten Linderud 
 
 pkgname=yubikey-manager-qt
-pkgver=1.0.1
-pkgrel=2
+pkgver=1.1.0
+pkgrel=1
 pkgdesc='Cross-platform application for configuring any YubiKey over all USB 
transports'
 arch=('x86_64')
 url='https://developers.yubico.com/yubikey-manager-qt/'
 license=('BSD')
 depends=('yubikey-manager' 'qt5-quickcontrols' 'qt5-quickcontrols2' 
'qt5-graphicaleffects' 'python-pyotherside')
-makedepends=('git') 
 replaces=('yubikey-neo-manager')
 validpgpkeys=('8D0B4EBA9345254BCEC0E843514F078FF4AB24C3') # Dag Heyman 

-#source=("https://developers.yubico.com/${pkgname}/Releases/${pkgname}-${pkgver}.tar.gz"{,.sig})
-#sha256sums=('cfee0e262641bac1b6928be8ba2fb02ac15b6c1ea551bebf5b598b6716741b86'
-#'SKIP')
-source=("git+https://github.com/Yubico/yubikey-manager-qt.git#tag=${pkgname}-${pkgver}?signed;
-   'git+https://github.com/thp/pyotherside.git'
-   'git+https://github.com/Yubico/yubikey-manager.git'
-   'git+https://github.com/qtproject/qt-solutions')
-sha256sums=('SKIP'
-'SKIP'
-'SKIP'
+source=("https://developers.yubico.com/${pkgname}/Releases/${pkgname}-${pkgver}.tar.gz"{,.sig})
+sha256sums=('8049a233a8cca07543d745a9f619c0fc3afb324f5d0030b93f037b34ac1c5e66'
 'SKIP')
 
-prepare() {
-   cd yubikey-manager-qt/
-
-   git config --file=.gitmodules submodule.vendor/pyotherside.url 
../pyotherside/
-   git config --file=.gitmodules submodule.vendor/yubikey-manager.url 
../yubikey-manager/
-   git config --file=.gitmodules 
submodule.ykman-gui/vendor/qt-solutions.url ../qt-solutions/
-
-   git submodule init
-   git submodule update
-}
-
-
 build() {
-   cd yubikey-manager-qt/
-
qmake-qt5
make
 }
 
 package() {
-   cd yubikey-manager-qt/
-
make INSTALL_ROOT="${pkgdir}/" install
-
install -D -m0644 resources/ykman-gui.desktop 
"${pkgdir}/usr/share/applications/ykman-gui.desktop"
install -D -m0644 resources/icons/ykman.png 
"${pkgdir}/usr/share/pixmaps/ykman.png"
-
install -D -m0644 debian/copyright 
"${pkgdir}/usr/share/licenses/${pkgname}/copyright"
 }
 


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

2019-01-09 Thread Morten Linderud via arch-commits
Date: Wednesday, January 9, 2019 @ 11:46:24
  Author: foxboron
Revision: 421114

archrelease: copy trunk to community-any

Added:
  yubikey-manager/repos/community-any/PKGBUILD
(from rev 421113, yubikey-manager/trunk/PKGBUILD)
Deleted:
  yubikey-manager/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-09 11:46:14 UTC (rev 421113)
+++ PKGBUILD2019-01-09 11:46:24 UTC (rev 421114)
@@ -1,28 +0,0 @@
-# Maintainer: Christian Hesse 
-# Contributor: Karol Babioch 
-
-pkgname='yubikey-manager'
-pkgver=1.0.1
-pkgrel=1
-pkgdesc='Python library and command line tool for configuring a YubiKey'
-arch=('any')
-url='https://developers.yubico.com/yubikey-manager/'
-license=('BSD')
-depends=('python' 'python-click' 'python-cryptography' 'python-pyopenssl' 
'python-pyscard'
- 'python-pyusb' 'python-six' 'python-fido2' 'ccid' 'libu2f-host'
- 'yubikey-personalization')
-makedepends=('python-setuptools')
-validpgpkeys=('8D0B4EBA9345254BCEC0E843514F078FF4AB24C3'  # Dag Heyman 

-  '57A9DEED4C6D962A923BB691816F3ED99921835E') # Emil Lundberg 
(Software Developer) 
-source=("https://developers.yubico.com/$pkgname/Releases/yubikey-manager-$pkgver.tar.gz"{,.sig})
-sha256sums=('1f915d8899dbcf85b6b9879f5664953ce1edcd5a503a00d03b9c6298900bfc44'
-'SKIP')
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-
-   python setup.py install --root="${pkgdir}/" --optimize=1
-
-   install -D -m0644 COPYING 
"${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
-}
-

Copied: yubikey-manager/repos/community-any/PKGBUILD (from rev 421113, 
yubikey-manager/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-09 11:46:24 UTC (rev 421114)
@@ -0,0 +1,31 @@
+# Maintainer: Christian Hesse 
+# Maintainer: Morten Linderud 
+# Contributor: Karol Babioch 
+
+pkgname='yubikey-manager'
+pkgver=2.0.0
+pkgrel=1
+pkgdesc='Python library and command line tool for configuring a YubiKey'
+arch=('any')
+url='https://developers.yubico.com/yubikey-manager/'
+license=('BSD')
+depends=('python' 'python-click' 'python-cryptography' 'python-pyopenssl' 
'python-pyscard'
+ 'python-pyusb' 'python-six' 'python-fido2' 'ccid' 'libu2f-host'
+ 'yubikey-personalization')
+makedepends=('python-setuptools')
+validpgpkeys=('8D0B4EBA9345254BCEC0E843514F078FF4AB24C3'  # Dag Heyman 

+  '57A9DEED4C6D962A923BB691816F3ED99921835E') # Emil Lundberg 
(Software Developer) 
+source=("https://developers.yubico.com/$pkgname/Releases/yubikey-manager-$pkgver.tar.gz"{,.sig})
+sha256sums=('e95b4c4e956e105780e59ca2e4f159b4e974da38cdc810d4157e8d979ebf66f4'
+'SKIP')
+
+build() {
+   cd "${pkgname}-${pkgver}"
+   python setup.py build
+}
+
+package() {
+   cd "${pkgname}-${pkgver}"
+   python setup.py install --root="${pkgdir}/" --optimize=1 --skip-build
+   install -D -m0644 COPYING 
"${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}


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

2019-01-09 Thread Morten Linderud via arch-commits
Date: Wednesday, January 9, 2019 @ 11:46:14
  Author: foxboron
Revision: 421113

upgpkg: yubikey-manager 2.0.0-1

Modified:
  yubikey-manager/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-09 10:56:42 UTC (rev 421112)
+++ PKGBUILD2019-01-09 11:46:14 UTC (rev 421113)
@@ -1,8 +1,9 @@
 # Maintainer: Christian Hesse 
+# Maintainer: Morten Linderud 
 # Contributor: Karol Babioch 
 
 pkgname='yubikey-manager'
-pkgver=1.0.1
+pkgver=2.0.0
 pkgrel=1
 pkgdesc='Python library and command line tool for configuring a YubiKey'
 arch=('any')
@@ -15,14 +16,16 @@
 validpgpkeys=('8D0B4EBA9345254BCEC0E843514F078FF4AB24C3'  # Dag Heyman 

   '57A9DEED4C6D962A923BB691816F3ED99921835E') # Emil Lundberg 
(Software Developer) 
 
source=("https://developers.yubico.com/$pkgname/Releases/yubikey-manager-$pkgver.tar.gz"{,.sig})
-sha256sums=('1f915d8899dbcf85b6b9879f5664953ce1edcd5a503a00d03b9c6298900bfc44'
+sha256sums=('e95b4c4e956e105780e59ca2e4f159b4e974da38cdc810d4157e8d979ebf66f4'
 'SKIP')
 
+build() {
+   cd "${pkgname}-${pkgver}"
+   python setup.py build
+}
+
 package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-
-   python setup.py install --root="${pkgdir}/" --optimize=1
-
+   cd "${pkgname}-${pkgver}"
+   python setup.py install --root="${pkgdir}/" --optimize=1 --skip-build
install -D -m0644 COPYING 
"${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
 }
-


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

2019-01-08 Thread Morten Linderud via arch-commits
Date: Tuesday, January 8, 2019 @ 21:00:13
  Author: foxboron
Revision: 421056

archrelease: copy trunk to community-any

Added:
  neofetch/repos/community-any/PKGBUILD
(from rev 421055, neofetch/trunk/PKGBUILD)
Deleted:
  neofetch/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-08 21:00:03 UTC (rev 421055)
+++ PKGBUILD2019-01-08 21:00:13 UTC (rev 421056)
@@ -1,35 +0,0 @@
-# Maintainer: Morten Linderud 
-# Contributor: Dylan Araps 
-
-pkgname=neofetch
-pkgver=5.0.0
-pkgrel=1
-pkgdesc="A CLI system information tool written in BASH that supports 
displaying images."
-arch=('any')
-url="https://github.com/dylanaraps/neofetch;
-license=('MIT')
-depends=('bash')
-backup=('etc/neofetch/config.conf')
-optdepends=(
-  'catimg: Display Images'
-  'feh: Wallpaper Display'
-  'imagemagick: Image cropping / Thumbnail creation / Take a screenshot'
-  'jp2a: Display Images'
-  'libcaca: Display Images'
-  'nitrogen: Wallpaper Display'
-  'pacman-contrib: Display package count'
-  'w3m: Display Images'
-  'xdotool: See 
https://github.com/dylanaraps/neofetch/wiki/Images-in-the-terminal'
-  'xorg-xdpyinfo: Resolution detection (Single Monitor)'
-  'xorg-xprop: Desktop Environment and Window Manager'
-  'xorg-xrandr: Resolution detection (Multi Monitor + Refresh rates)'
-  'xorg-xwininfo: See 
https://github.com/dylanaraps/neofetch/wiki/Images-in-the-terminal'
-)
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/dylanaraps/neofetch/archive/${pkgver}.tar.gz;)
-sha256sums=('2a4f4853bf83b88a037994dbc53a90c8bd5708f5eeb3392f56d4e49c49d995b3')
-
-package() {
-  cd "${pkgname}-${pkgver}/"
-  make DESTDIR="$pkgdir" install
-  install -Dm644 LICENSE.md 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.md"
-}

Copied: neofetch/repos/community-any/PKGBUILD (from rev 421055, 
neofetch/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-08 21:00:13 UTC (rev 421056)
@@ -0,0 +1,36 @@
+# Maintainer: Morten Linderud 
+# Contributor: Dylan Araps 
+
+pkgname=neofetch
+pkgver=6.0.0
+pkgrel=1
+pkgdesc="A CLI system information tool written in BASH that supports 
displaying images."
+arch=('any')
+url="https://github.com/dylanaraps/neofetch;
+license=('MIT')
+depends=('bash')
+backup=('etc/neofetch/config.conf')
+optdepends=(
+  'catimg: Display Images'
+  'chafa: Image to text support'
+  'feh: Wallpaper Display'
+  'imagemagick: Image cropping / Thumbnail creation / Take a screenshot'
+  'jp2a: Display Images'
+  'libcaca: Display Images'
+  'nitrogen: Wallpaper Display'
+  'pacman-contrib: Display package count'
+  'w3m: Display Images'
+  'xdotool: See 
https://github.com/dylanaraps/neofetch/wiki/Images-in-the-terminal'
+  'xorg-xdpyinfo: Resolution detection (Single Monitor)'
+  'xorg-xprop: Desktop Environment and Window Manager'
+  'xorg-xrandr: Resolution detection (Multi Monitor + Refresh rates)'
+  'xorg-xwininfo: See 
https://github.com/dylanaraps/neofetch/wiki/Images-in-the-terminal'
+)
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/dylanaraps/neofetch/archive/${pkgver}.tar.gz;)
+sha256sums=('264a7689561bb498f97f10231959bdd8f7c873671bac2ffb660de9a5863b1c76')
+
+package() {
+  cd "${pkgname}-${pkgver}/"
+  make DESTDIR="$pkgdir" install
+  install -Dm644 LICENSE.md 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.md"
+}


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

2019-01-08 Thread Morten Linderud via arch-commits
Date: Tuesday, January 8, 2019 @ 21:00:03
  Author: foxboron
Revision: 421055

upgpkg: neofetch 6.0.0-1

Modified:
  neofetch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-08 20:24:17 UTC (rev 421054)
+++ PKGBUILD2019-01-08 21:00:03 UTC (rev 421055)
@@ -2,7 +2,7 @@
 # Contributor: Dylan Araps 
 
 pkgname=neofetch
-pkgver=5.0.0
+pkgver=6.0.0
 pkgrel=1
 pkgdesc="A CLI system information tool written in BASH that supports 
displaying images."
 arch=('any')
@@ -12,6 +12,7 @@
 backup=('etc/neofetch/config.conf')
 optdepends=(
   'catimg: Display Images'
+  'chafa: Image to text support'
   'feh: Wallpaper Display'
   'imagemagick: Image cropping / Thumbnail creation / Take a screenshot'
   'jp2a: Display Images'
@@ -26,7 +27,7 @@
   'xorg-xwininfo: See 
https://github.com/dylanaraps/neofetch/wiki/Images-in-the-terminal'
 )
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/dylanaraps/neofetch/archive/${pkgver}.tar.gz;)
-sha256sums=('2a4f4853bf83b88a037994dbc53a90c8bd5708f5eeb3392f56d4e49c49d995b3')
+sha256sums=('264a7689561bb498f97f10231959bdd8f7c873671bac2ffb660de9a5863b1c76')
 
 package() {
   cd "${pkgname}-${pkgver}/"


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

2019-01-06 Thread Morten Linderud via arch-commits
Date: Sunday, January 6, 2019 @ 22:46:32
  Author: foxboron
Revision: 420778

archrelease: copy trunk to community-x86_64

Added:
  python-wxpython/repos/community-x86_64/PKGBUILD
(from rev 420777, python-wxpython/trunk/PKGBUILD)
  python-wxpython/repos/community-x86_64/use-waf-2.0.8.patch
(from rev 420777, python-wxpython/trunk/use-waf-2.0.8.patch)
Deleted:
  python-wxpython/repos/community-x86_64/PKGBUILD
  python-wxpython/repos/community-x86_64/use-waf-2.0.8.patch

-+
 PKGBUILD|   82 ++--
 use-waf-2.0.8.patch |  202 +-
 2 files changed, 142 insertions(+), 142 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-06 22:41:57 UTC (rev 420777)
+++ PKGBUILD2019-01-06 22:46:32 UTC (rev 420778)
@@ -1,41 +0,0 @@
-# Maintainer: Eric Bélanger 
-
-pkgname=python-wxpython
-_pkgname=wxPython
-pkgver=4.0.3
-pkgrel=5
-pkgdesc="Phoenix wxWidgets GUI toolkit for Python"
-arch=('x86_64')
-license=('custom:wxWindows')
-url="https://www.wxpython.org;
-depends=('wxgtk3' 'python-setuptools' 'python-six' 'python-pypubsub')
-makedepends=('mesa' 'glu' 'webkit2gtk')
-checkdepends=('xorg-server-xvfb' 'python-pytest' 'python-numpy')
-source=("https://files.pythonhosted.org/packages/source/w/wxPython/wxPython-${pkgver}.tar.gz;)
-sha512sums=('911dd98d15b0cbc2551f1b22a21fdae4450656ca59cc93216b7c6a8a00e399b929b78484637992d78cecffb098b8d8dc408c24795549827e2f90ce42740c3bf9')
-
-prepare() {
-  sed -i "s|WX_CONFIG = 'wx-config'|WX_CONFIG = 'wx-config-gtk3'|" 
$_pkgname-$pkgver/build.py
-}
-
-build() {
-  cd $_pkgname-$pkgver
-
-  python build.py build --use_syswx --release
-}
-
-check() {
-  cd $_pkgname-$pkgver
-
-  xvfb-run python build.py test
-}
-
-package() {
-  cd $_pkgname-$pkgver
-
-  python build.py install --destdir="$pkgdir"
-
-  install -Dm 644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
-  find "$pkgdir/usr/lib" -type f | xargs chmod 644
-}
-

Copied: python-wxpython/repos/community-x86_64/PKGBUILD (from rev 420777, 
python-wxpython/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-06 22:46:32 UTC (rev 420778)
@@ -0,0 +1,41 @@
+# Maintainer: Eric Bélanger 
+
+pkgname=python-wxpython
+_pkgname=wxPython
+pkgver=4.0.4
+pkgrel=5
+pkgdesc="Phoenix wxWidgets GUI toolkit for Python"
+arch=('x86_64')
+license=('custom:wxWindows')
+url="https://www.wxpython.org;
+depends=('wxgtk3' 'python-setuptools' 'python-six' 'python-pypubsub')
+makedepends=('mesa' 'glu' 'webkit2gtk')
+checkdepends=('xorg-server-xvfb' 'python-pytest' 'python-numpy')
+source=("https://files.pythonhosted.org/packages/source/w/wxPython/wxPython-${pkgver}.tar.gz;)
+sha512sums=('48895f191150c63c253eb4136b78ff7803b6df566ca92b9fcf3c3fff3c893a57ff52a51b331333cf2200a053b8d0ea7facb39d7bfb581a78e009a24c31437cae')
+
+prepare() {
+  sed -i "s|WX_CONFIG = 'wx-config'|WX_CONFIG = 'wx-config-gtk3'|" 
$_pkgname-$pkgver/build.py
+}
+
+build() {
+  cd $_pkgname-$pkgver
+
+  python build.py build --use_syswx --release
+}
+
+check() {
+  cd $_pkgname-$pkgver
+
+  xvfb-run python build.py test
+}
+
+package() {
+  cd $_pkgname-$pkgver
+
+  python build.py install --destdir="$pkgdir"
+
+  install -Dm 644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
+  find "$pkgdir/usr/lib" -type f | xargs chmod 644
+}
+

Deleted: use-waf-2.0.8.patch
===
--- use-waf-2.0.8.patch 2019-01-06 22:41:57 UTC (rev 420777)
+++ use-waf-2.0.8.patch 2019-01-06 22:46:32 UTC (rev 420778)
@@ -1,101 +0,0 @@
-From 1eb0f5aad704c07de45e5092dde04c8051e421ae Mon Sep 17 00:00:00 2001
-From: Robin Dunn 
-Date: Sat, 5 May 2018 21:03:30 -0700
-Subject: [PATCH 1/2] Update waf to version 2.0.7
-

- build.py | 4 ++--
- wscript  | 4 ++--
- 2 files changed, 4 insertions(+), 4 deletions(-)
-
-diff --git a/build.py b/build.py
-index 41ed39ac..a56d3e22 100755
 a/build.py
-+++ b/build.py
-@@ -83,8 +83,8 @@ sipMD5 = {
- 'linux64'  : 'b349127a4d46452936e4181d96b12c2d',
- }
- 
--wafCurrentVersion = '1.7.15-p1'
--wafMD5 = 'e44003373c965f4221bbdc4c9b846128'
-+wafCurrentVersion = '2.0.7'
-+wafMD5 = '48ac1250bcccd0674cf461937875ce9a'
- 
- doxygenCurrentVersion = '1.8.8'
- doxygenMD5 = {
-diff --git a/wscript b/wscript
-index d051ebbc..c4bc96fd 100644
 a/wscript
-+++ b/wscript
-@@ -30,7 +30,7 @@ def options(opt):
- if isWindows:
- opt.load('msvc')
- else:
--opt.load('compiler_cc compiler_cxx')
-+opt.load('compiler_c compiler_cxx')
- opt.load('python')
- 
- opt.add_option('--debug', dest='debug', action='store_true', 
default=False,
-@@ -78,7 +78,7 @@ def configure(conf):
- conf.env['MSVC_TARGETS'] = [conf.options.msvc_arch]
- conf.load('msvc')
- else:
--conf.load('compiler_cc 

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

2019-01-06 Thread Morten Linderud via arch-commits
Date: Sunday, January 6, 2019 @ 22:41:57
  Author: foxboron
Revision: 420777

upgpkg: python-wxpython 4.0.4-5

Modified:
  python-wxpython/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-06 22:20:48 UTC (rev 420776)
+++ PKGBUILD2019-01-06 22:41:57 UTC (rev 420777)
@@ -2,7 +2,7 @@
 
 pkgname=python-wxpython
 _pkgname=wxPython
-pkgver=4.0.3
+pkgver=4.0.4
 pkgrel=5
 pkgdesc="Phoenix wxWidgets GUI toolkit for Python"
 arch=('x86_64')
@@ -12,7 +12,7 @@
 makedepends=('mesa' 'glu' 'webkit2gtk')
 checkdepends=('xorg-server-xvfb' 'python-pytest' 'python-numpy')
 
source=("https://files.pythonhosted.org/packages/source/w/wxPython/wxPython-${pkgver}.tar.gz;)
-sha512sums=('911dd98d15b0cbc2551f1b22a21fdae4450656ca59cc93216b7c6a8a00e399b929b78484637992d78cecffb098b8d8dc408c24795549827e2f90ce42740c3bf9')
+sha512sums=('48895f191150c63c253eb4136b78ff7803b6df566ca92b9fcf3c3fff3c893a57ff52a51b331333cf2200a053b8d0ea7facb39d7bfb581a78e009a24c31437cae')
 
 prepare() {
   sed -i "s|WX_CONFIG = 'wx-config'|WX_CONFIG = 'wx-config-gtk3'|" 
$_pkgname-$pkgver/build.py


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

2019-01-06 Thread Morten Linderud via arch-commits
Date: Sunday, January 6, 2019 @ 22:11:33
  Author: foxboron
Revision: 420769

upgpkg: restic 0.9.4-1

Modified:
  restic/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-06 22:07:46 UTC (rev 420768)
+++ PKGBUILD2019-01-06 22:11:33 UTC (rev 420769)
@@ -1,6 +1,6 @@
 # Maintainer: Morten Linderud 
 pkgname=restic
-pkgver=0.9.3
+pkgver=0.9.4
 pkgrel=1
 pkgdesc="Fast, secure, efficient backup program"
 arch=('x86_64')
@@ -9,7 +9,7 @@
 makedepends=('go-pie')
 optdepends=('fuse2: mount archive')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/restic/restic/archive/v${pkgver}.tar.gz;)
-sha256sums=('b95a258099aee9a56e620ccebcecabc246ee7f8390e3937ccedadd609c6d2dd0')
+sha256sums=('c7dca90fb6fd83cee8b9f6a2776f5839794341af1953d251bf06a91870be7a8e')
 
 prepare(){
   export GOPATH="${srcdir}"
@@ -21,7 +21,7 @@
 build(){
   cd "src/github.com/restic/restic"
   export GOPATH="${srcdir}"
-  go install -ldflags "-X 'main.version=${pkgver}'" -gcflags 
"all=-trimpath=${GOPATH}" -asmflags "all=-trimpath=${GOPATH}" ./cmd/...
+  go install -ldflags "-X 'main.version=${pkgver}' -extldflags ${LDFLAGS}" 
-gcflags "all=-trimpath=${GOPATH}" -asmflags "all=-trimpath=${GOPATH}" ./cmd/...
 }
 
 package() {


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

2019-01-06 Thread Morten Linderud via arch-commits
Date: Sunday, January 6, 2019 @ 22:11:47
  Author: foxboron
Revision: 420770

archrelease: copy trunk to community-x86_64

Added:
  restic/repos/community-x86_64/PKGBUILD
(from rev 420769, restic/trunk/PKGBUILD)
Deleted:
  restic/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-06 22:11:33 UTC (rev 420769)
+++ PKGBUILD2019-01-06 22:11:47 UTC (rev 420770)
@@ -1,36 +0,0 @@
-# Maintainer: Morten Linderud 
-pkgname=restic
-pkgver=0.9.3
-pkgrel=1
-pkgdesc="Fast, secure, efficient backup program"
-arch=('x86_64')
-url="https://restic.net;
-license=('BSD')
-makedepends=('go-pie')
-optdepends=('fuse2: mount archive')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/restic/restic/archive/v${pkgver}.tar.gz;)
-sha256sums=('b95a258099aee9a56e620ccebcecabc246ee7f8390e3937ccedadd609c6d2dd0')
-
-prepare(){
-  export GOPATH="${srcdir}"
-  mkdir -p src/github.com/restic
-  #mv "${pkgname}-${pkgver}"/vendor/* src/
-  ln -rTsf "${pkgname}-${pkgver}" src/github.com/restic/restic
-}
-
-build(){
-  cd "src/github.com/restic/restic"
-  export GOPATH="${srcdir}"
-  go install -ldflags "-X 'main.version=${pkgver}'" -gcflags 
"all=-trimpath=${GOPATH}" -asmflags "all=-trimpath=${GOPATH}" ./cmd/...
-}
-
-package() {
-  install -Dm755 bin/restic "${pkgdir}/usr/bin/restic"
-
-  cd "${pkgname}-${pkgver}"
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  install -Dm644 -t "$pkgdir/usr/share/man/man1/" doc/man/*.1
-  install -Dm644 doc/zsh-completion.zsh 
"$pkgdir/usr/share/zsh/site-functions/_restic"
-  install -Dm644 doc/bash-completion.sh 
"$pkgdir/usr/share/bash-completion/completions/restic"
-
-}

Copied: restic/repos/community-x86_64/PKGBUILD (from rev 420769, 
restic/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-06 22:11:47 UTC (rev 420770)
@@ -0,0 +1,36 @@
+# Maintainer: Morten Linderud 
+pkgname=restic
+pkgver=0.9.4
+pkgrel=1
+pkgdesc="Fast, secure, efficient backup program"
+arch=('x86_64')
+url="https://restic.net;
+license=('BSD')
+makedepends=('go-pie')
+optdepends=('fuse2: mount archive')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/restic/restic/archive/v${pkgver}.tar.gz;)
+sha256sums=('c7dca90fb6fd83cee8b9f6a2776f5839794341af1953d251bf06a91870be7a8e')
+
+prepare(){
+  export GOPATH="${srcdir}"
+  mkdir -p src/github.com/restic
+  #mv "${pkgname}-${pkgver}"/vendor/* src/
+  ln -rTsf "${pkgname}-${pkgver}" src/github.com/restic/restic
+}
+
+build(){
+  cd "src/github.com/restic/restic"
+  export GOPATH="${srcdir}"
+  go install -ldflags "-X 'main.version=${pkgver}' -extldflags ${LDFLAGS}" 
-gcflags "all=-trimpath=${GOPATH}" -asmflags "all=-trimpath=${GOPATH}" ./cmd/...
+}
+
+package() {
+  install -Dm755 bin/restic "${pkgdir}/usr/bin/restic"
+
+  cd "${pkgname}-${pkgver}"
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -Dm644 -t "$pkgdir/usr/share/man/man1/" doc/man/*.1
+  install -Dm644 doc/zsh-completion.zsh 
"$pkgdir/usr/share/zsh/site-functions/_restic"
+  install -Dm644 doc/bash-completion.sh 
"$pkgdir/usr/share/bash-completion/completions/restic"
+
+}


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

2019-01-01 Thread Morten Linderud via arch-commits
Date: Tuesday, January 1, 2019 @ 19:10:41
  Author: foxboron
Revision: 420219

archrelease: copy trunk to community-x86_64

Added:
  bolt/repos/community-x86_64/PKGBUILD
(from rev 420218, bolt/trunk/PKGBUILD)
Deleted:
  bolt/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   74 ++---
 1 file changed, 37 insertions(+), 37 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-01 19:10:31 UTC (rev 420218)
+++ PKGBUILD2019-01-01 19:10:41 UTC (rev 420219)
@@ -1,37 +0,0 @@
-# Maintainer: Morten Linderud 
-# Maintainer: Jaroslav Lichtblau 
-
-pkgname=bolt
-pkgver=0.6
-pkgrel=1
-pkgdesc="Thunderbolt 3 device manager"
-arch=('x86_64')
-url="https://gitlab.freedesktop.org/bolt/bolt;
-license=('LGPL')
-depends=('polkit' 'systemd')
-makedepends=('asciidoc' 'meson' 'python-setuptools')
-checkdepends=('umockdev')
-source=("https://gitlab.freedesktop.org/$pkgname/$pkgname/-/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
-sha256sums=('0a50cfcf73cbc897c2d265b227afe1799d9d846c64f866fffb62dd486d5b3c4b')
-
-build() {
-  cd $pkgname-$pkgver
-
-  install -d ../build
-  arch-meson ../build
-  ninja -v -C ../build
-}
-
-check() {
-  cd $pkgname-$pkgver
-
-  ninja -C ../build test
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  DESTDIR="${pkgdir}" ninja -C ../build install
-# Fixup mode to match polkit
-  install -d -o root -g 102 -m 750 "${pkgdir}/usr/share/polkit-1/rules.d"
-}

Copied: bolt/repos/community-x86_64/PKGBUILD (from rev 420218, 
bolt/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-01-01 19:10:41 UTC (rev 420219)
@@ -0,0 +1,37 @@
+# Maintainer: Morten Linderud 
+# Maintainer: Jaroslav Lichtblau 
+
+pkgname=bolt
+pkgver=0.7
+pkgrel=1
+pkgdesc="Thunderbolt 3 device manager"
+arch=('x86_64')
+url="https://gitlab.freedesktop.org/bolt/bolt;
+license=('LGPL')
+depends=('polkit' 'systemd')
+makedepends=('asciidoc' 'meson' 'python-setuptools')
+checkdepends=('umockdev')
+source=("https://gitlab.freedesktop.org/$pkgname/$pkgname/-/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
+sha256sums=('46edbd2265a565625d8d236cc33c2c75125925a44960993d254453ae3ff09262')
+
+build() {
+  cd $pkgname-$pkgver
+
+  install -d ../build
+  arch-meson ../build
+  ninja -v -C ../build
+}
+
+check() {
+  cd $pkgname-$pkgver
+
+  ninja -C ../build test
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  DESTDIR="${pkgdir}" ninja -C ../build install
+# Fixup mode to match polkit
+  install -d -o root -g 102 -m 750 "${pkgdir}/usr/share/polkit-1/rules.d"
+}


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

2019-01-01 Thread Morten Linderud via arch-commits
Date: Tuesday, January 1, 2019 @ 19:10:31
  Author: foxboron
Revision: 420218

upgpkg: bolt 0.7-1

Modified:
  bolt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-01 18:45:14 UTC (rev 420217)
+++ PKGBUILD2019-01-01 19:10:31 UTC (rev 420218)
@@ -2,7 +2,7 @@
 # Maintainer: Jaroslav Lichtblau 
 
 pkgname=bolt
-pkgver=0.6
+pkgver=0.7
 pkgrel=1
 pkgdesc="Thunderbolt 3 device manager"
 arch=('x86_64')
@@ -12,7 +12,7 @@
 makedepends=('asciidoc' 'meson' 'python-setuptools')
 checkdepends=('umockdev')
 
source=("https://gitlab.freedesktop.org/$pkgname/$pkgname/-/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
-sha256sums=('0a50cfcf73cbc897c2d265b227afe1799d9d846c64f866fffb62dd486d5b3c4b')
+sha256sums=('46edbd2265a565625d8d236cc33c2c75125925a44960993d254453ae3ff09262')
 
 build() {
   cd $pkgname-$pkgver


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

2018-12-30 Thread Morten Linderud via arch-commits
Date: Sunday, December 30, 2018 @ 22:17:15
  Author: foxboron
Revision: 419855

upgpkg: python-pywal 3.2.1-2

Modified:
  python-pywal/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-30 22:17:08 UTC (rev 419854)
+++ PKGBUILD2018-12-30 22:17:15 UTC (rev 419855)
@@ -3,13 +3,12 @@
 
 pkgname=python-pywal
 pkgver=3.2.1
-pkgrel=1
+pkgrel=2
 pkgdesc="Generate and change colorschemes on the fly"
 arch=('any')
 url="https://github.com/dylanaraps/pywal/;
 license=('MIT')
-depends=('python' 'imagemagick')
-makedepends=('python-setuptools')
+depends=('python' 'imagemagick' 'python-setuptools')
 optdepends=('feh: set wallpaper'
 'nitrogen: set wallpaper'
'python2: reload gtk2 themes on the fly')


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

2018-12-30 Thread Morten Linderud via arch-commits
Date: Sunday, December 30, 2018 @ 22:17:27
  Author: foxboron
Revision: 419856

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-30 22:17:15 UTC (rev 419855)
+++ PKGBUILD2018-12-30 22:17:27 UTC (rev 419856)
@@ -1,33 +0,0 @@
-# Maintainer: Morten Linderud  
-# Contributor: Sean Haugh 
-
-pkgname=python-pywal
-pkgver=3.2.1
-pkgrel=1
-pkgdesc="Generate and change colorschemes on the fly"
-arch=('any')
-url="https://github.com/dylanaraps/pywal/;
-license=('MIT')
-depends=('python' 'imagemagick')
-makedepends=('python-setuptools')
-optdepends=('feh: set wallpaper'
-'nitrogen: set wallpaper'
-   'python2: reload gtk2 themes on the fly')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/dylanaraps/pywal/archive/${pkgver}.tar.gz;)
-sha256sums=('2301e9949eb6053a80ed59330f8cdbb3a11dab90e198059ea7a1f01894e00a8a')
-
-build(){
-  cd "pywal-${pkgver}"
-  python setup.py build
-}
-
-check(){
-  cd "pywal-${pkgver}"
-  python setup.py test
-}
-
-package() {
-  cd "pywal-${pkgver}"
-  python setup.py install --prefix=/usr --root="$pkgdir/" --optimize=1 
--skip-build
-  install -Dm644 LICENSE.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: python-pywal/repos/community-any/PKGBUILD (from rev 419855, 
python-pywal/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-30 22:17:27 UTC (rev 419856)
@@ -0,0 +1,32 @@
+# Maintainer: Morten Linderud  
+# Contributor: Sean Haugh 
+
+pkgname=python-pywal
+pkgver=3.2.1
+pkgrel=2
+pkgdesc="Generate and change colorschemes on the fly"
+arch=('any')
+url="https://github.com/dylanaraps/pywal/;
+license=('MIT')
+depends=('python' 'imagemagick' 'python-setuptools')
+optdepends=('feh: set wallpaper'
+'nitrogen: set wallpaper'
+   'python2: reload gtk2 themes on the fly')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/dylanaraps/pywal/archive/${pkgver}.tar.gz;)
+sha256sums=('2301e9949eb6053a80ed59330f8cdbb3a11dab90e198059ea7a1f01894e00a8a')
+
+build(){
+  cd "pywal-${pkgver}"
+  python setup.py build
+}
+
+check(){
+  cd "pywal-${pkgver}"
+  python setup.py test
+}
+
+package() {
+  cd "pywal-${pkgver}"
+  python setup.py install --prefix=/usr --root="$pkgdir/" --optimize=1 
--skip-build
+  install -Dm644 LICENSE.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2018-12-29 Thread Morten Linderud via arch-commits
Date: Saturday, December 29, 2018 @ 21:11:48
  Author: foxboron
Revision: 418919

upgpkg: jgmenu 1.6-1

Modified:
  jgmenu/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-29 20:41:03 UTC (rev 418918)
+++ PKGBUILD2018-12-29 21:11:48 UTC (rev 418919)
@@ -2,7 +2,7 @@
 # Contributor: Johan Malm 
 
 pkgname=jgmenu
-pkgver=1.5
+pkgver=1.6
 pkgrel=1
 pkgdesc="Small X11 menu intended to be used with openbox and tint2"
 arch=('i686' 'x86_64')
@@ -10,7 +10,7 @@
 license=('GPL')
 depends=('libx11' 'cairo' 'pango' 'libxrandr' 'librsvg' 'libxml2' 'glib2' 
'menu-cache' 'python')
 
source=("${pkgname}-${pkgver}.tar.gz::http://www.github.com/johanmalm/jgmenu/archive/v${pkgver}.tar.gz;)
-sha256sums=('5fbde27cb8493ce8ffcb9e2f0015219be1f85b7aa1a6e9ce5ed2f4ff091e25d6')
+sha256sums=('40c0a9a0cd2368eeda437a14685fffc8262020debc39bb4b2e7c4e72d7e4cf78')
 
 build() {
cd "$pkgname-$pkgver"


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

2018-12-29 Thread Morten Linderud via arch-commits
Date: Saturday, December 29, 2018 @ 21:11:56
  Author: foxboron
Revision: 418920

archrelease: copy trunk to community-x86_64

Added:
  jgmenu/repos/community-x86_64/PKGBUILD
(from rev 418919, jgmenu/trunk/PKGBUILD)
Deleted:
  jgmenu/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-29 21:11:48 UTC (rev 418919)
+++ PKGBUILD2018-12-29 21:11:56 UTC (rev 418920)
@@ -1,29 +0,0 @@
-# Maintainer: Mortne Linderu 
-# Contributor: Johan Malm 
-
-pkgname=jgmenu
-pkgver=1.5
-pkgrel=1
-pkgdesc="Small X11 menu intended to be used with openbox and tint2"
-arch=('i686' 'x86_64')
-url="http://www.github.com/johanmalm/jgmenu;
-license=('GPL')
-depends=('libx11' 'cairo' 'pango' 'libxrandr' 'librsvg' 'libxml2' 'glib2' 
'menu-cache' 'python')
-source=("${pkgname}-${pkgver}.tar.gz::http://www.github.com/johanmalm/jgmenu/archive/v${pkgver}.tar.gz;)
-sha256sums=('5fbde27cb8493ce8ffcb9e2f0015219be1f85b7aa1a6e9ce5ed2f4ff091e25d6')
-
-build() {
-   cd "$pkgname-$pkgver"
-   make
-}
-
-check(){
-   cd "$pkgname-$pkgver"
-   make check
-   make test
-}
-
-package() {
-   cd "$pkgname-$pkgver"
-   make DESTDIR="$pkgdir" prefix=/usr install
-}

Copied: jgmenu/repos/community-x86_64/PKGBUILD (from rev 418919, 
jgmenu/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-29 21:11:56 UTC (rev 418920)
@@ -0,0 +1,29 @@
+# Maintainer: Mortne Linderu 
+# Contributor: Johan Malm 
+
+pkgname=jgmenu
+pkgver=1.6
+pkgrel=1
+pkgdesc="Small X11 menu intended to be used with openbox and tint2"
+arch=('i686' 'x86_64')
+url="http://www.github.com/johanmalm/jgmenu;
+license=('GPL')
+depends=('libx11' 'cairo' 'pango' 'libxrandr' 'librsvg' 'libxml2' 'glib2' 
'menu-cache' 'python')
+source=("${pkgname}-${pkgver}.tar.gz::http://www.github.com/johanmalm/jgmenu/archive/v${pkgver}.tar.gz;)
+sha256sums=('40c0a9a0cd2368eeda437a14685fffc8262020debc39bb4b2e7c4e72d7e4cf78')
+
+build() {
+   cd "$pkgname-$pkgver"
+   make
+}
+
+check(){
+   cd "$pkgname-$pkgver"
+   make check
+   make test
+}
+
+package() {
+   cd "$pkgname-$pkgver"
+   make DESTDIR="$pkgdir" prefix=/usr install
+}


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

2018-12-29 Thread Morten Linderud via arch-commits
Date: Saturday, December 29, 2018 @ 20:12:46
  Author: foxboron
Revision: 418914

archrelease: copy trunk to community-any

Added:
  mopidy/repos/community-any/PKGBUILD
(from rev 418913, mopidy/trunk/PKGBUILD)
  mopidy/repos/community-any/logging.conf
(from rev 418913, mopidy/trunk/logging.conf)
  mopidy/repos/community-any/mopidy.conf
(from rev 418913, mopidy/trunk/mopidy.conf)
  mopidy/repos/community-any/mopidy.sysusers
(from rev 418913, mopidy/trunk/mopidy.sysusers)
Deleted:
  mopidy/repos/community-any/PKGBUILD
  mopidy/repos/community-any/logging.conf
  mopidy/repos/community-any/mopidy.conf
  mopidy/repos/community-any/mopidy.sysusers

-+
 PKGBUILD|  136 +++---
 logging.conf|   42 
 mopidy.conf |   30 +--
 mopidy.sysusers |4 -
 4 files changed, 106 insertions(+), 106 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-29 20:12:27 UTC (rev 418913)
+++ PKGBUILD2018-12-29 20:12:46 UTC (rev 418914)
@@ -1,68 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Alexandre Petitjean 
-
-pkgname=mopidy
-pkgver=2.2.1
-pkgrel=1
-pkgdesc="An extensible music server written in Python"
-arch=('any')
-url="http://www.mopidy.com;
-license=('APACHE')
-depends=('python2' 'python2-pykka' 'python2-setuptools' 'python2-requests' 
'gstreamer'
- 'gst-python2' 'gst-plugins-good' 'gst-plugins-ugly' 'python2-tornado' 
'gst-plugins-base')
-makedepends=('python2-sphinx')
-backup=('etc/mopidy/mopidy.conf')
-source=("https://github.com/mopidy/mopidy/archive/v${pkgver}.tar.gz;
-'mopidy.conf'
-'logging.conf'
-'mopidy.sysusers')
-sha512sums=('13dc2dd47be9c1022921b8568c80c77052ec0b3f39e7f759205364cf59f03db74e052c21b14b6a68d1c574cd9e8151e811fd2f47280d4048da54da5c38e2f1de'
-
'eb66e8e826640a939b1ba51569ab7fab041b8b5e8823ea2d5f05596faf1de8882fd8c1c32bdb92534e759243fb5ff741bda0d2ebb3282af542d1287c8c68b5ea'
-
'0c438058500ab7559baae21b03b10e2b80b10c6b240b2100da1f4c84ea8efe24dc7a38a95034e75605eaf5d21604d13e5b8c7358778c555ddb6372a49388'
-
'ff6c9f0406dfc1cc01ac6edcc6bae429342437397321ab9205ca273a63b28611d08005a0a5dba639b5ae2157a4f03a1d58c2199f7dbc6965864685b4b71f0b6f')
-
-prepare() {
-  cd $pkgname-$pkgver
-  sed -e 's|, < 5||' -i setup.py
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-
-  make -C docs SPHINXBUILD=sphinx-build2 man
-  make -C docs SPHINXBUILD=sphinx-build2 html
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  python2 setup.py install --root="${pkgdir}/" --optimize=1
-
-  install -Dm755 extra/mopidyctl/mopidyctl "${pkgdir}/usr/bin/mopidyctl"
-
-  install -dm755 "${pkgdir}/usr/share/doc/mopidy"
-  cp -r docs/_build/html "${pkgdir}/usr/share/doc/mopidy"
-
-  install -dm755 "${pkgdir}/usr/share/man/man1/"
-  gzip -c docs/_build/man/mopidy.1 > "${pkgdir}/usr/share/man/man1/mopidy.1.gz"
-
-  install -dm755 "${pkgdir}/usr/share/man/man8/"
-  gzip -c extra/mopidyctl/mopidyctl.8 > 
"${pkgdir}/usr/share/man/man8/mopidyctl.8.gz"
-
-  install -Dm644 "${srcdir}/mopidy.conf" "${pkgdir}/etc/mopidy/mopidy.conf"
-  install -Dm644 "${srcdir}/logging.conf" "${pkgdir}/etc/mopidy/logging.conf"
-
-  install -Dm644 "extra/systemd/mopidy.service" 
"${pkgdir}/usr/lib/systemd/system/mopidy.service"
-  install -Dm644 "extra/desktop/mopidy.desktop" 
"${pkgdir}/usr/share/applications/mopidy.desktop"
-
-  install -dm755 -g 46 -o 46 "${pkgdir}/var/cache/mopidy"
-  install -dm755 -g 46 -o 46 "${pkgdir}/var/log/mopidy"
-  install -dm755 -g 46 -o 46 "${pkgdir}/var/lib/mopidy"
-  install -dm755 -g 46 -o 46 "${pkgdir}/var/lib/mopidy/local"
-  install -dm755 -g 46 -o 46 "${pkgdir}/var/lib/mopidy/media"
-  install -dm755 -g 46 -o 46 "${pkgdir}/var/lib/mopidy/playlists"
-
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  install -Dm644 "${srcdir}/mopidy.sysusers" 
"${pkgdir}/usr/lib/sysusers.d/$pkgname.conf"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: mopidy/repos/community-any/PKGBUILD (from rev 418913, 
mopidy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-29 20:12:46 UTC (rev 418914)
@@ -0,0 +1,68 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Alexandre Petitjean 
+
+pkgname=mopidy
+pkgver=2.2.2
+pkgrel=1
+pkgdesc="An extensible music server written in Python"
+arch=('any')
+url="http://www.mopidy.com;
+license=('APACHE')
+depends=('python2' 'python2-pykka' 'python2-setuptools' 'python2-requests' 
'gstreamer'
+ 'gst-python2' 'gst-plugins-good' 'gst-plugins-ugly' 'python2-tornado' 
'gst-plugins-base')
+makedepends=('python2-sphinx')
+backup=('etc/mopidy/mopidy.conf')
+source=("https://github.com/mopidy/mopidy/archive/v${pkgver}.tar.gz;
+'mopidy.conf'
+'logging.conf'
+'mopidy.sysusers')

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

2018-12-29 Thread Morten Linderud via arch-commits
Date: Saturday, December 29, 2018 @ 20:12:27
  Author: foxboron
Revision: 418913

upgpkg: mopidy 2.2.2-1

Modified:
  mopidy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-29 20:06:49 UTC (rev 418912)
+++ PKGBUILD2018-12-29 20:12:27 UTC (rev 418913)
@@ -2,7 +2,7 @@
 # Contributor: Alexandre Petitjean 
 
 pkgname=mopidy
-pkgver=2.2.1
+pkgver=2.2.2
 pkgrel=1
 pkgdesc="An extensible music server written in Python"
 arch=('any')
@@ -16,7 +16,7 @@
 'mopidy.conf'
 'logging.conf'
 'mopidy.sysusers')
-sha512sums=('13dc2dd47be9c1022921b8568c80c77052ec0b3f39e7f759205364cf59f03db74e052c21b14b6a68d1c574cd9e8151e811fd2f47280d4048da54da5c38e2f1de'
+sha512sums=('3826c69147f3aaf9ba6cb5663cbe8cf7c8d024167ec0071a4722621d994ca58575696c1c8292d09f3274aa7c871654f93a0f8e6338f528f6097b2f5f0491'
 
'eb66e8e826640a939b1ba51569ab7fab041b8b5e8823ea2d5f05596faf1de8882fd8c1c32bdb92534e759243fb5ff741bda0d2ebb3282af542d1287c8c68b5ea'
 
'0c438058500ab7559baae21b03b10e2b80b10c6b240b2100da1f4c84ea8efe24dc7a38a95034e75605eaf5d21604d13e5b8c7358778c555ddb6372a49388'
 
'ff6c9f0406dfc1cc01ac6edcc6bae429342437397321ab9205ca273a63b28611d08005a0a5dba639b5ae2157a4f03a1d58c2199f7dbc6965864685b4b71f0b6f')


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

2018-12-29 Thread Morten Linderud via arch-commits
Date: Saturday, December 29, 2018 @ 20:06:37
  Author: foxboron
Revision: 418911

upgpkg: python-docs 3.7.2-1

Modified:
  python-docs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-29 19:44:50 UTC (rev 418910)
+++ PKGBUILD2018-12-29 20:06:37 UTC (rev 418911)
@@ -1,9 +1,9 @@
 # Maintainer: Morten Linderud 
 # Contributor: Sergej Pupykin 
-# Contributor : Rohan Dhruva (rohandhruva at gmail dot com)
+# Contributor: Rohan Dhruva (rohandhruva at gmail dot com)
 
 pkgname=python-docs
-pkgver=3.7.1
+pkgver=3.7.2
 pkgrel=1
 pkgdesc="Set of HTML documentation for python"
 arch=('any')
@@ -11,7 +11,7 @@
 license=('GPL')
 options=('docs')
 
source=(https://sources.archlinux.org/other/community/python-docs/python-$pkgver-docs-html.tar.bz2)
-sha256sums=('78fdfce38a5c9887232f016bcb2f0b9030626196a5e737b958e10b20caa003a8')
+sha256sums=('36fb7f797208f23e98d17734c945ee91f9825da2d8ce37ba2d0bcb137bee33ba')
 
 package() {
   mkdir -p "$pkgdir"/usr/share/doc/python/html


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

2018-12-29 Thread Morten Linderud via arch-commits
Date: Saturday, December 29, 2018 @ 20:06:49
  Author: foxboron
Revision: 418912

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-29 20:06:37 UTC (rev 418911)
+++ PKGBUILD2018-12-29 20:06:49 UTC (rev 418912)
@@ -1,24 +0,0 @@
-# Maintainer: Morten Linderud 
-# Contributor: Sergej Pupykin 
-# Contributor : Rohan Dhruva (rohandhruva at gmail dot com)
-
-pkgname=python-docs
-pkgver=3.7.1
-pkgrel=1
-pkgdesc="Set of HTML documentation for python"
-arch=('any')
-url="http://docs.python.org/py3k/;
-license=('GPL')
-options=('docs')
-source=(https://sources.archlinux.org/other/community/python-docs/python-$pkgver-docs-html.tar.bz2)
-sha256sums=('78fdfce38a5c9887232f016bcb2f0b9030626196a5e737b958e10b20caa003a8')
-
-package() {
-  mkdir -p "$pkgdir"/usr/share/doc/python/html
-  cp -rf "$srcdir"/python-$pkgver-docs-html/* 
"$pkgdir"/usr/share/doc/python/html/
-  find "$pkgdir"/usr/share/doc/python/html/ -type f -exec chmod 0644 {} \;
-  find "$pkgdir"/usr/share/doc/python/html/ -type d -exec chmod 0755 {} \;
-  install -dm0755 "$pkgdir"/etc/profile.d
-  echo "export PYTHONDOCS=/usr/share/doc/python/html/library" 
>"$pkgdir"/etc/profile.d/$pkgname.sh
-  echo "setenv PYTHONDOCS /usr/share/doc/python/html/library" 
>"$pkgdir"/etc/profile.d/$pkgname.csh
-}

Copied: python-docs/repos/community-any/PKGBUILD (from rev 418911, 
python-docs/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-29 20:06:49 UTC (rev 418912)
@@ -0,0 +1,24 @@
+# Maintainer: Morten Linderud 
+# Contributor: Sergej Pupykin 
+# Contributor: Rohan Dhruva (rohandhruva at gmail dot com)
+
+pkgname=python-docs
+pkgver=3.7.2
+pkgrel=1
+pkgdesc="Set of HTML documentation for python"
+arch=('any')
+url="http://docs.python.org/py3k/;
+license=('GPL')
+options=('docs')
+source=(https://sources.archlinux.org/other/community/python-docs/python-$pkgver-docs-html.tar.bz2)
+sha256sums=('36fb7f797208f23e98d17734c945ee91f9825da2d8ce37ba2d0bcb137bee33ba')
+
+package() {
+  mkdir -p "$pkgdir"/usr/share/doc/python/html
+  cp -rf "$srcdir"/python-$pkgver-docs-html/* 
"$pkgdir"/usr/share/doc/python/html/
+  find "$pkgdir"/usr/share/doc/python/html/ -type f -exec chmod 0644 {} \;
+  find "$pkgdir"/usr/share/doc/python/html/ -type d -exec chmod 0755 {} \;
+  install -dm0755 "$pkgdir"/etc/profile.d
+  echo "export PYTHONDOCS=/usr/share/doc/python/html/library" 
>"$pkgdir"/etc/profile.d/$pkgname.sh
+  echo "setenv PYTHONDOCS /usr/share/doc/python/html/library" 
>"$pkgdir"/etc/profile.d/$pkgname.csh
+}


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

2018-12-29 Thread Morten Linderud via arch-commits
Date: Saturday, December 29, 2018 @ 15:13:20
  Author: foxboron
Revision: 418846

archrelease: copy trunk to community-any

Added:
  hy/repos/community-any/PKGBUILD
(from rev 418845, hy/trunk/PKGBUILD)
Deleted:
  hy/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-29 15:13:11 UTC (rev 418845)
+++ PKGBUILD2018-12-29 15:13:20 UTC (rev 418846)
@@ -1,42 +0,0 @@
-# Maintainer: Morten Linderud 
-# Contributor: JP Cimalando 
-
-pkgname=hy
-pkgver=0.15.0
-pkgrel=1
-pkgdesc="A dialect of Lisp that's embedded in Python"
-arch=('any')
-url="http://hylang.org/;
-license=('MIT')
-depends=('python-rply' 'python-astor' 'python-clint')
-makedepends=('python-setuptools')
-checkdepends=('python-pytest' 'python-pytest-runner')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/hylang/hy/archive/$pkgver.tar.gz;)
-md5sums=('74e6def3be716730706ff273bfa648eb')
-
-prepare() {
-cd "$pkgname-$pkgver"
-
-# usually generated from git metadata and aded to PyPI sdist
-# PyPI does not include testsuite files.
-echo "__version__ = '$pkgver'" > hy/version.py
-}
-
-build() {
-cd "$pkgname-$pkgver"
-python setup.py build
-}
-
-check(){
-cd "$pkgname-$pkgver"
-python setup.py develop --user
-PATH="$HOME/.local/bin:$PATH"
-python setup.py pytest --addopts "-k 'not test_bin'"
-}
-
-package() {
-cd "$pkgname-$pkgver"
-python setup.py install --root="$pkgdir/" --optimize=1 --skip-build
-install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-rm -rf "$pkgdir/usr/get_version"
-}

Copied: hy/repos/community-any/PKGBUILD (from rev 418845, hy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-29 15:13:20 UTC (rev 418846)
@@ -0,0 +1,42 @@
+# Maintainer: Morten Linderud 
+# Contributor: JP Cimalando 
+
+pkgname=hy
+pkgver=0.15.0
+pkgrel=2
+pkgdesc="A dialect of Lisp that's embedded in Python"
+arch=('any')
+url="http://hylang.org/;
+license=('MIT')
+depends=('python-rply' 'python-astor' 'python-clint' 'python-funcparserlib')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest' 'python-pytest-runner')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/hylang/hy/archive/$pkgver.tar.gz;)
+md5sums=('74e6def3be716730706ff273bfa648eb')
+
+prepare() {
+cd "$pkgname-$pkgver"
+
+# usually generated from git metadata and aded to PyPI sdist
+# PyPI does not include testsuite files.
+echo "__version__ = '$pkgver'" > hy/version.py
+}
+
+build() {
+cd "$pkgname-$pkgver"
+python setup.py build
+}
+
+check(){
+cd "$pkgname-$pkgver"
+python setup.py develop --user
+PATH="$HOME/.local/bin:$PATH"
+python setup.py pytest #--addopts "-k 'not test_bin'"
+}
+
+package() {
+cd "$pkgname-$pkgver"
+python setup.py install --root="$pkgdir/" --optimize=1 --skip-build
+install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+rm -rf "$pkgdir/usr/get_version"
+}


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

2018-12-29 Thread Morten Linderud via arch-commits
Date: Saturday, December 29, 2018 @ 15:13:11
  Author: foxboron
Revision: 418845

upgpkg: hy 0.15.0-2

Modified:
  hy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-29 14:33:47 UTC (rev 418844)
+++ PKGBUILD2018-12-29 15:13:11 UTC (rev 418845)
@@ -3,12 +3,12 @@
 
 pkgname=hy
 pkgver=0.15.0
-pkgrel=1
+pkgrel=2
 pkgdesc="A dialect of Lisp that's embedded in Python"
 arch=('any')
 url="http://hylang.org/;
 license=('MIT')
-depends=('python-rply' 'python-astor' 'python-clint')
+depends=('python-rply' 'python-astor' 'python-clint' 'python-funcparserlib')
 makedepends=('python-setuptools')
 checkdepends=('python-pytest' 'python-pytest-runner')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/hylang/hy/archive/$pkgver.tar.gz;)


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

2018-12-27 Thread Morten Linderud via arch-commits
Date: Thursday, December 27, 2018 @ 21:28:25
  Author: foxboron
Revision: 418568

archrelease: copy trunk to community-x86_64

Added:
  gopass/repos/community-x86_64/PKGBUILD
(from rev 418567, gopass/trunk/PKGBUILD)
Deleted:
  gopass/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-27 21:19:44 UTC (rev 418567)
+++ PKGBUILD2018-12-27 21:28:25 UTC (rev 418568)
@@ -1,35 +0,0 @@
-# Maintainer: Morten Linderud 
-pkgname=gopass
-pkgver=1.8.3
-pkgrel=1
-pkgdesc="The slightly more awesome standard unix password manager for teams."
-arch=('x86_64')
-url="https://github.com/gopasspw/gopass;
-license=('MIT')
-makedepends=('go-pie')
-optdepends=('xdotool: for typing passwords selected by dmenu'
-   'xsel: clipboard support'
-   'xclip: clipboard support')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/gopasspw/gopass/archive/v${pkgver}.tar.gz;)
-sha256sums=('ed03e6986a693c29da6a2ebb303618e6f16b2414f0dfd2df8537049a80d78bdf')
-
-prepare(){
-  export GOPATH="${srcdir}"
-  mkdir -p src
-  mv "${pkgname}-${pkgver}"/vendor/* src/
-  mkdir -p src/github.com/gopasspw
-  ln -rTsf "${pkgname}-${pkgver}" src/github.com/gopasspw/gopass
-}
-
-build(){
-  cd "${pkgname}-${pkgver}"
-  export GOPATH="${srcdir}"
-  make build
-  make completion
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" PREFIX="/usr" install
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: gopass/repos/community-x86_64/PKGBUILD (from rev 418567, 
gopass/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-27 21:28:25 UTC (rev 418568)
@@ -0,0 +1,35 @@
+# Maintainer: Morten Linderud 
+pkgname=gopass
+pkgver=1.8.4
+pkgrel=1
+pkgdesc="The slightly more awesome standard unix password manager for teams."
+arch=('x86_64')
+url="https://github.com/gopasspw/gopass;
+license=('MIT')
+makedepends=('go-pie')
+optdepends=('xdotool: for typing passwords selected by dmenu'
+   'xsel: clipboard support'
+   'xclip: clipboard support')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/gopasspw/gopass/archive/v${pkgver}.tar.gz;)
+sha256sums=('4d35dc565457d5dde05faa538be9e8c1e99527d48d7d759c1a7e4e5566f27171')
+
+prepare(){
+  export GOPATH="${srcdir}"
+  mkdir -p src
+  mv "${pkgname}-${pkgver}"/vendor/* src/
+  mkdir -p src/github.com/gopasspw
+  ln -rTsf "${pkgname}-${pkgver}" src/github.com/gopasspw/gopass
+}
+
+build(){
+  cd "${pkgname}-${pkgver}"
+  export GOPATH="${srcdir}"
+  make build
+  make completion
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" PREFIX="/usr" install
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}


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

2018-12-27 Thread Morten Linderud via arch-commits
Date: Thursday, December 27, 2018 @ 21:10:57
  Author: foxboron
Revision: 418565

upgpkg: gopass 1.8.4-1

Modified:
  gopass/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-27 21:09:38 UTC (rev 418564)
+++ PKGBUILD2018-12-27 21:10:57 UTC (rev 418565)
@@ -1,6 +1,6 @@
 # Maintainer: Morten Linderud 
 pkgname=gopass
-pkgver=1.8.3
+pkgver=1.8.4
 pkgrel=1
 pkgdesc="The slightly more awesome standard unix password manager for teams."
 arch=('x86_64')
@@ -11,7 +11,7 @@
'xsel: clipboard support'
'xclip: clipboard support')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/gopasspw/gopass/archive/v${pkgver}.tar.gz;)
-sha256sums=('ed03e6986a693c29da6a2ebb303618e6f16b2414f0dfd2df8537049a80d78bdf')
+sha256sums=('4d35dc565457d5dde05faa538be9e8c1e99527d48d7d759c1a7e4e5566f27171')
 
 prepare(){
   export GOPATH="${srcdir}"


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

2018-12-22 Thread Morten Linderud via arch-commits
Date: Saturday, December 22, 2018 @ 16:13:46
  Author: foxboron
Revision: 417549

upgpkg: go 2:1.11.4-1

Modified:
  go/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-22 16:05:24 UTC (rev 417548)
+++ PKGBUILD2018-12-22 16:13:46 UTC (rev 417549)
@@ -1,7 +1,7 @@
 # Maintainer: Alexander F. Rødseth 
-# Maintainer: Pierre Neidhardt 
+# Maintainer: Bartłomiej Piotrowski 
 # Maintainer: Morten Linderud 
-# Maintainer: Bartłomiej Piotrowski 
+# Contributor: Pierre Neidhardt 
 # Contributor: Vesa Kaihlavirta 
 # Contributor: Rémy Oudompheng 
 # Contributor: Andres Perera 
@@ -14,7 +14,7 @@
 pkgbase=go
 pkgname=(go go-pie)
 epoch=2
-pkgver=1.11.3
+pkgver=1.11.4
 pkgrel=1
 arch=(x86_64)
 url='https://golang.org/'
@@ -22,7 +22,7 @@
 makedepends=(git go)
 source=(https://storage.googleapis.com/golang/go$pkgver.src.tar.gz
 default-buildmode-pie.patch)
-sha256sums=('7ec5140f384db2bd42b396c93c231dfba342ee137ad8a4b33120016951eb1231'
+sha256sums=('4cfd42720a6b1e79a8024895fa6607b69972e8e32446df76d6ce79801bbadb15'
 '9d2f0d201d4e002d74f548cc82bd131139bab5dd62191004c71dd430fdc1666d')
 
 export GOOS=linux


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

2018-12-22 Thread Morten Linderud via arch-commits
Date: Saturday, December 22, 2018 @ 16:13:54
  Author: foxboron
Revision: 417550

archrelease: copy trunk to community-x86_64

Added:
  go/repos/community-x86_64/PKGBUILD
(from rev 417549, go/trunk/PKGBUILD)
  go/repos/community-x86_64/default-buildmode-pie.patch
(from rev 417549, go/trunk/default-buildmode-pie.patch)
Deleted:
  go/repos/community-x86_64/PKGBUILD
  go/repos/community-x86_64/default-buildmode-pie.patch

-+
 PKGBUILD|  210 +-
 default-buildmode-pie.patch |   28 ++---
 2 files changed, 119 insertions(+), 119 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-22 16:13:46 UTC (rev 417549)
+++ PKGBUILD2018-12-22 16:13:54 UTC (rev 417550)
@@ -1,105 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Maintainer: Pierre Neidhardt 
-# Maintainer: Morten Linderud 
-# Maintainer: Bartłomiej Piotrowski 
-# Contributor: Vesa Kaihlavirta 
-# Contributor: Rémy Oudompheng 
-# Contributor: Andres Perera 
-# Contributor: Matthew Bauer 
-# Contributor: Christian Himpel 
-# Contributor: Mike Rosset 
-# Contributor: Daniel YC Lin 
-# Contributor: John Luebs 
-
-pkgbase=go
-pkgname=(go go-pie)
-epoch=2
-pkgver=1.11.3
-pkgrel=1
-arch=(x86_64)
-url='https://golang.org/'
-license=(BSD)
-makedepends=(git go)
-source=(https://storage.googleapis.com/golang/go$pkgver.src.tar.gz
-default-buildmode-pie.patch)
-sha256sums=('7ec5140f384db2bd42b396c93c231dfba342ee137ad8a4b33120016951eb1231'
-'9d2f0d201d4e002d74f548cc82bd131139bab5dd62191004c71dd430fdc1666d')
-
-export GOOS=linux
-case "$CARCH" in
-  x86_64) export GOARCH=amd64 ;;
-esac
-export GOROOT_FINAL=/usr/lib/go
-export GOROOT_BOOTSTRAP=/usr/lib/go
-export GOCACHE=off
-
-prepare() {
-  cp -r $pkgbase $pkgbase-pie
-
-  cd $pkgbase-pie
-  patch -p1 -i "$srcdir/default-buildmode-pie.patch"
-}
-
-build() {
-  export GOPATH="$srcdir/"
-
-  for _pkgname in ${pkgname[@]}; do
-export GOROOT="$srcdir/$_pkgname"
-export GOBIN="$GOROOT/bin"
-
-cd "$srcdir/$_pkgname/src"
-./make.bash --no-clean -v
-
-PATH="$GOBIN:$PATH" go install -v -buildmode=shared std
-PATH="$GOBIN:$PATH" go install -v -race std
-  done
-}
-
-check() {
-  # Run test suite only for unpatched Go as it expects non-PIE ldBuildmode
-  export GOROOT="$srcdir/$pkgbase"
-  export GOBIN="$GOROOT/bin"
-  export PATH="$srcdir/$pkgbase/bin:$PATH"
-  export GO_TEST_TIMEOUT_SCALE=2
-
-  cd $pkgbase/src
-  ./run.bash --no-rebuild -v -v -v -k 
-}
-
-_package() {
-  options=(!strip staticlibs)
-  cd "$srcdir/$1"
-
-  install -d "$pkgdir/usr/bin" "$pkgdir/usr/lib/go" "$pkgdir/usr/share/doc/go"
-  cp -a bin pkg src lib misc api "$pkgdir/usr/lib/go"
-  cp -r doc/* "$pkgdir/usr/share/doc/go"
-
-  ln -sf /usr/lib/go/bin/go "$pkgdir/usr/bin/go"
-  ln -sf /usr/lib/go/bin/gofmt "$pkgdir/usr/bin/gofmt"
-  ln -sf /usr/share/doc/go "$pkgdir/usr/lib/go/doc"
-
-  install -Dm644 VERSION "$pkgdir/usr/lib/go/VERSION"
-
-  rm -rf "$pkgdir/usr/lib/go/pkg/bootstrap" "$pkgdir/usr/lib/go/pkg/tool/*/api"
-
-  # TODO: Figure out if really needed
-  rm -rf "$pkgdir"/usr/lib/go/pkg/obj/go-build/*
-
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$1/LICENSE"
-}
-
-package_go() {
-  pkgdesc='Core compiler tools for the Go programming language'
-
-  _package $pkgname
-}
-
-package_go-pie() {
-  pkgdesc='Core compiler tools for the Go programming language (with PIE 
enabled by default)'
-  provides=(go)
-  conflicts=(go)
-
-  _package $pkgname
-}
-
-# vim: ts=2 sw=2 et

Copied: go/repos/community-x86_64/PKGBUILD (from rev 417549, go/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-22 16:13:54 UTC (rev 417550)
@@ -0,0 +1,105 @@
+# Maintainer: Alexander F. Rødseth 
+# Maintainer: Bartłomiej Piotrowski 
+# Maintainer: Morten Linderud 
+# Contributor: Pierre Neidhardt 
+# Contributor: Vesa Kaihlavirta 
+# Contributor: Rémy Oudompheng 
+# Contributor: Andres Perera 
+# Contributor: Matthew Bauer 
+# Contributor: Christian Himpel 
+# Contributor: Mike Rosset 
+# Contributor: Daniel YC Lin 
+# Contributor: John Luebs 
+
+pkgbase=go
+pkgname=(go go-pie)
+epoch=2
+pkgver=1.11.4
+pkgrel=1
+arch=(x86_64)
+url='https://golang.org/'
+license=(BSD)
+makedepends=(git go)
+source=(https://storage.googleapis.com/golang/go$pkgver.src.tar.gz
+default-buildmode-pie.patch)
+sha256sums=('4cfd42720a6b1e79a8024895fa6607b69972e8e32446df76d6ce79801bbadb15'
+'9d2f0d201d4e002d74f548cc82bd131139bab5dd62191004c71dd430fdc1666d')
+
+export GOOS=linux
+case "$CARCH" in
+  x86_64) export GOARCH=amd64 ;;
+esac
+export GOROOT_FINAL=/usr/lib/go
+export GOROOT_BOOTSTRAP=/usr/lib/go
+export GOCACHE=off
+
+prepare() {
+  cp -r $pkgbase $pkgbase-pie
+
+  cd $pkgbase-pie
+  patch -p1 -i "$srcdir/default-buildmode-pie.patch"
+}
+
+build() {
+  export 

[arch-commits] Commit in python-psycopg2/trunk (ChangeLog)

2018-12-22 Thread Morten Linderud via arch-commits
Date: Saturday, December 22, 2018 @ 13:00:36
  Author: foxboron
Revision: 417543

Removed changelog

Deleted:
  python-psycopg2/trunk/ChangeLog

---+
 ChangeLog |   25 -
 1 file changed, 25 deletions(-)

Deleted: ChangeLog
===
--- ChangeLog   2018-12-22 13:00:08 UTC (rev 417542)
+++ ChangeLog   2018-12-22 13:00:36 UTC (rev 417543)
@@ -1,25 +0,0 @@
-
-2009-08-05  Douglas Soares de Andrade  
-
-   * Updated to: 2.0.11
-
-2009-03-24  Douglas Soares de Andrade  
-
-   * Updated for i686: 2.0.9
-
-2009-01-11  Douglas Soares de Andrade  
-
-   * Rebuilt for python 2.6
-
-2008-04-25  Mateusz Herych 
-
-   * Built for x86_64 - 2.0.7
-
-2008-04-23  Douglas Soares de Andrade  
-
-   * Built for i686 - 2.0.7
-
-2007-06-27  tardo  
-   
-   * Built for x86_64
-


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

2018-12-22 Thread Morten Linderud via arch-commits
Date: Saturday, December 22, 2018 @ 13:00:08
  Author: foxboron
Revision: 417542

archrelease: copy trunk to community-x86_64

Added:
  python-psycopg2/repos/community-x86_64/ChangeLog
(from rev 417541, python-psycopg2/trunk/ChangeLog)
  python-psycopg2/repos/community-x86_64/PKGBUILD
(from rev 417541, python-psycopg2/trunk/PKGBUILD)
Deleted:
  python-psycopg2/repos/community-x86_64/ChangeLog
  python-psycopg2/repos/community-x86_64/PKGBUILD

---+
 ChangeLog |   50 +-
 PKGBUILD  |   86 +++-
 2 files changed, 64 insertions(+), 72 deletions(-)

Deleted: ChangeLog
===
--- ChangeLog   2018-12-22 12:54:58 UTC (rev 417541)
+++ ChangeLog   2018-12-22 13:00:08 UTC (rev 417542)
@@ -1,25 +0,0 @@
-
-2009-08-05  Douglas Soares de Andrade  
-
-   * Updated to: 2.0.11
-
-2009-03-24  Douglas Soares de Andrade  
-
-   * Updated for i686: 2.0.9
-
-2009-01-11  Douglas Soares de Andrade  
-
-   * Rebuilt for python 2.6
-
-2008-04-25  Mateusz Herych 
-
-   * Built for x86_64 - 2.0.7
-
-2008-04-23  Douglas Soares de Andrade  
-
-   * Built for i686 - 2.0.7
-
-2007-06-27  tardo  
-   
-   * Built for x86_64
-

Copied: python-psycopg2/repos/community-x86_64/ChangeLog (from rev 417541, 
python-psycopg2/trunk/ChangeLog)
===
--- ChangeLog   (rev 0)
+++ ChangeLog   2018-12-22 13:00:08 UTC (rev 417542)
@@ -0,0 +1,25 @@
+
+2009-08-05  Douglas Soares de Andrade  
+
+   * Updated to: 2.0.11
+
+2009-03-24  Douglas Soares de Andrade  
+
+   * Updated for i686: 2.0.9
+
+2009-01-11  Douglas Soares de Andrade  
+
+   * Rebuilt for python 2.6
+
+2008-04-25  Mateusz Herych 
+
+   * Built for x86_64 - 2.0.7
+
+2008-04-23  Douglas Soares de Andrade  
+
+   * Built for i686 - 2.0.7
+
+2007-06-27  tardo  
+   
+   * Built for x86_64
+

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-22 12:54:58 UTC (rev 417541)
+++ PKGBUILD2018-12-22 13:00:08 UTC (rev 417542)
@@ -1,47 +0,0 @@
-# $Id$
-# Maintainer: Morten Linderud  
-# Contributor: Sergej Pupykin 
-# Contributor: Angel 'angvp' Velasquez 
-# Contributor: Douglas Soares de Andrade 
-
-pkgbase=python-psycopg2
-pkgname=('python-psycopg2' 'python2-psycopg2')
-pkgver=2.7.5
-pkgrel=2
-pkgdesc="A PostgreSQL database adapter for the Python programming language."
-arch=('x86_64')
-url="http://initd.org/psycopg/;
-license=('LGPL3')
-makedepends=('python2' 'python2-setuptools' 
- 'python' 'python-setuptools' 'postgresql-libs>=8.4.1')
-validpgpkeys=('8AD609956CF1899418E19A856013BD3AFCF957DE')
-source=(http://initd.org/psycopg/tarballs/PSYCOPG-2-7/psycopg2-$pkgver.tar.gz{,.asc})
-sha256sums=('eccf962d41ca46e6326b97c8fe0a6687b58dfc1a5f6540ed071ff1474cea749e'
-'SKIP')
-prepare() {
-  cp -a psycopg2-$pkgver{,-py2}
-}
-
-build(){
-  cd "$srcdir/psycopg2-$pkgver"
-  sed -i 's/,PSYCOPG_DEBUG$//' setup.cfg
-  python setup.py build
-
-  cd "$srcdir/psycopg2-$pkgver-py2"
-  sed -i 's/,PSYCOPG_DEBUG$//' setup.cfg
-  python2 setup.py build
-}
-
-package_python-psycopg2() {
-  depends=('python' 'postgresql-libs>=8.4.1')
-
-  cd "$srcdir/psycopg2-$pkgver"
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}
-
-package_python2-psycopg2() {
-  depends=('python2' 'postgresql-libs>=8.4.1')
-
-  cd "$srcdir/psycopg2-$pkgver-py2"
-  python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}

Copied: python-psycopg2/repos/community-x86_64/PKGBUILD (from rev 417541, 
python-psycopg2/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-22 13:00:08 UTC (rev 417542)
@@ -0,0 +1,39 @@
+# Maintainer: Morten Linderud  
+# Contributor: Sergej Pupykin 
+# Contributor: Angel 'angvp' Velasquez 
+# Contributor: Douglas Soares de Andrade 
+
+pkgbase=python-psycopg2
+pkgname=('python-psycopg2' 'python2-psycopg2')
+pkgver=2.7.6.1
+pkgrel=1
+pkgdesc="A PostgreSQL database adapter for the Python programming language."
+arch=('x86_64')
+url="http://initd.org/psycopg/;
+license=('LGPL3')
+makedepends=('python2' 'python2-setuptools' 
+ 'python' 'python-setuptools' 'postgresql-libs')
+source=(http://initd.org/psycopg/tarballs/PSYCOPG-2-7/psycopg2-$pkgver.tar.gz{,.asc})
+validpgpkeys=('8AD609956CF1899418E19A856013BD3AFCF957DE')
+sha256sums=('27959abe64ca1fc6d8cd11a71a1f421d8287831a3262bd4cacd43bbf43cc3c82'
+'SKIP')
+build(){
+  cd "$srcdir/psycopg2-$pkgver"
+  sed -i 's/,PSYCOPG_DEBUG$//' setup.cfg
+  python setup.py build
+  python2 setup.py build
+}
+
+package_python-psycopg2() {
+  depends=('python' 'postgresql-libs')
+
+  cd "$srcdir/psycopg2-$pkgver"
+  python setup.py install --root="$pkgdir" 

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

2018-12-22 Thread Morten Linderud via arch-commits
Date: Saturday, December 22, 2018 @ 12:54:58
  Author: foxboron
Revision: 417541

upgpkg: python-psycopg2 2.7.6.1-1

Modified:
  python-psycopg2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-22 12:49:05 UTC (rev 417540)
+++ PKGBUILD2018-12-22 12:54:58 UTC (rev 417541)
@@ -5,34 +5,27 @@
 
 pkgbase=python-psycopg2
 pkgname=('python-psycopg2' 'python2-psycopg2')
-pkgver=2.7.5
-pkgrel=2
+pkgver=2.7.6.1
+pkgrel=1
 pkgdesc="A PostgreSQL database adapter for the Python programming language."
 arch=('x86_64')
 url="http://initd.org/psycopg/;
 license=('LGPL3')
 makedepends=('python2' 'python2-setuptools' 
- 'python' 'python-setuptools' 'postgresql-libs>=8.4.1')
+ 'python' 'python-setuptools' 'postgresql-libs')
+source=(http://initd.org/psycopg/tarballs/PSYCOPG-2-7/psycopg2-$pkgver.tar.gz{,.asc})
 validpgpkeys=('8AD609956CF1899418E19A856013BD3AFCF957DE')
-source=(http://initd.org/psycopg/tarballs/PSYCOPG-2-7/psycopg2-$pkgver.tar.gz{,.asc})
-sha256sums=('eccf962d41ca46e6326b97c8fe0a6687b58dfc1a5f6540ed071ff1474cea749e'
+sha256sums=('27959abe64ca1fc6d8cd11a71a1f421d8287831a3262bd4cacd43bbf43cc3c82'
 'SKIP')
-prepare() {
-  cp -a psycopg2-$pkgver{,-py2}
-}
-
 build(){
   cd "$srcdir/psycopg2-$pkgver"
   sed -i 's/,PSYCOPG_DEBUG$//' setup.cfg
   python setup.py build
-
-  cd "$srcdir/psycopg2-$pkgver-py2"
-  sed -i 's/,PSYCOPG_DEBUG$//' setup.cfg
   python2 setup.py build
 }
 
 package_python-psycopg2() {
-  depends=('python' 'postgresql-libs>=8.4.1')
+  depends=('python' 'postgresql-libs')
 
   cd "$srcdir/psycopg2-$pkgver"
   python setup.py install --root="$pkgdir" --optimize=1 --skip-build
@@ -39,8 +32,8 @@
 }
 
 package_python2-psycopg2() {
-  depends=('python2' 'postgresql-libs>=8.4.1')
+  depends=('python2' 'postgresql-libs')
 
-  cd "$srcdir/psycopg2-$pkgver-py2"
+  cd "$srcdir/psycopg2-$pkgver"
   python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
 }


[arch-commits] Commit in python-typed-ast/repos/community-x86_64 (PKGBUILD PKGBUILD)

2018-12-22 Thread Morten Linderud via arch-commits
Date: Saturday, December 22, 2018 @ 12:49:05
  Author: foxboron
Revision: 417540

archrelease: copy trunk to community-x86_64

Added:
  python-typed-ast/repos/community-x86_64/PKGBUILD
(from rev 417539, python-typed-ast/trunk/PKGBUILD)
Deleted:
  python-typed-ast/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-22 12:48:54 UTC (rev 417539)
+++ PKGBUILD2018-12-22 12:49:05 UTC (rev 417540)
@@ -1,23 +0,0 @@
-# Maintainer: Morten Linderud 
-
-pkgname=python-typed-ast
-pkgver=1.1.0
-pkgrel=3
-pkgdesc="a fork of Python 2 and 3 ast modules with type comment support"
-arch=('x86_64')
-url="https://github.com/python/typed_ast;
-license=('Apache')
-depends=('python')
-makedepends=('python-setuptools')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/python/typed_ast/archive/1.1.0.tar.gz;)
-sha256sums=('4a1dcf032fec709d947b64b8eeca26b5952c6ea5152780a0e02c715e0ed7')
-
-build(){
-  cd "typed_ast-$pkgver"
-  python setup.py build
-}
-
-package(){
-  cd "typed_ast-$pkgver"
-  python setup.py install --prefix="usr/" --root="$pkgdir/" --optimize=1 
--skip-build
-}

Copied: python-typed-ast/repos/community-x86_64/PKGBUILD (from rev 417539, 
python-typed-ast/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-22 12:49:05 UTC (rev 417540)
@@ -0,0 +1,23 @@
+# Maintainer: Morten Linderud 
+
+pkgname=python-typed-ast
+pkgver=1.1.1
+pkgrel=1
+pkgdesc="a fork of Python 2 and 3 ast modules with type comment support"
+arch=('x86_64')
+url="https://github.com/python/typed_ast;
+license=('Apache')
+depends=('python')
+makedepends=('python-setuptools')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/python/typed_ast/archive/${pkgver}.tar.gz;)
+sha256sums=('8d40e9a6d6e04c1379e58fa022fc4195228e9fec8fed7d9ff642429b9ab490f1')
+
+build(){
+  cd "typed_ast-$pkgver"
+  python setup.py build
+}
+
+package(){
+  cd "typed_ast-$pkgver"
+  python setup.py install --prefix="usr/" --root="$pkgdir/" --optimize=1 
--skip-build
+}


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

2018-12-22 Thread Morten Linderud via arch-commits
Date: Saturday, December 22, 2018 @ 12:48:54
  Author: foxboron
Revision: 417539

upgpkg: python-typed-ast 1.1.1-1

Modified:
  python-typed-ast/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-22 12:40:10 UTC (rev 417538)
+++ PKGBUILD2018-12-22 12:48:54 UTC (rev 417539)
@@ -1,8 +1,8 @@
 # Maintainer: Morten Linderud 
 
 pkgname=python-typed-ast
-pkgver=1.1.0
-pkgrel=3
+pkgver=1.1.1
+pkgrel=1
 pkgdesc="a fork of Python 2 and 3 ast modules with type comment support"
 arch=('x86_64')
 url="https://github.com/python/typed_ast;
@@ -9,8 +9,8 @@
 license=('Apache')
 depends=('python')
 makedepends=('python-setuptools')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/python/typed_ast/archive/1.1.0.tar.gz;)
-sha256sums=('4a1dcf032fec709d947b64b8eeca26b5952c6ea5152780a0e02c715e0ed7')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/python/typed_ast/archive/${pkgver}.tar.gz;)
+sha256sums=('8d40e9a6d6e04c1379e58fa022fc4195228e9fec8fed7d9ff642429b9ab490f1')
 
 build(){
   cd "typed_ast-$pkgver"


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

2018-12-22 Thread Morten Linderud via arch-commits
Date: Saturday, December 22, 2018 @ 12:40:10
  Author: foxboron
Revision: 417538

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-22 12:40:02 UTC (rev 417537)
+++ PKGBUILD2018-12-22 12:40:10 UTC (rev 417538)
@@ -1,44 +0,0 @@
-# Maintainer: Morten Linderud 
-# Maintainer: Anatol Pomozov
-
-pkgbase=python-autobahn
-pkgname=(python-autobahn python2-autobahn)
-pkgver=18.11.2
-pkgrel=1
-pkgdesc='Real-time framework for Web, Mobile & Internet of Things'
-arch=(any)
-url='http://autobahn.ws/python/'
-license=(MIT)
-makedepends=(python-setuptools python2-setuptools python-twisted python-six 
python-txaio python2-twisted python2-six python2-txaio)
-checkdepends=(python2-unittest2)
-source=(https://pypi.io/packages/source/a/autobahn/autobahn-$pkgver.tar.gz)
-sha256sums=('43262e500aaf8b89fb5f0b60ab13163500ee877908cdd6861208546d95c6dba0')
-
-build() {
-  cd "$srcdir/autobahn-$pkgver"
-  python setup.py build
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir/autobahn-$pkgver"
-  #It requires python-unittest2 in [community]
-  #python setup.py test
-  #python2 setup.py test
-}
-
-package_python-autobahn() {
-  depends=(python python-twisted python-six python-txaio)
-
-  cd "$srcdir/autobahn-$pkgver"
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_python2-autobahn() {
-  depends=(python2 python2-twisted python2-six python2-txaio)
-
-  cd "$srcdir/autobahn-$pkgver"
-  python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: python-autobahn/repos/community-any/PKGBUILD (from rev 417537, 
python-autobahn/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-22 12:40:10 UTC (rev 417538)
@@ -0,0 +1,44 @@
+# Maintainer: Morten Linderud 
+# Maintainer: Anatol Pomozov
+
+pkgbase=python-autobahn
+pkgname=(python-autobahn python2-autobahn)
+pkgver=18.12.1
+pkgrel=1
+pkgdesc='Real-time framework for Web, Mobile & Internet of Things'
+arch=(any)
+url='http://autobahn.ws/python/'
+license=(MIT)
+makedepends=(python-setuptools python2-setuptools python-twisted python-six 
python-txaio python2-twisted python2-six python2-txaio)
+checkdepends=(python2-unittest2)
+source=(https://pypi.io/packages/source/a/autobahn/autobahn-$pkgver.tar.gz)
+sha256sums=('bec9e04c97536a6c0044965db4a478672a01c4adee0aa84d9c4a0945b2adc879')
+
+build() {
+  cd "$srcdir/autobahn-$pkgver"
+  python setup.py build
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir/autobahn-$pkgver"
+  #It requires python-unittest2 in [community]
+  #python setup.py test
+  #python2 setup.py test
+}
+
+package_python-autobahn() {
+  depends=(python python-twisted python-six python-txaio)
+
+  cd "$srcdir/autobahn-$pkgver"
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_python2-autobahn() {
+  depends=(python2 python2-twisted python2-six python2-txaio)
+
+  cd "$srcdir/autobahn-$pkgver"
+  python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2018-12-22 Thread Morten Linderud via arch-commits
Date: Saturday, December 22, 2018 @ 12:40:02
  Author: foxboron
Revision: 417537

upgpkg: python-autobahn 18.12.1-1

Modified:
  python-autobahn/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-22 12:33:22 UTC (rev 417536)
+++ PKGBUILD2018-12-22 12:40:02 UTC (rev 417537)
@@ -3,7 +3,7 @@
 
 pkgbase=python-autobahn
 pkgname=(python-autobahn python2-autobahn)
-pkgver=18.11.2
+pkgver=18.12.1
 pkgrel=1
 pkgdesc='Real-time framework for Web, Mobile & Internet of Things'
 arch=(any)
@@ -12,7 +12,7 @@
 makedepends=(python-setuptools python2-setuptools python-twisted python-six 
python-txaio python2-twisted python2-six python2-txaio)
 checkdepends=(python2-unittest2)
 source=(https://pypi.io/packages/source/a/autobahn/autobahn-$pkgver.tar.gz)
-sha256sums=('43262e500aaf8b89fb5f0b60ab13163500ee877908cdd6861208546d95c6dba0')
+sha256sums=('bec9e04c97536a6c0044965db4a478672a01c4adee0aa84d9c4a0945b2adc879')
 
 build() {
   cd "$srcdir/autobahn-$pkgver"


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

2018-12-22 Thread Morten Linderud via arch-commits
Date: Saturday, December 22, 2018 @ 12:33:22
  Author: foxboron
Revision: 417536

archrelease: copy trunk to community-x86_64

Added:
  influxdb/repos/community-x86_64/PKGBUILD
(from rev 417535, influxdb/trunk/PKGBUILD)
  influxdb/repos/community-x86_64/influxdb.sysusers
(from rev 417535, influxdb/trunk/influxdb.sysusers)
  influxdb/repos/community-x86_64/influxdb.tmpfiles
(from rev 417535, influxdb/trunk/influxdb.tmpfiles)
Deleted:
  influxdb/repos/community-x86_64/PKGBUILD
  influxdb/repos/community-x86_64/influxdb.sysusers
  influxdb/repos/community-x86_64/influxdb.tmpfiles

---+
 PKGBUILD  |  146 ++--
 influxdb.sysusers |2 
 influxdb.tmpfiles |8 +-
 3 files changed, 78 insertions(+), 78 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-22 12:33:13 UTC (rev 417535)
+++ PKGBUILD2018-12-22 12:33:22 UTC (rev 417536)
@@ -1,73 +0,0 @@
-# Maintainer: Morten Linderud 
-# Contributor: Nicolas Leclercq 
-# Contributor: Adam S Levy 
-# Contributor: Charles B. Johnson 
-# Contributor: Daichi Shinozaki 
-# Contributor: Ben Alex 
-
-pkgname=influxdb
-pkgver=1.7.1
-pkgrel=1
-pkgdesc='Scalable datastore for metrics, events, and real-time analytics'
-arch=('i686' 'x86_64' 'armv6h' 'armv7h' 'aarch64')
-url='https://github.com/InfluxData/influxdb'
-license=('MIT')
-makedepends=('go-pie' 'git' 'asciidoc' 'xmlto' 'dep')
-backup=('etc/influxdb/influxdb.conf')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/influxdata/influxdb/archive/v${pkgver}.tar.gz;
-"influxdb.sysusers"
-"influxdb.tmpfiles")
-sha256sums=('c8f8e614bde301e0852e1fbeb7b9a39f758ae335b8f5a6157478082eea9cec77'
-'809cca823ae3027984bc7ace70db75753d7d0d4f6658a36db9d94a33054ca5e9'
-'e2aa59413a6204737383b86cedefd866d7073f56ace5b89aad38c530cc86e60c')
-
-prepare(){
-  export GOPATH="$srcdir/gopath"
-
-  mkdir -p "$GOPATH/src/github.com/influxdata/"
-  cp -r "${srcdir}/influxdb-$pkgver" 
"$GOPATH/src/github.com/influxdata/influxdb"
-  cd "$GOPATH/src/github.com/influxdata/influxdb"
-  dep ensure
-}
-
-build(){
-  export GOPATH="$srcdir/gopath"
-
-  _LDFLAGS="-X main.version=$pkgver -X main.branch=master -extldflags 
${LDFLAGS}"
-  go install -v -ldflags="$_LDFLAGS" -gcflags "all=-trimpath=${GOPATH}" 
-asmflags "all=-trimpath=${GOPATH}" "github.com/influxdata/influxdb/cmd/..."
-
-  cd "$GOPATH/src/github.com/influxdata/influxdb/man/"
-  make
-}
-
-check(){
-  export GOPATH="$srcdir/gopath"
-  go test "github.com/influxdata/influxdb/..."
-}
-
-package(){
-  export GOPATH="$srcdir/gopath"
-
-  cd "$srcdir"
-  install -Dm644 influxdb.sysusers "$pkgdir/usr/lib/sysusers.d/influxdb.conf"
-  install -Dm644 influxdb.tmpfiles "$pkgdir/usr/lib/tmpfiles.d/influxdb.conf"
-
-  cd "$GOPATH/bin"
-  install -d "$pkgdir/usr/bin/"
-  install -Dm755 influx "$pkgdir/usr/bin/"
-  install -Dm755 influxd"$pkgdir/usr/bin/"
-  install -Dm755 influx_inspect "$pkgdir/usr/bin/"
-  install -Dm755 influx_stress  "$pkgdir/usr/bin/"
-  install -Dm755 influx_tools   "$pkgdir/usr/bin/"
-  install -Dm755 influx_tsm "$pkgdir/usr/bin/"
-  install -Dm755 store  "$pkgdir/usr/bin/"
-
-  cd "$GOPATH/src/github.com/influxdata/influxdb"
-  install -Dm644 scripts/influxdb.service 
"$pkgdir/usr/lib/systemd/system/influxdb.service"
-  install -Dm644 etc/config.sample.toml   "$pkgdir/etc/influxdb/influxdb.conf"
-  install -Dm644 LICENSE  
"$pkgdir/usr/share/licenses/influxdb/LICENSE"
-
-  # Install man pages
-  install -d "$pkgdir/usr/share/man/man1"
-  install -Dm644 man/*.1 "$pkgdir/usr/share/man/man1/"
-}

Copied: influxdb/repos/community-x86_64/PKGBUILD (from rev 417535, 
influxdb/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-22 12:33:22 UTC (rev 417536)
@@ -0,0 +1,73 @@
+# Maintainer: Morten Linderud 
+# Contributor: Nicolas Leclercq 
+# Contributor: Adam S Levy 
+# Contributor: Charles B. Johnson 
+# Contributor: Daichi Shinozaki 
+# Contributor: Ben Alex 
+
+pkgname=influxdb
+pkgver=1.7.2
+pkgrel=1
+pkgdesc='Scalable datastore for metrics, events, and real-time analytics'
+arch=('i686' 'x86_64' 'armv6h' 'armv7h' 'aarch64')
+url='https://github.com/InfluxData/influxdb'
+license=('MIT')
+makedepends=('go-pie' 'git' 'asciidoc' 'xmlto' 'dep')
+backup=('etc/influxdb/influxdb.conf')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/influxdata/influxdb/archive/v${pkgver}.tar.gz;
+"influxdb.sysusers"
+"influxdb.tmpfiles")
+sha256sums=('05b10655c98e5fcf16f99a3c304bda4bac09761a499566c5458e233e224daabe'
+'809cca823ae3027984bc7ace70db75753d7d0d4f6658a36db9d94a33054ca5e9'
+'e2aa59413a6204737383b86cedefd866d7073f56ace5b89aad38c530cc86e60c')
+
+prepare(){
+  export GOPATH="$srcdir/gopath"
+
+  mkdir -p 

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

2018-12-22 Thread Morten Linderud via arch-commits
Date: Saturday, December 22, 2018 @ 12:33:13
  Author: foxboron
Revision: 417535

upgpkg: influxdb 1.7.2-1

Modified:
  influxdb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-22 11:49:31 UTC (rev 417534)
+++ PKGBUILD2018-12-22 12:33:13 UTC (rev 417535)
@@ -6,7 +6,7 @@
 # Contributor: Ben Alex 
 
 pkgname=influxdb
-pkgver=1.7.1
+pkgver=1.7.2
 pkgrel=1
 pkgdesc='Scalable datastore for metrics, events, and real-time analytics'
 arch=('i686' 'x86_64' 'armv6h' 'armv7h' 'aarch64')
@@ -17,7 +17,7 @@
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/influxdata/influxdb/archive/v${pkgver}.tar.gz;
 "influxdb.sysusers"
 "influxdb.tmpfiles")
-sha256sums=('c8f8e614bde301e0852e1fbeb7b9a39f758ae335b8f5a6157478082eea9cec77'
+sha256sums=('05b10655c98e5fcf16f99a3c304bda4bac09761a499566c5458e233e224daabe'
 '809cca823ae3027984bc7ace70db75753d7d0d4f6658a36db9d94a33054ca5e9'
 'e2aa59413a6204737383b86cedefd866d7073f56ace5b89aad38c530cc86e60c')
 


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

2018-12-22 Thread Morten Linderud via arch-commits
Date: Saturday, December 22, 2018 @ 11:49:31
  Author: foxboron
Revision: 417534

archrelease: copy trunk to community-any

Added:
  font-awesome/repos/community-any/PKGBUILD
(from rev 417533, font-awesome/trunk/PKGBUILD)
Deleted:
  font-awesome/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-22 11:49:22 UTC (rev 417533)
+++ PKGBUILD2018-12-22 11:49:31 UTC (rev 417534)
@@ -1,28 +0,0 @@
-# Maintainer: Morten Linderud  
-# Contributor: Alad Wenter 

-
-pkgbase=font-awesome
-pkgname=(ttf-font-awesome otf-font-awesome)
-pkgver=5.6.0
-pkgrel=1
-pkgdesc="Iconic font designed for Bootstrap"
-url="http://fontawesome.com;
-license=('custom:OFL')
-arch=('any')
-depends=('fontconfig')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/FortAwesome/Font-Awesome/archive/$pkgver.tar.gz;)
-sha256sums=('d3c8dd3c0335c3d2fe523572eb398599c9eb130381be32d20f5978ccd9d4310a')
-
-package_ttf-font-awesome() {
-  cd "Font-Awesome-${pkgver}"
-  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
-  install -d "$pkgdir/usr/share/fonts/TTF"
-  install -m644 ./webfonts/*.ttf "$pkgdir/usr/share/fonts/TTF"
-}
-
-package_otf-font-awesome() {
-  cd "Font-Awesome-${pkgver}"
-  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
-  install -d "$pkgdir/usr/share/fonts/OTF"
-  install -m644 ./otfs/*.otf "$pkgdir/usr/share/fonts/OTF"
-}

Copied: font-awesome/repos/community-any/PKGBUILD (from rev 417533, 
font-awesome/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-22 11:49:31 UTC (rev 417534)
@@ -0,0 +1,28 @@
+# Maintainer: Morten Linderud  
+# Contributor: Alad Wenter 

+
+pkgbase=font-awesome
+pkgname=(ttf-font-awesome otf-font-awesome)
+pkgver=5.6.3
+pkgrel=1
+pkgdesc="Iconic font designed for Bootstrap"
+url="http://fontawesome.com;
+license=('custom:OFL')
+arch=('any')
+depends=('fontconfig')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/FortAwesome/Font-Awesome/archive/$pkgver.tar.gz;)
+sha256sums=('3a162f9b878ab7e92b53ffd79c95e55c4f14b92ce770e1a967c933696ebc8f31')
+
+package_ttf-font-awesome() {
+  cd "Font-Awesome-${pkgver}"
+  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
+  install -d "$pkgdir/usr/share/fonts/TTF"
+  install -m644 ./webfonts/*.ttf "$pkgdir/usr/share/fonts/TTF"
+}
+
+package_otf-font-awesome() {
+  cd "Font-Awesome-${pkgver}"
+  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
+  install -d "$pkgdir/usr/share/fonts/OTF"
+  install -m644 ./otfs/*.otf "$pkgdir/usr/share/fonts/OTF"
+}


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

2018-12-22 Thread Morten Linderud via arch-commits
Date: Saturday, December 22, 2018 @ 11:49:22
  Author: foxboron
Revision: 417533

upgpkg: font-awesome 5.6.3-1

Modified:
  font-awesome/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-22 11:02:57 UTC (rev 417532)
+++ PKGBUILD2018-12-22 11:49:22 UTC (rev 417533)
@@ -3,7 +3,7 @@
 
 pkgbase=font-awesome
 pkgname=(ttf-font-awesome otf-font-awesome)
-pkgver=5.6.0
+pkgver=5.6.3
 pkgrel=1
 pkgdesc="Iconic font designed for Bootstrap"
 url="http://fontawesome.com;
@@ -11,7 +11,7 @@
 arch=('any')
 depends=('fontconfig')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/FortAwesome/Font-Awesome/archive/$pkgver.tar.gz;)
-sha256sums=('d3c8dd3c0335c3d2fe523572eb398599c9eb130381be32d20f5978ccd9d4310a')
+sha256sums=('3a162f9b878ab7e92b53ffd79c95e55c4f14b92ce770e1a967c933696ebc8f31')
 
 package_ttf-font-awesome() {
   cd "Font-Awesome-${pkgver}"


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

2018-12-21 Thread Morten Linderud via arch-commits
Date: Friday, December 21, 2018 @ 20:43:01
  Author: foxboron
Revision: 417459

archrelease: copy trunk to community-testing-x86_64

Added:
  git-lfs/repos/community-testing-x86_64/
  git-lfs/repos/community-testing-x86_64/PKGBUILD
(from rev 417458, git-lfs/trunk/PKGBUILD)

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

Copied: git-lfs/repos/community-testing-x86_64/PKGBUILD (from rev 417458, 
git-lfs/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2018-12-21 20:43:01 UTC (rev 417459)
@@ -0,0 +1,38 @@
+# Maintainer: Morten Linderud 
+
+pkgname=git-lfs
+pkgver=2.6.1
+pkgrel=1
+pkgdesc="Git extension for versioning large files"
+arch=('x86_64')
+url="https://git-lfs.github.com;
+license=('MIT')
+makedepends=('go-pie' 'ruby-ronn' 'go-tools')
+depends=('git')
+source=("git+https://github.com/git-lfs/git-lfs.git#tag=v${pkgver};)
+#validpgpkeys=('4DB92D1D8CEE7E54F06713452D0C9BC12F82B3A1') # brian m. carlson 

+#validpgpkeys=('88ACE9B29196305BA9947552F1BA225C0223B187') # brian m. carlson 

+sha256sums=('SKIP')
+
+build(){
+  cd "$pkgname"
+  go build \
+-gcflags "all=-trimpath=${PWD}" \
+-asmflags "all=-trimpath=${PWD}" \
+-ldflags "-extldflags ${LDFLAGS}" \
+.
+  make man
+}
+
+check(){
+  cd "$pkgname"
+  make test
+}
+
+package() {
+  cd "$pkgname"
+  install -Dm755 $pkgname "$pkgdir"/usr/bin/$pkgname
+  install -Dm644 LICENSE.md "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+  install -Dm644 -t "$pkgdir"/usr/share/man/man1 man/*.1 
+  install -Dm644 -t "$pkgdir"/usr/share/man/man5 man/*.5 
+}


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

2018-12-21 Thread Morten Linderud via arch-commits
Date: Friday, December 21, 2018 @ 20:42:54
  Author: foxboron
Revision: 417458

upgpkg: git-lfs 2.6.1-1

Modified:
  git-lfs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-21 19:59:11 UTC (rev 417457)
+++ PKGBUILD2018-12-21 20:42:54 UTC (rev 417458)
@@ -1,40 +1,37 @@
 # Maintainer: Morten Linderud 
 
 pkgname=git-lfs
-pkgver=2.5.2
-pkgrel=2
+pkgver=2.6.1
+pkgrel=1
 pkgdesc="Git extension for versioning large files"
 arch=('x86_64')
 url="https://git-lfs.github.com;
 license=('MIT')
-makedepends=('go-pie' 'ruby-ronn')
+makedepends=('go-pie' 'ruby-ronn' 'go-tools')
 depends=('git')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/git-lfs/git-lfs/archive/v${pkgver}.tar.gz;)
-sha256sums=('0ab21f0f9b6c40acd9748a1669f1023ef38f913d8be83bbf7b7c7d983bd3c4d1')
+source=("git+https://github.com/git-lfs/git-lfs.git#tag=v${pkgver};)
+#validpgpkeys=('4DB92D1D8CEE7E54F06713452D0C9BC12F82B3A1') # brian m. carlson 

+#validpgpkeys=('88ACE9B29196305BA9947552F1BA225C0223B187') # brian m. carlson 

+sha256sums=('SKIP')
 
-prepare(){
-  mkdir -p src/github.com/git-lfs
-  ln -rTsf "${pkgname}-${pkgver}" src/github.com/git-lfs/git-lfs
-}
-
 build(){
-  export GOPATH="${srcdir}" 
-  cd "src/github.com/git-lfs/git-lfs"
-  go generate ./commands
-  go install -gcflags "all=-trimpath=${GOPATH}" -asmflags 
"all=-trimpath=${GOPATH}" ./...
+  cd "$pkgname"
+  go build \
+-gcflags "all=-trimpath=${PWD}" \
+-asmflags "all=-trimpath=${PWD}" \
+-ldflags "-extldflags ${LDFLAGS}" \
+.
   make man
 }
 
 check(){
-  export GOPATH="${srcdir}" 
-  cd "src/github.com/git-lfs/git-lfs"
-  go test ./...
+  cd "$pkgname"
+  make test
 }
 
 package() {
-  install -Dm755 ./bin/$pkgname "$pkgdir"/usr/bin/$pkgname
-
-  cd "${pkgname}-${pkgver}"
+  cd "$pkgname"
+  install -Dm755 $pkgname "$pkgdir"/usr/bin/$pkgname
   install -Dm644 LICENSE.md "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
   install -Dm644 -t "$pkgdir"/usr/share/man/man1 man/*.1 
   install -Dm644 -t "$pkgdir"/usr/share/man/man5 man/*.5 


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

2018-12-21 Thread Morten Linderud via arch-commits
Date: Friday, December 21, 2018 @ 18:08:36
  Author: foxboron
Revision: 417446

upgpkg: font-awesome 5.6.0-1

Modified:
  font-awesome/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-21 18:05:26 UTC (rev 417445)
+++ PKGBUILD2018-12-21 18:08:36 UTC (rev 417446)
@@ -3,7 +3,7 @@
 
 pkgbase=font-awesome
 pkgname=(ttf-font-awesome otf-font-awesome)
-pkgver=5.5.0
+pkgver=5.6.0
 pkgrel=1
 pkgdesc="Iconic font designed for Bootstrap"
 url="http://fontawesome.com;
@@ -11,13 +11,13 @@
 arch=('any')
 depends=('fontconfig')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/FortAwesome/Font-Awesome/archive/$pkgver.tar.gz;)
-sha256sums=('62b5459ab0769880245bb6ce6ec7486a877e14e75b75568d5e25304dcb52a55b')
+sha256sums=('d3c8dd3c0335c3d2fe523572eb398599c9eb130381be32d20f5978ccd9d4310a')
 
 package_ttf-font-awesome() {
   cd "Font-Awesome-${pkgver}"
   install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
   install -d "$pkgdir/usr/share/fonts/TTF"
-  install -m644 ./web-fonts-with-css/webfonts/*.ttf 
"$pkgdir/usr/share/fonts/TTF"
+  install -m644 ./webfonts/*.ttf "$pkgdir/usr/share/fonts/TTF"
 }
 
 package_otf-font-awesome() {
@@ -24,5 +24,5 @@
   cd "Font-Awesome-${pkgver}"
   install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
   install -d "$pkgdir/usr/share/fonts/OTF"
-  install -m644 ./use-on-desktop/*.otf "$pkgdir/usr/share/fonts/OTF"
+  install -m644 ./otfs/*.otf "$pkgdir/usr/share/fonts/OTF"
 }


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

2018-12-21 Thread Morten Linderud via arch-commits
Date: Friday, December 21, 2018 @ 18:08:46
  Author: foxboron
Revision: 417447

archrelease: copy trunk to community-any

Added:
  font-awesome/repos/community-any/PKGBUILD
(from rev 417446, font-awesome/trunk/PKGBUILD)
Deleted:
  font-awesome/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-21 18:08:36 UTC (rev 417446)
+++ PKGBUILD2018-12-21 18:08:46 UTC (rev 417447)
@@ -1,28 +0,0 @@
-# Maintainer: Morten Linderud  
-# Contributor: Alad Wenter 

-
-pkgbase=font-awesome
-pkgname=(ttf-font-awesome otf-font-awesome)
-pkgver=5.5.0
-pkgrel=1
-pkgdesc="Iconic font designed for Bootstrap"
-url="http://fontawesome.com;
-license=('custom:OFL')
-arch=('any')
-depends=('fontconfig')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/FortAwesome/Font-Awesome/archive/$pkgver.tar.gz;)
-sha256sums=('62b5459ab0769880245bb6ce6ec7486a877e14e75b75568d5e25304dcb52a55b')
-
-package_ttf-font-awesome() {
-  cd "Font-Awesome-${pkgver}"
-  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
-  install -d "$pkgdir/usr/share/fonts/TTF"
-  install -m644 ./web-fonts-with-css/webfonts/*.ttf 
"$pkgdir/usr/share/fonts/TTF"
-}
-
-package_otf-font-awesome() {
-  cd "Font-Awesome-${pkgver}"
-  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
-  install -d "$pkgdir/usr/share/fonts/OTF"
-  install -m644 ./use-on-desktop/*.otf "$pkgdir/usr/share/fonts/OTF"
-}

Copied: font-awesome/repos/community-any/PKGBUILD (from rev 417446, 
font-awesome/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-21 18:08:46 UTC (rev 417447)
@@ -0,0 +1,28 @@
+# Maintainer: Morten Linderud  
+# Contributor: Alad Wenter 

+
+pkgbase=font-awesome
+pkgname=(ttf-font-awesome otf-font-awesome)
+pkgver=5.6.0
+pkgrel=1
+pkgdesc="Iconic font designed for Bootstrap"
+url="http://fontawesome.com;
+license=('custom:OFL')
+arch=('any')
+depends=('fontconfig')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/FortAwesome/Font-Awesome/archive/$pkgver.tar.gz;)
+sha256sums=('d3c8dd3c0335c3d2fe523572eb398599c9eb130381be32d20f5978ccd9d4310a')
+
+package_ttf-font-awesome() {
+  cd "Font-Awesome-${pkgver}"
+  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
+  install -d "$pkgdir/usr/share/fonts/TTF"
+  install -m644 ./webfonts/*.ttf "$pkgdir/usr/share/fonts/TTF"
+}
+
+package_otf-font-awesome() {
+  cd "Font-Awesome-${pkgver}"
+  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
+  install -d "$pkgdir/usr/share/fonts/OTF"
+  install -m644 ./otfs/*.otf "$pkgdir/usr/share/fonts/OTF"
+}


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

2018-12-21 Thread Morten Linderud via arch-commits
Date: Friday, December 21, 2018 @ 18:05:26
  Author: foxboron
Revision: 417445

archrelease: copy trunk to community-any

Added:
  mypy/repos/community-any/PKGBUILD
(from rev 417444, mypy/trunk/PKGBUILD)
Deleted:
  mypy/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-21 18:05:18 UTC (rev 417444)
+++ PKGBUILD2018-12-21 18:05:26 UTC (rev 417445)
@@ -1,26 +0,0 @@
-# Maintainer: Morten Linderud 
-# Contributor: icasdri 
-# Contributor: hexchain 
-
-pkgname=mypy
-pkgver=0.641
-pkgrel=1
-pkgdesc='Optional static typing for Python 2 and 3 (PEP484)'
-url="http://www.mypy-lang.org/;
-arch=('any')
-license=('MIT')
-depends=('python' 'python-psutil' 'python-typed-ast' 'python-mypy_extensions')
-makedepends=('python-setuptools' 'git')
-source=("$pkgname-$pkgver.tar.gz::https://pypi.org/packages/source/m/$pkgname/$pkgname-$pkgver.tar.gz;)
-sha256sums=('8e071ec32cc226e948a34bbb3d196eb0fd96f3ac69b6843a5aff9bd4efa14455')
-
-build() {
-cd "$pkgname-$pkgver"
-python setup.py build
-}
-
-package() {
-cd "$pkgname-$pkgver"
-python setup.py install --prefix="/usr" --root="${pkgdir}" --optimize=1 
--skip-build
-install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: mypy/repos/community-any/PKGBUILD (from rev 417444, mypy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-21 18:05:26 UTC (rev 417445)
@@ -0,0 +1,26 @@
+# Maintainer: Morten Linderud 
+# Contributor: icasdri 
+# Contributor: hexchain 
+
+pkgname=mypy
+pkgver=0.650
+pkgrel=1
+pkgdesc='Optional static typing for Python 2 and 3 (PEP484)'
+url="http://www.mypy-lang.org/;
+arch=('any')
+license=('MIT')
+depends=('python' 'python-psutil' 'python-typed-ast' 'python-mypy_extensions')
+makedepends=('python-setuptools' 'git')
+source=("$pkgname-$pkgver.tar.gz::https://pypi.org/packages/source/m/$pkgname/$pkgname-$pkgver.tar.gz;)
+sha256sums=('38d5b5f835a81817dcc0af8d155bce4e9aefa03794fe32ed154d6612e83feafa')
+
+build() {
+cd "$pkgname-$pkgver"
+python setup.py build
+}
+
+package() {
+cd "$pkgname-$pkgver"
+python setup.py install --prefix="/usr" --root="${pkgdir}" --optimize=1 
--skip-build
+install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2018-12-21 Thread Morten Linderud via arch-commits
Date: Friday, December 21, 2018 @ 18:05:18
  Author: foxboron
Revision: 417444

upgpkg: mypy 0.650-1

Modified:
  mypy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-21 18:04:00 UTC (rev 417443)
+++ PKGBUILD2018-12-21 18:05:18 UTC (rev 417444)
@@ -3,7 +3,7 @@
 # Contributor: hexchain 
 
 pkgname=mypy
-pkgver=0.641
+pkgver=0.650
 pkgrel=1
 pkgdesc='Optional static typing for Python 2 and 3 (PEP484)'
 url="http://www.mypy-lang.org/;
@@ -12,7 +12,7 @@
 depends=('python' 'python-psutil' 'python-typed-ast' 'python-mypy_extensions')
 makedepends=('python-setuptools' 'git')
 
source=("$pkgname-$pkgver.tar.gz::https://pypi.org/packages/source/m/$pkgname/$pkgname-$pkgver.tar.gz;)
-sha256sums=('8e071ec32cc226e948a34bbb3d196eb0fd96f3ac69b6843a5aff9bd4efa14455')
+sha256sums=('38d5b5f835a81817dcc0af8d155bce4e9aefa03794fe32ed154d6612e83feafa')
 
 build() {
 cd "$pkgname-$pkgver"


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

2018-12-21 Thread Morten Linderud via arch-commits
Date: Friday, December 21, 2018 @ 18:04:00
  Author: foxboron
Revision: 417443

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-21 18:03:51 UTC (rev 417442)
+++ PKGBUILD2018-12-21 18:04:00 UTC (rev 417443)
@@ -1,44 +0,0 @@
-# Maintainer: Morten Linderud 
-# Maintainer: Anatol Pomozov
-
-pkgbase=python-autobahn
-pkgname=(python-autobahn python2-autobahn)
-pkgver=18.11.1
-pkgrel=1
-pkgdesc='Real-time framework for Web, Mobile & Internet of Things'
-arch=(any)
-url='http://autobahn.ws/python/'
-license=(MIT)
-makedepends=(python-setuptools python2-setuptools python-twisted python-six 
python-txaio python2-twisted python2-six python2-txaio)
-checkdepends=(python2-unittest2)
-source=(https://pypi.io/packages/source/a/autobahn/autobahn-$pkgver.tar.gz)
-sha256sums=('c7e775e46fc033160fa89942de4953ca739f26167f74431dc2c8a3cd165b8755')
-
-build() {
-  cd "$srcdir/autobahn-$pkgver"
-  python setup.py build
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir/autobahn-$pkgver"
-  #It requires python-unittest2 in [community]
-  #python setup.py test
-  #python2 setup.py test
-}
-
-package_python-autobahn() {
-  depends=(python python-twisted python-six python-txaio)
-
-  cd "$srcdir/autobahn-$pkgver"
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_python2-autobahn() {
-  depends=(python2 python2-twisted python2-six python2-txaio)
-
-  cd "$srcdir/autobahn-$pkgver"
-  python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: python-autobahn/repos/community-any/PKGBUILD (from rev 417442, 
python-autobahn/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-21 18:04:00 UTC (rev 417443)
@@ -0,0 +1,44 @@
+# Maintainer: Morten Linderud 
+# Maintainer: Anatol Pomozov
+
+pkgbase=python-autobahn
+pkgname=(python-autobahn python2-autobahn)
+pkgver=18.11.2
+pkgrel=1
+pkgdesc='Real-time framework for Web, Mobile & Internet of Things'
+arch=(any)
+url='http://autobahn.ws/python/'
+license=(MIT)
+makedepends=(python-setuptools python2-setuptools python-twisted python-six 
python-txaio python2-twisted python2-six python2-txaio)
+checkdepends=(python2-unittest2)
+source=(https://pypi.io/packages/source/a/autobahn/autobahn-$pkgver.tar.gz)
+sha256sums=('43262e500aaf8b89fb5f0b60ab13163500ee877908cdd6861208546d95c6dba0')
+
+build() {
+  cd "$srcdir/autobahn-$pkgver"
+  python setup.py build
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir/autobahn-$pkgver"
+  #It requires python-unittest2 in [community]
+  #python setup.py test
+  #python2 setup.py test
+}
+
+package_python-autobahn() {
+  depends=(python python-twisted python-six python-txaio)
+
+  cd "$srcdir/autobahn-$pkgver"
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_python2-autobahn() {
+  depends=(python2 python2-twisted python2-six python2-txaio)
+
+  cd "$srcdir/autobahn-$pkgver"
+  python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2018-12-21 Thread Morten Linderud via arch-commits
Date: Friday, December 21, 2018 @ 18:03:51
  Author: foxboron
Revision: 417442

upgpkg: python-autobahn 18.11.2-1

Modified:
  python-autobahn/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-21 17:58:16 UTC (rev 417441)
+++ PKGBUILD2018-12-21 18:03:51 UTC (rev 417442)
@@ -3,7 +3,7 @@
 
 pkgbase=python-autobahn
 pkgname=(python-autobahn python2-autobahn)
-pkgver=18.11.1
+pkgver=18.11.2
 pkgrel=1
 pkgdesc='Real-time framework for Web, Mobile & Internet of Things'
 arch=(any)
@@ -12,7 +12,7 @@
 makedepends=(python-setuptools python2-setuptools python-twisted python-six 
python-txaio python2-twisted python2-six python2-txaio)
 checkdepends=(python2-unittest2)
 source=(https://pypi.io/packages/source/a/autobahn/autobahn-$pkgver.tar.gz)
-sha256sums=('c7e775e46fc033160fa89942de4953ca739f26167f74431dc2c8a3cd165b8755')
+sha256sums=('43262e500aaf8b89fb5f0b60ab13163500ee877908cdd6861208546d95c6dba0')
 
 build() {
   cd "$srcdir/autobahn-$pkgver"


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

2018-12-02 Thread Morten Linderud via arch-commits
Date: Sunday, December 2, 2018 @ 16:11:11
  Author: foxboron
Revision: 410770

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-02 16:10:59 UTC (rev 410769)
+++ PKGBUILD2018-12-02 16:11:11 UTC (rev 410770)
@@ -1,52 +0,0 @@
-# Maintainer: Morten Linderud 
-# Maintainer: Anatol Pomozov
-
-pkgbase=python-autobahn
-pkgname=(python-autobahn python2-autobahn)
-pkgver=18.10.1
-pkgrel=1
-pkgdesc='Real-time framework for Web, Mobile & Internet of Things'
-arch=(any)
-url='http://autobahn.ws/python/'
-license=(MIT)
-makedepends=(python-setuptools python2-setuptools python-twisted python-six 
python-txaio python2-twisted python2-six python2-txaio)
-checkdepends=(python2-unittest2)
-source=(https://pypi.io/packages/source/a/autobahn/autobahn-$pkgver.tar.gz)
-sha256sums=('b5767bebd94ba13fc286604f889f208e7babc77d72d9f372d331bc14c89c5a40')
-
-prepare() {
-  cp -a autobahn-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir/autobahn-$pkgver"
-  python setup.py build
-
-  cd "$srcdir/autobahn-$pkgver-py2"
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir/autobahn-$pkgver"
-  #It requires python-unittest2 in [community]
-  #python setup.py test
-
-  cd "$srcdir/autobahn-$pkgver-py2"
-  #python2 setup.py test
-}
-
-package_python-autobahn() {
-  depends=(python python-twisted python-six python-txaio)
-
-  cd "$srcdir/autobahn-$pkgver"
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_python2-autobahn() {
-  depends=(python2 python2-twisted python2-six python2-txaio)
-
-  cd "$srcdir/autobahn-$pkgver-py2"
-  python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: python-autobahn/repos/community-any/PKGBUILD (from rev 410769, 
python-autobahn/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-02 16:11:11 UTC (rev 410770)
@@ -0,0 +1,44 @@
+# Maintainer: Morten Linderud 
+# Maintainer: Anatol Pomozov
+
+pkgbase=python-autobahn
+pkgname=(python-autobahn python2-autobahn)
+pkgver=18.11.1
+pkgrel=1
+pkgdesc='Real-time framework for Web, Mobile & Internet of Things'
+arch=(any)
+url='http://autobahn.ws/python/'
+license=(MIT)
+makedepends=(python-setuptools python2-setuptools python-twisted python-six 
python-txaio python2-twisted python2-six python2-txaio)
+checkdepends=(python2-unittest2)
+source=(https://pypi.io/packages/source/a/autobahn/autobahn-$pkgver.tar.gz)
+sha256sums=('c7e775e46fc033160fa89942de4953ca739f26167f74431dc2c8a3cd165b8755')
+
+build() {
+  cd "$srcdir/autobahn-$pkgver"
+  python setup.py build
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir/autobahn-$pkgver"
+  #It requires python-unittest2 in [community]
+  #python setup.py test
+  #python2 setup.py test
+}
+
+package_python-autobahn() {
+  depends=(python python-twisted python-six python-txaio)
+
+  cd "$srcdir/autobahn-$pkgver"
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_python2-autobahn() {
+  depends=(python2 python2-twisted python2-six python2-txaio)
+
+  cd "$srcdir/autobahn-$pkgver"
+  python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2018-12-02 Thread Morten Linderud via arch-commits
Date: Sunday, December 2, 2018 @ 16:10:59
  Author: foxboron
Revision: 410769

upgpkg: python-autobahn 18.11.1-1

Modified:
  python-autobahn/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-02 16:06:07 UTC (rev 410768)
+++ PKGBUILD2018-12-02 16:10:59 UTC (rev 410769)
@@ -3,7 +3,7 @@
 
 pkgbase=python-autobahn
 pkgname=(python-autobahn python2-autobahn)
-pkgver=18.10.1
+pkgver=18.11.1
 pkgrel=1
 pkgdesc='Real-time framework for Web, Mobile & Internet of Things'
 arch=(any)
@@ -12,17 +12,11 @@
 makedepends=(python-setuptools python2-setuptools python-twisted python-six 
python-txaio python2-twisted python2-six python2-txaio)
 checkdepends=(python2-unittest2)
 source=(https://pypi.io/packages/source/a/autobahn/autobahn-$pkgver.tar.gz)
-sha256sums=('b5767bebd94ba13fc286604f889f208e7babc77d72d9f372d331bc14c89c5a40')
+sha256sums=('c7e775e46fc033160fa89942de4953ca739f26167f74431dc2c8a3cd165b8755')
 
-prepare() {
-  cp -a autobahn-$pkgver{,-py2}
-}
-
 build() {
   cd "$srcdir/autobahn-$pkgver"
   python setup.py build
-
-  cd "$srcdir/autobahn-$pkgver-py2"
   python2 setup.py build
 }
 
@@ -30,8 +24,6 @@
   cd "$srcdir/autobahn-$pkgver"
   #It requires python-unittest2 in [community]
   #python setup.py test
-
-  cd "$srcdir/autobahn-$pkgver-py2"
   #python2 setup.py test
 }
 
@@ -46,7 +38,7 @@
 package_python2-autobahn() {
   depends=(python2 python2-twisted python2-six python2-txaio)
 
-  cd "$srcdir/autobahn-$pkgver-py2"
+  cd "$srcdir/autobahn-$pkgver"
   python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
 }


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

2018-12-02 Thread Morten Linderud via arch-commits
Date: Sunday, December 2, 2018 @ 16:05:55
  Author: foxboron
Revision: 410767

upgpkg: python-pydocstyle 3.0.0-1

Modified:
  python-pydocstyle/trunk/PKGBUILD

--+
 PKGBUILD |   26 +-
 1 file changed, 9 insertions(+), 17 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-02 16:01:31 UTC (rev 410766)
+++ PKGBUILD2018-12-02 16:05:55 UTC (rev 410767)
@@ -2,28 +2,23 @@
 
 pkgbase=python-pydocstyle
 pkgname=(python-pydocstyle python2-pydocstyle)
-pkgver=2.1.1
-pkgrel=3
-pkgdesc="An implementation of the Language Server Protocol for Python"
+pkgver=3.0.0
+pkgrel=1
+pkgdesc="Docstring style checker"
 arch=("any")
-url="https://github.com/palantir/python-language-server;
+url="http://www.pydocstyle.org/;
 license=("MIT")
 makedepends=("python" "python-setuptools"
  "python2" "python2-setuptools")
-checkdepends=("python-pytest" "python-pytest-runner" "python-mock" "python-pip"
-  "python2-pytest" "python2-pytest-runner" "python2-mock" 
"python2-pip" "python2-pathlib")
+checkdepends=("python-pytest" "python-pytest-runner" "python-mock" 
"python-pip" "python-snowballstemmer"
+  "python2-pytest" "python2-pytest-runner" "python2-mock" 
"python2-pip" "python2-pathlib"
+  "python2-snowballstemmer")
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/PyCQA/pydocstyle/archive/${pkgver}.tar.gz;)
-sha256sums=('e83f5644897a623aafb0c3fd9ed11fcdc70c72efff4c3ac4738b12bd8665d12f')
+sha256sums=('99d4c0b584eca25a179766a1e4c7e69284bc94eb9abf6d8e010d69b5a22596ec')
 
-prepare() {
-  cp -r "pydocstyle-$pkgver"{,-py2}
-}
-
 build() {
 cd "${srcdir}/pydocstyle-${pkgver}"
 python setup.py build
-
-cd "${srcdir}/pydocstyle-${pkgver}-py2"
 python2 setup.py build
 }
 
@@ -30,9 +25,6 @@
 check() {
 cd "${srcdir}/pydocstyle-${pkgver}"
 python setup.py pytest --addopts "-k 'not test_integration'"
-
-
-cd "${srcdir}/pydocstyle-${pkgver}-py2"
 python2 setup.py pytest --addopts "-k 'not test_integration'"
 }
 
@@ -45,7 +37,7 @@
 
 package_python2-pydocstyle() {
 depends=("python2" "python2-snowballstemmer" "python2-configparser")
-cd "pydocstyle-${pkgver}-py2"
+cd "pydocstyle-${pkgver}"
 python2 setup.py install --root="${pkgdir}/" --optimize=1 --skip-build
 install -Dm644 LICENSE-MIT "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
 


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

2018-12-02 Thread Morten Linderud via arch-commits
Date: Sunday, December 2, 2018 @ 16:06:07
  Author: foxboron
Revision: 410768

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-02 16:05:55 UTC (rev 410767)
+++ PKGBUILD2018-12-02 16:06:07 UTC (rev 410768)
@@ -1,53 +0,0 @@
-# Maintainer: Morten Linderud 
-
-pkgbase=python-pydocstyle
-pkgname=(python-pydocstyle python2-pydocstyle)
-pkgver=2.1.1
-pkgrel=3
-pkgdesc="An implementation of the Language Server Protocol for Python"
-arch=("any")
-url="https://github.com/palantir/python-language-server;
-license=("MIT")
-makedepends=("python" "python-setuptools"
- "python2" "python2-setuptools")
-checkdepends=("python-pytest" "python-pytest-runner" "python-mock" "python-pip"
-  "python2-pytest" "python2-pytest-runner" "python2-mock" 
"python2-pip" "python2-pathlib")
-source=("$pkgname-$pkgver.tar.gz::https://github.com/PyCQA/pydocstyle/archive/${pkgver}.tar.gz;)
-sha256sums=('e83f5644897a623aafb0c3fd9ed11fcdc70c72efff4c3ac4738b12bd8665d12f')
-
-prepare() {
-  cp -r "pydocstyle-$pkgver"{,-py2}
-}
-
-build() {
-cd "${srcdir}/pydocstyle-${pkgver}"
-python setup.py build
-
-cd "${srcdir}/pydocstyle-${pkgver}-py2"
-python2 setup.py build
-}
-
-check() {
-cd "${srcdir}/pydocstyle-${pkgver}"
-python setup.py pytest --addopts "-k 'not test_integration'"
-
-
-cd "${srcdir}/pydocstyle-${pkgver}-py2"
-python2 setup.py pytest --addopts "-k 'not test_integration'"
-}
-
-package_python-pydocstyle() {
-depends=("python" "python-snowballstemmer")
-cd "pydocstyle-${pkgver}"
-python setup.py install --root="${pkgdir}/" --optimize=1 --skip-build
-install -Dm644 LICENSE-MIT "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_python2-pydocstyle() {
-depends=("python2" "python2-snowballstemmer" "python2-configparser")
-cd "pydocstyle-${pkgver}-py2"
-python2 setup.py install --root="${pkgdir}/" --optimize=1 --skip-build
-install -Dm644 LICENSE-MIT "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-
-mv "$pkgdir/usr/bin/pydocstyle" "$pkgdir/usr/bin/pydocstyle2"
-}

Copied: python-pydocstyle/repos/community-any/PKGBUILD (from rev 410767, 
python-pydocstyle/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-02 16:06:07 UTC (rev 410768)
@@ -0,0 +1,45 @@
+# Maintainer: Morten Linderud 
+
+pkgbase=python-pydocstyle
+pkgname=(python-pydocstyle python2-pydocstyle)
+pkgver=3.0.0
+pkgrel=1
+pkgdesc="Docstring style checker"
+arch=("any")
+url="http://www.pydocstyle.org/;
+license=("MIT")
+makedepends=("python" "python-setuptools"
+ "python2" "python2-setuptools")
+checkdepends=("python-pytest" "python-pytest-runner" "python-mock" 
"python-pip" "python-snowballstemmer"
+  "python2-pytest" "python2-pytest-runner" "python2-mock" 
"python2-pip" "python2-pathlib"
+  "python2-snowballstemmer")
+source=("$pkgname-$pkgver.tar.gz::https://github.com/PyCQA/pydocstyle/archive/${pkgver}.tar.gz;)
+sha256sums=('99d4c0b584eca25a179766a1e4c7e69284bc94eb9abf6d8e010d69b5a22596ec')
+
+build() {
+cd "${srcdir}/pydocstyle-${pkgver}"
+python setup.py build
+python2 setup.py build
+}
+
+check() {
+cd "${srcdir}/pydocstyle-${pkgver}"
+python setup.py pytest --addopts "-k 'not test_integration'"
+python2 setup.py pytest --addopts "-k 'not test_integration'"
+}
+
+package_python-pydocstyle() {
+depends=("python" "python-snowballstemmer")
+cd "pydocstyle-${pkgver}"
+python setup.py install --root="${pkgdir}/" --optimize=1 --skip-build
+install -Dm644 LICENSE-MIT "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_python2-pydocstyle() {
+depends=("python2" "python2-snowballstemmer" "python2-configparser")
+cd "pydocstyle-${pkgver}"
+python2 setup.py install --root="${pkgdir}/" --optimize=1 --skip-build
+install -Dm644 LICENSE-MIT "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+mv "$pkgdir/usr/bin/pydocstyle" "$pkgdir/usr/bin/pydocstyle2"
+}


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

2018-12-02 Thread Morten Linderud via arch-commits
Date: Sunday, December 2, 2018 @ 16:01:31
  Author: foxboron
Revision: 410766

archrelease: copy trunk to community-x86_64

Added:
  jgmenu/repos/community-x86_64/PKGBUILD
(from rev 410765, jgmenu/trunk/PKGBUILD)
Deleted:
  jgmenu/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-02 16:01:19 UTC (rev 410765)
+++ PKGBUILD2018-12-02 16:01:31 UTC (rev 410766)
@@ -1,29 +0,0 @@
-# Maintainer: Mortne Linderu 
-# Contributor: Johan Malm 
-
-pkgname=jgmenu
-pkgver=1.4.1
-pkgrel=1
-pkgdesc="Small X11 menu intended to be used with openbox and tint2"
-arch=('i686' 'x86_64')
-url="http://www.github.com/johanmalm/jgmenu;
-license=('GPL')
-depends=('libx11' 'cairo' 'pango' 'libxrandr' 'librsvg' 'libxml2' 'glib2' 
'menu-cache' 'python')
-source=("${pkgname}-${pkgver}.tar.gz::http://www.github.com/johanmalm/jgmenu/archive/v${pkgver}.tar.gz;)
-sha256sums=('14883b6c804fb59a517448190d882aaa053e01b25ca92c656d8b6f004c33cdb5')
-
-build() {
-   cd "$pkgname-$pkgver"
-   make
-}
-
-check(){
-   cd "$pkgname-$pkgver"
-   make check
-   make test
-}
-
-package() {
-   cd "$pkgname-$pkgver"
-   make DESTDIR="$pkgdir" prefix=/usr install
-}

Copied: jgmenu/repos/community-x86_64/PKGBUILD (from rev 410765, 
jgmenu/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-02 16:01:31 UTC (rev 410766)
@@ -0,0 +1,29 @@
+# Maintainer: Mortne Linderu 
+# Contributor: Johan Malm 
+
+pkgname=jgmenu
+pkgver=1.5
+pkgrel=1
+pkgdesc="Small X11 menu intended to be used with openbox and tint2"
+arch=('i686' 'x86_64')
+url="http://www.github.com/johanmalm/jgmenu;
+license=('GPL')
+depends=('libx11' 'cairo' 'pango' 'libxrandr' 'librsvg' 'libxml2' 'glib2' 
'menu-cache' 'python')
+source=("${pkgname}-${pkgver}.tar.gz::http://www.github.com/johanmalm/jgmenu/archive/v${pkgver}.tar.gz;)
+sha256sums=('5fbde27cb8493ce8ffcb9e2f0015219be1f85b7aa1a6e9ce5ed2f4ff091e25d6')
+
+build() {
+   cd "$pkgname-$pkgver"
+   make
+}
+
+check(){
+   cd "$pkgname-$pkgver"
+   make check
+   make test
+}
+
+package() {
+   cd "$pkgname-$pkgver"
+   make DESTDIR="$pkgdir" prefix=/usr install
+}


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

2018-12-02 Thread Morten Linderud via arch-commits
Date: Sunday, December 2, 2018 @ 16:01:19
  Author: foxboron
Revision: 410765

upgpkg: jgmenu 1.5-1

Modified:
  jgmenu/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-02 16:00:05 UTC (rev 410764)
+++ PKGBUILD2018-12-02 16:01:19 UTC (rev 410765)
@@ -2,7 +2,7 @@
 # Contributor: Johan Malm 
 
 pkgname=jgmenu
-pkgver=1.4.1
+pkgver=1.5
 pkgrel=1
 pkgdesc="Small X11 menu intended to be used with openbox and tint2"
 arch=('i686' 'x86_64')
@@ -10,7 +10,7 @@
 license=('GPL')
 depends=('libx11' 'cairo' 'pango' 'libxrandr' 'librsvg' 'libxml2' 'glib2' 
'menu-cache' 'python')
 
source=("${pkgname}-${pkgver}.tar.gz::http://www.github.com/johanmalm/jgmenu/archive/v${pkgver}.tar.gz;)
-sha256sums=('14883b6c804fb59a517448190d882aaa053e01b25ca92c656d8b6f004c33cdb5')
+sha256sums=('5fbde27cb8493ce8ffcb9e2f0015219be1f85b7aa1a6e9ce5ed2f4ff091e25d6')
 
 build() {
cd "$pkgname-$pkgver"


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

2018-12-02 Thread Morten Linderud via arch-commits
Date: Sunday, December 2, 2018 @ 16:00:05
  Author: foxboron
Revision: 410764

archrelease: copy trunk to community-any

Added:
  
python-pipenv/repos/community-any/0001-setup-don-t-setup_requires-on-things-used-to-run-dev.patch
(from rev 410763, 
python-pipenv/trunk/0001-setup-don-t-setup_requires-on-things-used-to-run-dev.patch)
  python-pipenv/repos/community-any/PKGBUILD
(from rev 410763, python-pipenv/trunk/PKGBUILD)
Deleted:
  
python-pipenv/repos/community-any/0001-setup-don-t-setup_requires-on-things-used-to-run-dev.patch
  python-pipenv/repos/community-any/PKGBUILD

-+
 0001-setup-don-t-setup_requires-on-things-used-to-run-dev.patch |   64 ++--
 PKGBUILD|  144 
+-
 2 files changed, 104 insertions(+), 104 deletions(-)

Deleted: 0001-setup-don-t-setup_requires-on-things-used-to-run-dev.patch
===
--- 0001-setup-don-t-setup_requires-on-things-used-to-run-dev.patch 
2018-12-02 15:59:53 UTC (rev 410763)
+++ 0001-setup-don-t-setup_requires-on-things-used-to-run-dev.patch 
2018-12-02 16:00:05 UTC (rev 410764)
@@ -1,32 +0,0 @@
-From 29c76d50b90fd7b9494c61b0f028287580172940 Mon Sep 17 00:00:00 2001
-From: Eli Schwartz 
-Date: Wed, 15 Aug 2018 22:37:12 -0400
-Subject: [PATCH] setup: don't setup_requires on things used to run development
- tasks
-
-It's not actually needed for setup.py, and is only used for:
-- `invoke release.bump-version`
-- `invoke release.tag-version`
-
-Including it in setup_requires is just something which ends up being
-downloaded from PyPI as an egg, when doing possibly offline distro
-packaging.

- setup.py | 1 -
- 1 file changed, 1 deletion(-)
-
-diff --git a/setup.py b/setup.py
-index 7c87a2d6..179359f0 100644
 a/setup.py
-+++ b/setup.py
-@@ -130,7 +130,6 @@ setup(
- ],
- },
- python_requires=">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*",
--setup_requires=["invoke", "parver"],
- install_requires=required,
- extras_require={},
- include_package_data=True,
--- 
-2.18.0
-

Copied: 
python-pipenv/repos/community-any/0001-setup-don-t-setup_requires-on-things-used-to-run-dev.patch
 (from rev 410763, 
python-pipenv/trunk/0001-setup-don-t-setup_requires-on-things-used-to-run-dev.patch)
===
--- 0001-setup-don-t-setup_requires-on-things-used-to-run-dev.patch 
(rev 0)
+++ 0001-setup-don-t-setup_requires-on-things-used-to-run-dev.patch 
2018-12-02 16:00:05 UTC (rev 410764)
@@ -0,0 +1,32 @@
+From 29c76d50b90fd7b9494c61b0f028287580172940 Mon Sep 17 00:00:00 2001
+From: Eli Schwartz 
+Date: Wed, 15 Aug 2018 22:37:12 -0400
+Subject: [PATCH] setup: don't setup_requires on things used to run development
+ tasks
+
+It's not actually needed for setup.py, and is only used for:
+- `invoke release.bump-version`
+- `invoke release.tag-version`
+
+Including it in setup_requires is just something which ends up being
+downloaded from PyPI as an egg, when doing possibly offline distro
+packaging.
+---
+ setup.py | 1 -
+ 1 file changed, 1 deletion(-)
+
+diff --git a/setup.py b/setup.py
+index 7c87a2d6..179359f0 100644
+--- a/setup.py
 b/setup.py
+@@ -130,7 +130,6 @@ setup(
+ ],
+ },
+ python_requires=">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*",
+-setup_requires=["invoke", "parver"],
+ install_requires=required,
+ extras_require={},
+ include_package_data=True,
+-- 
+2.18.0
+

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-02 15:59:53 UTC (rev 410763)
+++ PKGBUILD2018-12-02 16:00:05 UTC (rev 410764)
@@ -1,72 +0,0 @@
-# Maintainer: Morten Linderud 
-# Contributor: Maikel Wever 
-
-pkgbase=python-pipenv
-pkgname=(python-pipenv python2-pipenv)
-pkgver=2018.11.14
-pkgrel=1
-pkgdesc="Sacred Marriage of Pipfile, Pip, & Virtualenv."
-url="https://docs.pipenv.org;
-arch=('any')
-license=('MIT')
-makedepends=('python-setuptools'
- 'python2-setuptools')
-#checkdepends=('python-pytest' 'python-pytest-runner'
-#'python-pip' 'python-certifi' 'python-virtualenv'
-#'python-virtualenv-clone' 'python-strict-rfc3339'
-#'python-pytz' 'python-flaky' 'python-mock'
-#'python2-pytest' 'python2-pytest-runner')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/pypa/pipenv/archive/v${pkgver}.tar.gz;
-"0001-setup-don-t-setup_requires-on-things-used-to-run-dev.patch")
-sha256sums=('899c7a39f7908be6e4273cbb65a28b54fd049700aaf006220fa8e0776739074c'
-'878fd681571afe7e9664fcb06828f41e999d33dc31ae3b11cfbd93475fe8516d')
-
-prepare() {
-  patch -p1 -d pipenv-$pkgver < 
0001-setup-don-t-setup_requires-on-things-used-to-run-dev.patch
-  cp -a pipenv-$pkgver{,-py2}
-}
-
-build(){
-  cd "$srcdir/pipenv-$pkgver"
-  python setup.py 

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

2018-12-02 Thread Morten Linderud via arch-commits
Date: Sunday, December 2, 2018 @ 15:59:53
  Author: foxboron
Revision: 410763

upgpkg: python-pipenv 2018.11.26-1

Modified:
  python-pipenv/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-02 15:53:14 UTC (rev 410762)
+++ PKGBUILD2018-12-02 15:59:53 UTC (rev 410763)
@@ -3,7 +3,7 @@
 
 pkgbase=python-pipenv
 pkgname=(python-pipenv python2-pipenv)
-pkgver=2018.11.14
+pkgver=2018.11.26
 pkgrel=1
 pkgdesc="Sacred Marriage of Pipfile, Pip, & Virtualenv."
 url="https://docs.pipenv.org;
@@ -18,7 +18,7 @@
 #'python2-pytest' 'python2-pytest-runner')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/pypa/pipenv/archive/v${pkgver}.tar.gz;
 "0001-setup-don-t-setup_requires-on-things-used-to-run-dev.patch")
-sha256sums=('899c7a39f7908be6e4273cbb65a28b54fd049700aaf006220fa8e0776739074c'
+sha256sums=('b095395fa6763329fec54c8f6df38c35a39ec3b8b316a4418829e44d50cbc631'
 '878fd681571afe7e9664fcb06828f41e999d33dc31ae3b11cfbd93475fe8516d')
 
 prepare() {


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

2018-12-02 Thread Morten Linderud via arch-commits
Date: Sunday, December 2, 2018 @ 15:53:14
  Author: foxboron
Revision: 410762

archrelease: copy trunk to community-x86_64

Added:
  gopass/repos/community-x86_64/PKGBUILD
(from rev 410761, gopass/trunk/PKGBUILD)
Deleted:
  gopass/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-02 15:53:02 UTC (rev 410761)
+++ PKGBUILD2018-12-02 15:53:14 UTC (rev 410762)
@@ -1,39 +0,0 @@
-# Maintainer: Morten Linderud 
-pkgname=gopass
-pkgver=1.8.2
-pkgrel=2
-pkgdesc="The slightly more awesome standard unix password manager for teams."
-arch=('x86_64')
-url="https://github.com/gopasspw/gopass;
-license=('MIT')
-makedepends=('go-pie')
-optdepends=('xdotool: for typing passwords selected by dmenu'
-   'xsel: clipboard support'
-   'xclip: clipboard support')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/gopasspw/gopass/archive/v${pkgver}.tar.gz;)
-sha256sums=('6dc423448c0672fd5087ab75e4c3d8584fb75c93789c9fd68bf14576ab46d1ed')
-
-prepare(){
-  export GOPATH="${srcdir}"
-  mkdir -p src
-  mv "${pkgname}-${pkgver}"/vendor/* src/
-  mkdir -p src/github.com/gopasspw
-  ln -rTsf "${pkgname}-${pkgver}" src/github.com/gopasspw/gopass
-
-  # Fix version for build
-  cd "${pkgname}-${pkgver}"
-  echo $pkgver > VERSION
-}
-
-build(){
-  cd "${pkgname}-${pkgver}"
-  export GOPATH="${srcdir}"
-  make build
-  make completion
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" PREFIX="/usr" install
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: gopass/repos/community-x86_64/PKGBUILD (from rev 410761, 
gopass/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-02 15:53:14 UTC (rev 410762)
@@ -0,0 +1,35 @@
+# Maintainer: Morten Linderud 
+pkgname=gopass
+pkgver=1.8.3
+pkgrel=1
+pkgdesc="The slightly more awesome standard unix password manager for teams."
+arch=('x86_64')
+url="https://github.com/gopasspw/gopass;
+license=('MIT')
+makedepends=('go-pie')
+optdepends=('xdotool: for typing passwords selected by dmenu'
+   'xsel: clipboard support'
+   'xclip: clipboard support')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/gopasspw/gopass/archive/v${pkgver}.tar.gz;)
+sha256sums=('ed03e6986a693c29da6a2ebb303618e6f16b2414f0dfd2df8537049a80d78bdf')
+
+prepare(){
+  export GOPATH="${srcdir}"
+  mkdir -p src
+  mv "${pkgname}-${pkgver}"/vendor/* src/
+  mkdir -p src/github.com/gopasspw
+  ln -rTsf "${pkgname}-${pkgver}" src/github.com/gopasspw/gopass
+}
+
+build(){
+  cd "${pkgname}-${pkgver}"
+  export GOPATH="${srcdir}"
+  make build
+  make completion
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" PREFIX="/usr" install
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}


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

2018-12-02 Thread Morten Linderud via arch-commits
Date: Sunday, December 2, 2018 @ 15:53:02
  Author: foxboron
Revision: 410761

upgpkg: gopass 1.8.3-1

Modified:
  gopass/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-02 14:54:26 UTC (rev 410760)
+++ PKGBUILD2018-12-02 15:53:02 UTC (rev 410761)
@@ -1,7 +1,7 @@
 # Maintainer: Morten Linderud 
 pkgname=gopass
-pkgver=1.8.2
-pkgrel=2
+pkgver=1.8.3
+pkgrel=1
 pkgdesc="The slightly more awesome standard unix password manager for teams."
 arch=('x86_64')
 url="https://github.com/gopasspw/gopass;
@@ -11,7 +11,7 @@
'xsel: clipboard support'
'xclip: clipboard support')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/gopasspw/gopass/archive/v${pkgver}.tar.gz;)
-sha256sums=('6dc423448c0672fd5087ab75e4c3d8584fb75c93789c9fd68bf14576ab46d1ed')
+sha256sums=('ed03e6986a693c29da6a2ebb303618e6f16b2414f0dfd2df8537049a80d78bdf')
 
 prepare(){
   export GOPATH="${srcdir}"
@@ -19,10 +19,6 @@
   mv "${pkgname}-${pkgver}"/vendor/* src/
   mkdir -p src/github.com/gopasspw
   ln -rTsf "${pkgname}-${pkgver}" src/github.com/gopasspw/gopass
-
-  # Fix version for build
-  cd "${pkgname}-${pkgver}"
-  echo $pkgver > VERSION
 }
 
 build(){


[arch-commits] Commit in acpid/repos/community-x86_64 (8 files)

2018-11-16 Thread Morten Linderud via arch-commits
Date: Friday, November 16, 2018 @ 23:33:08
  Author: foxboron
Revision: 408499

archrelease: copy trunk to community-x86_64

Added:
  acpid/repos/community-x86_64/PKGBUILD
(from rev 408498, acpid/trunk/PKGBUILD)
  acpid/repos/community-x86_64/acpid.service
(from rev 408498, acpid/trunk/acpid.service)
  acpid/repos/community-x86_64/anything
(from rev 408498, acpid/trunk/anything)
  acpid/repos/community-x86_64/handler.sh
(from rev 408498, acpid/trunk/handler.sh)
Deleted:
  acpid/repos/community-x86_64/PKGBUILD
  acpid/repos/community-x86_64/acpid.service
  acpid/repos/community-x86_64/anything
  acpid/repos/community-x86_64/handler.sh

---+
 PKGBUILD  |   91 -
 acpid.service |   18 +++---
 anything  |6 +-
 handler.sh|  154 
 4 files changed, 134 insertions(+), 135 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-11-16 23:32:55 UTC (rev 408498)
+++ PKGBUILD2018-11-16 23:33:08 UTC (rev 408499)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Morten Linderud 
-# Contributor: Sébastien Luttringer
-# Contributor: xduugu
-# Contributor: Manolis Tzanidakis
-# Contributor: Jonathan Schmidt https://downloads.sourceforge.net/sourceforge/acpid2/$pkgname-$pkgver.tar.xz;
-'acpid.service'
-'anything'
-'handler.sh')
-sha256sums=('28b77b62d3f64ebd1c2a3d16bccc6d4333b4e24a86aeacebec255fad223cf4cb'
-'a8236bbf774f5e90a4daa369731d6d335c3374ddc62f1224fba02a3d6d678111'
-'eb5230affb9dba7653890655b94e83f377c689a39131b6b13c8202ba2382c275'
-'1c1e39b7ecc57092ba9d747f452fb36d8ae0456e2e64849c9c4a2625d1d57413')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sbindir=/usr/bin
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-
-  # default config
-  install -Dm644 ../anything "$pkgdir/etc/acpi/events/anything"
-  install -Dm755 ../handler.sh "$pkgdir/etc/acpi/handler.sh"
-
-  # systemd
-  install -Dm644 ../acpid.service 
"$pkgdir/usr/lib/systemd/system/acpid.service"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: acpid/repos/community-x86_64/PKGBUILD (from rev 408498, 
acpid/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-11-16 23:33:08 UTC (rev 408499)
@@ -0,0 +1,45 @@
+# Maintainer: Morten Linderud 
+# Contributor: Sébastien Luttringer
+# Contributor: xduugu
+# Contributor: Manolis Tzanidakis
+# Contributor: Jonathan Schmidt https://downloads.sourceforge.net/sourceforge/acpid2/$pkgname-$pkgver.tar.xz;
+'acpid.service'
+'anything'
+'handler.sh')
+sha256sums=('fc9dc669ed85d9a1739aa76915e0667c6697c5431160f8dfb253046c6a072cc3'
+'a8236bbf774f5e90a4daa369731d6d335c3374ddc62f1224fba02a3d6d678111'
+'eb5230affb9dba7653890655b94e83f377c689a39131b6b13c8202ba2382c275'
+'1c1e39b7ecc57092ba9d747f452fb36d8ae0456e2e64849c9c4a2625d1d57413')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sbindir=/usr/bin
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+
+  # default config
+  install -Dm644 ../anything "$pkgdir/etc/acpi/events/anything"
+  install -Dm755 ../handler.sh "$pkgdir/etc/acpi/handler.sh"
+
+  # systemd
+  install -Dm644 ../acpid.service 
"$pkgdir/usr/lib/systemd/system/acpid.service"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: acpid.service
===
--- acpid.service   2018-11-16 23:32:55 UTC (rev 408498)
+++ acpid.service   2018-11-16 23:33:08 UTC (rev 408499)
@@ -1,9 +0,0 @@
-[Unit]
-Description=ACPI event daemon
-Documentation=man:acpid(8)
-
-[Service]
-ExecStart=/usr/bin/acpid --foreground --netlink
-
-[Install]
-WantedBy=multi-user.target

Copied: acpid/repos/community-x86_64/acpid.service (from rev 408498, 
acpid/trunk/acpid.service)
===
--- acpid.service   (rev 0)
+++ acpid.service   2018-11-16 23:33:08 UTC (rev 408499)
@@ -0,0 +1,9 @@
+[Unit]
+Description=ACPI event daemon
+Documentation=man:acpid(8)
+
+[Service]
+ExecStart=/usr/bin/acpid --foreground --netlink
+
+[Install]
+WantedBy=multi-user.target

Deleted: anything
===
--- anything2018-11-16 23:32:55 UTC (rev 408498)
+++ anything2018-11-16 23:33:08 UTC (rev 408499)
@@ -1,3 +0,0 @@
-# Pass all events to our one handler script
-event=.*
-action=/etc/acpi/handler.sh %e

Copied: acpid/repos/community-x86_64/anything (from rev 408498, 
acpid/trunk/anything)
===
--- anything(rev 0)
+++ anything2018-11-16 23:33:08 UTC (rev 408499)
@@ -0,0 +1,3 @@
+# 

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

2018-11-16 Thread Morten Linderud via arch-commits
Date: Friday, November 16, 2018 @ 23:32:55
  Author: foxboron
Revision: 408498

upgpkg: acpid 2.0.31-1

Modified:
  acpid/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-11-16 23:25:09 UTC (rev 408497)
+++ PKGBUILD2018-11-16 23:32:55 UTC (rev 408498)
@@ -5,7 +5,7 @@
 # Contributor: Jonathan Schmidt 

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

2018-11-16 Thread Morten Linderud via arch-commits
Date: Friday, November 16, 2018 @ 23:25:09
  Author: foxboron
Revision: 408497

archrelease: copy trunk to community-any

Added:
  pass-otp/repos/community-any/PKGBUILD
(from rev 408496, pass-otp/trunk/PKGBUILD)
Deleted:
  pass-otp/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-11-16 23:24:58 UTC (rev 408496)
+++ PKGBUILD2018-11-16 23:25:09 UTC (rev 408497)
@@ -1,21 +0,0 @@
-# Maintainer: Morten Linderud 
-# Contibutor: Alexandre Pujol 
-
-pkgname='pass-otp'
-pkgver=1.1.1
-pkgrel=1
-pkgdesc='A pass extension for managing one-time-password (OTP) tokens.'
-arch=('any')
-url='https://github.com/tadfisher/pass-otp'
-license=('GPL3')
-depends=('pass'
- 'oath-toolkit'
-'qrencode')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/tadfisher/pass-otp/archive/v${pkgver}.tar.gz;)
-sha256sums=('edb3142ab81d70af4e6d1c7f13abebd7c349be474a3f9293d9648ee91b75b458')
-
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-}

Copied: pass-otp/repos/community-any/PKGBUILD (from rev 408496, 
pass-otp/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-11-16 23:25:09 UTC (rev 408497)
@@ -0,0 +1,21 @@
+# Maintainer: Morten Linderud 
+# Contibutor: Alexandre Pujol 
+
+pkgname='pass-otp'
+pkgver=1.2.0
+pkgrel=1
+pkgdesc='A pass extension for managing one-time-password (OTP) tokens.'
+arch=('any')
+url='https://github.com/tadfisher/pass-otp'
+license=('GPL3')
+depends=('pass'
+'oath-toolkit'
+'qrencode')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/tadfisher/pass-otp/archive/v${pkgver}.tar.gz;)
+sha256sums=('5720a649267a240a4f7ba5a6445193481070049c1d08ba38b00d20fc551c3a67')
+
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}


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

2018-11-16 Thread Morten Linderud via arch-commits
Date: Friday, November 16, 2018 @ 23:24:58
  Author: foxboron
Revision: 408496

upgpkg: pass-otp 1.2.0-1

Modified:
  pass-otp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-11-16 23:23:21 UTC (rev 408495)
+++ PKGBUILD2018-11-16 23:24:58 UTC (rev 408496)
@@ -2,7 +2,7 @@
 # Contibutor: Alexandre Pujol 
 
 pkgname='pass-otp'
-pkgver=1.1.1
+pkgver=1.2.0
 pkgrel=1
 pkgdesc='A pass extension for managing one-time-password (OTP) tokens.'
 arch=('any')
@@ -9,10 +9,10 @@
 url='https://github.com/tadfisher/pass-otp'
 license=('GPL3')
 depends=('pass'
- 'oath-toolkit'
-'qrencode')
+'oath-toolkit'
+'qrencode')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/tadfisher/pass-otp/archive/v${pkgver}.tar.gz;)
-sha256sums=('edb3142ab81d70af4e6d1c7f13abebd7c349be474a3f9293d9648ee91b75b458')
+sha256sums=('5720a649267a240a4f7ba5a6445193481070049c1d08ba38b00d20fc551c3a67')
 
 
 package() {


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

2018-11-16 Thread Morten Linderud via arch-commits
Date: Friday, November 16, 2018 @ 23:23:11
  Author: foxboron
Revision: 408494

upgpkg: python-pipenv 2018.11.14-1

Modified:
  python-pipenv/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-11-16 23:17:24 UTC (rev 408493)
+++ PKGBUILD2018-11-16 23:23:11 UTC (rev 408494)
@@ -3,8 +3,8 @@
 
 pkgbase=python-pipenv
 pkgname=(python-pipenv python2-pipenv)
-pkgver=2018.10.13
-pkgrel=2
+pkgver=2018.11.14
+pkgrel=1
 pkgdesc="Sacred Marriage of Pipfile, Pip, & Virtualenv."
 url="https://docs.pipenv.org;
 arch=('any')
@@ -18,7 +18,7 @@
 #'python2-pytest' 'python2-pytest-runner')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/pypa/pipenv/archive/v${pkgver}.tar.gz;
 "0001-setup-don-t-setup_requires-on-things-used-to-run-dev.patch")
-sha256sums=('7d34a075ee0f252b2a26e576c6231b9d44553dc3703a21dcdbd2ede786b6ccd3'
+sha256sums=('899c7a39f7908be6e4273cbb65a28b54fd049700aaf006220fa8e0776739074c'
 '878fd681571afe7e9664fcb06828f41e999d33dc31ae3b11cfbd93475fe8516d')
 
 prepare() {


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

2018-11-16 Thread Morten Linderud via arch-commits
Date: Friday, November 16, 2018 @ 23:23:21
  Author: foxboron
Revision: 408495

archrelease: copy trunk to community-any

Added:
  
python-pipenv/repos/community-any/0001-setup-don-t-setup_requires-on-things-used-to-run-dev.patch
(from rev 408494, 
python-pipenv/trunk/0001-setup-don-t-setup_requires-on-things-used-to-run-dev.patch)
  python-pipenv/repos/community-any/PKGBUILD
(from rev 408494, python-pipenv/trunk/PKGBUILD)
Deleted:
  
python-pipenv/repos/community-any/0001-setup-don-t-setup_requires-on-things-used-to-run-dev.patch
  python-pipenv/repos/community-any/PKGBUILD

-+
 0001-setup-don-t-setup_requires-on-things-used-to-run-dev.patch |   64 ++--
 PKGBUILD|  144 
+-
 2 files changed, 104 insertions(+), 104 deletions(-)

Deleted: 0001-setup-don-t-setup_requires-on-things-used-to-run-dev.patch
===
--- 0001-setup-don-t-setup_requires-on-things-used-to-run-dev.patch 
2018-11-16 23:23:11 UTC (rev 408494)
+++ 0001-setup-don-t-setup_requires-on-things-used-to-run-dev.patch 
2018-11-16 23:23:21 UTC (rev 408495)
@@ -1,32 +0,0 @@
-From 29c76d50b90fd7b9494c61b0f028287580172940 Mon Sep 17 00:00:00 2001
-From: Eli Schwartz 
-Date: Wed, 15 Aug 2018 22:37:12 -0400
-Subject: [PATCH] setup: don't setup_requires on things used to run development
- tasks
-
-It's not actually needed for setup.py, and is only used for:
-- `invoke release.bump-version`
-- `invoke release.tag-version`
-
-Including it in setup_requires is just something which ends up being
-downloaded from PyPI as an egg, when doing possibly offline distro
-packaging.

- setup.py | 1 -
- 1 file changed, 1 deletion(-)
-
-diff --git a/setup.py b/setup.py
-index 7c87a2d6..179359f0 100644
 a/setup.py
-+++ b/setup.py
-@@ -130,7 +130,6 @@ setup(
- ],
- },
- python_requires=">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*",
--setup_requires=["invoke", "parver"],
- install_requires=required,
- extras_require={},
- include_package_data=True,
--- 
-2.18.0
-

Copied: 
python-pipenv/repos/community-any/0001-setup-don-t-setup_requires-on-things-used-to-run-dev.patch
 (from rev 408494, 
python-pipenv/trunk/0001-setup-don-t-setup_requires-on-things-used-to-run-dev.patch)
===
--- 0001-setup-don-t-setup_requires-on-things-used-to-run-dev.patch 
(rev 0)
+++ 0001-setup-don-t-setup_requires-on-things-used-to-run-dev.patch 
2018-11-16 23:23:21 UTC (rev 408495)
@@ -0,0 +1,32 @@
+From 29c76d50b90fd7b9494c61b0f028287580172940 Mon Sep 17 00:00:00 2001
+From: Eli Schwartz 
+Date: Wed, 15 Aug 2018 22:37:12 -0400
+Subject: [PATCH] setup: don't setup_requires on things used to run development
+ tasks
+
+It's not actually needed for setup.py, and is only used for:
+- `invoke release.bump-version`
+- `invoke release.tag-version`
+
+Including it in setup_requires is just something which ends up being
+downloaded from PyPI as an egg, when doing possibly offline distro
+packaging.
+---
+ setup.py | 1 -
+ 1 file changed, 1 deletion(-)
+
+diff --git a/setup.py b/setup.py
+index 7c87a2d6..179359f0 100644
+--- a/setup.py
 b/setup.py
+@@ -130,7 +130,6 @@ setup(
+ ],
+ },
+ python_requires=">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*",
+-setup_requires=["invoke", "parver"],
+ install_requires=required,
+ extras_require={},
+ include_package_data=True,
+-- 
+2.18.0
+

Deleted: PKGBUILD
===
--- PKGBUILD2018-11-16 23:23:11 UTC (rev 408494)
+++ PKGBUILD2018-11-16 23:23:21 UTC (rev 408495)
@@ -1,72 +0,0 @@
-# Maintainer: Morten Linderud 
-# Contributor: Maikel Wever 
-
-pkgbase=python-pipenv
-pkgname=(python-pipenv python2-pipenv)
-pkgver=2018.10.13
-pkgrel=2
-pkgdesc="Sacred Marriage of Pipfile, Pip, & Virtualenv."
-url="https://docs.pipenv.org;
-arch=('any')
-license=('MIT')
-makedepends=('python-setuptools'
- 'python2-setuptools')
-#checkdepends=('python-pytest' 'python-pytest-runner'
-#'python-pip' 'python-certifi' 'python-virtualenv'
-#'python-virtualenv-clone' 'python-strict-rfc3339'
-#'python-pytz' 'python-flaky' 'python-mock'
-#'python2-pytest' 'python2-pytest-runner')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/pypa/pipenv/archive/v${pkgver}.tar.gz;
-"0001-setup-don-t-setup_requires-on-things-used-to-run-dev.patch")
-sha256sums=('7d34a075ee0f252b2a26e576c6231b9d44553dc3703a21dcdbd2ede786b6ccd3'
-'878fd681571afe7e9664fcb06828f41e999d33dc31ae3b11cfbd93475fe8516d')
-
-prepare() {
-  patch -p1 -d pipenv-$pkgver < 
0001-setup-don-t-setup_requires-on-things-used-to-run-dev.patch
-  cp -a pipenv-$pkgver{,-py2}
-}
-
-build(){
-  cd "$srcdir/pipenv-$pkgver"
-  python 

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

2018-11-16 Thread Morten Linderud via arch-commits
Date: Friday, November 16, 2018 @ 23:17:24
  Author: foxboron
Revision: 408493

archrelease: copy trunk to community-x86_64

Added:
  influxdb/repos/community-x86_64/PKGBUILD
(from rev 408492, influxdb/trunk/PKGBUILD)
  influxdb/repos/community-x86_64/influxdb.sysusers
(from rev 408492, influxdb/trunk/influxdb.sysusers)
  influxdb/repos/community-x86_64/influxdb.tmpfiles
(from rev 408492, influxdb/trunk/influxdb.tmpfiles)
Deleted:
  influxdb/repos/community-x86_64/PKGBUILD
  influxdb/repos/community-x86_64/influxdb.sysusers
  influxdb/repos/community-x86_64/influxdb.tmpfiles

---+
 PKGBUILD  |  146 ++--
 influxdb.sysusers |2 
 influxdb.tmpfiles |8 +-
 3 files changed, 78 insertions(+), 78 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-11-16 23:17:13 UTC (rev 408492)
+++ PKGBUILD2018-11-16 23:17:24 UTC (rev 408493)
@@ -1,73 +0,0 @@
-# Maintainer: Morten Linderud 
-# Contributor: Nicolas Leclercq 
-# Contributor: Adam S Levy 
-# Contributor: Charles B. Johnson 
-# Contributor: Daichi Shinozaki 
-# Contributor: Ben Alex 
-
-pkgname=influxdb
-pkgver=1.7.0
-pkgrel=1
-pkgdesc='Scalable datastore for metrics, events, and real-time analytics'
-arch=('i686' 'x86_64' 'armv6h' 'armv7h' 'aarch64')
-url='https://github.com/InfluxData/influxdb'
-license=('MIT')
-makedepends=('go-pie' 'git' 'asciidoc' 'xmlto' 'dep')
-backup=('etc/influxdb/influxdb.conf')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/influxdata/influxdb/archive/v${pkgver}.tar.gz;
-"influxdb.sysusers"
-"influxdb.tmpfiles")
-sha256sums=('6041dafd0f7dcbc7961e34fbc437d32438a728c3c8e8767485ca1283437e4b47'
-'809cca823ae3027984bc7ace70db75753d7d0d4f6658a36db9d94a33054ca5e9'
-'e2aa59413a6204737383b86cedefd866d7073f56ace5b89aad38c530cc86e60c')
-
-prepare(){
-  export GOPATH="$srcdir/gopath"
-
-  mkdir -p "$GOPATH/src/github.com/influxdata/"
-  cp -r "${srcdir}/influxdb-$pkgver" 
"$GOPATH/src/github.com/influxdata/influxdb"
-  cd "$GOPATH/src/github.com/influxdata/influxdb"
-  dep ensure
-}
-
-build(){
-  export GOPATH="$srcdir/gopath"
-
-  _LDFLAGS="-X main.version=$pkgver -X main.branch=master"
-  go install -v -ldflags="$_LDFLAGS" -gcflags "all=-trimpath=${GOPATH}" 
-asmflags "all=-trimpath=${GOPATH}" "github.com/influxdata/influxdb/cmd/..."
-
-  cd "$GOPATH/src/github.com/influxdata/influxdb/man/"
-  make
-}
-
-check(){
-  export GOPATH="$srcdir/gopath"
-  go test "github.com/influxdata/influxdb/..."
-}
-
-package(){
-  export GOPATH="$srcdir/gopath"
-
-  cd "$srcdir"
-  install -Dm644 influxdb.sysusers "$pkgdir/usr/lib/sysusers.d/influxdb.conf"
-  install -Dm644 influxdb.tmpfiles "$pkgdir/usr/lib/tmpfiles.d/influxdb.conf"
-
-  cd "$GOPATH/bin"
-  install -d "$pkgdir/usr/bin/"
-  install -Dm755 influx "$pkgdir/usr/bin/"
-  install -Dm755 influxd"$pkgdir/usr/bin/"
-  install -Dm755 influx_inspect "$pkgdir/usr/bin/"
-  install -Dm755 influx_stress  "$pkgdir/usr/bin/"
-  install -Dm755 influx_tools   "$pkgdir/usr/bin/"
-  install -Dm755 influx_tsm "$pkgdir/usr/bin/"
-  install -Dm755 store  "$pkgdir/usr/bin/"
-
-  cd "$GOPATH/src/github.com/influxdata/influxdb"
-  install -Dm644 scripts/influxdb.service 
"$pkgdir/usr/lib/systemd/system/influxdb.service"
-  install -Dm644 etc/config.sample.toml   "$pkgdir/etc/influxdb/influxdb.conf"
-  install -Dm644 LICENSE  
"$pkgdir/usr/share/licenses/influxdb/LICENSE"
-
-  # Install man pages
-  install -d "$pkgdir/usr/share/man/man1"
-  install -Dm644 man/*.1 "$pkgdir/usr/share/man/man1/"
-}

Copied: influxdb/repos/community-x86_64/PKGBUILD (from rev 408492, 
influxdb/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-11-16 23:17:24 UTC (rev 408493)
@@ -0,0 +1,73 @@
+# Maintainer: Morten Linderud 
+# Contributor: Nicolas Leclercq 
+# Contributor: Adam S Levy 
+# Contributor: Charles B. Johnson 
+# Contributor: Daichi Shinozaki 
+# Contributor: Ben Alex 
+
+pkgname=influxdb
+pkgver=1.7.1
+pkgrel=1
+pkgdesc='Scalable datastore for metrics, events, and real-time analytics'
+arch=('i686' 'x86_64' 'armv6h' 'armv7h' 'aarch64')
+url='https://github.com/InfluxData/influxdb'
+license=('MIT')
+makedepends=('go-pie' 'git' 'asciidoc' 'xmlto' 'dep')
+backup=('etc/influxdb/influxdb.conf')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/influxdata/influxdb/archive/v${pkgver}.tar.gz;
+"influxdb.sysusers"
+"influxdb.tmpfiles")
+sha256sums=('c8f8e614bde301e0852e1fbeb7b9a39f758ae335b8f5a6157478082eea9cec77'
+'809cca823ae3027984bc7ace70db75753d7d0d4f6658a36db9d94a33054ca5e9'
+'e2aa59413a6204737383b86cedefd866d7073f56ace5b89aad38c530cc86e60c')
+
+prepare(){
+  export GOPATH="$srcdir/gopath"
+
+  mkdir -p "$GOPATH/src/github.com/influxdata/"

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

2018-11-16 Thread Morten Linderud via arch-commits
Date: Friday, November 16, 2018 @ 23:17:13
  Author: foxboron
Revision: 408492

upgpkg: influxdb 1.7.1-1

Also enabled RELRO

Modified:
  influxdb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-11-16 23:08:53 UTC (rev 408491)
+++ PKGBUILD2018-11-16 23:17:13 UTC (rev 408492)
@@ -6,7 +6,7 @@
 # Contributor: Ben Alex 
 
 pkgname=influxdb
-pkgver=1.7.0
+pkgver=1.7.1
 pkgrel=1
 pkgdesc='Scalable datastore for metrics, events, and real-time analytics'
 arch=('i686' 'x86_64' 'armv6h' 'armv7h' 'aarch64')
@@ -17,7 +17,7 @@
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/influxdata/influxdb/archive/v${pkgver}.tar.gz;
 "influxdb.sysusers"
 "influxdb.tmpfiles")
-sha256sums=('6041dafd0f7dcbc7961e34fbc437d32438a728c3c8e8767485ca1283437e4b47'
+sha256sums=('c8f8e614bde301e0852e1fbeb7b9a39f758ae335b8f5a6157478082eea9cec77'
 '809cca823ae3027984bc7ace70db75753d7d0d4f6658a36db9d94a33054ca5e9'
 'e2aa59413a6204737383b86cedefd866d7073f56ace5b89aad38c530cc86e60c')
 
@@ -33,7 +33,7 @@
 build(){
   export GOPATH="$srcdir/gopath"
 
-  _LDFLAGS="-X main.version=$pkgver -X main.branch=master"
+  _LDFLAGS="-X main.version=$pkgver -X main.branch=master -extldflags 
${LDFLAGS}"
   go install -v -ldflags="$_LDFLAGS" -gcflags "all=-trimpath=${GOPATH}" 
-asmflags "all=-trimpath=${GOPATH}" "github.com/influxdata/influxdb/cmd/..."
 
   cd "$GOPATH/src/github.com/influxdata/influxdb/man/"


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

2018-11-16 Thread Morten Linderud via arch-commits
Date: Friday, November 16, 2018 @ 22:18:53
  Author: foxboron
Revision: 408487

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-11-16 22:18:41 UTC (rev 408486)
+++ PKGBUILD2018-11-16 22:18:53 UTC (rev 408487)
@@ -1,25 +0,0 @@
-# $Id$
-# Maintainer: Morten Linderud 
-# Contributor: Sergej Pupykin 
-# Contributor : Rohan Dhruva (rohandhruva at gmail dot com)
-
-pkgname=python-docs
-pkgver=3.7.0
-pkgrel=1
-pkgdesc="Set of HTML documentation for python"
-arch=('any')
-url="http://docs.python.org/py3k/;
-license=('GPL')
-options=('docs')
-source=(https://sources.archlinux.org/other/community/python-docs/python-$pkgver-docs-html.tar.bz2)
-sha256sums=('8b8e96afd80f5412178f906bd706bf75fc56f9545bd6a8eb2b23c900bfb2f03a')
-
-package() {
-  mkdir -p "$pkgdir"/usr/share/doc/python/html
-  cp -rf "$srcdir"/python-$pkgver-docs-html/* 
"$pkgdir"/usr/share/doc/python/html/
-  find "$pkgdir"/usr/share/doc/python/html/ -type f -exec chmod 0644 {} \;
-  find "$pkgdir"/usr/share/doc/python/html/ -type d -exec chmod 0755 {} \;
-  install -dm0755 "$pkgdir"/etc/profile.d
-  echo "export PYTHONDOCS=/usr/share/doc/python/html/library" 
>"$pkgdir"/etc/profile.d/$pkgname.sh
-  echo "setenv PYTHONDOCS /usr/share/doc/python/html/library" 
>"$pkgdir"/etc/profile.d/$pkgname.csh
-}

Copied: python-docs/repos/community-any/PKGBUILD (from rev 408486, 
python-docs/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-11-16 22:18:53 UTC (rev 408487)
@@ -0,0 +1,24 @@
+# Maintainer: Morten Linderud 
+# Contributor: Sergej Pupykin 
+# Contributor : Rohan Dhruva (rohandhruva at gmail dot com)
+
+pkgname=python-docs
+pkgver=3.7.1
+pkgrel=1
+pkgdesc="Set of HTML documentation for python"
+arch=('any')
+url="http://docs.python.org/py3k/;
+license=('GPL')
+options=('docs')
+source=(https://sources.archlinux.org/other/community/python-docs/python-$pkgver-docs-html.tar.bz2)
+sha256sums=('78fdfce38a5c9887232f016bcb2f0b9030626196a5e737b958e10b20caa003a8')
+
+package() {
+  mkdir -p "$pkgdir"/usr/share/doc/python/html
+  cp -rf "$srcdir"/python-$pkgver-docs-html/* 
"$pkgdir"/usr/share/doc/python/html/
+  find "$pkgdir"/usr/share/doc/python/html/ -type f -exec chmod 0644 {} \;
+  find "$pkgdir"/usr/share/doc/python/html/ -type d -exec chmod 0755 {} \;
+  install -dm0755 "$pkgdir"/etc/profile.d
+  echo "export PYTHONDOCS=/usr/share/doc/python/html/library" 
>"$pkgdir"/etc/profile.d/$pkgname.sh
+  echo "setenv PYTHONDOCS /usr/share/doc/python/html/library" 
>"$pkgdir"/etc/profile.d/$pkgname.csh
+}


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

2018-11-16 Thread Morten Linderud via arch-commits
Date: Friday, November 16, 2018 @ 22:18:41
  Author: foxboron
Revision: 408486

upgpkg: python-docs 3.7.1-1

Modified:
  python-docs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-11-16 20:20:36 UTC (rev 408485)
+++ PKGBUILD2018-11-16 22:18:41 UTC (rev 408486)
@@ -3,7 +3,7 @@
 # Contributor : Rohan Dhruva (rohandhruva at gmail dot com)
 
 pkgname=python-docs
-pkgver=3.7.0
+pkgver=3.7.1
 pkgrel=1
 pkgdesc="Set of HTML documentation for python"
 arch=('any')
@@ -11,7 +11,7 @@
 license=('GPL')
 options=('docs')
 
source=(https://sources.archlinux.org/other/community/python-docs/python-$pkgver-docs-html.tar.bz2)
-sha256sums=('8b8e96afd80f5412178f906bd706bf75fc56f9545bd6a8eb2b23c900bfb2f03a')
+sha256sums=('78fdfce38a5c9887232f016bcb2f0b9030626196a5e737b958e10b20caa003a8')
 
 package() {
   mkdir -p "$pkgdir"/usr/share/doc/python/html


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

2018-11-10 Thread Morten Linderud via arch-commits
Date: Saturday, November 10, 2018 @ 20:28:13
  Author: foxboron
Revision: 405726

upgpkg: influxdb 1.7.0-1

Modified:
  influxdb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-11-10 20:14:13 UTC (rev 405725)
+++ PKGBUILD2018-11-10 20:28:13 UTC (rev 405726)
@@ -5,8 +5,8 @@
 # Contributor: Daichi Shinozaki 
 # Contributor: Ben Alex 
 
-pkgname='influxdb'
-pkgver=1.6.4
+pkgname=influxdb
+pkgver=1.7.0
 pkgrel=1
 pkgdesc='Scalable datastore for metrics, events, and real-time analytics'
 arch=('i686' 'x86_64' 'armv6h' 'armv7h' 'aarch64')
@@ -17,7 +17,7 @@
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/influxdata/influxdb/archive/v${pkgver}.tar.gz;
 "influxdb.sysusers"
 "influxdb.tmpfiles")
-sha256sums=('cd84f607dfa140ff678dcc5019f0b74602790a76495e7350f7a339f71ab89aa3'
+sha256sums=('6041dafd0f7dcbc7961e34fbc437d32438a728c3c8e8767485ca1283437e4b47'
 '809cca823ae3027984bc7ace70db75753d7d0d4f6658a36db9d94a33054ca5e9'
 'e2aa59413a6204737383b86cedefd866d7073f56ace5b89aad38c530cc86e60c')
 
@@ -58,7 +58,7 @@
   install -Dm755 influxd"$pkgdir/usr/bin/"
   install -Dm755 influx_inspect "$pkgdir/usr/bin/"
   install -Dm755 influx_stress  "$pkgdir/usr/bin/"
-  install -Dm755 influx-tools   "$pkgdir/usr/bin/"
+  install -Dm755 influx_tools   "$pkgdir/usr/bin/"
   install -Dm755 influx_tsm "$pkgdir/usr/bin/"
   install -Dm755 store  "$pkgdir/usr/bin/"
 


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

2018-11-10 Thread Morten Linderud via arch-commits
Date: Saturday, November 10, 2018 @ 20:28:26
  Author: foxboron
Revision: 405727

archrelease: copy trunk to community-x86_64

Added:
  influxdb/repos/community-x86_64/PKGBUILD
(from rev 405726, influxdb/trunk/PKGBUILD)
  influxdb/repos/community-x86_64/influxdb.sysusers
(from rev 405726, influxdb/trunk/influxdb.sysusers)
  influxdb/repos/community-x86_64/influxdb.tmpfiles
(from rev 405726, influxdb/trunk/influxdb.tmpfiles)
Deleted:
  influxdb/repos/community-x86_64/PKGBUILD
  influxdb/repos/community-x86_64/influxdb.sysusers
  influxdb/repos/community-x86_64/influxdb.tmpfiles

---+
 PKGBUILD  |  146 ++--
 influxdb.sysusers |2 
 influxdb.tmpfiles |8 +-
 3 files changed, 78 insertions(+), 78 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-11-10 20:28:13 UTC (rev 405726)
+++ PKGBUILD2018-11-10 20:28:26 UTC (rev 405727)
@@ -1,73 +0,0 @@
-# Maintainer: Morten Linderud 
-# Contributor: Nicolas Leclercq 
-# Contributor: Adam S Levy 
-# Contributor: Charles B. Johnson 
-# Contributor: Daichi Shinozaki 
-# Contributor: Ben Alex 
-
-pkgname='influxdb'
-pkgver=1.6.4
-pkgrel=1
-pkgdesc='Scalable datastore for metrics, events, and real-time analytics'
-arch=('i686' 'x86_64' 'armv6h' 'armv7h' 'aarch64')
-url='https://github.com/InfluxData/influxdb'
-license=('MIT')
-makedepends=('go-pie' 'git' 'asciidoc' 'xmlto' 'dep')
-backup=('etc/influxdb/influxdb.conf')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/influxdata/influxdb/archive/v${pkgver}.tar.gz;
-"influxdb.sysusers"
-"influxdb.tmpfiles")
-sha256sums=('cd84f607dfa140ff678dcc5019f0b74602790a76495e7350f7a339f71ab89aa3'
-'809cca823ae3027984bc7ace70db75753d7d0d4f6658a36db9d94a33054ca5e9'
-'e2aa59413a6204737383b86cedefd866d7073f56ace5b89aad38c530cc86e60c')
-
-prepare(){
-  export GOPATH="$srcdir/gopath"
-
-  mkdir -p "$GOPATH/src/github.com/influxdata/"
-  cp -r "${srcdir}/influxdb-$pkgver" 
"$GOPATH/src/github.com/influxdata/influxdb"
-  cd "$GOPATH/src/github.com/influxdata/influxdb"
-  dep ensure
-}
-
-build(){
-  export GOPATH="$srcdir/gopath"
-
-  _LDFLAGS="-X main.version=$pkgver -X main.branch=master"
-  go install -v -ldflags="$_LDFLAGS" -gcflags "all=-trimpath=${GOPATH}" 
-asmflags "all=-trimpath=${GOPATH}" "github.com/influxdata/influxdb/cmd/..."
-
-  cd "$GOPATH/src/github.com/influxdata/influxdb/man/"
-  make
-}
-
-check(){
-  export GOPATH="$srcdir/gopath"
-  go test "github.com/influxdata/influxdb/..."
-}
-
-package(){
-  export GOPATH="$srcdir/gopath"
-
-  cd "$srcdir"
-  install -Dm644 influxdb.sysusers "$pkgdir/usr/lib/sysusers.d/influxdb.conf"
-  install -Dm644 influxdb.tmpfiles "$pkgdir/usr/lib/tmpfiles.d/influxdb.conf"
-
-  cd "$GOPATH/bin"
-  install -d "$pkgdir/usr/bin/"
-  install -Dm755 influx "$pkgdir/usr/bin/"
-  install -Dm755 influxd"$pkgdir/usr/bin/"
-  install -Dm755 influx_inspect "$pkgdir/usr/bin/"
-  install -Dm755 influx_stress  "$pkgdir/usr/bin/"
-  install -Dm755 influx-tools   "$pkgdir/usr/bin/"
-  install -Dm755 influx_tsm "$pkgdir/usr/bin/"
-  install -Dm755 store  "$pkgdir/usr/bin/"
-
-  cd "$GOPATH/src/github.com/influxdata/influxdb"
-  install -Dm644 scripts/influxdb.service 
"$pkgdir/usr/lib/systemd/system/influxdb.service"
-  install -Dm644 etc/config.sample.toml   "$pkgdir/etc/influxdb/influxdb.conf"
-  install -Dm644 LICENSE  
"$pkgdir/usr/share/licenses/influxdb/LICENSE"
-
-  # Install man pages
-  install -d "$pkgdir/usr/share/man/man1"
-  install -Dm644 man/*.1 "$pkgdir/usr/share/man/man1/"
-}

Copied: influxdb/repos/community-x86_64/PKGBUILD (from rev 405726, 
influxdb/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-11-10 20:28:26 UTC (rev 405727)
@@ -0,0 +1,73 @@
+# Maintainer: Morten Linderud 
+# Contributor: Nicolas Leclercq 
+# Contributor: Adam S Levy 
+# Contributor: Charles B. Johnson 
+# Contributor: Daichi Shinozaki 
+# Contributor: Ben Alex 
+
+pkgname=influxdb
+pkgver=1.7.0
+pkgrel=1
+pkgdesc='Scalable datastore for metrics, events, and real-time analytics'
+arch=('i686' 'x86_64' 'armv6h' 'armv7h' 'aarch64')
+url='https://github.com/InfluxData/influxdb'
+license=('MIT')
+makedepends=('go-pie' 'git' 'asciidoc' 'xmlto' 'dep')
+backup=('etc/influxdb/influxdb.conf')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/influxdata/influxdb/archive/v${pkgver}.tar.gz;
+"influxdb.sysusers"
+"influxdb.tmpfiles")
+sha256sums=('6041dafd0f7dcbc7961e34fbc437d32438a728c3c8e8767485ca1283437e4b47'
+'809cca823ae3027984bc7ace70db75753d7d0d4f6658a36db9d94a33054ca5e9'
+'e2aa59413a6204737383b86cedefd866d7073f56ace5b89aad38c530cc86e60c')
+
+prepare(){
+  export GOPATH="$srcdir/gopath"
+
+  mkdir -p 

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

2018-11-10 Thread Morten Linderud via arch-commits
Date: Saturday, November 10, 2018 @ 20:14:13
  Author: foxboron
Revision: 405725

archrelease: copy trunk to community-any

Added:
  py3status/repos/community-any/PKGBUILD
(from rev 405724, py3status/trunk/PKGBUILD)
Deleted:
  py3status/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-11-10 20:14:00 UTC (rev 405724)
+++ PKGBUILD2018-11-10 20:14:13 UTC (rev 405725)
@@ -1,30 +0,0 @@
-# Maintainer: Morten Linderud 
-# Contributor: Alexis "Horgix" Chotard 
-# Contributor: carstene1ns  - http://git.io/ctPKG
-
-pkgname=py3status
-pkgver=3.13
-pkgrel=1
-pkgdesc="An extensible i3status replacement/wrapper written in python"
-url="http://www.ultrabug.fr/tag/py3status/;
-arch=('any')
-license=('BSD')
-depends=('python' 'python-setuptools' 'i3status')
-optdepends=('i3status: for some of the functionality'
-'acpi: for some of the battery related modules'
-'pacman-contrib: for the arch_updates module')
-source=($pkgname-$pkgver.tar.gz::"https://github.com/ultrabug/py3status/archive/$pkgver.tar.gz;)
-sha256sums=('c6e1c6d1984265b705e3beac8d6b47d88432cdeca80f09d3fbc05c4c5a2a2a07')
-
-build() {
-  cd $pkgname-$pkgver
-  python setup.py build
-}
-
-package() {
-  cd $pkgname-$pkgver
-  python setup.py install --root="$pkgdir/" --optimize=1 --skip-build
-  install -d "$pkgdir"/usr/share/doc/$pkgname
-  install -m644 doc/* README.rst CHANGELOG "$pkgdir"/usr/share/doc/$pkgname
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: py3status/repos/community-any/PKGBUILD (from rev 405724, 
py3status/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-11-10 20:14:13 UTC (rev 405725)
@@ -0,0 +1,31 @@
+# Maintainer: Morten Linderud 
+# Contributor: Alexis "Horgix" Chotard 
+# Contributor: carstene1ns  - http://git.io/ctPKG
+
+pkgname=py3status
+pkgver=3.14
+pkgrel=1
+pkgdesc="An extensible i3status replacement/wrapper written in python"
+url="http://www.ultrabug.fr/tag/py3status/;
+arch=('any')
+license=('BSD')
+depends=('python' 'python-setuptools' 'i3status')
+optdepends=('i3status: for some of the functionality'
+'acpi: for some of the battery related modules'
+'python-pyudev: udev module'
+'pacman-contrib: for the arch_updates module')
+source=($pkgname-$pkgver.tar.gz::"https://github.com/ultrabug/py3status/archive/$pkgver.tar.gz;)
+sha256sums=('4bbd27f606c90e3932f449c998773c801c86cf6146473ec153943ff0df2dc496')
+
+build() {
+  cd $pkgname-$pkgver
+  python setup.py build
+}
+
+package() {
+  cd $pkgname-$pkgver
+  python setup.py install --root="$pkgdir/" --optimize=1 --skip-build
+  install -d "$pkgdir"/usr/share/doc/$pkgname
+  install -m644 doc/* README.rst CHANGELOG "$pkgdir"/usr/share/doc/$pkgname
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2018-11-10 Thread Morten Linderud via arch-commits
Date: Saturday, November 10, 2018 @ 20:14:00
  Author: foxboron
Revision: 405724

upgpkg: py3status 3.14-1

Modified:
  py3status/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-11-10 20:12:27 UTC (rev 405723)
+++ PKGBUILD2018-11-10 20:14:00 UTC (rev 405724)
@@ -3,7 +3,7 @@
 # Contributor: carstene1ns  - http://git.io/ctPKG
 
 pkgname=py3status
-pkgver=3.13
+pkgver=3.14
 pkgrel=1
 pkgdesc="An extensible i3status replacement/wrapper written in python"
 url="http://www.ultrabug.fr/tag/py3status/;
@@ -12,9 +12,10 @@
 depends=('python' 'python-setuptools' 'i3status')
 optdepends=('i3status: for some of the functionality'
 'acpi: for some of the battery related modules'
+'python-pyudev: udev module'
 'pacman-contrib: for the arch_updates module')
 
source=($pkgname-$pkgver.tar.gz::"https://github.com/ultrabug/py3status/archive/$pkgver.tar.gz;)
-sha256sums=('c6e1c6d1984265b705e3beac8d6b47d88432cdeca80f09d3fbc05c4c5a2a2a07')
+sha256sums=('4bbd27f606c90e3932f449c998773c801c86cf6146473ec153943ff0df2dc496')
 
 build() {
   cd $pkgname-$pkgver


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

2018-11-10 Thread Morten Linderud via arch-commits
Date: Saturday, November 10, 2018 @ 20:12:03
  Author: foxboron
Revision: 405720

upgpkg: pdfjs 2.0.943-1

Modified:
  pdfjs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-11-10 20:09:48 UTC (rev 405719)
+++ PKGBUILD2018-11-10 20:12:03 UTC (rev 405720)
@@ -3,14 +3,14 @@
 # Contributor: Florian Bruhin (The Compiler) 
 
 pkgname=pdfjs
-pkgver=1.10.100
-pkgrel=2
+pkgver=2.0.943
+pkgrel=1
 pkgdesc="PDF reader in javascript"
 arch=('any')
 url="https://mozilla.github.io/pdf.js/;
 license=('Apache')
-source=("https://github.com/mozilla/pdf.js/releases/download/${pkgver}/pdfjs-${pkgver}-dist.zip;)
-sha256sums=('a681ddf785813ce5f73de82f3cc1b12890d26f4a95bfd930ce90262d8fee1a95')
+source=("https://github.com/mozilla/pdf.js/releases/download/v${pkgver}/pdfjs-${pkgver}-dist.zip;)
+sha256sums=('381683b05f494fe28e11185f98a238b34a663b1b41b5432aa769ca493e5cd087')
 
 package() {
   mkdir -p "$pkgdir/usr/share/pdf.js"


<    12   13   14   15   16   17   18   19   20   21   >